blob: a0bc637348b2f2cae2ef718584f638a3b4959f7e [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Carsten Otte043405e2007-10-10 17:16:19 +02002/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * derived from drivers/kvm/kvm_main.c
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03008 * Copyright (C) 2008 Qumranet, Inc.
9 * Copyright IBM Corporation, 2008
Nicolas Kaiser9611c182010-10-06 14:23:22 +020010 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Carsten Otte043405e2007-10-10 17:16:19 +020011 *
12 * Authors:
13 * Avi Kivity <avi@qumranet.com>
14 * Yaniv Kamay <yaniv@qumranet.com>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030015 * Amit Shah <amit.shah@qumranet.com>
16 * Ben-Ami Yassour <benami@il.ibm.com>
Carsten Otte043405e2007-10-10 17:16:19 +020017 */
18
Avi Kivityedf88412007-12-16 11:02:48 +020019#include <linux/kvm_host.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020020#include "irq.h"
彭浩(Richard)88197e62020-05-21 05:57:49 +000021#include "ioapic.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080022#include "mmu.h"
Sheng Yang78376992008-01-28 05:10:22 +080023#include "i8254.h"
Izik Eidus37817f22008-03-24 23:14:53 +020024#include "tss.h"
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030025#include "kvm_cache_regs.h"
Sean Christopherson2f728d62020-02-18 15:29:49 -080026#include "kvm_emulate.h"
Avi Kivity26eef702008-07-03 14:59:22 +030027#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020028#include "cpuid.h"
Wei Huang474a5bb2015-06-19 13:54:23 +020029#include "pmu.h"
Andrey Smetanine83d5882015-07-03 15:01:34 +030030#include "hyperv.h"
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -060031#include "lapic.h"
Joao Martins23200b72018-06-13 09:55:44 -040032#include "xen.h"
Carsten Otte313a3dc2007-10-11 19:16:52 +020033
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020034#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030035#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020036#include <linux/kvm.h>
37#include <linux/fs.h>
38#include <linux/vmalloc.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040039#include <linux/export.h>
40#include <linux/moduleparam.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080041#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050042#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010043#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030044#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010045#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030046#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020047#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080049#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080050#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020051#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020052#include <linux/pci.h>
Marcelo Tosatti16e8d742012-11-27 23:29:00 -020053#include <linux/timekeeper_internal.h>
54#include <linux/pvclock_gtod.h>
Feng Wu87276882015-09-18 22:29:40 +080055#include <linux/kvm_irqfd.h>
56#include <linux/irqbypass.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010057#include <linux/sched/stat.h>
Wanpeng Li0c5f81d2019-07-06 09:26:51 +080058#include <linux/sched/isolation.h>
Tom Lendackyd0ec49d2017-07-17 16:10:27 -050059#include <linux/mem_encrypt.h>
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020060#include <linux/entry-kvm.h>
Sergey Senozhatsky7d628742021-06-06 11:10:45 +090061#include <linux/suspend.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010062
Avi Kivityaec51dc2009-07-01 16:01:02 +030063#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080064
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020065#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080066#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020067#include <asm/desc.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080068#include <asm/mce.h>
Dave Hansen784a46612021-06-23 14:02:05 +020069#include <asm/pkru.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020070#include <linux/kernel_stat.h>
Thomas Gleixnera0ff0612021-10-15 03:16:12 +020071#include <asm/fpu/api.h>
72#include <asm/fpu/xcr.h>
73#include <asm/fpu/xstate.h>
Zachary Amsden1d5f0662010-08-19 22:07:30 -100074#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030075#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080076#include <asm/irq_remapping.h>
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010077#include <asm/mshyperv.h>
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +010078#include <asm/hypervisor.h>
Babu Moger97150922020-09-11 14:29:12 -050079#include <asm/tlbflush.h>
Chao Pengbf8c55d2018-10-24 16:05:14 +080080#include <asm/intel_pt.h>
Masami Hiramatsub3dc0692019-09-06 22:13:59 +090081#include <asm/emulate_prefix.h>
Sean Christophersonfe7e9482021-04-12 16:21:43 +120082#include <asm/sgx.h>
Michael Kelleydd2cb342019-07-01 04:26:06 +000083#include <clocksource/hyperv_timer.h>
Carsten Otte043405e2007-10-10 17:16:19 +020084
Dave Hansend1898b72016-06-01 10:42:20 -070085#define CREATE_TRACE_POINTS
86#include "trace.h"
87
Carsten Otte313a3dc2007-10-11 19:16:52 +020088#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080089#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080090u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
91EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080092
Avi Kivity0f65dd72011-04-20 13:37:53 +030093#define emul_to_vcpu(ctxt) \
Sean Christophersonc9b8b072020-02-18 15:29:48 -080094 ((struct kvm_vcpu *)(ctxt)->vcpu)
Avi Kivity0f65dd72011-04-20 13:37:53 +030095
Joerg Roedel50a37eb2008-01-31 14:57:38 +010096/* EFER defaults:
97 * - enable syscall per default because its emulated by KVM
98 * - enable LME and LMA per default on 64 bit KVM
99 */
100#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +0800101static
102u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100103#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +0800104static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100105#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +0200106
Sean Christophersonb11306b2019-12-10 14:44:13 -0800107static u64 __read_mostly cr4_reserved_bits = CR4_RESERVED_BITS;
108
Ashish Kalra0dbb1122021-06-08 18:05:43 +0000109#define KVM_EXIT_HYPERCALL_VALID_MASK (1 << KVM_HC_MAP_GPA_RANGE)
110
Radim Krčmářc5192652016-07-12 22:09:28 +0200111#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
112 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +0200113
Gleb Natapovcb142eb2009-08-09 15:17:40 +0300114static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300115static void process_nmi(struct kvm_vcpu *vcpu);
Jay Zhou1f7becf2021-01-18 16:47:20 +0800116static void process_smi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +0200117static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +0100118static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Ken Hofsass01643c52018-01-31 16:03:36 -0800119static void store_regs(struct kvm_vcpu *vcpu);
120static int sync_regs(struct kvm_vcpu *vcpu);
Hou Wenlongd2f7d492021-11-02 17:15:31 +0800121static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu);
Avi Kivity674eea02008-02-11 18:37:23 +0200122
Maxim Levitsky6dba9402021-06-07 12:02:02 +0300123static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
124static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
125
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700126struct kvm_x86_ops kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300127EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800128
Jason Baron9af54712021-01-14 22:27:55 -0500129#define KVM_X86_OP(func) \
130 DEFINE_STATIC_CALL_NULL(kvm_x86_##func, \
131 *(((struct kvm_x86_ops *)0)->func));
132#define KVM_X86_OP_NULL KVM_X86_OP
133#include <asm/kvm-x86-ops.h>
134EXPORT_STATIC_CALL_GPL(kvm_x86_get_cs_db_l_bits);
135EXPORT_STATIC_CALL_GPL(kvm_x86_cache_reg);
136EXPORT_STATIC_CALL_GPL(kvm_x86_tlb_flush_current);
137
Paolo Bonzini893590c2015-11-06 11:46:24 +0100138static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030139module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200140
Like Xud8550662021-01-08 09:36:55 +0800141bool __read_mostly report_ignored_msrs = true;
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200142module_param(report_ignored_msrs, bool, S_IRUGO | S_IWUSR);
Like Xud8550662021-01-08 09:36:55 +0800143EXPORT_SYMBOL_GPL(report_ignored_msrs);
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200144
Wanpeng Li4c276252018-05-05 04:02:32 -0700145unsigned int min_timer_period_us = 200;
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200146module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
147
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300148static bool __read_mostly kvmclock_periodic_sync = true;
149module_param(kvmclock_periodic_sync, bool, S_IRUGO);
150
Paolo Bonzini893590c2015-11-06 11:46:24 +0100151bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100152EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100153u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100154EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800155u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
156EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
157u64 __read_mostly kvm_max_tsc_scaling_ratio;
158EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700159u64 __read_mostly kvm_default_tsc_scaling_ratio;
160EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +0800161bool __read_mostly kvm_has_bus_lock_exit;
162EXPORT_SYMBOL_GPL(kvm_has_bus_lock_exit);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100163
Zachary Amsdencc578282012-02-03 15:43:50 -0200164/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100165static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200166module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
167
Sean Christophersonc3941d92019-04-17 10:15:33 -0700168/*
169 * lapic timer advance (tscdeadline mode only) in nanoseconds. '-1' enables
Ingo Molnard9f6e122021-03-18 15:28:01 +0100170 * adaptive tuning starting from default advancement of 1000ns. '0' disables
Sean Christophersonc3941d92019-04-17 10:15:33 -0700171 * advancement entirely. Any other value is used as-is and disables adaptive
Ingo Molnard9f6e122021-03-18 15:28:01 +0100172 * tuning, i.e. allows privileged userspace to set an exact advancement time.
Sean Christophersonc3941d92019-04-17 10:15:33 -0700173 */
174static int __read_mostly lapic_timer_advance_ns = -1;
Wanpeng Li0e6edce2019-05-20 16:18:06 +0800175module_param(lapic_timer_advance_ns, int, S_IRUGO | S_IWUSR);
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500176
Feng Wu520040142016-01-25 16:53:33 +0800177static bool __read_mostly vector_hashing = true;
178module_param(vector_hashing, bool, S_IRUGO);
179
Liran Alonc4ae60e2018-03-12 13:12:47 +0200180bool __read_mostly enable_vmware_backdoor = false;
181module_param(enable_vmware_backdoor, bool, S_IRUGO);
182EXPORT_SYMBOL_GPL(enable_vmware_backdoor);
183
Wanpeng Li6c86eed2018-04-03 16:28:49 -0700184static bool __read_mostly force_emulation_prefix = false;
185module_param(force_emulation_prefix, bool, S_IRUGO);
186
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800187int __read_mostly pi_inject_timer = -1;
188module_param(pi_inject_timer, bint, S_IRUGO | S_IWUSR);
189
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700190/*
191 * Restoring the host value for MSRs that are only consumed when running in
192 * usermode, e.g. SYSCALL MSRs and TSC_AUX, can be deferred until the CPU
193 * returns to userspace, i.e. the kernel can run with the guest's value.
194 */
195#define KVM_MAX_NR_USER_RETURN_MSRS 16
Avi Kivity18863bd2009-09-07 11:12:18 +0300196
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700197struct kvm_user_return_msrs {
Avi Kivity18863bd2009-09-07 11:12:18 +0300198 struct user_return_notifier urn;
199 bool registered;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700200 struct kvm_user_return_msr_values {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800201 u64 host;
202 u64 curr;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700203 } values[KVM_MAX_NR_USER_RETURN_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300204};
205
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700206u32 __read_mostly kvm_nr_uret_msrs;
207EXPORT_SYMBOL_GPL(kvm_nr_uret_msrs);
208static u32 __read_mostly kvm_uret_msrs_list[KVM_MAX_NR_USER_RETURN_MSRS];
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700209static struct kvm_user_return_msrs __percpu *user_return_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300210
Sean Christophersoncfc48182020-03-02 15:56:23 -0800211#define KVM_SUPPORTED_XCR0 (XFEATURE_MASK_FP | XFEATURE_MASK_SSE \
212 | XFEATURE_MASK_YMM | XFEATURE_MASK_BNDREGS \
213 | XFEATURE_MASK_BNDCSR | XFEATURE_MASK_AVX512 \
Jing Liu86aff7a42022-01-05 04:35:26 -0800214 | XFEATURE_MASK_PKRU | XFEATURE_MASK_XTILE)
Sean Christophersoncfc48182020-03-02 15:56:23 -0800215
Sean Christopherson91661982020-03-02 15:57:06 -0800216u64 __read_mostly host_efer;
217EXPORT_SYMBOL_GPL(host_efer);
218
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200219bool __read_mostly allow_smaller_maxphyaddr = 0;
Mohammed Gamal3edd6832020-07-10 17:48:11 +0200220EXPORT_SYMBOL_GPL(allow_smaller_maxphyaddr);
221
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +0200222bool __read_mostly enable_apicv = true;
223EXPORT_SYMBOL_GPL(enable_apicv);
224
Tom Lendacky86137772020-12-10 11:10:07 -0600225u64 __read_mostly host_xss;
226EXPORT_SYMBOL_GPL(host_xss);
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100227u64 __read_mostly supported_xss;
228EXPORT_SYMBOL_GPL(supported_xss);
Aaron Lewis139a12c2019-10-21 16:30:25 -0700229
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000230const struct _kvm_stats_desc kvm_vm_stats_desc[] = {
231 KVM_GENERIC_VM_STATS(),
232 STATS_DESC_COUNTER(VM, mmu_shadow_zapped),
233 STATS_DESC_COUNTER(VM, mmu_pte_write),
234 STATS_DESC_COUNTER(VM, mmu_pde_zapped),
235 STATS_DESC_COUNTER(VM, mmu_flooded),
236 STATS_DESC_COUNTER(VM, mmu_recycled),
237 STATS_DESC_COUNTER(VM, mmu_cache_miss),
238 STATS_DESC_ICOUNTER(VM, mmu_unsync),
Mingwei Zhang71f51d22021-08-02 21:46:07 -0700239 STATS_DESC_ICOUNTER(VM, pages_4k),
240 STATS_DESC_ICOUNTER(VM, pages_2m),
241 STATS_DESC_ICOUNTER(VM, pages_1g),
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000242 STATS_DESC_ICOUNTER(VM, nx_lpage_splits),
Peter Xuec1cf692021-06-25 11:32:06 -0400243 STATS_DESC_PCOUNTER(VM, max_mmu_rmap_size),
Jing Zhangbc9e9e62021-06-23 17:28:46 -0400244 STATS_DESC_PCOUNTER(VM, max_mmu_page_hash_collisions)
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000245};
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000246
247const struct kvm_stats_header kvm_vm_stats_header = {
248 .name_size = KVM_STATS_NAME_SIZE,
249 .num_desc = ARRAY_SIZE(kvm_vm_stats_desc),
250 .id_offset = sizeof(struct kvm_stats_header),
251 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
252 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
253 sizeof(kvm_vm_stats_desc),
254};
255
Jing Zhangce55c042021-06-18 22:27:06 +0000256const struct _kvm_stats_desc kvm_vcpu_stats_desc[] = {
257 KVM_GENERIC_VCPU_STATS(),
258 STATS_DESC_COUNTER(VCPU, pf_fixed),
259 STATS_DESC_COUNTER(VCPU, pf_guest),
260 STATS_DESC_COUNTER(VCPU, tlb_flush),
261 STATS_DESC_COUNTER(VCPU, invlpg),
262 STATS_DESC_COUNTER(VCPU, exits),
263 STATS_DESC_COUNTER(VCPU, io_exits),
264 STATS_DESC_COUNTER(VCPU, mmio_exits),
265 STATS_DESC_COUNTER(VCPU, signal_exits),
266 STATS_DESC_COUNTER(VCPU, irq_window_exits),
267 STATS_DESC_COUNTER(VCPU, nmi_window_exits),
268 STATS_DESC_COUNTER(VCPU, l1d_flush),
269 STATS_DESC_COUNTER(VCPU, halt_exits),
270 STATS_DESC_COUNTER(VCPU, request_irq_exits),
271 STATS_DESC_COUNTER(VCPU, irq_exits),
272 STATS_DESC_COUNTER(VCPU, host_state_reload),
273 STATS_DESC_COUNTER(VCPU, fpu_reload),
274 STATS_DESC_COUNTER(VCPU, insn_emulation),
275 STATS_DESC_COUNTER(VCPU, insn_emulation_fail),
276 STATS_DESC_COUNTER(VCPU, hypercalls),
277 STATS_DESC_COUNTER(VCPU, irq_injections),
278 STATS_DESC_COUNTER(VCPU, nmi_injections),
279 STATS_DESC_COUNTER(VCPU, req_event),
280 STATS_DESC_COUNTER(VCPU, nested_run),
281 STATS_DESC_COUNTER(VCPU, directed_yield_attempted),
282 STATS_DESC_COUNTER(VCPU, directed_yield_successful),
283 STATS_DESC_ICOUNTER(VCPU, guest_mode)
284};
Jing Zhangce55c042021-06-18 22:27:06 +0000285
286const struct kvm_stats_header kvm_vcpu_stats_header = {
287 .name_size = KVM_STATS_NAME_SIZE,
288 .num_desc = ARRAY_SIZE(kvm_vcpu_stats_desc),
289 .id_offset = sizeof(struct kvm_stats_header),
290 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
291 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
292 sizeof(kvm_vcpu_stats_desc),
293};
294
Dexuan Cui2acf9232010-06-10 11:27:12 +0800295u64 __read_mostly host_xcr0;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800296u64 __read_mostly supported_xcr0;
297EXPORT_SYMBOL_GPL(supported_xcr0);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800298
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800299static struct kmem_cache *x86_emulator_cache;
300
Peter Xu6abe9c12020-06-22 18:04:41 -0400301/*
302 * When called, it means the previous get/set msr reached an invalid msr.
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200303 * Return true if we want to ignore/silent this failed msr access.
Peter Xu6abe9c12020-06-22 18:04:41 -0400304 */
Haiwei Lid6328262021-03-13 13:10:32 +0800305static bool kvm_msr_ignored_check(u32 msr, u64 data, bool write)
Peter Xu6abe9c12020-06-22 18:04:41 -0400306{
307 const char *op = write ? "wrmsr" : "rdmsr";
308
309 if (ignore_msrs) {
310 if (report_ignored_msrs)
Takashi Iwaid383b312020-10-30 16:14:14 +0100311 kvm_pr_unimpl("ignored %s: 0x%x data 0x%llx\n",
312 op, msr, data);
Peter Xu6abe9c12020-06-22 18:04:41 -0400313 /* Mask the error */
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200314 return true;
Peter Xu6abe9c12020-06-22 18:04:41 -0400315 } else {
Takashi Iwaid383b312020-10-30 16:14:14 +0100316 kvm_debug_ratelimited("unhandled %s: 0x%x data 0x%llx\n",
317 op, msr, data);
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200318 return false;
Peter Xu6abe9c12020-06-22 18:04:41 -0400319 }
320}
321
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800322static struct kmem_cache *kvm_alloc_emulator_cache(void)
323{
Sean Christopherson06add252020-02-18 15:29:50 -0800324 unsigned int useroffset = offsetof(struct x86_emulate_ctxt, src);
325 unsigned int size = sizeof(struct x86_emulate_ctxt);
326
327 return kmem_cache_create_usercopy("x86_emulator", size,
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800328 __alignof__(struct x86_emulate_ctxt),
Sean Christopherson06add252020-02-18 15:29:50 -0800329 SLAB_ACCOUNT, useroffset,
330 size - useroffset, NULL);
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800331}
332
Jan Kiszkab6785de2012-09-20 07:43:17 +0200333static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300334
Gleb Natapovaf585b92010-10-14 11:22:46 +0200335static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
336{
337 int i;
Peter Xudd03bca2020-04-16 11:58:59 -0400338 for (i = 0; i < ASYNC_PF_PER_VCPU; i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +0200339 vcpu->arch.apf.gfns[i] = ~0;
340}
341
Avi Kivity18863bd2009-09-07 11:12:18 +0300342static void kvm_on_user_return(struct user_return_notifier *urn)
343{
344 unsigned slot;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700345 struct kvm_user_return_msrs *msrs
346 = container_of(urn, struct kvm_user_return_msrs, urn);
347 struct kvm_user_return_msr_values *values;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700348 unsigned long flags;
Avi Kivity18863bd2009-09-07 11:12:18 +0300349
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700350 /*
351 * Disabling irqs at this point since the following code could be
352 * interrupted and executed through kvm_arch_hardware_disable()
353 */
354 local_irq_save(flags);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700355 if (msrs->registered) {
356 msrs->registered = false;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700357 user_return_notifier_unregister(urn);
358 }
359 local_irq_restore(flags);
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700360 for (slot = 0; slot < kvm_nr_uret_msrs; ++slot) {
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700361 values = &msrs->values[slot];
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800362 if (values->host != values->curr) {
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700363 wrmsrl(kvm_uret_msrs_list[slot], values->host);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800364 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300365 }
366 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300367}
368
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700369static int kvm_probe_user_return_msr(u32 msr)
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700370{
371 u64 val;
372 int ret;
373
374 preempt_disable();
375 ret = rdmsrl_safe(msr, &val);
376 if (ret)
377 goto out;
378 ret = wrmsrl_safe(msr, val);
379out:
380 preempt_enable();
381 return ret;
382}
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700383
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700384int kvm_add_user_return_msr(u32 msr)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800385{
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700386 BUG_ON(kvm_nr_uret_msrs >= KVM_MAX_NR_USER_RETURN_MSRS);
387
388 if (kvm_probe_user_return_msr(msr))
389 return -1;
390
391 kvm_uret_msrs_list[kvm_nr_uret_msrs] = msr;
392 return kvm_nr_uret_msrs++;
Avi Kivity18863bd2009-09-07 11:12:18 +0300393}
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700394EXPORT_SYMBOL_GPL(kvm_add_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300395
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700396int kvm_find_user_return_msr(u32 msr)
397{
398 int i;
399
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700400 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
401 if (kvm_uret_msrs_list[i] == msr)
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700402 return i;
403 }
404 return -1;
405}
406EXPORT_SYMBOL_GPL(kvm_find_user_return_msr);
407
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700408static void kvm_user_return_msr_cpu_online(void)
Avi Kivity18863bd2009-09-07 11:12:18 +0300409{
Sean Christopherson05c19c22019-11-22 12:04:50 -0800410 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700411 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Sean Christopherson05c19c22019-11-22 12:04:50 -0800412 u64 value;
413 int i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300414
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700415 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
416 rdmsrl_safe(kvm_uret_msrs_list[i], &value);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700417 msrs->values[i].host = value;
418 msrs->values[i].curr = value;
Sean Christopherson05c19c22019-11-22 12:04:50 -0800419 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300420}
421
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700422int kvm_set_user_return_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300423{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200424 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700425 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700426 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300427
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700428 value = (value & mask) | (msrs->values[slot].host & ~mask);
429 if (value == msrs->values[slot].curr)
Andy Honig8b3c3102014-08-27 11:16:44 -0700430 return 0;
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700431 err = wrmsrl_safe(kvm_uret_msrs_list[slot], value);
Andy Honig8b3c3102014-08-27 11:16:44 -0700432 if (err)
433 return 1;
434
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700435 msrs->values[slot].curr = value;
436 if (!msrs->registered) {
437 msrs->urn.on_user_return = kvm_on_user_return;
438 user_return_notifier_register(&msrs->urn);
439 msrs->registered = true;
Avi Kivity18863bd2009-09-07 11:12:18 +0300440 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700441 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300442}
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700443EXPORT_SYMBOL_GPL(kvm_set_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300444
Radim Krčmář13a34e02014-08-28 15:13:03 +0200445static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200446{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200447 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700448 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200449
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700450 if (msrs->registered)
451 kvm_on_user_return(&msrs->urn);
Avi Kivity3548bab2009-11-28 14:18:47 +0200452}
453
Carsten Otte6866b832007-10-29 16:09:10 +0100454u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
455{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300456 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100457}
458EXPORT_SYMBOL_GPL(kvm_get_apic_base);
459
Jim Mattson58871642018-05-09 16:56:04 -0400460enum lapic_mode kvm_get_apic_mode(struct kvm_vcpu *vcpu)
461{
462 return kvm_apic_mode(kvm_get_apic_base(vcpu));
463}
464EXPORT_SYMBOL_GPL(kvm_get_apic_mode);
465
Jan Kiszka58cb6282014-01-24 16:48:44 +0100466int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100467{
Jim Mattson58871642018-05-09 16:56:04 -0400468 enum lapic_mode old_mode = kvm_get_apic_mode(vcpu);
469 enum lapic_mode new_mode = kvm_apic_mode(msr_info->data);
Sean Christophersona8ac8642021-02-03 16:01:15 -0800470 u64 reserved_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu) | 0x2ff |
Radim Krčmářd6321d42017-08-05 00:12:49 +0200471 (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) ? 0 : X2APIC_ENABLE);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100472
Jim Mattson58871642018-05-09 16:56:04 -0400473 if ((msr_info->data & reserved_bits) != 0 || new_mode == LAPIC_MODE_INVALID)
Jim Mattsond3802282017-08-10 10:14:13 -0700474 return 1;
Jim Mattson58871642018-05-09 16:56:04 -0400475 if (!msr_info->host_initiated) {
476 if (old_mode == LAPIC_MODE_X2APIC && new_mode == LAPIC_MODE_XAPIC)
477 return 1;
478 if (old_mode == LAPIC_MODE_DISABLED && new_mode == LAPIC_MODE_X2APIC)
479 return 1;
480 }
Jan Kiszka58cb6282014-01-24 16:48:44 +0100481
482 kvm_lapic_set_base(vcpu, msr_info->data);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800483 kvm_recalculate_apic_map(vcpu->kvm);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100484 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100485}
486EXPORT_SYMBOL_GPL(kvm_set_apic_base);
487
Sean Christophersonad0577c2021-08-09 10:39:54 -0700488/*
489 * Handle a fault on a hardware virtualization (VMX or SVM) instruction.
490 *
491 * Hardware virtualization extension instructions may fault if a reboot turns
492 * off virtualization while processes are running. Usually after catching the
493 * fault we just panic; during reboot instead the instruction is ignored.
494 */
495noinstr void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000496{
497 /* Fault while not rebooting. We want the trace. */
kbuild test robotb4fdcf62019-09-29 18:43:28 +0200498 BUG_ON(!kvm_rebooting);
Geoff Levande3ba45b2013-04-05 19:20:30 +0000499}
500EXPORT_SYMBOL_GPL(kvm_spurious_fault);
501
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200502#define EXCPT_BENIGN 0
503#define EXCPT_CONTRIBUTORY 1
504#define EXCPT_PF 2
505
506static int exception_class(int vector)
507{
508 switch (vector) {
509 case PF_VECTOR:
510 return EXCPT_PF;
511 case DE_VECTOR:
512 case TS_VECTOR:
513 case NP_VECTOR:
514 case SS_VECTOR:
515 case GP_VECTOR:
516 return EXCPT_CONTRIBUTORY;
517 default:
518 break;
519 }
520 return EXCPT_BENIGN;
521}
522
Nadav Amitd6e8c852014-07-24 14:51:24 +0300523#define EXCPT_FAULT 0
524#define EXCPT_TRAP 1
525#define EXCPT_ABORT 2
526#define EXCPT_INTERRUPT 3
527
528static int exception_type(int vector)
529{
530 unsigned int mask;
531
532 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
533 return EXCPT_INTERRUPT;
534
535 mask = 1 << vector;
536
537 /* #DB is trap, as instruction watchpoints are handled elsewhere */
538 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
539 return EXCPT_TRAP;
540
541 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
542 return EXCPT_ABORT;
543
544 /* Reserved exceptions will result in fault */
545 return EXCPT_FAULT;
546}
547
Jim Mattsonda998b42018-10-16 14:29:22 -0700548void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu)
549{
550 unsigned nr = vcpu->arch.exception.nr;
551 bool has_payload = vcpu->arch.exception.has_payload;
552 unsigned long payload = vcpu->arch.exception.payload;
553
554 if (!has_payload)
555 return;
556
557 switch (nr) {
Jim Mattsonf10c7292018-10-16 14:29:23 -0700558 case DB_VECTOR:
559 /*
560 * "Certain debug exceptions may clear bit 0-3. The
561 * remaining contents of the DR6 register are never
562 * cleared by the processor".
563 */
564 vcpu->arch.dr6 &= ~DR_TRAP_BITS;
565 /*
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800566 * In order to reflect the #DB exception payload in guest
567 * dr6, three components need to be considered: active low
568 * bit, FIXED_1 bits and active high bits (e.g. DR6_BD,
569 * DR6_BS and DR6_BT)
570 * DR6_ACTIVE_LOW contains the FIXED_1 and active low bits.
571 * In the target guest dr6:
572 * FIXED_1 bits should always be set.
573 * Active low bits should be cleared if 1-setting in payload.
574 * Active high bits should be set if 1-setting in payload.
575 *
576 * Note, the payload is compatible with the pending debug
577 * exceptions/exit qualification under VMX, that active_low bits
578 * are active high in payload.
579 * So they need to be flipped for DR6.
Jim Mattsonf10c7292018-10-16 14:29:23 -0700580 */
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800581 vcpu->arch.dr6 |= DR6_ACTIVE_LOW;
Jim Mattsonf10c7292018-10-16 14:29:23 -0700582 vcpu->arch.dr6 |= payload;
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800583 vcpu->arch.dr6 ^= payload & DR6_ACTIVE_LOW;
Oliver Upton307f1cf2020-02-07 02:36:04 -0800584
585 /*
586 * The #DB payload is defined as compatible with the 'pending
587 * debug exceptions' field under VMX, not DR6. While bit 12 is
588 * defined in the 'pending debug exceptions' field (enabled
589 * breakpoint), it is reserved and must be zero in DR6.
590 */
591 vcpu->arch.dr6 &= ~BIT(12);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700592 break;
Jim Mattsonda998b42018-10-16 14:29:22 -0700593 case PF_VECTOR:
594 vcpu->arch.cr2 = payload;
595 break;
596 }
597
598 vcpu->arch.exception.has_payload = false;
599 vcpu->arch.exception.payload = 0;
600}
601EXPORT_SYMBOL_GPL(kvm_deliver_exception_payload);
602
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200603static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200604 unsigned nr, bool has_error, u32 error_code,
Jim Mattson91e86d22018-10-16 14:29:21 -0700605 bool has_payload, unsigned long payload, bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200606{
607 u32 prev_nr;
608 int class1, class2;
609
Avi Kivity3842d132010-07-27 12:30:24 +0300610 kvm_make_request(KVM_REQ_EVENT, vcpu);
611
Wanpeng Li664f8e22017-08-24 03:35:09 -0700612 if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) {
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200613 queue:
Wanpeng Li664f8e22017-08-24 03:35:09 -0700614 if (reinject) {
615 /*
616 * On vmentry, vcpu->arch.exception.pending is only
617 * true if an event injection was blocked by
618 * nested_run_pending. In that case, however,
619 * vcpu_enter_guest requests an immediate exit,
620 * and the guest shouldn't proceed far enough to
621 * need reinjection.
622 */
623 WARN_ON_ONCE(vcpu->arch.exception.pending);
624 vcpu->arch.exception.injected = true;
Jim Mattson91e86d22018-10-16 14:29:21 -0700625 if (WARN_ON_ONCE(has_payload)) {
626 /*
627 * A reinjected event has already
628 * delivered its payload.
629 */
630 has_payload = false;
631 payload = 0;
632 }
Wanpeng Li664f8e22017-08-24 03:35:09 -0700633 } else {
634 vcpu->arch.exception.pending = true;
635 vcpu->arch.exception.injected = false;
636 }
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200637 vcpu->arch.exception.has_error_code = has_error;
638 vcpu->arch.exception.nr = nr;
639 vcpu->arch.exception.error_code = error_code;
Jim Mattson91e86d22018-10-16 14:29:21 -0700640 vcpu->arch.exception.has_payload = has_payload;
641 vcpu->arch.exception.payload = payload;
Oliver Uptona06230b2020-02-07 02:36:06 -0800642 if (!is_guest_mode(vcpu))
Jim Mattsonda998b42018-10-16 14:29:22 -0700643 kvm_deliver_exception_payload(vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200644 return;
645 }
646
647 /* to check exception */
648 prev_nr = vcpu->arch.exception.nr;
649 if (prev_nr == DF_VECTOR) {
650 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300651 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200652 return;
653 }
654 class1 = exception_class(prev_nr);
655 class2 = exception_class(nr);
656 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
657 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
Wanpeng Li664f8e22017-08-24 03:35:09 -0700658 /*
659 * Generate double fault per SDM Table 5-5. Set
660 * exception.pending = true so that the double fault
661 * can trigger a nested vmexit.
662 */
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200663 vcpu->arch.exception.pending = true;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700664 vcpu->arch.exception.injected = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200665 vcpu->arch.exception.has_error_code = true;
666 vcpu->arch.exception.nr = DF_VECTOR;
667 vcpu->arch.exception.error_code = 0;
Jim Mattsonc8514362018-10-16 14:29:19 -0700668 vcpu->arch.exception.has_payload = false;
669 vcpu->arch.exception.payload = 0;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200670 } else
671 /* replace previous exception with a new one in a hope
672 that instruction re-execution will regenerate lost
673 exception */
674 goto queue;
675}
676
Avi Kivity298101d2007-11-25 13:41:11 +0200677void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
678{
Jim Mattson91e86d22018-10-16 14:29:21 -0700679 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200680}
681EXPORT_SYMBOL_GPL(kvm_queue_exception);
682
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200683void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
684{
Jim Mattson91e86d22018-10-16 14:29:21 -0700685 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200686}
687EXPORT_SYMBOL_GPL(kvm_requeue_exception);
688
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400689void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr,
690 unsigned long payload)
Jim Mattsonf10c7292018-10-16 14:29:23 -0700691{
692 kvm_multiple_exception(vcpu, nr, false, 0, true, payload, false);
693}
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400694EXPORT_SYMBOL_GPL(kvm_queue_exception_p);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700695
Jim Mattsonda998b42018-10-16 14:29:22 -0700696static void kvm_queue_exception_e_p(struct kvm_vcpu *vcpu, unsigned nr,
697 u32 error_code, unsigned long payload)
698{
699 kvm_multiple_exception(vcpu, nr, true, error_code,
700 true, payload, false);
701}
702
Kyle Huey6affcbe2016-11-29 12:40:40 -0800703int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200704{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100705 if (err)
706 kvm_inject_gp(vcpu, 0);
707 else
Kyle Huey6affcbe2016-11-29 12:40:40 -0800708 return kvm_skip_emulated_instruction(vcpu);
709
710 return 1;
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100711}
712EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200713
Hou Wenlongd2f7d492021-11-02 17:15:31 +0800714static int complete_emulated_insn_gp(struct kvm_vcpu *vcpu, int err)
715{
716 if (err) {
717 kvm_inject_gp(vcpu, 0);
718 return 1;
719 }
720
721 return kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE | EMULTYPE_SKIP |
722 EMULTYPE_COMPLETE_USER_EXIT);
723}
724
Avi Kivity6389ee92010-11-29 16:12:30 +0200725void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200726{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200727 ++vcpu->stat.pf_guest;
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700728 vcpu->arch.exception.nested_apf =
729 is_guest_mode(vcpu) && fault->async_page_fault;
Jim Mattsonda998b42018-10-16 14:29:22 -0700730 if (vcpu->arch.exception.nested_apf) {
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700731 vcpu->arch.apf.nested_apf_token = fault->address;
Jim Mattsonda998b42018-10-16 14:29:22 -0700732 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
733 } else {
734 kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code,
735 fault->address);
736 }
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200737}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300738EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200739
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700740bool kvm_inject_emulated_page_fault(struct kvm_vcpu *vcpu,
741 struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200742{
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400743 struct kvm_mmu *fault_mmu;
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700744 WARN_ON_ONCE(fault->vector != PF_VECTOR);
745
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400746 fault_mmu = fault->nested_page_fault ? vcpu->arch.mmu :
747 vcpu->arch.walk_mmu;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200748
Junaid Shahidee1fa202020-03-20 14:28:03 -0700749 /*
750 * Invalidate the TLB entry for the faulting address, if it exists,
751 * else the access will fault indefinitely (and to emulate hardware).
752 */
753 if ((fault->error_code & PFERR_PRESENT_MASK) &&
754 !(fault->error_code & PFERR_RSVD_MASK))
755 kvm_mmu_invalidate_gva(vcpu, fault_mmu, fault->address,
756 fault_mmu->root_hpa);
757
758 fault_mmu->inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200759 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200760}
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700761EXPORT_SYMBOL_GPL(kvm_inject_emulated_page_fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200762
Sheng Yang3419ffc2008-05-15 09:52:48 +0800763void kvm_inject_nmi(struct kvm_vcpu *vcpu)
764{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300765 atomic_inc(&vcpu->arch.nmi_queued);
766 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800767}
768EXPORT_SYMBOL_GPL(kvm_inject_nmi);
769
Avi Kivity298101d2007-11-25 13:41:11 +0200770void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
771{
Jim Mattson91e86d22018-10-16 14:29:21 -0700772 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200773}
774EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
775
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200776void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
777{
Jim Mattson91e86d22018-10-16 14:29:21 -0700778 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200779}
780EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
781
Carsten Ottea03490e2007-10-29 16:09:35 +0100782/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300783 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
784 * a #GP and return false.
785 */
786bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200787{
Jason Baronb36464772021-01-14 22:27:56 -0500788 if (static_call(kvm_x86_get_cpl)(vcpu) <= required_cpl)
Avi Kivity0a79b002009-09-01 12:03:25 +0300789 return true;
790 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
791 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100792}
Avi Kivity0a79b002009-09-01 12:03:25 +0300793EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100794
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300795bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
796{
797 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
798 return true;
799
800 kvm_queue_exception(vcpu, UD_VECTOR);
801 return false;
802}
803EXPORT_SYMBOL_GPL(kvm_require_dr);
804
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700805static inline u64 pdptr_rsvd_bits(struct kvm_vcpu *vcpu)
806{
Sean Christopherson5b7f5752021-02-03 16:01:13 -0800807 return vcpu->arch.reserved_gpa_bits | rsvd_bits(5, 8) | rsvd_bits(1, 2);
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700808}
809
Joerg Roedelec92fe42010-09-10 17:30:51 +0200810/*
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700811 * Load the pae pdptrs. Return 1 if they are all valid, 0 otherwise.
Carsten Ottea03490e2007-10-29 16:09:35 +0100812 */
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +0800813int load_pdptrs(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100814{
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +0800815 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Carsten Ottea03490e2007-10-29 16:09:35 +0100816 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700817 gpa_t real_gpa;
Carsten Ottea03490e2007-10-29 16:09:35 +0100818 int i;
819 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200820 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100821
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700822 /*
823 * If the MMU is nested, CR3 holds an L2 GPA and needs to be translated
824 * to an L1 GPA.
825 */
Lai Jiangshanc59a0f52021-11-24 20:20:45 +0800826 real_gpa = kvm_translate_gpa(vcpu, mmu, gfn_to_gpa(pdpt_gfn),
827 PFERR_USER_MASK | PFERR_WRITE_MASK, NULL);
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700828 if (real_gpa == UNMAPPED_GVA)
829 return 0;
830
Sean Christopherson94c641b2021-08-31 09:42:24 -0700831 /* Note the offset, PDPTRs are 32 byte aligned when using PAE paging. */
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700832 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(real_gpa), pdpte,
Sean Christopherson94c641b2021-08-31 09:42:24 -0700833 cr3 & GENMASK(11, 5), sizeof(pdpte));
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700834 if (ret < 0)
835 return 0;
836
Carsten Ottea03490e2007-10-29 16:09:35 +0100837 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400838 if ((pdpte[i] & PT_PRESENT_MASK) &&
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700839 (pdpte[i] & pdptr_rsvd_bits(vcpu))) {
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700840 return 0;
Carsten Ottea03490e2007-10-29 16:09:35 +0100841 }
842 }
Carsten Ottea03490e2007-10-29 16:09:35 +0100843
Lai Jiangshan6b123c32021-12-16 10:19:37 +0800844 /*
845 * Marking VCPU_EXREG_PDPTR dirty doesn't work for !tdp_enabled.
846 * Shadow page roots need to be reconstructed instead.
847 */
848 if (!tdp_enabled && memcmp(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs)))
849 kvm_mmu_free_roots(vcpu, mmu, KVM_MMU_ROOT_CURRENT);
850
Paolo Bonzini46cbc042021-12-10 18:13:37 -0500851 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
852 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
853 kvm_make_request(KVM_REQ_LOAD_MMU_PGD, vcpu);
Maxim Levitsky158a48e2021-06-07 12:02:03 +0300854 vcpu->arch.pdptrs_from_userspace = false;
855
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700856 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100857}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100858EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100859
Tom Lendackyf27ad382020-12-10 11:09:56 -0600860void kvm_post_set_cr0(struct kvm_vcpu *vcpu, unsigned long old_cr0, unsigned long cr0)
861{
Tom Lendackyf27ad382020-12-10 11:09:56 -0600862 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
863 kvm_clear_async_pf_completion_queue(vcpu);
864 kvm_async_pf_hash_reset(vcpu);
865 }
866
Sean Christopherson20f632b2021-06-22 10:57:02 -0700867 if ((cr0 ^ old_cr0) & KVM_MMU_CR0_ROLE_BITS)
Tom Lendackyf27ad382020-12-10 11:09:56 -0600868 kvm_mmu_reset_context(vcpu);
869
870 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
871 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
872 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
873 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
874}
875EXPORT_SYMBOL_GPL(kvm_post_set_cr0);
876
Avi Kivity49a9b072010-06-10 17:02:14 +0300877int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100878{
Sheng Yangaad82702010-05-12 16:40:42 +0800879 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Sheng Yangaad82702010-05-12 16:40:42 +0800880
Avi Kivityf9a48e62010-01-06 19:10:22 +0200881 cr0 |= X86_CR0_ET;
882
Gleb Natapovab344822010-01-21 15:28:46 +0200883#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300884 if (cr0 & 0xffffffff00000000UL)
885 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200886#endif
887
888 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100889
Gleb Natapov0f122442010-04-28 19:15:31 +0300890 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
891 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100892
Gleb Natapov0f122442010-04-28 19:15:31 +0300893 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
894 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100895
Carsten Ottea03490e2007-10-29 16:09:35 +0100896#ifdef CONFIG_X86_64
Sean Christopherson05487212020-07-13 18:57:32 -0700897 if ((vcpu->arch.efer & EFER_LME) && !is_paging(vcpu) &&
898 (cr0 & X86_CR0_PG)) {
899 int cs_db, cs_l;
Carsten Ottea03490e2007-10-29 16:09:35 +0100900
Sean Christopherson05487212020-07-13 18:57:32 -0700901 if (!is_pae(vcpu))
902 return 1;
Jason Baronb36464772021-01-14 22:27:56 -0500903 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Sean Christopherson05487212020-07-13 18:57:32 -0700904 if (cs_l)
Gleb Natapov0f122442010-04-28 19:15:31 +0300905 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100906 }
Sean Christopherson05487212020-07-13 18:57:32 -0700907#endif
908 if (!(vcpu->arch.efer & EFER_LME) && (cr0 & X86_CR0_PG) &&
Lai Jiangshane63f3152021-11-08 20:43:58 +0800909 is_pae(vcpu) && ((cr0 ^ old_cr0) & X86_CR0_PDPTR_BITS) &&
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +0800910 !load_pdptrs(vcpu, kvm_read_cr3(vcpu)))
Sean Christopherson05487212020-07-13 18:57:32 -0700911 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100912
Lai Jiangshan777ab822021-12-07 17:52:30 +0800913 if (!(cr0 & X86_CR0_PG) &&
914 (is_64_bit_mode(vcpu) || kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE)))
Mao, Junjiead756a12012-07-02 01:18:48 +0000915 return 1;
916
Jason Baronb36464772021-01-14 22:27:56 -0500917 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100918
Tom Lendackyf27ad382020-12-10 11:09:56 -0600919 kvm_post_set_cr0(vcpu, old_cr0, cr0);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800920
Gleb Natapov0f122442010-04-28 19:15:31 +0300921 return 0;
922}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200923EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100924
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200925void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100926{
Avi Kivity49a9b072010-06-10 17:02:14 +0300927 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100928}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200929EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100930
Aaron Lewis139a12c2019-10-21 16:30:25 -0700931void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu)
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300932{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600933 if (vcpu->arch.guest_state_protected)
934 return;
935
Aaron Lewis139a12c2019-10-21 16:30:25 -0700936 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300937
Aaron Lewis139a12c2019-10-21 16:30:25 -0700938 if (vcpu->arch.xcr0 != host_xcr0)
939 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
940
941 if (vcpu->arch.xsaves_enabled &&
942 vcpu->arch.ia32_xss != host_xss)
943 wrmsrl(MSR_IA32_XSS, vcpu->arch.ia32_xss);
944 }
Babu Moger37486132020-05-12 18:59:06 -0500945
946 if (static_cpu_has(X86_FEATURE_PKU) &&
947 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
948 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU)) &&
949 vcpu->arch.pkru != vcpu->arch.host_pkru)
Thomas Gleixner72a6c082021-06-23 14:02:23 +0200950 write_pkru(vcpu->arch.pkru);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300951}
Aaron Lewis139a12c2019-10-21 16:30:25 -0700952EXPORT_SYMBOL_GPL(kvm_load_guest_xsave_state);
953
954void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu)
955{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600956 if (vcpu->arch.guest_state_protected)
957 return;
958
Babu Moger37486132020-05-12 18:59:06 -0500959 if (static_cpu_has(X86_FEATURE_PKU) &&
960 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
961 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU))) {
962 vcpu->arch.pkru = rdpkru();
963 if (vcpu->arch.pkru != vcpu->arch.host_pkru)
Thomas Gleixner72a6c082021-06-23 14:02:23 +0200964 write_pkru(vcpu->arch.host_pkru);
Babu Moger37486132020-05-12 18:59:06 -0500965 }
966
Aaron Lewis139a12c2019-10-21 16:30:25 -0700967 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
968
969 if (vcpu->arch.xcr0 != host_xcr0)
970 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
971
972 if (vcpu->arch.xsaves_enabled &&
973 vcpu->arch.ia32_xss != host_xss)
974 wrmsrl(MSR_IA32_XSS, host_xss);
975 }
976
977}
978EXPORT_SYMBOL_GPL(kvm_load_host_xsave_state);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300979
Fengguang Wu69b00492015-01-19 22:33:39 +0800980static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800981{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000982 u64 xcr0 = xcr;
983 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200984 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800985
986 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
987 if (index != XCR_XFEATURE_ENABLED_MASK)
988 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700989 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800990 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700991 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800992 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200993
994 /*
995 * Do not allow the guest to set bits that we do not support
996 * saving. However, xcr0 bit 0 is always set, even if the
Sean Christophersone8f65b92021-09-20 17:02:58 -0700997 * emulated CPU does not support XSAVE (see kvm_vcpu_reset()).
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200998 */
Dave Hansend91cab72015-09-02 16:31:26 -0700999 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +02001000 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +08001001 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +02001002
Dave Hansend91cab72015-09-02 16:31:26 -07001003 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
1004 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +00001005 return 1;
1006
Dave Hansend91cab72015-09-02 16:31:26 -07001007 if (xcr0 & XFEATURE_MASK_AVX512) {
1008 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +08001009 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -07001010 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +08001011 return 1;
1012 }
Jing Liu86aff7a42022-01-05 04:35:26 -08001013
1014 if ((xcr0 & XFEATURE_MASK_XTILE) &&
1015 ((xcr0 & XFEATURE_MASK_XTILE) != XFEATURE_MASK_XTILE))
1016 return 1;
1017
Dexuan Cui2acf9232010-06-10 11:27:12 +08001018 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +00001019
Dave Hansend91cab72015-09-02 16:31:26 -07001020 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08001021 kvm_update_cpuid_runtime(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001022 return 0;
1023}
1024
Sean Christopherson92f98952021-02-04 16:57:46 -08001025int kvm_emulate_xsetbv(struct kvm_vcpu *vcpu)
Dexuan Cui2acf9232010-06-10 11:27:12 +08001026{
Sean Christopherson92f98952021-02-04 16:57:46 -08001027 if (static_call(kvm_x86_get_cpl)(vcpu) != 0 ||
1028 __kvm_set_xcr(vcpu, kvm_rcx_read(vcpu), kvm_read_edx_eax(vcpu))) {
1029 kvm_inject_gp(vcpu, 0);
1030 return 1;
1031 }
Paolo Bonzinibbefd4f2020-12-14 07:49:54 -05001032
Sean Christopherson92f98952021-02-04 16:57:46 -08001033 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001034}
Sean Christopherson92f98952021-02-04 16:57:46 -08001035EXPORT_SYMBOL_GPL(kvm_emulate_xsetbv);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001036
Sean Christophersonee69c922020-10-06 18:44:16 -07001037bool kvm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Wanpeng Li3ca94192019-09-18 17:50:10 +08001038{
Sean Christophersonb11306b2019-12-10 14:44:13 -08001039 if (cr4 & cr4_reserved_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001040 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001041
Krish Sadhukhanb899c132020-07-08 00:39:55 +00001042 if (cr4 & vcpu->arch.cr4_guest_rsvd_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001043 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001044
Jason Baronb36464772021-01-14 22:27:56 -05001045 return static_call(kvm_x86_is_valid_cr4)(vcpu, cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001046}
Sean Christophersonee69c922020-10-06 18:44:16 -07001047EXPORT_SYMBOL_GPL(kvm_is_valid_cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001048
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001049void kvm_post_set_cr4(struct kvm_vcpu *vcpu, unsigned long old_cr4, unsigned long cr4)
1050{
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001051 /*
1052 * If any role bit is changed, the MMU needs to be reset.
1053 *
1054 * If CR4.PCIDE is changed 1 -> 0, the guest TLB must be flushed.
1055 * If CR4.PCIDE is changed 0 -> 1, there is no need to flush the TLB
1056 * according to the SDM; however, stale prev_roots could be reused
1057 * incorrectly in the future after a MOV to CR3 with NOFLUSH=1, so we
1058 * free them all. KVM_REQ_MMU_RELOAD is fit for the both cases; it
1059 * is slow, but changing CR4.PCIDE is a rare case.
1060 *
1061 * If CR4.PGE is changed, the guest TLB must be flushed.
1062 *
1063 * Note: resetting MMU is a superset of KVM_REQ_MMU_RELOAD and
1064 * KVM_REQ_MMU_RELOAD is a superset of KVM_REQ_TLB_FLUSH_GUEST, hence
1065 * the usage of "else if".
1066 */
Lai Jiangshan55261732021-09-19 10:42:45 +08001067 if ((cr4 ^ old_cr4) & KVM_MMU_CR4_ROLE_BITS)
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001068 kvm_mmu_reset_context(vcpu);
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001069 else if ((cr4 ^ old_cr4) & X86_CR4_PCIDE)
1070 kvm_make_request(KVM_REQ_MMU_RELOAD, vcpu);
1071 else if ((cr4 ^ old_cr4) & X86_CR4_PGE)
Lai Jiangshan55261732021-09-19 10:42:45 +08001072 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001073}
1074EXPORT_SYMBOL_GPL(kvm_post_set_cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001075
Avi Kivitya83b29c2010-06-10 17:02:15 +03001076int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +01001077{
Avi Kivityfc78f512009-12-07 12:16:48 +02001078 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +08001079
Sean Christophersonee69c922020-10-06 18:44:16 -07001080 if (!kvm_is_valid_cr4(vcpu, cr4))
Paolo Bonziniae3e61e2016-07-12 10:36:41 +02001081 return 1;
1082
Carsten Ottea03490e2007-10-29 16:09:35 +01001083 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +03001084 if (!(cr4 & X86_CR4_PAE))
1085 return 1;
Sean Christophersond74fcfc2020-07-02 19:17:14 -07001086 if ((cr4 ^ old_cr4) & X86_CR4_LA57)
1087 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +03001088 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
Lai Jiangshana37ebdc2021-11-08 20:43:57 +08001089 && ((cr4 ^ old_cr4) & X86_CR4_PDPTR_BITS)
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +08001090 && !load_pdptrs(vcpu, kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +03001091 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001092
Mao, Junjiead756a12012-07-02 01:18:48 +00001093 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
Radim Krčmářd6321d42017-08-05 00:12:49 +02001094 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
Mao, Junjiead756a12012-07-02 01:18:48 +00001095 return 1;
1096
1097 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
1098 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
1099 return 1;
1100 }
1101
Jason Baronb36464772021-01-14 22:27:56 -05001102 static_call(kvm_x86_set_cr4)(vcpu, cr4);
Gleb Natapov0f122442010-04-28 19:15:31 +03001103
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001104 kvm_post_set_cr4(vcpu, old_cr4, cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001105
Gleb Natapov0f122442010-04-28 19:15:31 +03001106 return 0;
1107}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001108EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +01001109
Sean Christopherson21823fb2021-06-09 16:42:24 -07001110static void kvm_invalidate_pcid(struct kvm_vcpu *vcpu, unsigned long pcid)
1111{
1112 struct kvm_mmu *mmu = vcpu->arch.mmu;
1113 unsigned long roots_to_free = 0;
1114 int i;
1115
1116 /*
Lai Jiangshane45e9e32021-10-19 19:01:51 +08001117 * MOV CR3 and INVPCID are usually not intercepted when using TDP, but
1118 * this is reachable when running EPT=1 and unrestricted_guest=0, and
1119 * also via the emulator. KVM's TDP page tables are not in the scope of
1120 * the invalidation, but the guest's TLB entries need to be flushed as
1121 * the CPU may have cached entries in its TLB for the target PCID.
1122 */
1123 if (unlikely(tdp_enabled)) {
1124 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
1125 return;
1126 }
1127
1128 /*
Sean Christopherson21823fb2021-06-09 16:42:24 -07001129 * If neither the current CR3 nor any of the prev_roots use the given
1130 * PCID, then nothing needs to be done here because a resync will
1131 * happen anyway before switching to any other CR3.
1132 */
1133 if (kvm_get_active_pcid(vcpu) == pcid) {
Sean Christophersone62f1aa2021-06-09 16:42:32 -07001134 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001135 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
1136 }
1137
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001138 /*
1139 * If PCID is disabled, there is no need to free prev_roots even if the
1140 * PCIDs for them are also 0, because MOV to CR3 always flushes the TLB
1141 * with PCIDE=0.
1142 */
1143 if (!kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
1144 return;
1145
Sean Christopherson21823fb2021-06-09 16:42:24 -07001146 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
1147 if (kvm_get_pcid(vcpu, mmu->prev_roots[i].pgd) == pcid)
1148 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
1149
1150 kvm_mmu_free_roots(vcpu, mmu, roots_to_free);
1151}
1152
Avi Kivity23902182010-06-10 17:02:16 +03001153int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +01001154{
Junaid Shahidade61e22018-06-27 14:59:15 -07001155 bool skip_tlb_flush = false;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001156 unsigned long pcid = 0;
Paolo Bonziniac146232014-11-10 13:53:25 +01001157#ifdef CONFIG_X86_64
Junaid Shahidc19986f2018-05-04 11:37:13 -07001158 bool pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
1159
Junaid Shahidade61e22018-06-27 14:59:15 -07001160 if (pcid_enabled) {
Junaid Shahid208320b2018-06-27 14:59:21 -07001161 skip_tlb_flush = cr3 & X86_CR3_PCID_NOFLUSH;
1162 cr3 &= ~X86_CR3_PCID_NOFLUSH;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001163 pcid = cr3 & X86_CR3_PCID_MASK;
Junaid Shahidade61e22018-06-27 14:59:15 -07001164 }
Paolo Bonziniac146232014-11-10 13:53:25 +01001165#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +02001166
Sean Christophersonc7313152021-06-07 12:01:58 +03001167 /* PDPTRs are always reloaded for PAE paging. */
Sean Christopherson21823fb2021-06-09 16:42:24 -07001168 if (cr3 == kvm_read_cr3(vcpu) && !is_pae_paging(vcpu))
1169 goto handle_tlb_flush;
Avi Kivityd835dfe2007-11-21 02:57:59 +02001170
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001171 /*
1172 * Do not condition the GPA check on long mode, this helper is used to
1173 * stuff CR3, e.g. for RSM emulation, and there is no guarantee that
1174 * the current vCPU mode is accurate.
1175 */
1176 if (kvm_vcpu_is_illegal_gpa(vcpu, cr3))
Yu Zhangd1cd3ce2017-08-24 20:27:53 +08001177 return 1;
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001178
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +08001179 if (is_pae_paging(vcpu) && !load_pdptrs(vcpu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +03001180 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001181
Sean Christopherson21823fb2021-06-09 16:42:24 -07001182 if (cr3 != kvm_read_cr3(vcpu))
Sean Christophersonb5129102021-06-09 16:42:27 -07001183 kvm_mmu_new_pgd(vcpu, cr3);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001184
Gleb Natapov0f122442010-04-28 19:15:31 +03001185 vcpu->arch.cr3 = cr3;
Lai Jiangshan3883bc9d2021-11-08 20:44:02 +08001186 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
Michael Roth405329f2021-12-16 11:13:54 -06001187 /* Do not call post_set_cr3, we do not get here for confidential guests. */
Junaid Shahid7c390d32018-06-27 14:59:06 -07001188
Sean Christopherson21823fb2021-06-09 16:42:24 -07001189handle_tlb_flush:
1190 /*
1191 * A load of CR3 that flushes the TLB flushes only the current PCID,
1192 * even if PCID is disabled, in which case PCID=0 is flushed. It's a
1193 * moot point in the end because _disabling_ PCID will flush all PCIDs,
1194 * and it's impossible to use a non-zero PCID when PCID is disabled,
1195 * i.e. only PCID=0 can be relevant.
1196 */
1197 if (!skip_tlb_flush)
1198 kvm_invalidate_pcid(vcpu, pcid);
1199
Gleb Natapov0f122442010-04-28 19:15:31 +03001200 return 0;
1201}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001202EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +01001203
Andre Przywaraeea1cff2010-12-21 11:12:00 +01001204int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +01001205{
Gleb Natapov0f122442010-04-28 19:15:31 +03001206 if (cr8 & CR8_RESERVED_BITS)
1207 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +02001208 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001209 kvm_lapic_set_tpr(vcpu, cr8);
1210 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001211 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +03001212 return 0;
1213}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001214EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001215
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001216unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +01001217{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001218 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001219 return kvm_lapic_get_cr8(vcpu);
1220 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001221 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +01001222}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001223EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001224
Nadav Amitae561ed2015-04-02 03:10:37 +03001225static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
1226{
1227 int i;
1228
1229 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
1230 for (i = 0; i < KVM_NR_DB_REGS; i++)
1231 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Nadav Amitae561ed2015-04-02 03:10:37 +03001232 }
1233}
1234
Paolo Bonzini7c866632020-05-16 08:42:28 -04001235void kvm_update_dr7(struct kvm_vcpu *vcpu)
Jan Kiszkac8639012012-09-21 05:42:55 +02001236{
1237 unsigned long dr7;
1238
1239 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1240 dr7 = vcpu->arch.guest_debug_dr7;
1241 else
1242 dr7 = vcpu->arch.dr7;
Jason Baronb36464772021-01-14 22:27:56 -05001243 static_call(kvm_x86_set_dr7)(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +01001244 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
1245 if (dr7 & DR7_BP_EN_MASK)
1246 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +02001247}
Paolo Bonzini7c866632020-05-16 08:42:28 -04001248EXPORT_SYMBOL_GPL(kvm_update_dr7);
Jan Kiszkac8639012012-09-21 05:42:55 +02001249
Nadav Amit6f43ed02014-07-15 17:37:46 +03001250static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
1251{
1252 u64 fixed = DR6_FIXED_1;
1253
Radim Krčmářd6321d42017-08-05 00:12:49 +02001254 if (!guest_cpuid_has(vcpu, X86_FEATURE_RTM))
Nadav Amit6f43ed02014-07-15 17:37:46 +03001255 fixed |= DR6_RTM;
Chenyi Qiange8ea85f2021-02-02 17:04:32 +08001256
1257 if (!guest_cpuid_has(vcpu, X86_FEATURE_BUS_LOCK_DETECT))
1258 fixed |= DR6_BUS_LOCK;
Nadav Amit6f43ed02014-07-15 17:37:46 +03001259 return fixed;
1260}
1261
Paolo Bonzini996ff542020-12-14 07:49:54 -05001262int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +03001263{
Marios Pomonisea740052019-12-11 12:47:52 -08001264 size_t size = ARRAY_SIZE(vcpu->arch.db);
1265
Gleb Natapov020df072010-04-13 10:05:23 +03001266 switch (dr) {
1267 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001268 vcpu->arch.db[array_index_nospec(dr, size)] = val;
Gleb Natapov020df072010-04-13 10:05:23 +03001269 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
1270 vcpu->arch.eff_db[dr] = val;
1271 break;
1272 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001273 case 6:
Krish Sadhukhanf5f61452020-05-22 18:19:51 -04001274 if (!kvm_dr6_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001275 return 1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +03001276 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001277 break;
1278 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001279 default: /* 7 */
Krish Sadhukhanb91991b2020-01-15 19:54:32 -05001280 if (!kvm_dr7_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001281 return 1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +03001282 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02001283 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001284 break;
1285 }
1286
1287 return 0;
1288}
1289EXPORT_SYMBOL_GPL(kvm_set_dr);
1290
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05001291void kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +03001292{
Marios Pomonisea740052019-12-11 12:47:52 -08001293 size_t size = ARRAY_SIZE(vcpu->arch.db);
1294
Gleb Natapov020df072010-04-13 10:05:23 +03001295 switch (dr) {
1296 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001297 *val = vcpu->arch.db[array_index_nospec(dr, size)];
Gleb Natapov020df072010-04-13 10:05:23 +03001298 break;
1299 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001300 case 6:
Paolo Bonzini5679b802020-05-04 11:28:25 -04001301 *val = vcpu->arch.dr6;
Gleb Natapov020df072010-04-13 10:05:23 +03001302 break;
1303 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001304 default: /* 7 */
1305 *val = vcpu->arch.dr7;
1306 break;
1307 }
Gleb Natapov338dbc92010-04-28 19:15:32 +03001308}
Gleb Natapov020df072010-04-13 10:05:23 +03001309EXPORT_SYMBOL_GPL(kvm_get_dr);
1310
Sean Christophersonc483c452021-02-04 16:57:48 -08001311int kvm_emulate_rdpmc(struct kvm_vcpu *vcpu)
Avi Kivity022cd0e2011-11-10 14:57:23 +02001312{
Sean Christophersonde3cd112019-04-30 10:36:17 -07001313 u32 ecx = kvm_rcx_read(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001314 u64 data;
Avi Kivity022cd0e2011-11-10 14:57:23 +02001315
Sean Christophersonc483c452021-02-04 16:57:48 -08001316 if (kvm_pmu_rdpmc(vcpu, ecx, &data)) {
1317 kvm_inject_gp(vcpu, 0);
1318 return 1;
1319 }
1320
Sean Christophersonde3cd112019-04-30 10:36:17 -07001321 kvm_rax_write(vcpu, (u32)data);
1322 kvm_rdx_write(vcpu, data >> 32);
Sean Christophersonc483c452021-02-04 16:57:48 -08001323 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001324}
Sean Christophersonc483c452021-02-04 16:57:48 -08001325EXPORT_SYMBOL_GPL(kvm_emulate_rdpmc);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001326
Carsten Otte043405e2007-10-10 17:16:19 +02001327/*
1328 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
1329 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
1330 *
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001331 * The three MSR lists(msrs_to_save, emulated_msrs, msr_based_features)
1332 * extract the supported MSRs from the related const lists.
1333 * msrs_to_save is selected from the msrs_to_save_all to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -04001334 * capabilities of the host cpu. This capabilities test skips MSRs that are
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001335 * kvm-specific. Those are put in emulated_msrs_all; filtering of emulated_msrs
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001336 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +02001337 */
Glauber Costae3267cb2009-10-06 13:24:50 -04001338
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001339static const u32 msrs_to_save_all[] = {
Carsten Otte043405e2007-10-10 17:16:19 +02001340 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -04001341 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +02001342#ifdef CONFIG_X86_64
1343 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
1344#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +08001345 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001346 MSR_IA32_FEAT_CTL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001347 MSR_IA32_SPEC_CTRL,
Chao Pengbf8c55d2018-10-24 16:05:14 +08001348 MSR_IA32_RTIT_CTL, MSR_IA32_RTIT_STATUS, MSR_IA32_RTIT_CR3_MATCH,
1349 MSR_IA32_RTIT_OUTPUT_BASE, MSR_IA32_RTIT_OUTPUT_MASK,
1350 MSR_IA32_RTIT_ADDR0_A, MSR_IA32_RTIT_ADDR0_B,
1351 MSR_IA32_RTIT_ADDR1_A, MSR_IA32_RTIT_ADDR1_B,
1352 MSR_IA32_RTIT_ADDR2_A, MSR_IA32_RTIT_ADDR2_B,
1353 MSR_IA32_RTIT_ADDR3_A, MSR_IA32_RTIT_ADDR3_B,
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001354 MSR_IA32_UMWAIT_CONTROL,
1355
Jim Mattsone2ada662019-08-21 11:20:04 -07001356 MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1,
Wei Wang9fb12fe2021-12-17 07:49:34 -05001357 MSR_ARCH_PERFMON_FIXED_CTR0 + 2,
Jim Mattsone2ada662019-08-21 11:20:04 -07001358 MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS,
1359 MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL,
1360 MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1,
1361 MSR_ARCH_PERFMON_PERFCTR0 + 2, MSR_ARCH_PERFMON_PERFCTR0 + 3,
1362 MSR_ARCH_PERFMON_PERFCTR0 + 4, MSR_ARCH_PERFMON_PERFCTR0 + 5,
1363 MSR_ARCH_PERFMON_PERFCTR0 + 6, MSR_ARCH_PERFMON_PERFCTR0 + 7,
1364 MSR_ARCH_PERFMON_PERFCTR0 + 8, MSR_ARCH_PERFMON_PERFCTR0 + 9,
1365 MSR_ARCH_PERFMON_PERFCTR0 + 10, MSR_ARCH_PERFMON_PERFCTR0 + 11,
1366 MSR_ARCH_PERFMON_PERFCTR0 + 12, MSR_ARCH_PERFMON_PERFCTR0 + 13,
1367 MSR_ARCH_PERFMON_PERFCTR0 + 14, MSR_ARCH_PERFMON_PERFCTR0 + 15,
1368 MSR_ARCH_PERFMON_PERFCTR0 + 16, MSR_ARCH_PERFMON_PERFCTR0 + 17,
Jim Mattsone2ada662019-08-21 11:20:04 -07001369 MSR_ARCH_PERFMON_EVENTSEL0, MSR_ARCH_PERFMON_EVENTSEL1,
1370 MSR_ARCH_PERFMON_EVENTSEL0 + 2, MSR_ARCH_PERFMON_EVENTSEL0 + 3,
1371 MSR_ARCH_PERFMON_EVENTSEL0 + 4, MSR_ARCH_PERFMON_EVENTSEL0 + 5,
1372 MSR_ARCH_PERFMON_EVENTSEL0 + 6, MSR_ARCH_PERFMON_EVENTSEL0 + 7,
1373 MSR_ARCH_PERFMON_EVENTSEL0 + 8, MSR_ARCH_PERFMON_EVENTSEL0 + 9,
1374 MSR_ARCH_PERFMON_EVENTSEL0 + 10, MSR_ARCH_PERFMON_EVENTSEL0 + 11,
1375 MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13,
1376 MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15,
1377 MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17,
Fares Mehannae1fc1552021-09-15 13:39:50 +00001378
1379 MSR_K7_EVNTSEL0, MSR_K7_EVNTSEL1, MSR_K7_EVNTSEL2, MSR_K7_EVNTSEL3,
1380 MSR_K7_PERFCTR0, MSR_K7_PERFCTR1, MSR_K7_PERFCTR2, MSR_K7_PERFCTR3,
1381 MSR_F15H_PERF_CTL0, MSR_F15H_PERF_CTL1, MSR_F15H_PERF_CTL2,
1382 MSR_F15H_PERF_CTL3, MSR_F15H_PERF_CTL4, MSR_F15H_PERF_CTL5,
1383 MSR_F15H_PERF_CTR0, MSR_F15H_PERF_CTR1, MSR_F15H_PERF_CTR2,
1384 MSR_F15H_PERF_CTR3, MSR_F15H_PERF_CTR4, MSR_F15H_PERF_CTR5,
Jing Liu548e8362022-01-05 04:35:24 -08001385 MSR_IA32_XFD, MSR_IA32_XFD_ERR,
Carsten Otte043405e2007-10-10 17:16:19 +02001386};
1387
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001388static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)];
Carsten Otte043405e2007-10-10 17:16:19 +02001389static unsigned num_msrs_to_save;
1390
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001391static const u32 emulated_msrs_all[] = {
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001392 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
1393 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
1394 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
1395 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Ladi Prosek72c139b2017-07-26 13:32:59 +02001396 HV_X64_MSR_TSC_FREQUENCY, HV_X64_MSR_APIC_FREQUENCY,
Andrey Smetanine7d95132015-07-03 15:01:37 +03001397 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
1398 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +03001399 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +03001400 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +03001401 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001402 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03001403 HV_X64_MSR_STIMER0_CONFIG,
Ladi Prosekd4abc572018-03-20 15:02:07 +01001404 HV_X64_MSR_VP_ASSIST_PAGE,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001405 HV_X64_MSR_REENLIGHTENMENT_CONTROL, HV_X64_MSR_TSC_EMULATION_CONTROL,
1406 HV_X64_MSR_TSC_EMULATION_STATUS,
Jon Doronf97f5a52020-05-29 16:45:40 +03001407 HV_X64_MSR_SYNDBG_OPTIONS,
1408 HV_X64_MSR_SYNDBG_CONTROL, HV_X64_MSR_SYNDBG_STATUS,
1409 HV_X64_MSR_SYNDBG_SEND_BUFFER, HV_X64_MSR_SYNDBG_RECV_BUFFER,
1410 HV_X64_MSR_SYNDBG_PENDING_BUFFER,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001411
1412 MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02001413 MSR_KVM_PV_EOI_EN, MSR_KVM_ASYNC_PF_INT, MSR_KVM_ASYNC_PF_ACK,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001414
Will Auldba904632012-11-29 12:42:50 -08001415 MSR_IA32_TSC_ADJUST,
Dave Hansen09141ec2020-03-05 09:47:06 -08001416 MSR_IA32_TSC_DEADLINE,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001417 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001418 MSR_IA32_PERF_CAPABILITIES,
Carsten Otte043405e2007-10-10 17:16:19 +02001419 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001420 MSR_IA32_MCG_STATUS,
1421 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001422 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001423 MSR_IA32_SMBASE,
Liran Alon52797bf2017-11-15 13:43:14 +02001424 MSR_SMI_COUNT,
Kyle Hueydb2336a2017-03-20 01:16:28 -07001425 MSR_PLATFORM_INFO,
1426 MSR_MISC_FEATURES_ENABLES,
Tom Lendackybc226f02018-05-10 22:06:39 +02001427 MSR_AMD64_VIRT_SPEC_CTRL,
Maxim Levitsky5228eb92021-09-14 18:48:24 +03001428 MSR_AMD64_TSC_RATIO,
Liran Alon6c6a2ab2019-04-15 18:45:26 +03001429 MSR_IA32_POWER_CTL,
Paolo Bonzini99634e32020-01-20 14:22:55 +01001430 MSR_IA32_UCODE_REV,
Borislav Petkov191c8132019-04-18 18:32:50 +02001431
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001432 /*
1433 * The following list leaves out MSRs whose values are determined
1434 * by arch/x86/kvm/vmx/nested.c based on CPUID or other MSRs.
1435 * We always support the "true" VMX control MSRs, even if the host
1436 * processor does not, so I am putting these registers here rather
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001437 * than in msrs_to_save_all.
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001438 */
1439 MSR_IA32_VMX_BASIC,
1440 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1441 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1442 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1443 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1444 MSR_IA32_VMX_MISC,
1445 MSR_IA32_VMX_CR0_FIXED0,
1446 MSR_IA32_VMX_CR4_FIXED0,
1447 MSR_IA32_VMX_VMCS_ENUM,
1448 MSR_IA32_VMX_PROCBASED_CTLS2,
1449 MSR_IA32_VMX_EPT_VPID_CAP,
1450 MSR_IA32_VMX_VMFUNC,
1451
Borislav Petkov191c8132019-04-18 18:32:50 +02001452 MSR_K7_HWCR,
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03001453 MSR_KVM_POLL_CONTROL,
Carsten Otte043405e2007-10-10 17:16:19 +02001454};
1455
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001456static u32 emulated_msrs[ARRAY_SIZE(emulated_msrs_all)];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001457static unsigned num_emulated_msrs;
1458
Tom Lendacky801e4592018-02-21 13:39:51 -06001459/*
1460 * List of msr numbers which are used to expose MSR-based features that
1461 * can be used by a hypervisor to validate requested CPU features.
1462 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001463static const u32 msr_based_features_all[] = {
Paolo Bonzini13893092018-02-26 13:40:09 +01001464 MSR_IA32_VMX_BASIC,
1465 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1466 MSR_IA32_VMX_PINBASED_CTLS,
1467 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1468 MSR_IA32_VMX_PROCBASED_CTLS,
1469 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1470 MSR_IA32_VMX_EXIT_CTLS,
1471 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1472 MSR_IA32_VMX_ENTRY_CTLS,
1473 MSR_IA32_VMX_MISC,
1474 MSR_IA32_VMX_CR0_FIXED0,
1475 MSR_IA32_VMX_CR0_FIXED1,
1476 MSR_IA32_VMX_CR4_FIXED0,
1477 MSR_IA32_VMX_CR4_FIXED1,
1478 MSR_IA32_VMX_VMCS_ENUM,
1479 MSR_IA32_VMX_PROCBASED_CTLS2,
1480 MSR_IA32_VMX_EPT_VPID_CAP,
1481 MSR_IA32_VMX_VMFUNC,
1482
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01001483 MSR_F10H_DECFG,
Wanpeng Li518e7b92018-02-28 14:03:31 +08001484 MSR_IA32_UCODE_REV,
Paolo Bonzinicd283252018-06-25 14:04:37 +02001485 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001486 MSR_IA32_PERF_CAPABILITIES,
Tom Lendacky801e4592018-02-21 13:39:51 -06001487};
1488
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001489static u32 msr_based_features[ARRAY_SIZE(msr_based_features_all)];
Tom Lendacky801e4592018-02-21 13:39:51 -06001490static unsigned int num_msr_based_features;
1491
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001492static u64 kvm_get_arch_capabilities(void)
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001493{
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001494 u64 data = 0;
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001495
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001496 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
1497 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, data);
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001498
1499 /*
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001500 * If nx_huge_pages is enabled, KVM's shadow paging will ensure that
1501 * the nested hypervisor runs with NX huge pages. If it is not,
Ingo Molnard9f6e122021-03-18 15:28:01 +01001502 * L1 is anyway vulnerable to ITLB_MULTIHIT exploits from other
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001503 * L1 guests, so it need not worry about its own (L2) guests.
1504 */
1505 data |= ARCH_CAP_PSCHANGE_MC_NO;
1506
1507 /*
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001508 * If we're doing cache flushes (either "always" or "cond")
1509 * we will do one whenever the guest does a vmlaunch/vmresume.
1510 * If an outer hypervisor is doing the cache flush for us
1511 * (VMENTER_L1D_FLUSH_NESTED_VM), we can safely pass that
1512 * capability to the guest too, and if EPT is disabled we're not
1513 * vulnerable. Overall, only VMENTER_L1D_FLUSH_NEVER will
1514 * require a nested hypervisor to do a flush of its own.
1515 */
1516 if (l1tf_vmx_mitigation != VMENTER_L1D_FLUSH_NEVER)
1517 data |= ARCH_CAP_SKIP_VMENTRY_L1DFLUSH;
1518
Paolo Bonzini0c549142019-08-19 17:24:07 +02001519 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
1520 data |= ARCH_CAP_RDCL_NO;
1521 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1522 data |= ARCH_CAP_SSB_NO;
1523 if (!boot_cpu_has_bug(X86_BUG_MDS))
1524 data |= ARCH_CAP_MDS_NO;
1525
Paolo Bonzini71316362021-01-28 11:45:00 -05001526 if (!boot_cpu_has(X86_FEATURE_RTM)) {
1527 /*
1528 * If RTM=0 because the kernel has disabled TSX, the host might
1529 * have TAA_NO or TSX_CTRL. Clear TAA_NO (the guest sees RTM=0
1530 * and therefore knows that there cannot be TAA) but keep
1531 * TSX_CTRL: some buggy userspaces leave it set on tsx=on hosts,
1532 * and we want to allow migrating those guests to tsx=off hosts.
1533 */
1534 data &= ~ARCH_CAP_TAA_NO;
1535 } else if (!boot_cpu_has_bug(X86_BUG_TAA)) {
Paolo Bonzinicbbaa272019-11-18 18:58:26 +01001536 data |= ARCH_CAP_TAA_NO;
Paolo Bonzini71316362021-01-28 11:45:00 -05001537 } else {
1538 /*
1539 * Nothing to do here; we emulate TSX_CTRL if present on the
1540 * host so the guest can choose between disabling TSX or
1541 * using VERW to clear CPU buffers.
1542 */
1543 }
Pawan Guptae1d38b62019-10-23 12:23:33 +02001544
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001545 return data;
1546}
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001547
Wanpeng Li66421c12018-02-28 14:03:30 +08001548static int kvm_get_msr_feature(struct kvm_msr_entry *msr)
1549{
1550 switch (msr->index) {
Paolo Bonzinicd283252018-06-25 14:04:37 +02001551 case MSR_IA32_ARCH_CAPABILITIES:
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001552 msr->data = kvm_get_arch_capabilities();
1553 break;
1554 case MSR_IA32_UCODE_REV:
Paolo Bonzinicd283252018-06-25 14:04:37 +02001555 rdmsrl_safe(msr->index, &msr->data);
Wanpeng Li518e7b92018-02-28 14:03:31 +08001556 break;
Wanpeng Li66421c12018-02-28 14:03:30 +08001557 default:
Jason Baronb36464772021-01-14 22:27:56 -05001558 return static_call(kvm_x86_get_msr_feature)(msr);
Wanpeng Li66421c12018-02-28 14:03:30 +08001559 }
1560 return 0;
1561}
1562
Tom Lendacky801e4592018-02-21 13:39:51 -06001563static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1564{
1565 struct kvm_msr_entry msr;
Wanpeng Li66421c12018-02-28 14:03:30 +08001566 int r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001567
1568 msr.index = index;
Wanpeng Li66421c12018-02-28 14:03:30 +08001569 r = kvm_get_msr_feature(&msr);
Peter Xu12bc2132020-06-22 18:04:42 -04001570
1571 if (r == KVM_MSR_RET_INVALID) {
1572 /* Unconditionally clear the output for simplicity */
1573 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001574 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001575 r = 0;
Peter Xu12bc2132020-06-22 18:04:42 -04001576 }
1577
Wanpeng Li66421c12018-02-28 14:03:30 +08001578 if (r)
1579 return r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001580
1581 *data = msr.data;
1582
1583 return 0;
1584}
1585
Sean Christopherson11988492019-04-02 08:19:15 -07001586static bool __kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
1587{
1588 if (efer & EFER_FFXSR && !guest_cpuid_has(vcpu, X86_FEATURE_FXSR_OPT))
1589 return false;
1590
1591 if (efer & EFER_SVME && !guest_cpuid_has(vcpu, X86_FEATURE_SVM))
1592 return false;
1593
Sean Christopherson0a629562019-04-02 08:19:16 -07001594 if (efer & (EFER_LME | EFER_LMA) &&
1595 !guest_cpuid_has(vcpu, X86_FEATURE_LM))
1596 return false;
1597
1598 if (efer & EFER_NX && !guest_cpuid_has(vcpu, X86_FEATURE_NX))
1599 return false;
1600
Sean Christopherson11988492019-04-02 08:19:15 -07001601 return true;
1602
1603}
Jan Kiszka384bb782013-04-20 10:52:36 +02001604bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001605{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001606 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001607 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001608
Sean Christopherson11988492019-04-02 08:19:15 -07001609 return __kvm_valid_efer(vcpu, efer);
Jan Kiszka384bb782013-04-20 10:52:36 +02001610}
1611EXPORT_SYMBOL_GPL(kvm_valid_efer);
1612
Sean Christopherson11988492019-04-02 08:19:15 -07001613static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Jan Kiszka384bb782013-04-20 10:52:36 +02001614{
1615 u64 old_efer = vcpu->arch.efer;
Sean Christopherson11988492019-04-02 08:19:15 -07001616 u64 efer = msr_info->data;
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001617 int r;
Jan Kiszka384bb782013-04-20 10:52:36 +02001618
Sean Christopherson11988492019-04-02 08:19:15 -07001619 if (efer & efer_reserved_bits)
Paolo Bonzini66f61c92019-05-24 21:52:46 +02001620 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +02001621
Sean Christopherson11988492019-04-02 08:19:15 -07001622 if (!msr_info->host_initiated) {
1623 if (!__kvm_valid_efer(vcpu, efer))
1624 return 1;
1625
1626 if (is_paging(vcpu) &&
1627 (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1628 return 1;
1629 }
Jan Kiszka384bb782013-04-20 10:52:36 +02001630
Carsten Otte15c4a642007-10-30 18:44:17 +01001631 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001632 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001633
Jason Baronb36464772021-01-14 22:27:56 -05001634 r = static_call(kvm_x86_set_efer)(vcpu, efer);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001635 if (r) {
1636 WARN_ON(r > 0);
1637 return r;
1638 }
Sheng Yanga3d204e2010-05-12 16:40:40 +08001639
Sheng Yangaad82702010-05-12 16:40:42 +08001640 /* Update reserved bits */
1641 if ((efer ^ old_efer) & EFER_NX)
1642 kvm_mmu_reset_context(vcpu);
1643
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001644 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001645}
1646
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001647void kvm_enable_efer_bits(u64 mask)
1648{
1649 efer_reserved_bits &= ~mask;
1650}
1651EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1652
Alexander Graf51de8152020-09-25 16:34:17 +02001653bool kvm_msr_allowed(struct kvm_vcpu *vcpu, u32 index, u32 type)
1654{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001655 struct kvm_x86_msr_filter *msr_filter;
1656 struct msr_bitmap_range *ranges;
Alexander Graf1a1552542020-09-25 16:34:21 +02001657 struct kvm *kvm = vcpu->kvm;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001658 bool allowed;
Alexander Graf1a1552542020-09-25 16:34:21 +02001659 int idx;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001660 u32 i;
Alexander Graf1a1552542020-09-25 16:34:21 +02001661
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001662 /* x2APIC MSRs do not support filtering. */
1663 if (index >= 0x800 && index <= 0x8ff)
Alexander Graf1a1552542020-09-25 16:34:21 +02001664 return true;
1665
Alexander Graf1a1552542020-09-25 16:34:21 +02001666 idx = srcu_read_lock(&kvm->srcu);
1667
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001668 msr_filter = srcu_dereference(kvm->arch.msr_filter, &kvm->srcu);
1669 if (!msr_filter) {
1670 allowed = true;
1671 goto out;
1672 }
1673
1674 allowed = msr_filter->default_allow;
1675 ranges = msr_filter->ranges;
1676
1677 for (i = 0; i < msr_filter->count; i++) {
Alexander Graf1a1552542020-09-25 16:34:21 +02001678 u32 start = ranges[i].base;
1679 u32 end = start + ranges[i].nmsrs;
1680 u32 flags = ranges[i].flags;
1681 unsigned long *bitmap = ranges[i].bitmap;
1682
1683 if ((index >= start) && (index < end) && (flags & type)) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001684 allowed = !!test_bit(index - start, bitmap);
Alexander Graf1a1552542020-09-25 16:34:21 +02001685 break;
1686 }
1687 }
1688
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001689out:
Alexander Graf1a1552542020-09-25 16:34:21 +02001690 srcu_read_unlock(&kvm->srcu, idx);
1691
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001692 return allowed;
Alexander Graf51de8152020-09-25 16:34:17 +02001693}
1694EXPORT_SYMBOL_GPL(kvm_msr_allowed);
1695
Carsten Otte15c4a642007-10-30 18:44:17 +01001696/*
Sean Christophersonf20935d2019-09-05 14:22:54 -07001697 * Write @data into the MSR specified by @index. Select MSR specific fault
1698 * checks are bypassed if @host_initiated is %true.
Carsten Otte15c4a642007-10-30 18:44:17 +01001699 * Returns 0 on success, non-0 otherwise.
1700 * Assumes vcpu_load() was already called.
1701 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001702static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data,
1703 bool host_initiated)
Carsten Otte15c4a642007-10-30 18:44:17 +01001704{
Sean Christophersonf20935d2019-09-05 14:22:54 -07001705 struct msr_data msr;
1706
Alexander Graf1a1552542020-09-25 16:34:21 +02001707 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_WRITE))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001708 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001709
Sean Christophersonf20935d2019-09-05 14:22:54 -07001710 switch (index) {
Nadav Amit854e8bb2014-09-16 03:24:05 +03001711 case MSR_FS_BASE:
1712 case MSR_GS_BASE:
1713 case MSR_KERNEL_GS_BASE:
1714 case MSR_CSTAR:
1715 case MSR_LSTAR:
Sean Christophersonf20935d2019-09-05 14:22:54 -07001716 if (is_noncanonical_address(data, vcpu))
Nadav Amit854e8bb2014-09-16 03:24:05 +03001717 return 1;
1718 break;
1719 case MSR_IA32_SYSENTER_EIP:
1720 case MSR_IA32_SYSENTER_ESP:
1721 /*
1722 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1723 * non-canonical address is written on Intel but not on
1724 * AMD (which ignores the top 32-bits, because it does
1725 * not implement 64-bit SYSENTER).
1726 *
1727 * 64-bit code should hence be able to write a non-canonical
1728 * value on AMD. Making the address canonical ensures that
1729 * vmentry does not fail on Intel after writing a non-canonical
1730 * value, and that something deterministic happens if the guest
1731 * invokes 64-bit SYSENTER.
1732 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001733 data = get_canonical(data, vcpu_virt_addr_bits(vcpu));
Sean Christopherson61a05d42021-05-04 10:17:33 -07001734 break;
1735 case MSR_TSC_AUX:
1736 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1737 return 1;
1738
1739 if (!host_initiated &&
1740 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1741 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1742 return 1;
1743
1744 /*
1745 * Per Intel's SDM, bits 63:32 are reserved, but AMD's APM has
1746 * incomplete and conflicting architectural behavior. Current
1747 * AMD CPUs completely ignore bits 63:32, i.e. they aren't
1748 * reserved and always read as zeros. Enforce Intel's reserved
1749 * bits check if and only if the guest CPU is Intel, and clear
1750 * the bits in all other cases. This ensures cross-vendor
1751 * migration will provide consistent behavior for the guest.
1752 */
1753 if (guest_cpuid_is_intel(vcpu) && (data >> 32) != 0)
1754 return 1;
1755
1756 data = (u32)data;
1757 break;
Nadav Amit854e8bb2014-09-16 03:24:05 +03001758 }
Sean Christophersonf20935d2019-09-05 14:22:54 -07001759
1760 msr.data = data;
1761 msr.index = index;
1762 msr.host_initiated = host_initiated;
1763
Jason Baronb36464772021-01-14 22:27:56 -05001764 return static_call(kvm_x86_set_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001765}
1766
Peter Xu6abe9c12020-06-22 18:04:41 -04001767static int kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu,
1768 u32 index, u64 data, bool host_initiated)
1769{
1770 int ret = __kvm_set_msr(vcpu, index, data, host_initiated);
1771
1772 if (ret == KVM_MSR_RET_INVALID)
Haiwei Lid6328262021-03-13 13:10:32 +08001773 if (kvm_msr_ignored_check(index, data, true))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001774 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001775
1776 return ret;
1777}
1778
Sean Christophersonf20935d2019-09-05 14:22:54 -07001779/*
1780 * Read the MSR specified by @index into @data. Select MSR specific fault
1781 * checks are bypassed if @host_initiated is %true.
1782 * Returns 0 on success, non-0 otherwise.
1783 * Assumes vcpu_load() was already called.
1784 */
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001785int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data,
1786 bool host_initiated)
Sean Christophersonf20935d2019-09-05 14:22:54 -07001787{
1788 struct msr_data msr;
1789 int ret;
1790
Alexander Graf1a1552542020-09-25 16:34:21 +02001791 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_READ))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001792 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001793
Sean Christopherson61a05d42021-05-04 10:17:33 -07001794 switch (index) {
1795 case MSR_TSC_AUX:
1796 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1797 return 1;
1798
1799 if (!host_initiated &&
1800 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1801 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1802 return 1;
1803 break;
1804 }
1805
Sean Christophersonf20935d2019-09-05 14:22:54 -07001806 msr.index = index;
1807 msr.host_initiated = host_initiated;
1808
Jason Baronb36464772021-01-14 22:27:56 -05001809 ret = static_call(kvm_x86_get_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001810 if (!ret)
1811 *data = msr.data;
1812 return ret;
1813}
1814
Peter Xu6abe9c12020-06-22 18:04:41 -04001815static int kvm_get_msr_ignored_check(struct kvm_vcpu *vcpu,
1816 u32 index, u64 *data, bool host_initiated)
1817{
1818 int ret = __kvm_get_msr(vcpu, index, data, host_initiated);
1819
1820 if (ret == KVM_MSR_RET_INVALID) {
1821 /* Unconditionally clear *data for simplicity */
1822 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001823 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001824 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001825 }
1826
1827 return ret;
1828}
1829
Sean Christophersonf20935d2019-09-05 14:22:54 -07001830int kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data)
1831{
Peter Xu6abe9c12020-06-22 18:04:41 -04001832 return kvm_get_msr_ignored_check(vcpu, index, data, false);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001833}
1834EXPORT_SYMBOL_GPL(kvm_get_msr);
1835
1836int kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data)
1837{
Peter Xu6abe9c12020-06-22 18:04:41 -04001838 return kvm_set_msr_ignored_check(vcpu, index, data, false);
Carsten Otte15c4a642007-10-30 18:44:17 +01001839}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001840EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001841
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001842static void complete_userspace_rdmsr(struct kvm_vcpu *vcpu)
Alexander Graf1ae09952020-09-25 16:34:16 +02001843{
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001844 if (!vcpu->run->msr.error) {
Alexander Graf1ae09952020-09-25 16:34:16 +02001845 kvm_rax_write(vcpu, (u32)vcpu->run->msr.data);
1846 kvm_rdx_write(vcpu, vcpu->run->msr.data >> 32);
1847 }
Alexander Graf1ae09952020-09-25 16:34:16 +02001848}
1849
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001850static int complete_emulated_msr_access(struct kvm_vcpu *vcpu)
1851{
1852 return complete_emulated_insn_gp(vcpu, vcpu->run->msr.error);
1853}
1854
1855static int complete_emulated_rdmsr(struct kvm_vcpu *vcpu)
1856{
1857 complete_userspace_rdmsr(vcpu);
1858 return complete_emulated_msr_access(vcpu);
1859}
1860
1861static int complete_fast_msr_access(struct kvm_vcpu *vcpu)
Alexander Graf1ae09952020-09-25 16:34:16 +02001862{
Jason Baronb36464772021-01-14 22:27:56 -05001863 return static_call(kvm_x86_complete_emulated_msr)(vcpu, vcpu->run->msr.error);
Alexander Graf1ae09952020-09-25 16:34:16 +02001864}
1865
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001866static int complete_fast_rdmsr(struct kvm_vcpu *vcpu)
1867{
1868 complete_userspace_rdmsr(vcpu);
1869 return complete_fast_msr_access(vcpu);
1870}
1871
Alexander Graf1ae09952020-09-25 16:34:16 +02001872static u64 kvm_msr_reason(int r)
1873{
1874 switch (r) {
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001875 case KVM_MSR_RET_INVALID:
Alexander Graf1ae09952020-09-25 16:34:16 +02001876 return KVM_MSR_EXIT_REASON_UNKNOWN;
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001877 case KVM_MSR_RET_FILTERED:
Alexander Graf1a1552542020-09-25 16:34:21 +02001878 return KVM_MSR_EXIT_REASON_FILTER;
Alexander Graf1ae09952020-09-25 16:34:16 +02001879 default:
1880 return KVM_MSR_EXIT_REASON_INVAL;
1881 }
1882}
1883
1884static int kvm_msr_user_space(struct kvm_vcpu *vcpu, u32 index,
1885 u32 exit_reason, u64 data,
1886 int (*completion)(struct kvm_vcpu *vcpu),
1887 int r)
1888{
1889 u64 msr_reason = kvm_msr_reason(r);
1890
1891 /* Check if the user wanted to know about this MSR fault */
1892 if (!(vcpu->kvm->arch.user_space_msr_mask & msr_reason))
1893 return 0;
1894
1895 vcpu->run->exit_reason = exit_reason;
1896 vcpu->run->msr.error = 0;
1897 memset(vcpu->run->msr.pad, 0, sizeof(vcpu->run->msr.pad));
1898 vcpu->run->msr.reason = msr_reason;
1899 vcpu->run->msr.index = index;
1900 vcpu->run->msr.data = data;
1901 vcpu->arch.complete_userspace_io = completion;
1902
1903 return 1;
1904}
1905
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001906int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu)
1907{
1908 u32 ecx = kvm_rcx_read(vcpu);
1909 u64 data;
Alexander Graf1ae09952020-09-25 16:34:16 +02001910 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001911
Alexander Graf1ae09952020-09-25 16:34:16 +02001912 r = kvm_get_msr(vcpu, ecx, &data);
1913
Paolo Bonzini8b474422020-12-14 07:44:46 -05001914 if (!r) {
1915 trace_kvm_msr_read(ecx, data);
1916
1917 kvm_rax_write(vcpu, data & -1u);
1918 kvm_rdx_write(vcpu, (data >> 32) & -1u);
1919 } else {
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001920 /* MSR read failed? See if we should ask user space */
1921 if (kvm_msr_user_space(vcpu, ecx, KVM_EXIT_X86_RDMSR, 0,
1922 complete_fast_rdmsr, r))
1923 return 0;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001924 trace_kvm_msr_read_ex(ecx);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001925 }
1926
Jason Baronb36464772021-01-14 22:27:56 -05001927 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001928}
1929EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr);
1930
1931int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu)
1932{
1933 u32 ecx = kvm_rcx_read(vcpu);
1934 u64 data = kvm_read_edx_eax(vcpu);
Alexander Graf1ae09952020-09-25 16:34:16 +02001935 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001936
Alexander Graf1ae09952020-09-25 16:34:16 +02001937 r = kvm_set_msr(vcpu, ecx, data);
1938
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001939 if (!r) {
Paolo Bonzini8b474422020-12-14 07:44:46 -05001940 trace_kvm_msr_write(ecx, data);
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001941 } else {
1942 /* MSR write failed? See if we should ask user space */
1943 if (kvm_msr_user_space(vcpu, ecx, KVM_EXIT_X86_WRMSR, data,
1944 complete_fast_msr_access, r))
1945 return 0;
1946 /* Signal all other negative errors to userspace */
1947 if (r < 0)
1948 return r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001949 trace_kvm_msr_write_ex(ecx, data);
Hou Wenlongd2f7d492021-11-02 17:15:31 +08001950 }
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001951
Jason Baronb36464772021-01-14 22:27:56 -05001952 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001953}
1954EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr);
1955
Sean Christopherson5ff3a352021-02-04 16:57:47 -08001956int kvm_emulate_as_nop(struct kvm_vcpu *vcpu)
1957{
1958 return kvm_skip_emulated_instruction(vcpu);
1959}
1960EXPORT_SYMBOL_GPL(kvm_emulate_as_nop);
1961
1962int kvm_emulate_invd(struct kvm_vcpu *vcpu)
1963{
1964 /* Treat an INVD instruction as a NOP and just skip it. */
1965 return kvm_emulate_as_nop(vcpu);
1966}
1967EXPORT_SYMBOL_GPL(kvm_emulate_invd);
1968
1969int kvm_emulate_mwait(struct kvm_vcpu *vcpu)
1970{
1971 pr_warn_once("kvm: MWAIT instruction emulated as NOP!\n");
1972 return kvm_emulate_as_nop(vcpu);
1973}
1974EXPORT_SYMBOL_GPL(kvm_emulate_mwait);
1975
1976int kvm_handle_invalid_op(struct kvm_vcpu *vcpu)
1977{
1978 kvm_queue_exception(vcpu, UD_VECTOR);
1979 return 1;
1980}
1981EXPORT_SYMBOL_GPL(kvm_handle_invalid_op);
1982
1983int kvm_emulate_monitor(struct kvm_vcpu *vcpu)
1984{
1985 pr_warn_once("kvm: MONITOR instruction emulated as NOP!\n");
1986 return kvm_emulate_as_nop(vcpu);
1987}
1988EXPORT_SYMBOL_GPL(kvm_emulate_monitor);
1989
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05001990static inline bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu)
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001991{
Frederic Weisbecker4ae7dc92021-02-01 00:05:48 +01001992 xfer_to_guest_mode_prepare();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001993 return vcpu->mode == EXITING_GUEST_MODE || kvm_request_pending(vcpu) ||
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02001994 xfer_to_guest_mode_work_pending();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001995}
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001996
Carsten Otte313a3dc2007-10-11 19:16:52 +02001997/*
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001998 * The fast path for frequent and performance sensitive wrmsr emulation,
1999 * i.e. the sending of IPI, sending IPI early in the VM-Exit flow reduces
2000 * the latency of virtual IPI by avoiding the expensive bits of transitioning
2001 * from guest to host, e.g. reacquiring KVM's SRCU lock. In contrast to the
2002 * other cases which must be called after interrupts are enabled on the host.
2003 */
2004static int handle_fastpath_set_x2apic_icr_irqoff(struct kvm_vcpu *vcpu, u64 data)
2005{
Wanpeng Lie1be9ac2020-03-26 10:20:01 +08002006 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(vcpu->arch.apic))
2007 return 1;
2008
2009 if (((data & APIC_SHORT_MASK) == APIC_DEST_NOSHORT) &&
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002010 ((data & APIC_DEST_MASK) == APIC_DEST_PHYSICAL) &&
Wanpeng Li4064a4c2020-04-02 16:20:26 +08002011 ((data & APIC_MODE_MASK) == APIC_DM_FIXED) &&
2012 ((u32)(data >> 32) != X2APIC_BROADCAST)) {
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002013
Wanpeng Lid5361672020-03-26 10:20:02 +08002014 data &= ~(1 << 12);
2015 kvm_apic_send_ipi(vcpu->arch.apic, (u32)data, (u32)(data >> 32));
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002016 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR2, (u32)(data >> 32));
Wanpeng Lid5361672020-03-26 10:20:02 +08002017 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR, (u32)data);
2018 trace_kvm_apic_write(APIC_ICR, (u32)data);
2019 return 0;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002020 }
2021
2022 return 1;
2023}
2024
Wanpeng Liae95f562020-04-28 14:23:28 +08002025static int handle_fastpath_set_tscdeadline(struct kvm_vcpu *vcpu, u64 data)
2026{
2027 if (!kvm_can_use_hv_timer(vcpu))
2028 return 1;
2029
2030 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2031 return 0;
2032}
2033
Wanpeng Li404d5d72020-04-28 14:23:25 +08002034fastpath_t handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002035{
2036 u32 msr = kvm_rcx_read(vcpu);
Wanpeng Li8a1038d2020-03-26 10:20:00 +08002037 u64 data;
Wanpeng Li404d5d72020-04-28 14:23:25 +08002038 fastpath_t ret = EXIT_FASTPATH_NONE;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002039
2040 switch (msr) {
2041 case APIC_BASE_MSR + (APIC_ICR >> 4):
Wanpeng Li8a1038d2020-03-26 10:20:00 +08002042 data = kvm_read_edx_eax(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08002043 if (!handle_fastpath_set_x2apic_icr_irqoff(vcpu, data)) {
2044 kvm_skip_emulated_instruction(vcpu);
2045 ret = EXIT_FASTPATH_EXIT_HANDLED;
Haiwei Li80bc97f2020-05-18 09:31:38 +08002046 }
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002047 break;
Dave Hansen09141ec2020-03-05 09:47:06 -08002048 case MSR_IA32_TSC_DEADLINE:
Wanpeng Liae95f562020-04-28 14:23:28 +08002049 data = kvm_read_edx_eax(vcpu);
2050 if (!handle_fastpath_set_tscdeadline(vcpu, data)) {
2051 kvm_skip_emulated_instruction(vcpu);
2052 ret = EXIT_FASTPATH_REENTER_GUEST;
2053 }
2054 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002055 default:
Wanpeng Li404d5d72020-04-28 14:23:25 +08002056 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002057 }
2058
Wanpeng Li404d5d72020-04-28 14:23:25 +08002059 if (ret != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002060 trace_kvm_msr_write(msr, data);
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002061
Wanpeng Li404d5d72020-04-28 14:23:25 +08002062 return ret;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002063}
2064EXPORT_SYMBOL_GPL(handle_fastpath_set_msr_irqoff);
2065
2066/*
Carsten Otte313a3dc2007-10-11 19:16:52 +02002067 * Adapt set_msr() to msr_io()'s calling convention
2068 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002069static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2070{
Peter Xu6abe9c12020-06-22 18:04:41 -04002071 return kvm_get_msr_ignored_check(vcpu, index, data, true);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002072}
2073
Carsten Otte313a3dc2007-10-11 19:16:52 +02002074static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2075{
Peter Xu6abe9c12020-06-22 18:04:41 -04002076 return kvm_set_msr_ignored_check(vcpu, index, *data, true);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002077}
2078
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002079#ifdef CONFIG_X86_64
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002080struct pvclock_clock {
2081 int vclock_mode;
2082 u64 cycle_last;
2083 u64 mask;
2084 u32 mult;
2085 u32 shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002086 u64 base_cycles;
2087 u64 offset;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002088};
2089
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002090struct pvclock_gtod_data {
2091 seqcount_t seq;
2092
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002093 struct pvclock_clock clock; /* extract of a clocksource struct */
2094 struct pvclock_clock raw_clock; /* extract of a clocksource struct */
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002095
Paolo Bonzini917f9472020-01-22 14:32:20 +01002096 ktime_t offs_boot;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002097 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002098};
2099
2100static struct pvclock_gtod_data pvclock_gtod_data;
2101
2102static void update_pvclock_gtod(struct timekeeper *tk)
2103{
2104 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
2105
2106 write_seqcount_begin(&vdata->seq);
2107
2108 /* copy pvclock gtod data */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002109 vdata->clock.vclock_mode = tk->tkr_mono.clock->vdso_clock_mode;
Peter Zijlstra876e7882015-03-19 10:09:06 +01002110 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
2111 vdata->clock.mask = tk->tkr_mono.mask;
2112 vdata->clock.mult = tk->tkr_mono.mult;
2113 vdata->clock.shift = tk->tkr_mono.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002114 vdata->clock.base_cycles = tk->tkr_mono.xtime_nsec;
2115 vdata->clock.offset = tk->tkr_mono.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002116
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002117 vdata->raw_clock.vclock_mode = tk->tkr_raw.clock->vdso_clock_mode;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002118 vdata->raw_clock.cycle_last = tk->tkr_raw.cycle_last;
2119 vdata->raw_clock.mask = tk->tkr_raw.mask;
2120 vdata->raw_clock.mult = tk->tkr_raw.mult;
2121 vdata->raw_clock.shift = tk->tkr_raw.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002122 vdata->raw_clock.base_cycles = tk->tkr_raw.xtime_nsec;
2123 vdata->raw_clock.offset = tk->tkr_raw.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002124
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002125 vdata->wall_time_sec = tk->xtime_sec;
2126
Paolo Bonzini917f9472020-01-22 14:32:20 +01002127 vdata->offs_boot = tk->offs_boot;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002128
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002129 write_seqcount_end(&vdata->seq);
2130}
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002131
2132static s64 get_kvmclock_base_ns(void)
2133{
2134 /* Count up from boot time, but with the frequency of the raw clock. */
2135 return ktime_to_ns(ktime_add(ktime_get_raw(), pvclock_gtod_data.offs_boot));
2136}
2137#else
2138static s64 get_kvmclock_base_ns(void)
2139{
2140 /* Master clock not used, so we can just use CLOCK_BOOTTIME. */
2141 return ktime_get_boottime_ns();
2142}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002143#endif
2144
David Woodhouse55749762021-12-10 16:36:24 +00002145static 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 -02002146{
Avi Kivity9ed3c442010-05-04 15:00:37 +03002147 int version;
2148 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002149 struct pvclock_wall_clock wc;
Joao Martins629b5342018-06-28 15:06:43 -04002150 u32 wc_sec_hi;
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002151 u64 wall_nsec;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002152
2153 if (!wall_clock)
2154 return;
2155
Avi Kivity9ed3c442010-05-04 15:00:37 +03002156 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
2157 if (r)
2158 return;
2159
2160 if (version & 1)
2161 ++version; /* first time write, random junk */
2162
2163 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002164
Nicholas Krause1dab1342015-12-30 13:08:46 -05002165 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
2166 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002167
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002168 /*
2169 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10002170 * system time (updated by kvm_guest_time_update below) to the
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002171 * wall clock specified here. We do the reverse here.
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002172 */
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002173 wall_nsec = ktime_get_real_ns() - get_kvmclock_ns(kvm);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002174
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002175 wc.nsec = do_div(wall_nsec, 1000000000);
2176 wc.sec = (u32)wall_nsec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002177 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002178
2179 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
2180
Joao Martins629b5342018-06-28 15:06:43 -04002181 if (sec_hi_ofs) {
2182 wc_sec_hi = wall_nsec >> 32;
2183 kvm_write_guest(kvm, wall_clock + sec_hi_ofs,
2184 &wc_sec_hi, sizeof(wc_sec_hi));
2185 }
2186
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002187 version++;
2188 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002189}
2190
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002191static void kvm_write_system_time(struct kvm_vcpu *vcpu, gpa_t system_time,
2192 bool old_msr, bool host_initiated)
2193{
2194 struct kvm_arch *ka = &vcpu->kvm->arch;
2195
2196 if (vcpu->vcpu_id == 0 && !host_initiated) {
Oliver Upton1e293d12020-10-27 16:10:43 -07002197 if (ka->boot_vcpu_runs_old_kvmclock != old_msr)
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002198 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2199
2200 ka->boot_vcpu_runs_old_kvmclock = old_msr;
2201 }
2202
2203 vcpu->arch.time = system_time;
2204 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
2205
2206 /* we verify if the enable bit is set... */
2207 vcpu->arch.pv_time_enabled = false;
2208 if (!(system_time & 1))
2209 return;
2210
2211 if (!kvm_gfn_to_hva_cache_init(vcpu->kvm,
2212 &vcpu->arch.pv_time, system_time & ~1ULL,
2213 sizeof(struct pvclock_vcpu_time_info)))
2214 vcpu->arch.pv_time_enabled = true;
2215
2216 return;
2217}
2218
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002219static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
2220{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01002221 do_shl32_div32(dividend, divisor);
2222 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002223}
2224
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002225static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002226 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002227{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002228 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002229 int32_t shift = 0;
2230 uint64_t tps64;
2231 uint32_t tps32;
2232
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002233 tps64 = base_hz;
2234 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02002235 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002236 tps64 >>= 1;
2237 shift--;
2238 }
2239
2240 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02002241 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
2242 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002243 scaled64 >>= 1;
2244 else
2245 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002246 shift++;
2247 }
2248
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002249 *pshift = shift;
2250 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002251}
2252
Marcelo Tosattid8281992012-11-27 23:29:01 -02002253#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002254static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002255#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002256
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002257static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08002258static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002259
Zachary Amsdencc578282012-02-03 15:43:50 -02002260static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10002261{
Zachary Amsdencc578282012-02-03 15:43:50 -02002262 u64 v = (u64)khz * (1000000 + ppm);
2263 do_div(v, 1000000);
2264 return v;
2265}
2266
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002267static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier);
2268
Haozhong Zhang381d5852015-10-20 15:39:04 +08002269static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
2270{
2271 u64 ratio;
2272
2273 /* Guest TSC same frequency as host TSC? */
2274 if (!scale) {
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002275 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002276 return 0;
2277 }
2278
2279 /* TSC scaling supported? */
2280 if (!kvm_has_tsc_control) {
2281 if (user_tsc_khz > tsc_khz) {
2282 vcpu->arch.tsc_catchup = 1;
2283 vcpu->arch.tsc_always_catchup = 1;
2284 return 0;
2285 } else {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002286 pr_warn_ratelimited("user requested TSC rate below hardware speed\n");
Haozhong Zhang381d5852015-10-20 15:39:04 +08002287 return -1;
2288 }
2289 }
2290
2291 /* TSC scaling required - calculate ratio */
2292 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
2293 user_tsc_khz, tsc_khz);
2294
2295 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002296 pr_warn_ratelimited("Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
2297 user_tsc_khz);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002298 return -1;
2299 }
2300
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002301 kvm_vcpu_write_tsc_multiplier(vcpu, ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002302 return 0;
2303}
2304
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002305static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02002306{
2307 u32 thresh_lo, thresh_hi;
2308 int use_scaling = 0;
2309
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002310 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002311 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08002312 /* set tsc_scaling_ratio to a safe value */
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002313 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002314 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08002315 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002316
Zachary Amsdenc2855452010-09-18 14:38:15 -10002317 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002318 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02002319 &vcpu->arch.virtual_tsc_shift,
2320 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002321 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02002322
2323 /*
2324 * Compute the variation in TSC rate which is acceptable
2325 * within the range of tolerance and decide if the
2326 * rate being applied is within that bounds of the hardware
2327 * rate. If so, no scaling or compensation need be done.
2328 */
2329 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
2330 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002331 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
2332 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 -02002333 use_scaling = 1;
2334 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002335 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002336}
2337
2338static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
2339{
Zachary Amsdene26101b2012-02-03 15:43:57 -02002340 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02002341 vcpu->arch.virtual_tsc_mult,
2342 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002343 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002344 return tsc;
2345}
2346
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002347static inline int gtod_is_based_on_tsc(int mode)
2348{
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002349 return mode == VDSO_CLOCKMODE_TSC || mode == VDSO_CLOCKMODE_HVCLOCK;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002350}
2351
Fengguang Wu69b00492015-01-19 22:33:39 +08002352static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002353{
2354#ifdef CONFIG_X86_64
2355 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002356 struct kvm_arch *ka = &vcpu->kvm->arch;
2357 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2358
2359 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2360 atomic_read(&vcpu->kvm->online_vcpus));
2361
Marcelo Tosatti7f187922014-11-04 21:30:44 -02002362 /*
2363 * Once the masterclock is enabled, always perform request in
2364 * order to update it.
2365 *
2366 * In order to enable masterclock, the host clocksource must be TSC
2367 * and the vcpus need to have matched TSCs. When that happens,
2368 * perform request to enable masterclock.
2369 */
2370 if (ka->use_master_clock ||
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002371 (gtod_is_based_on_tsc(gtod->clock.vclock_mode) && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002372 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2373
2374 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
2375 atomic_read(&vcpu->kvm->online_vcpus),
2376 ka->use_master_clock, gtod->clock.vclock_mode);
2377#endif
2378}
2379
Haozhong Zhang35181e82015-10-20 15:39:03 +08002380/*
2381 * Multiply tsc by a fixed point number represented by ratio.
2382 *
2383 * The most significant 64-N bits (mult) of ratio represent the
2384 * integral part of the fixed point number; the remaining N bits
2385 * (frac) represent the fractional part, ie. ratio represents a fixed
2386 * point number (mult + frac * 2^(-N)).
2387 *
2388 * N equals to kvm_tsc_scaling_ratio_frac_bits.
2389 */
2390static inline u64 __scale_tsc(u64 ratio, u64 tsc)
2391{
2392 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
2393}
2394
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002395u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc, u64 ratio)
Haozhong Zhang35181e82015-10-20 15:39:03 +08002396{
2397 u64 _tsc = tsc;
Haozhong Zhang35181e82015-10-20 15:39:03 +08002398
2399 if (ratio != kvm_default_tsc_scaling_ratio)
2400 _tsc = __scale_tsc(ratio, tsc);
2401
2402 return _tsc;
2403}
2404EXPORT_SYMBOL_GPL(kvm_scale_tsc);
2405
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002406static u64 kvm_compute_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
Haozhong Zhang07c14192015-10-20 15:39:05 +08002407{
2408 u64 tsc;
2409
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002410 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang07c14192015-10-20 15:39:05 +08002411
2412 return target_tsc - tsc;
2413}
2414
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002415u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
2416{
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002417 return vcpu->arch.l1_tsc_offset +
2418 kvm_scale_tsc(vcpu, host_tsc, vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002419}
2420EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
2421
Ilias Stamatis83150f22021-05-26 19:44:14 +01002422u64 kvm_calc_nested_tsc_offset(u64 l1_offset, u64 l2_offset, u64 l2_multiplier)
2423{
2424 u64 nested_offset;
2425
2426 if (l2_multiplier == kvm_default_tsc_scaling_ratio)
2427 nested_offset = l1_offset;
2428 else
2429 nested_offset = mul_s64_u64_shr((s64) l1_offset, l2_multiplier,
2430 kvm_tsc_scaling_ratio_frac_bits);
2431
2432 nested_offset += l2_offset;
2433 return nested_offset;
2434}
2435EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_offset);
2436
2437u64 kvm_calc_nested_tsc_multiplier(u64 l1_multiplier, u64 l2_multiplier)
2438{
2439 if (l2_multiplier != kvm_default_tsc_scaling_ratio)
2440 return mul_u64_u64_shr(l1_multiplier, l2_multiplier,
2441 kvm_tsc_scaling_ratio_frac_bits);
2442
2443 return l1_multiplier;
2444}
2445EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_multiplier);
2446
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002447static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 l1_offset)
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002448{
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002449 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2450 vcpu->arch.l1_tsc_offset,
2451 l1_offset);
2452
2453 vcpu->arch.l1_tsc_offset = l1_offset;
2454
2455 /*
2456 * If we are here because L1 chose not to trap WRMSR to TSC then
2457 * according to the spec this should set L1's TSC (as opposed to
2458 * setting L1's offset for L2).
2459 */
2460 if (is_guest_mode(vcpu))
2461 vcpu->arch.tsc_offset = kvm_calc_nested_tsc_offset(
2462 l1_offset,
2463 static_call(kvm_x86_get_l2_tsc_offset)(vcpu),
2464 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2465 else
2466 vcpu->arch.tsc_offset = l1_offset;
2467
2468 static_call(kvm_x86_write_tsc_offset)(vcpu, vcpu->arch.tsc_offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002469}
2470
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002471static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier)
2472{
2473 vcpu->arch.l1_tsc_scaling_ratio = l1_multiplier;
2474
2475 /* Userspace is changing the multiplier while L2 is active */
2476 if (is_guest_mode(vcpu))
2477 vcpu->arch.tsc_scaling_ratio = kvm_calc_nested_tsc_multiplier(
2478 l1_multiplier,
2479 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2480 else
2481 vcpu->arch.tsc_scaling_ratio = l1_multiplier;
2482
2483 if (kvm_has_tsc_control)
2484 static_call(kvm_x86_write_tsc_multiplier)(
2485 vcpu, vcpu->arch.tsc_scaling_ratio);
2486}
2487
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002488static inline bool kvm_check_tsc_unstable(void)
2489{
2490#ifdef CONFIG_X86_64
2491 /*
2492 * TSC is marked unstable when we're running on Hyper-V,
2493 * 'TSC page' clocksource is good.
2494 */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002495 if (pvclock_gtod_data.clock.vclock_mode == VDSO_CLOCKMODE_HVCLOCK)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002496 return false;
2497#endif
2498 return check_tsc_unstable();
2499}
2500
Oliver Upton58d42772021-09-16 18:15:37 +00002501/*
2502 * Infers attempts to synchronize the guest's tsc from host writes. Sets the
2503 * offset for the vcpu and tracks the TSC matching generation that the vcpu
2504 * participates in.
2505 */
2506static void __kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 offset, u64 tsc,
2507 u64 ns, bool matched)
2508{
2509 struct kvm *kvm = vcpu->kvm;
2510
2511 lockdep_assert_held(&kvm->arch.tsc_write_lock);
2512
2513 /*
2514 * We also track th most recent recorded KHZ, write and time to
2515 * allow the matching interval to be extended at each write.
2516 */
2517 kvm->arch.last_tsc_nsec = ns;
2518 kvm->arch.last_tsc_write = tsc;
2519 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Oliver Upton828ca892021-09-16 18:15:38 +00002520 kvm->arch.last_tsc_offset = offset;
Oliver Upton58d42772021-09-16 18:15:37 +00002521
2522 vcpu->arch.last_guest_tsc = tsc;
2523
2524 kvm_vcpu_write_tsc_offset(vcpu, offset);
2525
2526 if (!matched) {
2527 /*
2528 * We split periods of matched TSC writes into generations.
2529 * For each generation, we track the original measured
2530 * nanosecond time, offset, and write, so if TSCs are in
2531 * sync, we can match exact offset, and if not, we can match
2532 * exact software computation in compute_guest_tsc()
2533 *
2534 * These values are tracked in kvm->arch.cur_xxx variables.
2535 */
2536 kvm->arch.cur_tsc_generation++;
2537 kvm->arch.cur_tsc_nsec = ns;
2538 kvm->arch.cur_tsc_write = tsc;
2539 kvm->arch.cur_tsc_offset = offset;
2540 kvm->arch.nr_vcpus_matched_tsc = 0;
2541 } else if (vcpu->arch.this_tsc_generation != kvm->arch.cur_tsc_generation) {
2542 kvm->arch.nr_vcpus_matched_tsc++;
2543 }
2544
2545 /* Keep track of which generation this VCPU has synchronized to */
2546 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
2547 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
2548 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
2549
2550 kvm_track_tsc_matching(vcpu);
2551}
2552
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002553static void kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 data)
Zachary Amsden99e3e302010-08-19 22:07:17 -10002554{
2555 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002556 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002557 unsigned long flags;
Oliver Upton58d42772021-09-16 18:15:37 +00002558 bool matched = false;
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002559 bool synchronizing = false;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002560
Jan Kiszka038f8c12011-02-04 10:49:11 +01002561 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002562 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002563 ns = get_kvmclock_base_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002564 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002565
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002566 if (vcpu->arch.virtual_tsc_khz) {
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002567 if (data == 0) {
Denis Plotnikovbd8fab32017-04-07 12:09:53 +03002568 /*
2569 * detection of vcpu initialization -- need to sync
2570 * with other vCPUs. This particularly helps to keep
2571 * kvm_clock stable after CPU hotplug
2572 */
2573 synchronizing = true;
2574 } else {
2575 u64 tsc_exp = kvm->arch.last_tsc_write +
2576 nsec_to_cycles(vcpu, elapsed);
2577 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
2578 /*
2579 * Special case: TSC write with a small delta (1 second)
2580 * of virtual cycle time against real time is
2581 * interpreted as an attempt to synchronize the CPU.
2582 */
2583 synchronizing = data < tsc_exp + tsc_hz &&
2584 data + tsc_hz > tsc_exp;
2585 }
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002586 }
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002587
2588 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002589 * For a reliable TSC, we can match TSC offsets, and for an unstable
2590 * TSC, we add elapsed time in this computation. We could let the
2591 * compensation code attempt to catch up if we fall behind, but
2592 * it's better to try to match offsets from the beginning.
2593 */
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002594 if (synchronizing &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002595 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002596 if (!kvm_check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02002597 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002598 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01002599 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002600 data += delta;
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002601 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002602 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002603 matched = true;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002604 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02002605
Oliver Upton58d42772021-09-16 18:15:37 +00002606 __kvm_synchronize_tsc(vcpu, offset, data, ns, matched);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002607 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002608}
Zachary Amsdene26101b2012-02-03 15:43:57 -02002609
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002610static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
2611 s64 adjustment)
2612{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07002613 u64 tsc_offset = vcpu->arch.l1_tsc_offset;
Leonid Shatz326e7422018-11-06 12:14:25 +02002614 kvm_vcpu_write_tsc_offset(vcpu, tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002615}
2616
2617static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
2618{
Ilias Stamatis805d7052021-05-26 19:44:09 +01002619 if (vcpu->arch.l1_tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002620 WARN_ON(adjustment < 0);
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002621 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment,
2622 vcpu->arch.l1_tsc_scaling_ratio);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01002623 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002624}
2625
Marcelo Tosattid8281992012-11-27 23:29:01 -02002626#ifdef CONFIG_X86_64
2627
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002628static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002629{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002630 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02002631 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002632
2633 if (likely(ret >= last))
2634 return ret;
2635
2636 /*
2637 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08002638 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02002639 * very likely) and there's a data dependence, so force GCC
2640 * to generate a branch instead. I don't barrier() because
2641 * we don't actually need a barrier, and if this function
2642 * ever gets inlined it will generate worse code.
2643 */
2644 asm volatile ("");
2645 return last;
2646}
2647
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002648static inline u64 vgettsc(struct pvclock_clock *clock, u64 *tsc_timestamp,
2649 int *mode)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002650{
2651 long v;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002652 u64 tsc_pg_val;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002653
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002654 switch (clock->vclock_mode) {
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002655 case VDSO_CLOCKMODE_HVCLOCK:
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002656 tsc_pg_val = hv_read_tsc_page_tsc(hv_get_tsc_page(),
2657 tsc_timestamp);
2658 if (tsc_pg_val != U64_MAX) {
2659 /* TSC page valid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002660 *mode = VDSO_CLOCKMODE_HVCLOCK;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002661 v = (tsc_pg_val - clock->cycle_last) &
2662 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002663 } else {
2664 /* TSC page invalid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002665 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002666 }
2667 break;
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002668 case VDSO_CLOCKMODE_TSC:
2669 *mode = VDSO_CLOCKMODE_TSC;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002670 *tsc_timestamp = read_tsc();
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002671 v = (*tsc_timestamp - clock->cycle_last) &
2672 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002673 break;
2674 default:
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002675 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002676 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002677
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002678 if (*mode == VDSO_CLOCKMODE_NONE)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002679 *tsc_timestamp = v = 0;
2680
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002681 return v * clock->mult;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002682}
2683
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002684static int do_monotonic_raw(s64 *t, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002685{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002686 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002687 unsigned long seq;
2688 int mode;
2689 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002690
Marcelo Tosattid8281992012-11-27 23:29:01 -02002691 do {
2692 seq = read_seqcount_begin(&gtod->seq);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002693 ns = gtod->raw_clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002694 ns += vgettsc(&gtod->raw_clock, tsc_timestamp, &mode);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002695 ns >>= gtod->raw_clock.shift;
2696 ns += ktime_to_ns(ktime_add(gtod->raw_clock.offset, gtod->offs_boot));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002697 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002698 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002699
2700 return mode;
2701}
2702
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002703static int do_realtime(struct timespec64 *ts, u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002704{
2705 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2706 unsigned long seq;
2707 int mode;
2708 u64 ns;
2709
2710 do {
2711 seq = read_seqcount_begin(&gtod->seq);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002712 ts->tv_sec = gtod->wall_time_sec;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002713 ns = gtod->clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002714 ns += vgettsc(&gtod->clock, tsc_timestamp, &mode);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002715 ns >>= gtod->clock.shift;
2716 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
2717
2718 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
2719 ts->tv_nsec = ns;
2720
2721 return mode;
2722}
2723
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002724/* returns true if host is using TSC based clocksource */
2725static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002726{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002727 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002728 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosattid8281992012-11-27 23:29:01 -02002729 return false;
2730
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002731 return gtod_is_based_on_tsc(do_monotonic_raw(kernel_ns,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002732 tsc_timestamp));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002733}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002734
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002735/* returns true if host is using TSC based clocksource */
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002736static bool kvm_get_walltime_and_clockread(struct timespec64 *ts,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002737 u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002738{
2739 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002740 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002741 return false;
2742
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002743 return gtod_is_based_on_tsc(do_realtime(ts, tsc_timestamp));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002744}
Marcelo Tosattid8281992012-11-27 23:29:01 -02002745#endif
2746
2747/*
2748 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002749 * Assuming a stable TSC across physical CPUS, and a stable TSC
2750 * across virtual CPUs, the following condition is possible.
2751 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02002752 * CPUs at the next numbered event.
2753 *
2754 * "timespecX" represents host monotonic time. "tscX" represents
2755 * RDTSC value.
2756 *
2757 * VCPU0 on CPU0 | VCPU1 on CPU1
2758 *
2759 * 1. read timespec0,tsc0
2760 * 2. | timespec1 = timespec0 + N
2761 * | tsc1 = tsc0 + M
2762 * 3. transition to guest | transition to guest
2763 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
2764 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
2765 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
2766 *
2767 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
2768 *
2769 * - ret0 < ret1
2770 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
2771 * ...
2772 * - 0 < N - M => M < N
2773 *
2774 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
2775 * always the case (the difference between two distinct xtime instances
2776 * might be smaller then the difference between corresponding TSC reads,
2777 * when updating guest vcpus pvclock areas).
2778 *
2779 * To avoid that problem, do not allow visibility of distinct
2780 * system_timestamp/tsc_timestamp values simultaneously: use a master
2781 * copy of host monotonic time values. Update that master copy
2782 * in lockstep.
2783 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002784 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02002785 *
2786 */
2787
2788static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
2789{
2790#ifdef CONFIG_X86_64
2791 struct kvm_arch *ka = &kvm->arch;
2792 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002793 bool host_tsc_clocksource, vcpus_matched;
2794
Paolo Bonzini869b4422021-09-16 18:15:36 +00002795 lockdep_assert_held(&kvm->arch.tsc_write_lock);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002796 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2797 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002798
2799 /*
2800 * If the host uses TSC clock, then passthrough TSC as stable
2801 * to the guest.
2802 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002803 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02002804 &ka->master_kernel_ns,
2805 &ka->master_cycle_now);
2806
Marcelo Tosatti16a96022014-05-14 12:43:24 -03002807 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Ladi Proseka826faf2017-06-26 09:56:43 +02002808 && !ka->backwards_tsc_observed
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002809 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002810
Marcelo Tosattid8281992012-11-27 23:29:01 -02002811 if (ka->use_master_clock)
2812 atomic_set(&kvm_guest_has_master_clock, 1);
2813
2814 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002815 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
2816 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002817#endif
2818}
2819
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002820static void kvm_make_mclock_inprogress_request(struct kvm *kvm)
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002821{
2822 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
2823}
2824
Paolo Bonzini869b4422021-09-16 18:15:36 +00002825static void __kvm_start_pvclock_update(struct kvm *kvm)
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002826{
Paolo Bonzini869b4422021-09-16 18:15:36 +00002827 raw_spin_lock_irq(&kvm->arch.tsc_write_lock);
2828 write_seqcount_begin(&kvm->arch.pvclock_sc);
2829}
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002830
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002831static void kvm_start_pvclock_update(struct kvm *kvm)
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002832{
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002833 kvm_make_mclock_inprogress_request(kvm);
Paolo Bonzinic2c647f2021-03-25 14:05:11 -04002834
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002835 /* no guest entries from this point */
Paolo Bonzini869b4422021-09-16 18:15:36 +00002836 __kvm_start_pvclock_update(kvm);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002837}
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002838
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002839static void kvm_end_pvclock_update(struct kvm *kvm)
2840{
2841 struct kvm_arch *ka = &kvm->arch;
2842 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00002843 unsigned long i;
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002844
Paolo Bonzini869b4422021-09-16 18:15:36 +00002845 write_seqcount_end(&ka->pvclock_sc);
2846 raw_spin_unlock_irq(&ka->tsc_write_lock);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002847 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002848 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002849
2850 /* guest entries allowed */
2851 kvm_for_each_vcpu(i, vcpu, kvm)
Radim Krčmář72875d82017-04-26 22:32:19 +02002852 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002853}
2854
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002855static void kvm_update_masterclock(struct kvm *kvm)
2856{
2857 kvm_hv_invalidate_tsc_page(kvm);
2858 kvm_start_pvclock_update(kvm);
2859 pvclock_update_vm_gtod_copy(kvm);
2860 kvm_end_pvclock_update(kvm);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002861}
2862
Paolo Bonzini869b4422021-09-16 18:15:36 +00002863/* Called within read_seqcount_begin/retry for kvm->pvclock_sc. */
2864static void __get_kvmclock(struct kvm *kvm, struct kvm_clock_data *data)
Paolo Bonzini108b2492016-09-01 14:21:03 +02002865{
Paolo Bonzini108b2492016-09-01 14:21:03 +02002866 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002867 struct pvclock_vcpu_time_info hv_clock;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002868
Wanpeng Lie2c22062017-05-11 18:12:05 -07002869 /* both __this_cpu_read() and rdtsc() should be on the same cpu */
2870 get_cpu();
2871
Paolo Bonzini869b4422021-09-16 18:15:36 +00002872 data->flags = 0;
2873 if (ka->use_master_clock && __this_cpu_read(cpu_tsc_khz)) {
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00002874#ifdef CONFIG_X86_64
2875 struct timespec64 ts;
2876
2877 if (kvm_get_walltime_and_clockread(&ts, &data->host_tsc)) {
2878 data->realtime = ts.tv_nsec + NSEC_PER_SEC * ts.tv_sec;
2879 data->flags |= KVM_CLOCK_REALTIME | KVM_CLOCK_HOST_TSC;
2880 } else
2881#endif
2882 data->host_tsc = rdtsc();
2883
Paolo Bonzini869b4422021-09-16 18:15:36 +00002884 data->flags |= KVM_CLOCK_TSC_STABLE;
2885 hv_clock.tsc_timestamp = ka->master_cycle_now;
2886 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
Wanpeng Lie70b57a2017-11-20 14:55:05 -08002887 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
2888 &hv_clock.tsc_shift,
2889 &hv_clock.tsc_to_system_mul);
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00002890 data->clock = __pvclock_read_cycles(&hv_clock, data->host_tsc);
Oliver Upton55c0cef2021-09-16 18:15:34 +00002891 } else {
2892 data->clock = get_kvmclock_base_ns() + ka->kvmclock_offset;
2893 }
Wanpeng Lie2c22062017-05-11 18:12:05 -07002894
2895 put_cpu();
Oliver Upton55c0cef2021-09-16 18:15:34 +00002896}
Wanpeng Lie2c22062017-05-11 18:12:05 -07002897
Paolo Bonzini869b4422021-09-16 18:15:36 +00002898static void get_kvmclock(struct kvm *kvm, struct kvm_clock_data *data)
2899{
2900 struct kvm_arch *ka = &kvm->arch;
2901 unsigned seq;
2902
2903 do {
2904 seq = read_seqcount_begin(&ka->pvclock_sc);
2905 __get_kvmclock(kvm, data);
2906 } while (read_seqcount_retry(&ka->pvclock_sc, seq));
2907}
2908
Oliver Upton55c0cef2021-09-16 18:15:34 +00002909u64 get_kvmclock_ns(struct kvm *kvm)
2910{
2911 struct kvm_clock_data data;
2912
Oliver Upton55c0cef2021-09-16 18:15:34 +00002913 get_kvmclock(kvm, &data);
2914 return data.clock;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002915}
2916
Joao Martinsaa096aa2019-02-01 13:01:45 -05002917static void kvm_setup_pvclock_page(struct kvm_vcpu *v,
2918 struct gfn_to_hva_cache *cache,
2919 unsigned int offset)
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002920{
2921 struct kvm_vcpu_arch *vcpu = &v->arch;
2922 struct pvclock_vcpu_time_info guest_hv_clock;
2923
Joao Martinsaa096aa2019-02-01 13:01:45 -05002924 if (unlikely(kvm_read_guest_offset_cached(v->kvm, cache,
2925 &guest_hv_clock, offset, sizeof(guest_hv_clock))))
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002926 return;
2927
2928 /* This VCPU is paused, but it's legal for a guest to read another
2929 * VCPU's kvmclock, so we really have to follow the specification where
2930 * it says that version is odd if data is being modified, and even after
2931 * it is consistent.
2932 *
2933 * Version field updates must be kept separate. This is because
2934 * kvm_write_guest_cached might use a "rep movs" instruction, and
2935 * writes within a string instruction are weakly ordered. So there
2936 * are three writes overall.
2937 *
2938 * As a small optimization, only write the version field in the first
2939 * and third write. The vcpu->pv_time cache is still valid, because the
2940 * version field is the first in the struct.
2941 */
2942 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
2943
Liran Alon51c4b8b2017-11-05 16:11:30 +02002944 if (guest_hv_clock.version & 1)
2945 ++guest_hv_clock.version; /* first time write, random junk */
2946
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002947 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002948 kvm_write_guest_offset_cached(v->kvm, cache,
2949 &vcpu->hv_clock, offset,
2950 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002951
2952 smp_wmb();
2953
2954 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
2955 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
2956
2957 if (vcpu->pvclock_set_guest_stopped_request) {
2958 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
2959 vcpu->pvclock_set_guest_stopped_request = false;
2960 }
2961
2962 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
2963
Joao Martinsaa096aa2019-02-01 13:01:45 -05002964 kvm_write_guest_offset_cached(v->kvm, cache,
2965 &vcpu->hv_clock, offset,
2966 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002967
2968 smp_wmb();
2969
2970 vcpu->hv_clock.version++;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002971 kvm_write_guest_offset_cached(v->kvm, cache,
2972 &vcpu->hv_clock, offset,
2973 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002974}
2975
Zachary Amsden34c238a2010-09-18 14:38:14 -10002976static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002977{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002978 unsigned long flags, tgt_tsc_khz;
Paolo Bonzini869b4422021-09-16 18:15:36 +00002979 unsigned seq;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002980 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002981 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02002982 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002983 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002984 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002985 bool use_master_clock;
2986
2987 kernel_ns = 0;
2988 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002989
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002990 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02002991 * If the host uses TSC clock, then passthrough TSC as stable
2992 * to the guest.
2993 */
Paolo Bonzini869b4422021-09-16 18:15:36 +00002994 do {
2995 seq = read_seqcount_begin(&ka->pvclock_sc);
2996 use_master_clock = ka->use_master_clock;
2997 if (use_master_clock) {
2998 host_tsc = ka->master_cycle_now;
2999 kernel_ns = ka->master_kernel_ns;
3000 }
3001 } while (read_seqcount_retry(&ka->pvclock_sc, seq));
Marcelo Tosattic09664b2013-03-18 13:54:32 -03003002
3003 /* Keep irq disabled to prevent changes to the clock */
3004 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003005 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
3006 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03003007 local_irq_restore(flags);
3008 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
3009 return 1;
3010 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02003011 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02003012 host_tsc = rdtsc();
Paolo Bonzini8171cd62020-01-22 14:36:09 +01003013 kernel_ns = get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02003014 }
3015
Haozhong Zhang4ba76532015-10-20 15:39:07 +08003016 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02003017
3018 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10003019 * We may have to catch up the TSC to match elapsed wall clock
3020 * time for two reasons, even if kvmclock is used.
3021 * 1) CPU could have been running below the maximum TSC rate
3022 * 2) Broken TSC compensation resets the base at each VCPU
3023 * entry to avoid unknown leaps of TSC even when running
3024 * again on the same CPU. This may cause apparent elapsed
3025 * time to disappear, and the guest to stand still or run
3026 * very slowly.
3027 */
3028 if (vcpu->tsc_catchup) {
3029 u64 tsc = compute_guest_tsc(v, kernel_ns);
3030 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02003031 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10003032 tsc_timestamp = tsc;
3033 }
3034 }
3035
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003036 local_irq_restore(flags);
3037
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02003038 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10003039
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003040 if (kvm_has_tsc_control)
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003041 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz,
3042 v->arch.l1_tsc_scaling_ratio);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003043
3044 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01003045 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10003046 &vcpu->hv_clock.tsc_shift,
3047 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003048 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10003049 }
3050
Zachary Amsden1d5f0662010-08-19 22:07:30 -10003051 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10003052 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10003053 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003054
Marcelo Tosattid8281992012-11-27 23:29:01 -02003055 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02003056 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02003057 if (use_master_clock)
3058 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
3059
Marcelo Tosatti78c03372012-11-27 23:28:47 -02003060 vcpu->hv_clock.flags = pvclock_flags;
3061
Paolo Bonzini095cf552016-02-08 12:54:12 +01003062 if (vcpu->pv_time_enabled)
Joao Martinsaa096aa2019-02-01 13:01:45 -05003063 kvm_setup_pvclock_page(v, &vcpu->pv_time, 0);
3064 if (vcpu->xen.vcpu_info_set)
3065 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_info_cache,
3066 offsetof(struct compat_vcpu_info, time));
Joao Martinsf2340cd2018-07-23 11:20:57 -04003067 if (vcpu->xen.vcpu_time_info_set)
3068 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_time_info_cache, 0);
Sean Christopherson94c245a2021-09-10 11:32:20 -07003069 if (!v->vcpu_idx)
Paolo Bonzini095cf552016-02-08 12:54:12 +01003070 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10003071 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01003072}
3073
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003074/*
3075 * kvmclock updates which are isolated to a given vcpu, such as
3076 * vcpu->cpu migration, should not allow system_timestamp from
3077 * the rest of the vcpus to remain static. Otherwise ntp frequency
3078 * correction applies to one vcpu's system_timestamp but not
3079 * the others.
3080 *
3081 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01003082 * We need to rate-limit these requests though, as they can
3083 * considerably slow guests that have a large number of vcpus.
3084 * The time for a remote vcpu to update its kvmclock is bound
3085 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003086 */
3087
Andrew Jones7e44e442014-02-28 12:52:54 +01003088#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
3089
3090static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003091{
Marc Zyngier46808a42021-11-16 16:04:02 +00003092 unsigned long i;
Andrew Jones7e44e442014-02-28 12:52:54 +01003093 struct delayed_work *dwork = to_delayed_work(work);
3094 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3095 kvmclock_update_work);
3096 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003097 struct kvm_vcpu *vcpu;
3098
3099 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003100 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003101 kvm_vcpu_kick(vcpu);
3102 }
3103}
3104
Andrew Jones7e44e442014-02-28 12:52:54 +01003105static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
3106{
3107 struct kvm *kvm = v->kvm;
3108
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003109 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01003110 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
3111 KVMCLOCK_UPDATE_DELAY);
3112}
3113
Andrew Jones332967a2014-02-28 12:52:55 +01003114#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
3115
3116static void kvmclock_sync_fn(struct work_struct *work)
3117{
3118 struct delayed_work *dwork = to_delayed_work(work);
3119 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3120 kvmclock_sync_work);
3121 struct kvm *kvm = container_of(ka, struct kvm, arch);
3122
Marcelo Tosatti630994b2015-05-12 22:42:04 -03003123 if (!kvmclock_periodic_sync)
3124 return;
3125
Andrew Jones332967a2014-02-28 12:52:55 +01003126 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
3127 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
3128 KVMCLOCK_SYNC_PERIOD);
3129}
3130
Borislav Petkov191c8132019-04-18 18:32:50 +02003131/*
3132 * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP.
3133 */
3134static bool can_set_mci_status(struct kvm_vcpu *vcpu)
3135{
3136 /* McStatusWrEn enabled? */
Sean Christopherson23493d02020-03-04 17:34:33 -08003137 if (guest_cpuid_is_amd_or_hygon(vcpu))
Borislav Petkov191c8132019-04-18 18:32:50 +02003138 return !!(vcpu->arch.msr_hwcr & BIT_ULL(18));
3139
3140 return false;
3141}
3142
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003143static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Huang Ying890ca9a2009-05-11 16:48:15 +08003144{
3145 u64 mcg_cap = vcpu->arch.mcg_cap;
3146 unsigned bank_num = mcg_cap & 0xff;
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003147 u32 msr = msr_info->index;
3148 u64 data = msr_info->data;
Huang Ying890ca9a2009-05-11 16:48:15 +08003149
3150 switch (msr) {
3151 case MSR_IA32_MCG_STATUS:
3152 vcpu->arch.mcg_status = data;
3153 break;
3154 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003155 if (!(mcg_cap & MCG_CTL_P) &&
3156 (data || !msr_info->host_initiated))
Huang Ying890ca9a2009-05-11 16:48:15 +08003157 return 1;
3158 if (data != 0 && data != ~(u64)0)
Paolo Bonzini44883f02018-07-26 13:01:52 +02003159 return 1;
Huang Ying890ca9a2009-05-11 16:48:15 +08003160 vcpu->arch.mcg_ctl = data;
3161 break;
3162 default:
3163 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003164 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003165 u32 offset = array_index_nospec(
3166 msr - MSR_IA32_MC0_CTL,
3167 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3168
Andre Przywara114be422010-03-24 17:46:42 +01003169 /* only 0 or all 1s can be written to IA32_MCi_CTL
3170 * some Linux kernels though clear bit 10 in bank 4 to
3171 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
3172 * this to avoid an uncatched #GP in the guest
3173 */
Huang Ying890ca9a2009-05-11 16:48:15 +08003174 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01003175 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08003176 return -1;
Borislav Petkov191c8132019-04-18 18:32:50 +02003177
3178 /* MCi_STATUS */
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003179 if (!msr_info->host_initiated &&
Borislav Petkov191c8132019-04-18 18:32:50 +02003180 (offset & 0x3) == 1 && data != 0) {
3181 if (!can_set_mci_status(vcpu))
3182 return -1;
3183 }
3184
Huang Ying890ca9a2009-05-11 16:48:15 +08003185 vcpu->arch.mce_banks[offset] = data;
3186 break;
3187 }
3188 return 1;
3189 }
3190 return 0;
3191}
3192
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003193static inline bool kvm_pv_async_pf_enabled(struct kvm_vcpu *vcpu)
3194{
3195 u64 mask = KVM_ASYNC_PF_ENABLED | KVM_ASYNC_PF_DELIVERY_AS_INT;
3196
3197 return (vcpu->arch.apf.msr_en_val & mask) == mask;
3198}
3199
Gleb Natapov344d9582010-10-14 11:22:50 +02003200static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
3201{
3202 gpa_t gpa = data & ~0x3f;
3203
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003204 /* Bits 4:5 are reserved, Should be zero */
3205 if (data & 0x30)
Gleb Natapov344d9582010-10-14 11:22:50 +02003206 return 1;
3207
Oliver Upton66570e92020-08-18 15:24:28 +00003208 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_VMEXIT) &&
3209 (data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT))
3210 return 1;
3211
3212 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT) &&
3213 (data & KVM_ASYNC_PF_DELIVERY_AS_INT))
3214 return 1;
3215
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003216 if (!lapic_in_kernel(vcpu))
Vitaly Kuznetsovd831de12020-09-11 11:31:47 +02003217 return data ? 1 : 0;
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003218
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003219 vcpu->arch.apf.msr_en_val = data;
Gleb Natapov344d9582010-10-14 11:22:50 +02003220
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003221 if (!kvm_pv_async_pf_enabled(vcpu)) {
Gleb Natapov344d9582010-10-14 11:22:50 +02003222 kvm_clear_async_pf_completion_queue(vcpu);
3223 kvm_async_pf_hash_reset(vcpu);
3224 return 0;
3225 }
3226
Paolo Bonzini4e335d92017-05-02 16:20:18 +02003227 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003228 sizeof(u64)))
Gleb Natapov344d9582010-10-14 11:22:50 +02003229 return 1;
3230
Gleb Natapov6adba522010-10-14 11:22:55 +02003231 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Wanpeng Li52a5c152017-07-13 18:30:42 -07003232 vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003233
Gleb Natapov344d9582010-10-14 11:22:50 +02003234 kvm_async_pf_wakeup_all(vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003235
3236 return 0;
3237}
3238
3239static int kvm_pv_enable_async_pf_int(struct kvm_vcpu *vcpu, u64 data)
3240{
3241 /* Bits 8-63 are reserved */
3242 if (data >> 8)
3243 return 1;
3244
3245 if (!lapic_in_kernel(vcpu))
3246 return 1;
3247
3248 vcpu->arch.apf.msr_int_val = data;
3249
3250 vcpu->arch.apf.vec = data & KVM_ASYNC_PF_VEC_MASK;
3251
Gleb Natapov344d9582010-10-14 11:22:50 +02003252 return 0;
3253}
3254
Glauber Costa12f9a482011-02-01 14:16:40 -05003255static void kvmclock_reset(struct kvm_vcpu *vcpu)
3256{
Andy Honig0b794592013-02-20 14:48:10 -08003257 vcpu->arch.pv_time_enabled = false;
Paolo Bonzini49dedf02019-10-10 12:49:22 +02003258 vcpu->arch.time = 0;
Glauber Costa12f9a482011-02-01 14:16:40 -05003259}
3260
Sean Christopherson77809382020-03-20 14:28:18 -07003261static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003262{
3263 ++vcpu->stat.tlb_flush;
Jason Baronb36464772021-01-14 22:27:56 -05003264 static_call(kvm_x86_tlb_flush_all)(vcpu);
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003265}
3266
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003267static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
3268{
3269 ++vcpu->stat.tlb_flush;
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003270
3271 if (!tdp_enabled) {
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003272 /*
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003273 * A TLB flush on behalf of the guest is equivalent to
3274 * INVPCID(all), toggling CR4.PGE, etc., which requires
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003275 * a forced sync of the shadow page tables. Ensure all the
3276 * roots are synced and the guest TLB in hardware is clean.
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003277 */
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003278 kvm_mmu_sync_roots(vcpu);
3279 kvm_mmu_sync_prev_roots(vcpu);
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003280 }
3281
Jason Baronb36464772021-01-14 22:27:56 -05003282 static_call(kvm_x86_tlb_flush_guest)(vcpu);
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003283}
3284
Sean Christopherson40e5f9082021-11-25 01:49:43 +00003285
3286static inline void kvm_vcpu_flush_tlb_current(struct kvm_vcpu *vcpu)
3287{
3288 ++vcpu->stat.tlb_flush;
3289 static_call(kvm_x86_tlb_flush_current)(vcpu);
3290}
3291
3292/*
3293 * Service "local" TLB flush requests, which are specific to the current MMU
3294 * context. In addition to the generic event handling in vcpu_enter_guest(),
3295 * TLB flushes that are targeted at an MMU context also need to be serviced
3296 * prior before nested VM-Enter/VM-Exit.
3297 */
3298void kvm_service_local_tlb_flush_requests(struct kvm_vcpu *vcpu)
3299{
3300 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
3301 kvm_vcpu_flush_tlb_current(vcpu);
3302
3303 if (kvm_check_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu))
3304 kvm_vcpu_flush_tlb_guest(vcpu);
3305}
3306EXPORT_SYMBOL_GPL(kvm_service_local_tlb_flush_requests);
3307
Glauber Costac9aaa892011-07-11 15:28:14 -04003308static void record_steal_time(struct kvm_vcpu *vcpu)
3309{
David Woodhouse7e2175e2021-11-02 17:36:39 +00003310 struct gfn_to_hva_cache *ghc = &vcpu->arch.st.cache;
3311 struct kvm_steal_time __user *st;
3312 struct kvm_memslots *slots;
3313 u64 steal;
3314 u32 version;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003315
David Woodhouse30b5c852021-03-01 12:53:09 +00003316 if (kvm_xen_msr_enabled(vcpu->kvm)) {
3317 kvm_xen_runstate_set_running(vcpu);
3318 return;
3319 }
3320
Glauber Costac9aaa892011-07-11 15:28:14 -04003321 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
3322 return;
3323
David Woodhouse7e2175e2021-11-02 17:36:39 +00003324 if (WARN_ON_ONCE(current->mm != vcpu->kvm->mm))
Glauber Costac9aaa892011-07-11 15:28:14 -04003325 return;
3326
David Woodhouse7e2175e2021-11-02 17:36:39 +00003327 slots = kvm_memslots(vcpu->kvm);
3328
3329 if (unlikely(slots->generation != ghc->generation ||
3330 kvm_is_error_hva(ghc->hva) || !ghc->memslot)) {
3331 gfn_t gfn = vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS;
3332
3333 /* We rely on the fact that it fits in a single page. */
3334 BUILD_BUG_ON((sizeof(*st) - 1) & KVM_STEAL_VALID_BITS);
3335
3336 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, gfn, sizeof(*st)) ||
3337 kvm_is_error_hva(ghc->hva) || !ghc->memslot)
3338 return;
3339 }
3340
3341 st = (struct kvm_steal_time __user *)ghc->hva;
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003342 /*
3343 * Doing a TLB flush here, on the guest's behalf, can avoid
3344 * expensive IPIs.
3345 */
Oliver Upton66570e92020-08-18 15:24:28 +00003346 if (guest_pv_has(vcpu, KVM_FEATURE_PV_TLB_FLUSH)) {
David Woodhouse7e2175e2021-11-02 17:36:39 +00003347 u8 st_preempted = 0;
3348 int err = -EFAULT;
3349
Paolo Bonzini3e067fd2021-11-12 02:53:41 -05003350 if (!user_access_begin(st, sizeof(*st)))
3351 return;
3352
David Woodhouse7e2175e2021-11-02 17:36:39 +00003353 asm volatile("1: xchgb %0, %2\n"
3354 "xor %1, %1\n"
3355 "2:\n"
3356 _ASM_EXTABLE_UA(1b, 2b)
David Woodhouse964b7aa2021-11-14 08:59:02 +00003357 : "+q" (st_preempted),
3358 "+&r" (err),
3359 "+m" (st->preempted));
David Woodhouse7e2175e2021-11-02 17:36:39 +00003360 if (err)
3361 goto out;
3362
3363 user_access_end();
3364
3365 vcpu->arch.st.preempted = 0;
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003366
Oliver Upton66570e92020-08-18 15:24:28 +00003367 trace_kvm_pv_tlb_flush(vcpu->vcpu_id,
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003368 st_preempted & KVM_VCPU_FLUSH_TLB);
3369 if (st_preempted & KVM_VCPU_FLUSH_TLB)
Oliver Upton66570e92020-08-18 15:24:28 +00003370 kvm_vcpu_flush_tlb_guest(vcpu);
David Woodhouse7e2175e2021-11-02 17:36:39 +00003371
3372 if (!user_access_begin(st, sizeof(*st)))
3373 goto dirty;
Wanpeng Li1eff0ad2021-05-18 05:00:33 -07003374 } else {
Paolo Bonzini3e067fd2021-11-12 02:53:41 -05003375 if (!user_access_begin(st, sizeof(*st)))
3376 return;
3377
David Woodhouse7e2175e2021-11-02 17:36:39 +00003378 unsafe_put_user(0, &st->preempted, out);
3379 vcpu->arch.st.preempted = 0;
Oliver Upton66570e92020-08-18 15:24:28 +00003380 }
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003381
David Woodhouse7e2175e2021-11-02 17:36:39 +00003382 unsafe_get_user(version, &st->version, out);
3383 if (version & 1)
3384 version += 1; /* first time write, random junk */
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003385
David Woodhouse7e2175e2021-11-02 17:36:39 +00003386 version += 1;
3387 unsafe_put_user(version, &st->version, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003388
3389 smp_wmb();
3390
David Woodhouse7e2175e2021-11-02 17:36:39 +00003391 unsafe_get_user(steal, &st->steal, out);
3392 steal += current->sched_info.run_delay -
Liang Chenc54cdf12016-03-16 19:33:16 +08003393 vcpu->arch.st.last_steal;
3394 vcpu->arch.st.last_steal = current->sched_info.run_delay;
David Woodhouse7e2175e2021-11-02 17:36:39 +00003395 unsafe_put_user(steal, &st->steal, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003396
David Woodhouse7e2175e2021-11-02 17:36:39 +00003397 version += 1;
3398 unsafe_put_user(version, &st->version, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003399
David Woodhouse7e2175e2021-11-02 17:36:39 +00003400 out:
3401 user_access_end();
3402 dirty:
3403 mark_page_dirty_in_slot(vcpu->kvm, ghc->memslot, gpa_to_gfn(ghc->gpa));
Glauber Costac9aaa892011-07-11 15:28:14 -04003404}
3405
Will Auld8fe8ab42012-11-29 12:42:12 -08003406int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003407{
Gleb Natapov57537852012-01-15 14:17:22 +02003408 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08003409 u32 msr = msr_info->index;
3410 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02003411
Joao Martins1232f8e2018-06-13 06:10:37 -04003412 if (msr && msr == vcpu->kvm->arch.xen_hvm_config.msr)
Joao Martins23200b72018-06-13 09:55:44 -04003413 return kvm_xen_write_hypercall_page(vcpu, data);
Joao Martins1232f8e2018-06-13 06:10:37 -04003414
Carsten Otte15c4a642007-10-30 18:44:17 +01003415 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01003416 case MSR_AMD64_NB_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003417 case MSR_IA32_UCODE_WRITE:
3418 case MSR_VM_HSAVE_PA:
3419 case MSR_AMD64_PATCH_LOADER:
3420 case MSR_AMD64_BU_CFG2:
Ladi Prosek405a3532017-04-06 15:22:20 +02003421 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003422 case MSR_F15H_EX_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003423 break;
3424
Wanpeng Li518e7b92018-02-28 14:03:31 +08003425 case MSR_IA32_UCODE_REV:
3426 if (msr_info->host_initiated)
3427 vcpu->arch.microcode_version = data;
3428 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003429 case MSR_IA32_ARCH_CAPABILITIES:
3430 if (!msr_info->host_initiated)
3431 return 1;
3432 vcpu->arch.arch_capabilities = data;
3433 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003434 case MSR_IA32_PERF_CAPABILITIES: {
3435 struct kvm_msr_entry msr_ent = {.index = msr, .data = 0};
3436
3437 if (!msr_info->host_initiated)
3438 return 1;
Vitaly Kuznetsov1aa2abb2021-12-16 17:52:13 +01003439 if (kvm_get_msr_feature(&msr_ent))
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003440 return 1;
3441 if (data & ~msr_ent.data)
3442 return 1;
3443
3444 vcpu->arch.perf_capabilities = data;
3445
3446 return 0;
3447 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003448 case MSR_EFER:
Sean Christopherson11988492019-04-02 08:19:15 -07003449 return set_efer(vcpu, msr_info);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003450 case MSR_K7_HWCR:
3451 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01003452 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08003453 data &= ~(u64)0x8; /* ignore TLB cache disable */
Borislav Petkov191c8132019-04-18 18:32:50 +02003454
3455 /* Handle McStatusWrEn */
3456 if (data == BIT_ULL(18)) {
3457 vcpu->arch.msr_hwcr = data;
3458 } else if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003459 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
3460 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003461 return 1;
3462 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003463 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003464 case MSR_FAM10H_MMIO_CONF_BASE:
3465 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003466 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
3467 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003468 return 1;
3469 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003470 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03003471 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003472 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003473 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01003474 return kvm_set_apic_base(vcpu, msr_info);
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003475 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03003476 return kvm_x2apic_msr_write(vcpu, msr, data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003477 case MSR_IA32_TSC_DEADLINE:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003478 kvm_set_lapic_tscdeadline_msr(vcpu, data);
3479 break;
Will Auldba904632012-11-29 12:42:50 -08003480 case MSR_IA32_TSC_ADJUST:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003481 if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) {
Will Auldba904632012-11-29 12:42:50 -08003482 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06003483 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08003484 adjust_tsc_offset_guest(vcpu, adj);
Zelin Dengd9130a22021-04-28 10:22:01 +08003485 /* Before back to guest, tsc_timestamp must be adjusted
3486 * as well, otherwise guest's percpu pvclock time could jump.
3487 */
3488 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Will Auldba904632012-11-29 12:42:50 -08003489 }
3490 vcpu->arch.ia32_tsc_adjust_msr = data;
3491 }
3492 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003493 case MSR_IA32_MISC_ENABLE:
Wanpeng Li511a85562019-05-21 14:06:54 +08003494 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) &&
3495 ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) {
3496 if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3))
3497 return 1;
3498 vcpu->arch.ia32_misc_enable_msr = data;
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08003499 kvm_update_cpuid_runtime(vcpu);
Wanpeng Li511a85562019-05-21 14:06:54 +08003500 } else {
3501 vcpu->arch.ia32_misc_enable_msr = data;
3502 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003503 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003504 case MSR_IA32_SMBASE:
3505 if (!msr_info->host_initiated)
3506 return 1;
3507 vcpu->arch.smbase = data;
3508 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003509 case MSR_IA32_POWER_CTL:
3510 vcpu->arch.msr_ia32_power_ctl = data;
3511 break;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003512 case MSR_IA32_TSC:
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003513 if (msr_info->host_initiated) {
3514 kvm_synchronize_tsc(vcpu, data);
3515 } else {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01003516 u64 adj = kvm_compute_l1_tsc_offset(vcpu, data) - vcpu->arch.l1_tsc_offset;
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003517 adjust_tsc_offset_guest(vcpu, adj);
3518 vcpu->arch.ia32_tsc_adjust_msr += adj;
3519 }
Paolo Bonzinidd259932018-04-13 11:38:35 +02003520 break;
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003521 case MSR_IA32_XSS:
3522 if (!msr_info->host_initiated &&
3523 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3524 return 1;
3525 /*
Sean Christophersona1bead22020-03-02 15:57:00 -08003526 * KVM supports exposing PT to the guest, but does not support
3527 * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than
3528 * XSAVES/XRSTORS to save/restore PT MSRs.
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003529 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01003530 if (data & ~supported_xss)
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003531 return 1;
3532 vcpu->arch.ia32_xss = data;
3533 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003534 case MSR_SMI_COUNT:
3535 if (!msr_info->host_initiated)
3536 return 1;
3537 vcpu->arch.smi_count = data;
3538 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003539 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003540 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3541 return 1;
3542
Joao Martins629b5342018-06-28 15:06:43 -04003543 vcpu->kvm->arch.wall_clock = data;
3544 kvm_write_wall_clock(vcpu->kvm, data, 0);
Oliver Upton66570e92020-08-18 15:24:28 +00003545 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003546 case MSR_KVM_WALL_CLOCK:
Oliver Upton66570e92020-08-18 15:24:28 +00003547 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3548 return 1;
3549
Joao Martins629b5342018-06-28 15:06:43 -04003550 vcpu->kvm->arch.wall_clock = data;
3551 kvm_write_wall_clock(vcpu->kvm, data, 0);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003552 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003553 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003554 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3555 return 1;
3556
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003557 kvm_write_system_time(vcpu, data, false, msr_info->host_initiated);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003558 break;
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003559 case MSR_KVM_SYSTEM_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003560 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3561 return 1;
3562
3563 kvm_write_system_time(vcpu, data, true, msr_info->host_initiated);
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003564 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003565 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003566 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3567 return 1;
3568
Gleb Natapov344d9582010-10-14 11:22:50 +02003569 if (kvm_pv_enable_async_pf(vcpu, data))
3570 return 1;
3571 break;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003572 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton66570e92020-08-18 15:24:28 +00003573 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3574 return 1;
3575
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003576 if (kvm_pv_enable_async_pf_int(vcpu, data))
3577 return 1;
3578 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003579 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003580 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton66570e92020-08-18 15:24:28 +00003581 return 1;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003582 if (data & 0x1) {
3583 vcpu->arch.apf.pageready_pending = false;
3584 kvm_check_async_pf_completion(vcpu);
3585 }
3586 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003587 case MSR_KVM_STEAL_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003588 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3589 return 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003590
3591 if (unlikely(!sched_info_on()))
3592 return 1;
3593
3594 if (data & KVM_STEAL_RESERVED_MASK)
3595 return 1;
3596
Glauber Costac9aaa892011-07-11 15:28:14 -04003597 vcpu->arch.st.msr_val = data;
3598
3599 if (!(data & KVM_MSR_ENABLED))
3600 break;
3601
Glauber Costac9aaa892011-07-11 15:28:14 -04003602 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
3603
3604 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003605 case MSR_KVM_PV_EOI_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003606 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3607 return 1;
3608
Vitaly Kuznetsov77c33232021-11-08 16:28:18 +01003609 if (kvm_lapic_set_pv_eoi(vcpu, data, sizeof(u8)))
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003610 return 1;
3611 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003612
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003613 case MSR_KVM_POLL_CONTROL:
Oliver Upton66570e92020-08-18 15:24:28 +00003614 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3615 return 1;
3616
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003617 /* only enable bit supported */
3618 if (data & (-1ULL << 1))
3619 return 1;
3620
3621 vcpu->arch.msr_kvm_poll_control = data;
3622 break;
3623
Huang Ying890ca9a2009-05-11 16:48:15 +08003624 case MSR_IA32_MCG_CTL:
3625 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003626 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003627 return set_msr_mce(vcpu, msr_info);
Andre Przywara71db6022009-06-12 22:01:29 +02003628
Wei Huang6912ac32015-06-12 01:34:56 -04003629 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3630 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003631 pr = true;
3632 fallthrough;
Wei Huang6912ac32015-06-12 01:34:56 -04003633 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3634 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003635 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003636 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02003637
3638 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03003639 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
3640 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02003641 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003642 case MSR_K7_CLK_CTL:
3643 /*
3644 * Ignore all writes to this no longer documented MSR.
3645 * Writes are only relevant for old K7 processors,
3646 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08003647 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003648 * affected processor models on the command line, hence
3649 * the need to ignore the workaround.
3650 */
3651 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003652 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003653 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3654 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003655 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3656 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003657 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003658 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3659 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3660 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003661 return kvm_hv_set_msr_common(vcpu, msr, data,
3662 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003663 case MSR_IA32_BBL_CR_CTL3:
3664 /* Drop writes to this legacy MSR -- see rdmsr
3665 * counterpart for further detail.
3666 */
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02003667 if (report_ignored_msrs)
3668 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
3669 msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05003670 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003671 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003672 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003673 return 1;
3674 vcpu->arch.osvw.length = data;
3675 break;
3676 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003677 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003678 return 1;
3679 vcpu->arch.osvw.status = data;
3680 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003681 case MSR_PLATFORM_INFO:
3682 if (!msr_info->host_initiated ||
Kyle Hueydb2336a2017-03-20 01:16:28 -07003683 (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) &&
3684 cpuid_fault_enabled(vcpu)))
3685 return 1;
3686 vcpu->arch.msr_platform_info = data;
3687 break;
3688 case MSR_MISC_FEATURES_ENABLES:
3689 if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT ||
3690 (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT &&
3691 !supports_cpuid_fault(vcpu)))
3692 return 1;
3693 vcpu->arch.msr_misc_features_enables = data;
3694 break;
Jing Liu820a6ee2022-01-05 04:35:21 -08003695#ifdef CONFIG_X86_64
3696 case MSR_IA32_XFD:
3697 if (!msr_info->host_initiated &&
3698 !guest_cpuid_has(vcpu, X86_FEATURE_XFD))
3699 return 1;
3700
3701 if (data & ~(XFEATURE_MASK_USER_DYNAMIC &
3702 vcpu->arch.guest_supported_xcr0))
3703 return 1;
3704
3705 fpu_update_guest_xfd(&vcpu->arch.guest_fpu, data);
3706 break;
Jing Liu548e8362022-01-05 04:35:24 -08003707 case MSR_IA32_XFD_ERR:
3708 if (!msr_info->host_initiated &&
3709 !guest_cpuid_has(vcpu, X86_FEATURE_XFD))
3710 return 1;
3711
3712 if (data & ~(XFEATURE_MASK_USER_DYNAMIC &
3713 vcpu->arch.guest_supported_xcr0))
3714 return 1;
3715
3716 vcpu->arch.guest_fpu.xfd_err = data;
3717 break;
Jing Liu820a6ee2022-01-05 04:35:21 -08003718#endif
Carsten Otte15c4a642007-10-30 18:44:17 +01003719 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003720 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003721 return kvm_pmu_set_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003722 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003723 }
3724 return 0;
3725}
3726EXPORT_SYMBOL_GPL(kvm_set_msr_common);
3727
Paolo Bonzini44883f02018-07-26 13:01:52 +02003728static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003729{
3730 u64 data;
3731 u64 mcg_cap = vcpu->arch.mcg_cap;
3732 unsigned bank_num = mcg_cap & 0xff;
3733
3734 switch (msr) {
3735 case MSR_IA32_P5_MC_ADDR:
3736 case MSR_IA32_P5_MC_TYPE:
3737 data = 0;
3738 break;
3739 case MSR_IA32_MCG_CAP:
3740 data = vcpu->arch.mcg_cap;
3741 break;
3742 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003743 if (!(mcg_cap & MCG_CTL_P) && !host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003744 return 1;
3745 data = vcpu->arch.mcg_ctl;
3746 break;
3747 case MSR_IA32_MCG_STATUS:
3748 data = vcpu->arch.mcg_status;
3749 break;
3750 default:
3751 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003752 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003753 u32 offset = array_index_nospec(
3754 msr - MSR_IA32_MC0_CTL,
3755 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3756
Huang Ying890ca9a2009-05-11 16:48:15 +08003757 data = vcpu->arch.mce_banks[offset];
3758 break;
3759 }
3760 return 1;
3761 }
3762 *pdata = data;
3763 return 0;
3764}
3765
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003766int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003767{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003768 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01003769 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01003770 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02003771 case MSR_IA32_LASTBRANCHFROMIP:
3772 case MSR_IA32_LASTBRANCHTOIP:
3773 case MSR_IA32_LASTINTFROMIP:
3774 case MSR_IA32_LASTINTTOIP:
Brijesh Singh059e5c32021-04-27 06:16:36 -05003775 case MSR_AMD64_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02003776 case MSR_K8_TSEG_ADDR:
3777 case MSR_K8_TSEG_MASK:
Avi Kivity61a6bd62008-12-29 17:32:28 +02003778 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02003779 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02003780 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003781 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003782 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03003783 case MSR_IA32_PERF_CTL:
Ladi Prosek405a3532017-04-06 15:22:20 +02003784 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003785 case MSR_F15H_EX_CFG:
Venkatesh Srinivas2ca1a062020-04-16 11:42:54 -07003786 /*
3787 * Intel Sandy Bridge CPUs must support the RAPL (running average power
3788 * limit) MSRs. Just return 0, as we do not want to expose the host
3789 * data here. Do not conditionalize this on CPUID, as KVM does not do
3790 * so for existing CPU-specific MSRs.
3791 */
3792 case MSR_RAPL_POWER_UNIT:
3793 case MSR_PP0_ENERGY_STATUS: /* Power plane 0 (core) */
3794 case MSR_PP1_ENERGY_STATUS: /* Power plane 1 (graphics uncore) */
3795 case MSR_PKG_ENERGY_STATUS: /* Total package */
3796 case MSR_DRAM_ENERGY_STATUS: /* DRAM controller */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003797 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01003798 break;
Janakarajan Natarajanc51eb522018-02-05 13:24:52 -06003799 case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5:
Vitaly Kuznetsovc28fa562021-03-29 14:48:04 +02003800 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
3801 return kvm_pmu_get_msr(vcpu, msr_info);
3802 if (!msr_info->host_initiated)
3803 return 1;
3804 msr_info->data = 0;
3805 break;
Wei Huang6912ac32015-06-12 01:34:56 -04003806 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3807 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3808 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
3809 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003810 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003811 return kvm_pmu_get_msr(vcpu, msr_info);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003812 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02003813 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003814 case MSR_IA32_UCODE_REV:
Wanpeng Li518e7b92018-02-28 14:03:31 +08003815 msr_info->data = vcpu->arch.microcode_version;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003816 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003817 case MSR_IA32_ARCH_CAPABILITIES:
3818 if (!msr_info->host_initiated &&
3819 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3820 return 1;
3821 msr_info->data = vcpu->arch.arch_capabilities;
3822 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003823 case MSR_IA32_PERF_CAPABILITIES:
3824 if (!msr_info->host_initiated &&
3825 !guest_cpuid_has(vcpu, X86_FEATURE_PDCM))
3826 return 1;
3827 msr_info->data = vcpu->arch.perf_capabilities;
3828 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003829 case MSR_IA32_POWER_CTL:
3830 msr_info->data = vcpu->arch.msr_ia32_power_ctl;
3831 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003832 case MSR_IA32_TSC: {
3833 /*
3834 * Intel SDM states that MSR_IA32_TSC read adds the TSC offset
3835 * even when not intercepted. AMD manual doesn't explicitly
3836 * state this but appears to behave the same.
3837 *
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003838 * On userspace reads and writes, however, we unconditionally
Paolo Bonzinic0623f52020-10-21 18:05:58 -04003839 * return L1's TSC value to ensure backwards-compatible
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003840 * behavior for migration.
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003841 */
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003842 u64 offset, ratio;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003843
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003844 if (msr_info->host_initiated) {
3845 offset = vcpu->arch.l1_tsc_offset;
3846 ratio = vcpu->arch.l1_tsc_scaling_ratio;
3847 } else {
3848 offset = vcpu->arch.tsc_offset;
3849 ratio = vcpu->arch.tsc_scaling_ratio;
3850 }
3851
3852 msr_info->data = kvm_scale_tsc(vcpu, rdtsc(), ratio) + offset;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003853 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003854 }
Avi Kivity9ba075a2008-05-26 20:06:35 +03003855 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03003856 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003857 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003858 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003859 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01003860 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02003861 /*
3862 * MSR_EBC_FREQUENCY_ID
3863 * Conservative value valid for even the basic CPU models.
3864 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
3865 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
3866 * and 266MHz for model 3, or 4. Set Core Clock
3867 * Frequency to System Bus Frequency Ratio to 1 (bits
3868 * 31:24) even though these are only valid for CPU
3869 * models > 2, however guests may end up dividing or
3870 * multiplying by zero otherwise.
3871 */
3872 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003873 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02003874 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003875 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003876 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01003877 break;
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003878 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003879 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003880 case MSR_IA32_TSC_DEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003881 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003882 break;
Will Auldba904632012-11-29 12:42:50 -08003883 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003884 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08003885 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003886 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003887 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01003888 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003889 case MSR_IA32_SMBASE:
3890 if (!msr_info->host_initiated)
3891 return 1;
3892 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01003893 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003894 case MSR_SMI_COUNT:
3895 msr_info->data = vcpu->arch.smi_count;
3896 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003897 case MSR_IA32_PERF_STATUS:
3898 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003899 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003900 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08003901 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01003902 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003903 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003904 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01003905 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003906 case MSR_KVM_WALL_CLOCK:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003907 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3908 return 1;
3909
3910 msr_info->data = vcpu->kvm->arch.wall_clock;
3911 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003912 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003913 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3914 return 1;
3915
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003916 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003917 break;
3918 case MSR_KVM_SYSTEM_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003919 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3920 return 1;
3921
3922 msr_info->data = vcpu->arch.time;
3923 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003924 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003925 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3926 return 1;
3927
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003928 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003929 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003930 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003931 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3932 return 1;
3933
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003934 msr_info->data = vcpu->arch.apf.msr_en_val;
3935 break;
3936 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003937 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3938 return 1;
3939
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003940 msr_info->data = vcpu->arch.apf.msr_int_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02003941 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003942 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003943 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton1930e5d2020-10-27 16:10:41 -07003944 return 1;
3945
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003946 msr_info->data = 0;
3947 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003948 case MSR_KVM_STEAL_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003949 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3950 return 1;
3951
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003952 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04003953 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003954 case MSR_KVM_PV_EOI_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003955 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3956 return 1;
3957
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003958 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003959 break;
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003960 case MSR_KVM_POLL_CONTROL:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003961 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3962 return 1;
3963
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003964 msr_info->data = vcpu->arch.msr_kvm_poll_control;
3965 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003966 case MSR_IA32_P5_MC_ADDR:
3967 case MSR_IA32_P5_MC_TYPE:
3968 case MSR_IA32_MCG_CAP:
3969 case MSR_IA32_MCG_CTL:
3970 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003971 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003972 return get_msr_mce(vcpu, msr_info->index, &msr_info->data,
3973 msr_info->host_initiated);
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003974 case MSR_IA32_XSS:
3975 if (!msr_info->host_initiated &&
3976 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3977 return 1;
3978 msr_info->data = vcpu->arch.ia32_xss;
3979 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003980 case MSR_K7_CLK_CTL:
3981 /*
3982 * Provide expected ramp-up count for K7. All other
3983 * are set to zero, indicating minimum divisors for
3984 * every field.
3985 *
3986 * This prevents guest kernels on AMD host with CPU
3987 * type 6, model 8 and higher from exploding due to
3988 * the rdmsr failing.
3989 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003990 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003991 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003992 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003993 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3994 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003995 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3996 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003997 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003998 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3999 case HV_X64_MSR_TSC_EMULATION_CONTROL:
4000 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine83d5882015-07-03 15:01:34 +03004001 return kvm_hv_get_msr_common(vcpu,
Paolo Bonzini44883f02018-07-26 13:01:52 +02004002 msr_info->index, &msr_info->data,
4003 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05004004 case MSR_IA32_BBL_CR_CTL3:
4005 /* This legacy MSR exists but isn't fully documented in current
4006 * silicon. It is however accessed by winxp in very narrow
4007 * scenarios where it sets bit #19, itself documented as
4008 * a "reserved" bit. Best effort attempt to source coherent
4009 * read data here should the balance of the register be
4010 * interpreted by the guest:
4011 *
4012 * L2 cache control register 3: 64GB range, 256KB size,
4013 * enabled, latency 0x1, configured
4014 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004015 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05004016 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05004017 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02004018 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05004019 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004020 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05004021 break;
4022 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02004023 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05004024 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004025 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05004026 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07004027 case MSR_PLATFORM_INFO:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07004028 if (!msr_info->host_initiated &&
4029 !vcpu->kvm->arch.guest_can_read_msr_platform_info)
4030 return 1;
Kyle Hueydb2336a2017-03-20 01:16:28 -07004031 msr_info->data = vcpu->arch.msr_platform_info;
4032 break;
4033 case MSR_MISC_FEATURES_ENABLES:
4034 msr_info->data = vcpu->arch.msr_misc_features_enables;
4035 break;
Borislav Petkov191c8132019-04-18 18:32:50 +02004036 case MSR_K7_HWCR:
4037 msr_info->data = vcpu->arch.msr_hwcr;
4038 break;
Jing Liu820a6ee2022-01-05 04:35:21 -08004039#ifdef CONFIG_X86_64
4040 case MSR_IA32_XFD:
4041 if (!msr_info->host_initiated &&
4042 !guest_cpuid_has(vcpu, X86_FEATURE_XFD))
4043 return 1;
4044
4045 msr_info->data = vcpu->arch.guest_fpu.fpstate->xfd;
4046 break;
Jing Liu548e8362022-01-05 04:35:24 -08004047 case MSR_IA32_XFD_ERR:
4048 if (!msr_info->host_initiated &&
4049 !guest_cpuid_has(vcpu, X86_FEATURE_XFD))
4050 return 1;
4051
4052 msr_info->data = vcpu->arch.guest_fpu.xfd_err;
4053 break;
Jing Liu820a6ee2022-01-05 04:35:21 -08004054#endif
Carsten Otte15c4a642007-10-30 18:44:17 +01004055 default:
Wei Huangc6702c92015-06-19 13:44:45 +02004056 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08004057 return kvm_pmu_get_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04004058 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01004059 }
Carsten Otte15c4a642007-10-30 18:44:17 +01004060 return 0;
4061}
4062EXPORT_SYMBOL_GPL(kvm_get_msr_common);
4063
Carsten Otte313a3dc2007-10-11 19:16:52 +02004064/*
4065 * Read or write a bunch of msrs. All parameters are kernel addresses.
4066 *
4067 * @return number of msrs set successfully.
4068 */
4069static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
4070 struct kvm_msr_entry *entries,
4071 int (*do_msr)(struct kvm_vcpu *vcpu,
4072 unsigned index, u64 *data))
4073{
Tom Lendacky801e4592018-02-21 13:39:51 -06004074 int i;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004075
Carsten Otte313a3dc2007-10-11 19:16:52 +02004076 for (i = 0; i < msrs->nmsrs; ++i)
4077 if (do_msr(vcpu, entries[i].index, &entries[i].data))
4078 break;
4079
Carsten Otte313a3dc2007-10-11 19:16:52 +02004080 return i;
4081}
4082
4083/*
4084 * Read or write a bunch of msrs. Parameters are user addresses.
4085 *
4086 * @return number of msrs set successfully.
4087 */
4088static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
4089 int (*do_msr)(struct kvm_vcpu *vcpu,
4090 unsigned index, u64 *data),
4091 int writeback)
4092{
4093 struct kvm_msrs msrs;
4094 struct kvm_msr_entry *entries;
4095 int r, n;
4096 unsigned size;
4097
4098 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004099 if (copy_from_user(&msrs, user_msrs, sizeof(msrs)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02004100 goto out;
4101
4102 r = -E2BIG;
4103 if (msrs.nmsrs >= MAX_IO_MSRS)
4104 goto out;
4105
Carsten Otte313a3dc2007-10-11 19:16:52 +02004106 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004107 entries = memdup_user(user_msrs->entries, size);
4108 if (IS_ERR(entries)) {
4109 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004110 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004111 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02004112
4113 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
4114 if (r < 0)
4115 goto out_free;
4116
4117 r = -EFAULT;
4118 if (writeback && copy_to_user(user_msrs->entries, entries, size))
4119 goto out_free;
4120
4121 r = n;
4122
4123out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03004124 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004125out:
4126 return r;
4127}
4128
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004129static inline bool kvm_can_mwait_in_guest(void)
4130{
4131 return boot_cpu_has(X86_FEATURE_MWAIT) &&
KarimAllah Ahmed8e9b29b2018-04-11 11:16:03 +02004132 !boot_cpu_has_bug(X86_BUG_MONITOR) &&
4133 boot_cpu_has(X86_FEATURE_ARAT);
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004134}
4135
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004136static int kvm_ioctl_get_supported_hv_cpuid(struct kvm_vcpu *vcpu,
4137 struct kvm_cpuid2 __user *cpuid_arg)
4138{
4139 struct kvm_cpuid2 cpuid;
4140 int r;
4141
4142 r = -EFAULT;
4143 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
4144 return r;
4145
4146 r = kvm_get_hv_cpuid(vcpu, &cpuid, cpuid_arg->entries);
4147 if (r)
4148 return r;
4149
4150 r = -EFAULT;
4151 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
4152 return r;
4153
4154 return 0;
4155}
4156
Alexander Graf784aa3d2014-07-14 18:27:35 +02004157int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004158{
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004159 int r = 0;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004160
4161 switch (ext) {
4162 case KVM_CAP_IRQCHIP:
4163 case KVM_CAP_HLT:
4164 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004165 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02004166 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004167 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01004168 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08004169 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05004170 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03004171 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03004172 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08004173 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004174 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02004175 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04004176 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03004177 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02004178 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04004179 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08004180 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004181 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02004182 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02004183 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02004184 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004185 case KVM_CAP_HYPERV_SYNIC:
Roman Kaganefc479e2017-06-22 16:51:01 +03004186 case KVM_CAP_HYPERV_SYNIC2:
Roman Kagand3457c82017-07-14 17:13:20 +03004187 case KVM_CAP_HYPERV_VP_INDEX:
Roman Kaganfaeb7832018-02-01 16:48:32 +03004188 case KVM_CAP_HYPERV_EVENTFD:
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02004189 case KVM_CAP_HYPERV_TLBFLUSH:
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02004190 case KVM_CAP_HYPERV_SEND_IPI:
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004191 case KVM_CAP_HYPERV_CPUID:
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02004192 case KVM_CAP_HYPERV_ENFORCE_CPUID:
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004193 case KVM_CAP_SYS_HYPERV_CPUID:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08004194 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004195 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01004196 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004197 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02004198 case KVM_CAP_ASYNC_PF:
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +02004199 case KVM_CAP_ASYNC_PF_INT:
Joerg Roedel92a1f122011-03-25 09:44:51 +01004200 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004201 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08004202 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01004203 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05004204 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01004205 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03004206 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004207 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07004208 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004209 case KVM_CAP_IMMEDIATE_EXIT:
Eric Hankland66bb8a02019-07-10 18:25:15 -07004210 case KVM_CAP_PMU_EVENT_FILTER:
Tom Lendacky801e4592018-02-21 13:39:51 -06004211 case KVM_CAP_GET_MSR_FEATURES:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07004212 case KVM_CAP_MSR_PLATFORM_INFO:
Jim Mattsonc4f55192018-10-16 14:29:24 -07004213 case KVM_CAP_EXCEPTION_PAYLOAD:
Peter Xub9b27822020-05-05 11:47:50 -04004214 case KVM_CAP_SET_GUEST_DEBUG:
Jim Mattson1aa561b2020-06-03 16:56:21 -07004215 case KVM_CAP_LAST_CPU:
Alexander Graf1ae09952020-09-25 16:34:16 +02004216 case KVM_CAP_X86_USER_SPACE_MSR:
Alexander Graf1a1552542020-09-25 16:34:21 +02004217 case KVM_CAP_X86_MSR_FILTER:
Oliver Upton66570e92020-08-18 15:24:28 +00004218 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
Sean Christophersonfe7e9482021-04-12 16:21:43 +12004219#ifdef CONFIG_X86_SGX_KVM
4220 case KVM_CAP_SGX_ATTRIBUTE:
4221#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00004222 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
Paolo Bonzini30d7c5d2021-11-18 04:41:34 -05004223 case KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM:
Maxim Levitsky6dba9402021-06-07 12:02:02 +03004224 case KVM_CAP_SREGS2:
Aaron Lewis19238e72021-05-10 07:48:33 -07004225 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
Oliver Upton828ca892021-09-16 18:15:38 +00004226 case KVM_CAP_VCPU_ATTRIBUTES:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004227 r = 1;
4228 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00004229 case KVM_CAP_EXIT_HYPERCALL:
4230 r = KVM_EXIT_HYPERCALL_VALID_MASK;
4231 break;
Maxim Levitsky7e582cc2021-04-01 16:54:45 +03004232 case KVM_CAP_SET_GUEST_DEBUG2:
4233 return KVM_GUESTDBG_VALID_MASK;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004234#ifdef CONFIG_KVM_XEN
Joao Martins23200b72018-06-13 09:55:44 -04004235 case KVM_CAP_XEN_HVM:
4236 r = KVM_XEN_HVM_CONFIG_HYPERCALL_MSR |
David Woodhouse8d4e7e82020-12-04 01:02:04 +00004237 KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL |
David Woodhouse14243b32021-12-10 16:36:23 +00004238 KVM_XEN_HVM_CONFIG_SHARED_INFO |
4239 KVM_XEN_HVM_CONFIG_EVTCHN_2LEVEL;
David Woodhouse30b5c852021-03-01 12:53:09 +00004240 if (sched_info_on())
4241 r |= KVM_XEN_HVM_CONFIG_RUNSTATE;
Joao Martins23200b72018-06-13 09:55:44 -04004242 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004243#endif
Ken Hofsass01643c52018-01-31 16:03:36 -08004244 case KVM_CAP_SYNC_REGS:
4245 r = KVM_SYNC_X86_VALID_FIELDS;
4246 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004247 case KVM_CAP_ADJUST_CLOCK:
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00004248 r = KVM_CLOCK_VALID_FLAGS;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004249 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004250 case KVM_CAP_X86_DISABLE_EXITS:
Wanpeng Lib5170062019-05-21 14:06:53 +08004251 r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE |
4252 KVM_X86_DISABLE_EXITS_CSTATE;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004253 if(kvm_can_mwait_in_guest())
4254 r |= KVM_X86_DISABLE_EXITS_MWAIT;
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02004255 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004256 case KVM_CAP_X86_SMM:
4257 /* SMBASE is usually relocated above 1M on modern chipsets,
4258 * and SMM handlers might indeed rely on 4G segment limits,
4259 * so do not report SMM to be available if real mode is
4260 * emulated via vm86 mode. Still, do not go to great lengths
4261 * to avoid userspace's usage of the feature, because it is a
4262 * fringe case that is not enabled except via specific settings
4263 * of the module parameters.
4264 */
Jason Baronb36464772021-01-14 22:27:56 -05004265 r = static_call(kvm_x86_has_emulated_msr)(kvm, MSR_IA32_SMBASE);
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004266 break;
Avi Kivity774ead32007-12-26 13:57:04 +02004267 case KVM_CAP_VAPIC:
Jason Baronb36464772021-01-14 22:27:56 -05004268 r = !static_call(kvm_x86_cpu_has_accelerated_tpr)();
Avi Kivity774ead32007-12-26 13:57:04 +02004269 break;
Avi Kivityf7252302008-02-20 11:53:16 +02004270 case KVM_CAP_NR_VCPUS:
Vitaly Kuznetsov2845e732021-11-16 17:34:43 +01004271 r = min_t(unsigned int, num_online_cpus(), KVM_MAX_VCPUS);
Sasha Levin8c3ba332011-07-18 17:17:15 +03004272 break;
4273 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02004274 r = KVM_MAX_VCPUS;
4275 break;
Thomas Hutha86cb412019-05-23 18:43:08 +02004276 case KVM_CAP_MAX_VCPU_ID:
Juergen Grossa1c42dd2021-09-13 15:57:44 +02004277 r = KVM_MAX_VCPU_IDS;
Thomas Hutha86cb412019-05-23 18:43:08 +02004278 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03004279 case KVM_CAP_PV_MMU: /* obsolete */
4280 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05004281 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08004282 case KVM_CAP_MCE:
4283 r = KVM_MAX_MCE_BANKS;
4284 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004285 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02004286 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004287 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004288 case KVM_CAP_TSC_CONTROL:
4289 r = kvm_has_tsc_control;
4290 break;
Radim Krčmář371313132016-07-12 22:09:27 +02004291 case KVM_CAP_X2APIC_API:
4292 r = KVM_X2APIC_API_VALID_FLAGS;
4293 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004294 case KVM_CAP_NESTED_STATE:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004295 r = kvm_x86_ops.nested_ops->get_state ?
4296 kvm_x86_ops.nested_ops->get_state(NULL, NULL, 0) : 0;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004297 break;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004298 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004299 r = kvm_x86_ops.enable_direct_tlbflush != NULL;
Vitaly Kuznetsov5a0165f2019-08-28 09:59:05 +02004300 break;
4301 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004302 r = kvm_x86_ops.nested_ops->enable_evmcs != NULL;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004303 break;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02004304 case KVM_CAP_SMALLER_MAXPHYADDR:
4305 r = (int) allow_smaller_maxphyaddr;
4306 break;
Andrew Jones004a0122020-08-04 19:06:04 +02004307 case KVM_CAP_STEAL_TIME:
4308 r = sched_info_on();
4309 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004310 case KVM_CAP_X86_BUS_LOCK_EXIT:
4311 if (kvm_has_bus_lock_exit)
4312 r = KVM_BUS_LOCK_DETECTION_OFF |
4313 KVM_BUS_LOCK_DETECTION_EXIT;
4314 else
4315 r = 0;
4316 break;
Guang Zengbe50b202022-01-05 04:35:29 -08004317 case KVM_CAP_XSAVE2: {
4318 u64 guest_perm = xstate_get_guest_group_perm();
4319
4320 r = xstate_required_size(supported_xcr0 & guest_perm, false);
4321 if (r < sizeof(struct kvm_xsave))
4322 r = sizeof(struct kvm_xsave);
4323 break;
4324 }
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004325 default:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004326 break;
4327 }
4328 return r;
4329
4330}
4331
Carsten Otte043405e2007-10-10 17:16:19 +02004332long kvm_arch_dev_ioctl(struct file *filp,
4333 unsigned int ioctl, unsigned long arg)
4334{
4335 void __user *argp = (void __user *)arg;
4336 long r;
4337
4338 switch (ioctl) {
4339 case KVM_GET_MSR_INDEX_LIST: {
4340 struct kvm_msr_list __user *user_msr_list = argp;
4341 struct kvm_msr_list msr_list;
4342 unsigned n;
4343
4344 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004345 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004346 goto out;
4347 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004348 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004349 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004350 goto out;
4351 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004352 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02004353 goto out;
4354 r = -EFAULT;
4355 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
4356 num_msrs_to_save * sizeof(u32)))
4357 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004358 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02004359 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004360 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02004361 goto out;
4362 r = 0;
4363 break;
4364 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004365 case KVM_GET_SUPPORTED_CPUID:
4366 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02004367 struct kvm_cpuid2 __user *cpuid_arg = argp;
4368 struct kvm_cpuid2 cpuid;
4369
4370 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004371 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004372 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004373
4374 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
4375 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02004376 if (r)
4377 goto out;
4378
4379 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004380 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004381 goto out;
4382 r = 0;
4383 break;
4384 }
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004385 case KVM_X86_GET_MCE_CAP_SUPPORTED:
Huang Ying890ca9a2009-05-11 16:48:15 +08004386 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004387 if (copy_to_user(argp, &kvm_mce_cap_supported,
4388 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004389 goto out;
4390 r = 0;
4391 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004392 case KVM_GET_MSR_FEATURE_INDEX_LIST: {
4393 struct kvm_msr_list __user *user_msr_list = argp;
4394 struct kvm_msr_list msr_list;
4395 unsigned int n;
4396
4397 r = -EFAULT;
4398 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
4399 goto out;
4400 n = msr_list.nmsrs;
4401 msr_list.nmsrs = num_msr_based_features;
4402 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
4403 goto out;
4404 r = -E2BIG;
4405 if (n < msr_list.nmsrs)
4406 goto out;
4407 r = -EFAULT;
4408 if (copy_to_user(user_msr_list->indices, &msr_based_features,
4409 num_msr_based_features * sizeof(u32)))
4410 goto out;
4411 r = 0;
4412 break;
4413 }
4414 case KVM_GET_MSRS:
4415 r = msr_io(NULL, argp, do_get_msr_feature, 1);
4416 break;
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004417 case KVM_GET_SUPPORTED_HV_CPUID:
4418 r = kvm_ioctl_get_supported_hv_cpuid(NULL, argp);
4419 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004420 default:
4421 r = -EINVAL;
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004422 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004423 }
4424out:
4425 return r;
4426}
4427
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004428static void wbinvd_ipi(void *garbage)
4429{
4430 wbinvd();
4431}
4432
4433static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
4434{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06004435 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004436}
4437
Carsten Otte313a3dc2007-10-11 19:16:52 +02004438void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
4439{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004440 /* Address WBINVD may be executed by guest */
4441 if (need_emulate_wbinvd(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05004442 if (static_call(kvm_x86_has_wbinvd_exit)())
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004443 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
4444 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
4445 smp_call_function_single(vcpu->cpu,
4446 wbinvd_ipi, NULL, 1);
4447 }
4448
Jason Baronb36464772021-01-14 22:27:56 -05004449 static_call(kvm_x86_vcpu_load)(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004450
Babu Moger37486132020-05-12 18:59:06 -05004451 /* Save host pkru register if supported */
4452 vcpu->arch.host_pkru = read_pkru();
4453
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004454 /* Apply any externally detected TSC adjustments (due to suspend) */
4455 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
4456 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
4457 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08004458 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004459 }
4460
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004461 if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02004462 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004463 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10004464 if (tsc_delta < 0)
4465 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07004466
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004467 if (kvm_check_tsc_unstable()) {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01004468 u64 offset = kvm_compute_l1_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02004469 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04004470 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004471 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10004472 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02004473
4474 if (kvm_lapic_hv_timer_in_use(vcpu))
4475 kvm_lapic_restart_hv_timer(vcpu);
4476
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02004477 /*
4478 * On a host with synchronized TSC, there is no need to update
4479 * kvmclock on vcpu->cpu migration
4480 */
4481 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03004482 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004483 if (vcpu->cpu != cpu)
Radim Krčmář1bd20092017-04-26 22:32:20 +02004484 kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10004485 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10004486 }
Glauber Costac9aaa892011-07-11 15:28:14 -04004487
Glauber Costac9aaa892011-07-11 15:28:14 -04004488 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004489}
4490
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004491static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
4492{
David Woodhouse7e2175e2021-11-02 17:36:39 +00004493 struct gfn_to_hva_cache *ghc = &vcpu->arch.st.cache;
4494 struct kvm_steal_time __user *st;
4495 struct kvm_memslots *slots;
4496 static const u8 preempted = KVM_VCPU_PREEMPTED;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004497
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004498 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
4499 return;
4500
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004501 if (vcpu->arch.st.preempted)
Boris Ostrovsky8c6de562019-10-30 19:01:31 +00004502 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004503
David Woodhouse7e2175e2021-11-02 17:36:39 +00004504 /* This happens on process exit */
4505 if (unlikely(current->mm != vcpu->kvm->mm))
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004506 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004507
David Woodhouse7e2175e2021-11-02 17:36:39 +00004508 slots = kvm_memslots(vcpu->kvm);
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004509
David Woodhouse7e2175e2021-11-02 17:36:39 +00004510 if (unlikely(slots->generation != ghc->generation ||
4511 kvm_is_error_hva(ghc->hva) || !ghc->memslot))
4512 return;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004513
David Woodhouse7e2175e2021-11-02 17:36:39 +00004514 st = (struct kvm_steal_time __user *)ghc->hva;
4515 BUILD_BUG_ON(sizeof(st->preempted) != sizeof(preempted));
4516
4517 if (!copy_to_user_nofault(&st->preempted, &preempted, sizeof(preempted)))
4518 vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED;
4519
4520 mark_page_dirty_in_slot(vcpu->kvm, ghc->memslot, gpa_to_gfn(ghc->gpa));
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004521}
4522
Carsten Otte313a3dc2007-10-11 19:16:52 +02004523void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
4524{
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004525 int idx;
4526
Tom Lendackyf1c63662020-12-14 10:29:50 -05004527 if (vcpu->preempted && !vcpu->arch.guest_state_protected)
Jason Baronb36464772021-01-14 22:27:56 -05004528 vcpu->arch.preempted_in_kernel = !static_call(kvm_x86_get_cpl)(vcpu);
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004529
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004530 /*
4531 * Take the srcu lock as memslots will be accessed to check the gfn
4532 * cache generation against the memslots generation.
4533 */
4534 idx = srcu_read_lock(&vcpu->kvm->srcu);
David Woodhouse30b5c852021-03-01 12:53:09 +00004535 if (kvm_xen_msr_enabled(vcpu->kvm))
4536 kvm_xen_runstate_set_preempted(vcpu);
4537 else
4538 kvm_steal_time_set_preempted(vcpu);
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004539 srcu_read_unlock(&vcpu->kvm->srcu, idx);
David Woodhouse30b5c852021-03-01 12:53:09 +00004540
Jason Baronb36464772021-01-14 22:27:56 -05004541 static_call(kvm_x86_vcpu_put)(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004542 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02004543}
4544
Carsten Otte313a3dc2007-10-11 19:16:52 +02004545static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
4546 struct kvm_lapic_state *s)
4547{
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05004548 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004549
Radim Krčmářa92e2542016-07-12 22:09:22 +02004550 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004551}
4552
4553static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
4554 struct kvm_lapic_state *s)
4555{
Radim Krčmářa92e2542016-07-12 22:09:22 +02004556 int r;
4557
4558 r = kvm_apic_set_state(vcpu, s);
4559 if (r)
4560 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03004561 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004562
4563 return 0;
4564}
4565
Matt Gingell127a4572015-11-17 17:32:05 +01004566static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
4567{
Paolo Bonzini71cc8492020-11-27 09:18:20 +01004568 /*
4569 * We can accept userspace's request for interrupt injection
4570 * as long as we have a place to store the interrupt number.
4571 * The actual injection will happen when the CPU is able to
4572 * deliver the interrupt.
4573 */
4574 if (kvm_cpu_has_extint(vcpu))
4575 return false;
4576
4577 /* Acknowledging ExtINT does not happen if LINT0 is masked. */
Matt Gingell127a4572015-11-17 17:32:05 +01004578 return (!lapic_in_kernel(vcpu) ||
4579 kvm_apic_accept_pic_intr(vcpu));
4580}
4581
Matt Gingell782d4222015-11-16 15:26:00 -08004582static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
4583{
Paolo Bonzinifa7a5492021-07-14 17:37:49 -04004584 /*
4585 * Do not cause an interrupt window exit if an exception
4586 * is pending or an event needs reinjection; userspace
4587 * might want to inject the interrupt manually using KVM_SET_REGS
4588 * or KVM_SET_SREGS. For that to work, we must be at an
4589 * instruction boundary and with no events half-injected.
4590 */
4591 return (kvm_arch_interrupt_allowed(vcpu) &&
4592 kvm_cpu_accept_dm_intr(vcpu) &&
4593 !kvm_event_needs_reinjection(vcpu) &&
4594 !vcpu->arch.exception.pending);
Matt Gingell782d4222015-11-16 15:26:00 -08004595}
4596
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004597static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
4598 struct kvm_interrupt *irq)
4599{
Chen Gang02cdb502013-02-27 11:33:25 +08004600 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004601 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004602
4603 if (!irqchip_in_kernel(vcpu->kvm)) {
4604 kvm_queue_interrupt(vcpu, irq->irq, false);
4605 kvm_make_request(KVM_REQ_EVENT, vcpu);
4606 return 0;
4607 }
4608
4609 /*
4610 * With in-kernel LAPIC, we only use this to inject EXTINT, so
4611 * fail for in-kernel 8259.
4612 */
4613 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004614 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004615
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004616 if (vcpu->arch.pending_external_vector != -1)
4617 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004618
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004619 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08004620 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004621 return 0;
4622}
4623
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004624static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
4625{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004626 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004627
4628 return 0;
4629}
4630
Paolo Bonzinif0778252015-04-01 15:06:40 +02004631static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
4632{
Paolo Bonzini64d60672015-05-07 11:36:11 +02004633 kvm_make_request(KVM_REQ_SMI, vcpu);
4634
Paolo Bonzinif0778252015-04-01 15:06:40 +02004635 return 0;
4636}
4637
Avi Kivityb209749f2007-10-22 16:50:39 +02004638static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
4639 struct kvm_tpr_access_ctl *tac)
4640{
4641 if (tac->flags)
4642 return -EINVAL;
4643 vcpu->arch.tpr_access_reporting = !!tac->enabled;
4644 return 0;
4645}
4646
Huang Ying890ca9a2009-05-11 16:48:15 +08004647static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
4648 u64 mcg_cap)
4649{
4650 int r;
4651 unsigned bank_num = mcg_cap & 0xff, bank;
4652
4653 r = -EINVAL;
Jim Mattsonc4e0e4ab2020-05-11 15:56:16 -07004654 if (!bank_num || bank_num > KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08004655 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004656 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08004657 goto out;
4658 r = 0;
4659 vcpu->arch.mcg_cap = mcg_cap;
4660 /* Init IA32_MCG_CTL to all 1s */
4661 if (mcg_cap & MCG_CTL_P)
4662 vcpu->arch.mcg_ctl = ~(u64)0;
4663 /* Init IA32_MCi_CTL to all 1s */
4664 for (bank = 0; bank < bank_num; bank++)
4665 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004666
Jason Baronb36464772021-01-14 22:27:56 -05004667 static_call(kvm_x86_setup_mce)(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004668out:
4669 return r;
4670}
4671
4672static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
4673 struct kvm_x86_mce *mce)
4674{
4675 u64 mcg_cap = vcpu->arch.mcg_cap;
4676 unsigned bank_num = mcg_cap & 0xff;
4677 u64 *banks = vcpu->arch.mce_banks;
4678
4679 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
4680 return -EINVAL;
4681 /*
4682 * if IA32_MCG_CTL is not all 1s, the uncorrected error
4683 * reporting is disabled
4684 */
4685 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
4686 vcpu->arch.mcg_ctl != ~(u64)0)
4687 return 0;
4688 banks += 4 * mce->bank;
4689 /*
4690 * if IA32_MCi_CTL is not all 1s, the uncorrected error
4691 * reporting is disabled for the bank
4692 */
4693 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
4694 return 0;
4695 if (mce->status & MCI_STATUS_UC) {
4696 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02004697 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03004698 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004699 return 0;
4700 }
4701 if (banks[1] & MCI_STATUS_VAL)
4702 mce->status |= MCI_STATUS_OVER;
4703 banks[2] = mce->addr;
4704 banks[3] = mce->misc;
4705 vcpu->arch.mcg_status = mce->mcg_status;
4706 banks[1] = mce->status;
4707 kvm_queue_exception(vcpu, MC_VECTOR);
4708 } else if (!(banks[1] & MCI_STATUS_VAL)
4709 || !(banks[1] & MCI_STATUS_UC)) {
4710 if (banks[1] & MCI_STATUS_VAL)
4711 mce->status |= MCI_STATUS_OVER;
4712 banks[2] = mce->addr;
4713 banks[3] = mce->misc;
4714 banks[1] = mce->status;
4715 } else
4716 banks[1] |= MCI_STATUS_OVER;
4717 return 0;
4718}
4719
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004720static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
4721 struct kvm_vcpu_events *events)
4722{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004723 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004724
Jay Zhou1f7becf2021-01-18 16:47:20 +08004725 if (kvm_check_request(KVM_REQ_SMI, vcpu))
4726 process_smi(vcpu);
4727
Wanpeng Li664f8e22017-08-24 03:35:09 -07004728 /*
Oliver Uptona06230b2020-02-07 02:36:06 -08004729 * In guest mode, payload delivery should be deferred,
4730 * so that the L1 hypervisor can intercept #PF before
4731 * CR2 is modified (or intercept #DB before DR6 is
4732 * modified under nVMX). Unless the per-VM capability,
4733 * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of
4734 * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we
4735 * opportunistically defer the exception payload, deliver it if the
4736 * capability hasn't been requested before processing a
4737 * KVM_GET_VCPU_EVENTS.
4738 */
4739 if (!vcpu->kvm->arch.exception_payload_enabled &&
4740 vcpu->arch.exception.pending && vcpu->arch.exception.has_payload)
4741 kvm_deliver_exception_payload(vcpu);
4742
4743 /*
Jim Mattson59073aa2018-10-16 14:29:20 -07004744 * The API doesn't provide the instruction length for software
4745 * exceptions, so don't report them. As long as the guest RIP
4746 * isn't advanced, we should expect to encounter the exception
4747 * again.
Wanpeng Li664f8e22017-08-24 03:35:09 -07004748 */
Jim Mattson59073aa2018-10-16 14:29:20 -07004749 if (kvm_exception_is_soft(vcpu->arch.exception.nr)) {
4750 events->exception.injected = 0;
4751 events->exception.pending = 0;
4752 } else {
4753 events->exception.injected = vcpu->arch.exception.injected;
4754 events->exception.pending = vcpu->arch.exception.pending;
4755 /*
4756 * For ABI compatibility, deliberately conflate
4757 * pending and injected exceptions when
4758 * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled.
4759 */
4760 if (!vcpu->kvm->arch.exception_payload_enabled)
4761 events->exception.injected |=
4762 vcpu->arch.exception.pending;
4763 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004764 events->exception.nr = vcpu->arch.exception.nr;
4765 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
4766 events->exception.error_code = vcpu->arch.exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004767 events->exception_has_payload = vcpu->arch.exception.has_payload;
4768 events->exception_payload = vcpu->arch.exception.payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004769
Jan Kiszka03b82a32010-02-15 10:45:41 +01004770 events->interrupt.injected =
Liran Alon04140b42018-03-23 03:01:31 +03004771 vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004772 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01004773 events->interrupt.soft = 0;
Jason Baronb36464772021-01-14 22:27:56 -05004774 events->interrupt.shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004775
4776 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004777 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jason Baronb36464772021-01-14 22:27:56 -05004778 events->nmi.masked = static_call(kvm_x86_get_nmi_mask)(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004779 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004780
Jan Kiszka66450a22013-03-13 12:42:34 +01004781 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004782
Paolo Bonzinif0778252015-04-01 15:06:40 +02004783 events->smi.smm = is_smm(vcpu);
4784 events->smi.pending = vcpu->arch.smi_pending;
4785 events->smi.smm_inside_nmi =
4786 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
4787 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
4788
Jan Kiszkadab4b912009-12-06 18:24:15 +01004789 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02004790 | KVM_VCPUEVENT_VALID_SHADOW
4791 | KVM_VCPUEVENT_VALID_SMM);
Jim Mattson59073aa2018-10-16 14:29:20 -07004792 if (vcpu->kvm->arch.exception_payload_enabled)
4793 events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD;
4794
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004795 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004796}
4797
Sean Christophersondc872752021-06-09 11:56:15 -07004798static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004799
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004800static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
4801 struct kvm_vcpu_events *events)
4802{
Jan Kiszkadab4b912009-12-06 18:24:15 +01004803 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01004804 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02004805 | KVM_VCPUEVENT_VALID_SHADOW
Jim Mattson59073aa2018-10-16 14:29:20 -07004806 | KVM_VCPUEVENT_VALID_SMM
4807 | KVM_VCPUEVENT_VALID_PAYLOAD))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004808 return -EINVAL;
4809
Jim Mattson59073aa2018-10-16 14:29:20 -07004810 if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) {
4811 if (!vcpu->kvm->arch.exception_payload_enabled)
4812 return -EINVAL;
4813 if (events->exception.pending)
4814 events->exception.injected = 0;
4815 else
4816 events->exception_has_payload = 0;
4817 } else {
4818 events->exception.pending = 0;
4819 events->exception_has_payload = 0;
4820 }
4821
4822 if ((events->exception.injected || events->exception.pending) &&
4823 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02004824 return -EINVAL;
4825
David Hildenbrand28bf2882017-03-23 11:46:03 +01004826 /* INITs are latched while in SMM */
4827 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
4828 (events->smi.smm || events->smi.pending) &&
4829 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
4830 return -EINVAL;
4831
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004832 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004833 vcpu->arch.exception.injected = events->exception.injected;
4834 vcpu->arch.exception.pending = events->exception.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004835 vcpu->arch.exception.nr = events->exception.nr;
4836 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
4837 vcpu->arch.exception.error_code = events->exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004838 vcpu->arch.exception.has_payload = events->exception_has_payload;
4839 vcpu->arch.exception.payload = events->exception_payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004840
Liran Alon04140b42018-03-23 03:01:31 +03004841 vcpu->arch.interrupt.injected = events->interrupt.injected;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004842 vcpu->arch.interrupt.nr = events->interrupt.nr;
4843 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01004844 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
Jason Baronb36464772021-01-14 22:27:56 -05004845 static_call(kvm_x86_set_interrupt_shadow)(vcpu,
4846 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004847
4848 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01004849 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
4850 vcpu->arch.nmi_pending = events->nmi.pending;
Jason Baronb36464772021-01-14 22:27:56 -05004851 static_call(kvm_x86_set_nmi_mask)(vcpu, events->nmi.masked);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004852
Jan Kiszka66450a22013-03-13 12:42:34 +01004853 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004854 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01004855 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004856
Paolo Bonzinif0778252015-04-01 15:06:40 +02004857 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Sean Christophersondc872752021-06-09 11:56:15 -07004858 if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm)
4859 kvm_smm_changed(vcpu, events->smi.smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004860
Paolo Bonzinif0778252015-04-01 15:06:40 +02004861 vcpu->arch.smi_pending = events->smi.pending;
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004862
4863 if (events->smi.smm) {
4864 if (events->smi.smm_inside_nmi)
4865 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02004866 else
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004867 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Liran Alonff90afa2019-11-11 11:16:39 +02004868 }
4869
4870 if (lapic_in_kernel(vcpu)) {
4871 if (events->smi.latched_init)
4872 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
4873 else
4874 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
Paolo Bonzinif0778252015-04-01 15:06:40 +02004875 }
4876 }
4877
Avi Kivity3842d132010-07-27 12:30:24 +03004878 kvm_make_request(KVM_REQ_EVENT, vcpu);
4879
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004880 return 0;
4881}
4882
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004883static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
4884 struct kvm_debugregs *dbgregs)
4885{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004886 unsigned long val;
4887
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004888 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004889 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004890 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004891 dbgregs->dr7 = vcpu->arch.dr7;
4892 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004893 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004894}
4895
4896static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
4897 struct kvm_debugregs *dbgregs)
4898{
4899 if (dbgregs->flags)
4900 return -EINVAL;
4901
Paolo Bonzinifd238002020-11-13 08:31:09 -05004902 if (!kvm_dr6_valid(dbgregs->dr6))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004903 return -EINVAL;
Paolo Bonzinifd238002020-11-13 08:31:09 -05004904 if (!kvm_dr7_valid(dbgregs->dr7))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004905 return -EINVAL;
4906
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004907 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03004908 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004909 vcpu->arch.dr6 = dbgregs->dr6;
4910 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01004911 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004912
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004913 return 0;
4914}
4915
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004916static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
4917 struct kvm_xsave *guest_xsave)
4918{
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004919 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -06004920 return;
4921
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004922 fpu_copy_guest_fpstate_to_uabi(&vcpu->arch.guest_fpu,
4923 guest_xsave->region,
4924 sizeof(guest_xsave->region),
4925 vcpu->arch.pkru);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004926}
4927
Guang Zengbe50b202022-01-05 04:35:29 -08004928static void kvm_vcpu_ioctl_x86_get_xsave2(struct kvm_vcpu *vcpu,
4929 u8 *state, unsigned int size)
4930{
4931 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
4932 return;
4933
4934 fpu_copy_guest_fpstate_to_uabi(&vcpu->arch.guest_fpu,
4935 state, size, vcpu->arch.pkru);
4936}
4937
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004938static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
4939 struct kvm_xsave *guest_xsave)
4940{
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004941 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -06004942 return 0;
4943
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004944 return fpu_copy_uabi_to_guest_fpstate(&vcpu->arch.guest_fpu,
4945 guest_xsave->region,
4946 supported_xcr0, &vcpu->arch.pkru);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004947}
4948
4949static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
4950 struct kvm_xcrs *guest_xcrs)
4951{
Borislav Petkovd366bf72016-04-04 22:25:02 +02004952 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004953 guest_xcrs->nr_xcrs = 0;
4954 return;
4955 }
4956
4957 guest_xcrs->nr_xcrs = 1;
4958 guest_xcrs->flags = 0;
4959 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
4960 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
4961}
4962
4963static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
4964 struct kvm_xcrs *guest_xcrs)
4965{
4966 int i, r = 0;
4967
Borislav Petkovd366bf72016-04-04 22:25:02 +02004968 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004969 return -EINVAL;
4970
4971 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
4972 return -EINVAL;
4973
4974 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
4975 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004976 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004977 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004978 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004979 break;
4980 }
4981 if (r)
4982 r = -EINVAL;
4983 return r;
4984}
4985
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004986/*
4987 * kvm_set_guest_paused() indicates to the guest kernel that it has been
4988 * stopped by the hypervisor. This function will be called from the host only.
4989 * EINVAL is returned when the host attempts to set the flag for a guest that
4990 * does not support pv clocks.
4991 */
4992static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
4993{
Andy Honig0b794592013-02-20 14:48:10 -08004994 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004995 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03004996 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004997 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
4998 return 0;
4999}
5000
Oliver Upton828ca892021-09-16 18:15:38 +00005001static int kvm_arch_tsc_has_attr(struct kvm_vcpu *vcpu,
5002 struct kvm_device_attr *attr)
5003{
5004 int r;
5005
5006 switch (attr->attr) {
5007 case KVM_VCPU_TSC_OFFSET:
5008 r = 0;
5009 break;
5010 default:
5011 r = -ENXIO;
5012 }
5013
5014 return r;
5015}
5016
5017static int kvm_arch_tsc_get_attr(struct kvm_vcpu *vcpu,
5018 struct kvm_device_attr *attr)
5019{
5020 u64 __user *uaddr = (u64 __user *)(unsigned long)attr->addr;
5021 int r;
5022
5023 if ((u64)(unsigned long)uaddr != attr->addr)
5024 return -EFAULT;
5025
5026 switch (attr->attr) {
5027 case KVM_VCPU_TSC_OFFSET:
5028 r = -EFAULT;
5029 if (put_user(vcpu->arch.l1_tsc_offset, uaddr))
5030 break;
5031 r = 0;
5032 break;
5033 default:
5034 r = -ENXIO;
5035 }
5036
5037 return r;
5038}
5039
5040static int kvm_arch_tsc_set_attr(struct kvm_vcpu *vcpu,
5041 struct kvm_device_attr *attr)
5042{
5043 u64 __user *uaddr = (u64 __user *)(unsigned long)attr->addr;
5044 struct kvm *kvm = vcpu->kvm;
5045 int r;
5046
5047 if ((u64)(unsigned long)uaddr != attr->addr)
5048 return -EFAULT;
5049
5050 switch (attr->attr) {
5051 case KVM_VCPU_TSC_OFFSET: {
5052 u64 offset, tsc, ns;
5053 unsigned long flags;
5054 bool matched;
5055
5056 r = -EFAULT;
5057 if (get_user(offset, uaddr))
5058 break;
5059
5060 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
5061
5062 matched = (vcpu->arch.virtual_tsc_khz &&
5063 kvm->arch.last_tsc_khz == vcpu->arch.virtual_tsc_khz &&
5064 kvm->arch.last_tsc_offset == offset);
5065
5066 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio) + offset;
5067 ns = get_kvmclock_base_ns();
5068
5069 __kvm_synchronize_tsc(vcpu, offset, tsc, ns, matched);
5070 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
5071
5072 r = 0;
5073 break;
5074 }
5075 default:
5076 r = -ENXIO;
5077 }
5078
5079 return r;
5080}
5081
5082static int kvm_vcpu_ioctl_device_attr(struct kvm_vcpu *vcpu,
5083 unsigned int ioctl,
5084 void __user *argp)
5085{
5086 struct kvm_device_attr attr;
5087 int r;
5088
5089 if (copy_from_user(&attr, argp, sizeof(attr)))
5090 return -EFAULT;
5091
5092 if (attr.group != KVM_VCPU_TSC_CTRL)
5093 return -ENXIO;
5094
5095 switch (ioctl) {
5096 case KVM_HAS_DEVICE_ATTR:
5097 r = kvm_arch_tsc_has_attr(vcpu, &attr);
5098 break;
5099 case KVM_GET_DEVICE_ATTR:
5100 r = kvm_arch_tsc_get_attr(vcpu, &attr);
5101 break;
5102 case KVM_SET_DEVICE_ATTR:
5103 r = kvm_arch_tsc_set_attr(vcpu, &attr);
5104 break;
5105 }
5106
5107 return r;
5108}
5109
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005110static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
5111 struct kvm_enable_cap *cap)
5112{
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005113 int r;
5114 uint16_t vmcs_version;
5115 void __user *user_ptr;
5116
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005117 if (cap->flags)
5118 return -EINVAL;
5119
5120 switch (cap->cap) {
Roman Kaganefc479e2017-06-22 16:51:01 +03005121 case KVM_CAP_HYPERV_SYNIC2:
5122 if (cap->args[0])
5123 return -EINVAL;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005124 fallthrough;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06005125
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005126 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08005127 if (!irqchip_in_kernel(vcpu->kvm))
5128 return -EINVAL;
Roman Kaganefc479e2017-06-22 16:51:01 +03005129 return kvm_hv_activate_synic(vcpu, cap->cap ==
5130 KVM_CAP_HYPERV_SYNIC2);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005131 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04005132 if (!kvm_x86_ops.nested_ops->enable_evmcs)
Sean Christopherson51589172018-12-03 13:53:10 -08005133 return -ENOTTY;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005134 r = kvm_x86_ops.nested_ops->enable_evmcs(vcpu, &vmcs_version);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005135 if (!r) {
5136 user_ptr = (void __user *)(uintptr_t)cap->args[0];
5137 if (copy_to_user(user_ptr, &vmcs_version,
5138 sizeof(vmcs_version)))
5139 r = -EFAULT;
5140 }
5141 return r;
Tianyu Lan344c6c82019-08-22 22:30:20 +08005142 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005143 if (!kvm_x86_ops.enable_direct_tlbflush)
Tianyu Lan344c6c82019-08-22 22:30:20 +08005144 return -ENOTTY;
5145
Jason Baronb36464772021-01-14 22:27:56 -05005146 return static_call(kvm_x86_enable_direct_tlbflush)(vcpu);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005147
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02005148 case KVM_CAP_HYPERV_ENFORCE_CPUID:
5149 return kvm_hv_set_enforce_cpuid(vcpu, cap->args[0]);
5150
Oliver Upton66570e92020-08-18 15:24:28 +00005151 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
5152 vcpu->arch.pv_cpuid.enforce = cap->args[0];
Oliver Upton01b4f512020-10-27 16:10:42 -07005153 if (vcpu->arch.pv_cpuid.enforce)
5154 kvm_update_pv_runtime(vcpu);
Oliver Upton66570e92020-08-18 15:24:28 +00005155
5156 return 0;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005157 default:
5158 return -EINVAL;
5159 }
5160}
5161
Carsten Otte313a3dc2007-10-11 19:16:52 +02005162long kvm_arch_vcpu_ioctl(struct file *filp,
5163 unsigned int ioctl, unsigned long arg)
5164{
5165 struct kvm_vcpu *vcpu = filp->private_data;
5166 void __user *argp = (void __user *)arg;
5167 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005168 union {
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005169 struct kvm_sregs2 *sregs2;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005170 struct kvm_lapic_state *lapic;
5171 struct kvm_xsave *xsave;
5172 struct kvm_xcrs *xcrs;
5173 void *buffer;
5174 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005175
Christoffer Dall9b0624712017-12-04 21:35:36 +01005176 vcpu_load(vcpu);
5177
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005178 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005179 switch (ioctl) {
5180 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005181 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005182 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005183 goto out;
Ben Gardon254272c2019-02-11 11:02:50 -08005184 u.lapic = kzalloc(sizeof(struct kvm_lapic_state),
5185 GFP_KERNEL_ACCOUNT);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005186
Dave Hansenb772ff32008-08-11 10:01:47 -07005187 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005188 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07005189 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005190 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005191 if (r)
5192 goto out;
5193 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005194 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005195 goto out;
5196 r = 0;
5197 break;
5198 }
5199 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005200 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005201 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005202 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005203 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005204 if (IS_ERR(u.lapic)) {
5205 r = PTR_ERR(u.lapic);
5206 goto out_nofree;
5207 }
Sasha Levinff5c2c02011-12-04 19:36:29 +02005208
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005209 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005210 break;
5211 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005212 case KVM_INTERRUPT: {
5213 struct kvm_interrupt irq;
5214
5215 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005216 if (copy_from_user(&irq, argp, sizeof(irq)))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005217 goto out;
5218 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005219 break;
5220 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02005221 case KVM_NMI: {
5222 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02005223 break;
5224 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02005225 case KVM_SMI: {
5226 r = kvm_vcpu_ioctl_smi(vcpu);
5227 break;
5228 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02005229 case KVM_SET_CPUID: {
5230 struct kvm_cpuid __user *cpuid_arg = argp;
5231 struct kvm_cpuid cpuid;
5232
5233 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005234 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005235 goto out;
5236 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005237 break;
5238 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02005239 case KVM_SET_CPUID2: {
5240 struct kvm_cpuid2 __user *cpuid_arg = argp;
5241 struct kvm_cpuid2 cpuid;
5242
5243 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005244 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005245 goto out;
5246 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005247 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005248 break;
5249 }
5250 case KVM_GET_CPUID2: {
5251 struct kvm_cpuid2 __user *cpuid_arg = argp;
5252 struct kvm_cpuid2 cpuid;
5253
5254 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005255 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005256 goto out;
5257 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005258 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005259 if (r)
5260 goto out;
5261 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005262 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005263 goto out;
5264 r = 0;
5265 break;
5266 }
Tom Lendacky801e4592018-02-21 13:39:51 -06005267 case KVM_GET_MSRS: {
5268 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005269 r = msr_io(vcpu, argp, do_get_msr, 1);
Tom Lendacky801e4592018-02-21 13:39:51 -06005270 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005271 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005272 }
5273 case KVM_SET_MSRS: {
5274 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005275 r = msr_io(vcpu, argp, do_set_msr, 0);
Tom Lendacky801e4592018-02-21 13:39:51 -06005276 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005277 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005278 }
Avi Kivityb209749f2007-10-22 16:50:39 +02005279 case KVM_TPR_ACCESS_REPORTING: {
5280 struct kvm_tpr_access_ctl tac;
5281
5282 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005283 if (copy_from_user(&tac, argp, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005284 goto out;
5285 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
5286 if (r)
5287 goto out;
5288 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005289 if (copy_to_user(argp, &tac, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005290 goto out;
5291 r = 0;
5292 break;
5293 };
Avi Kivityb93463a2007-10-25 16:52:32 +02005294 case KVM_SET_VAPIC_ADDR: {
5295 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005296 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02005297
5298 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005299 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02005300 goto out;
5301 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005302 if (copy_from_user(&va, argp, sizeof(va)))
Avi Kivityb93463a2007-10-25 16:52:32 +02005303 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005304 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08005305 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005306 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02005307 break;
5308 }
Huang Ying890ca9a2009-05-11 16:48:15 +08005309 case KVM_X86_SETUP_MCE: {
5310 u64 mcg_cap;
5311
5312 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005313 if (copy_from_user(&mcg_cap, argp, sizeof(mcg_cap)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005314 goto out;
5315 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
5316 break;
5317 }
5318 case KVM_X86_SET_MCE: {
5319 struct kvm_x86_mce mce;
5320
5321 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005322 if (copy_from_user(&mce, argp, sizeof(mce)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005323 goto out;
5324 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
5325 break;
5326 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005327 case KVM_GET_VCPU_EVENTS: {
5328 struct kvm_vcpu_events events;
5329
5330 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
5331
5332 r = -EFAULT;
5333 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
5334 break;
5335 r = 0;
5336 break;
5337 }
5338 case KVM_SET_VCPU_EVENTS: {
5339 struct kvm_vcpu_events events;
5340
5341 r = -EFAULT;
5342 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
5343 break;
5344
5345 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
5346 break;
5347 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01005348 case KVM_GET_DEBUGREGS: {
5349 struct kvm_debugregs dbgregs;
5350
5351 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
5352
5353 r = -EFAULT;
5354 if (copy_to_user(argp, &dbgregs,
5355 sizeof(struct kvm_debugregs)))
5356 break;
5357 r = 0;
5358 break;
5359 }
5360 case KVM_SET_DEBUGREGS: {
5361 struct kvm_debugregs dbgregs;
5362
5363 r = -EFAULT;
5364 if (copy_from_user(&dbgregs, argp,
5365 sizeof(struct kvm_debugregs)))
5366 break;
5367
5368 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
5369 break;
5370 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005371 case KVM_GET_XSAVE: {
Guang Zengbe50b202022-01-05 04:35:29 -08005372 r = -EINVAL;
5373 if (vcpu->arch.guest_fpu.uabi_size > sizeof(struct kvm_xsave))
5374 break;
5375
Ben Gardon254272c2019-02-11 11:02:50 -08005376 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005377 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005378 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005379 break;
5380
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005381 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005382
5383 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005384 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005385 break;
5386 r = 0;
5387 break;
5388 }
5389 case KVM_SET_XSAVE: {
Guang Zengbe50b202022-01-05 04:35:29 -08005390 int size = vcpu->arch.guest_fpu.uabi_size;
5391
5392 u.xsave = memdup_user(argp, size);
Christoffer Dall9b0624712017-12-04 21:35:36 +01005393 if (IS_ERR(u.xsave)) {
5394 r = PTR_ERR(u.xsave);
5395 goto out_nofree;
5396 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005397
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005398 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005399 break;
5400 }
Guang Zengbe50b202022-01-05 04:35:29 -08005401
5402 case KVM_GET_XSAVE2: {
5403 int size = vcpu->arch.guest_fpu.uabi_size;
5404
5405 u.xsave = kzalloc(size, GFP_KERNEL_ACCOUNT);
5406 r = -ENOMEM;
5407 if (!u.xsave)
5408 break;
5409
5410 kvm_vcpu_ioctl_x86_get_xsave2(vcpu, u.buffer, size);
5411
5412 r = -EFAULT;
5413 if (copy_to_user(argp, u.xsave, size))
5414 break;
5415
5416 r = 0;
5417 break;
5418 }
5419
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005420 case KVM_GET_XCRS: {
Ben Gardon254272c2019-02-11 11:02:50 -08005421 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005422 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005423 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005424 break;
5425
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005426 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005427
5428 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005429 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005430 sizeof(struct kvm_xcrs)))
5431 break;
5432 r = 0;
5433 break;
5434 }
5435 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005436 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005437 if (IS_ERR(u.xcrs)) {
5438 r = PTR_ERR(u.xcrs);
5439 goto out_nofree;
5440 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005441
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005442 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005443 break;
5444 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01005445 case KVM_SET_TSC_KHZ: {
5446 u32 user_tsc_khz;
5447
5448 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005449 user_tsc_khz = (u32)arg;
5450
Marcelo Tosatti26769f92020-06-16 08:47:41 -03005451 if (kvm_has_tsc_control &&
5452 user_tsc_khz >= kvm_max_guest_tsc_khz)
Joerg Roedel92a1f122011-03-25 09:44:51 +01005453 goto out;
5454
Zachary Amsdencc578282012-02-03 15:43:50 -02005455 if (user_tsc_khz == 0)
5456 user_tsc_khz = tsc_khz;
5457
Haozhong Zhang381d5852015-10-20 15:39:04 +08005458 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
5459 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005460
Joerg Roedel92a1f122011-03-25 09:44:51 +01005461 goto out;
5462 }
5463 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02005464 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005465 goto out;
5466 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005467 case KVM_KVMCLOCK_CTRL: {
5468 r = kvm_set_guest_paused(vcpu);
5469 goto out;
5470 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005471 case KVM_ENABLE_CAP: {
5472 struct kvm_enable_cap cap;
5473
5474 r = -EFAULT;
5475 if (copy_from_user(&cap, argp, sizeof(cap)))
5476 goto out;
5477 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
5478 break;
5479 }
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005480 case KVM_GET_NESTED_STATE: {
5481 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5482 u32 user_data_size;
5483
5484 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005485 if (!kvm_x86_ops.nested_ops->get_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005486 break;
5487
5488 BUILD_BUG_ON(sizeof(user_data_size) != sizeof(user_kvm_nested_state->size));
Liran Alon26b471c2018-09-16 14:28:20 +03005489 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005490 if (get_user(user_data_size, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005491 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005492
Paolo Bonzini33b22172020-04-17 10:24:18 -04005493 r = kvm_x86_ops.nested_ops->get_state(vcpu, user_kvm_nested_state,
5494 user_data_size);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005495 if (r < 0)
Liran Alon26b471c2018-09-16 14:28:20 +03005496 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005497
5498 if (r > user_data_size) {
5499 if (put_user(r, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005500 r = -EFAULT;
5501 else
5502 r = -E2BIG;
5503 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005504 }
Liran Alon26b471c2018-09-16 14:28:20 +03005505
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005506 r = 0;
5507 break;
5508 }
5509 case KVM_SET_NESTED_STATE: {
5510 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5511 struct kvm_nested_state kvm_state;
Sean Christophersonad5996d2019-11-22 08:58:18 -08005512 int idx;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005513
5514 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005515 if (!kvm_x86_ops.nested_ops->set_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005516 break;
5517
Liran Alon26b471c2018-09-16 14:28:20 +03005518 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005519 if (copy_from_user(&kvm_state, user_kvm_nested_state, sizeof(kvm_state)))
Liran Alon26b471c2018-09-16 14:28:20 +03005520 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005521
Liran Alon26b471c2018-09-16 14:28:20 +03005522 r = -EINVAL;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005523 if (kvm_state.size < sizeof(kvm_state))
Liran Alon26b471c2018-09-16 14:28:20 +03005524 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005525
5526 if (kvm_state.flags &
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005527 ~(KVM_STATE_NESTED_RUN_PENDING | KVM_STATE_NESTED_GUEST_MODE
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04005528 | KVM_STATE_NESTED_EVMCS | KVM_STATE_NESTED_MTF_PENDING
5529 | KVM_STATE_NESTED_GIF_SET))
Liran Alon26b471c2018-09-16 14:28:20 +03005530 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005531
5532 /* nested_run_pending implies guest_mode. */
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005533 if ((kvm_state.flags & KVM_STATE_NESTED_RUN_PENDING)
5534 && !(kvm_state.flags & KVM_STATE_NESTED_GUEST_MODE))
Liran Alon26b471c2018-09-16 14:28:20 +03005535 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005536
Sean Christophersonad5996d2019-11-22 08:58:18 -08005537 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini33b22172020-04-17 10:24:18 -04005538 r = kvm_x86_ops.nested_ops->set_state(vcpu, user_kvm_nested_state, &kvm_state);
Sean Christophersonad5996d2019-11-22 08:58:18 -08005539 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005540 break;
5541 }
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02005542 case KVM_GET_SUPPORTED_HV_CPUID:
5543 r = kvm_ioctl_get_supported_hv_cpuid(vcpu, argp);
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01005544 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005545#ifdef CONFIG_KVM_XEN
David Woodhouse3e324612021-02-02 16:53:25 +00005546 case KVM_XEN_VCPU_GET_ATTR: {
5547 struct kvm_xen_vcpu_attr xva;
5548
5549 r = -EFAULT;
5550 if (copy_from_user(&xva, argp, sizeof(xva)))
5551 goto out;
5552 r = kvm_xen_vcpu_get_attr(vcpu, &xva);
5553 if (!r && copy_to_user(argp, &xva, sizeof(xva)))
5554 r = -EFAULT;
5555 break;
5556 }
5557 case KVM_XEN_VCPU_SET_ATTR: {
5558 struct kvm_xen_vcpu_attr xva;
5559
5560 r = -EFAULT;
5561 if (copy_from_user(&xva, argp, sizeof(xva)))
5562 goto out;
5563 r = kvm_xen_vcpu_set_attr(vcpu, &xva);
5564 break;
5565 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005566#endif
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005567 case KVM_GET_SREGS2: {
5568 u.sregs2 = kzalloc(sizeof(struct kvm_sregs2), GFP_KERNEL);
5569 r = -ENOMEM;
5570 if (!u.sregs2)
5571 goto out;
5572 __get_sregs2(vcpu, u.sregs2);
5573 r = -EFAULT;
5574 if (copy_to_user(argp, u.sregs2, sizeof(struct kvm_sregs2)))
5575 goto out;
5576 r = 0;
5577 break;
5578 }
5579 case KVM_SET_SREGS2: {
5580 u.sregs2 = memdup_user(argp, sizeof(struct kvm_sregs2));
5581 if (IS_ERR(u.sregs2)) {
5582 r = PTR_ERR(u.sregs2);
5583 u.sregs2 = NULL;
5584 goto out;
5585 }
5586 r = __set_sregs2(vcpu, u.sregs2);
5587 break;
5588 }
Oliver Upton828ca892021-09-16 18:15:38 +00005589 case KVM_HAS_DEVICE_ATTR:
5590 case KVM_GET_DEVICE_ATTR:
5591 case KVM_SET_DEVICE_ATTR:
5592 r = kvm_vcpu_ioctl_device_attr(vcpu, ioctl, argp);
5593 break;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005594 default:
5595 r = -EINVAL;
5596 }
5597out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005598 kfree(u.buffer);
Christoffer Dall9b0624712017-12-04 21:35:36 +01005599out_nofree:
5600 vcpu_put(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005601 return r;
5602}
5603
Souptick Joarder1499fa82018-04-19 00:49:58 +05305604vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
Carsten Otte5b1c1492012-01-04 10:25:23 +01005605{
5606 return VM_FAULT_SIGBUS;
5607}
5608
Carsten Otte1fe779f2007-10-29 16:08:35 +01005609static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
5610{
5611 int ret;
5612
5613 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08005614 return -EINVAL;
Jason Baronb36464772021-01-14 22:27:56 -05005615 ret = static_call(kvm_x86_set_tss_addr)(kvm, addr);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005616 return ret;
5617}
5618
Sheng Yangb927a3c2009-07-21 10:42:48 +08005619static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
5620 u64 ident_addr)
5621{
Jason Baronb36464772021-01-14 22:27:56 -05005622 return static_call(kvm_x86_set_identity_map_addr)(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005623}
5624
Carsten Otte1fe779f2007-10-29 16:08:35 +01005625static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005626 unsigned long kvm_nr_mmu_pages)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005627{
5628 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
5629 return -EINVAL;
5630
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005631 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005632
5633 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08005634 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005635
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005636 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005637 return 0;
5638}
5639
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005640static unsigned long kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005641{
Dave Hansen39de71e2010-08-19 18:11:14 -07005642 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005643}
5644
Carsten Otte1fe779f2007-10-29 16:08:35 +01005645static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5646{
David Hildenbrand90bca052017-04-07 10:50:23 +02005647 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005648 int r;
5649
5650 r = 0;
5651 switch (chip->chip_id) {
5652 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005653 memcpy(&chip->chip.pic, &pic->pics[0],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005654 sizeof(struct kvm_pic_state));
5655 break;
5656 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005657 memcpy(&chip->chip.pic, &pic->pics[1],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005658 sizeof(struct kvm_pic_state));
5659 break;
5660 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005661 kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005662 break;
5663 default:
5664 r = -EINVAL;
5665 break;
5666 }
5667 return r;
5668}
5669
5670static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5671{
David Hildenbrand90bca052017-04-07 10:50:23 +02005672 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005673 int r;
5674
5675 r = 0;
5676 switch (chip->chip_id) {
5677 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005678 spin_lock(&pic->lock);
5679 memcpy(&pic->pics[0], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005680 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005681 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005682 break;
5683 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005684 spin_lock(&pic->lock);
5685 memcpy(&pic->pics[1], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005686 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005687 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005688 break;
5689 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005690 kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005691 break;
5692 default:
5693 r = -EINVAL;
5694 break;
5695 }
David Hildenbrand90bca052017-04-07 10:50:23 +02005696 kvm_pic_update_irq(pic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005697 return r;
5698}
5699
Sheng Yange0f63cb2008-03-04 00:50:59 +08005700static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5701{
Radim Krčmář34f39412016-03-02 22:56:50 +01005702 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
5703
5704 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
5705
5706 mutex_lock(&kps->lock);
5707 memcpy(ps, &kps->channels, sizeof(*ps));
5708 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305709 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005710}
5711
5712static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5713{
Andrew Honig01856042015-11-18 14:50:23 -08005714 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01005715 struct kvm_pit *pit = kvm->arch.vpit;
5716
5717 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01005718 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08005719 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005720 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
5721 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305722 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005723}
5724
5725static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5726{
Beth Kone9f42752009-07-07 11:50:38 -04005727 mutex_lock(&kvm->arch.vpit->pit_state.lock);
5728 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
5729 sizeof(ps->channels));
5730 ps->flags = kvm->arch.vpit->pit_state.flags;
5731 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04005732 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305733 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005734}
5735
5736static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5737{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305738 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08005739 int i;
Beth Kone9f42752009-07-07 11:50:38 -04005740 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01005741 struct kvm_pit *pit = kvm->arch.vpit;
5742
5743 mutex_lock(&pit->pit_state.lock);
5744 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04005745 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
5746 if (!prev_legacy && cur_legacy)
5747 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01005748 memcpy(&pit->pit_state.channels, &ps->channels,
5749 sizeof(pit->pit_state.channels));
5750 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08005751 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005752 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01005753 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01005754 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305755 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005756}
5757
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005758static int kvm_vm_ioctl_reinject(struct kvm *kvm,
5759 struct kvm_reinject_control *control)
5760{
Radim Krčmář71474e22016-03-02 22:56:45 +01005761 struct kvm_pit *pit = kvm->arch.vpit;
5762
Radim Krčmář71474e22016-03-02 22:56:45 +01005763 /* pit->pit_state.lock was overloaded to prevent userspace from getting
5764 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
5765 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
5766 */
5767 mutex_lock(&pit->pit_state.lock);
5768 kvm_pit_set_reinject(pit, control->pit_reinject);
5769 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01005770
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005771 return 0;
5772}
5773
Sean Christopherson0dff0842020-02-18 13:07:29 -08005774void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005775{
Sean Christophersona018eba2021-02-12 16:50:10 -08005776
Kai Huang88178fd2015-01-28 10:54:27 +08005777 /*
Sean Christophersona018eba2021-02-12 16:50:10 -08005778 * Flush all CPUs' dirty log buffers to the dirty_bitmap. Called
5779 * before reporting dirty_bitmap to userspace. KVM flushes the buffers
5780 * on all VM-Exits, thus we only need to kick running vCPUs to force a
5781 * VM-Exit.
Kai Huang88178fd2015-01-28 10:54:27 +08005782 */
Sean Christophersona018eba2021-02-12 16:50:10 -08005783 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00005784 unsigned long i;
Sean Christophersona018eba2021-02-12 16:50:10 -08005785
5786 kvm_for_each_vcpu(i, vcpu, kvm)
5787 kvm_vcpu_kick(vcpu);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005788}
5789
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005790int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
5791 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005792{
5793 if (!irqchip_in_kernel(kvm))
5794 return -ENXIO;
5795
5796 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005797 irq_event->irq, irq_event->level,
5798 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005799 return 0;
5800}
5801
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01005802int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
5803 struct kvm_enable_cap *cap)
Nadav Amit90de4a12015-04-13 01:53:41 +03005804{
5805 int r;
5806
5807 if (cap->flags)
5808 return -EINVAL;
5809
5810 switch (cap->cap) {
5811 case KVM_CAP_DISABLE_QUIRKS:
5812 kvm->arch.disabled_quirks = cap->args[0];
5813 r = 0;
5814 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07005815 case KVM_CAP_SPLIT_IRQCHIP: {
5816 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005817 r = -EINVAL;
5818 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
5819 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07005820 r = -EEXIST;
5821 if (irqchip_in_kernel(kvm))
5822 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005823 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07005824 goto split_irqchip_unlock;
5825 r = kvm_setup_empty_irq_routing(kvm);
David Hildenbrand5c0aea02017-04-28 17:06:20 +02005826 if (r)
Steve Rutherford49df6392015-07-29 23:21:40 -07005827 goto split_irqchip_unlock;
5828 /* Pairs with irqchip_in_kernel. */
5829 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005830 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005831 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05005832 kvm_request_apicv_update(kvm, true, APICV_INHIBIT_REASON_ABSENT);
Steve Rutherford49df6392015-07-29 23:21:40 -07005833 r = 0;
5834split_irqchip_unlock:
5835 mutex_unlock(&kvm->lock);
5836 break;
5837 }
Radim Krčmář371313132016-07-12 22:09:27 +02005838 case KVM_CAP_X2APIC_API:
5839 r = -EINVAL;
5840 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
5841 break;
5842
5843 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
5844 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02005845 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
5846 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02005847
5848 r = 0;
5849 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005850 case KVM_CAP_X86_DISABLE_EXITS:
5851 r = -EINVAL;
5852 if (cap->args[0] & ~KVM_X86_DISABLE_VALID_EXITS)
5853 break;
5854
5855 if ((cap->args[0] & KVM_X86_DISABLE_EXITS_MWAIT) &&
5856 kvm_can_mwait_in_guest())
5857 kvm->arch.mwait_in_guest = true;
Michael S. Tsirkin766d3572018-06-08 02:19:53 +03005858 if (cap->args[0] & KVM_X86_DISABLE_EXITS_HLT)
Wanpeng Licaa057a2018-03-12 04:53:03 -07005859 kvm->arch.hlt_in_guest = true;
Wanpeng Lib31c1142018-03-12 04:53:04 -07005860 if (cap->args[0] & KVM_X86_DISABLE_EXITS_PAUSE)
5861 kvm->arch.pause_in_guest = true;
Wanpeng Lib5170062019-05-21 14:06:53 +08005862 if (cap->args[0] & KVM_X86_DISABLE_EXITS_CSTATE)
5863 kvm->arch.cstate_in_guest = true;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005864 r = 0;
5865 break;
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005866 case KVM_CAP_MSR_PLATFORM_INFO:
5867 kvm->arch.guest_can_read_msr_platform_info = cap->args[0];
5868 r = 0;
5869 break;
Jim Mattsonc4f55192018-10-16 14:29:24 -07005870 case KVM_CAP_EXCEPTION_PAYLOAD:
5871 kvm->arch.exception_payload_enabled = cap->args[0];
5872 r = 0;
5873 break;
Alexander Graf1ae09952020-09-25 16:34:16 +02005874 case KVM_CAP_X86_USER_SPACE_MSR:
5875 kvm->arch.user_space_msr_mask = cap->args[0];
5876 r = 0;
5877 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005878 case KVM_CAP_X86_BUS_LOCK_EXIT:
5879 r = -EINVAL;
5880 if (cap->args[0] & ~KVM_BUS_LOCK_DETECTION_VALID_MODE)
5881 break;
5882
5883 if ((cap->args[0] & KVM_BUS_LOCK_DETECTION_OFF) &&
5884 (cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT))
5885 break;
5886
5887 if (kvm_has_bus_lock_exit &&
5888 cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT)
5889 kvm->arch.bus_lock_detection_enabled = true;
5890 r = 0;
5891 break;
Sean Christophersonfe7e9482021-04-12 16:21:43 +12005892#ifdef CONFIG_X86_SGX_KVM
5893 case KVM_CAP_SGX_ATTRIBUTE: {
5894 unsigned long allowed_attributes = 0;
5895
5896 r = sgx_set_attribute(&allowed_attributes, cap->args[0]);
5897 if (r)
5898 break;
5899
5900 /* KVM only supports the PROVISIONKEY privileged attribute. */
5901 if ((allowed_attributes & SGX_ATTR_PROVISIONKEY) &&
5902 !(allowed_attributes & ~SGX_ATTR_PROVISIONKEY))
5903 kvm->arch.sgx_provisioning_allowed = true;
5904 else
5905 r = -EINVAL;
5906 break;
5907 }
5908#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00005909 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
5910 r = -EINVAL;
5911 if (kvm_x86_ops.vm_copy_enc_context_from)
5912 r = kvm_x86_ops.vm_copy_enc_context_from(kvm, cap->args[0]);
5913 return r;
Peter Gondab5663932021-10-21 10:43:00 -07005914 case KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM:
5915 r = -EINVAL;
5916 if (kvm_x86_ops.vm_move_enc_context_from)
5917 r = kvm_x86_ops.vm_move_enc_context_from(
5918 kvm, cap->args[0]);
5919 return r;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00005920 case KVM_CAP_EXIT_HYPERCALL:
5921 if (cap->args[0] & ~KVM_EXIT_HYPERCALL_VALID_MASK) {
5922 r = -EINVAL;
5923 break;
5924 }
5925 kvm->arch.hypercall_exit_enabled = cap->args[0];
5926 r = 0;
5927 break;
Aaron Lewis19238e72021-05-10 07:48:33 -07005928 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
5929 r = -EINVAL;
5930 if (cap->args[0] & ~1)
5931 break;
5932 kvm->arch.exit_on_emulation_error = cap->args[0];
5933 r = 0;
5934 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03005935 default:
5936 r = -EINVAL;
5937 break;
5938 }
5939 return r;
5940}
5941
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005942static struct kvm_x86_msr_filter *kvm_alloc_msr_filter(bool default_allow)
Alexander Graf1a1552542020-09-25 16:34:21 +02005943{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005944 struct kvm_x86_msr_filter *msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005945
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005946 msr_filter = kzalloc(sizeof(*msr_filter), GFP_KERNEL_ACCOUNT);
5947 if (!msr_filter)
5948 return NULL;
Alexander Graf1a1552542020-09-25 16:34:21 +02005949
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005950 msr_filter->default_allow = default_allow;
5951 return msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005952}
5953
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005954static void kvm_free_msr_filter(struct kvm_x86_msr_filter *msr_filter)
Alexander Graf1a1552542020-09-25 16:34:21 +02005955{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005956 u32 i;
5957
5958 if (!msr_filter)
5959 return;
5960
5961 for (i = 0; i < msr_filter->count; i++)
5962 kfree(msr_filter->ranges[i].bitmap);
5963
5964 kfree(msr_filter);
5965}
5966
5967static int kvm_add_msr_filter(struct kvm_x86_msr_filter *msr_filter,
5968 struct kvm_msr_filter_range *user_range)
5969{
Alexander Graf1a1552542020-09-25 16:34:21 +02005970 unsigned long *bitmap = NULL;
5971 size_t bitmap_size;
Alexander Graf1a1552542020-09-25 16:34:21 +02005972
5973 if (!user_range->nmsrs)
5974 return 0;
5975
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005976 if (user_range->flags & ~(KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE))
5977 return -EINVAL;
5978
5979 if (!user_range->flags)
5980 return -EINVAL;
5981
Alexander Graf1a1552542020-09-25 16:34:21 +02005982 bitmap_size = BITS_TO_LONGS(user_range->nmsrs) * sizeof(long);
5983 if (!bitmap_size || bitmap_size > KVM_MSR_FILTER_MAX_BITMAP_SIZE)
5984 return -EINVAL;
5985
5986 bitmap = memdup_user((__user u8*)user_range->bitmap, bitmap_size);
5987 if (IS_ERR(bitmap))
5988 return PTR_ERR(bitmap);
5989
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005990 msr_filter->ranges[msr_filter->count] = (struct msr_bitmap_range) {
Alexander Graf1a1552542020-09-25 16:34:21 +02005991 .flags = user_range->flags,
5992 .base = user_range->base,
5993 .nmsrs = user_range->nmsrs,
5994 .bitmap = bitmap,
5995 };
5996
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005997 msr_filter->count++;
Alexander Graf1a1552542020-09-25 16:34:21 +02005998 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005999}
6000
6001static int kvm_vm_ioctl_set_msr_filter(struct kvm *kvm, void __user *argp)
6002{
6003 struct kvm_msr_filter __user *user_msr_filter = argp;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006004 struct kvm_x86_msr_filter *new_filter, *old_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02006005 struct kvm_msr_filter filter;
6006 bool default_allow;
Paolo Bonzini043248b2020-10-20 10:57:01 -04006007 bool empty = true;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006008 int r = 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02006009 u32 i;
6010
6011 if (copy_from_user(&filter, user_msr_filter, sizeof(filter)))
6012 return -EFAULT;
6013
Paolo Bonzini043248b2020-10-20 10:57:01 -04006014 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++)
6015 empty &= !filter.ranges[i].nmsrs;
Alexander Graf1a1552542020-09-25 16:34:21 +02006016
6017 default_allow = !(filter.flags & KVM_MSR_FILTER_DEFAULT_DENY);
Paolo Bonzini043248b2020-10-20 10:57:01 -04006018 if (empty && !default_allow)
6019 return -EINVAL;
6020
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006021 new_filter = kvm_alloc_msr_filter(default_allow);
6022 if (!new_filter)
6023 return -ENOMEM;
Paolo Bonzini043248b2020-10-20 10:57:01 -04006024
Alexander Graf1a1552542020-09-25 16:34:21 +02006025 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006026 r = kvm_add_msr_filter(new_filter, &filter.ranges[i]);
6027 if (r) {
6028 kvm_free_msr_filter(new_filter);
6029 return r;
6030 }
Alexander Graf1a1552542020-09-25 16:34:21 +02006031 }
6032
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006033 mutex_lock(&kvm->lock);
6034
6035 /* The per-VM filter is protected by kvm->lock... */
6036 old_filter = srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1);
6037
6038 rcu_assign_pointer(kvm->arch.msr_filter, new_filter);
6039 synchronize_srcu(&kvm->srcu);
6040
6041 kvm_free_msr_filter(old_filter);
6042
Alexander Graf1a1552542020-09-25 16:34:21 +02006043 kvm_make_all_cpus_request(kvm, KVM_REQ_MSR_FILTER_CHANGED);
6044 mutex_unlock(&kvm->lock);
6045
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006046 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02006047}
6048
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09006049#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
6050static int kvm_arch_suspend_notifier(struct kvm *kvm)
6051{
6052 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00006053 unsigned long i;
6054 int ret = 0;
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09006055
6056 mutex_lock(&kvm->lock);
6057 kvm_for_each_vcpu(i, vcpu, kvm) {
6058 if (!vcpu->arch.pv_time_enabled)
6059 continue;
6060
6061 ret = kvm_set_guest_paused(vcpu);
6062 if (ret) {
6063 kvm_err("Failed to pause guest VCPU%d: %d\n",
6064 vcpu->vcpu_id, ret);
6065 break;
6066 }
6067 }
6068 mutex_unlock(&kvm->lock);
6069
6070 return ret ? NOTIFY_BAD : NOTIFY_DONE;
6071}
6072
6073int kvm_arch_pm_notifier(struct kvm *kvm, unsigned long state)
6074{
6075 switch (state) {
6076 case PM_HIBERNATION_PREPARE:
6077 case PM_SUSPEND_PREPARE:
6078 return kvm_arch_suspend_notifier(kvm);
6079 }
6080
6081 return NOTIFY_DONE;
6082}
6083#endif /* CONFIG_HAVE_KVM_PM_NOTIFIER */
6084
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006085static int kvm_vm_ioctl_get_clock(struct kvm *kvm, void __user *argp)
6086{
Paolo Bonzini869b4422021-09-16 18:15:36 +00006087 struct kvm_clock_data data = { 0 };
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006088
Oliver Upton55c0cef2021-09-16 18:15:34 +00006089 get_kvmclock(kvm, &data);
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006090 if (copy_to_user(argp, &data, sizeof(data)))
6091 return -EFAULT;
6092
6093 return 0;
6094}
6095
6096static int kvm_vm_ioctl_set_clock(struct kvm *kvm, void __user *argp)
6097{
6098 struct kvm_arch *ka = &kvm->arch;
6099 struct kvm_clock_data data;
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006100 u64 now_raw_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006101
6102 if (copy_from_user(&data, argp, sizeof(data)))
6103 return -EFAULT;
6104
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006105 /*
6106 * Only KVM_CLOCK_REALTIME is used, but allow passing the
6107 * result of KVM_GET_CLOCK back to KVM_SET_CLOCK.
6108 */
6109 if (data.flags & ~KVM_CLOCK_VALID_FLAGS)
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006110 return -EINVAL;
6111
6112 kvm_hv_invalidate_tsc_page(kvm);
6113 kvm_start_pvclock_update(kvm);
6114 pvclock_update_vm_gtod_copy(kvm);
6115
6116 /*
6117 * This pairs with kvm_guest_time_update(): when masterclock is
6118 * in use, we use master_kernel_ns + kvmclock_offset to set
6119 * unsigned 'system_time' so if we use get_kvmclock_ns() (which
6120 * is slightly ahead) here we risk going negative on unsigned
6121 * 'system_time' when 'data.clock' is very small.
6122 */
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006123 if (data.flags & KVM_CLOCK_REALTIME) {
6124 u64 now_real_ns = ktime_get_real_ns();
6125
6126 /*
6127 * Avoid stepping the kvmclock backwards.
6128 */
6129 if (now_real_ns > data.realtime)
6130 data.clock += now_real_ns - data.realtime;
6131 }
6132
6133 if (ka->use_master_clock)
6134 now_raw_ns = ka->master_kernel_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006135 else
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006136 now_raw_ns = get_kvmclock_base_ns();
6137 ka->kvmclock_offset = data.clock - now_raw_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006138 kvm_end_pvclock_update(kvm);
6139 return 0;
6140}
6141
Carsten Otte1fe779f2007-10-29 16:08:35 +01006142long kvm_arch_vm_ioctl(struct file *filp,
6143 unsigned int ioctl, unsigned long arg)
6144{
6145 struct kvm *kvm = filp->private_data;
6146 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03006147 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07006148 /*
6149 * This union makes it completely explicit to gcc-3.x
6150 * that these two variables' stack usage should be
6151 * combined, not added together.
6152 */
6153 union {
6154 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04006155 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006156 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07006157 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006158
6159 switch (ioctl) {
6160 case KVM_SET_TSS_ADDR:
6161 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006162 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006163 case KVM_SET_IDENTITY_MAP_ADDR: {
6164 u64 ident_addr;
6165
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006166 mutex_lock(&kvm->lock);
6167 r = -EINVAL;
6168 if (kvm->created_vcpus)
6169 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006170 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006171 if (copy_from_user(&ident_addr, argp, sizeof(ident_addr)))
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006172 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006173 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006174set_identity_unlock:
6175 mutex_unlock(&kvm->lock);
Sheng Yangb927a3c2009-07-21 10:42:48 +08006176 break;
6177 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01006178 case KVM_SET_NR_MMU_PAGES:
6179 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006180 break;
6181 case KVM_GET_NR_MMU_PAGES:
6182 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
6183 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006184 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006185 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01006186
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006187 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01006188 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006189 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006190
Avi Kivity3e515702012-03-05 14:23:29 +02006191 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02006192 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02006193 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006194
6195 r = kvm_pic_init(kvm);
6196 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006197 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006198
6199 r = kvm_ioapic_init(kvm);
6200 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01006201 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01006202 goto create_irqchip_unlock;
6203 }
6204
Avi Kivity399ec802008-11-19 13:58:46 +02006205 r = kvm_setup_default_irq_routing(kvm);
6206 if (r) {
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08006207 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01006208 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02006209 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02006210 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01006211 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02006212 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01006213 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05006214 kvm_request_apicv_update(kvm, true, APICV_INHIBIT_REASON_ABSENT);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006215 create_irqchip_unlock:
6216 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006217 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006218 }
Sheng Yang78376992008-01-28 05:10:22 +08006219 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006220 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
6221 goto create_pit;
6222 case KVM_CREATE_PIT2:
6223 r = -EFAULT;
6224 if (copy_from_user(&u.pit_config, argp,
6225 sizeof(struct kvm_pit_config)))
6226 goto out;
6227 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02006228 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02006229 r = -EEXIST;
6230 if (kvm->arch.vpit)
6231 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08006232 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006233 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08006234 if (kvm->arch.vpit)
6235 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02006236 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02006237 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08006238 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006239 case KVM_GET_IRQCHIP: {
6240 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02006241 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006242
Sasha Levinff5c2c02011-12-04 19:36:29 +02006243 chip = memdup_user(argp, sizeof(*chip));
6244 if (IS_ERR(chip)) {
6245 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006246 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02006247 }
6248
Carsten Otte1fe779f2007-10-29 16:08:35 +01006249 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01006250 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07006251 goto get_irqchip_out;
6252 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
6253 if (r)
6254 goto get_irqchip_out;
6255 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006256 if (copy_to_user(argp, chip, sizeof(*chip)))
Dave Hansenf0d66272008-08-11 10:01:45 -07006257 goto get_irqchip_out;
6258 r = 0;
6259 get_irqchip_out:
6260 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006261 break;
6262 }
6263 case KVM_SET_IRQCHIP: {
6264 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02006265 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006266
Sasha Levinff5c2c02011-12-04 19:36:29 +02006267 chip = memdup_user(argp, sizeof(*chip));
6268 if (IS_ERR(chip)) {
6269 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006270 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02006271 }
6272
Carsten Otte1fe779f2007-10-29 16:08:35 +01006273 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01006274 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07006275 goto set_irqchip_out;
6276 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
Dave Hansenf0d66272008-08-11 10:01:45 -07006277 set_irqchip_out:
6278 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006279 break;
6280 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08006281 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08006282 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07006283 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006284 goto out;
6285 r = -ENXIO;
6286 if (!kvm->arch.vpit)
6287 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07006288 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006289 if (r)
6290 goto out;
6291 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07006292 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006293 goto out;
6294 r = 0;
6295 break;
6296 }
6297 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08006298 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006299 if (copy_from_user(&u.ps, argp, sizeof(u.ps)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006300 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006301 mutex_lock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006302 r = -ENXIO;
6303 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006304 goto set_pit_out;
Dave Hansenf0d66272008-08-11 10:01:45 -07006305 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006306set_pit_out:
6307 mutex_unlock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006308 break;
6309 }
Beth Kone9f42752009-07-07 11:50:38 -04006310 case KVM_GET_PIT2: {
6311 r = -ENXIO;
6312 if (!kvm->arch.vpit)
6313 goto out;
6314 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
6315 if (r)
6316 goto out;
6317 r = -EFAULT;
6318 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
6319 goto out;
6320 r = 0;
6321 break;
6322 }
6323 case KVM_SET_PIT2: {
6324 r = -EFAULT;
6325 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
6326 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006327 mutex_lock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006328 r = -ENXIO;
6329 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006330 goto set_pit2_out;
Beth Kone9f42752009-07-07 11:50:38 -04006331 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006332set_pit2_out:
6333 mutex_unlock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006334 break;
6335 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006336 case KVM_REINJECT_CONTROL: {
6337 struct kvm_reinject_control control;
6338 r = -EFAULT;
6339 if (copy_from_user(&control, argp, sizeof(control)))
6340 goto out;
Miaohe Lincad23e72019-12-07 17:25:22 +08006341 r = -ENXIO;
6342 if (!kvm->arch.vpit)
6343 goto out;
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006344 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006345 break;
6346 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006347 case KVM_SET_BOOT_CPU_ID:
6348 r = 0;
6349 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02006350 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006351 r = -EBUSY;
6352 else
6353 kvm->arch.bsp_vcpu_id = arg;
6354 mutex_unlock(&kvm->lock);
6355 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006356#ifdef CONFIG_KVM_XEN
Ed Swierkffde22a2009-10-15 15:21:43 -07006357 case KVM_XEN_HVM_CONFIG: {
Paolo Bonzini51776042017-10-26 15:45:47 +02006358 struct kvm_xen_hvm_config xhc;
Ed Swierkffde22a2009-10-15 15:21:43 -07006359 r = -EFAULT;
Paolo Bonzini51776042017-10-26 15:45:47 +02006360 if (copy_from_user(&xhc, argp, sizeof(xhc)))
Ed Swierkffde22a2009-10-15 15:21:43 -07006361 goto out;
David Woodhouse78e98782021-02-02 13:19:35 +00006362 r = kvm_xen_hvm_config(kvm, &xhc);
Ed Swierkffde22a2009-10-15 15:21:43 -07006363 break;
6364 }
Joao Martinsa76b9642020-12-03 15:52:25 +00006365 case KVM_XEN_HVM_GET_ATTR: {
6366 struct kvm_xen_hvm_attr xha;
6367
6368 r = -EFAULT;
6369 if (copy_from_user(&xha, argp, sizeof(xha)))
Hannes Edercded19f2009-02-21 02:19:13 +01006370 goto out;
Joao Martinsa76b9642020-12-03 15:52:25 +00006371 r = kvm_xen_hvm_get_attr(kvm, &xha);
6372 if (!r && copy_to_user(argp, &xha, sizeof(xha)))
6373 r = -EFAULT;
6374 break;
6375 }
6376 case KVM_XEN_HVM_SET_ATTR: {
6377 struct kvm_xen_hvm_attr xha;
6378
6379 r = -EFAULT;
6380 if (copy_from_user(&xha, argp, sizeof(xha)))
6381 goto out;
6382 r = kvm_xen_hvm_set_attr(kvm, &xha);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006383 break;
6384 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006385#endif
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006386 case KVM_SET_CLOCK:
6387 r = kvm_vm_ioctl_set_clock(kvm, argp);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006388 break;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006389 case KVM_GET_CLOCK:
6390 r = kvm_vm_ioctl_get_clock(kvm, argp);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006391 break;
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006392 case KVM_MEMORY_ENCRYPT_OP: {
6393 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006394 if (kvm_x86_ops.mem_enc_op)
Jason Baronb36464772021-01-14 22:27:56 -05006395 r = static_call(kvm_x86_mem_enc_op)(kvm, argp);
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006396 break;
6397 }
Brijesh Singh69eaede2017-12-04 10:57:26 -06006398 case KVM_MEMORY_ENCRYPT_REG_REGION: {
6399 struct kvm_enc_region region;
6400
6401 r = -EFAULT;
6402 if (copy_from_user(&region, argp, sizeof(region)))
6403 goto out;
6404
6405 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006406 if (kvm_x86_ops.mem_enc_reg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006407 r = static_call(kvm_x86_mem_enc_reg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006408 break;
6409 }
6410 case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
6411 struct kvm_enc_region region;
6412
6413 r = -EFAULT;
6414 if (copy_from_user(&region, argp, sizeof(region)))
6415 goto out;
6416
6417 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006418 if (kvm_x86_ops.mem_enc_unreg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006419 r = static_call(kvm_x86_mem_enc_unreg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006420 break;
6421 }
Roman Kaganfaeb7832018-02-01 16:48:32 +03006422 case KVM_HYPERV_EVENTFD: {
6423 struct kvm_hyperv_eventfd hvevfd;
6424
6425 r = -EFAULT;
6426 if (copy_from_user(&hvevfd, argp, sizeof(hvevfd)))
6427 goto out;
6428 r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd);
6429 break;
6430 }
Eric Hankland66bb8a02019-07-10 18:25:15 -07006431 case KVM_SET_PMU_EVENT_FILTER:
6432 r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp);
6433 break;
Alexander Graf1a1552542020-09-25 16:34:21 +02006434 case KVM_X86_SET_MSR_FILTER:
6435 r = kvm_vm_ioctl_set_msr_filter(kvm, argp);
6436 break;
Carsten Otte043405e2007-10-10 17:16:19 +02006437 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02006438 r = -ENOTTY;
Carsten Otte043405e2007-10-10 17:16:19 +02006439 }
6440out:
6441 return r;
6442}
6443
6444static void kvm_init_msr_list(void)
6445{
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006446 struct x86_pmu_capability x86_pmu;
Carsten Otte043405e2007-10-10 17:16:19 +02006447 u32 dummy[2];
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006448 unsigned i;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006449
Jim Mattsone2ada662019-08-21 11:20:04 -07006450 BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4,
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006451 "Please update the fixed PMCs in msrs_to_saved_all[]");
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006452
6453 perf_get_x86_pmu_capability(&x86_pmu);
Jim Mattsone2ada662019-08-21 11:20:04 -07006454
Xiaoyao Li6cbee2b2019-11-13 09:15:21 +08006455 num_msrs_to_save = 0;
6456 num_emulated_msrs = 0;
6457 num_msr_based_features = 0;
6458
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006459 for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) {
6460 if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006461 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006462
6463 /*
6464 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006465 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006466 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006467 switch (msrs_to_save_all[i]) {
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006468 case MSR_IA32_BNDCFGS:
Liran Alon503234b2018-09-14 03:25:53 +03006469 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006470 continue;
6471 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006472 case MSR_TSC_AUX:
Sean Christopherson36fa06f2021-05-04 10:17:26 -07006473 if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP) &&
6474 !kvm_cpu_cap_has(X86_FEATURE_RDPID))
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006475 continue;
6476 break;
Maxim Levitskyf4cfcd22020-05-23 19:14:55 +03006477 case MSR_IA32_UMWAIT_CONTROL:
6478 if (!kvm_cpu_cap_has(X86_FEATURE_WAITPKG))
6479 continue;
6480 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08006481 case MSR_IA32_RTIT_CTL:
6482 case MSR_IA32_RTIT_STATUS:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006483 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT))
Chao Pengbf8c55d2018-10-24 16:05:14 +08006484 continue;
6485 break;
6486 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006487 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006488 !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering))
6489 continue;
6490 break;
6491 case MSR_IA32_RTIT_OUTPUT_BASE:
6492 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006493 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006494 (!intel_pt_validate_hw_cap(PT_CAP_topa_output) &&
6495 !intel_pt_validate_hw_cap(PT_CAP_single_range_output)))
6496 continue;
6497 break;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006498 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006499 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006500 msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >=
Chao Pengbf8c55d2018-10-24 16:05:14 +08006501 intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2)
6502 continue;
6503 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006504 case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006505 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006506 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6507 continue;
6508 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006509 case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006510 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006511 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6512 continue;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006513 break;
Jing Liu820a6ee2022-01-05 04:35:21 -08006514 case MSR_IA32_XFD:
Jing Liu548e8362022-01-05 04:35:24 -08006515 case MSR_IA32_XFD_ERR:
Jing Liu820a6ee2022-01-05 04:35:21 -08006516 if (!kvm_cpu_cap_has(X86_FEATURE_XFD))
6517 continue;
6518 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006519 default:
6520 break;
6521 }
6522
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006523 msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i];
Carsten Ottebbd9b642007-10-30 18:44:21 +01006524 }
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006525
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006526 for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
Jason Baronb36464772021-01-14 22:27:56 -05006527 if (!static_call(kvm_x86_has_emulated_msr)(NULL, emulated_msrs_all[i]))
Tom Lendackybc226f02018-05-10 22:06:39 +02006528 continue;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006529
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006530 emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006531 }
Tom Lendacky801e4592018-02-21 13:39:51 -06006532
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006533 for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) {
Tom Lendacky801e4592018-02-21 13:39:51 -06006534 struct kvm_msr_entry msr;
6535
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006536 msr.index = msr_based_features_all[i];
Wanpeng Li66421c12018-02-28 14:03:30 +08006537 if (kvm_get_msr_feature(&msr))
Tom Lendacky801e4592018-02-21 13:39:51 -06006538 continue;
6539
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006540 msr_based_features[num_msr_based_features++] = msr_based_features_all[i];
Tom Lendacky801e4592018-02-21 13:39:51 -06006541 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006542}
6543
6544static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
6545 const void *v)
6546{
Avi Kivity70252a12010-01-19 12:51:22 +02006547 int handled = 0;
6548 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006549
Avi Kivity70252a12010-01-19 12:51:22 +02006550 do {
6551 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006552 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006553 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
6554 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006555 break;
6556 handled += n;
6557 addr += n;
6558 len -= n;
6559 v += n;
6560 } while (len);
6561
6562 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006563}
6564
6565static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
6566{
Avi Kivity70252a12010-01-19 12:51:22 +02006567 int handled = 0;
6568 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006569
Avi Kivity70252a12010-01-19 12:51:22 +02006570 do {
6571 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006572 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006573 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
6574 addr, n, v))
6575 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006576 break;
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006577 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v);
Avi Kivity70252a12010-01-19 12:51:22 +02006578 handled += n;
6579 addr += n;
6580 len -= n;
6581 v += n;
6582 } while (len);
6583
6584 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006585}
6586
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006587static void kvm_set_segment(struct kvm_vcpu *vcpu,
6588 struct kvm_segment *var, int seg)
6589{
Jason Baronb36464772021-01-14 22:27:56 -05006590 static_call(kvm_x86_set_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006591}
6592
6593void kvm_get_segment(struct kvm_vcpu *vcpu,
6594 struct kvm_segment *var, int seg)
6595{
Jason Baronb36464772021-01-14 22:27:56 -05006596 static_call(kvm_x86_get_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006597}
6598
Paolo Bonzini54987b72014-09-02 13:23:06 +02006599gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
6600 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006601{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006602 struct kvm_mmu *mmu = vcpu->arch.mmu;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006603 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006604
6605 BUG_ON(!mmu_is_nested(vcpu));
6606
6607 /* NPT walks are always user-walks */
6608 access |= PFERR_USER_MASK;
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006609 t_gpa = mmu->gva_to_gpa(vcpu, mmu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006610
6611 return t_gpa;
6612}
6613
Avi Kivityab9ae312010-11-22 17:53:26 +02006614gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
6615 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006616{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006617 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
6618
Jason Baronb36464772021-01-14 22:27:56 -05006619 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006620 return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006621}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006622EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_read);
Gleb Natapov1871c602010-02-10 14:21:32 +02006623
Avi Kivityab9ae312010-11-22 17:53:26 +02006624 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
6625 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006626{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006627 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
6628
Jason Baronb36464772021-01-14 22:27:56 -05006629 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006630 access |= PFERR_FETCH_MASK;
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006631 return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006632}
6633
Avi Kivityab9ae312010-11-22 17:53:26 +02006634gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
6635 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006636{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006637 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
6638
Jason Baronb36464772021-01-14 22:27:56 -05006639 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006640 access |= PFERR_WRITE_MASK;
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006641 return mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006642}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006643EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_write);
Gleb Natapov1871c602010-02-10 14:21:32 +02006644
6645/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02006646gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
6647 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006648{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006649 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
6650
6651 return mmu->gva_to_gpa(vcpu, mmu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006652}
6653
6654static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6655 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006656 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006657{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006658 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006659 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006660 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006661
6662 while (bytes) {
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006663 gpa_t gpa = mmu->gva_to_gpa(vcpu, mmu, addr, access, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006664 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02006665 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006666 int ret;
6667
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006668 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006669 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006670 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
6671 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006672 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006673 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006674 goto out;
6675 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006676
Izik Eidus77c20022008-12-29 01:42:19 +02006677 bytes -= toread;
6678 data += toread;
6679 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006680 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006681out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006682 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006683}
Izik Eidus77c20022008-12-29 01:42:19 +02006684
Gleb Natapov1871c602010-02-10 14:21:32 +02006685/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03006686static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
6687 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006688 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006689{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006690 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006691 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Jason Baronb36464772021-01-14 22:27:56 -05006692 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006693 unsigned offset;
6694 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006695
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006696 /* Inline kvm_read_guest_virt_helper for speed. */
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006697 gpa_t gpa = mmu->gva_to_gpa(vcpu, mmu, addr, access|PFERR_FETCH_MASK,
6698 exception);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006699 if (unlikely(gpa == UNMAPPED_GVA))
6700 return X86EMUL_PROPAGATE_FAULT;
6701
6702 offset = addr & (PAGE_SIZE-1);
6703 if (WARN_ON(offset + bytes > PAGE_SIZE))
6704 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006705 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
6706 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006707 if (unlikely(ret < 0))
6708 return X86EMUL_IO_NEEDED;
6709
6710 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02006711}
6712
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006713int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006714 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006715 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006716{
Jason Baronb36464772021-01-14 22:27:56 -05006717 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006718
Paolo Bonzini353c0952019-01-29 18:41:16 +01006719 /*
6720 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
6721 * is returned, but our callers are not ready for that and they blindly
6722 * call kvm_inject_page_fault. Ensure that they at least do not leak
6723 * uninitialized kernel stack memory into cr2 and error code.
6724 */
6725 memset(exception, 0, sizeof(*exception));
Gleb Natapov1871c602010-02-10 14:21:32 +02006726 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006727 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006728}
Nadav Har'El064aea72011-05-25 23:04:56 +03006729EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02006730
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006731static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
6732 gva_t addr, void *val, unsigned int bytes,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006733 struct x86_exception *exception, bool system)
Gleb Natapov1871c602010-02-10 14:21:32 +02006734{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006735 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006736 u32 access = 0;
6737
Jason Baronb36464772021-01-14 22:27:56 -05006738 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006739 access |= PFERR_USER_MASK;
6740
6741 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006742}
6743
Radim Krčmář7a036a62015-10-30 16:36:24 +01006744static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
6745 unsigned long addr, void *val, unsigned int bytes)
6746{
6747 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6748 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
6749
6750 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
6751}
6752
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006753static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6754 struct kvm_vcpu *vcpu, u32 access,
6755 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02006756{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006757 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Izik Eidus77c20022008-12-29 01:42:19 +02006758 void *data = val;
6759 int r = X86EMUL_CONTINUE;
6760
6761 while (bytes) {
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006762 gpa_t gpa = mmu->gva_to_gpa(vcpu, mmu, addr, access, exception);
Izik Eidus77c20022008-12-29 01:42:19 +02006763 unsigned offset = addr & (PAGE_SIZE-1);
6764 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
6765 int ret;
6766
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006767 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006768 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006769 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02006770 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006771 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02006772 goto out;
6773 }
6774
6775 bytes -= towrite;
6776 data += towrite;
6777 addr += towrite;
6778 }
6779out:
6780 return r;
6781}
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006782
6783static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006784 unsigned int bytes, struct x86_exception *exception,
6785 bool system)
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006786{
6787 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006788 u32 access = PFERR_WRITE_MASK;
6789
Jason Baronb36464772021-01-14 22:27:56 -05006790 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006791 access |= PFERR_USER_MASK;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006792
6793 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006794 access, exception);
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006795}
6796
6797int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val,
6798 unsigned int bytes, struct x86_exception *exception)
6799{
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006800 /* kvm_write_guest_virt_system can pull in tons of pages. */
6801 vcpu->arch.l1tf_flush_l1d = true;
6802
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006803 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
6804 PFERR_WRITE_MASK, exception);
6805}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03006806EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02006807
Wanpeng Li082d06e2018-04-03 16:28:48 -07006808int handle_ud(struct kvm_vcpu *vcpu)
6809{
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006810 static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX };
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006811 int emul_type = EMULTYPE_TRAP_UD;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006812 char sig[5]; /* ud2; .ascii "kvm" */
6813 struct x86_exception e;
Wanpeng Li082d06e2018-04-03 16:28:48 -07006814
Jason Baronb36464772021-01-14 22:27:56 -05006815 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, NULL, 0)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07006816 return 1;
6817
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006818 if (force_emulation_prefix &&
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006819 kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu),
6820 sig, sizeof(sig), &e) == 0 &&
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006821 memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) {
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006822 kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig));
Sean Christophersonb4000602019-08-27 14:40:32 -07006823 emul_type = EMULTYPE_TRAP_UD_FORCED;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006824 }
6825
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006826 return kvm_emulate_instruction(vcpu, emul_type);
Wanpeng Li082d06e2018-04-03 16:28:48 -07006827}
6828EXPORT_SYMBOL_GPL(handle_ud);
6829
Tom Lendacky0f89b202016-12-14 14:59:23 -05006830static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6831 gpa_t gpa, bool write)
6832{
6833 /* For APIC access vmexit */
6834 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6835 return 1;
6836
6837 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
6838 trace_vcpu_match_mmio(gva, gpa, write, true);
6839 return 1;
6840 }
6841
6842 return 0;
6843}
6844
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006845static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6846 gpa_t *gpa, struct x86_exception *exception,
6847 bool write)
6848{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006849 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Jason Baronb36464772021-01-14 22:27:56 -05006850 u32 access = ((static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0)
Avi Kivity97d64b72012-09-12 14:52:00 +03006851 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006852
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08006853 /*
6854 * currently PKRU is only applied to ept enabled guest so
6855 * there is no pkey in EPT page table for L1 guest or EPT
6856 * shadow page table for L2 guest.
6857 */
Sean Christopherson908b7d42021-07-13 09:33:04 -07006858 if (vcpu_match_mmio_gva(vcpu, gva) && (!is_paging(vcpu) ||
6859 !permission_fault(vcpu, vcpu->arch.walk_mmu,
6860 vcpu->arch.mmio_access, 0, access))) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006861 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
6862 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08006863 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006864 return 1;
6865 }
6866
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +08006867 *gpa = mmu->gva_to_gpa(vcpu, mmu, gva, access, exception);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006868
6869 if (*gpa == UNMAPPED_GVA)
6870 return -1;
6871
Tom Lendacky0f89b202016-12-14 14:59:23 -05006872 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006873}
6874
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006875int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006876 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02006877{
6878 int ret;
6879
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006880 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006881 if (ret < 0)
6882 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006883 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006884 return 1;
6885}
6886
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006887struct read_write_emulator_ops {
6888 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
6889 int bytes);
6890 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
6891 void *val, int bytes);
6892 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6893 int bytes, void *val);
6894 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6895 void *val, int bytes);
6896 bool write;
6897};
6898
6899static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
6900{
6901 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006902 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006903 vcpu->mmio_fragments[0].gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006904 vcpu->mmio_read_completed = 0;
6905 return 1;
6906 }
6907
6908 return 0;
6909}
6910
6911static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6912 void *val, int bytes)
6913{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006914 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006915}
6916
6917static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6918 void *val, int bytes)
6919{
6920 return emulator_write_phys(vcpu, gpa, val, bytes);
6921}
6922
6923static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
6924{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006925 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006926 return vcpu_mmio_write(vcpu, gpa, bytes, val);
6927}
6928
6929static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6930 void *val, int bytes)
6931{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006932 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006933 return X86EMUL_IO_NEEDED;
6934}
6935
6936static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6937 void *val, int bytes)
6938{
Avi Kivityf78146b2012-04-18 19:22:47 +03006939 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
6940
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006941 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006942 return X86EMUL_CONTINUE;
6943}
6944
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006945static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006946 .read_write_prepare = read_prepare,
6947 .read_write_emulate = read_emulate,
6948 .read_write_mmio = vcpu_mmio_read,
6949 .read_write_exit_mmio = read_exit_mmio,
6950};
6951
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006952static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006953 .read_write_emulate = write_emulate,
6954 .read_write_mmio = write_mmio,
6955 .read_write_exit_mmio = write_exit_mmio,
6956 .write = true,
6957};
6958
Xiao Guangrong22388a32011-07-13 14:32:31 +08006959static int emulator_read_write_onepage(unsigned long addr, void *val,
6960 unsigned int bytes,
6961 struct x86_exception *exception,
6962 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006963 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006964{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006965 gpa_t gpa;
6966 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006967 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03006968 struct kvm_mmio_fragment *frag;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006969 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006970
6971 /*
6972 * If the exit was due to a NPF we may already have a GPA.
6973 * If the GPA is present, use it to avoid the GVA to GPA table walk.
6974 * Note, this cannot be used on string operations since string
6975 * operation using rep will only have the initial GPA from the NPF
6976 * occurred.
6977 */
Sean Christopherson744e6992020-02-18 15:03:09 -08006978 if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) &&
6979 (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) {
6980 gpa = ctxt->gpa_val;
Brijesh Singh618232e2017-08-17 18:36:57 +02006981 ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write);
6982 } else {
6983 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
6984 if (ret < 0)
6985 return X86EMUL_PROPAGATE_FAULT;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006986 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006987
Brijesh Singh618232e2017-08-17 18:36:57 +02006988 if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01006989 return X86EMUL_CONTINUE;
6990
Carsten Ottebbd9b642007-10-30 18:44:21 +01006991 /*
6992 * Is this MMIO handled locally?
6993 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08006994 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02006995 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006996 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006997
Avi Kivity70252a12010-01-19 12:51:22 +02006998 gpa += handled;
6999 bytes -= handled;
7000 val += handled;
7001
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007002 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
7003 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
7004 frag->gpa = gpa;
7005 frag->data = val;
7006 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03007007 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007008}
7009
Xiubo Li52eb5a62015-03-13 17:39:45 +08007010static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
7011 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08007012 void *val, unsigned int bytes,
7013 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02007014 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007015{
Avi Kivity0f65dd72011-04-20 13:37:53 +03007016 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03007017 gpa_t gpa;
7018 int rc;
7019
7020 if (ops->read_write_prepare &&
7021 ops->read_write_prepare(vcpu, val, bytes))
7022 return X86EMUL_CONTINUE;
7023
7024 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03007025
Carsten Ottebbd9b642007-10-30 18:44:21 +01007026 /* Crossing a page boundary? */
7027 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03007028 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007029
7030 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08007031 rc = emulator_read_write_onepage(addr, val, now, exception,
7032 vcpu, ops);
7033
Carsten Ottebbd9b642007-10-30 18:44:21 +01007034 if (rc != X86EMUL_CONTINUE)
7035 return rc;
7036 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02007037 if (ctxt->mode != X86EMUL_MODE_PROT64)
7038 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007039 val += now;
7040 bytes -= now;
7041 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08007042
Avi Kivityf78146b2012-04-18 19:22:47 +03007043 rc = emulator_read_write_onepage(addr, val, bytes, exception,
7044 vcpu, ops);
7045 if (rc != X86EMUL_CONTINUE)
7046 return rc;
7047
7048 if (!vcpu->mmio_nr_fragments)
7049 return rc;
7050
7051 gpa = vcpu->mmio_fragments[0].gpa;
7052
7053 vcpu->mmio_needed = 1;
7054 vcpu->mmio_cur_fragment = 0;
7055
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007056 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03007057 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
7058 vcpu->run->exit_reason = KVM_EXIT_MMIO;
7059 vcpu->run->mmio.phys_addr = gpa;
7060
7061 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08007062}
7063
7064static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
7065 unsigned long addr,
7066 void *val,
7067 unsigned int bytes,
7068 struct x86_exception *exception)
7069{
7070 return emulator_read_write(ctxt, addr, val, bytes,
7071 exception, &read_emultor);
7072}
7073
Xiubo Li52eb5a62015-03-13 17:39:45 +08007074static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08007075 unsigned long addr,
7076 const void *val,
7077 unsigned int bytes,
7078 struct x86_exception *exception)
7079{
7080 return emulator_read_write(ctxt, addr, (void *)val, bytes,
7081 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007082}
Carsten Ottebbd9b642007-10-30 18:44:21 +01007083
Avi Kivitydaea3e72010-03-15 13:59:54 +02007084#define CMPXCHG_TYPE(t, ptr, old, new) \
7085 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
7086
7087#ifdef CONFIG_X86_64
7088# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
7089#else
7090# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01007091 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02007092#endif
7093
Avi Kivity0f65dd72011-04-20 13:37:53 +03007094static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
7095 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007096 const void *old,
7097 const void *new,
7098 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03007099 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007100{
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007101 struct kvm_host_map map;
Avi Kivity0f65dd72011-04-20 13:37:53 +03007102 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02007103 u64 page_line_mask;
Avi Kivitydaea3e72010-03-15 13:59:54 +02007104 gpa_t gpa;
Avi Kivitydaea3e72010-03-15 13:59:54 +02007105 char *kaddr;
7106 bool exchanged;
7107
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007108 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02007109 if (bytes > 8 || (bytes & (bytes - 1)))
7110 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007111
Avi Kivitydaea3e72010-03-15 13:59:54 +02007112 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05007113
Avi Kivitydaea3e72010-03-15 13:59:54 +02007114 if (gpa == UNMAPPED_GVA ||
7115 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
7116 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007117
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02007118 /*
7119 * Emulate the atomic as a straight write to avoid #AC if SLD is
7120 * enabled in the host and the access splits a cache line.
7121 */
7122 if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
7123 page_line_mask = ~(cache_line_size() - 1);
7124 else
7125 page_line_mask = PAGE_MASK;
7126
7127 if (((gpa + bytes - 1) & page_line_mask) != (gpa & page_line_mask))
Avi Kivitydaea3e72010-03-15 13:59:54 +02007128 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007129
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007130 if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08007131 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02007132
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007133 kaddr = map.hva + offset_in_page(gpa);
7134
Avi Kivitydaea3e72010-03-15 13:59:54 +02007135 switch (bytes) {
7136 case 1:
7137 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
7138 break;
7139 case 2:
7140 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
7141 break;
7142 case 4:
7143 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
7144 break;
7145 case 8:
7146 exchanged = CMPXCHG64(kaddr, old, new);
7147 break;
7148 default:
7149 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007150 }
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007151
7152 kvm_vcpu_unmap(vcpu, &map, true);
Avi Kivitydaea3e72010-03-15 13:59:54 +02007153
7154 if (!exchanged)
7155 return X86EMUL_CMPXCHG_FAILED;
7156
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08007157 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03007158
7159 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02007160
Marcelo Tosatti3200f402008-03-29 20:17:59 -03007161emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02007162 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007163
Avi Kivity0f65dd72011-04-20 13:37:53 +03007164 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007165}
7166
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007167static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
7168{
Wanpeng Licbfc6c92017-05-19 02:46:56 -07007169 int r = 0, i;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007170
Wanpeng Licbfc6c92017-05-19 02:46:56 -07007171 for (i = 0; i < vcpu->arch.pio.count; i++) {
7172 if (vcpu->arch.pio.in)
7173 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
7174 vcpu->arch.pio.size, pd);
7175 else
7176 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
7177 vcpu->arch.pio.port, vcpu->arch.pio.size,
7178 pd);
7179 if (r)
7180 break;
7181 pd += vcpu->arch.pio.size;
7182 }
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007183 return r;
7184}
7185
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007186static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007187 unsigned short port,
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007188 unsigned int count, bool in)
7189{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007190 vcpu->arch.pio.port = port;
7191 vcpu->arch.pio.in = in;
7192 vcpu->arch.pio.count = count;
7193 vcpu->arch.pio.size = size;
7194
Paolo Bonzini0d33b1b2021-10-13 12:29:42 -04007195 if (!kernel_pio(vcpu, vcpu->arch.pio_data))
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007196 return 1;
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007197
7198 vcpu->run->exit_reason = KVM_EXIT_IO;
7199 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
7200 vcpu->run->io.size = size;
7201 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
7202 vcpu->run->io.count = count;
7203 vcpu->run->io.port = port;
7204
7205 return 0;
7206}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007207
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007208static int __emulator_pio_in(struct kvm_vcpu *vcpu, int size,
7209 unsigned short port, unsigned int count)
7210{
7211 WARN_ON(vcpu->arch.pio.count);
7212 memset(vcpu->arch.pio_data, 0, size * count);
7213 return emulator_pio_in_out(vcpu, size, port, count, true);
7214}
7215
Paolo Bonzini6b5efc92021-10-12 12:35:20 -04007216static void complete_emulator_pio_in(struct kvm_vcpu *vcpu, void *val)
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007217{
Paolo Bonzini6b5efc92021-10-12 12:35:20 -04007218 int size = vcpu->arch.pio.size;
7219 unsigned count = vcpu->arch.pio.count;
7220 memcpy(val, vcpu->arch.pio_data, size * count);
7221 trace_kvm_pio(KVM_PIO_IN, vcpu->arch.pio.port, size, count, vcpu->arch.pio_data);
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007222 vcpu->arch.pio.count = 0;
7223}
7224
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007225static int emulator_pio_in(struct kvm_vcpu *vcpu, int size,
7226 unsigned short port, void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007227{
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007228 if (vcpu->arch.pio.count) {
Sean Christophersond07898e2021-10-25 13:13:10 -07007229 /*
7230 * Complete a previous iteration that required userspace I/O.
7231 * Note, @count isn't guaranteed to match pio.count as userspace
7232 * can modify ECX before rerunning the vCPU. Ignore any such
7233 * shenanigans as KVM doesn't support modifying the rep count,
7234 * and the emulator ensures @count doesn't overflow the buffer.
7235 */
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007236 } else {
7237 int r = __emulator_pio_in(vcpu, size, port, count);
7238 if (!r)
7239 return r;
Avi Kivityca1d4a92011-04-20 13:37:53 +03007240
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007241 /* Results already available, fall through. */
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007242 }
7243
Paolo Bonzini6b5efc92021-10-12 12:35:20 -04007244 complete_emulator_pio_in(vcpu, val);
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007245 return 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007246}
7247
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007248static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
7249 int size, unsigned short port, void *val,
7250 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007251{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007252 return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count);
Avi Kivityca1d4a92011-04-20 13:37:53 +03007253
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007254}
7255
7256static int emulator_pio_out(struct kvm_vcpu *vcpu, int size,
7257 unsigned short port, const void *val,
7258 unsigned int count)
7259{
Paolo Bonzini0d33b1b2021-10-13 12:29:42 -04007260 int ret;
7261
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007262 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02007263 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007264 ret = emulator_pio_in_out(vcpu, size, port, count, false);
Paolo Bonzini0d33b1b2021-10-13 12:29:42 -04007265 if (ret)
7266 vcpu->arch.pio.count = 0;
7267
7268 return ret;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007269}
7270
Carsten Ottebbd9b642007-10-30 18:44:21 +01007271static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
7272 int size, unsigned short port,
7273 const void *val, unsigned int count)
7274{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007275 return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007276}
7277
7278static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
7279{
Jason Baronb36464772021-01-14 22:27:56 -05007280 return static_call(kvm_x86_get_segment_base)(vcpu, seg);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007281}
7282
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007283static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007284{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007285 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007286}
7287
Jiang Biaoae6a2372016-11-07 08:54:51 +08007288static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007289{
7290 if (!need_emulate_wbinvd(vcpu))
7291 return X86EMUL_CONTINUE;
7292
Jason Baronb36464772021-01-14 22:27:56 -05007293 if (static_call(kvm_x86_has_wbinvd_exit)()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01007294 int cpu = get_cpu();
7295
7296 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Wanpeng Lic2162e12021-03-12 10:45:51 +08007297 on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007298 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01007299 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007300 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01007301 } else
7302 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007303 return X86EMUL_CONTINUE;
7304}
Joel Schopp5cb56052015-03-02 13:43:31 -06007305
7306int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
7307{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007308 kvm_emulate_wbinvd_noskip(vcpu);
7309 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06007310}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007311EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
7312
Joel Schopp5cb56052015-03-02 13:43:31 -06007313
7314
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007315static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
7316{
Joel Schopp5cb56052015-03-02 13:43:31 -06007317 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007318}
7319
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007320static void emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
7321 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007322{
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007323 kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007324}
7325
Xiubo Li52eb5a62015-03-13 17:39:45 +08007326static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
7327 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007328{
Gleb Natapov338dbc92010-04-28 19:15:32 +03007329
Paolo Bonzini996ff542020-12-14 07:49:54 -05007330 return kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007331}
7332
Gleb Natapov52a46612010-03-18 15:20:03 +02007333static u64 mk_cr_64(u64 curr_cr, u32 new_val)
7334{
7335 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
7336}
7337
Avi Kivity717746e2011-04-20 13:37:53 +03007338static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02007339{
Avi Kivity717746e2011-04-20 13:37:53 +03007340 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02007341 unsigned long value;
7342
7343 switch (cr) {
7344 case 0:
7345 value = kvm_read_cr0(vcpu);
7346 break;
7347 case 2:
7348 value = vcpu->arch.cr2;
7349 break;
7350 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02007351 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02007352 break;
7353 case 4:
7354 value = kvm_read_cr4(vcpu);
7355 break;
7356 case 8:
7357 value = kvm_get_cr8(vcpu);
7358 break;
7359 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007360 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02007361 return 0;
7362 }
7363
7364 return value;
7365}
7366
Avi Kivity717746e2011-04-20 13:37:53 +03007367static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02007368{
Avi Kivity717746e2011-04-20 13:37:53 +03007369 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03007370 int res = 0;
7371
Gleb Natapov52a46612010-03-18 15:20:03 +02007372 switch (cr) {
7373 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03007374 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007375 break;
7376 case 2:
7377 vcpu->arch.cr2 = val;
7378 break;
7379 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03007380 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007381 break;
7382 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03007383 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007384 break;
7385 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007386 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007387 break;
7388 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007389 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03007390 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02007391 }
Gleb Natapov0f122442010-04-28 19:15:31 +03007392
7393 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02007394}
7395
Avi Kivity717746e2011-04-20 13:37:53 +03007396static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02007397{
Jason Baronb36464772021-01-14 22:27:56 -05007398 return static_call(kvm_x86_get_cpl)(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02007399}
7400
Avi Kivity4bff1e862011-04-20 13:37:53 +03007401static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007402{
Jason Baronb36464772021-01-14 22:27:56 -05007403 static_call(kvm_x86_get_gdt)(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007404}
7405
Avi Kivity4bff1e862011-04-20 13:37:53 +03007406static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007407{
Jason Baronb36464772021-01-14 22:27:56 -05007408 static_call(kvm_x86_get_idt)(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007409}
7410
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007411static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7412{
Jason Baronb36464772021-01-14 22:27:56 -05007413 static_call(kvm_x86_set_gdt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007414}
7415
7416static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7417{
Jason Baronb36464772021-01-14 22:27:56 -05007418 static_call(kvm_x86_set_idt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007419}
7420
Avi Kivity4bff1e862011-04-20 13:37:53 +03007421static unsigned long emulator_get_cached_segment_base(
7422 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03007423{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007424 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03007425}
7426
Avi Kivity1aa36612011-04-27 13:20:30 +03007427static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
7428 struct desc_struct *desc, u32 *base3,
7429 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007430{
7431 struct kvm_segment var;
7432
Avi Kivity4bff1e862011-04-20 13:37:53 +03007433 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03007434 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007435
Gleb Natapov378a8b02013-01-21 15:36:48 +02007436 if (var.unusable) {
7437 memset(desc, 0, sizeof(*desc));
Radim Krčmářf0367ee2017-05-18 19:37:30 +02007438 if (base3)
7439 *base3 = 0;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007440 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02007441 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007442
7443 if (var.g)
7444 var.limit >>= 12;
7445 set_desc_limit(desc, var.limit);
7446 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02007447#ifdef CONFIG_X86_64
7448 if (base3)
7449 *base3 = var.base >> 32;
7450#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007451 desc->type = var.type;
7452 desc->s = var.s;
7453 desc->dpl = var.dpl;
7454 desc->p = var.present;
7455 desc->avl = var.avl;
7456 desc->l = var.l;
7457 desc->d = var.db;
7458 desc->g = var.g;
7459
7460 return true;
7461}
7462
Avi Kivity1aa36612011-04-27 13:20:30 +03007463static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
7464 struct desc_struct *desc, u32 base3,
7465 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007466{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007467 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007468 struct kvm_segment var;
7469
Avi Kivity1aa36612011-04-27 13:20:30 +03007470 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007471 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02007472#ifdef CONFIG_X86_64
7473 var.base |= ((u64)base3) << 32;
7474#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007475 var.limit = get_desc_limit(desc);
7476 if (desc->g)
7477 var.limit = (var.limit << 12) | 0xfff;
7478 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007479 var.dpl = desc->dpl;
7480 var.db = desc->d;
7481 var.s = desc->s;
7482 var.l = desc->l;
7483 var.g = desc->g;
7484 var.avl = desc->avl;
7485 var.present = desc->p;
7486 var.unusable = !var.present;
7487 var.padding = 0;
7488
7489 kvm_set_segment(vcpu, &var, seg);
7490 return;
7491}
7492
Avi Kivity717746e2011-04-20 13:37:53 +03007493static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
7494 u32 msr_index, u64 *pdata)
7495{
Alexander Graf1ae09952020-09-25 16:34:16 +02007496 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7497 int r;
7498
7499 r = kvm_get_msr(vcpu, msr_index, pdata);
7500
Hou Wenlongd2f7d492021-11-02 17:15:31 +08007501 if (r && kvm_msr_user_space(vcpu, msr_index, KVM_EXIT_X86_RDMSR, 0,
7502 complete_emulated_rdmsr, r)) {
Alexander Graf1ae09952020-09-25 16:34:16 +02007503 /* Bounce to user space */
7504 return X86EMUL_IO_NEEDED;
7505 }
7506
7507 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007508}
7509
7510static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
7511 u32 msr_index, u64 data)
7512{
Alexander Graf1ae09952020-09-25 16:34:16 +02007513 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7514 int r;
7515
7516 r = kvm_set_msr(vcpu, msr_index, data);
7517
Hou Wenlongd2f7d492021-11-02 17:15:31 +08007518 if (r && kvm_msr_user_space(vcpu, msr_index, KVM_EXIT_X86_WRMSR, data,
7519 complete_emulated_msr_access, r)) {
Alexander Graf1ae09952020-09-25 16:34:16 +02007520 /* Bounce to user space */
7521 return X86EMUL_IO_NEEDED;
7522 }
7523
7524 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007525}
7526
Paolo Bonzini64d60672015-05-07 11:36:11 +02007527static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
7528{
7529 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7530
7531 return vcpu->arch.smbase;
7532}
7533
7534static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
7535{
7536 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7537
7538 vcpu->arch.smbase = smbase;
7539}
7540
Nadav Amit67f4d422014-06-02 18:34:09 +03007541static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
7542 u32 pmc)
7543{
Jim Mattsone6cd31f2021-11-05 13:20:58 -07007544 if (kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc))
7545 return 0;
7546 return -EINVAL;
Nadav Amit67f4d422014-06-02 18:34:09 +03007547}
7548
Avi Kivity222d21a2011-11-10 14:57:30 +02007549static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
7550 u32 pmc, u64 *pdata)
7551{
Wei Huangc6702c92015-06-19 13:44:45 +02007552 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02007553}
7554
Avi Kivity6c3287f2011-04-20 15:43:05 +03007555static void emulator_halt(struct x86_emulate_ctxt *ctxt)
7556{
7557 emul_to_vcpu(ctxt)->arch.halt_request = 1;
7558}
7559
Avi Kivity29535382011-04-20 13:37:53 +03007560static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007561 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007562 enum x86_intercept_stage stage)
7563{
Jason Baronb36464772021-01-14 22:27:56 -05007564 return static_call(kvm_x86_check_intercept)(emul_to_vcpu(ctxt), info, stage,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007565 &ctxt->exception);
Avi Kivityc4f035c2011-04-04 12:39:22 +02007566}
7567
Yu Zhange911eb32017-08-24 20:27:52 +08007568static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Sean Christophersonf91af512020-03-04 17:34:37 -08007569 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx,
7570 bool exact_only)
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007571{
Sean Christophersonf91af512020-03-04 17:34:37 -08007572 return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007573}
7574
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007575static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt)
7576{
7577 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM);
7578}
7579
7580static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt)
7581{
7582 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE);
7583}
7584
7585static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt)
7586{
7587 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR);
7588}
7589
Avi Kivitydd856ef2012-08-27 23:46:17 +03007590static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
7591{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007592 return kvm_register_read_raw(emul_to_vcpu(ctxt), reg);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007593}
7594
7595static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
7596{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007597 kvm_register_write_raw(emul_to_vcpu(ctxt), reg, val);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007598}
7599
Nadav Amit801806d2015-01-26 09:32:23 +02007600static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
7601{
Jason Baronb36464772021-01-14 22:27:56 -05007602 static_call(kvm_x86_set_nmi_mask)(emul_to_vcpu(ctxt), masked);
Nadav Amit801806d2015-01-26 09:32:23 +02007603}
7604
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007605static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt)
7606{
7607 return emul_to_vcpu(ctxt)->arch.hflags;
7608}
7609
Sean Christophersonedce4652021-06-09 11:56:13 -07007610static void emulator_exiting_smm(struct x86_emulate_ctxt *ctxt)
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007611{
Sean Christopherson78fcb2c2021-06-09 11:56:11 -07007612 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7613
Sean Christophersondc872752021-06-09 11:56:15 -07007614 kvm_smm_changed(vcpu, false);
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007615}
7616
Sean Christophersonecc513e2021-06-09 11:56:19 -07007617static int emulator_leave_smm(struct x86_emulate_ctxt *ctxt,
Sean Christophersoned193212019-04-02 08:03:09 -07007618 const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007619{
Sean Christophersonecc513e2021-06-09 11:56:19 -07007620 return static_call(kvm_x86_leave_smm)(emul_to_vcpu(ctxt), smstate);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007621}
7622
Sean Christopherson25b17222021-06-09 11:56:12 -07007623static void emulator_triple_fault(struct x86_emulate_ctxt *ctxt)
7624{
7625 kvm_make_request(KVM_REQ_TRIPLE_FAULT, emul_to_vcpu(ctxt));
7626}
7627
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007628static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr)
7629{
7630 return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr);
7631}
7632
Mathias Krause0225fb52012-08-30 01:30:16 +02007633static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03007634 .read_gpr = emulator_read_gpr,
7635 .write_gpr = emulator_write_gpr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02007636 .read_std = emulator_read_std,
7637 .write_std = emulator_write_std,
Radim Krčmář7a036a62015-10-30 16:36:24 +01007638 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02007639 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007640 .read_emulated = emulator_read_emulated,
7641 .write_emulated = emulator_write_emulated,
7642 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007643 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007644 .pio_in_emulated = emulator_pio_in_emulated,
7645 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03007646 .get_segment = emulator_get_segment,
7647 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03007648 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007649 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007650 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007651 .set_gdt = emulator_set_gdt,
7652 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02007653 .get_cr = emulator_get_cr,
7654 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02007655 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03007656 .get_dr = emulator_get_dr,
7657 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02007658 .get_smbase = emulator_get_smbase,
7659 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03007660 .set_msr = emulator_set_msr,
7661 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03007662 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02007663 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03007664 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007665 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03007666 .fix_hypercall = emulator_fix_hypercall,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007667 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007668 .get_cpuid = emulator_get_cpuid,
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007669 .guest_has_long_mode = emulator_guest_has_long_mode,
7670 .guest_has_movbe = emulator_guest_has_movbe,
7671 .guest_has_fxsr = emulator_guest_has_fxsr,
Nadav Amit801806d2015-01-26 09:32:23 +02007672 .set_nmi_mask = emulator_set_nmi_mask,
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007673 .get_hflags = emulator_get_hflags,
Sean Christophersonedce4652021-06-09 11:56:13 -07007674 .exiting_smm = emulator_exiting_smm,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007675 .leave_smm = emulator_leave_smm,
Sean Christopherson25b17222021-06-09 11:56:12 -07007676 .triple_fault = emulator_triple_fault,
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007677 .set_xcr = emulator_set_xcr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007678};
7679
Gleb Natapov95cb2292010-04-28 19:15:43 +03007680static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
7681{
Jason Baronb36464772021-01-14 22:27:56 -05007682 u32 int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03007683 /*
7684 * an sti; sti; sequence only disable interrupts for the first
7685 * instruction. So, if the last instruction, be it emulated or
7686 * not, left the system with the INT_STI flag enabled, it
7687 * means that the last instruction is an sti. We should not
7688 * leave the flag on in this case. The same goes for mov ss
7689 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02007690 if (int_shadow & mask)
7691 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007692 if (unlikely(int_shadow || mask)) {
Jason Baronb36464772021-01-14 22:27:56 -05007693 static_call(kvm_x86_set_interrupt_shadow)(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007694 if (!mask)
7695 kvm_make_request(KVM_REQ_EVENT, vcpu);
7696 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03007697}
7698
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007699static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03007700{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007701 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02007702 if (ctxt->exception.vector == PF_VECTOR)
Sean Christopherson53b3d8e2020-03-20 14:28:01 -07007703 return kvm_inject_emulated_page_fault(vcpu, &ctxt->exception);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007704
7705 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02007706 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
7707 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03007708 else
Avi Kivityda9cb572010-11-22 17:53:21 +02007709 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007710 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03007711}
7712
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007713static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu)
7714{
7715 struct x86_emulate_ctxt *ctxt;
7716
7717 ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT);
7718 if (!ctxt) {
7719 pr_err("kvm: failed to allocate vcpu's emulator\n");
7720 return NULL;
7721 }
7722
7723 ctxt->vcpu = vcpu;
7724 ctxt->ops = &emulate_ops;
7725 vcpu->arch.emulate_ctxt = ctxt;
7726
7727 return ctxt;
7728}
7729
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007730static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
7731{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007732 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007733 int cs_db, cs_l;
7734
Jason Baronb36464772021-01-14 22:27:56 -05007735 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007736
Sean Christopherson744e6992020-02-18 15:03:09 -08007737 ctxt->gpa_available = false;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007738 ctxt->eflags = kvm_get_rflags(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007739 ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0;
7740
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007741 ctxt->eip = kvm_rip_read(vcpu);
7742 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
7743 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03007744 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007745 cs_db ? X86EMUL_MODE_PROT32 :
7746 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02007747 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007748 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
7749 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007750
Wanpeng Lida6393c2021-05-27 17:01:36 -07007751 ctxt->interruptibility = 0;
7752 ctxt->have_exception = false;
7753 ctxt->exception.vector = -1;
7754 ctxt->perm_ok = false;
7755
Avi Kivitydd856ef2012-08-27 23:46:17 +03007756 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007757 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007758}
7759
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007760void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02007761{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007762 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02007763 int ret;
7764
7765 init_emulate_ctxt(vcpu);
7766
Avi Kivity9dac77f2011-06-01 15:34:25 +03007767 ctxt->op_bytes = 2;
7768 ctxt->ad_bytes = 2;
7769 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007770 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02007771
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007772 if (ret != X86EMUL_CONTINUE) {
7773 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7774 } else {
7775 ctxt->eip = ctxt->_eip;
7776 kvm_rip_write(vcpu, ctxt->eip);
7777 kvm_set_rflags(vcpu, ctxt->eflags);
7778 }
Mohammed Gamal63995652010-09-19 14:34:06 +02007779}
7780EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
7781
David Edmondsone615e352021-09-20 11:37:36 +01007782static void prepare_emulation_failure_exit(struct kvm_vcpu *vcpu, u64 *data,
7783 u8 ndata, u8 *insn_bytes, u8 insn_size)
Aaron Lewis19238e72021-05-10 07:48:33 -07007784{
Aaron Lewis19238e72021-05-10 07:48:33 -07007785 struct kvm_run *run = vcpu->run;
David Edmondsone615e352021-09-20 11:37:36 +01007786 u64 info[5];
7787 u8 info_start;
7788
7789 /*
7790 * Zero the whole array used to retrieve the exit info, as casting to
7791 * u32 for select entries will leave some chunks uninitialized.
7792 */
7793 memset(&info, 0, sizeof(info));
7794
7795 static_call(kvm_x86_get_exit_info)(vcpu, (u32 *)&info[0], &info[1],
7796 &info[2], (u32 *)&info[3],
7797 (u32 *)&info[4]);
Aaron Lewis19238e72021-05-10 07:48:33 -07007798
7799 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7800 run->emulation_failure.suberror = KVM_INTERNAL_ERROR_EMULATION;
David Edmondsone615e352021-09-20 11:37:36 +01007801
7802 /*
7803 * There's currently space for 13 entries, but 5 are used for the exit
7804 * reason and info. Restrict to 4 to reduce the maintenance burden
7805 * when expanding kvm_run.emulation_failure in the future.
7806 */
7807 if (WARN_ON_ONCE(ndata > 4))
7808 ndata = 4;
7809
7810 /* Always include the flags as a 'data' entry. */
7811 info_start = 1;
Aaron Lewis19238e72021-05-10 07:48:33 -07007812 run->emulation_failure.flags = 0;
7813
7814 if (insn_size) {
David Edmondsone615e352021-09-20 11:37:36 +01007815 BUILD_BUG_ON((sizeof(run->emulation_failure.insn_size) +
7816 sizeof(run->emulation_failure.insn_bytes) != 16));
7817 info_start += 2;
Aaron Lewis19238e72021-05-10 07:48:33 -07007818 run->emulation_failure.flags |=
7819 KVM_INTERNAL_ERROR_EMULATION_FLAG_INSTRUCTION_BYTES;
7820 run->emulation_failure.insn_size = insn_size;
7821 memset(run->emulation_failure.insn_bytes, 0x90,
7822 sizeof(run->emulation_failure.insn_bytes));
David Edmondsone615e352021-09-20 11:37:36 +01007823 memcpy(run->emulation_failure.insn_bytes, insn_bytes, insn_size);
Aaron Lewis19238e72021-05-10 07:48:33 -07007824 }
David Edmondsone615e352021-09-20 11:37:36 +01007825
7826 memcpy(&run->internal.data[info_start], info, sizeof(info));
7827 memcpy(&run->internal.data[info_start + ARRAY_SIZE(info)], data,
7828 ndata * sizeof(data[0]));
7829
7830 run->emulation_failure.ndata = info_start + ARRAY_SIZE(info) + ndata;
Aaron Lewis19238e72021-05-10 07:48:33 -07007831}
7832
David Edmondsone615e352021-09-20 11:37:36 +01007833static void prepare_emulation_ctxt_failure_exit(struct kvm_vcpu *vcpu)
7834{
7835 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7836
7837 prepare_emulation_failure_exit(vcpu, NULL, 0, ctxt->fetch.data,
7838 ctxt->fetch.end - ctxt->fetch.data);
7839}
7840
7841void __kvm_prepare_emulation_failure_exit(struct kvm_vcpu *vcpu, u64 *data,
7842 u8 ndata)
7843{
7844 prepare_emulation_failure_exit(vcpu, data, ndata, NULL, 0);
7845}
7846EXPORT_SYMBOL_GPL(__kvm_prepare_emulation_failure_exit);
7847
7848void kvm_prepare_emulation_failure_exit(struct kvm_vcpu *vcpu)
7849{
7850 __kvm_prepare_emulation_failure_exit(vcpu, NULL, 0);
7851}
7852EXPORT_SYMBOL_GPL(kvm_prepare_emulation_failure_exit);
7853
Liran Alone2366172018-03-12 13:12:49 +02007854static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007855{
Aaron Lewis19238e72021-05-10 07:48:33 -07007856 struct kvm *kvm = vcpu->kvm;
7857
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007858 ++vcpu->stat.insn_emulation_fail;
7859 trace_kvm_emulate_insn_failed(vcpu);
Liran Alone2366172018-03-12 13:12:49 +02007860
Sean Christopherson42cbf062019-08-27 14:40:31 -07007861 if (emulation_type & EMULTYPE_VMWARE_GP) {
7862 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007863 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007864 }
Liran Alone2366172018-03-12 13:12:49 +02007865
Aaron Lewis19238e72021-05-10 07:48:33 -07007866 if (kvm->arch.exit_on_emulation_error ||
7867 (emulation_type & EMULTYPE_SKIP)) {
David Edmondsone615e352021-09-20 11:37:36 +01007868 prepare_emulation_ctxt_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007869 return 0;
Sean Christopherson738fece2019-08-27 14:40:34 -07007870 }
7871
Sean Christopherson22da61c2019-08-27 14:40:28 -07007872 kvm_queue_exception(vcpu, UD_VECTOR);
7873
Jason Baronb36464772021-01-14 22:27:56 -05007874 if (!is_guest_mode(vcpu) && static_call(kvm_x86_get_cpl)(vcpu) == 0) {
David Edmondsone615e352021-09-20 11:37:36 +01007875 prepare_emulation_ctxt_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007876 return 0;
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007877 }
Liran Alone2366172018-03-12 13:12:49 +02007878
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007879 return 1;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007880}
7881
Sean Christopherson736c2912019-12-06 15:57:14 -08007882static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007883 bool write_fault_to_shadow_pgtable,
7884 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03007885{
Sean Christopherson736c2912019-12-06 15:57:14 -08007886 gpa_t gpa = cr2_or_gpa;
Dan Williamsba049e92016-01-15 16:56:11 -08007887 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007888
Sean Christopherson92daa482020-02-18 15:03:08 -08007889 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Gleb Natapov991eebf2013-04-11 12:10:51 +03007890 return false;
7891
Sean Christopherson92daa482020-02-18 15:03:08 -08007892 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7893 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007894 return false;
7895
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007896 if (!vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007897 /*
7898 * Write permission should be allowed since only
7899 * write access need to be emulated.
7900 */
Sean Christopherson736c2912019-12-06 15:57:14 -08007901 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03007902
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007903 /*
7904 * If the mapping is invalid in guest, let cpu retry
7905 * it to generate fault.
7906 */
7907 if (gpa == UNMAPPED_GVA)
7908 return true;
7909 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007910
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007911 /*
7912 * Do not retry the unhandleable instruction if it faults on the
7913 * readonly host memory, otherwise it will goto a infinite loop:
7914 * retry instruction -> write #PF -> emulation fail -> retry
7915 * instruction -> ...
7916 */
7917 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007918
7919 /*
7920 * If the instruction failed on the error pfn, it can not be fixed,
7921 * report the error to userspace.
7922 */
7923 if (is_error_noslot_pfn(pfn))
7924 return false;
7925
7926 kvm_release_pfn_clean(pfn);
7927
7928 /* The instructions are well-emulated on direct mmu. */
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007929 if (vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007930 unsigned int indirect_shadow_pages;
7931
Ben Gardon531810c2021-02-02 10:57:24 -08007932 write_lock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007933 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
Ben Gardon531810c2021-02-02 10:57:24 -08007934 write_unlock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007935
7936 if (indirect_shadow_pages)
7937 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
7938
Gleb Natapova6f177e2010-07-08 12:41:12 +03007939 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007940 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007941
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007942 /*
7943 * if emulation was due to access to shadowed page table
7944 * and it failed try to unshadow page and re-enter the
7945 * guest to let CPU execute the instruction.
7946 */
7947 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007948
7949 /*
7950 * If the access faults on its page table, it can not
7951 * be fixed by unprotecting shadow page and it should
7952 * be reported to userspace.
7953 */
7954 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007955}
7956
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007957static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
Sean Christopherson736c2912019-12-06 15:57:14 -08007958 gpa_t cr2_or_gpa, int emulation_type)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007959{
7960 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christopherson736c2912019-12-06 15:57:14 -08007961 unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007962
7963 last_retry_eip = vcpu->arch.last_retry_eip;
7964 last_retry_addr = vcpu->arch.last_retry_addr;
7965
7966 /*
7967 * If the emulation is caused by #PF and it is non-page_table
7968 * writing instruction, it means the VM-EXIT is caused by shadow
7969 * page protected, we can zap the shadow page and retry this
7970 * instruction directly.
7971 *
7972 * Note: if the guest uses a non-page-table modifying instruction
7973 * on the PDE that points to the instruction, then we will unmap
7974 * the instruction and go to an infinite loop. So, we cache the
7975 * last retried eip and the last fault address, if we meet the eip
7976 * and the address again, we can break out of the potential infinite
7977 * loop.
7978 */
7979 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
7980
Sean Christopherson92daa482020-02-18 15:03:08 -08007981 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007982 return false;
7983
Sean Christopherson92daa482020-02-18 15:03:08 -08007984 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7985 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007986 return false;
7987
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007988 if (x86_page_table_writing_insn(ctxt))
7989 return false;
7990
Sean Christopherson736c2912019-12-06 15:57:14 -08007991 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007992 return false;
7993
7994 vcpu->arch.last_retry_eip = ctxt->eip;
Sean Christopherson736c2912019-12-06 15:57:14 -08007995 vcpu->arch.last_retry_addr = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007996
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007997 if (!vcpu->arch.mmu->direct_map)
Sean Christopherson736c2912019-12-06 15:57:14 -08007998 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007999
Xiao Guangrong22368022013-01-13 23:44:12 +08008000 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008001
8002 return true;
8003}
8004
Gleb Natapov716d51a2012-09-03 15:24:26 +03008005static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
8006static int complete_emulated_pio(struct kvm_vcpu *vcpu);
8007
Sean Christophersondc872752021-06-09 11:56:15 -07008008static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm)
Paolo Bonzinia5845392015-04-01 18:18:53 +02008009{
Sean Christopherson1270e642021-06-09 11:56:17 -07008010 trace_kvm_smm_transition(vcpu->vcpu_id, vcpu->arch.smbase, entering_smm);
Sean Christopherson0d7ee6f2021-06-09 11:56:16 -07008011
Sean Christophersondc872752021-06-09 11:56:15 -07008012 if (entering_smm) {
8013 vcpu->arch.hflags |= HF_SMM_MASK;
8014 } else {
8015 vcpu->arch.hflags &= ~(HF_SMM_MASK | HF_SMM_INSIDE_NMI_MASK);
8016
Paolo Bonzinic43203c2016-06-01 22:26:00 +02008017 /* Process a latched INIT or SMI, if any. */
8018 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitsky37687c42021-09-13 17:09:50 +03008019
8020 /*
8021 * Even if KVM_SET_SREGS2 loaded PDPTRs out of band,
8022 * on SMM exit we still need to reload them from
8023 * guest memory
8024 */
8025 vcpu->arch.pdptrs_from_userspace = false;
Paolo Bonzini64d60672015-05-07 11:36:11 +02008026 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02008027
8028 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02008029}
8030
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008031static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
8032 unsigned long *db)
8033{
8034 u32 dr6 = 0;
8035 int i;
8036 u32 enable, rwlen;
8037
8038 enable = dr7;
8039 rwlen = dr7 >> 16;
8040 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
8041 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
8042 dr6 |= (1 << i);
8043 return dr6;
8044}
8045
Sean Christopherson120c2c42019-08-27 14:40:29 -07008046static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02008047{
8048 struct kvm_run *kvm_run = vcpu->run;
8049
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02008050 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08008051 kvm_run->debug.arch.dr6 = DR6_BS | DR6_ACTIVE_LOW;
Peter Xud5d260c2020-05-05 16:49:59 -04008052 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02008053 kvm_run->debug.arch.exception = DB_VECTOR;
8054 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008055 return 0;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02008056 }
Sean Christopherson120c2c42019-08-27 14:40:29 -07008057 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008058 return 1;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02008059}
8060
Kyle Huey6affcbe2016-11-29 12:40:40 -08008061int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
8062{
Jason Baronb36464772021-01-14 22:27:56 -05008063 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02008064 int r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08008065
Jason Baronb36464772021-01-14 22:27:56 -05008066 r = static_call(kvm_x86_skip_emulated_instruction)(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008067 if (unlikely(!r))
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02008068 return 0;
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02008069
Eric Hankland9cd803d2021-11-30 15:42:20 +08008070 kvm_pmu_trigger_event(vcpu, PERF_COUNT_HW_INSTRUCTIONS);
8071
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02008072 /*
8073 * rflags is the old, "raw" value of the flags. The new value has
8074 * not been saved yet.
8075 *
8076 * This is correct even for TF set by the guest, because "the
8077 * processor will not generate this exception after the instruction
8078 * that sets the TF flag".
8079 */
8080 if (unlikely(rflags & X86_EFLAGS_TF))
Sean Christopherson120c2c42019-08-27 14:40:29 -07008081 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008082 return r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08008083}
8084EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
8085
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008086static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
8087{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008088 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
8089 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02008090 struct kvm_run *kvm_run = vcpu->run;
8091 unsigned long eip = kvm_get_linear_rip(vcpu);
8092 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008093 vcpu->arch.guest_debug_dr7,
8094 vcpu->arch.eff_db);
8095
8096 if (dr6 != 0) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08008097 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Nadav Amit82b32772014-11-02 11:54:45 +02008098 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008099 kvm_run->debug.arch.exception = DB_VECTOR;
8100 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008101 *r = 0;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008102 return true;
8103 }
8104 }
8105
Nadav Amit4161a562014-07-17 01:19:31 +03008106 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
8107 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02008108 unsigned long eip = kvm_get_linear_rip(vcpu);
8109 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008110 vcpu->arch.dr7,
8111 vcpu->arch.db);
8112
8113 if (dr6 != 0) {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04008114 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008115 *r = 1;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008116 return true;
8117 }
8118 }
8119
8120 return false;
8121}
8122
Liran Alon04789b62018-03-12 13:12:50 +02008123static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt)
8124{
Arbel Moshe2d7921c2018-03-12 13:12:53 +02008125 switch (ctxt->opcode_len) {
8126 case 1:
8127 switch (ctxt->b) {
8128 case 0xe4: /* IN */
8129 case 0xe5:
8130 case 0xec:
8131 case 0xed:
8132 case 0xe6: /* OUT */
8133 case 0xe7:
8134 case 0xee:
8135 case 0xef:
8136 case 0x6c: /* INS */
8137 case 0x6d:
8138 case 0x6e: /* OUTS */
8139 case 0x6f:
8140 return true;
8141 }
8142 break;
8143 case 2:
8144 switch (ctxt->b) {
8145 case 0x33: /* RDPMC */
8146 return true;
8147 }
8148 break;
Liran Alon04789b62018-03-12 13:12:50 +02008149 }
8150
8151 return false;
8152}
8153
Wei Huang4aa26912021-01-26 03:18:28 -05008154/*
8155 * Decode to be emulated instruction. Return EMULATION_OK if success.
8156 */
8157int x86_decode_emulated_instruction(struct kvm_vcpu *vcpu, int emulation_type,
8158 void *insn, int insn_len)
8159{
8160 int r = EMULATION_OK;
8161 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
8162
8163 init_emulate_ctxt(vcpu);
8164
8165 /*
8166 * We will reenter on the same instruction since we do not set
8167 * complete_userspace_io. This does not handle watchpoints yet,
8168 * those would be handled in the emulate_ops.
8169 */
8170 if (!(emulation_type & EMULTYPE_SKIP) &&
8171 kvm_vcpu_check_breakpoint(vcpu, &r))
8172 return r;
8173
Wanpeng Lib35491e2021-05-27 17:01:37 -07008174 r = x86_decode_insn(ctxt, insn, insn_len, emulation_type);
Wei Huang4aa26912021-01-26 03:18:28 -05008175
8176 trace_kvm_emulate_insn_start(vcpu);
8177 ++vcpu->stat.insn_emulation;
8178
8179 return r;
8180}
8181EXPORT_SYMBOL_GPL(x86_decode_emulated_instruction);
8182
Sean Christopherson736c2912019-12-06 15:57:14 -08008183int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
8184 int emulation_type, void *insn, int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01008185{
Gleb Natapov95cb2292010-04-28 19:15:43 +03008186 int r;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008187 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008188 bool writeback = true;
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008189 bool write_fault_to_spt;
8190
Jason Baronb36464772021-01-14 22:27:56 -05008191 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, insn, insn_len)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008192 return 1;
Carsten Ottebbd9b642007-10-30 18:44:21 +01008193
Paolo Bonzinic595cee2018-07-02 13:07:14 +02008194 vcpu->arch.l1tf_flush_l1d = true;
8195
Xiao Guangrong93c05d32013-01-13 23:49:07 +08008196 /*
8197 * Clear write_fault_to_shadow_pgtable here to ensure it is
8198 * never reused.
8199 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008200 write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08008201 vcpu->arch.write_fault_to_shadow_pgtable = false;
Gleb Natapov8d7d81022011-04-12 12:36:21 +03008202
Sheng Yang571008d2008-01-02 14:49:22 +08008203 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Wei Huang4aa26912021-01-26 03:18:28 -05008204 kvm_clear_exception_queue(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008205
Wei Huang4aa26912021-01-26 03:18:28 -05008206 r = x86_decode_emulated_instruction(vcpu, emulation_type,
8207 insn, insn_len);
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09008208 if (r != EMULATION_OK) {
Sean Christophersonb4000602019-08-27 14:40:32 -07008209 if ((emulation_type & EMULTYPE_TRAP_UD) ||
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07008210 (emulation_type & EMULTYPE_TRAP_UD_FORCED)) {
8211 kvm_queue_exception(vcpu, UD_VECTOR);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008212 return 1;
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07008213 }
Sean Christopherson736c2912019-12-06 15:57:14 -08008214 if (reexecute_instruction(vcpu, cr2_or_gpa,
8215 write_fault_to_spt,
8216 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008217 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00008218 if (ctxt->have_exception) {
Jan Dakinevichc8848ce2019-08-27 13:07:08 +00008219 /*
8220 * #UD should result in just EMULATION_FAILED, and trap-like
8221 * exception should not be encountered during decode.
8222 */
8223 WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR ||
8224 exception_type(ctxt->exception.vector) == EXCPT_TRAP);
Jan Dakinevich8530a792019-08-27 13:07:09 +00008225 inject_emulated_exception(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008226 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00008227 }
Liran Alone2366172018-03-12 13:12:49 +02008228 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008229 }
8230 }
8231
Sean Christopherson42cbf062019-08-27 14:40:31 -07008232 if ((emulation_type & EMULTYPE_VMWARE_GP) &&
8233 !is_vmware_backdoor_opcode(ctxt)) {
8234 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008235 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07008236 }
Liran Alon04789b62018-03-12 13:12:50 +02008237
Sean Christopherson1957aa62019-08-27 14:40:39 -07008238 /*
Hou Wenlong906fa902021-11-02 17:15:30 +08008239 * EMULTYPE_SKIP without EMULTYPE_COMPLETE_USER_EXIT is intended for
8240 * use *only* by vendor callbacks for kvm_skip_emulated_instruction().
8241 * The caller is responsible for updating interruptibility state and
8242 * injecting single-step #DBs.
Sean Christopherson1957aa62019-08-27 14:40:39 -07008243 */
Gleb Natapovba8afb62009-04-12 13:36:57 +03008244 if (emulation_type & EMULTYPE_SKIP) {
Sean Christopherson5e854862021-11-02 17:15:29 +08008245 if (ctxt->mode != X86EMUL_MODE_PROT64)
8246 ctxt->eip = (u32)ctxt->_eip;
8247 else
8248 ctxt->eip = ctxt->_eip;
8249
Hou Wenlong906fa902021-11-02 17:15:30 +08008250 if (emulation_type & EMULTYPE_COMPLETE_USER_EXIT) {
8251 r = 1;
8252 goto writeback;
8253 }
8254
Sean Christopherson5e854862021-11-02 17:15:29 +08008255 kvm_rip_write(vcpu, ctxt->eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03008256 if (ctxt->eflags & X86_EFLAGS_RF)
8257 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008258 return 1;
Gleb Natapovba8afb62009-04-12 13:36:57 +03008259 }
8260
Sean Christopherson736c2912019-12-06 15:57:14 -08008261 if (retry_instruction(ctxt, cr2_or_gpa, emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008262 return 1;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008263
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008264 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03008265 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008266 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
8267 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03008268 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008269 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03008270
Gleb Natapov5cd21912010-03-18 15:20:26 +02008271restart:
Sean Christopherson92daa482020-02-18 15:03:08 -08008272 if (emulation_type & EMULTYPE_PF) {
8273 /* Save the faulting GPA (cr2) in the address field */
8274 ctxt->exception.address = cr2_or_gpa;
8275
8276 /* With shadow page tables, cr2 contains a GVA or nGPA. */
8277 if (vcpu->arch.mmu->direct_map) {
Sean Christopherson744e6992020-02-18 15:03:09 -08008278 ctxt->gpa_available = true;
8279 ctxt->gpa_val = cr2_or_gpa;
Sean Christopherson92daa482020-02-18 15:03:08 -08008280 }
8281 } else {
8282 /* Sanitize the address out of an abundance of paranoia. */
8283 ctxt->exception.address = 0;
8284 }
Tom Lendacky0f89b202016-12-14 14:59:23 -05008285
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008286 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03008287
Joerg Roedel775fde82011-04-04 12:39:24 +02008288 if (r == EMULATION_INTERCEPTED)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008289 return 1;
Joerg Roedel775fde82011-04-04 12:39:24 +02008290
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008291 if (r == EMULATION_FAILED) {
Sean Christopherson736c2912019-12-06 15:57:14 -08008292 if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt,
Gleb Natapov991eebf2013-04-11 12:10:51 +03008293 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008294 return 1;
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03008295
Liran Alone2366172018-03-12 13:12:49 +02008296 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008297 }
8298
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008299 if (ctxt->have_exception) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008300 r = 1;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02008301 if (inject_emulated_exception(vcpu))
8302 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008303 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02008304 if (!vcpu->arch.pio.in) {
8305 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03008306 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02008307 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008308 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008309 vcpu->arch.complete_userspace_io = complete_emulated_pio;
8310 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008311 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008312 } else if (vcpu->mmio_needed) {
Sean Christophersonbc8a0aa2019-08-27 14:40:27 -07008313 ++vcpu->stat.mmio_exits;
8314
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008315 if (!vcpu->mmio_is_write)
8316 writeback = false;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008317 r = 0;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008318 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Hou Wenlongadbfb122021-11-02 17:15:32 +08008319 } else if (vcpu->arch.complete_userspace_io) {
8320 writeback = false;
8321 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008322 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03008323 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008324 else
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008325 r = 1;
Gleb Natapove85d28f2010-07-29 15:11:52 +03008326
Hou Wenlong906fa902021-11-02 17:15:30 +08008327writeback:
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008328 if (writeback) {
Jason Baronb36464772021-01-14 22:27:56 -05008329 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008330 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008331 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Nadav Amit38827db2014-11-02 11:54:53 +02008332 if (!ctxt->have_exception ||
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008333 exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
Eric Hankland9cd803d2021-11-30 15:42:20 +08008334 kvm_pmu_trigger_event(vcpu, PERF_COUNT_HW_INSTRUCTIONS);
Eric Hankland018d70f2021-11-30 15:42:21 +08008335 if (ctxt->is_branch)
8336 kvm_pmu_trigger_event(vcpu, PERF_COUNT_HW_BRANCH_INSTRUCTIONS);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008337 kvm_rip_write(vcpu, ctxt->eip);
Felipe Franciosi384dea12020-05-19 08:11:22 +00008338 if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)))
Sean Christopherson120c2c42019-08-27 14:40:29 -07008339 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008340 if (kvm_x86_ops.update_emulated_instruction)
Jason Baronb36464772021-01-14 22:27:56 -05008341 static_call(kvm_x86_update_emulated_instruction)(vcpu);
Nadav Amit38827db2014-11-02 11:54:53 +02008342 __kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008343 }
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008344
8345 /*
8346 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
8347 * do nothing, and it will be requested again as soon as
8348 * the shadow expires. But we still need to check here,
8349 * because POPF has no interrupt shadow.
8350 */
8351 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
8352 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008353 } else
8354 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03008355
Gleb Natapove85d28f2010-07-29 15:11:52 +03008356 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01008357}
Sean Christophersonc60658d2018-08-23 13:56:53 -07008358
8359int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type)
8360{
8361 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
8362}
8363EXPORT_SYMBOL_GPL(kvm_emulate_instruction);
8364
8365int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
8366 void *insn, int insn_len)
8367{
8368 return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len);
8369}
8370EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008371
Sean Christopherson8764ed52019-04-29 07:04:15 -07008372static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu)
8373{
8374 vcpu->arch.pio.count = 0;
8375 return 1;
8376}
8377
Sean Christopherson45def772019-03-11 20:01:05 -07008378static int complete_fast_pio_out(struct kvm_vcpu *vcpu)
8379{
8380 vcpu->arch.pio.count = 0;
8381
8382 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip)))
8383 return 1;
8384
8385 return kvm_skip_emulated_instruction(vcpu);
8386}
8387
Sean Christophersondca7f122018-03-08 08:57:27 -08008388static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size,
8389 unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01008390{
Sean Christophersonde3cd112019-04-30 10:36:17 -07008391 unsigned long val = kvm_rax_read(vcpu);
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008392 int ret = emulator_pio_out(vcpu, size, port, &val, 1);
8393
Sean Christopherson8764ed52019-04-29 07:04:15 -07008394 if (ret)
8395 return ret;
Sean Christopherson45def772019-03-11 20:01:05 -07008396
Sean Christopherson8764ed52019-04-29 07:04:15 -07008397 /*
8398 * Workaround userspace that relies on old KVM behavior of %rip being
8399 * incremented prior to exiting to userspace to handle "OUT 0x7e".
8400 */
8401 if (port == 0x7e &&
8402 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) {
8403 vcpu->arch.complete_userspace_io =
8404 complete_fast_pio_out_port_0x7e;
8405 kvm_skip_emulated_instruction(vcpu);
8406 } else {
Sean Christopherson45def772019-03-11 20:01:05 -07008407 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
8408 vcpu->arch.complete_userspace_io = complete_fast_pio_out;
8409 }
Sean Christopherson8764ed52019-04-29 07:04:15 -07008410 return 0;
Carsten Ottede7d7892007-10-30 18:44:25 +01008411}
Carsten Ottede7d7892007-10-30 18:44:25 +01008412
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008413static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
8414{
8415 unsigned long val;
8416
8417 /* We should only ever be called with arch.pio.count equal to 1 */
8418 BUG_ON(vcpu->arch.pio.count != 1);
8419
Sean Christopherson45def772019-03-11 20:01:05 -07008420 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) {
8421 vcpu->arch.pio.count = 0;
8422 return 1;
8423 }
8424
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008425 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008426 val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008427
8428 /*
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008429 * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008430 * the copy and tracing
8431 */
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008432 emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1);
Sean Christophersonde3cd112019-04-30 10:36:17 -07008433 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008434
Sean Christopherson45def772019-03-11 20:01:05 -07008435 return kvm_skip_emulated_instruction(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008436}
8437
Sean Christophersondca7f122018-03-08 08:57:27 -08008438static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size,
8439 unsigned short port)
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008440{
8441 unsigned long val;
8442 int ret;
8443
8444 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008445 val = (size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008446
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008447 ret = emulator_pio_in(vcpu, size, port, &val, 1);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008448 if (ret) {
Sean Christophersonde3cd112019-04-30 10:36:17 -07008449 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008450 return ret;
8451 }
8452
Sean Christopherson45def772019-03-11 20:01:05 -07008453 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008454 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
8455
8456 return 0;
8457}
Sean Christophersondca7f122018-03-08 08:57:27 -08008458
8459int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in)
8460{
Sean Christopherson45def772019-03-11 20:01:05 -07008461 int ret;
Sean Christophersondca7f122018-03-08 08:57:27 -08008462
Sean Christophersondca7f122018-03-08 08:57:27 -08008463 if (in)
Sean Christopherson45def772019-03-11 20:01:05 -07008464 ret = kvm_fast_pio_in(vcpu, size, port);
Sean Christophersondca7f122018-03-08 08:57:27 -08008465 else
Sean Christopherson45def772019-03-11 20:01:05 -07008466 ret = kvm_fast_pio_out(vcpu, size, port);
8467 return ret && kvm_skip_emulated_instruction(vcpu);
Sean Christophersondca7f122018-03-08 08:57:27 -08008468}
8469EXPORT_SYMBOL_GPL(kvm_fast_pio);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008470
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008471static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008472{
Tejun Heo0a3aee02010-12-18 16:28:55 +01008473 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008474 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008475}
8476
8477static void tsc_khz_changed(void *data)
8478{
8479 struct cpufreq_freqs *freq = data;
8480 unsigned long khz = 0;
8481
8482 if (data)
8483 khz = freq->new;
8484 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8485 khz = cpufreq_quick_get(raw_smp_processor_id());
8486 if (!khz)
8487 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01008488 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008489}
8490
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008491#ifdef CONFIG_X86_64
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008492static void kvm_hyperv_tsc_notifier(void)
8493{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008494 struct kvm *kvm;
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008495 int cpu;
8496
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008497 mutex_lock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008498 list_for_each_entry(kvm, &vm_list, vm_list)
8499 kvm_make_mclock_inprogress_request(kvm);
8500
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008501 /* no guest entries from this point */
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008502 hyperv_stop_tsc_emulation();
8503
8504 /* TSC frequency always matches when on Hyper-V */
8505 for_each_present_cpu(cpu)
8506 per_cpu(cpu_tsc_khz, cpu) = tsc_khz;
8507 kvm_max_guest_tsc_khz = tsc_khz;
8508
8509 list_for_each_entry(kvm, &vm_list, vm_list) {
Paolo Bonzini869b4422021-09-16 18:15:36 +00008510 __kvm_start_pvclock_update(kvm);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008511 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008512 kvm_end_pvclock_update(kvm);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008513 }
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008514
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008515 mutex_unlock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008516}
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008517#endif
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008518
Viresh Kumardf240142019-04-29 15:03:58 +05308519static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008520{
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008521 struct kvm *kvm;
8522 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00008523 int send_ipi = 0;
8524 unsigned long i;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008525
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008526 /*
8527 * We allow guests to temporarily run on slowing clocks,
8528 * provided we notify them after, or to run on accelerating
8529 * clocks, provided we notify them before. Thus time never
8530 * goes backwards.
8531 *
8532 * However, we have a problem. We can't atomically update
8533 * the frequency of a given CPU from this function; it is
8534 * merely a notifier, which can be called from any CPU.
8535 * Changing the TSC frequency at arbitrary points in time
8536 * requires a recomputation of local variables related to
8537 * the TSC for each VCPU. We must flag these local variables
8538 * to be updated and be sure the update takes place with the
8539 * new frequency before any guests proceed.
8540 *
8541 * Unfortunately, the combination of hotplug CPU and frequency
8542 * change creates an intractable locking scenario; the order
8543 * of when these callouts happen is undefined with respect to
8544 * CPU hotplug, and they can race with each other. As such,
8545 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
8546 * undefined; you can actually have a CPU frequency change take
8547 * place in between the computation of X and the setting of the
8548 * variable. To protect against this problem, all updates of
8549 * the per_cpu tsc_khz variable are done in an interrupt
8550 * protected IPI, and all callers wishing to update the value
8551 * must wait for a synchronous IPI to complete (which is trivial
8552 * if the caller is on the CPU already). This establishes the
8553 * necessary total order on variable updates.
8554 *
8555 * Note that because a guest time update may take place
8556 * anytime after the setting of the VCPU's request bit, the
8557 * correct TSC value must be set before the request. However,
8558 * to ensure the update actually makes it to any guest which
8559 * starts running in hardware virtualization between the set
8560 * and the acquisition of the spinlock, we must also ping the
8561 * CPU after setting the request bit.
8562 *
8563 */
8564
Viresh Kumardf240142019-04-29 15:03:58 +05308565 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008566
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008567 mutex_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008568 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008569 kvm_for_each_vcpu(i, vcpu, kvm) {
Viresh Kumardf240142019-04-29 15:03:58 +05308570 if (vcpu->cpu != cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008571 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10008572 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008573 if (vcpu->cpu != raw_smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008574 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008575 }
8576 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008577 mutex_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008578
8579 if (freq->old < freq->new && send_ipi) {
8580 /*
8581 * We upscale the frequency. Must make the guest
8582 * doesn't see old kvmclock values while running with
8583 * the new frequency, otherwise we risk the guest sees
8584 * time go backwards.
8585 *
8586 * In case we update the frequency for another cpu
8587 * (which might be in guest context) send an interrupt
8588 * to kick the cpu out of guest context. Next time
8589 * guest context is entered kvmclock will be updated,
8590 * so the guest will not see stale values.
8591 */
Viresh Kumardf240142019-04-29 15:03:58 +05308592 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008593 }
Viresh Kumardf240142019-04-29 15:03:58 +05308594}
8595
8596static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
8597 void *data)
8598{
8599 struct cpufreq_freqs *freq = data;
8600 int cpu;
8601
8602 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
8603 return 0;
8604 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
8605 return 0;
8606
8607 for_each_cpu(cpu, freq->policy->cpus)
8608 __kvmclock_cpufreq_notifier(freq, cpu);
8609
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008610 return 0;
8611}
8612
8613static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008614 .notifier_call = kvmclock_cpufreq_notifier
8615};
8616
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008617static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008618{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008619 tsc_khz_changed(NULL);
8620 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008621}
8622
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008623static void kvm_timer_init(void)
8624{
Zachary Amsdenc2855452010-09-18 14:38:15 -10008625 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308626
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008627 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10008628#ifdef CONFIG_CPU_FREQ
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008629 struct cpufreq_policy *policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02008630 int cpu;
8631
Avi Kivity3e26f232010-12-16 12:16:34 +02008632 cpu = get_cpu();
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008633 policy = cpufreq_cpu_get(cpu);
Wanpeng Li9a119972020-03-02 15:15:36 +08008634 if (policy) {
8635 if (policy->cpuinfo.max_freq)
8636 max_tsc_khz = policy->cpuinfo.max_freq;
8637 cpufreq_cpu_put(policy);
8638 }
Avi Kivity3e26f232010-12-16 12:16:34 +02008639 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10008640#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008641 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
8642 CPUFREQ_TRANSITION_NOTIFIER);
8643 }
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308644
Thomas Gleixner73c1b412016-12-21 20:19:54 +01008645 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008646 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008647}
8648
Andi Kleendd60d212017-07-25 17:20:32 -07008649DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
8650EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008651
Gleb Natapovf5132b02011-11-10 14:57:22 +02008652int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008653{
Alex,Shi086c9852011-10-20 15:34:01 +08008654 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008655}
8656
8657static int kvm_is_user_mode(void)
8658{
8659 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008660
Alex,Shi086c9852011-10-20 15:34:01 +08008661 if (__this_cpu_read(current_vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008662 user_mode = static_call(kvm_x86_get_cpl)(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008663
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008664 return user_mode != 0;
8665}
8666
8667static unsigned long kvm_get_guest_ip(void)
8668{
8669 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008670
Alex,Shi086c9852011-10-20 15:34:01 +08008671 if (__this_cpu_read(current_vcpu))
8672 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008673
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008674 return ip;
8675}
8676
Luwei Kang8479e042019-02-18 19:26:07 -05008677static void kvm_handle_intel_pt_intr(void)
8678{
8679 struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu);
8680
8681 kvm_make_request(KVM_REQ_PMI, vcpu);
8682 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
8683 (unsigned long *)&vcpu->arch.pmu.global_status);
8684}
8685
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008686static struct perf_guest_info_callbacks kvm_guest_cbs = {
8687 .is_in_guest = kvm_is_in_guest,
8688 .is_user_mode = kvm_is_user_mode,
8689 .get_guest_ip = kvm_get_guest_ip,
Luwei Kang8479e042019-02-18 19:26:07 -05008690 .handle_intel_pt_intr = kvm_handle_intel_pt_intr,
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008691};
8692
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008693#ifdef CONFIG_X86_64
8694static void pvclock_gtod_update_fn(struct work_struct *work)
8695{
Marcelo Tosattid8281992012-11-27 23:29:01 -02008696 struct kvm *kvm;
Marcelo Tosattid8281992012-11-27 23:29:01 -02008697 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00008698 unsigned long i;
Marcelo Tosattid8281992012-11-27 23:29:01 -02008699
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008700 mutex_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008701 list_for_each_entry(kvm, &vm_list, vm_list)
8702 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08008703 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008704 atomic_set(&kvm_guest_has_master_clock, 0);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008705 mutex_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008706}
8707
8708static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
8709
8710/*
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008711 * Indirection to move queue_work() out of the tk_core.seq write held
8712 * region to prevent possible deadlocks against time accessors which
8713 * are invoked with work related locks held.
8714 */
8715static void pvclock_irq_work_fn(struct irq_work *w)
8716{
8717 queue_work(system_long_wq, &pvclock_gtod_work);
8718}
8719
8720static DEFINE_IRQ_WORK(pvclock_irq_work, pvclock_irq_work_fn);
8721
8722/*
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008723 * Notification about pvclock gtod data update.
8724 */
8725static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
8726 void *priv)
8727{
8728 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
8729 struct timekeeper *tk = priv;
8730
8731 update_pvclock_gtod(tk);
8732
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008733 /*
8734 * Disable master clock if host does not trust, or does not use,
8735 * TSC based clocksource. Delegate queue_work() to irq_work as
8736 * this is invoked with tk_core.seq write held.
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008737 */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01008738 if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) &&
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008739 atomic_read(&kvm_guest_has_master_clock) != 0)
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008740 irq_work_queue(&pvclock_irq_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008741 return 0;
8742}
8743
8744static struct notifier_block pvclock_gtod_notifier = {
8745 .notifier_call = pvclock_gtod_notify,
8746};
8747#endif
8748
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008749int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02008750{
Sean Christophersond008dfd2020-03-21 13:25:56 -07008751 struct kvm_x86_init_ops *ops = opaque;
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008752 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008753
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008754 if (kvm_x86_ops.hardware_enable) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008755 pr_err("kvm: already loaded vendor module '%s'\n", kvm_x86_ops.name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008756 r = -EEXIST;
8757 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008758 }
8759
8760 if (!ops->cpu_has_kvm_support()) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008761 pr_err_ratelimited("kvm: no hardware support for '%s'\n",
8762 ops->runtime_ops->name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008763 r = -EOPNOTSUPP;
8764 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008765 }
8766 if (ops->disabled_by_bios()) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008767 pr_err_ratelimited("kvm: support for '%s' disabled by bios\n",
8768 ops->runtime_ops->name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008769 r = -EOPNOTSUPP;
8770 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008771 }
8772
Marc Orrb666a4b2018-11-06 14:53:56 -08008773 /*
8774 * KVM explicitly assumes that the guest has an FPU and
8775 * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the
8776 * vCPU's FPU state as a fxregs_state struct.
8777 */
8778 if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) {
8779 printk(KERN_ERR "kvm: inadequate fpu\n");
8780 r = -EOPNOTSUPP;
8781 goto out;
8782 }
8783
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008784 r = -ENOMEM;
Marc Orrb666a4b2018-11-06 14:53:56 -08008785
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008786 x86_emulator_cache = kvm_alloc_emulator_cache();
8787 if (!x86_emulator_cache) {
8788 pr_err("kvm: failed to allocate cache for x86 emulator\n");
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02008789 goto out;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008790 }
8791
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008792 user_return_msrs = alloc_percpu(struct kvm_user_return_msrs);
8793 if (!user_return_msrs) {
8794 printk(KERN_ERR "kvm: failed to allocate percpu kvm_user_return_msrs\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008795 goto out_free_x86_emulator_cache;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008796 }
Sean Christophersone5fda4b2021-05-04 10:17:32 -07008797 kvm_nr_uret_msrs = 0;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008798
Avi Kivity97db56c2008-01-13 13:23:56 +02008799 r = kvm_mmu_module_init();
8800 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008801 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02008802
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008803 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008804
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008805 perf_register_guest_info_callbacks(&kvm_guest_cbs);
8806
Sean Christophersoncfc48182020-03-02 15:56:23 -08008807 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +08008808 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
Sean Christophersoncfc48182020-03-02 15:56:23 -08008809 supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0;
8810 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08008811
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08008812 if (pi_inject_timer == -1)
8813 pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008814#ifdef CONFIG_X86_64
8815 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008816
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008817 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008818 set_hv_tscchange_cb(kvm_hyperv_tsc_notifier);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008819#endif
8820
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008821 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008822
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008823out_free_percpu:
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008824 free_percpu(user_return_msrs);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008825out_free_x86_emulator_cache:
8826 kmem_cache_destroy(x86_emulator_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008827out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008828 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02008829}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008830
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008831void kvm_arch_exit(void)
8832{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008833#ifdef CONFIG_X86_64
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008834 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008835 clear_hv_tscchange_cb();
8836#endif
David Matlackcef84c32016-12-16 14:30:36 -08008837 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008838 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
8839
Jan Kiszka888d2562009-04-17 19:24:58 +02008840 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8841 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
8842 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008843 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008844#ifdef CONFIG_X86_64
8845 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008846 irq_work_sync(&pvclock_irq_work);
Thomas Gleixner594b27e2021-05-05 23:48:17 +02008847 cancel_work_sync(&pvclock_gtod_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008848#endif
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008849 kvm_x86_ops.hardware_enable = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008850 kvm_mmu_module_exit();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008851 free_percpu(user_return_msrs);
Wanpeng Lidfdc0a72021-06-10 21:59:33 -07008852 kmem_cache_destroy(x86_emulator_cache);
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008853#ifdef CONFIG_KVM_XEN
Paolo Bonzinic462f852021-02-26 04:49:06 -05008854 static_key_deferred_flush(&kvm_xen_enabled);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +00008855 WARN_ON(static_branch_unlikely(&kvm_xen_enabled.key));
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008856#endif
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008857}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008858
Sean Christopherson14601792021-10-08 19:12:05 -07008859static int __kvm_emulate_halt(struct kvm_vcpu *vcpu, int state, int reason)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008860{
Sean Christopherson91b99ea2021-10-08 19:12:06 -07008861 /*
8862 * The vCPU has halted, e.g. executed HLT. Update the run state if the
8863 * local APIC is in-kernel, the run loop will detect the non-runnable
8864 * state and halt the vCPU. Exit to userspace if the local APIC is
8865 * managed by userspace, in which case userspace is responsible for
8866 * handling wake events.
8867 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05008868 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008869 if (lapic_in_kernel(vcpu)) {
Tom Lendacky647daca2021-01-04 14:20:01 -06008870 vcpu->arch.mp_state = state;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008871 return 1;
8872 } else {
Tom Lendacky647daca2021-01-04 14:20:01 -06008873 vcpu->run->exit_reason = reason;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008874 return 0;
8875 }
8876}
Tom Lendacky647daca2021-01-04 14:20:01 -06008877
Sean Christopherson14601792021-10-08 19:12:05 -07008878int kvm_emulate_halt_noskip(struct kvm_vcpu *vcpu)
Tom Lendacky647daca2021-01-04 14:20:01 -06008879{
Sean Christopherson14601792021-10-08 19:12:05 -07008880 return __kvm_emulate_halt(vcpu, KVM_MP_STATE_HALTED, KVM_EXIT_HLT);
Tom Lendacky647daca2021-01-04 14:20:01 -06008881}
Sean Christopherson14601792021-10-08 19:12:05 -07008882EXPORT_SYMBOL_GPL(kvm_emulate_halt_noskip);
Joel Schopp5cb56052015-03-02 13:43:31 -06008883
8884int kvm_emulate_halt(struct kvm_vcpu *vcpu)
8885{
Kyle Huey6affcbe2016-11-29 12:40:40 -08008886 int ret = kvm_skip_emulated_instruction(vcpu);
8887 /*
8888 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
8889 * KVM_EXIT_DEBUG here.
8890 */
Sean Christopherson14601792021-10-08 19:12:05 -07008891 return kvm_emulate_halt_noskip(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06008892}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008893EXPORT_SYMBOL_GPL(kvm_emulate_halt);
8894
Tom Lendacky647daca2021-01-04 14:20:01 -06008895int kvm_emulate_ap_reset_hold(struct kvm_vcpu *vcpu)
8896{
8897 int ret = kvm_skip_emulated_instruction(vcpu);
8898
Sean Christopherson14601792021-10-08 19:12:05 -07008899 return __kvm_emulate_halt(vcpu, KVM_MP_STATE_AP_RESET_HOLD,
8900 KVM_EXIT_AP_RESET_HOLD) && ret;
Tom Lendacky647daca2021-01-04 14:20:01 -06008901}
8902EXPORT_SYMBOL_GPL(kvm_emulate_ap_reset_hold);
8903
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008904#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008905static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
8906 unsigned long clock_type)
8907{
8908 struct kvm_clock_pairing clock_pairing;
Arnd Bergmann899a31f2018-04-23 10:04:26 +02008909 struct timespec64 ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01008910 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008911 int ret;
8912
8913 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
8914 return -KVM_EOPNOTSUPP;
8915
YANG LI7ca7f3b2021-01-11 17:32:58 +08008916 if (!kvm_get_walltime_and_clockread(&ts, &cycle))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008917 return -KVM_EOPNOTSUPP;
8918
8919 clock_pairing.sec = ts.tv_sec;
8920 clock_pairing.nsec = ts.tv_nsec;
8921 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
8922 clock_pairing.flags = 0;
Liran Alonbcbfbd82018-11-08 00:43:06 +02008923 memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008924
8925 ret = 0;
8926 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
8927 sizeof(struct kvm_clock_pairing)))
8928 ret = -KVM_EFAULT;
8929
8930 return ret;
8931}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008932#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008933
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308934/*
8935 * kvm_pv_kick_cpu_op: Kick a vcpu.
8936 *
8937 * @apicid - apicid of vcpu to be kicked.
8938 */
8939static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
8940{
Raghavendra K T24d21662013-08-26 14:18:35 +05308941 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308942
Peter Xu150a84f2019-12-04 20:07:21 +01008943 lapic_irq.shorthand = APIC_DEST_NOSHORT;
Peter Xuc96001c2019-12-04 20:07:18 +01008944 lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
Longpeng(Mike)ebd28fc2017-08-02 11:20:51 +08008945 lapic_irq.level = 0;
Raghavendra K T24d21662013-08-26 14:18:35 +05308946 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06008947 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308948
Raghavendra K T24d21662013-08-26 14:18:35 +05308949 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08008950 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308951}
8952
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008953bool kvm_apicv_activated(struct kvm *kvm)
8954{
8955 return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0);
8956}
8957EXPORT_SYMBOL_GPL(kvm_apicv_activated);
8958
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008959static void kvm_apicv_init(struct kvm *kvm)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008960{
Sean Christopherson187c8832021-10-21 17:49:27 -07008961 init_rwsem(&kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03008962
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05008963 set_bit(APICV_INHIBIT_REASON_ABSENT,
8964 &kvm->arch.apicv_inhibit_reasons);
8965 if (!enable_apicv)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008966 set_bit(APICV_INHIBIT_REASON_DISABLE,
8967 &kvm->arch.apicv_inhibit_reasons);
8968}
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008969
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008970static void kvm_sched_yield(struct kvm_vcpu *vcpu, unsigned long dest_id)
Wanpeng Li71506292019-06-11 20:23:49 +08008971{
8972 struct kvm_vcpu *target = NULL;
8973 struct kvm_apic_map *map;
8974
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008975 vcpu->stat.directed_yield_attempted++;
8976
Wanpeng Li72b268a2021-05-18 05:00:32 -07008977 if (single_task_running())
8978 goto no_yield;
8979
Wanpeng Li71506292019-06-11 20:23:49 +08008980 rcu_read_lock();
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008981 map = rcu_dereference(vcpu->kvm->arch.apic_map);
Wanpeng Li71506292019-06-11 20:23:49 +08008982
8983 if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id])
8984 target = map->phys_map[dest_id]->vcpu;
8985
8986 rcu_read_unlock();
8987
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008988 if (!target || !READ_ONCE(target->ready))
8989 goto no_yield;
8990
Wanpeng Lia1fa4cb2021-04-09 12:18:31 +08008991 /* Ignore requests to yield to self */
8992 if (vcpu == target)
8993 goto no_yield;
8994
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008995 if (kvm_vcpu_yield_to(target) <= 0)
8996 goto no_yield;
8997
8998 vcpu->stat.directed_yield_successful++;
8999
9000no_yield:
9001 return;
Wanpeng Li71506292019-06-11 20:23:49 +08009002}
9003
Ashish Kalra0dbb1122021-06-08 18:05:43 +00009004static int complete_hypercall_exit(struct kvm_vcpu *vcpu)
9005{
9006 u64 ret = vcpu->run->hypercall.ret;
9007
9008 if (!is_64_bit_mode(vcpu))
9009 ret = (u32)ret;
9010 kvm_rax_write(vcpu, ret);
9011 ++vcpu->stat.hypercalls;
9012 return kvm_skip_emulated_instruction(vcpu);
9013}
9014
Hollis Blanchard8776e512007-10-31 17:24:24 -05009015int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
9016{
9017 unsigned long nr, a0, a1, a2, a3, ret;
Marian Rotariu6356ee02018-04-30 12:23:01 +03009018 int op_64_bit;
Hollis Blanchard8776e512007-10-31 17:24:24 -05009019
Joao Martins23200b72018-06-13 09:55:44 -04009020 if (kvm_xen_hypercall_enabled(vcpu->kvm))
9021 return kvm_xen_hypercall(vcpu);
9022
Vitaly Kuznetsov8f014552021-01-26 14:48:14 +01009023 if (kvm_hv_hypercall_enabled(vcpu))
Radim Krčmář696ca772018-05-24 17:50:56 +02009024 return kvm_hv_hypercall(vcpu);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02009025
Sean Christophersonde3cd112019-04-30 10:36:17 -07009026 nr = kvm_rax_read(vcpu);
9027 a0 = kvm_rbx_read(vcpu);
9028 a1 = kvm_rcx_read(vcpu);
9029 a2 = kvm_rdx_read(vcpu);
9030 a3 = kvm_rsi_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009031
Marcelo Tosatti229456f2009-06-17 09:22:14 -03009032 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04009033
Tom Lendackyb5aead02021-05-24 12:48:57 -05009034 op_64_bit = is_64_bit_hypercall(vcpu);
Nadav Amita449c7a2014-06-18 17:19:24 +03009035 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05009036 nr &= 0xFFFFFFFF;
9037 a0 &= 0xFFFFFFFF;
9038 a1 &= 0xFFFFFFFF;
9039 a2 &= 0xFFFFFFFF;
9040 a3 &= 0xFFFFFFFF;
9041 }
9042
Jason Baronb36464772021-01-14 22:27:56 -05009043 if (static_call(kvm_x86_get_cpl)(vcpu) != 0) {
Jan Kiszka07708c42009-08-03 18:43:28 +02009044 ret = -KVM_EPERM;
Radim Krčmář696ca772018-05-24 17:50:56 +02009045 goto out;
Jan Kiszka07708c42009-08-03 18:43:28 +02009046 }
9047
Oliver Upton66570e92020-08-18 15:24:28 +00009048 ret = -KVM_ENOSYS;
9049
Hollis Blanchard8776e512007-10-31 17:24:24 -05009050 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02009051 case KVM_HC_VAPIC_POLL_IRQ:
9052 ret = 0;
9053 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05309054 case KVM_HC_KICK_CPU:
Oliver Upton66570e92020-08-18 15:24:28 +00009055 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT))
9056 break;
9057
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05309058 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
Wanpeng Li4a7132e2021-04-09 12:18:30 +08009059 kvm_sched_yield(vcpu, a1);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05309060 ret = 0;
9061 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01009062#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02009063 case KVM_HC_CLOCK_PAIRING:
9064 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
9065 break;
Sean Christopherson1ed199a2019-01-23 09:22:39 -08009066#endif
Wanpeng Li4180bf12018-07-23 14:39:54 +08009067 case KVM_HC_SEND_IPI:
Oliver Upton66570e92020-08-18 15:24:28 +00009068 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SEND_IPI))
9069 break;
9070
Wanpeng Li4180bf12018-07-23 14:39:54 +08009071 ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit);
9072 break;
Wanpeng Li71506292019-06-11 20:23:49 +08009073 case KVM_HC_SCHED_YIELD:
Oliver Upton66570e92020-08-18 15:24:28 +00009074 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SCHED_YIELD))
9075 break;
9076
Wanpeng Li4a7132e2021-04-09 12:18:30 +08009077 kvm_sched_yield(vcpu, a0);
Wanpeng Li71506292019-06-11 20:23:49 +08009078 ret = 0;
9079 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00009080 case KVM_HC_MAP_GPA_RANGE: {
9081 u64 gpa = a0, npages = a1, attrs = a2;
9082
9083 ret = -KVM_ENOSYS;
9084 if (!(vcpu->kvm->arch.hypercall_exit_enabled & (1 << KVM_HC_MAP_GPA_RANGE)))
9085 break;
9086
9087 if (!PAGE_ALIGNED(gpa) || !npages ||
9088 gpa_to_gfn(gpa) + npages <= gpa_to_gfn(gpa)) {
9089 ret = -KVM_EINVAL;
9090 break;
9091 }
9092
9093 vcpu->run->exit_reason = KVM_EXIT_HYPERCALL;
9094 vcpu->run->hypercall.nr = KVM_HC_MAP_GPA_RANGE;
9095 vcpu->run->hypercall.args[0] = gpa;
9096 vcpu->run->hypercall.args[1] = npages;
9097 vcpu->run->hypercall.args[2] = attrs;
9098 vcpu->run->hypercall.longmode = op_64_bit;
9099 vcpu->arch.complete_userspace_io = complete_hypercall_exit;
9100 return 0;
9101 }
Hollis Blanchard8776e512007-10-31 17:24:24 -05009102 default:
9103 ret = -KVM_ENOSYS;
9104 break;
9105 }
Radim Krčmář696ca772018-05-24 17:50:56 +02009106out:
Nadav Amita449c7a2014-06-18 17:19:24 +03009107 if (!op_64_bit)
9108 ret = (u32)ret;
Sean Christophersonde3cd112019-04-30 10:36:17 -07009109 kvm_rax_write(vcpu, ret);
Marian Rotariu6356ee02018-04-30 12:23:01 +03009110
Amit Shahf11c3a82008-02-21 01:00:30 +05309111 ++vcpu->stat.hypercalls;
Marian Rotariu6356ee02018-04-30 12:23:01 +03009112 return kvm_skip_emulated_instruction(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009113}
9114EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
9115
Jan Kiszkab6785de2012-09-20 07:43:17 +02009116static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05009117{
Avi Kivityd6aa1002011-04-20 15:47:13 +03009118 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009119 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009120 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009121
Jason Baronb36464772021-01-14 22:27:56 -05009122 static_call(kvm_x86_patch_hypercall)(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009123
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01009124 return emulator_write_emulated(ctxt, rip, instruction, 3,
9125 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009126}
9127
Avi Kivity851ba692009-08-24 11:10:17 +03009128static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009129{
Matt Gingell782d4222015-11-16 15:26:00 -08009130 return vcpu->run->request_interrupt_window &&
9131 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009132}
9133
Avi Kivity851ba692009-08-24 11:10:17 +03009134static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009135{
Avi Kivity851ba692009-08-24 11:10:17 +03009136 struct kvm_run *kvm_run = vcpu->run;
9137
Marc Orrc5063552021-12-09 07:52:57 -08009138 kvm_run->if_flag = static_call(kvm_x86_get_if_flag)(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02009139 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009140 kvm_run->apic_base = kvm_get_apic_base(vcpu);
David Woodhousef3d14362021-10-26 04:12:38 +01009141
9142 /*
9143 * The call to kvm_ready_for_interrupt_injection() may end up in
9144 * kvm_xen_has_interrupt() which may require the srcu lock to be
9145 * held, to protect against changes in the vcpu_info address.
9146 */
9147 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Matt Gingell127a4572015-11-17 17:32:05 +01009148 kvm_run->ready_for_interrupt_injection =
9149 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08009150 kvm_vcpu_ready_for_interrupt_injection(vcpu);
David Woodhousef3d14362021-10-26 04:12:38 +01009151 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08009152
9153 if (is_smm(vcpu))
9154 kvm_run->flags |= KVM_RUN_X86_SMM;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009155}
9156
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009157static void update_cr8_intercept(struct kvm_vcpu *vcpu)
9158{
9159 int max_irr, tpr;
9160
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009161 if (!kvm_x86_ops.update_cr8_intercept)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009162 return;
9163
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01009164 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03009165 return;
9166
Andrey Smetanind62caab2015-11-10 15:36:33 +03009167 if (vcpu->arch.apicv_active)
9168 return;
9169
Gleb Natapov8db3baa2009-05-11 13:35:54 +03009170 if (!vcpu->arch.apic->vapic_addr)
9171 max_irr = kvm_lapic_find_highest_irr(vcpu);
9172 else
9173 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009174
9175 if (max_irr != -1)
9176 max_irr >>= 4;
9177
9178 tpr = kvm_lapic_get_cr8(vcpu);
9179
Jason Baronb36464772021-01-14 22:27:56 -05009180 static_call(kvm_x86_update_cr8_intercept)(vcpu, tpr, max_irr);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009181}
9182
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009183
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009184int kvm_check_nested_events(struct kvm_vcpu *vcpu)
9185{
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009186 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
9187 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9188 return 1;
9189 }
9190
9191 return kvm_x86_ops.nested_ops->check_events(vcpu);
9192}
9193
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009194static void kvm_inject_exception(struct kvm_vcpu *vcpu)
9195{
9196 if (vcpu->arch.exception.error_code && !is_protmode(vcpu))
9197 vcpu->arch.exception.error_code = false;
9198 static_call(kvm_x86_queue_exception)(vcpu);
9199}
9200
Jim Mattsona5f69092021-06-04 10:26:03 -07009201static int inject_pending_event(struct kvm_vcpu *vcpu, bool *req_immediate_exit)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009202{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01009203 int r;
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009204 bool can_inject = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +01009205
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009206 /* try to reinject previous events if any */
Wanpeng Li664f8e22017-08-24 03:35:09 -07009207
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009208 if (vcpu->arch.exception.injected) {
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009209 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009210 can_inject = false;
9211 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07009212 /*
Liran Alona042c262018-03-23 03:01:32 +03009213 * Do not inject an NMI or interrupt if there is a pending
9214 * exception. Exceptions and interrupts are recognized at
9215 * instruction boundaries, i.e. the start of an instruction.
9216 * Trap-like exceptions, e.g. #DB, have higher priority than
9217 * NMIs and interrupts, i.e. traps are recognized before an
9218 * NMI/interrupt that's pending on the same instruction.
9219 * Fault-like exceptions, e.g. #GP and #PF, are the lowest
9220 * priority, but are only generated (pended) during instruction
9221 * execution, i.e. a pending fault-like exception means the
9222 * fault occurred on the *previous* instruction and must be
9223 * serviced prior to recognizing any new events in order to
9224 * fully complete the previous instruction.
Wanpeng Li664f8e22017-08-24 03:35:09 -07009225 */
Liran Alon1a680e32018-03-23 03:01:33 +03009226 else if (!vcpu->arch.exception.pending) {
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009227 if (vcpu->arch.nmi_injected) {
Jason Baronb36464772021-01-14 22:27:56 -05009228 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009229 can_inject = false;
9230 } else if (vcpu->arch.interrupt.injected) {
Jason Baronb36464772021-01-14 22:27:56 -05009231 static_call(kvm_x86_set_irq)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009232 can_inject = false;
9233 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07009234 }
9235
Sean Christopherson3b82b8d2020-04-22 19:25:47 -07009236 WARN_ON_ONCE(vcpu->arch.exception.injected &&
9237 vcpu->arch.exception.pending);
9238
Liran Alon1a680e32018-03-23 03:01:33 +03009239 /*
9240 * Call check_nested_events() even if we reinjected a previous event
9241 * in order for caller to determine if it should require immediate-exit
9242 * from L2 to L1 due to pending L1 events which require exit
9243 * from L2 to L1.
9244 */
Paolo Bonzini56083bd2020-04-17 10:32:53 -04009245 if (is_guest_mode(vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009246 r = kvm_check_nested_events(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009247 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009248 goto out;
Wanpeng Li664f8e22017-08-24 03:35:09 -07009249 }
9250
9251 /* try to inject new event if pending */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03009252 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02009253 trace_kvm_inj_exception(vcpu->arch.exception.nr,
9254 vcpu->arch.exception.has_error_code,
9255 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03009256
Wanpeng Li664f8e22017-08-24 03:35:09 -07009257 vcpu->arch.exception.pending = false;
9258 vcpu->arch.exception.injected = true;
9259
Nadav Amitd6e8c852014-07-24 14:51:24 +03009260 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
9261 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
9262 X86_EFLAGS_RF);
9263
Jim Mattsonf10c7292018-10-16 14:29:23 -07009264 if (vcpu->arch.exception.nr == DB_VECTOR) {
Jim Mattsonf10c7292018-10-16 14:29:23 -07009265 kvm_deliver_exception_payload(vcpu);
9266 if (vcpu->arch.dr7 & DR7_GD) {
9267 vcpu->arch.dr7 &= ~DR7_GD;
9268 kvm_update_dr7(vcpu);
9269 }
Nadav Amit6bdf0662014-09-30 20:49:14 +03009270 }
9271
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009272 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009273 can_inject = false;
Liran Alon1a680e32018-03-23 03:01:33 +03009274 }
9275
Maxim Levitsky61e5f692021-08-11 15:29:26 +03009276 /* Don't inject interrupts if the user asked to avoid doing so */
9277 if (vcpu->guest_debug & KVM_GUESTDBG_BLOCKIRQ)
9278 return 0;
9279
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009280 /*
9281 * Finally, inject interrupt events. If an event cannot be injected
9282 * due to architectural conditions (e.g. IF=0) a window-open exit
9283 * will re-request KVM_REQ_EVENT. Sometimes however an event is pending
9284 * and can architecturally be injected, but we cannot do it right now:
9285 * an interrupt could have arrived just now and we have to inject it
9286 * as a vmexit, or there could already an event in the queue, which is
9287 * indicated by can_inject. In that case we request an immediate exit
9288 * in order to make progress and get back here for another iteration.
9289 * The kvm_x86_ops hooks communicate this by returning -EBUSY.
9290 */
9291 if (vcpu->arch.smi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05009292 r = can_inject ? static_call(kvm_x86_smi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009293 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009294 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009295 if (r) {
9296 vcpu->arch.smi_pending = false;
9297 ++vcpu->arch.smi_count;
9298 enter_smm(vcpu);
9299 can_inject = false;
9300 } else
Jason Baronb36464772021-01-14 22:27:56 -05009301 static_call(kvm_x86_enable_smi_window)(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009302 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009303
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009304 if (vcpu->arch.nmi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05009305 r = can_inject ? static_call(kvm_x86_nmi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009306 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009307 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009308 if (r) {
9309 --vcpu->arch.nmi_pending;
9310 vcpu->arch.nmi_injected = true;
Jason Baronb36464772021-01-14 22:27:56 -05009311 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009312 can_inject = false;
Jason Baronb36464772021-01-14 22:27:56 -05009313 WARN_ON(static_call(kvm_x86_nmi_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009314 }
9315 if (vcpu->arch.nmi_pending)
Jason Baronb36464772021-01-14 22:27:56 -05009316 static_call(kvm_x86_enable_nmi_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009317 }
9318
9319 if (kvm_cpu_has_injectable_intr(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05009320 r = can_inject ? static_call(kvm_x86_interrupt_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009321 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009322 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009323 if (r) {
9324 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), false);
Jason Baronb36464772021-01-14 22:27:56 -05009325 static_call(kvm_x86_set_irq)(vcpu);
9326 WARN_ON(static_call(kvm_x86_interrupt_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009327 }
9328 if (kvm_cpu_has_injectable_intr(vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009329 static_call(kvm_x86_enable_irq_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009330 }
9331
9332 if (is_guest_mode(vcpu) &&
9333 kvm_x86_ops.nested_ops->hv_timer_pending &&
9334 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
9335 *req_immediate_exit = true;
9336
9337 WARN_ON(vcpu->arch.exception.pending);
Jim Mattsona5f69092021-06-04 10:26:03 -07009338 return 0;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009339
Jim Mattsona5f69092021-06-04 10:26:03 -07009340out:
9341 if (r == -EBUSY) {
9342 *req_immediate_exit = true;
9343 r = 0;
9344 }
9345 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009346}
9347
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009348static void process_nmi(struct kvm_vcpu *vcpu)
9349{
9350 unsigned limit = 2;
9351
9352 /*
9353 * x86 is limited to one NMI running, and one NMI pending after it.
9354 * If an NMI is already in progress, limit further NMIs to just one.
9355 * Otherwise, allow two (and we'll inject the first one immediately).
9356 */
Jason Baronb36464772021-01-14 22:27:56 -05009357 if (static_call(kvm_x86_get_nmi_mask)(vcpu) || vcpu->arch.nmi_injected)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009358 limit = 1;
9359
9360 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
9361 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
9362 kvm_make_request(KVM_REQ_EVENT, vcpu);
9363}
9364
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009365static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009366{
9367 u32 flags = 0;
9368 flags |= seg->g << 23;
9369 flags |= seg->db << 22;
9370 flags |= seg->l << 21;
9371 flags |= seg->avl << 20;
9372 flags |= seg->present << 15;
9373 flags |= seg->dpl << 13;
9374 flags |= seg->s << 12;
9375 flags |= seg->type << 8;
9376 return flags;
9377}
9378
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009379static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009380{
9381 struct kvm_segment seg;
9382 int offset;
9383
9384 kvm_get_segment(vcpu, &seg, n);
9385 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
9386
9387 if (n < 3)
9388 offset = 0x7f84 + n * 12;
9389 else
9390 offset = 0x7f2c + (n - 3) * 12;
9391
9392 put_smstate(u32, buf, offset + 8, seg.base);
9393 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009394 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009395}
9396
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009397#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009398static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009399{
9400 struct kvm_segment seg;
9401 int offset;
9402 u16 flags;
9403
9404 kvm_get_segment(vcpu, &seg, n);
9405 offset = 0x7e00 + n * 16;
9406
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009407 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009408 put_smstate(u16, buf, offset, seg.selector);
9409 put_smstate(u16, buf, offset + 2, flags);
9410 put_smstate(u32, buf, offset + 4, seg.limit);
9411 put_smstate(u64, buf, offset + 8, seg.base);
9412}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009413#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009414
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009415static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009416{
9417 struct desc_ptr dt;
9418 struct kvm_segment seg;
9419 unsigned long val;
9420 int i;
9421
9422 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
9423 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
9424 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
9425 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
9426
9427 for (i = 0; i < 8; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009428 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009429
9430 kvm_get_dr(vcpu, 6, &val);
9431 put_smstate(u32, buf, 0x7fcc, (u32)val);
9432 kvm_get_dr(vcpu, 7, &val);
9433 put_smstate(u32, buf, 0x7fc8, (u32)val);
9434
9435 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9436 put_smstate(u32, buf, 0x7fc4, seg.selector);
9437 put_smstate(u32, buf, 0x7f64, seg.base);
9438 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009439 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009440
9441 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9442 put_smstate(u32, buf, 0x7fc0, seg.selector);
9443 put_smstate(u32, buf, 0x7f80, seg.base);
9444 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009445 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009446
Jason Baronb36464772021-01-14 22:27:56 -05009447 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009448 put_smstate(u32, buf, 0x7f74, dt.address);
9449 put_smstate(u32, buf, 0x7f70, dt.size);
9450
Jason Baronb36464772021-01-14 22:27:56 -05009451 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009452 put_smstate(u32, buf, 0x7f58, dt.address);
9453 put_smstate(u32, buf, 0x7f54, dt.size);
9454
9455 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009456 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009457
9458 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
9459
9460 /* revision id */
9461 put_smstate(u32, buf, 0x7efc, 0x00020000);
9462 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
9463}
9464
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009465#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009466static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009467{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009468 struct desc_ptr dt;
9469 struct kvm_segment seg;
9470 unsigned long val;
9471 int i;
9472
9473 for (i = 0; i < 16; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009474 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009475
9476 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
9477 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
9478
9479 kvm_get_dr(vcpu, 6, &val);
9480 put_smstate(u64, buf, 0x7f68, val);
9481 kvm_get_dr(vcpu, 7, &val);
9482 put_smstate(u64, buf, 0x7f60, val);
9483
9484 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
9485 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
9486 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
9487
9488 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
9489
9490 /* revision id */
9491 put_smstate(u32, buf, 0x7efc, 0x00020064);
9492
9493 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
9494
9495 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9496 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009497 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009498 put_smstate(u32, buf, 0x7e94, seg.limit);
9499 put_smstate(u64, buf, 0x7e98, seg.base);
9500
Jason Baronb36464772021-01-14 22:27:56 -05009501 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009502 put_smstate(u32, buf, 0x7e84, dt.size);
9503 put_smstate(u64, buf, 0x7e88, dt.address);
9504
9505 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9506 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009507 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009508 put_smstate(u32, buf, 0x7e74, seg.limit);
9509 put_smstate(u64, buf, 0x7e78, seg.base);
9510
Jason Baronb36464772021-01-14 22:27:56 -05009511 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009512 put_smstate(u32, buf, 0x7e64, dt.size);
9513 put_smstate(u64, buf, 0x7e68, dt.address);
9514
9515 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009516 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009517}
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009518#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009519
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009520static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02009521{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009522 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02009523 struct desc_ptr dt;
Sean Christophersondbc47392021-06-22 10:56:59 -07009524 unsigned long cr0;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009525 char buf[512];
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009526
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009527 memset(buf, 0, 512);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009528#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009529 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009530 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009531 else
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009532#endif
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009533 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009534
Ladi Prosek0234bf82017-10-11 16:54:40 +02009535 /*
Sean Christophersonecc513e2021-06-09 11:56:19 -07009536 * Give enter_smm() a chance to make ISA-specific changes to the vCPU
9537 * state (e.g. leave guest mode) after we've saved the state into the
9538 * SMM state-save area.
Ladi Prosek0234bf82017-10-11 16:54:40 +02009539 */
Sean Christophersonecc513e2021-06-09 11:56:19 -07009540 static_call(kvm_x86_enter_smm)(vcpu, buf);
Ladi Prosek0234bf82017-10-11 16:54:40 +02009541
Sean Christophersondc872752021-06-09 11:56:15 -07009542 kvm_smm_changed(vcpu, true);
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009543 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009544
Jason Baronb36464772021-01-14 22:27:56 -05009545 if (static_call(kvm_x86_get_nmi_mask)(vcpu))
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009546 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
9547 else
Jason Baronb36464772021-01-14 22:27:56 -05009548 static_call(kvm_x86_set_nmi_mask)(vcpu, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009549
9550 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
9551 kvm_rip_write(vcpu, 0x8000);
9552
9553 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
Jason Baronb36464772021-01-14 22:27:56 -05009554 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009555 vcpu->arch.cr0 = cr0;
9556
Jason Baronb36464772021-01-14 22:27:56 -05009557 static_call(kvm_x86_set_cr4)(vcpu, 0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009558
Paolo Bonzini18c36262015-08-07 12:27:54 +02009559 /* Undocumented: IDT limit is set to zero on entry to SMM. */
9560 dt.address = dt.size = 0;
Jason Baronb36464772021-01-14 22:27:56 -05009561 static_call(kvm_x86_set_idt)(vcpu, &dt);
Paolo Bonzini18c36262015-08-07 12:27:54 +02009562
Paolo Bonzini996ff542020-12-14 07:49:54 -05009563 kvm_set_dr(vcpu, 7, DR7_FIXED_1);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009564
9565 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
9566 cs.base = vcpu->arch.smbase;
9567
9568 ds.selector = 0;
9569 ds.base = 0;
9570
9571 cs.limit = ds.limit = 0xffffffff;
9572 cs.type = ds.type = 0x3;
9573 cs.dpl = ds.dpl = 0;
9574 cs.db = ds.db = 0;
9575 cs.s = ds.s = 1;
9576 cs.l = ds.l = 0;
9577 cs.g = ds.g = 1;
9578 cs.avl = ds.avl = 0;
9579 cs.present = ds.present = 1;
9580 cs.unusable = ds.unusable = 0;
9581 cs.padding = ds.padding = 0;
9582
9583 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
9584 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
9585 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
9586 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
9587 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
9588 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
9589
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009590#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009591 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Jason Baronb36464772021-01-14 22:27:56 -05009592 static_call(kvm_x86_set_efer)(vcpu, 0);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009593#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009594
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08009595 kvm_update_cpuid_runtime(vcpu);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009596 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009597}
9598
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009599static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009600{
9601 vcpu->arch.smi_pending = true;
9602 kvm_make_request(KVM_REQ_EVENT, vcpu);
9603}
9604
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009605void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
9606 unsigned long *vcpu_bitmap)
9607{
Vitaly Kuznetsov620b2432021-09-03 09:51:41 +02009608 kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC, vcpu_bitmap);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009609}
9610
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01009611void kvm_make_scan_ioapic_request(struct kvm *kvm)
9612{
9613 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
9614}
9615
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009616void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
9617{
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009618 bool activate;
9619
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009620 if (!lapic_in_kernel(vcpu))
9621 return;
9622
Sean Christopherson187c8832021-10-21 17:49:27 -07009623 down_read(&vcpu->kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009624
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009625 activate = kvm_apicv_activated(vcpu->kvm);
9626 if (vcpu->arch.apicv_active == activate)
9627 goto out;
9628
9629 vcpu->arch.apicv_active = activate;
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009630 kvm_apic_update_apicv(vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009631 static_call(kvm_x86_refresh_apicv_exec_ctrl)(vcpu);
Vitaly Kuznetsovbca66db2021-06-09 17:09:10 +02009632
9633 /*
9634 * When APICv gets disabled, we may still have injected interrupts
9635 * pending. At the same time, KVM_REQ_EVENT may not be set as APICv was
9636 * still active when the interrupt got accepted. Make sure
9637 * inject_pending_event() is called to check for that.
9638 */
9639 if (!vcpu->arch.apicv_active)
9640 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009641
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009642out:
Sean Christopherson187c8832021-10-21 17:49:27 -07009643 up_read(&vcpu->kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009644}
9645EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv);
9646
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009647void __kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009648{
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009649 unsigned long old, new;
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009650
Sean Christopherson187c8832021-10-21 17:49:27 -07009651 lockdep_assert_held_write(&kvm->arch.apicv_update_lock);
9652
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009653 if (!kvm_x86_ops.check_apicv_inhibit_reasons ||
Jason Baronb36464772021-01-14 22:27:56 -05009654 !static_call(kvm_x86_check_apicv_inhibit_reasons)(bit))
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06009655 return;
9656
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009657 old = new = kvm->arch.apicv_inhibit_reasons;
9658
9659 if (activate)
9660 __clear_bit(bit, &new);
9661 else
9662 __set_bit(bit, &new);
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009663
Maxim Levitsky36222b12021-08-10 23:52:43 +03009664 if (!!old != !!new) {
9665 trace_kvm_apicv_update_request(activate, bit);
Sean Christophersonee49a892021-10-21 17:49:25 -07009666 /*
9667 * Kick all vCPUs before setting apicv_inhibit_reasons to avoid
9668 * false positives in the sanity check WARN in svm_vcpu_run().
9669 * This task will wait for all vCPUs to ack the kick IRQ before
9670 * updating apicv_inhibit_reasons, and all other vCPUs will
9671 * block on acquiring apicv_update_lock so that vCPUs can't
9672 * redo svm_vcpu_run() without seeing the new inhibit state.
9673 *
9674 * Note, holding apicv_update_lock and taking it in the read
9675 * side (handling the request) also prevents other vCPUs from
9676 * servicing the request with a stale apicv_inhibit_reasons.
9677 */
Maxim Levitsky36222b12021-08-10 23:52:43 +03009678 kvm_make_all_cpus_request(kvm, KVM_REQ_APICV_UPDATE);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009679 kvm->arch.apicv_inhibit_reasons = new;
Maxim Levitsky36222b12021-08-10 23:52:43 +03009680 if (new) {
9681 unsigned long gfn = gpa_to_gfn(APIC_DEFAULT_PHYS_BASE);
Maxim Levitsky36222b12021-08-10 23:52:43 +03009682 kvm_zap_gfn_range(kvm, gfn, gfn+1);
9683 }
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009684 } else
9685 kvm->arch.apicv_inhibit_reasons = new;
9686}
9687EXPORT_SYMBOL_GPL(__kvm_request_apicv_update);
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05009688
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009689void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
9690{
Sean Christopherson187c8832021-10-21 17:49:27 -07009691 down_write(&kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009692 __kvm_request_apicv_update(kvm, activate, bit);
Sean Christopherson187c8832021-10-21 17:49:27 -07009693 up_write(&kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009694}
9695EXPORT_SYMBOL_GPL(kvm_request_apicv_update);
9696
Yang Zhang3d81bc72013-04-11 19:25:13 +08009697static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009698{
Wanpeng Lidcbd3e42018-12-17 10:43:23 +08009699 if (!kvm_apic_present(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08009700 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009701
Andrey Smetanin63086302015-11-10 15:36:32 +03009702 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009703
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07009704 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03009705 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009706 else {
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05009707 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Wanpeng Lie97f8522018-11-20 16:34:18 +08009708 if (ioapic_in_kernel(vcpu->kvm))
9709 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009710 }
Liran Alone40ff1d2018-03-21 02:50:31 +02009711
9712 if (is_guest_mode(vcpu))
9713 vcpu->arch.load_eoi_exitmap_pending = true;
9714 else
9715 kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu);
9716}
9717
9718static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
9719{
9720 u64 eoi_exit_bitmap[4];
9721
9722 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
9723 return;
9724
黄乐c5adbb3a2021-11-15 14:08:29 +00009725 if (to_hv_vcpu(vcpu)) {
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009726 bitmap_or((ulong *)eoi_exit_bitmap,
9727 vcpu->arch.ioapic_handled_vectors,
9728 to_hv_synic(vcpu)->vec_bitmap, 256);
黄乐c5adbb3a2021-11-15 14:08:29 +00009729 static_call(kvm_x86_load_eoi_exitmap)(vcpu, eoi_exit_bitmap);
9730 return;
9731 }
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009732
黄乐c5adbb3a2021-11-15 14:08:29 +00009733 static_call(kvm_x86_load_eoi_exitmap)(
9734 vcpu, (u64 *)vcpu->arch.ioapic_handled_vectors);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009735}
9736
Eiichi Tsukatae649b3f2020-06-06 13:26:27 +09009737void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
9738 unsigned long start, unsigned long end)
Radim Krčmářb1394e72017-11-30 19:05:45 +01009739{
9740 unsigned long apic_address;
9741
9742 /*
9743 * The physical address of apic access page is stored in the VMCS.
9744 * Update it when it becomes invalid.
9745 */
9746 apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
9747 if (start <= apic_address && apic_address < end)
9748 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
9749}
9750
Tang Chen4256f432014-09-24 15:57:54 +08009751void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
9752{
Paolo Bonzini35754c92015-07-29 12:05:37 +02009753 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02009754 return;
9755
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009756 if (!kvm_x86_ops.set_apic_access_page_addr)
Tang Chen4256f432014-09-24 15:57:54 +08009757 return;
9758
Jason Baronb36464772021-01-14 22:27:56 -05009759 static_call(kvm_x86_set_apic_access_page_addr)(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009760}
Tang Chen4256f432014-09-24 15:57:54 +08009761
Sean Christophersond264ee02018-08-27 15:21:12 -07009762void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu)
9763{
9764 smp_send_reschedule(vcpu->cpu);
9765}
9766EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit);
9767
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009768/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01009769 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009770 * exiting to the userspace. Otherwise, the value will be returned to the
9771 * userspace.
9772 */
Avi Kivity851ba692009-08-24 11:10:17 +03009773static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009774{
9775 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08009776 bool req_int_win =
9777 dm_request_for_irq_injection(vcpu) &&
9778 kvm_cpu_accept_dm_intr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08009779 fastpath_t exit_fastpath;
Matt Gingell62a193e2015-11-16 15:26:07 -08009780
Jan Kiszka730dca42013-04-28 10:50:52 +02009781 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009782
Peter Xufb04a1e2020-09-30 21:22:22 -04009783 /* Forbid vmenter if vcpu dirty ring is soft-full */
9784 if (unlikely(vcpu->kvm->dirty_ring_size &&
9785 kvm_dirty_ring_soft_full(&vcpu->dirty_ring))) {
9786 vcpu->run->exit_reason = KVM_EXIT_DIRTY_RING_FULL;
9787 trace_kvm_dirty_ring_exit(vcpu);
9788 r = 0;
9789 goto out;
9790 }
9791
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02009792 if (kvm_request_pending(vcpu)) {
Paolo Bonzinif4d31652021-11-11 10:13:38 -05009793 if (kvm_check_request(KVM_REQ_VM_DEAD, vcpu)) {
Sean Christopherson67369272021-07-02 15:04:25 -07009794 r = -EIO;
9795 goto out;
9796 }
Paolo Bonzini729c15c2020-09-22 06:53:57 -04009797 if (kvm_check_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu)) {
Paolo Bonzini9a78e152021-01-08 11:43:08 -05009798 if (unlikely(!kvm_x86_ops.nested_ops->get_nested_state_pages(vcpu))) {
Jim Mattson671ddc72019-10-15 10:44:05 -07009799 r = 0;
9800 goto out;
9801 }
9802 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009803 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05009804 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03009805 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03009806 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02009807 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00009808 kvm_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03009809 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
9810 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10009811 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
9812 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10009813 if (unlikely(r))
9814 goto out;
9815 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009816 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03009817 kvm_mmu_sync_roots(vcpu);
Paolo Bonzini727a7e22020-03-05 03:52:50 -05009818 if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu))
9819 kvm_mmu_load_pgd(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009820 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
Sean Christopherson77809382020-03-20 14:28:18 -07009821 kvm_vcpu_flush_tlb_all(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009822
9823 /* Flushing all ASIDs flushes the current ASID... */
9824 kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
9825 }
Sean Christopherson40e5f9082021-11-25 01:49:43 +00009826 kvm_service_local_tlb_flush_requests(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009827
Avi Kivitya8eeb042010-05-10 12:34:53 +03009828 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009829 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02009830 r = 0;
9831 goto out;
9832 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009833 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009834 if (is_guest_mode(vcpu)) {
9835 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9836 } else {
9837 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
9838 vcpu->mmio_needed = 0;
9839 r = 0;
9840 goto out;
9841 }
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01009842 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009843 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
9844 /* Page is swapped out. Do synthetic halt */
9845 vcpu->arch.apf.halted = true;
9846 r = 1;
9847 goto out;
9848 }
Glauber Costac9aaa892011-07-11 15:28:14 -04009849 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
9850 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009851 if (kvm_check_request(KVM_REQ_SMI, vcpu))
9852 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009853 if (kvm_check_request(KVM_REQ_NMI, vcpu))
9854 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009855 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009856 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009857 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009858 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07009859 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
9860 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
9861 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03009862 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07009863 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
9864 vcpu->run->eoi.vector =
9865 vcpu->arch.pending_ioapic_eoi;
9866 r = 0;
9867 goto out;
9868 }
9869 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08009870 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
9871 vcpu_scan_ioapic(vcpu);
Liran Alone40ff1d2018-03-21 02:50:31 +02009872 if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu))
9873 vcpu_load_eoi_exitmap(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009874 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
9875 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03009876 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
9877 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9878 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
9879 r = 0;
9880 goto out;
9881 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03009882 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
9883 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9884 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
9885 r = 0;
9886 goto out;
9887 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03009888 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009889 struct kvm_vcpu_hv *hv_vcpu = to_hv_vcpu(vcpu);
9890
Andrey Smetanindb3975712015-11-10 15:36:35 +03009891 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009892 vcpu->run->hyperv = hv_vcpu->exit;
Andrey Smetanindb3975712015-11-10 15:36:35 +03009893 r = 0;
9894 goto out;
9895 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03009896
9897 /*
9898 * KVM_REQ_HV_STIMER has to be processed after
9899 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
9900 * depend on the guest clock being up-to-date
9901 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03009902 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
9903 kvm_hv_process_stimers(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009904 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
9905 kvm_vcpu_update_apicv(vcpu);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02009906 if (kvm_check_request(KVM_REQ_APF_READY, vcpu))
9907 kvm_check_async_pf_completion(vcpu);
Alexander Graf1a1552542020-09-25 16:34:21 +02009908 if (kvm_check_request(KVM_REQ_MSR_FILTER_CHANGED, vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009909 static_call(kvm_x86_msr_filter_changed)(vcpu);
Makarand Sonarea85863c2021-02-12 16:50:12 -08009910
9911 if (kvm_check_request(KVM_REQ_UPDATE_CPU_DIRTY_LOGGING, vcpu))
9912 static_call(kvm_x86_update_cpu_dirty_logging)(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02009913 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009914
David Woodhouse40da8cc2020-12-09 20:08:30 +00009915 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win ||
9916 kvm_xen_has_interrupt(vcpu)) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01009917 ++vcpu->stat.req_event;
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009918 r = kvm_apic_accept_events(vcpu);
9919 if (r < 0) {
9920 r = 0;
9921 goto out;
9922 }
Jan Kiszka66450a22013-03-13 12:42:34 +01009923 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
9924 r = 1;
9925 goto out;
9926 }
9927
Jim Mattsona5f69092021-06-04 10:26:03 -07009928 r = inject_pending_event(vcpu, &req_immediate_exit);
9929 if (r < 0) {
9930 r = 0;
9931 goto out;
9932 }
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009933 if (req_int_win)
Jason Baronb36464772021-01-14 22:27:56 -05009934 static_call(kvm_x86_enable_irq_window)(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03009935
Avi Kivity3842d132010-07-27 12:30:24 +03009936 if (kvm_lapic_enabled(vcpu)) {
9937 update_cr8_intercept(vcpu);
9938 kvm_lapic_sync_to_vapic(vcpu);
9939 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009940 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009941
Avi Kivityd8368af2012-05-14 18:07:56 +03009942 r = kvm_mmu_reload(vcpu);
9943 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009944 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03009945 }
9946
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009947 preempt_disable();
9948
Jason Baronb36464772021-01-14 22:27:56 -05009949 static_call(kvm_x86_prepare_guest_switch)(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009950
9951 /*
9952 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
9953 * IPI are then delayed after guest entry, which ensures that they
9954 * result in virtual interrupt delivery.
9955 */
9956 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009957 vcpu->mode = IN_GUEST_MODE;
9958
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009959 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
9960
Lan Tianyu0f127d12016-03-13 11:10:29 +08009961 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009962 * 1) We should set ->mode before checking ->requests. Please see
Andrew Jonescde9af62017-04-26 22:32:24 +02009963 * the comment in kvm_vcpu_exiting_guest_mode().
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009964 *
Luwei Kang81b01662019-01-31 16:52:02 +08009965 * 2) For APICv, we should set ->mode before checking PID.ON. This
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009966 * pairs with the memory barrier implicit in pi_test_and_set_on
9967 * (see vmx_deliver_posted_interrupt).
9968 *
9969 * 3) This also orders the write to mode from any reads to the page
9970 * tables done while the VCPU is running. Please see the comment
9971 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009972 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009973 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009974
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009975 /*
9976 * This handles the case where a posted interrupt was
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05009977 * notified with kvm_vcpu_kick. Assigned devices can
9978 * use the POSTED_INTR_VECTOR even if APICv is disabled,
9979 * so do it even if APICv is disabled on this vCPU.
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009980 */
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05009981 if (kvm_lapic_enabled(vcpu))
9982 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009983
Wanpeng Li5a9f5442020-04-28 14:23:26 +08009984 if (kvm_vcpu_exit_request(vcpu)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009985 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009986 smp_wmb();
9987 local_irq_enable();
9988 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009989 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009990 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009991 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009992 }
9993
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009994 if (req_immediate_exit) {
9995 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009996 static_call(kvm_x86_request_immediate_exit)(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009997 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03009998
Sean Christopherson2620fe22020-01-17 11:30:51 -08009999 fpregs_assert_state_consistent();
10000 if (test_thread_flag(TIF_NEED_FPU_LOAD))
10001 switch_fpu_return();
Rik van Riel5f409e22019-04-03 18:41:52 +020010002
Jing Liuec5be882022-01-05 04:35:23 -080010003 if (vcpu->arch.guest_fpu.xfd_err)
10004 wrmsrl(MSR_IA32_XFD_ERR, vcpu->arch.guest_fpu.xfd_err);
10005
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010006 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010007 set_debugreg(0, 7);
10008 set_debugreg(vcpu->arch.eff_db[0], 0);
10009 set_debugreg(vcpu->arch.eff_db[1], 1);
10010 set_debugreg(vcpu->arch.eff_db[2], 2);
10011 set_debugreg(vcpu->arch.eff_db[3], 3);
Lai Jiangshanf85d4012021-06-29 01:26:32 +080010012 } else if (unlikely(hw_breakpoint_active())) {
10013 set_debugreg(0, 7);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010014 }
10015
Paolo Bonzinid89d04a2021-02-02 10:44:23 -050010016 for (;;) {
Sean Christophersonee49a892021-10-21 17:49:25 -070010017 /*
10018 * Assert that vCPU vs. VM APICv state is consistent. An APICv
10019 * update must kick and wait for all vCPUs before toggling the
10020 * per-VM state, and responsing vCPUs must wait for the update
10021 * to complete before servicing KVM_REQ_APICV_UPDATE.
10022 */
10023 WARN_ON_ONCE(kvm_apicv_activated(vcpu->kvm) != kvm_vcpu_apicv_active(vcpu));
10024
Paolo Bonzinid89d04a2021-02-02 10:44:23 -050010025 exit_fastpath = static_call(kvm_x86_run)(vcpu);
10026 if (likely(exit_fastpath != EXIT_FASTPATH_REENTER_GUEST))
10027 break;
10028
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -050010029 if (kvm_lapic_enabled(vcpu))
10030 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Paolo Bonzinide7cd3f2021-10-20 06:27:36 -040010031
10032 if (unlikely(kvm_vcpu_exit_request(vcpu))) {
Paolo Bonzinid89d04a2021-02-02 10:44:23 -050010033 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
10034 break;
10035 }
Paolo Bonzinide7cd3f2021-10-20 06:27:36 -040010036 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010037
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010038 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +010010039 * Do this here before restoring debug registers on the host. And
10040 * since we do this before handling the vmexit, a DR access vmexit
10041 * can (a) read the correct value of the debug registers, (b) set
10042 * KVM_DEBUGREG_WONT_EXIT again.
10043 */
10044 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +010010045 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
Jason Baronb36464772021-01-14 22:27:56 -050010046 static_call(kvm_x86_sync_dirty_debug_regs)(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +010010047 kvm_update_dr0123(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +010010048 kvm_update_dr7(vcpu);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +010010049 }
10050
10051 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010052 * If the guest has used debug registers, at least dr7
10053 * will be disabled while returning to the host.
10054 * If we don't have active breakpoints in the host, we don't
10055 * care about the messed up debug address registers. But if
10056 * we have some of them active, restore the old state.
10057 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +010010058 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020010059 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010060
Jim Mattsonc9671182020-06-03 16:56:23 -070010061 vcpu->arch.last_vmentry_cpu = vcpu->cpu;
Haozhong Zhang4ba76532015-10-20 15:39:07 +080010062 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -100010063
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +080010064 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +030010065 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +080010066
Kevin Tianb5274b12022-01-05 04:35:32 -080010067 /*
10068 * Sync xfd before calling handle_exit_irqoff() which may
10069 * rely on the fact that guest_fpu::xfd is up-to-date (e.g.
10070 * in #NM irqoff handler).
10071 */
10072 if (vcpu->arch.xfd_no_write_intercept)
10073 fpu_sync_guest_vmexit_xfd_state();
10074
Jason Baronb36464772021-01-14 22:27:56 -050010075 static_call(kvm_x86_handle_exit_irqoff)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010076
Jing Liuec5be882022-01-05 04:35:23 -080010077 if (vcpu->arch.guest_fpu.xfd_err)
10078 wrmsrl(MSR_IA32_XFD_ERR, 0);
10079
Sean Christophersond7a08882019-07-10 09:07:34 -070010080 /*
10081 * Consume any pending interrupts, including the possible source of
10082 * VM-Exit on SVM and any ticks that occur between VM-Exit and now.
10083 * An instruction is required after local_irq_enable() to fully unblock
10084 * interrupts on processors that implement an interrupt shadow, the
10085 * stat.exits increment will do nicely.
10086 */
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010087 kvm_before_interrupt(vcpu);
Sean Christophersond7a08882019-07-10 09:07:34 -070010088 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010089 ++vcpu->stat.exits;
Sean Christophersond7a08882019-07-10 09:07:34 -070010090 local_irq_disable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010091 kvm_after_interrupt(vcpu);
10092
Wanpeng Li16045712021-05-04 17:27:30 -070010093 /*
10094 * Wait until after servicing IRQs to account guest time so that any
10095 * ticks that occurred while running the guest are properly accounted
10096 * to the guest. Waiting until IRQs are enabled degrades the accuracy
10097 * of accounting via context tracking, but the loss of accuracy is
10098 * acceptable for all known use cases.
10099 */
10100 vtime_account_guest_exit();
10101
Wanpeng Liec0671d2019-05-20 16:18:08 +080010102 if (lapic_in_kernel(vcpu)) {
10103 s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta;
10104 if (delta != S64_MIN) {
10105 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta);
10106 vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN;
10107 }
10108 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010109
Paolo Bonzinif2485b32016-06-15 15:23:11 +020010110 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010111 preempt_enable();
10112
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010113 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -030010114
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010115 /*
10116 * Profile KVM exit RIPs:
10117 */
10118 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010119 unsigned long rip = kvm_rip_read(vcpu);
10120 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010121 }
10122
Zachary Amsdencc578282012-02-03 15:43:50 -020010123 if (unlikely(vcpu->arch.tsc_always_catchup))
10124 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +020010125
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +030010126 if (vcpu->arch.apic_attention)
10127 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +020010128
Jason Baronb36464772021-01-14 22:27:56 -050010129 r = static_call(kvm_x86_handle_exit)(vcpu, exit_fastpath);
Michael S. Tsirkind905c062012-06-24 19:25:00 +030010130 return r;
10131
10132cancel_injection:
Sean Christopherson8081ad02020-04-22 19:25:40 -070010133 if (req_immediate_exit)
10134 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -050010135 static_call(kvm_x86_cancel_injection)(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +030010136 if (unlikely(vcpu->arch.apic_attention))
10137 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010138out:
Marcelo Tosattid7690172008-09-08 15:23:48 -030010139 return r;
10140}
10141
Paolo Bonzini362c6982015-02-06 12:48:04 +010010142static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
10143{
Feng Wubf9f6ac2015-09-18 22:29:55 +080010144 if (!kvm_arch_vcpu_runnable(vcpu) &&
Jason Baronb36464772021-01-14 22:27:56 -050010145 (!kvm_x86_ops.pre_block || static_call(kvm_x86_pre_block)(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010146 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Sean Christophersoncdafece2021-10-08 19:12:11 -070010147 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
10148 kvm_vcpu_halt(vcpu);
10149 else
10150 kvm_vcpu_block(vcpu);
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010151 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010152
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010153 if (kvm_x86_ops.post_block)
Jason Baronb36464772021-01-14 22:27:56 -050010154 static_call(kvm_x86_post_block)(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010155
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010156 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
10157 return 1;
10158 }
Gleb Natapov09cec752009-03-23 15:11:44 +020010159
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010160 if (kvm_apic_accept_events(vcpu) < 0)
10161 return 0;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010162 switch(vcpu->arch.mp_state) {
10163 case KVM_MP_STATE_HALTED:
Tom Lendacky647daca2021-01-04 14:20:01 -060010164 case KVM_MP_STATE_AP_RESET_HOLD:
Paolo Bonzini362c6982015-02-06 12:48:04 +010010165 vcpu->arch.pv.pv_unhalted = false;
10166 vcpu->arch.mp_state =
10167 KVM_MP_STATE_RUNNABLE;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050010168 fallthrough;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010169 case KVM_MP_STATE_RUNNABLE:
10170 vcpu->arch.apf.halted = false;
10171 break;
10172 case KVM_MP_STATE_INIT_RECEIVED:
10173 break;
10174 default:
10175 return -EINTR;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010176 }
10177 return 1;
10178}
10179
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010180static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
10181{
Paolo Bonzini56083bd2020-04-17 10:32:53 -040010182 if (is_guest_mode(vcpu))
Sean Christophersoncb6a32c2021-03-02 09:45:14 -080010183 kvm_check_nested_events(vcpu);
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +010010184
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010185 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
10186 !vcpu->arch.apf.halted);
10187}
10188
Paolo Bonzini362c6982015-02-06 12:48:04 +010010189static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -030010190{
10191 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010192 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -030010193
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010194 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010195 vcpu->arch.l1tf_flush_l1d = true;
Marcelo Tosattid7690172008-09-08 15:23:48 -030010196
Paolo Bonzini362c6982015-02-06 12:48:04 +010010197 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +020010198 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +030010199 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010200 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +010010201 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010202 }
10203
Gleb Natapov09cec752009-03-23 15:11:44 +020010204 if (r <= 0)
10205 break;
10206
Marcelo Tosatti084071d2021-05-25 10:41:17 -030010207 kvm_clear_request(KVM_REQ_UNBLOCK, vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +020010208 if (kvm_cpu_has_pending_timer(vcpu))
10209 kvm_inject_pending_timer_irqs(vcpu);
10210
Matt Gingell782d4222015-11-16 15:26:00 -080010211 if (dm_request_for_irq_injection(vcpu) &&
10212 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +020010213 r = 0;
10214 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +020010215 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010216 break;
Gleb Natapov09cec752009-03-23 15:11:44 +020010217 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020010218
Thomas Gleixnerf3020b82020-07-30 09:19:01 +020010219 if (__xfer_to_guest_mode_work_pending()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010220 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020010221 r = xfer_to_guest_mode_handle_work(vcpu);
10222 if (r)
10223 return r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010224 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -030010225 }
10226 }
10227
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010228 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010229
10230 return r;
10231}
10232
Gleb Natapov716d51a2012-09-03 15:24:26 +030010233static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
10234{
10235 int r;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010236
Gleb Natapov716d51a2012-09-03 15:24:26 +030010237 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Sean Christopherson0ce97a22018-08-23 13:56:52 -070010238 r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010239 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010240 return r;
Gleb Natapov716d51a2012-09-03 15:24:26 +030010241}
10242
10243static int complete_emulated_pio(struct kvm_vcpu *vcpu)
10244{
10245 BUG_ON(!vcpu->arch.pio.count);
10246
10247 return complete_emulated_io(vcpu);
10248}
10249
Avi Kivityf78146b2012-04-18 19:22:47 +030010250/*
10251 * Implements the following, as a state machine:
10252 *
10253 * read:
10254 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010255 * for each mmio piece in the fragment
10256 * write gpa, len
10257 * exit
10258 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +030010259 * execute insn
10260 *
10261 * write:
10262 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010263 * for each mmio piece in the fragment
10264 * write gpa, len
10265 * copy data
10266 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +030010267 */
Gleb Natapov716d51a2012-09-03 15:24:26 +030010268static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +020010269{
10270 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +030010271 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010272 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +020010273
Gleb Natapov716d51a2012-09-03 15:24:26 +030010274 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +020010275
Gleb Natapov716d51a2012-09-03 15:24:26 +030010276 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010277 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
10278 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010279 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010280 memcpy(frag->data, run->mmio.data, len);
10281
10282 if (frag->len <= 8) {
10283 /* Switch to the next fragment. */
10284 frag++;
10285 vcpu->mmio_cur_fragment++;
10286 } else {
10287 /* Go forward to the next mmio piece. */
10288 frag->data += len;
10289 frag->gpa += len;
10290 frag->len -= len;
10291 }
10292
Andrew Honiga08d3b32014-02-27 19:35:14 +010010293 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +030010294 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +020010295
10296 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +020010297 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +030010298 return 1;
10299 vcpu->mmio_read_completed = 1;
10300 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +020010301 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010302
Gleb Natapov716d51a2012-09-03 15:24:26 +030010303 run->exit_reason = KVM_EXIT_MMIO;
10304 run->mmio.phys_addr = frag->gpa;
10305 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010306 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
10307 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010308 run->mmio.is_write = vcpu->mmio_is_write;
10309 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
10310 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +020010311}
10312
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010313/* Swap (qemu) user FPU context for the guest FPU context. */
10314static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
10315{
Tom Lendackyed02b212020-12-10 11:10:01 -060010316 /*
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010317 * Exclude PKRU from restore as restored separately in
10318 * kvm_x86_ops.run().
Tom Lendackyed02b212020-12-10 11:10:01 -060010319 */
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010320 fpu_swap_kvm_fpstate(&vcpu->arch.guest_fpu, true);
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010321 trace_kvm_fpu(1);
10322}
10323
10324/* When vcpu_run ends, restore user space FPU context. */
10325static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
10326{
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010327 fpu_swap_kvm_fpstate(&vcpu->arch.guest_fpu, false);
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010328 ++vcpu->stat.fpu_reload;
10329 trace_kvm_fpu(0);
10330}
10331
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010332int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010333{
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010334 struct kvm_run *kvm_run = vcpu->run;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010335 int r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010336
Christoffer Dallaccb7572017-12-04 21:35:25 +010010337 vcpu_load(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010338 kvm_sigset_activate(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +080010339 kvm_run->flags = 0;
Peter Xu5663d8f2017-12-12 17:15:02 +010010340 kvm_load_guest_fpu(vcpu);
10341
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010342 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
Jan H. Schönherr2f173d22017-09-06 18:34:06 +020010343 if (kvm_run->immediate_exit) {
10344 r = -EINTR;
10345 goto out;
10346 }
Sean Christophersonc91d4492021-10-08 19:12:10 -070010347 kvm_vcpu_block(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010348 if (kvm_apic_accept_events(vcpu) < 0) {
10349 r = 0;
10350 goto out;
10351 }
Radim Krčmář72875d82017-04-26 22:32:19 +020010352 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010353 r = -EAGAIN;
Jan H. Schönherra0595002017-09-06 00:27:19 +020010354 if (signal_pending(current)) {
10355 r = -EINTR;
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010356 kvm_run->exit_reason = KVM_EXIT_INTR;
Jan H. Schönherra0595002017-09-06 00:27:19 +020010357 ++vcpu->stat.signal_exits;
10358 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010359 goto out;
10360 }
10361
Sean Christophersone489a4a2021-07-02 15:04:29 -070010362 if ((kvm_run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) ||
10363 (kvm_run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS)) {
Ken Hofsass01643c52018-01-31 16:03:36 -080010364 r = -EINVAL;
10365 goto out;
10366 }
10367
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010368 if (kvm_run->kvm_dirty_regs) {
Ken Hofsass01643c52018-01-31 16:03:36 -080010369 r = sync_regs(vcpu);
10370 if (r != 0)
10371 goto out;
10372 }
10373
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010374 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +020010375 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +010010376 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
10377 r = -EINVAL;
10378 goto out;
10379 }
10380 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010381
Gleb Natapov716d51a2012-09-03 15:24:26 +030010382 if (unlikely(vcpu->arch.complete_userspace_io)) {
10383 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
10384 vcpu->arch.complete_userspace_io = NULL;
10385 r = cui(vcpu);
10386 if (r <= 0)
Peter Xu5663d8f2017-12-12 17:15:02 +010010387 goto out;
Gleb Natapov716d51a2012-09-03 15:24:26 +030010388 } else
10389 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +020010390
Paolo Bonzini460df4c2017-02-08 11:50:15 +010010391 if (kvm_run->immediate_exit)
10392 r = -EINTR;
10393 else
10394 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010395
10396out:
Peter Xu5663d8f2017-12-12 17:15:02 +010010397 kvm_put_guest_fpu(vcpu);
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010398 if (kvm_run->kvm_valid_regs)
Ken Hofsass01643c52018-01-31 16:03:36 -080010399 store_regs(vcpu);
Marcelo Tosattif1d86e42010-05-03 23:04:27 -030010400 post_kvm_run_save(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010401 kvm_sigset_deactivate(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010402
Christoffer Dallaccb7572017-12-04 21:35:25 +010010403 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010404 return r;
10405}
10406
Ken Hofsass01643c52018-01-31 16:03:36 -080010407static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010408{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010409 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
10410 /*
10411 * We are here if userspace calls get_regs() in the middle of
10412 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +080010413 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010414 * that usually, but some bad designed PV devices (vmware
10415 * backdoor interface) need this to work
10416 */
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010417 emulator_writeback_register_cache(vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010418 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10419 }
Sean Christophersonde3cd112019-04-30 10:36:17 -070010420 regs->rax = kvm_rax_read(vcpu);
10421 regs->rbx = kvm_rbx_read(vcpu);
10422 regs->rcx = kvm_rcx_read(vcpu);
10423 regs->rdx = kvm_rdx_read(vcpu);
10424 regs->rsi = kvm_rsi_read(vcpu);
10425 regs->rdi = kvm_rdi_read(vcpu);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010426 regs->rsp = kvm_rsp_read(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010427 regs->rbp = kvm_rbp_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010428#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010429 regs->r8 = kvm_r8_read(vcpu);
10430 regs->r9 = kvm_r9_read(vcpu);
10431 regs->r10 = kvm_r10_read(vcpu);
10432 regs->r11 = kvm_r11_read(vcpu);
10433 regs->r12 = kvm_r12_read(vcpu);
10434 regs->r13 = kvm_r13_read(vcpu);
10435 regs->r14 = kvm_r14_read(vcpu);
10436 regs->r15 = kvm_r15_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010437#endif
10438
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010439 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +020010440 regs->rflags = kvm_get_rflags(vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010441}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010442
Ken Hofsass01643c52018-01-31 16:03:36 -080010443int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10444{
10445 vcpu_load(vcpu);
10446 __get_regs(vcpu, regs);
Christoffer Dall1fc9b762017-12-04 21:35:26 +010010447 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010448 return 0;
10449}
10450
Ken Hofsass01643c52018-01-31 16:03:36 -080010451static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010452{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010453 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
10454 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10455
Sean Christophersonde3cd112019-04-30 10:36:17 -070010456 kvm_rax_write(vcpu, regs->rax);
10457 kvm_rbx_write(vcpu, regs->rbx);
10458 kvm_rcx_write(vcpu, regs->rcx);
10459 kvm_rdx_write(vcpu, regs->rdx);
10460 kvm_rsi_write(vcpu, regs->rsi);
10461 kvm_rdi_write(vcpu, regs->rdi);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010462 kvm_rsp_write(vcpu, regs->rsp);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010463 kvm_rbp_write(vcpu, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010464#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010465 kvm_r8_write(vcpu, regs->r8);
10466 kvm_r9_write(vcpu, regs->r9);
10467 kvm_r10_write(vcpu, regs->r10);
10468 kvm_r11_write(vcpu, regs->r11);
10469 kvm_r12_write(vcpu, regs->r12);
10470 kvm_r13_write(vcpu, regs->r13);
10471 kvm_r14_write(vcpu, regs->r14);
10472 kvm_r15_write(vcpu, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010473#endif
10474
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010475 kvm_rip_write(vcpu, regs->rip);
Wanpeng Lid73235d2017-12-07 00:30:08 -080010476 kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010477
Jan Kiszkab4f14ab2008-04-30 17:59:04 +020010478 vcpu->arch.exception.pending = false;
10479
Avi Kivity3842d132010-07-27 12:30:24 +030010480 kvm_make_request(KVM_REQ_EVENT, vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010481}
Avi Kivity3842d132010-07-27 12:30:24 +030010482
Ken Hofsass01643c52018-01-31 16:03:36 -080010483int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10484{
10485 vcpu_load(vcpu);
10486 __set_regs(vcpu, regs);
Christoffer Dall875656f2017-12-04 21:35:27 +010010487 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010488 return 0;
10489}
10490
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010491void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
10492{
10493 struct kvm_segment cs;
10494
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010495 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010496 *db = cs.db;
10497 *l = cs.l;
10498}
10499EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
10500
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010501static void __get_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010502{
Gleb Natapov89a27f42010-02-16 10:51:48 +020010503 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010504
Tom Lendacky52657132020-12-10 11:09:59 -060010505 if (vcpu->arch.guest_state_protected)
10506 goto skip_protected_regs;
10507
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010508 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10509 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10510 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10511 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10512 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10513 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010514
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010515 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10516 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010517
Jason Baronb36464772021-01-14 22:27:56 -050010518 static_call(kvm_x86_get_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010519 sregs->idt.limit = dt.size;
10520 sregs->idt.base = dt.address;
Jason Baronb36464772021-01-14 22:27:56 -050010521 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010522 sregs->gdt.limit = dt.size;
10523 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010524
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010525 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +020010526 sregs->cr3 = kvm_read_cr3(vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010527
10528skip_protected_regs:
10529 sregs->cr0 = kvm_read_cr0(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +020010530 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010531 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +020010532 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010533 sregs->apic_base = kvm_get_apic_base(vcpu);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010534}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010535
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010536static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10537{
10538 __get_sregs_common(vcpu, sregs);
10539
10540 if (vcpu->arch.guest_state_protected)
10541 return;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010542
Liran Alon04140b42018-03-23 03:01:31 +030010543 if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +030010544 set_bit(vcpu->arch.interrupt.nr,
10545 (unsigned long *)sregs->interrupt_bitmap);
Ken Hofsass01643c52018-01-31 16:03:36 -080010546}
Gleb Natapov16d7a192009-04-21 17:45:10 +030010547
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010548static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10549{
10550 int i;
10551
10552 __get_sregs_common(vcpu, (struct kvm_sregs *)sregs2);
10553
10554 if (vcpu->arch.guest_state_protected)
10555 return;
10556
10557 if (is_pae_paging(vcpu)) {
10558 for (i = 0 ; i < 4 ; i++)
10559 sregs2->pdptrs[i] = kvm_pdptr_read(vcpu, i);
10560 sregs2->flags |= KVM_SREGS2_FLAGS_PDPTRS_VALID;
10561 }
10562}
10563
Ken Hofsass01643c52018-01-31 16:03:36 -080010564int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
10565 struct kvm_sregs *sregs)
10566{
10567 vcpu_load(vcpu);
10568 __get_sregs(vcpu, sregs);
Christoffer Dallbcdec412017-12-04 21:35:28 +010010569 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010570 return 0;
10571}
10572
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010573int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
10574 struct kvm_mp_state *mp_state)
10575{
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010576 int r;
10577
Christoffer Dallfd232562017-12-04 21:35:30 +010010578 vcpu_load(vcpu);
Sean Christophersonf958bd22019-12-09 12:19:31 -080010579 if (kvm_mpx_supported())
10580 kvm_load_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010581
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010582 r = kvm_apic_accept_events(vcpu);
10583 if (r < 0)
10584 goto out;
10585 r = 0;
10586
Tom Lendacky647daca2021-01-04 14:20:01 -060010587 if ((vcpu->arch.mp_state == KVM_MP_STATE_HALTED ||
10588 vcpu->arch.mp_state == KVM_MP_STATE_AP_RESET_HOLD) &&
10589 vcpu->arch.pv.pv_unhalted)
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +053010590 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
10591 else
10592 mp_state->mp_state = vcpu->arch.mp_state;
10593
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010594out:
Sean Christophersonf958bd22019-12-09 12:19:31 -080010595 if (kvm_mpx_supported())
10596 kvm_put_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010597 vcpu_put(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010598 return r;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010599}
10600
10601int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
10602 struct kvm_mp_state *mp_state)
10603{
Christoffer Dalle83dff52017-12-04 21:35:31 +010010604 int ret = -EINVAL;
10605
10606 vcpu_load(vcpu);
10607
Paolo Bonzinibce87cc2016-01-08 13:48:51 +010010608 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +010010609 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
Christoffer Dalle83dff52017-12-04 21:35:31 +010010610 goto out;
Jan Kiszka66450a22013-03-13 12:42:34 +010010611
Liran Alon27cbe7d2019-11-11 11:16:40 +020010612 /*
10613 * KVM_MP_STATE_INIT_RECEIVED means the processor is in
10614 * INIT state; latched init should be reported using
10615 * KVM_SET_VCPU_EVENTS, so reject it here.
10616 */
10617 if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) &&
David Hildenbrand28bf2882017-03-23 11:46:03 +010010618 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
10619 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
Christoffer Dalle83dff52017-12-04 21:35:31 +010010620 goto out;
David Hildenbrand28bf2882017-03-23 11:46:03 +010010621
Jan Kiszka66450a22013-03-13 12:42:34 +010010622 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
10623 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
10624 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
10625 } else
10626 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +030010627 kvm_make_request(KVM_REQ_EVENT, vcpu);
Christoffer Dalle83dff52017-12-04 21:35:31 +010010628
10629 ret = 0;
10630out:
10631 vcpu_put(vcpu);
10632 return ret;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010633}
10634
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010635int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
10636 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010637{
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010638 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010639 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010640
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010641 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +020010642
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010643 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010644 has_error_code, error_code);
Sean Christopherson10517782019-08-27 14:40:35 -070010645 if (ret) {
10646 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
10647 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
10648 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010649 return 0;
Sean Christopherson10517782019-08-27 14:40:35 -070010650 }
Gleb Natapovc6975182010-02-18 12:15:01 +020010651
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010652 kvm_rip_write(vcpu, ctxt->eip);
10653 kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010654 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +020010655}
10656EXPORT_SYMBOL_GPL(kvm_task_switch);
10657
Sean Christophersonee69c922020-10-06 18:44:16 -070010658static bool kvm_is_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Lan Tianyuf2981032017-12-14 03:01:52 -050010659{
Tianyu Lan37b95952018-01-16 17:34:07 +080010660 if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) {
Lan Tianyuf2981032017-12-14 03:01:52 -050010661 /*
10662 * When EFER.LME and CR0.PG are set, the processor is in
10663 * 64-bit mode (though maybe in a 32-bit code segment).
10664 * CR4.PAE and EFER.LMA must be set.
10665 */
Sean Christophersonee69c922020-10-06 18:44:16 -070010666 if (!(sregs->cr4 & X86_CR4_PAE) || !(sregs->efer & EFER_LMA))
10667 return false;
Sean Christophersonca29e142021-02-03 16:01:12 -080010668 if (kvm_vcpu_is_illegal_gpa(vcpu, sregs->cr3))
Paolo Bonzinic1c35cf2020-11-13 08:30:38 -050010669 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010670 } else {
10671 /*
10672 * Not in 64-bit mode: EFER.LMA is clear and the code
10673 * segment cannot be 64-bit.
10674 */
10675 if (sregs->efer & EFER_LMA || sregs->cs.l)
Sean Christophersonee69c922020-10-06 18:44:16 -070010676 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010677 }
10678
Sean Christophersonee69c922020-10-06 18:44:16 -070010679 return kvm_is_valid_cr4(vcpu, sregs->cr4);
Lan Tianyuf2981032017-12-14 03:01:52 -050010680}
10681
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010682static int __set_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs,
10683 int *mmu_reset_needed, bool update_pdptrs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010684{
Jan Kiszka58cb6282014-01-24 16:48:44 +010010685 struct msr_data apic_base_msr;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010686 int idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +020010687 struct desc_ptr dt;
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010688
Sean Christophersonee69c922020-10-06 18:44:16 -070010689 if (!kvm_is_valid_sregs(vcpu, sregs))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010690 return -EINVAL;
Lan Tianyuf2981032017-12-14 03:01:52 -050010691
Jim Mattsond3802282017-08-10 10:14:13 -070010692 apic_base_msr.data = sregs->apic_base;
10693 apic_base_msr.host_initiated = true;
10694 if (kvm_set_apic_base(vcpu, &apic_base_msr))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010695 return -EINVAL;
Petr Matousek6d1068b2012-11-06 19:24:07 +010010696
Tom Lendacky52657132020-12-10 11:09:59 -060010697 if (vcpu->arch.guest_state_protected)
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010698 return 0;
Tom Lendacky52657132020-12-10 11:09:59 -060010699
Gleb Natapov89a27f42010-02-16 10:51:48 +020010700 dt.size = sregs->idt.limit;
10701 dt.address = sregs->idt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010702 static_call(kvm_x86_set_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010703 dt.size = sregs->gdt.limit;
10704 dt.address = sregs->gdt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010705 static_call(kvm_x86_set_gdt)(vcpu, &dt);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010706
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010707 vcpu->arch.cr2 = sregs->cr2;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010708 *mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +020010709 vcpu->arch.cr3 = sregs->cr3;
Lai Jiangshan3883bc9d2021-11-08 20:44:02 +080010710 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
Michael Roth405329f2021-12-16 11:13:54 -060010711 static_call_cond(kvm_x86_post_set_cr3)(vcpu, sregs->cr3);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010712
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010713 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010714
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010715 *mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Jason Baronb36464772021-01-14 22:27:56 -050010716 static_call(kvm_x86_set_efer)(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010717
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010718 *mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Jason Baronb36464772021-01-14 22:27:56 -050010719 static_call(kvm_x86_set_cr0)(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +000010720 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010721
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010722 *mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Jason Baronb36464772021-01-14 22:27:56 -050010723 static_call(kvm_x86_set_cr4)(vcpu, sregs->cr4);
Xiao Guangrong63f42e02011-01-12 15:39:18 +080010724
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010725 if (update_pdptrs) {
10726 idx = srcu_read_lock(&vcpu->kvm->srcu);
10727 if (is_pae_paging(vcpu)) {
Lai Jiangshan2df4a5e2021-11-24 20:20:52 +080010728 load_pdptrs(vcpu, kvm_read_cr3(vcpu));
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010729 *mmu_reset_needed = 1;
10730 }
10731 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Marcelo Tosatti7c93be442009-10-26 16:48:33 -020010732 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010733
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010734 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10735 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10736 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10737 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10738 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10739 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010740
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010741 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10742 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010743
Mikhail Ershov5f0269f2009-08-03 14:58:25 +030010744 update_cr8_intercept(vcpu);
10745
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010746 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +030010747 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010748 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +020010749 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010750 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10751
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010752 return 0;
10753}
10754
10755static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10756{
10757 int pending_vec, max_bits;
10758 int mmu_reset_needed = 0;
10759 int ret = __set_sregs_common(vcpu, sregs, &mmu_reset_needed, true);
10760
10761 if (ret)
10762 return ret;
10763
10764 if (mmu_reset_needed)
10765 kvm_mmu_reset_context(vcpu);
10766
Tom Lendacky52657132020-12-10 11:09:59 -060010767 max_bits = KVM_NR_INTERRUPTS;
10768 pending_vec = find_first_bit(
10769 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010770
Tom Lendacky52657132020-12-10 11:09:59 -060010771 if (pending_vec < max_bits) {
10772 kvm_queue_interrupt(vcpu, pending_vec, false);
10773 pr_debug("Set back pending irq %d\n", pending_vec);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010774 kvm_make_request(KVM_REQ_EVENT, vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010775 }
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010776 return 0;
10777}
Tom Lendacky52657132020-12-10 11:09:59 -060010778
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010779static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10780{
10781 int mmu_reset_needed = 0;
10782 bool valid_pdptrs = sregs2->flags & KVM_SREGS2_FLAGS_PDPTRS_VALID;
10783 bool pae = (sregs2->cr0 & X86_CR0_PG) && (sregs2->cr4 & X86_CR4_PAE) &&
10784 !(sregs2->efer & EFER_LMA);
10785 int i, ret;
Avi Kivity3842d132010-07-27 12:30:24 +030010786
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010787 if (sregs2->flags & ~KVM_SREGS2_FLAGS_PDPTRS_VALID)
10788 return -EINVAL;
10789
10790 if (valid_pdptrs && (!pae || vcpu->arch.guest_state_protected))
10791 return -EINVAL;
10792
10793 ret = __set_sregs_common(vcpu, (struct kvm_sregs *)sregs2,
10794 &mmu_reset_needed, !valid_pdptrs);
10795 if (ret)
10796 return ret;
10797
10798 if (valid_pdptrs) {
10799 for (i = 0; i < 4 ; i++)
10800 kvm_pdptr_write(vcpu, i, sregs2->pdptrs[i]);
10801
10802 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
10803 mmu_reset_needed = 1;
Maxim Levitsky158a48e2021-06-07 12:02:03 +030010804 vcpu->arch.pdptrs_from_userspace = true;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010805 }
10806 if (mmu_reset_needed)
10807 kvm_mmu_reset_context(vcpu);
10808 return 0;
Ken Hofsass01643c52018-01-31 16:03:36 -080010809}
10810
10811int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
10812 struct kvm_sregs *sregs)
10813{
10814 int ret;
10815
10816 vcpu_load(vcpu);
10817 ret = __set_sregs(vcpu, sregs);
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010818 vcpu_put(vcpu);
10819 return ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010820}
10821
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010822static void kvm_arch_vcpu_guestdbg_update_apicv_inhibit(struct kvm *kvm)
10823{
10824 bool inhibit = false;
10825 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +000010826 unsigned long i;
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010827
10828 down_write(&kvm->arch.apicv_update_lock);
10829
10830 kvm_for_each_vcpu(i, vcpu, kvm) {
10831 if (vcpu->guest_debug & KVM_GUESTDBG_BLOCKIRQ) {
10832 inhibit = true;
10833 break;
10834 }
10835 }
10836 __kvm_request_apicv_update(kvm, !inhibit, APICV_INHIBIT_REASON_BLOCKIRQ);
10837 up_write(&kvm->arch.apicv_update_lock);
10838}
10839
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010840int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
10841 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010842{
Jan Kiszka355be0b2009-10-03 00:31:21 +020010843 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010844 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010845
Tom Lendacky8d4846b2020-12-10 11:09:43 -060010846 if (vcpu->arch.guest_state_protected)
10847 return -EINVAL;
10848
Christoffer Dall66b56562017-12-04 21:35:33 +010010849 vcpu_load(vcpu);
10850
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010851 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
10852 r = -EBUSY;
10853 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +030010854 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010855 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
10856 kvm_queue_exception(vcpu, DB_VECTOR);
10857 else
10858 kvm_queue_exception(vcpu, BP_VECTOR);
10859 }
10860
Jan Kiszka91586a32009-10-05 13:07:21 +020010861 /*
10862 * Read rflags as long as potentially injected trace flags are still
10863 * filtered out.
10864 */
10865 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010866
10867 vcpu->guest_debug = dbg->control;
10868 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
10869 vcpu->guest_debug = 0;
10870
10871 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010872 for (i = 0; i < KVM_NR_DB_REGS; ++i)
10873 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +020010874 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010875 } else {
10876 for (i = 0; i < KVM_NR_DB_REGS; i++)
10877 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010878 }
Jan Kiszkac8639012012-09-21 05:42:55 +020010879 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010880
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010881 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Yuan Yaoe87e46d2021-05-26 14:38:28 +080010882 vcpu->arch.singlestep_rip = kvm_get_linear_rip(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010883
Jan Kiszka91586a32009-10-05 13:07:21 +020010884 /*
10885 * Trigger an rflags update that will inject or remove the trace
10886 * flags.
10887 */
10888 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010889
Jason Baronb36464772021-01-14 22:27:56 -050010890 static_call(kvm_x86_update_exception_bitmap)(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010891
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010892 kvm_arch_vcpu_guestdbg_update_apicv_inhibit(vcpu->kvm);
10893
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010894 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010895
Avi Kivity2122ff52010-05-13 11:25:04 +030010896out:
Christoffer Dall66b56562017-12-04 21:35:33 +010010897 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010898 return r;
10899}
10900
10901/*
Zhang Xiantao8b006792007-11-16 13:05:55 +080010902 * Translate a guest virtual address to a guest physical address.
10903 */
10904int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
10905 struct kvm_translation *tr)
10906{
10907 unsigned long vaddr = tr->linear_address;
10908 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010909 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010910
Christoffer Dall1da5b612017-12-04 21:35:32 +010010911 vcpu_load(vcpu);
10912
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010913 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +020010914 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010915 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010916 tr->physical_address = gpa;
10917 tr->valid = gpa != UNMAPPED_GVA;
10918 tr->writeable = 1;
10919 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010920
Christoffer Dall1da5b612017-12-04 21:35:32 +010010921 vcpu_put(vcpu);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010922 return 0;
10923}
10924
Hollis Blanchardd0752062007-10-31 17:24:25 -050010925int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10926{
Christoffer Dall13931232017-12-04 21:35:34 +010010927 struct fxregs_state *fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010928
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010929 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -060010930 return 0;
10931
Christoffer Dall13931232017-12-04 21:35:34 +010010932 vcpu_load(vcpu);
10933
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010934 fxsave = &vcpu->arch.guest_fpu.fpstate->regs.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010935 memcpy(fpu->fpr, fxsave->st_space, 128);
10936 fpu->fcw = fxsave->cwd;
10937 fpu->fsw = fxsave->swd;
10938 fpu->ftwx = fxsave->twd;
10939 fpu->last_opcode = fxsave->fop;
10940 fpu->last_ip = fxsave->rip;
10941 fpu->last_dp = fxsave->rdp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010942 memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010943
Christoffer Dall13931232017-12-04 21:35:34 +010010944 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010945 return 0;
10946}
10947
10948int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10949{
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010950 struct fxregs_state *fxsave;
10951
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010952 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -060010953 return 0;
10954
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010955 vcpu_load(vcpu);
10956
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010957 fxsave = &vcpu->arch.guest_fpu.fpstate->regs.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010958
Hollis Blanchardd0752062007-10-31 17:24:25 -050010959 memcpy(fxsave->st_space, fpu->fpr, 128);
10960 fxsave->cwd = fpu->fcw;
10961 fxsave->swd = fpu->fsw;
10962 fxsave->twd = fpu->ftwx;
10963 fxsave->fop = fpu->last_opcode;
10964 fxsave->rip = fpu->last_ip;
10965 fxsave->rdp = fpu->last_dp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010966 memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010967
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010968 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010969 return 0;
10970}
10971
Ken Hofsass01643c52018-01-31 16:03:36 -080010972static void store_regs(struct kvm_vcpu *vcpu)
10973{
10974 BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES);
10975
10976 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS)
10977 __get_regs(vcpu, &vcpu->run->s.regs.regs);
10978
10979 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS)
10980 __get_sregs(vcpu, &vcpu->run->s.regs.sregs);
10981
10982 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS)
10983 kvm_vcpu_ioctl_x86_get_vcpu_events(
10984 vcpu, &vcpu->run->s.regs.events);
10985}
10986
10987static int sync_regs(struct kvm_vcpu *vcpu)
10988{
Ken Hofsass01643c52018-01-31 16:03:36 -080010989 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) {
10990 __set_regs(vcpu, &vcpu->run->s.regs.regs);
10991 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS;
10992 }
10993 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) {
10994 if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs))
10995 return -EINVAL;
10996 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS;
10997 }
10998 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) {
10999 if (kvm_vcpu_ioctl_x86_set_vcpu_events(
11000 vcpu, &vcpu->run->s.regs.events))
11001 return -EINVAL;
11002 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS;
11003 }
11004
11005 return 0;
11006}
11007
Sean Christopherson897cc382019-12-18 13:55:09 -080011008int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011009{
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010011010 if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
Sean Christopherson897cc382019-12-18 13:55:09 -080011011 pr_warn_once("kvm: SMP vm created on host with unstable TSC; "
11012 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +080011013
Sean Christopherson897cc382019-12-18 13:55:09 -080011014 return 0;
Avi Kivity26e52152007-11-20 15:30:24 +020011015}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011016
Sean Christophersone529ef62019-12-18 13:55:15 -080011017int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
Avi Kivity26e52152007-11-20 15:30:24 +020011018{
Sean Christopherson95a0d012019-12-18 13:55:23 -080011019 struct page *page;
11020 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011021
Sean Christopherson63f5a192021-06-22 10:56:52 -070011022 vcpu->arch.last_vmentry_cpu = -1;
Sean Christopherson71170032021-09-20 17:02:54 -070011023 vcpu->arch.regs_avail = ~0;
11024 vcpu->arch.regs_dirty = ~0;
Sean Christopherson63f5a192021-06-22 10:56:52 -070011025
Sean Christopherson95a0d012019-12-18 13:55:23 -080011026 if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu))
11027 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
11028 else
11029 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
11030
Sean Christopherson95a0d012019-12-18 13:55:23 -080011031 r = kvm_mmu_create(vcpu);
11032 if (r < 0)
11033 return r;
11034
11035 if (irqchip_in_kernel(vcpu->kvm)) {
Sean Christopherson95a0d012019-12-18 13:55:23 -080011036 r = kvm_create_lapic(vcpu, lapic_timer_advance_ns);
11037 if (r < 0)
11038 goto fail_mmu_destroy;
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -060011039 if (kvm_apicv_activated(vcpu->kvm))
11040 vcpu->arch.apicv_active = true;
Sean Christopherson95a0d012019-12-18 13:55:23 -080011041 } else
Cun Li6e4e3b42021-01-11 23:24:35 +080011042 static_branch_inc(&kvm_has_noapic_vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011043
11044 r = -ENOMEM;
11045
Shakeel Butt93bb59c2020-12-18 14:01:38 -080011046 page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011047 if (!page)
11048 goto fail_free_lapic;
11049 vcpu->arch.pio_data = page_address(page);
11050
11051 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
11052 GFP_KERNEL_ACCOUNT);
11053 if (!vcpu->arch.mce_banks)
11054 goto fail_free_pio_data;
11055 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
11056
11057 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask,
11058 GFP_KERNEL_ACCOUNT))
11059 goto fail_free_mce_banks;
11060
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011061 if (!alloc_emulate_ctxt(vcpu))
11062 goto free_wbinvd_dirty_mask;
11063
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011064 if (!fpu_alloc_guest_fpstate(&vcpu->arch.guest_fpu)) {
11065 pr_err("kvm: failed to allocate vcpu's fpu\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011066 goto free_emulate_ctxt;
Sean Christopherson95a0d012019-12-18 13:55:23 -080011067 }
11068
Sean Christopherson95a0d012019-12-18 13:55:23 -080011069 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Sean Christophersona8ac8642021-02-03 16:01:15 -080011070 vcpu->arch.reserved_gpa_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011071
11072 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
11073
11074 kvm_async_pf_hash_reset(vcpu);
11075 kvm_pmu_init(vcpu);
11076
11077 vcpu->arch.pending_external_vector = -1;
11078 vcpu->arch.preempted_in_kernel = false;
11079
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000011080#if IS_ENABLED(CONFIG_HYPERV)
11081 vcpu->arch.hv_root_tdp = INVALID_PAGE;
11082#endif
11083
Jason Baronb36464772021-01-14 22:27:56 -050011084 r = static_call(kvm_x86_vcpu_create)(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011085 if (r)
11086 goto free_guest_fpu;
Sean Christopherson5f73db12019-12-18 13:55:18 -080011087
Sean Christopherson0cf91352019-03-07 15:43:02 -080011088 vcpu->arch.arch_capabilities = kvm_get_arch_capabilities();
Jim Mattsone53d88af2018-10-30 12:20:21 -070011089 vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT;
Xiao Guangrong19efffa2015-06-15 16:55:31 +080011090 kvm_vcpu_mtrr_init(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010011091 vcpu_load(vcpu);
Ilias Stamatis1ab92872021-06-07 11:54:38 +010011092 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011093 kvm_vcpu_reset(vcpu, false);
Sean Christophersonc9060662021-06-09 16:42:33 -070011094 kvm_init_mmu(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011095 vcpu_put(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010011096 return 0;
Sean Christopherson95a0d012019-12-18 13:55:23 -080011097
11098free_guest_fpu:
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011099 fpu_free_guest_fpstate(&vcpu->arch.guest_fpu);
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011100free_emulate_ctxt:
11101 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011102free_wbinvd_dirty_mask:
11103 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
11104fail_free_mce_banks:
11105 kfree(vcpu->arch.mce_banks);
11106fail_free_pio_data:
11107 free_page((unsigned long)vcpu->arch.pio_data);
11108fail_free_lapic:
11109 kvm_free_lapic(vcpu);
11110fail_mmu_destroy:
11111 kvm_mmu_destroy(vcpu);
11112 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011113}
11114
Dominik Dingel31928aa2014-12-04 15:47:07 +010011115void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011116{
Andrew Jones332967a2014-02-28 12:52:55 +010011117 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011118
Christoffer Dallec7660c2017-12-04 21:35:23 +010011119 if (mutex_lock_killable(&vcpu->mutex))
Dominik Dingel31928aa2014-12-04 15:47:07 +010011120 return;
Christoffer Dallec7660c2017-12-04 21:35:23 +010011121 vcpu_load(vcpu);
Paolo Bonzini0c899c22020-09-24 14:45:27 +020011122 kvm_synchronize_tsc(vcpu, 0);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011123 vcpu_put(vcpu);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030011124
11125 /* poll control enabled by default */
11126 vcpu->arch.msr_kvm_poll_control = 1;
11127
Christoffer Dallec7660c2017-12-04 21:35:23 +010011128 mutex_unlock(&vcpu->mutex);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011129
Wanpeng Lib34de572020-02-28 11:18:41 +080011130 if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0)
11131 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
11132 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011133}
11134
Hollis Blanchardd40ccc62007-11-19 14:04:43 -060011135void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011136{
Sean Christopherson95a0d012019-12-18 13:55:23 -080011137 int idx;
Gleb Natapov344d9582010-10-14 11:22:50 +020011138
Sean Christopherson50b143e2019-12-18 13:55:07 -080011139 kvmclock_reset(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011140
Jason Baronb36464772021-01-14 22:27:56 -050011141 static_call(kvm_x86_vcpu_free)(vcpu);
Sean Christopherson50b143e2019-12-18 13:55:07 -080011142
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011143 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson50b143e2019-12-18 13:55:07 -080011144 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011145 fpu_free_guest_fpstate(&vcpu->arch.guest_fpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011146
11147 kvm_hv_vcpu_uninit(vcpu);
11148 kvm_pmu_destroy(vcpu);
11149 kfree(vcpu->arch.mce_banks);
11150 kvm_free_lapic(vcpu);
11151 idx = srcu_read_lock(&vcpu->kvm->srcu);
11152 kvm_mmu_destroy(vcpu);
11153 srcu_read_unlock(&vcpu->kvm->srcu, idx);
11154 free_page((unsigned long)vcpu->arch.pio_data);
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +020011155 kvfree(vcpu->arch.cpuid_entries);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011156 if (!lapic_in_kernel(vcpu))
Cun Li6e4e3b42021-01-11 23:24:35 +080011157 static_branch_dec(&kvm_has_noapic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011158}
11159
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011160void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011161{
Sean Christopherson25b97842021-09-29 15:24:26 -070011162 struct kvm_cpuid_entry2 *cpuid_0x1;
Sean Christopherson0aa18372021-06-22 10:56:48 -070011163 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Sean Christopherson4c72ab52021-07-13 09:33:24 -070011164 unsigned long new_cr0;
Sean Christopherson0aa18372021-06-22 10:56:48 -070011165
Sean Christopherson62dd57d2021-09-20 17:03:03 -070011166 /*
11167 * Several of the "set" flows, e.g. ->set_cr0(), read other registers
11168 * to handle side effects. RESET emulation hits those flows and relies
11169 * on emulated/virtualized registers, including those that are loaded
11170 * into hardware, to be zeroed at vCPU creation. Use CRs as a sentinel
11171 * to detect improper or missing initialization.
11172 */
11173 WARN_ON_ONCE(!init_event &&
11174 (old_cr0 || kvm_read_cr3(vcpu) || kvm_read_cr4(vcpu)));
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011175
Radim Krčmářb7e31be2018-03-01 15:24:25 +010011176 kvm_lapic_reset(vcpu, init_event);
11177
Paolo Bonzinie69fab52015-06-04 10:44:44 +020011178 vcpu->arch.hflags = 0;
11179
Paolo Bonzinic43203c2016-06-01 22:26:00 +020011180 vcpu->arch.smi_pending = 0;
Liran Alon52797bf2017-11-15 13:43:14 +020011181 vcpu->arch.smi_count = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +030011182 atomic_set(&vcpu->arch.nmi_queued, 0);
11183 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +020011184 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +030011185 kvm_clear_interrupt_queue(vcpu);
11186 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +020011187
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011188 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +030011189 kvm_update_dr0123(vcpu);
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +080011190 vcpu->arch.dr6 = DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011191 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +020011192 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011193
Nadav Amit11190222015-04-02 03:10:38 +030011194 vcpu->arch.cr2 = 0;
11195
Avi Kivity3842d132010-07-27 12:30:24 +030011196 kvm_make_request(KVM_REQ_EVENT, vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011197 vcpu->arch.apf.msr_en_val = 0;
11198 vcpu->arch.apf.msr_int_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -040011199 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +030011200
Glauber Costa12f9a482011-02-01 14:16:40 -050011201 kvmclock_reset(vcpu);
11202
Gleb Natapovaf585b92010-10-14 11:22:46 +020011203 kvm_clear_async_pf_completion_queue(vcpu);
11204 kvm_async_pf_hash_reset(vcpu);
11205 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011206
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011207 if (vcpu->arch.guest_fpu.fpstate && kvm_mpx_supported()) {
11208 struct fpstate *fpstate = vcpu->arch.guest_fpu.fpstate;
Wanpeng Lia554d202017-10-11 05:10:19 -070011209
11210 /*
11211 * To avoid have the INIT path from kvm_apic_has_events() that be
11212 * called with loaded FPU and does not let userspace fix the state.
11213 */
Rik van Rielf775b132017-11-14 16:54:23 -050011214 if (init_event)
11215 kvm_put_guest_fpu(vcpu);
Thomas Gleixner087df482021-10-13 16:55:31 +020011216
11217 fpstate_clear_xstate_component(fpstate, XFEATURE_BNDREGS);
11218 fpstate_clear_xstate_component(fpstate, XFEATURE_BNDCSR);
11219
Rik van Rielf775b132017-11-14 16:54:23 -050011220 if (init_event)
11221 kvm_load_guest_fpu(vcpu);
Wanpeng Lia554d202017-10-11 05:10:19 -070011222 }
11223
Paolo Bonzini64d60672015-05-07 11:36:11 +020011224 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011225 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +020011226 vcpu->arch.smbase = 0x30000;
Kyle Hueydb2336a2017-03-20 01:16:28 -070011227
Kyle Hueydb2336a2017-03-20 01:16:28 -070011228 vcpu->arch.msr_misc_features_enables = 0;
Wanpeng Lia554d202017-10-11 05:10:19 -070011229
11230 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Paolo Bonzini64d60672015-05-07 11:36:11 +020011231 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020011232
Sean Christophersonff8828c2021-09-20 17:02:56 -070011233 /* All GPRs except RDX (handled below) are zeroed on RESET/INIT. */
Julian Stecklina66f7b722012-12-05 15:26:19 +010011234 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
Sean Christophersonff8828c2021-09-20 17:02:56 -070011235 kvm_register_mark_dirty(vcpu, VCPU_REGS_RSP);
Julian Stecklina66f7b722012-12-05 15:26:19 +010011236
Sean Christopherson49d86652021-07-13 09:32:57 -070011237 /*
11238 * Fall back to KVM's default Family/Model/Stepping of 0x600 (P6/Athlon)
11239 * if no CPUID match is found. Note, it's impossible to get a match at
11240 * RESET since KVM emulates RESET before exposing the vCPU to userspace,
Sean Christopherson25b97842021-09-29 15:24:26 -070011241 * i.e. it's impossible for kvm_find_cpuid_entry() to find a valid entry
11242 * on RESET. But, go through the motions in case that's ever remedied.
Sean Christopherson49d86652021-07-13 09:32:57 -070011243 */
Sean Christopherson25b97842021-09-29 15:24:26 -070011244 cpuid_0x1 = kvm_find_cpuid_entry(vcpu, 1, 0);
11245 kvm_rdx_write(vcpu, cpuid_0x1 ? cpuid_0x1->eax : 0x600);
Sean Christopherson49d86652021-07-13 09:32:57 -070011246
Wanpeng Lia554d202017-10-11 05:10:19 -070011247 vcpu->arch.ia32_xss = 0;
11248
Jason Baronb36464772021-01-14 22:27:56 -050011249 static_call(kvm_x86_vcpu_reset)(vcpu, init_event);
Sean Christopherson0aa18372021-06-22 10:56:48 -070011250
Sean Christophersonf39e8052021-07-13 09:33:14 -070011251 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
11252 kvm_rip_write(vcpu, 0xfff0);
11253
Sean Christopherson03a6e842021-09-20 17:02:55 -070011254 vcpu->arch.cr3 = 0;
11255 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
11256
Sean Christopherson4c72ab52021-07-13 09:33:24 -070011257 /*
11258 * CR0.CD/NW are set on RESET, preserved on INIT. Note, some versions
11259 * of Intel's SDM list CD/NW as being set on INIT, but they contradict
11260 * (or qualify) that with a footnote stating that CD/NW are preserved.
11261 */
11262 new_cr0 = X86_CR0_ET;
11263 if (init_event)
11264 new_cr0 |= (old_cr0 & (X86_CR0_NW | X86_CR0_CD));
11265 else
11266 new_cr0 |= X86_CR0_NW | X86_CR0_CD;
11267
11268 static_call(kvm_x86_set_cr0)(vcpu, new_cr0);
Sean Christophersonf39e8052021-07-13 09:33:14 -070011269 static_call(kvm_x86_set_cr4)(vcpu, 0);
11270 static_call(kvm_x86_set_efer)(vcpu, 0);
11271 static_call(kvm_x86_update_exception_bitmap)(vcpu);
11272
Sean Christopherson0aa18372021-06-22 10:56:48 -070011273 /*
11274 * Reset the MMU context if paging was enabled prior to INIT (which is
11275 * implied if CR0.PG=1 as CR0 will be '0' prior to RESET). Unlike the
11276 * standard CR0/CR4/EFER modification paths, only CR0.PG needs to be
11277 * checked because it is unconditionally cleared on INIT and all other
11278 * paging related bits are ignored if paging is disabled, i.e. CR0.WP,
11279 * CR4, and EFER changes are all irrelevant if CR0.PG was '0'.
11280 */
11281 if (old_cr0 & X86_CR0_PG)
11282 kvm_mmu_reset_context(vcpu);
Sean Christophersondf37ed32021-07-13 09:32:39 -070011283
11284 /*
11285 * Intel's SDM states that all TLB entries are flushed on INIT. AMD's
11286 * APM states the TLBs are untouched by INIT, but it also states that
11287 * the TLBs are flushed on "External initialization of the processor."
11288 * Flush the guest TLB regardless of vendor, there is no meaningful
11289 * benefit in relying on the guest to flush the TLB immediately after
11290 * INIT. A spurious TLB flush is benign and likely negligible from a
11291 * performance perspective.
11292 */
11293 if (init_event)
11294 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011295}
Sean Christopherson265e4352021-07-13 09:33:22 -070011296EXPORT_SYMBOL_GPL(kvm_vcpu_reset);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011297
Paolo Bonzini2b4a2732014-11-24 14:35:24 +010011298void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +010011299{
11300 struct kvm_segment cs;
11301
11302 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
11303 cs.selector = vector << 8;
11304 cs.base = vector << 12;
11305 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
11306 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011307}
Tom Lendacky647daca2021-01-04 14:20:01 -060011308EXPORT_SYMBOL_GPL(kvm_vcpu_deliver_sipi_vector);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011309
Radim Krčmář13a34e02014-08-28 15:13:03 +020011310int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011311{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -100011312 struct kvm *kvm;
11313 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +000011314 unsigned long i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011315 int ret;
11316 u64 local_tsc;
11317 u64 max_tsc = 0;
11318 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +030011319
Sean Christopherson7e34fbd2020-09-23 11:03:55 -070011320 kvm_user_return_msr_cpu_online();
Jason Baronb36464772021-01-14 22:27:56 -050011321 ret = static_call(kvm_x86_hardware_enable)();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011322 if (ret != 0)
11323 return ret;
11324
Andy Lutomirski4ea16362015-06-25 18:44:07 +020011325 local_tsc = rdtsc();
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010011326 stable = !kvm_check_tsc_unstable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011327 list_for_each_entry(kvm, &vm_list, vm_list) {
11328 kvm_for_each_vcpu(i, vcpu, kvm) {
11329 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +080011330 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011331 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
11332 backwards_tsc = true;
11333 if (vcpu->arch.last_host_tsc > max_tsc)
11334 max_tsc = vcpu->arch.last_host_tsc;
11335 }
11336 }
11337 }
11338
11339 /*
11340 * Sometimes, even reliable TSCs go backwards. This happens on
11341 * platforms that reset TSC during suspend or hibernate actions, but
11342 * maintain synchronization. We must compensate. Fortunately, we can
11343 * detect that condition here, which happens early in CPU bringup,
11344 * before any KVM threads can be running. Unfortunately, we can't
11345 * bring the TSCs fully up to date with real time, as we aren't yet far
11346 * enough into CPU bringup that we know how much real time has actually
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011347 * elapsed; our helper function, ktime_get_boottime_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011348 * variables that haven't been updated yet.
11349 *
11350 * So we simply find the maximum observed TSC above, then record the
11351 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
11352 * the adjustment will be applied. Note that we accumulate
11353 * adjustments, in case multiple suspend cycles happen before some VCPU
11354 * gets a chance to run again. In the event that no KVM threads get a
11355 * chance to run, we will miss the entire elapsed period, as we'll have
11356 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
11357 * loose cycle time. This isn't too big a deal, since the loss will be
11358 * uniform across all VCPUs (not to mention the scenario is extremely
11359 * unlikely). It is possible that a second hibernate recovery happens
11360 * much faster than a first, causing the observed TSC here to be
11361 * smaller; this would require additional padding adjustment, which is
11362 * why we set last_host_tsc to the local tsc observed here.
11363 *
11364 * N.B. - this code below runs only on platforms with reliable TSC,
11365 * as that is the only way backwards_tsc is set above. Also note
11366 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
11367 * have the same delta_cyc adjustment applied if backwards_tsc
11368 * is detected. Note further, this adjustment is only done once,
11369 * as we reset last_host_tsc on all VCPUs to stop this from being
11370 * called multiple times (one for each physical CPU bringup).
11371 *
Guo Chao4a969982012-06-28 15:17:27 +080011372 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011373 * will be compensated by the logic in vcpu_load, which sets the TSC to
11374 * catchup mode. This will catchup all VCPUs to real time, but cannot
11375 * guarantee that they stay in perfect synchronization.
11376 */
11377 if (backwards_tsc) {
11378 u64 delta_cyc = max_tsc - local_tsc;
11379 list_for_each_entry(kvm, &vm_list, vm_list) {
Ladi Proseka826faf2017-06-26 09:56:43 +020011380 kvm->arch.backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011381 kvm_for_each_vcpu(i, vcpu, kvm) {
11382 vcpu->arch.tsc_offset_adjustment += delta_cyc;
11383 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +080011384 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011385 }
11386
11387 /*
11388 * We have to disable TSC offset matching.. if you were
11389 * booting a VM while issuing an S4 host suspend....
11390 * you may have some problem. Solving this issue is
11391 * left as an exercise to the reader.
11392 */
11393 kvm->arch.last_tsc_nsec = 0;
11394 kvm->arch.last_tsc_write = 0;
11395 }
11396
11397 }
11398 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011399}
11400
Radim Krčmář13a34e02014-08-28 15:13:03 +020011401void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011402{
Jason Baronb36464772021-01-14 22:27:56 -050011403 static_call(kvm_x86_hardware_disable)();
Radim Krčmář13a34e02014-08-28 15:13:03 +020011404 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011405}
11406
Sean Christophersonb9904082020-03-21 13:25:55 -070011407int kvm_arch_hardware_setup(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011408{
Sean Christophersond008dfd2020-03-21 13:25:56 -070011409 struct kvm_x86_init_ops *ops = opaque;
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011410 int r;
11411
Sean Christopherson91661982020-03-02 15:57:06 -080011412 rdmsrl_safe(MSR_EFER, &host_efer);
11413
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011414 if (boot_cpu_has(X86_FEATURE_XSAVES))
11415 rdmsrl(MSR_IA32_XSS, host_xss);
11416
Sean Christophersond008dfd2020-03-21 13:25:56 -070011417 r = ops->hardware_setup();
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011418 if (r != 0)
11419 return r;
11420
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011421 memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops));
Jason Baronb36464772021-01-14 22:27:56 -050011422 kvm_ops_static_call_update();
Sean Christopherson69c6f692020-03-21 13:25:59 -070011423
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011424 if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES))
11425 supported_xss = 0;
11426
Paolo Bonzini139f7422020-05-05 09:40:46 -040011427#define __kvm_cpu_cap_has(UNUSED_, f) kvm_cpu_cap_has(f)
11428 cr4_reserved_bits = __cr4_reserved_bits(__kvm_cpu_cap_has, UNUSED_);
11429#undef __kvm_cpu_cap_has
Sean Christophersonb11306b2019-12-10 14:44:13 -080011430
Haozhong Zhang35181e82015-10-20 15:39:03 +080011431 if (kvm_has_tsc_control) {
11432 /*
11433 * Make sure the user can only configure tsc_khz values that
11434 * fit into a signed integer.
Marcelo Tosatti273ba452018-06-11 14:12:10 -030011435 * A min value is not calculated because it will always
Haozhong Zhang35181e82015-10-20 15:39:03 +080011436 * be 1 on all machines.
11437 */
11438 u64 max = min(0x7fffffffULL,
11439 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
11440 kvm_max_guest_tsc_khz = max;
11441
Haozhong Zhangad7218832015-10-20 15:39:02 +080011442 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +080011443 }
Haozhong Zhangad7218832015-10-20 15:39:02 +080011444
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011445 kvm_init_msr_list();
11446 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011447}
11448
11449void kvm_arch_hardware_unsetup(void)
11450{
Jason Baronb36464772021-01-14 22:27:56 -050011451 static_call(kvm_x86_hardware_unsetup)();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011452}
11453
Sean Christophersonb9904082020-03-21 13:25:55 -070011454int kvm_arch_check_processor_compat(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011455{
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011456 struct cpuinfo_x86 *c = &cpu_data(smp_processor_id());
Sean Christophersond008dfd2020-03-21 13:25:56 -070011457 struct kvm_x86_init_ops *ops = opaque;
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011458
11459 WARN_ON(!irqs_disabled());
11460
Paolo Bonzini139f7422020-05-05 09:40:46 -040011461 if (__cr4_reserved_bits(cpu_has, c) !=
11462 __cr4_reserved_bits(cpu_has, &boot_cpu_data))
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011463 return -EIO;
11464
Sean Christophersond008dfd2020-03-21 13:25:56 -070011465 return ops->check_processor_compatibility();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011466}
11467
Paolo Bonzinid71ba782015-07-29 11:56:48 +020011468bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
11469{
11470 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
11471}
11472EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
11473
11474bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
11475{
11476 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
11477}
11478
Cun Li6e4e3b42021-01-11 23:24:35 +080011479__read_mostly DEFINE_STATIC_KEY_FALSE(kvm_has_noapic_vcpu);
11480EXPORT_SYMBOL_GPL(kvm_has_noapic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +030011481
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011482void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
11483{
Like Xub35e5542019-10-27 18:52:43 +080011484 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
11485
Paolo Bonzinic595cee2018-07-02 13:07:14 +020011486 vcpu->arch.l1tf_flush_l1d = true;
Like Xub35e5542019-10-27 18:52:43 +080011487 if (pmu->version && unlikely(pmu->event_count)) {
11488 pmu->need_cleanup = true;
11489 kvm_make_request(KVM_REQ_PMU, vcpu);
11490 }
Jason Baronb36464772021-01-14 22:27:56 -050011491 static_call(kvm_x86_sched_in)(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011492}
11493
Sean Christopherson562b6b02020-01-26 16:41:13 -080011494void kvm_arch_free_vm(struct kvm *kvm)
11495{
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +010011496 kfree(to_kvm_hv(kvm)->hv_pa_pg);
Juergen Gross78b497f2021-09-03 15:08:05 +020011497 __kvm_arch_free_vm(kvm);
Sean Christopherson562b6b02020-01-26 16:41:13 -080011498}
11499
11500
Carsten Ottee08b9632012-01-04 10:25:20 +010011501int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011502{
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011503 int ret;
Paolo Bonzini869b4422021-09-16 18:15:36 +000011504 unsigned long flags;
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011505
Carsten Ottee08b9632012-01-04 10:25:20 +010011506 if (type)
11507 return -EINVAL;
11508
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011509 ret = kvm_page_track_init(kvm);
11510 if (ret)
11511 return ret;
11512
Paolo Bonzini6ef768f2014-11-20 13:45:31 +010011513 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +080011514 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Sean Christopherson10605202019-09-12 19:46:10 -070011515 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011516 INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030011517 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060011518 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011519
Sheng Yang5550af42008-10-15 20:15:06 +080011520 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
11521 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -060011522 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
11523 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
11524 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +080011525
Jan Kiszka038f8c12011-02-04 10:49:11 +010011526 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +030011527 mutex_init(&kvm->arch.apic_map_lock);
Paolo Bonzini869b4422021-09-16 18:15:36 +000011528 seqcount_raw_spinlock_init(&kvm->arch.pvclock_sc, &kvm->arch.tsc_write_lock);
Paolo Bonzini8171cd62020-01-22 14:36:09 +010011529 kvm->arch.kvmclock_offset = -get_kvmclock_base_ns();
Paolo Bonzini869b4422021-09-16 18:15:36 +000011530
11531 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattid8281992012-11-27 23:29:01 -020011532 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzini869b4422021-09-16 18:15:36 +000011533 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +010011534
Drew Schmitt6fbbde92018-08-20 10:32:15 -070011535 kvm->arch.guest_can_read_msr_platform_info = true;
11536
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000011537#if IS_ENABLED(CONFIG_HYPERV)
11538 spin_lock_init(&kvm->arch.hv_root_tdp_lock);
11539 kvm->arch.hv_root_tdp = INVALID_PAGE;
11540#endif
11541
Andrew Jones7e44e442014-02-28 12:52:54 +010011542 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +010011543 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +010011544
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +020011545 kvm_apicv_init(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011546 kvm_hv_init_vm(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011547 kvm_mmu_init_vm(kvm);
Paolo Bonzini319afe62021-08-04 12:48:41 -040011548 kvm_xen_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +080011549
Jason Baronb36464772021-01-14 22:27:56 -050011550 return static_call(kvm_x86_vm_init)(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011551}
11552
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011553int kvm_arch_post_init_vm(struct kvm *kvm)
11554{
11555 return kvm_mmu_post_init_vm(kvm);
11556}
11557
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011558static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
11559{
Christoffer Dallec7660c2017-12-04 21:35:23 +010011560 vcpu_load(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011561 kvm_mmu_unload(vcpu);
11562 vcpu_put(vcpu);
11563}
11564
11565static void kvm_free_vcpus(struct kvm *kvm)
11566{
Marc Zyngier46808a42021-11-16 16:04:02 +000011567 unsigned long i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011568 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011569
11570 /*
11571 * Unpin any mmu pages first.
11572 */
Gleb Natapovaf585b92010-10-14 11:22:46 +020011573 kvm_for_each_vcpu(i, vcpu, kvm) {
11574 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011575 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011576 }
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011577
Marc Zyngier27592ae2021-11-16 16:03:57 +000011578 kvm_destroy_vcpus(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011579}
11580
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011581void kvm_arch_sync_events(struct kvm *kvm)
11582{
Andrew Jones332967a2014-02-28 12:52:55 +010011583 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +010011584 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +080011585 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011586}
11587
Peter Xuff5a9832020-09-30 21:20:33 -040011588#define ERR_PTR_USR(e) ((void __user *)ERR_PTR(e))
11589
11590/**
11591 * __x86_set_memory_region: Setup KVM internal memory slot
11592 *
11593 * @kvm: the kvm pointer to the VM.
11594 * @id: the slot ID to setup.
11595 * @gpa: the GPA to install the slot (unused when @size == 0).
11596 * @size: the size of the slot. Set to zero to uninstall a slot.
11597 *
11598 * This function helps to setup a KVM internal memory slot. Specify
11599 * @size > 0 to install a new slot, while @size == 0 to uninstall a
11600 * slot. The return code can be one of the following:
11601 *
11602 * HVA: on success (uninstall will return a bogus HVA)
11603 * -errno: on error
11604 *
11605 * The caller should always use IS_ERR() to check the return value
11606 * before use. Note, the KVM internal memory slots are guaranteed to
11607 * remain valid and unchanged until the VM is destroyed, i.e., the
11608 * GPA->HVA translation will not change. However, the HVA is a user
11609 * address, i.e. its accessibility is not guaranteed, and must be
11610 * accessed via __copy_{to,from}_user().
11611 */
11612void __user * __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa,
11613 u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011614{
11615 int i, r;
Kees Cook3f649ab2020-06-03 13:09:38 -070011616 unsigned long hva, old_npages;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011617 struct kvm_memslots *slots = kvm_memslots(kvm);
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011618 struct kvm_memory_slot *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011619
11620 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011621 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
Peter Xuff5a9832020-09-30 21:20:33 -040011622 return ERR_PTR_USR(-EINVAL);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011623
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011624 slot = id_to_memslot(slots, id);
11625 if (size) {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011626 if (slot && slot->npages)
Peter Xuff5a9832020-09-30 21:20:33 -040011627 return ERR_PTR_USR(-EEXIST);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011628
11629 /*
11630 * MAP_SHARED to prevent internal slot pages from being moved
11631 * by fork()/COW.
11632 */
11633 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
11634 MAP_SHARED | MAP_ANONYMOUS, 0);
11635 if (IS_ERR((void *)hva))
Peter Xuff5a9832020-09-30 21:20:33 -040011636 return (void __user *)hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011637 } else {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011638 if (!slot || !slot->npages)
Muhammad Usama Anjum46914532021-03-05 23:08:16 +050011639 return NULL;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011640
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011641 old_npages = slot->npages;
Zheng Zhan Liangb66f9ba2021-02-01 13:53:10 +080011642 hva = slot->userspace_addr;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011643 }
11644
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011645 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011646 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011647
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011648 m.slot = id | (i << 16);
11649 m.flags = 0;
11650 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011651 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011652 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011653 r = __kvm_set_memory_region(kvm, &m);
11654 if (r < 0)
Peter Xuff5a9832020-09-30 21:20:33 -040011655 return ERR_PTR_USR(r);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011656 }
11657
Eric Biggers103c7632018-01-31 17:30:21 -080011658 if (!size)
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011659 vm_munmap(hva, old_npages * PAGE_SIZE);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011660
Peter Xuff5a9832020-09-30 21:20:33 -040011661 return (void __user *)hva;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011662}
11663EXPORT_SYMBOL_GPL(__x86_set_memory_region);
11664
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011665void kvm_arch_pre_destroy_vm(struct kvm *kvm)
11666{
11667 kvm_mmu_pre_destroy_vm(kvm);
11668}
11669
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011670void kvm_arch_destroy_vm(struct kvm *kvm)
11671{
Andrew Honig27469d22013-04-18 09:38:14 -070011672 if (current->mm == kvm->mm) {
11673 /*
11674 * Free memory regions allocated on behalf of userspace,
11675 * unless the the memory map has changed due to process exit
11676 * or fd copying.
11677 */
Peter Xu6a3c6232020-01-09 09:57:16 -050011678 mutex_lock(&kvm->slots_lock);
11679 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
11680 0, 0);
11681 __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
11682 0, 0);
11683 __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
11684 mutex_unlock(&kvm->slots_lock);
Andrew Honig27469d22013-04-18 09:38:14 -070011685 }
Jason Baronb36464772021-01-14 22:27:56 -050011686 static_call_cond(kvm_x86_vm_destroy)(kvm);
Sean Christophersonb318e8d2021-03-16 11:44:33 -070011687 kvm_free_msr_filter(srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1));
Peter Xuc7611592017-03-15 16:01:19 +080011688 kvm_pic_destroy(kvm);
11689 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011690 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +020011691 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Eric Hankland66bb8a02019-07-10 18:25:15 -070011692 kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011693 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +020011694 kvm_page_track_cleanup(kvm);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +000011695 kvm_xen_destroy_vm(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011696 kvm_hv_destroy_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011697}
Zhang Xiantao0de10342007-11-20 16:25:04 +080011698
Ben Gardonc9b929b2021-05-18 10:34:08 -070011699static void memslot_rmap_free(struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011700{
11701 int i;
11702
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011703 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011704 kvfree(slot->arch.rmap[i]);
11705 slot->arch.rmap[i] = NULL;
Ben Gardonc9b929b2021-05-18 10:34:08 -070011706 }
11707}
Sean Christophersone96c81e2020-02-18 13:07:27 -080011708
Ben Gardonc9b929b2021-05-18 10:34:08 -070011709void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
11710{
11711 int i;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011712
Ben Gardonc9b929b2021-05-18 10:34:08 -070011713 memslot_rmap_free(slot);
11714
11715 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011716 kvfree(slot->arch.lpage_info[i - 1]);
11717 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011718 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011719
Sean Christophersone96c81e2020-02-18 13:07:27 -080011720 kvm_page_track_free_memslot(slot);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011721}
11722
David Stevens1e76a3c2021-10-15 12:30:21 -040011723int memslot_rmap_alloc(struct kvm_memory_slot *slot, unsigned long npages)
Ben Gardon56dd1012021-05-18 10:34:09 -070011724{
11725 const int sz = sizeof(*slot->arch.rmap[0]);
11726 int i;
11727
11728 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
11729 int level = i + 1;
Peter Xu4139b192021-07-30 18:04:51 -040011730 int lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Ben Gardon56dd1012021-05-18 10:34:09 -070011731
Paolo Bonzinifa138432021-10-15 13:05:00 -040011732 if (slot->arch.rmap[i])
11733 continue;
Ben Gardond501f742021-05-18 10:34:14 -070011734
Ben Gardon56dd1012021-05-18 10:34:09 -070011735 slot->arch.rmap[i] = kvcalloc(lpages, sz, GFP_KERNEL_ACCOUNT);
11736 if (!slot->arch.rmap[i]) {
11737 memslot_rmap_free(slot);
11738 return -ENOMEM;
11739 }
11740 }
11741
11742 return 0;
11743}
11744
Ben Gardona2557402021-05-18 10:34:12 -070011745static int kvm_alloc_memslot_metadata(struct kvm *kvm,
Sean Christopherson9d7d18e2021-12-06 20:54:16 +010011746 struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011747{
Sean Christopherson9d7d18e2021-12-06 20:54:16 +010011748 unsigned long npages = slot->npages;
Ben Gardon56dd1012021-05-18 10:34:09 -070011749 int i, r;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011750
Sean Christophersonedd4fa32020-02-18 13:07:15 -080011751 /*
11752 * Clear out the previous array pointers for the KVM_MR_MOVE case. The
11753 * old arrays will be freed by __kvm_set_memory_region() if installing
11754 * the new memslot is successful.
11755 */
11756 memset(&slot->arch, 0, sizeof(slot->arch));
11757
Ben Gardone2209712021-05-18 10:34:13 -070011758 if (kvm_memslots_have_rmaps(kvm)) {
Ben Gardona2557402021-05-18 10:34:12 -070011759 r = memslot_rmap_alloc(slot, npages);
11760 if (r)
11761 return r;
11762 }
Ben Gardon56dd1012021-05-18 10:34:09 -070011763
11764 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011765 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011766 unsigned long ugfn;
11767 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011768 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011769
Peter Xu4139b192021-07-30 18:04:51 -040011770 lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011771
Ben Gardon254272c2019-02-11 11:02:50 -080011772 linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT);
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011773 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011774 goto out_free;
11775
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011776 slot->arch.lpage_info[i - 1] = linfo;
11777
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011778 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011779 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011780 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011781 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011782 ugfn = slot->userspace_addr >> PAGE_SHIFT;
11783 /*
11784 * If the gfn and userspace address are not aligned wrt each
Sean Christopherson600087b2020-03-02 15:57:05 -080011785 * other, disable large page support for this slot.
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011786 */
Sean Christopherson600087b2020-03-02 15:57:05 -080011787 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011788 unsigned long j;
11789
11790 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011791 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011792 }
11793 }
11794
David Stevensdeae4a12021-09-22 13:58:59 +090011795 if (kvm_page_track_create_memslot(kvm, slot, npages))
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011796 goto out_free;
11797
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011798 return 0;
11799
11800out_free:
Ben Gardonc9b929b2021-05-18 10:34:08 -070011801 memslot_rmap_free(slot);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011802
Ben Gardonc9b929b2021-05-18 10:34:08 -070011803 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +010011804 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011805 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011806 }
11807 return -ENOMEM;
11808}
11809
Sean Christopherson15248252019-02-05 12:54:17 -080011810void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011811{
Boris Ostrovsky91724812019-12-05 01:30:51 +000011812 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +000011813 unsigned long i;
Boris Ostrovsky91724812019-12-05 01:30:51 +000011814
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +090011815 /*
11816 * memslots->generation has been incremented.
11817 * mmio generation may have reached its maximum value.
11818 */
Sean Christopherson15248252019-02-05 12:54:17 -080011819 kvm_mmu_invalidate_mmio_sptes(kvm, gen);
Boris Ostrovsky91724812019-12-05 01:30:51 +000011820
11821 /* Force re-initialization of steal_time cache */
11822 kvm_for_each_vcpu(i, vcpu, kvm)
11823 kvm_vcpu_kick(vcpu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011824}
11825
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011826int kvm_arch_prepare_memory_region(struct kvm *kvm,
Sean Christopherson537a17b2021-12-06 20:54:11 +010011827 const struct kvm_memory_slot *old,
11828 struct kvm_memory_slot *new,
11829 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +080011830{
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011831 if (change == KVM_MR_CREATE || change == KVM_MR_MOVE)
Sean Christopherson9d7d18e2021-12-06 20:54:16 +010011832 return kvm_alloc_memslot_metadata(kvm, new);
Sean Christopherson537a17b2021-12-06 20:54:11 +010011833
11834 if (change == KVM_MR_FLAGS_ONLY)
11835 memcpy(&new->arch, &old->arch, sizeof(old->arch));
11836 else if (WARN_ON_ONCE(change != KVM_MR_DELETE))
11837 return -EIO;
11838
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011839 return 0;
11840}
11841
Makarand Sonarea85863c2021-02-12 16:50:12 -080011842
11843static void kvm_mmu_update_cpu_dirty_logging(struct kvm *kvm, bool enable)
11844{
11845 struct kvm_arch *ka = &kvm->arch;
11846
11847 if (!kvm_x86_ops.cpu_dirty_log_size)
11848 return;
11849
11850 if ((enable && ++ka->cpu_dirty_logging_count == 1) ||
11851 (!enable && --ka->cpu_dirty_logging_count == 0))
11852 kvm_make_all_cpus_request(kvm, KVM_REQ_UPDATE_CPU_DIRTY_LOGGING);
11853
11854 WARN_ON_ONCE(ka->cpu_dirty_logging_count < 0);
11855}
11856
Kai Huang88178fd2015-01-28 10:54:27 +080011857static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
Anthony Yznaga37416792020-06-02 13:07:30 -070011858 struct kvm_memory_slot *old,
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011859 const struct kvm_memory_slot *new,
Anthony Yznaga37416792020-06-02 13:07:30 -070011860 enum kvm_mr_change change)
Kai Huang88178fd2015-01-28 10:54:27 +080011861{
Sean Christopherson77aedf22021-12-06 20:54:20 +010011862 u32 old_flags = old ? old->flags : 0;
11863 u32 new_flags = new ? new->flags : 0;
11864 bool log_dirty_pages = new_flags & KVM_MEM_LOG_DIRTY_PAGES;
Makarand Sonarea85863c2021-02-12 16:50:12 -080011865
Anthony Yznaga37416792020-06-02 13:07:30 -070011866 /*
Makarand Sonarea85863c2021-02-12 16:50:12 -080011867 * Update CPU dirty logging if dirty logging is being toggled. This
11868 * applies to all operations.
11869 */
Sean Christopherson77aedf22021-12-06 20:54:20 +010011870 if ((old_flags ^ new_flags) & KVM_MEM_LOG_DIRTY_PAGES)
Makarand Sonarea85863c2021-02-12 16:50:12 -080011871 kvm_mmu_update_cpu_dirty_logging(kvm, log_dirty_pages);
11872
11873 /*
11874 * Nothing more to do for RO slots (which can't be dirtied and can't be
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011875 * made writable) or CREATE/MOVE/DELETE of a slot.
11876 *
11877 * For a memslot with dirty logging disabled:
11878 * CREATE: No dirty mappings will already exist.
11879 * MOVE/DELETE: The old mappings will already have been cleaned up by
11880 * kvm_arch_flush_shadow_memslot()
11881 *
11882 * For a memslot with dirty logging enabled:
11883 * CREATE: No shadow pages exist, thus nothing to write-protect
11884 * and no dirty bits to clear.
11885 * MOVE/DELETE: The old mappings will already have been cleaned up by
11886 * kvm_arch_flush_shadow_memslot().
Anthony Yznaga37416792020-06-02 13:07:30 -070011887 */
Sean Christopherson77aedf22021-12-06 20:54:20 +010011888 if ((change != KVM_MR_FLAGS_ONLY) || (new_flags & KVM_MEM_READONLY))
Kai Huang88178fd2015-01-28 10:54:27 +080011889 return;
Kai Huang88178fd2015-01-28 10:54:27 +080011890
11891 /*
Sean Christopherson52f460792021-02-12 16:50:11 -080011892 * READONLY and non-flags changes were filtered out above, and the only
11893 * other flag is LOG_DIRTY_PAGES, i.e. something is wrong if dirty
11894 * logging isn't being toggled on or off.
Anthony Yznaga37416792020-06-02 13:07:30 -070011895 */
Sean Christopherson77aedf22021-12-06 20:54:20 +010011896 if (WARN_ON_ONCE(!((old_flags ^ new_flags) & KVM_MEM_LOG_DIRTY_PAGES)))
Sean Christopherson52f460792021-02-12 16:50:11 -080011897 return;
11898
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011899 if (!log_dirty_pages) {
11900 /*
11901 * Dirty logging tracks sptes in 4k granularity, meaning that
11902 * large sptes have to be split. If live migration succeeds,
11903 * the guest in the source machine will be destroyed and large
11904 * sptes will be created in the destination. However, if the
11905 * guest continues to run in the source machine (for example if
11906 * live migration fails), small sptes will remain around and
11907 * cause bad performance.
11908 *
11909 * Scan sptes if dirty logging has been stopped, dropping those
11910 * which can be collapsed into a single large-page spte. Later
11911 * page faults will create the large-page sptes.
11912 */
Anthony Yznaga37416792020-06-02 13:07:30 -070011913 kvm_mmu_zap_collapsible_sptes(kvm, new);
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011914 } else {
Keqian Zhu89212912021-04-29 11:41:15 +080011915 /*
11916 * Initially-all-set does not require write protecting any page,
11917 * because they're all assumed to be dirty.
11918 */
11919 if (kvm_dirty_log_manual_protect_and_init_set(kvm))
11920 return;
Anthony Yznaga37416792020-06-02 13:07:30 -070011921
Sean Christophersona018eba2021-02-12 16:50:10 -080011922 if (kvm_x86_ops.cpu_dirty_log_size) {
Keqian Zhu89212912021-04-29 11:41:15 +080011923 kvm_mmu_slot_leaf_clear_dirty(kvm, new);
11924 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_2M);
11925 } else {
11926 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_4K);
Jay Zhou3c9bd402020-02-27 09:32:27 +080011927 }
Kai Huang88178fd2015-01-28 10:54:27 +080011928 }
11929}
11930
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011931void kvm_arch_commit_memory_region(struct kvm *kvm,
Sean Christopherson9d4c1972020-02-18 13:07:24 -080011932 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020011933 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +090011934 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011935{
Maciej S. Szmigieroe0c2b632021-12-06 20:54:23 +010011936 if (!kvm->arch.n_requested_mmu_pages &&
Maciej S. Szmigierof5756022021-12-06 20:54:24 +010011937 (change == KVM_MR_CREATE || change == KVM_MR_DELETE)) {
11938 unsigned long nr_mmu_pages;
11939
11940 nr_mmu_pages = kvm->nr_memslot_pages / KVM_MEMSLOT_PAGES_TO_MMU_PAGES_RATIO;
11941 nr_mmu_pages = max(nr_mmu_pages, KVM_MIN_ALLOC_MMU_PAGES);
11942 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
11943 }
Kai Huang1c91cad42015-01-28 10:54:26 +080011944
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011945 kvm_mmu_slot_apply_flags(kvm, old, new, change);
Sean Christopherson21198842020-02-18 13:07:25 -080011946
11947 /* Free the arrays associated with the old memslot. */
11948 if (change == KVM_MR_MOVE)
Sean Christophersone96c81e2020-02-18 13:07:27 -080011949 kvm_arch_free_memslot(kvm, old);
Zhang Xiantao0de10342007-11-20 16:25:04 +080011950}
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011951
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011952void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011953{
Sean Christopherson7390de12019-02-05 13:01:31 -080011954 kvm_mmu_zap_all(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011955}
11956
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011957void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
11958 struct kvm_memory_slot *slot)
11959{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +080011960 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011961}
11962
Liran Alone6c67d82018-09-04 10:56:52 +030011963static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
11964{
11965 return (is_guest_mode(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011966 kvm_x86_ops.guest_apic_has_interrupt &&
Jason Baronb36464772021-01-14 22:27:56 -050011967 static_call(kvm_x86_guest_apic_has_interrupt)(vcpu));
Liran Alone6c67d82018-09-04 10:56:52 +030011968}
11969
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011970static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
11971{
11972 if (!list_empty_careful(&vcpu->async_pf.done))
11973 return true;
11974
11975 if (kvm_apic_has_events(vcpu))
11976 return true;
11977
11978 if (vcpu->arch.pv.pv_unhalted)
11979 return true;
11980
Wanpeng Lia5f01f82017-09-13 04:04:01 -070011981 if (vcpu->arch.exception.pending)
11982 return true;
11983
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011984 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11985 (vcpu->arch.nmi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011986 static_call(kvm_x86_nmi_allowed)(vcpu, false)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011987 return true;
11988
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011989 if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -040011990 (vcpu->arch.smi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011991 static_call(kvm_x86_smi_allowed)(vcpu, false)))
Paolo Bonzini73917732015-10-13 10:19:35 +020011992 return true;
11993
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011994 if (kvm_arch_interrupt_allowed(vcpu) &&
Liran Alone6c67d82018-09-04 10:56:52 +030011995 (kvm_cpu_has_interrupt(vcpu) ||
11996 kvm_guest_apic_has_interrupt(vcpu)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011997 return true;
11998
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +030011999 if (kvm_hv_has_stimer_pending(vcpu))
12000 return true;
12001
Sean Christophersond2060bd2020-04-22 19:25:39 -070012002 if (is_guest_mode(vcpu) &&
12003 kvm_x86_ops.nested_ops->hv_timer_pending &&
12004 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
12005 return true;
12006
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020012007 return false;
12008}
12009
Zhang Xiantao1d737c82007-12-14 09:35:10 +080012010int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
12011{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020012012 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +080012013}
Zhang Xiantao57361992007-12-17 14:21:40 +080012014
Haiwei Li10dbdf92021-04-21 11:25:13 +080012015bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu)
12016{
12017 if (vcpu->arch.apicv_active && static_call(kvm_x86_dy_apicv_has_pending_interrupt)(vcpu))
12018 return true;
12019
12020 return false;
12021}
12022
Wanpeng Li17e433b2019-08-05 10:03:19 +080012023bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
12024{
12025 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
12026 return true;
12027
12028 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
12029 kvm_test_request(KVM_REQ_SMI, vcpu) ||
12030 kvm_test_request(KVM_REQ_EVENT, vcpu))
12031 return true;
12032
Haiwei Li10dbdf92021-04-21 11:25:13 +080012033 return kvm_arch_dy_has_pending_interrupt(vcpu);
Wanpeng Li17e433b2019-08-05 10:03:19 +080012034}
12035
Longpeng(Mike)199b5762017-08-08 12:05:32 +080012036bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
12037{
Wanpeng Lib86bb112021-04-22 16:34:19 +080012038 if (vcpu->arch.guest_state_protected)
12039 return true;
12040
Longpeng(Mike)de63ad42017-08-08 12:05:33 +080012041 return vcpu->arch.preempted_in_kernel;
Longpeng(Mike)199b5762017-08-08 12:05:32 +080012042}
12043
Christoffer Dallb6d33832012-03-08 16:44:24 -050012044int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +080012045{
Christoffer Dallb6d33832012-03-08 16:44:24 -050012046 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +080012047}
Gleb Natapov78646122009-03-23 12:12:11 +020012048
12049int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
12050{
Jason Baronb36464772021-01-14 22:27:56 -050012051 return static_call(kvm_x86_interrupt_allowed)(vcpu, false);
Gleb Natapov78646122009-03-23 12:12:11 +020012052}
Marcelo Tosatti229456f2009-06-17 09:22:14 -030012053
Nadav Amit82b32772014-11-02 11:54:45 +020012054unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
12055{
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012056 /* Can't read the RIP when guest state is protected, just return 0 */
12057 if (vcpu->arch.guest_state_protected)
12058 return 0;
12059
Nadav Amit82b32772014-11-02 11:54:45 +020012060 if (is_64_bit_mode(vcpu))
12061 return kvm_rip_read(vcpu);
12062 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
12063 kvm_rip_read(vcpu));
12064}
12065EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
12066
Jan Kiszkaf92653e2010-02-23 17:47:55 +010012067bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
12068{
Nadav Amit82b32772014-11-02 11:54:45 +020012069 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +010012070}
12071EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
12072
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012073unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
12074{
12075 unsigned long rflags;
12076
Jason Baronb36464772021-01-14 22:27:56 -050012077 rflags = static_call(kvm_x86_get_rflags)(vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012078 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +010012079 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012080 return rflags;
12081}
12082EXPORT_SYMBOL_GPL(kvm_get_rflags);
12083
Paolo Bonzini6addfc42014-03-27 11:29:28 +010012084static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012085{
12086 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +010012087 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +010012088 rflags |= X86_EFLAGS_TF;
Jason Baronb36464772021-01-14 22:27:56 -050012089 static_call(kvm_x86_set_rflags)(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010012090}
12091
12092void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
12093{
12094 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +030012095 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012096}
12097EXPORT_SYMBOL_GPL(kvm_set_rflags);
12098
Gleb Natapov56028d02010-10-17 18:13:42 +020012099void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
12100{
12101 int r;
12102
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020012103 if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +080012104 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +020012105 return;
12106
12107 r = kvm_mmu_reload(vcpu);
12108 if (unlikely(r))
12109 return;
12110
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020012111 if (!vcpu->arch.mmu->direct_map &&
Sean Christophersond8dd54e2020-03-02 18:02:39 -080012112 work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu))
Xiao Guangrongfb67e142010-12-07 10:35:25 +080012113 return;
12114
Sean Christopherson7a026742020-02-06 14:14:34 -080012115 kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true);
Gleb Natapov56028d02010-10-17 18:13:42 +020012116}
12117
Gleb Natapovaf585b92010-10-14 11:22:46 +020012118static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
12119{
Peter Xudd03bca2020-04-16 11:58:59 -040012120 BUILD_BUG_ON(!is_power_of_2(ASYNC_PF_PER_VCPU));
12121
Gleb Natapovaf585b92010-10-14 11:22:46 +020012122 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
12123}
12124
12125static inline u32 kvm_async_pf_next_probe(u32 key)
12126{
Peter Xudd03bca2020-04-16 11:58:59 -040012127 return (key + 1) & (ASYNC_PF_PER_VCPU - 1);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012128}
12129
12130static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12131{
12132 u32 key = kvm_async_pf_hash_fn(gfn);
12133
12134 while (vcpu->arch.apf.gfns[key] != ~0)
12135 key = kvm_async_pf_next_probe(key);
12136
12137 vcpu->arch.apf.gfns[key] = gfn;
12138}
12139
12140static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
12141{
12142 int i;
12143 u32 key = kvm_async_pf_hash_fn(gfn);
12144
Peter Xudd03bca2020-04-16 11:58:59 -040012145 for (i = 0; i < ASYNC_PF_PER_VCPU &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +080012146 (vcpu->arch.apf.gfns[key] != gfn &&
12147 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +020012148 key = kvm_async_pf_next_probe(key);
12149
12150 return key;
12151}
12152
12153bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12154{
12155 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
12156}
12157
12158static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12159{
12160 u32 i, j, k;
12161
12162 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
Peter Xu0fd46042020-04-16 11:59:10 -040012163
12164 if (WARN_ON_ONCE(vcpu->arch.apf.gfns[i] != gfn))
12165 return;
12166
Gleb Natapovaf585b92010-10-14 11:22:46 +020012167 while (true) {
12168 vcpu->arch.apf.gfns[i] = ~0;
12169 do {
12170 j = kvm_async_pf_next_probe(j);
12171 if (vcpu->arch.apf.gfns[j] == ~0)
12172 return;
12173 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
12174 /*
12175 * k lies cyclically in ]i,j]
12176 * | i.k.j |
12177 * |....j i.k.| or |.k..j i...|
12178 */
12179 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
12180 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
12181 i = j;
12182 }
12183}
12184
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012185static inline int apf_put_user_notpresent(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020012186{
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012187 u32 reason = KVM_PV_REASON_PAGE_NOT_PRESENT;
12188
12189 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &reason,
12190 sizeof(reason));
12191}
12192
12193static inline int apf_put_user_ready(struct kvm_vcpu *vcpu, u32 token)
12194{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012195 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
Paolo Bonzini4e335d92017-05-02 16:20:18 +020012196
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012197 return kvm_write_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
12198 &token, offset, sizeof(token));
12199}
12200
12201static inline bool apf_pageready_slot_free(struct kvm_vcpu *vcpu)
12202{
12203 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
12204 u32 val;
12205
12206 if (kvm_read_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
12207 &val, offset, sizeof(val)))
12208 return false;
12209
12210 return !val;
Gleb Natapov7c907052010-10-14 11:22:53 +020012211}
12212
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012213static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
12214{
12215 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
12216 return false;
12217
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012218 if (!kvm_pv_async_pf_enabled(vcpu) ||
Jason Baronb36464772021-01-14 22:27:56 -050012219 (vcpu->arch.apf.send_user_only && static_call(kvm_x86_get_cpl)(vcpu) == 0))
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012220 return false;
12221
12222 return true;
12223}
12224
12225bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
12226{
12227 if (unlikely(!lapic_in_kernel(vcpu) ||
12228 kvm_event_needs_reinjection(vcpu) ||
12229 vcpu->arch.exception.pending))
12230 return false;
12231
12232 if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu))
12233 return false;
12234
12235 /*
12236 * If interrupts are off we cannot even use an artificial
12237 * halt state.
12238 */
Paolo Bonzinic300ab92020-04-23 14:08:58 -040012239 return kvm_arch_interrupt_allowed(vcpu);
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012240}
12241
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012242bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
Gleb Natapovaf585b92010-10-14 11:22:46 +020012243 struct kvm_async_pf *work)
12244{
Avi Kivity6389ee92010-11-29 16:12:30 +020012245 struct x86_exception fault;
12246
Sean Christopherson736c2912019-12-06 15:57:14 -080012247 trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012248 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +020012249
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012250 if (kvm_can_deliver_async_pf(vcpu) &&
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012251 !apf_put_user_notpresent(vcpu)) {
Avi Kivity6389ee92010-11-29 16:12:30 +020012252 fault.vector = PF_VECTOR;
12253 fault.error_code_valid = true;
12254 fault.error_code = 0;
12255 fault.nested_page_fault = false;
12256 fault.address = work->arch.token;
Wanpeng Liadfe20f2017-07-13 18:30:41 -070012257 fault.async_page_fault = true;
Avi Kivity6389ee92010-11-29 16:12:30 +020012258 kvm_inject_page_fault(vcpu, &fault);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012259 return true;
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012260 } else {
12261 /*
12262 * It is not possible to deliver a paravirtualized asynchronous
12263 * page fault, but putting the guest in an artificial halt state
12264 * can be beneficial nevertheless: if an interrupt arrives, we
12265 * can deliver it timely and perhaps the guest will schedule
12266 * another process. When the instruction that triggered a page
12267 * fault is retried, hopefully the page will be ready in the host.
12268 */
12269 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012270 return false;
Gleb Natapov7c907052010-10-14 11:22:53 +020012271 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020012272}
12273
12274void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
12275 struct kvm_async_pf *work)
12276{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012277 struct kvm_lapic_irq irq = {
12278 .delivery_mode = APIC_DM_FIXED,
12279 .vector = vcpu->arch.apf.vec
12280 };
Avi Kivity6389ee92010-11-29 16:12:30 +020012281
chai wenf2e10662013-10-14 22:22:33 +080012282 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +020012283 work->arch.token = ~0; /* broadcast wakeup */
12284 else
12285 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Sean Christopherson736c2912019-12-06 15:57:14 -080012286 trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa);
Gleb Natapov7c907052010-10-14 11:22:53 +020012287
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012288 if ((work->wakeup_all || work->notpresent_injected) &&
12289 kvm_pv_async_pf_enabled(vcpu) &&
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012290 !apf_put_user_ready(vcpu, work->arch.token)) {
12291 vcpu->arch.apf.pageready_pending = true;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012292 kvm_apic_set_irq(vcpu, &irq, NULL);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012293 }
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012294
Xiao Guangronge6d53e32010-11-01 17:01:28 +080012295 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +030012296 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +020012297}
12298
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012299void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu)
12300{
12301 kvm_make_request(KVM_REQ_APF_READY, vcpu);
12302 if (!vcpu->arch.apf.pageready_pending)
12303 kvm_vcpu_kick(vcpu);
12304}
12305
Vitaly Kuznetsov7c0ade62020-05-25 16:41:18 +020012306bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020012307{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012308 if (!kvm_pv_async_pf_enabled(vcpu))
Gleb Natapov7c907052010-10-14 11:22:53 +020012309 return true;
12310 else
Vitaly Kuznetsov2f15d022021-04-22 11:29:48 +020012311 return kvm_lapic_enabled(vcpu) && apf_pageready_slot_free(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012312}
12313
Paolo Bonzini5544eb92015-07-07 15:41:58 +020012314void kvm_arch_start_assignment(struct kvm *kvm)
12315{
Marcelo Tosatti57ab8792021-05-25 10:41:16 -030012316 if (atomic_inc_return(&kvm->arch.assigned_device_count) == 1)
12317 static_call_cond(kvm_x86_start_assignment)(kvm);
Paolo Bonzini5544eb92015-07-07 15:41:58 +020012318}
12319EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
12320
12321void kvm_arch_end_assignment(struct kvm *kvm)
12322{
12323 atomic_dec(&kvm->arch.assigned_device_count);
12324}
12325EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
12326
12327bool kvm_arch_has_assigned_device(struct kvm *kvm)
12328{
12329 return atomic_read(&kvm->arch.assigned_device_count);
12330}
12331EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
12332
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060012333void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
12334{
12335 atomic_inc(&kvm->arch.noncoherent_dma_count);
12336}
12337EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
12338
12339void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
12340{
12341 atomic_dec(&kvm->arch.noncoherent_dma_count);
12342}
12343EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
12344
12345bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
12346{
12347 return atomic_read(&kvm->arch.noncoherent_dma_count);
12348}
12349EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
12350
Alex Williamson14717e22016-05-05 11:58:35 -060012351bool kvm_arch_has_irq_bypass(void)
12352{
Sean Christopherson92735b12019-08-02 15:06:17 -070012353 return true;
Alex Williamson14717e22016-05-05 11:58:35 -060012354}
12355
Feng Wu87276882015-09-18 22:29:40 +080012356int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
12357 struct irq_bypass_producer *prod)
12358{
12359 struct kvm_kernel_irqfd *irqfd =
12360 container_of(cons, struct kvm_kernel_irqfd, consumer);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012361 int ret;
Feng Wu87276882015-09-18 22:29:40 +080012362
Alex Williamson14717e22016-05-05 11:58:35 -060012363 irqfd->producer = prod;
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012364 kvm_arch_start_assignment(irqfd->kvm);
Jason Baronb36464772021-01-14 22:27:56 -050012365 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm,
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012366 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +080012367
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012368 if (ret)
12369 kvm_arch_end_assignment(irqfd->kvm);
12370
12371 return ret;
Feng Wu87276882015-09-18 22:29:40 +080012372}
12373
12374void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
12375 struct irq_bypass_producer *prod)
12376{
12377 int ret;
12378 struct kvm_kernel_irqfd *irqfd =
12379 container_of(cons, struct kvm_kernel_irqfd, consumer);
12380
Feng Wu87276882015-09-18 22:29:40 +080012381 WARN_ON(irqfd->producer != prod);
12382 irqfd->producer = NULL;
12383
12384 /*
12385 * When producer of consumer is unregistered, we change back to
12386 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +020012387 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +080012388 * int this case doesn't want to receive the interrupts.
12389 */
Jason Baronb36464772021-01-14 22:27:56 -050012390 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm, prod->irq, irqfd->gsi, 0);
Feng Wu87276882015-09-18 22:29:40 +080012391 if (ret)
12392 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
12393 " fails: %d\n", irqfd->consumer.token, ret);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012394
12395 kvm_arch_end_assignment(irqfd->kvm);
Feng Wu87276882015-09-18 22:29:40 +080012396}
12397
12398int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
12399 uint32_t guest_irq, bool set)
12400{
Jason Baronb36464772021-01-14 22:27:56 -050012401 return static_call(kvm_x86_update_pi_irte)(kvm, host_irq, guest_irq, set);
Feng Wu87276882015-09-18 22:29:40 +080012402}
12403
Longpeng(Mike)515a0c72021-08-27 16:00:03 +080012404bool kvm_arch_irqfd_route_changed(struct kvm_kernel_irq_routing_entry *old,
12405 struct kvm_kernel_irq_routing_entry *new)
12406{
12407 if (new->type != KVM_IRQ_ROUTING_MSI)
12408 return true;
12409
12410 return !!memcmp(&old->msi, &new->msi, sizeof(new->msi));
12411}
12412
Feng Wu520040142016-01-25 16:53:33 +080012413bool kvm_vector_hashing_enabled(void)
12414{
12415 return vector_hashing;
12416}
Feng Wu520040142016-01-25 16:53:33 +080012417
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012418bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
12419{
12420 return (vcpu->arch.msr_kvm_poll_control & 1) == 0;
12421}
12422EXPORT_SYMBOL_GPL(kvm_arch_no_poll);
12423
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012424
12425int kvm_spec_ctrl_test_value(u64 value)
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012426{
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012427 /*
12428 * test that setting IA32_SPEC_CTRL to given value
12429 * is allowed by the host processor
12430 */
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012431
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012432 u64 saved_value;
12433 unsigned long flags;
12434 int ret = 0;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012435
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012436 local_irq_save(flags);
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012437
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012438 if (rdmsrl_safe(MSR_IA32_SPEC_CTRL, &saved_value))
12439 ret = 1;
12440 else if (wrmsrl_safe(MSR_IA32_SPEC_CTRL, value))
12441 ret = 1;
12442 else
12443 wrmsrl(MSR_IA32_SPEC_CTRL, saved_value);
12444
12445 local_irq_restore(flags);
12446
12447 return ret;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012448}
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012449EXPORT_SYMBOL_GPL(kvm_spec_ctrl_test_value);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012450
Mohammed Gamal89786142020-07-10 17:48:03 +020012451void kvm_fixup_and_inject_pf_error(struct kvm_vcpu *vcpu, gva_t gva, u16 error_code)
12452{
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +080012453 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
Mohammed Gamal89786142020-07-10 17:48:03 +020012454 struct x86_exception fault;
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012455 u32 access = error_code &
12456 (PFERR_WRITE_MASK | PFERR_FETCH_MASK | PFERR_USER_MASK);
Mohammed Gamal89786142020-07-10 17:48:03 +020012457
12458 if (!(error_code & PFERR_PRESENT_MASK) ||
Lai Jiangshan1f5a21e2021-11-24 20:20:44 +080012459 mmu->gva_to_gpa(vcpu, mmu, gva, access, &fault) != UNMAPPED_GVA) {
Mohammed Gamal89786142020-07-10 17:48:03 +020012460 /*
12461 * If vcpu->arch.walk_mmu->gva_to_gpa succeeded, the page
12462 * tables probably do not match the TLB. Just proceed
12463 * with the error code that the processor gave.
12464 */
12465 fault.vector = PF_VECTOR;
12466 fault.error_code_valid = true;
12467 fault.error_code = error_code;
12468 fault.nested_page_fault = false;
12469 fault.address = gva;
12470 }
12471 vcpu->arch.walk_mmu->inject_page_fault(vcpu, &fault);
12472}
12473EXPORT_SYMBOL_GPL(kvm_fixup_and_inject_pf_error);
Carsten Otte043405e2007-10-10 17:16:19 +020012474
Babu Moger3f3393b2020-09-11 14:29:05 -050012475/*
12476 * Handles kvm_read/write_guest_virt*() result and either injects #PF or returns
12477 * KVM_EXIT_INTERNAL_ERROR for cases not currently handled by KVM. Return value
12478 * indicates whether exit to userspace is needed.
12479 */
12480int kvm_handle_memory_failure(struct kvm_vcpu *vcpu, int r,
12481 struct x86_exception *e)
12482{
12483 if (r == X86EMUL_PROPAGATE_FAULT) {
12484 kvm_inject_emulated_page_fault(vcpu, e);
12485 return 1;
12486 }
12487
12488 /*
12489 * In case kvm_read/write_guest_virt*() failed with X86EMUL_IO_NEEDED
12490 * while handling a VMX instruction KVM could've handled the request
12491 * correctly by exiting to userspace and performing I/O but there
12492 * doesn't seem to be a real use-case behind such requests, just return
12493 * KVM_EXIT_INTERNAL_ERROR for now.
12494 */
David Edmondsone615e352021-09-20 11:37:36 +010012495 kvm_prepare_emulation_failure_exit(vcpu);
Babu Moger3f3393b2020-09-11 14:29:05 -050012496
12497 return 0;
12498}
12499EXPORT_SYMBOL_GPL(kvm_handle_memory_failure);
12500
Babu Moger97150922020-09-11 14:29:12 -050012501int kvm_handle_invpcid(struct kvm_vcpu *vcpu, unsigned long type, gva_t gva)
12502{
12503 bool pcid_enabled;
12504 struct x86_exception e;
Babu Moger97150922020-09-11 14:29:12 -050012505 struct {
12506 u64 pcid;
12507 u64 gla;
12508 } operand;
12509 int r;
12510
12511 r = kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e);
12512 if (r != X86EMUL_CONTINUE)
12513 return kvm_handle_memory_failure(vcpu, r, &e);
12514
12515 if (operand.pcid >> 12 != 0) {
12516 kvm_inject_gp(vcpu, 0);
12517 return 1;
12518 }
12519
12520 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
12521
12522 switch (type) {
12523 case INVPCID_TYPE_INDIV_ADDR:
12524 if ((!pcid_enabled && (operand.pcid != 0)) ||
12525 is_noncanonical_address(operand.gla, vcpu)) {
12526 kvm_inject_gp(vcpu, 0);
12527 return 1;
12528 }
12529 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
12530 return kvm_skip_emulated_instruction(vcpu);
12531
12532 case INVPCID_TYPE_SINGLE_CTXT:
12533 if (!pcid_enabled && (operand.pcid != 0)) {
12534 kvm_inject_gp(vcpu, 0);
12535 return 1;
12536 }
12537
Sean Christopherson21823fb2021-06-09 16:42:24 -070012538 kvm_invalidate_pcid(vcpu, operand.pcid);
Babu Moger97150922020-09-11 14:29:12 -050012539 return kvm_skip_emulated_instruction(vcpu);
12540
12541 case INVPCID_TYPE_ALL_NON_GLOBAL:
12542 /*
12543 * Currently, KVM doesn't mark global entries in the shadow
12544 * page tables, so a non-global flush just degenerates to a
12545 * global flush. If needed, we could optimize this later by
12546 * keeping track of global entries in shadow page tables.
12547 */
12548
12549 fallthrough;
12550 case INVPCID_TYPE_ALL_INCL_GLOBAL:
Sean Christopherson28f28d42021-06-09 16:42:30 -070012551 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Babu Moger97150922020-09-11 14:29:12 -050012552 return kvm_skip_emulated_instruction(vcpu);
12553
12554 default:
Vipin Sharma796c83c2021-11-09 17:44:26 +000012555 kvm_inject_gp(vcpu, 0);
12556 return 1;
Babu Moger97150922020-09-11 14:29:12 -050012557 }
12558}
12559EXPORT_SYMBOL_GPL(kvm_handle_invpcid);
12560
Tom Lendacky8f423a82020-12-10 11:09:53 -060012561static int complete_sev_es_emulated_mmio(struct kvm_vcpu *vcpu)
12562{
12563 struct kvm_run *run = vcpu->run;
12564 struct kvm_mmio_fragment *frag;
12565 unsigned int len;
12566
12567 BUG_ON(!vcpu->mmio_needed);
12568
12569 /* Complete previous fragment */
12570 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
12571 len = min(8u, frag->len);
12572 if (!vcpu->mmio_is_write)
12573 memcpy(frag->data, run->mmio.data, len);
12574
12575 if (frag->len <= 8) {
12576 /* Switch to the next fragment. */
12577 frag++;
12578 vcpu->mmio_cur_fragment++;
12579 } else {
12580 /* Go forward to the next mmio piece. */
12581 frag->data += len;
12582 frag->gpa += len;
12583 frag->len -= len;
12584 }
12585
12586 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
12587 vcpu->mmio_needed = 0;
12588
12589 // VMG change, at this point, we're always done
12590 // RIP has already been advanced
12591 return 1;
12592 }
12593
12594 // More MMIO is needed
12595 run->mmio.phys_addr = frag->gpa;
12596 run->mmio.len = min(8u, frag->len);
12597 run->mmio.is_write = vcpu->mmio_is_write;
12598 if (run->mmio.is_write)
12599 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
12600 run->exit_reason = KVM_EXIT_MMIO;
12601
12602 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12603
12604 return 0;
12605}
12606
12607int kvm_sev_es_mmio_write(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12608 void *data)
12609{
12610 int handled;
12611 struct kvm_mmio_fragment *frag;
12612
12613 if (!data)
12614 return -EINVAL;
12615
12616 handled = write_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12617 if (handled == bytes)
12618 return 1;
12619
12620 bytes -= handled;
12621 gpa += handled;
12622 data += handled;
12623
12624 /*TODO: Check if need to increment number of frags */
12625 frag = vcpu->mmio_fragments;
12626 vcpu->mmio_nr_fragments = 1;
12627 frag->len = bytes;
12628 frag->gpa = gpa;
12629 frag->data = data;
12630
12631 vcpu->mmio_needed = 1;
12632 vcpu->mmio_cur_fragment = 0;
12633
12634 vcpu->run->mmio.phys_addr = gpa;
12635 vcpu->run->mmio.len = min(8u, frag->len);
12636 vcpu->run->mmio.is_write = 1;
12637 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
12638 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12639
12640 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12641
12642 return 0;
12643}
12644EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_write);
12645
12646int kvm_sev_es_mmio_read(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12647 void *data)
12648{
12649 int handled;
12650 struct kvm_mmio_fragment *frag;
12651
12652 if (!data)
12653 return -EINVAL;
12654
12655 handled = read_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12656 if (handled == bytes)
12657 return 1;
12658
12659 bytes -= handled;
12660 gpa += handled;
12661 data += handled;
12662
12663 /*TODO: Check if need to increment number of frags */
12664 frag = vcpu->mmio_fragments;
12665 vcpu->mmio_nr_fragments = 1;
12666 frag->len = bytes;
12667 frag->gpa = gpa;
12668 frag->data = data;
12669
12670 vcpu->mmio_needed = 1;
12671 vcpu->mmio_cur_fragment = 0;
12672
12673 vcpu->run->mmio.phys_addr = gpa;
12674 vcpu->run->mmio.len = min(8u, frag->len);
12675 vcpu->run->mmio.is_write = 0;
12676 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12677
12678 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12679
12680 return 0;
12681}
12682EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_read);
12683
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012684static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012685 unsigned int port);
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012686
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012687static int complete_sev_es_emulated_outs(struct kvm_vcpu *vcpu)
12688{
12689 int size = vcpu->arch.pio.size;
12690 int port = vcpu->arch.pio.port;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012691
12692 vcpu->arch.pio.count = 0;
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012693 if (vcpu->arch.sev_pio_count)
12694 return kvm_sev_es_outs(vcpu, size, port);
12695 return 1;
12696}
12697
12698static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
12699 unsigned int port)
12700{
12701 for (;;) {
12702 unsigned int count =
12703 min_t(unsigned int, PAGE_SIZE / size, vcpu->arch.sev_pio_count);
12704 int ret = emulator_pio_out(vcpu, size, port, vcpu->arch.sev_pio_data, count);
12705
12706 /* memcpy done already by emulator_pio_out. */
12707 vcpu->arch.sev_pio_count -= count;
12708 vcpu->arch.sev_pio_data += count * vcpu->arch.pio.size;
12709 if (!ret)
12710 break;
12711
12712 /* Emulation done by the kernel. */
12713 if (!vcpu->arch.sev_pio_count)
12714 return 1;
12715 }
12716
12717 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_outs;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012718 return 0;
12719}
12720
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012721static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
12722 unsigned int port);
12723
12724static void advance_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12725{
12726 unsigned count = vcpu->arch.pio.count;
12727 complete_emulator_pio_in(vcpu, vcpu->arch.sev_pio_data);
12728 vcpu->arch.sev_pio_count -= count;
12729 vcpu->arch.sev_pio_data += count * vcpu->arch.pio.size;
12730}
12731
Paolo Bonzini4fa4b382021-10-12 11:25:45 -040012732static int complete_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12733{
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012734 int size = vcpu->arch.pio.size;
12735 int port = vcpu->arch.pio.port;
Paolo Bonzini4fa4b382021-10-12 11:25:45 -040012736
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012737 advance_sev_es_emulated_ins(vcpu);
12738 if (vcpu->arch.sev_pio_count)
12739 return kvm_sev_es_ins(vcpu, size, port);
Paolo Bonzini4fa4b382021-10-12 11:25:45 -040012740 return 1;
12741}
12742
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012743static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012744 unsigned int port)
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012745{
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012746 for (;;) {
12747 unsigned int count =
12748 min_t(unsigned int, PAGE_SIZE / size, vcpu->arch.sev_pio_count);
12749 if (!__emulator_pio_in(vcpu, size, port, count))
12750 break;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012751
Paolo Bonziniea724ea2021-10-12 10:51:55 -040012752 /* Emulation done by the kernel. */
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012753 advance_sev_es_emulated_ins(vcpu);
12754 if (!vcpu->arch.sev_pio_count)
12755 return 1;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012756 }
12757
Paolo Bonziniea724ea2021-10-12 10:51:55 -040012758 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_ins;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012759 return 0;
12760}
12761
12762int kvm_sev_es_string_io(struct kvm_vcpu *vcpu, unsigned int size,
12763 unsigned int port, void *data, unsigned int count,
12764 int in)
12765{
Paolo Bonziniea724ea2021-10-12 10:51:55 -040012766 vcpu->arch.sev_pio_data = data;
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012767 vcpu->arch.sev_pio_count = count;
12768 return in ? kvm_sev_es_ins(vcpu, size, port)
12769 : kvm_sev_es_outs(vcpu, size, port);
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012770}
12771EXPORT_SYMBOL_GPL(kvm_sev_es_string_io);
12772
Lorenzo Bresciad95df952020-12-23 14:45:07 +000012773EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_entry);
Carsten Otte043405e2007-10-10 17:16:19 +020012774EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
12775EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
12776EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
12777EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
12778EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
12779EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
12780EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
12781EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
12782EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
12783EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Sean Christopherson5497b952019-07-11 08:58:29 -070012784EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed);
Carsten Otte043405e2007-10-10 17:16:19 +020012785EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
12786EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
12787EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
12788EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Peter Xu4f75bcc2019-09-06 10:17:22 +080012789EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update);
Carsten Otte043405e2007-10-10 17:16:19 +020012790EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
12791EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
12792EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
12793EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);
Suravee Suthikulpanitab56f8e2020-03-12 05:39:28 -050012794EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log);
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -060012795EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request);
Maxim Levitsky8e819d72021-12-09 13:54:36 +020012796EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_accept_irq);
Tom Lendackyd523ab6b2020-12-10 11:09:48 -060012797EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_enter);
12798EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_exit);
Tom Lendacky59e38b52020-12-10 11:09:52 -060012799EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_enter);
12800EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_exit);