blob: 759ba849e10b5e3f809d8dcafbccff825ae72867 [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>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020071#include <asm/fpu/internal.h> /* Ugh! */
Zachary Amsden1d5f0662010-08-19 22:07:30 -100072#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030073#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080074#include <asm/irq_remapping.h>
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010075#include <asm/mshyperv.h>
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +010076#include <asm/hypervisor.h>
Babu Moger97150922020-09-11 14:29:12 -050077#include <asm/tlbflush.h>
Chao Pengbf8c55d2018-10-24 16:05:14 +080078#include <asm/intel_pt.h>
Masami Hiramatsub3dc0692019-09-06 22:13:59 +090079#include <asm/emulate_prefix.h>
Sean Christophersonfe7e9482021-04-12 16:21:43 +120080#include <asm/sgx.h>
Michael Kelleydd2cb342019-07-01 04:26:06 +000081#include <clocksource/hyperv_timer.h>
Carsten Otte043405e2007-10-10 17:16:19 +020082
Dave Hansend1898b72016-06-01 10:42:20 -070083#define CREATE_TRACE_POINTS
84#include "trace.h"
85
Carsten Otte313a3dc2007-10-11 19:16:52 +020086#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080087#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080088u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
89EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080090
Avi Kivity0f65dd72011-04-20 13:37:53 +030091#define emul_to_vcpu(ctxt) \
Sean Christophersonc9b8b072020-02-18 15:29:48 -080092 ((struct kvm_vcpu *)(ctxt)->vcpu)
Avi Kivity0f65dd72011-04-20 13:37:53 +030093
Joerg Roedel50a37eb2008-01-31 14:57:38 +010094/* EFER defaults:
95 * - enable syscall per default because its emulated by KVM
96 * - enable LME and LMA per default on 64 bit KVM
97 */
98#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080099static
100u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100101#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +0800102static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100103#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +0200104
Sean Christophersonb11306b2019-12-10 14:44:13 -0800105static u64 __read_mostly cr4_reserved_bits = CR4_RESERVED_BITS;
106
Ashish Kalra0dbb1122021-06-08 18:05:43 +0000107#define KVM_EXIT_HYPERCALL_VALID_MASK (1 << KVM_HC_MAP_GPA_RANGE)
108
Radim Krčmářc5192652016-07-12 22:09:28 +0200109#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
110 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +0200111
Gleb Natapovcb142eb2009-08-09 15:17:40 +0300112static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300113static void process_nmi(struct kvm_vcpu *vcpu);
Jay Zhou1f7becf2021-01-18 16:47:20 +0800114static void process_smi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +0200115static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +0100116static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Ken Hofsass01643c52018-01-31 16:03:36 -0800117static void store_regs(struct kvm_vcpu *vcpu);
118static int sync_regs(struct kvm_vcpu *vcpu);
Avi Kivity674eea02008-02-11 18:37:23 +0200119
Maxim Levitsky6dba9402021-06-07 12:02:02 +0300120static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
121static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
122
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700123struct kvm_x86_ops kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300124EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800125
Jason Baron9af54712021-01-14 22:27:55 -0500126#define KVM_X86_OP(func) \
127 DEFINE_STATIC_CALL_NULL(kvm_x86_##func, \
128 *(((struct kvm_x86_ops *)0)->func));
129#define KVM_X86_OP_NULL KVM_X86_OP
130#include <asm/kvm-x86-ops.h>
131EXPORT_STATIC_CALL_GPL(kvm_x86_get_cs_db_l_bits);
132EXPORT_STATIC_CALL_GPL(kvm_x86_cache_reg);
133EXPORT_STATIC_CALL_GPL(kvm_x86_tlb_flush_current);
134
Paolo Bonzini893590c2015-11-06 11:46:24 +0100135static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030136module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200137
Like Xud8550662021-01-08 09:36:55 +0800138bool __read_mostly report_ignored_msrs = true;
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200139module_param(report_ignored_msrs, bool, S_IRUGO | S_IWUSR);
Like Xud8550662021-01-08 09:36:55 +0800140EXPORT_SYMBOL_GPL(report_ignored_msrs);
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200141
Wanpeng Li4c276252018-05-05 04:02:32 -0700142unsigned int min_timer_period_us = 200;
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200143module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
144
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300145static bool __read_mostly kvmclock_periodic_sync = true;
146module_param(kvmclock_periodic_sync, bool, S_IRUGO);
147
Paolo Bonzini893590c2015-11-06 11:46:24 +0100148bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100149EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100150u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100151EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800152u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
153EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
154u64 __read_mostly kvm_max_tsc_scaling_ratio;
155EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700156u64 __read_mostly kvm_default_tsc_scaling_ratio;
157EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +0800158bool __read_mostly kvm_has_bus_lock_exit;
159EXPORT_SYMBOL_GPL(kvm_has_bus_lock_exit);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100160
Zachary Amsdencc578282012-02-03 15:43:50 -0200161/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100162static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200163module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
164
Sean Christophersonc3941d92019-04-17 10:15:33 -0700165/*
166 * lapic timer advance (tscdeadline mode only) in nanoseconds. '-1' enables
Ingo Molnard9f6e122021-03-18 15:28:01 +0100167 * adaptive tuning starting from default advancement of 1000ns. '0' disables
Sean Christophersonc3941d92019-04-17 10:15:33 -0700168 * advancement entirely. Any other value is used as-is and disables adaptive
Ingo Molnard9f6e122021-03-18 15:28:01 +0100169 * tuning, i.e. allows privileged userspace to set an exact advancement time.
Sean Christophersonc3941d92019-04-17 10:15:33 -0700170 */
171static int __read_mostly lapic_timer_advance_ns = -1;
Wanpeng Li0e6edce2019-05-20 16:18:06 +0800172module_param(lapic_timer_advance_ns, int, S_IRUGO | S_IWUSR);
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500173
Feng Wu520040142016-01-25 16:53:33 +0800174static bool __read_mostly vector_hashing = true;
175module_param(vector_hashing, bool, S_IRUGO);
176
Liran Alonc4ae60e2018-03-12 13:12:47 +0200177bool __read_mostly enable_vmware_backdoor = false;
178module_param(enable_vmware_backdoor, bool, S_IRUGO);
179EXPORT_SYMBOL_GPL(enable_vmware_backdoor);
180
Wanpeng Li6c86eed2018-04-03 16:28:49 -0700181static bool __read_mostly force_emulation_prefix = false;
182module_param(force_emulation_prefix, bool, S_IRUGO);
183
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800184int __read_mostly pi_inject_timer = -1;
185module_param(pi_inject_timer, bint, S_IRUGO | S_IWUSR);
186
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700187/*
188 * Restoring the host value for MSRs that are only consumed when running in
189 * usermode, e.g. SYSCALL MSRs and TSC_AUX, can be deferred until the CPU
190 * returns to userspace, i.e. the kernel can run with the guest's value.
191 */
192#define KVM_MAX_NR_USER_RETURN_MSRS 16
Avi Kivity18863bd2009-09-07 11:12:18 +0300193
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700194struct kvm_user_return_msrs {
Avi Kivity18863bd2009-09-07 11:12:18 +0300195 struct user_return_notifier urn;
196 bool registered;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700197 struct kvm_user_return_msr_values {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800198 u64 host;
199 u64 curr;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700200 } values[KVM_MAX_NR_USER_RETURN_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300201};
202
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700203u32 __read_mostly kvm_nr_uret_msrs;
204EXPORT_SYMBOL_GPL(kvm_nr_uret_msrs);
205static u32 __read_mostly kvm_uret_msrs_list[KVM_MAX_NR_USER_RETURN_MSRS];
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700206static struct kvm_user_return_msrs __percpu *user_return_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300207
Sean Christophersoncfc48182020-03-02 15:56:23 -0800208#define KVM_SUPPORTED_XCR0 (XFEATURE_MASK_FP | XFEATURE_MASK_SSE \
209 | XFEATURE_MASK_YMM | XFEATURE_MASK_BNDREGS \
210 | XFEATURE_MASK_BNDCSR | XFEATURE_MASK_AVX512 \
211 | XFEATURE_MASK_PKRU)
212
Sean Christopherson91661982020-03-02 15:57:06 -0800213u64 __read_mostly host_efer;
214EXPORT_SYMBOL_GPL(host_efer);
215
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200216bool __read_mostly allow_smaller_maxphyaddr = 0;
Mohammed Gamal3edd6832020-07-10 17:48:11 +0200217EXPORT_SYMBOL_GPL(allow_smaller_maxphyaddr);
218
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +0200219bool __read_mostly enable_apicv = true;
220EXPORT_SYMBOL_GPL(enable_apicv);
221
Tom Lendacky86137772020-12-10 11:10:07 -0600222u64 __read_mostly host_xss;
223EXPORT_SYMBOL_GPL(host_xss);
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100224u64 __read_mostly supported_xss;
225EXPORT_SYMBOL_GPL(supported_xss);
Aaron Lewis139a12c2019-10-21 16:30:25 -0700226
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000227const struct _kvm_stats_desc kvm_vm_stats_desc[] = {
228 KVM_GENERIC_VM_STATS(),
229 STATS_DESC_COUNTER(VM, mmu_shadow_zapped),
230 STATS_DESC_COUNTER(VM, mmu_pte_write),
231 STATS_DESC_COUNTER(VM, mmu_pde_zapped),
232 STATS_DESC_COUNTER(VM, mmu_flooded),
233 STATS_DESC_COUNTER(VM, mmu_recycled),
234 STATS_DESC_COUNTER(VM, mmu_cache_miss),
235 STATS_DESC_ICOUNTER(VM, mmu_unsync),
Mingwei Zhang71f51d22021-08-02 21:46:07 -0700236 STATS_DESC_ICOUNTER(VM, pages_4k),
237 STATS_DESC_ICOUNTER(VM, pages_2m),
238 STATS_DESC_ICOUNTER(VM, pages_1g),
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000239 STATS_DESC_ICOUNTER(VM, nx_lpage_splits),
Peter Xuec1cf692021-06-25 11:32:06 -0400240 STATS_DESC_PCOUNTER(VM, max_mmu_rmap_size),
Jing Zhangbc9e9e62021-06-23 17:28:46 -0400241 STATS_DESC_PCOUNTER(VM, max_mmu_page_hash_collisions)
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000242};
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000243
244const struct kvm_stats_header kvm_vm_stats_header = {
245 .name_size = KVM_STATS_NAME_SIZE,
246 .num_desc = ARRAY_SIZE(kvm_vm_stats_desc),
247 .id_offset = sizeof(struct kvm_stats_header),
248 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
249 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
250 sizeof(kvm_vm_stats_desc),
251};
252
Jing Zhangce55c042021-06-18 22:27:06 +0000253const struct _kvm_stats_desc kvm_vcpu_stats_desc[] = {
254 KVM_GENERIC_VCPU_STATS(),
255 STATS_DESC_COUNTER(VCPU, pf_fixed),
256 STATS_DESC_COUNTER(VCPU, pf_guest),
257 STATS_DESC_COUNTER(VCPU, tlb_flush),
258 STATS_DESC_COUNTER(VCPU, invlpg),
259 STATS_DESC_COUNTER(VCPU, exits),
260 STATS_DESC_COUNTER(VCPU, io_exits),
261 STATS_DESC_COUNTER(VCPU, mmio_exits),
262 STATS_DESC_COUNTER(VCPU, signal_exits),
263 STATS_DESC_COUNTER(VCPU, irq_window_exits),
264 STATS_DESC_COUNTER(VCPU, nmi_window_exits),
265 STATS_DESC_COUNTER(VCPU, l1d_flush),
266 STATS_DESC_COUNTER(VCPU, halt_exits),
267 STATS_DESC_COUNTER(VCPU, request_irq_exits),
268 STATS_DESC_COUNTER(VCPU, irq_exits),
269 STATS_DESC_COUNTER(VCPU, host_state_reload),
270 STATS_DESC_COUNTER(VCPU, fpu_reload),
271 STATS_DESC_COUNTER(VCPU, insn_emulation),
272 STATS_DESC_COUNTER(VCPU, insn_emulation_fail),
273 STATS_DESC_COUNTER(VCPU, hypercalls),
274 STATS_DESC_COUNTER(VCPU, irq_injections),
275 STATS_DESC_COUNTER(VCPU, nmi_injections),
276 STATS_DESC_COUNTER(VCPU, req_event),
277 STATS_DESC_COUNTER(VCPU, nested_run),
278 STATS_DESC_COUNTER(VCPU, directed_yield_attempted),
279 STATS_DESC_COUNTER(VCPU, directed_yield_successful),
280 STATS_DESC_ICOUNTER(VCPU, guest_mode)
281};
Jing Zhangce55c042021-06-18 22:27:06 +0000282
283const struct kvm_stats_header kvm_vcpu_stats_header = {
284 .name_size = KVM_STATS_NAME_SIZE,
285 .num_desc = ARRAY_SIZE(kvm_vcpu_stats_desc),
286 .id_offset = sizeof(struct kvm_stats_header),
287 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
288 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
289 sizeof(kvm_vcpu_stats_desc),
290};
291
Dexuan Cui2acf9232010-06-10 11:27:12 +0800292u64 __read_mostly host_xcr0;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800293u64 __read_mostly supported_xcr0;
294EXPORT_SYMBOL_GPL(supported_xcr0);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800295
Sean Christopherson80fbd282020-06-08 11:02:18 -0700296static struct kmem_cache *x86_fpu_cache;
Marc Orrb666a4b2018-11-06 14:53:56 -0800297
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800298static struct kmem_cache *x86_emulator_cache;
299
Peter Xu6abe9c12020-06-22 18:04:41 -0400300/*
301 * When called, it means the previous get/set msr reached an invalid msr.
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200302 * Return true if we want to ignore/silent this failed msr access.
Peter Xu6abe9c12020-06-22 18:04:41 -0400303 */
Haiwei Lid6328262021-03-13 13:10:32 +0800304static bool kvm_msr_ignored_check(u32 msr, u64 data, bool write)
Peter Xu6abe9c12020-06-22 18:04:41 -0400305{
306 const char *op = write ? "wrmsr" : "rdmsr";
307
308 if (ignore_msrs) {
309 if (report_ignored_msrs)
Takashi Iwaid383b312020-10-30 16:14:14 +0100310 kvm_pr_unimpl("ignored %s: 0x%x data 0x%llx\n",
311 op, msr, data);
Peter Xu6abe9c12020-06-22 18:04:41 -0400312 /* Mask the error */
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200313 return true;
Peter Xu6abe9c12020-06-22 18:04:41 -0400314 } else {
Takashi Iwaid383b312020-10-30 16:14:14 +0100315 kvm_debug_ratelimited("unhandled %s: 0x%x data 0x%llx\n",
316 op, msr, data);
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200317 return false;
Peter Xu6abe9c12020-06-22 18:04:41 -0400318 }
319}
320
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800321static struct kmem_cache *kvm_alloc_emulator_cache(void)
322{
Sean Christopherson06add252020-02-18 15:29:50 -0800323 unsigned int useroffset = offsetof(struct x86_emulate_ctxt, src);
324 unsigned int size = sizeof(struct x86_emulate_ctxt);
325
326 return kmem_cache_create_usercopy("x86_emulator", size,
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800327 __alignof__(struct x86_emulate_ctxt),
Sean Christopherson06add252020-02-18 15:29:50 -0800328 SLAB_ACCOUNT, useroffset,
329 size - useroffset, NULL);
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800330}
331
Jan Kiszkab6785de2012-09-20 07:43:17 +0200332static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300333
Gleb Natapovaf585b92010-10-14 11:22:46 +0200334static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
335{
336 int i;
Peter Xudd03bca2020-04-16 11:58:59 -0400337 for (i = 0; i < ASYNC_PF_PER_VCPU; i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +0200338 vcpu->arch.apf.gfns[i] = ~0;
339}
340
Avi Kivity18863bd2009-09-07 11:12:18 +0300341static void kvm_on_user_return(struct user_return_notifier *urn)
342{
343 unsigned slot;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700344 struct kvm_user_return_msrs *msrs
345 = container_of(urn, struct kvm_user_return_msrs, urn);
346 struct kvm_user_return_msr_values *values;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700347 unsigned long flags;
Avi Kivity18863bd2009-09-07 11:12:18 +0300348
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700349 /*
350 * Disabling irqs at this point since the following code could be
351 * interrupted and executed through kvm_arch_hardware_disable()
352 */
353 local_irq_save(flags);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700354 if (msrs->registered) {
355 msrs->registered = false;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700356 user_return_notifier_unregister(urn);
357 }
358 local_irq_restore(flags);
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700359 for (slot = 0; slot < kvm_nr_uret_msrs; ++slot) {
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700360 values = &msrs->values[slot];
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800361 if (values->host != values->curr) {
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700362 wrmsrl(kvm_uret_msrs_list[slot], values->host);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800363 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300364 }
365 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300366}
367
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700368static int kvm_probe_user_return_msr(u32 msr)
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700369{
370 u64 val;
371 int ret;
372
373 preempt_disable();
374 ret = rdmsrl_safe(msr, &val);
375 if (ret)
376 goto out;
377 ret = wrmsrl_safe(msr, val);
378out:
379 preempt_enable();
380 return ret;
381}
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700382
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700383int kvm_add_user_return_msr(u32 msr)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800384{
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700385 BUG_ON(kvm_nr_uret_msrs >= KVM_MAX_NR_USER_RETURN_MSRS);
386
387 if (kvm_probe_user_return_msr(msr))
388 return -1;
389
390 kvm_uret_msrs_list[kvm_nr_uret_msrs] = msr;
391 return kvm_nr_uret_msrs++;
Avi Kivity18863bd2009-09-07 11:12:18 +0300392}
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700393EXPORT_SYMBOL_GPL(kvm_add_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300394
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700395int kvm_find_user_return_msr(u32 msr)
396{
397 int i;
398
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700399 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
400 if (kvm_uret_msrs_list[i] == msr)
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700401 return i;
402 }
403 return -1;
404}
405EXPORT_SYMBOL_GPL(kvm_find_user_return_msr);
406
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700407static void kvm_user_return_msr_cpu_online(void)
Avi Kivity18863bd2009-09-07 11:12:18 +0300408{
Sean Christopherson05c19c22019-11-22 12:04:50 -0800409 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700410 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Sean Christopherson05c19c22019-11-22 12:04:50 -0800411 u64 value;
412 int i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300413
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700414 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
415 rdmsrl_safe(kvm_uret_msrs_list[i], &value);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700416 msrs->values[i].host = value;
417 msrs->values[i].curr = value;
Sean Christopherson05c19c22019-11-22 12:04:50 -0800418 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300419}
420
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700421int kvm_set_user_return_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300422{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200423 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700424 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700425 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300426
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700427 value = (value & mask) | (msrs->values[slot].host & ~mask);
428 if (value == msrs->values[slot].curr)
Andy Honig8b3c3102014-08-27 11:16:44 -0700429 return 0;
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700430 err = wrmsrl_safe(kvm_uret_msrs_list[slot], value);
Andy Honig8b3c3102014-08-27 11:16:44 -0700431 if (err)
432 return 1;
433
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700434 msrs->values[slot].curr = value;
435 if (!msrs->registered) {
436 msrs->urn.on_user_return = kvm_on_user_return;
437 user_return_notifier_register(&msrs->urn);
438 msrs->registered = true;
Avi Kivity18863bd2009-09-07 11:12:18 +0300439 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700440 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300441}
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700442EXPORT_SYMBOL_GPL(kvm_set_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300443
Radim Krčmář13a34e02014-08-28 15:13:03 +0200444static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200445{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200446 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700447 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200448
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700449 if (msrs->registered)
450 kvm_on_user_return(&msrs->urn);
Avi Kivity3548bab2009-11-28 14:18:47 +0200451}
452
Carsten Otte6866b832007-10-29 16:09:10 +0100453u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
454{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300455 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100456}
457EXPORT_SYMBOL_GPL(kvm_get_apic_base);
458
Jim Mattson58871642018-05-09 16:56:04 -0400459enum lapic_mode kvm_get_apic_mode(struct kvm_vcpu *vcpu)
460{
461 return kvm_apic_mode(kvm_get_apic_base(vcpu));
462}
463EXPORT_SYMBOL_GPL(kvm_get_apic_mode);
464
Jan Kiszka58cb6282014-01-24 16:48:44 +0100465int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100466{
Jim Mattson58871642018-05-09 16:56:04 -0400467 enum lapic_mode old_mode = kvm_get_apic_mode(vcpu);
468 enum lapic_mode new_mode = kvm_apic_mode(msr_info->data);
Sean Christophersona8ac8642021-02-03 16:01:15 -0800469 u64 reserved_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu) | 0x2ff |
Radim Krčmářd6321d42017-08-05 00:12:49 +0200470 (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) ? 0 : X2APIC_ENABLE);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100471
Jim Mattson58871642018-05-09 16:56:04 -0400472 if ((msr_info->data & reserved_bits) != 0 || new_mode == LAPIC_MODE_INVALID)
Jim Mattsond3802282017-08-10 10:14:13 -0700473 return 1;
Jim Mattson58871642018-05-09 16:56:04 -0400474 if (!msr_info->host_initiated) {
475 if (old_mode == LAPIC_MODE_X2APIC && new_mode == LAPIC_MODE_XAPIC)
476 return 1;
477 if (old_mode == LAPIC_MODE_DISABLED && new_mode == LAPIC_MODE_X2APIC)
478 return 1;
479 }
Jan Kiszka58cb6282014-01-24 16:48:44 +0100480
481 kvm_lapic_set_base(vcpu, msr_info->data);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800482 kvm_recalculate_apic_map(vcpu->kvm);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100483 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100484}
485EXPORT_SYMBOL_GPL(kvm_set_apic_base);
486
Sean Christophersonad0577c2021-08-09 10:39:54 -0700487/*
488 * Handle a fault on a hardware virtualization (VMX or SVM) instruction.
489 *
490 * Hardware virtualization extension instructions may fault if a reboot turns
491 * off virtualization while processes are running. Usually after catching the
492 * fault we just panic; during reboot instead the instruction is ignored.
493 */
494noinstr void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000495{
496 /* Fault while not rebooting. We want the trace. */
kbuild test robotb4fdcf62019-09-29 18:43:28 +0200497 BUG_ON(!kvm_rebooting);
Geoff Levande3ba45b2013-04-05 19:20:30 +0000498}
499EXPORT_SYMBOL_GPL(kvm_spurious_fault);
500
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200501#define EXCPT_BENIGN 0
502#define EXCPT_CONTRIBUTORY 1
503#define EXCPT_PF 2
504
505static int exception_class(int vector)
506{
507 switch (vector) {
508 case PF_VECTOR:
509 return EXCPT_PF;
510 case DE_VECTOR:
511 case TS_VECTOR:
512 case NP_VECTOR:
513 case SS_VECTOR:
514 case GP_VECTOR:
515 return EXCPT_CONTRIBUTORY;
516 default:
517 break;
518 }
519 return EXCPT_BENIGN;
520}
521
Nadav Amitd6e8c852014-07-24 14:51:24 +0300522#define EXCPT_FAULT 0
523#define EXCPT_TRAP 1
524#define EXCPT_ABORT 2
525#define EXCPT_INTERRUPT 3
526
527static int exception_type(int vector)
528{
529 unsigned int mask;
530
531 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
532 return EXCPT_INTERRUPT;
533
534 mask = 1 << vector;
535
536 /* #DB is trap, as instruction watchpoints are handled elsewhere */
537 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
538 return EXCPT_TRAP;
539
540 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
541 return EXCPT_ABORT;
542
543 /* Reserved exceptions will result in fault */
544 return EXCPT_FAULT;
545}
546
Jim Mattsonda998b42018-10-16 14:29:22 -0700547void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu)
548{
549 unsigned nr = vcpu->arch.exception.nr;
550 bool has_payload = vcpu->arch.exception.has_payload;
551 unsigned long payload = vcpu->arch.exception.payload;
552
553 if (!has_payload)
554 return;
555
556 switch (nr) {
Jim Mattsonf10c7292018-10-16 14:29:23 -0700557 case DB_VECTOR:
558 /*
559 * "Certain debug exceptions may clear bit 0-3. The
560 * remaining contents of the DR6 register are never
561 * cleared by the processor".
562 */
563 vcpu->arch.dr6 &= ~DR_TRAP_BITS;
564 /*
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800565 * In order to reflect the #DB exception payload in guest
566 * dr6, three components need to be considered: active low
567 * bit, FIXED_1 bits and active high bits (e.g. DR6_BD,
568 * DR6_BS and DR6_BT)
569 * DR6_ACTIVE_LOW contains the FIXED_1 and active low bits.
570 * In the target guest dr6:
571 * FIXED_1 bits should always be set.
572 * Active low bits should be cleared if 1-setting in payload.
573 * Active high bits should be set if 1-setting in payload.
574 *
575 * Note, the payload is compatible with the pending debug
576 * exceptions/exit qualification under VMX, that active_low bits
577 * are active high in payload.
578 * So they need to be flipped for DR6.
Jim Mattsonf10c7292018-10-16 14:29:23 -0700579 */
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800580 vcpu->arch.dr6 |= DR6_ACTIVE_LOW;
Jim Mattsonf10c7292018-10-16 14:29:23 -0700581 vcpu->arch.dr6 |= payload;
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800582 vcpu->arch.dr6 ^= payload & DR6_ACTIVE_LOW;
Oliver Upton307f1cf2020-02-07 02:36:04 -0800583
584 /*
585 * The #DB payload is defined as compatible with the 'pending
586 * debug exceptions' field under VMX, not DR6. While bit 12 is
587 * defined in the 'pending debug exceptions' field (enabled
588 * breakpoint), it is reserved and must be zero in DR6.
589 */
590 vcpu->arch.dr6 &= ~BIT(12);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700591 break;
Jim Mattsonda998b42018-10-16 14:29:22 -0700592 case PF_VECTOR:
593 vcpu->arch.cr2 = payload;
594 break;
595 }
596
597 vcpu->arch.exception.has_payload = false;
598 vcpu->arch.exception.payload = 0;
599}
600EXPORT_SYMBOL_GPL(kvm_deliver_exception_payload);
601
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200602static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200603 unsigned nr, bool has_error, u32 error_code,
Jim Mattson91e86d22018-10-16 14:29:21 -0700604 bool has_payload, unsigned long payload, bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200605{
606 u32 prev_nr;
607 int class1, class2;
608
Avi Kivity3842d132010-07-27 12:30:24 +0300609 kvm_make_request(KVM_REQ_EVENT, vcpu);
610
Wanpeng Li664f8e22017-08-24 03:35:09 -0700611 if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) {
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200612 queue:
Wanpeng Li664f8e22017-08-24 03:35:09 -0700613 if (reinject) {
614 /*
615 * On vmentry, vcpu->arch.exception.pending is only
616 * true if an event injection was blocked by
617 * nested_run_pending. In that case, however,
618 * vcpu_enter_guest requests an immediate exit,
619 * and the guest shouldn't proceed far enough to
620 * need reinjection.
621 */
622 WARN_ON_ONCE(vcpu->arch.exception.pending);
623 vcpu->arch.exception.injected = true;
Jim Mattson91e86d22018-10-16 14:29:21 -0700624 if (WARN_ON_ONCE(has_payload)) {
625 /*
626 * A reinjected event has already
627 * delivered its payload.
628 */
629 has_payload = false;
630 payload = 0;
631 }
Wanpeng Li664f8e22017-08-24 03:35:09 -0700632 } else {
633 vcpu->arch.exception.pending = true;
634 vcpu->arch.exception.injected = false;
635 }
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200636 vcpu->arch.exception.has_error_code = has_error;
637 vcpu->arch.exception.nr = nr;
638 vcpu->arch.exception.error_code = error_code;
Jim Mattson91e86d22018-10-16 14:29:21 -0700639 vcpu->arch.exception.has_payload = has_payload;
640 vcpu->arch.exception.payload = payload;
Oliver Uptona06230b2020-02-07 02:36:06 -0800641 if (!is_guest_mode(vcpu))
Jim Mattsonda998b42018-10-16 14:29:22 -0700642 kvm_deliver_exception_payload(vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200643 return;
644 }
645
646 /* to check exception */
647 prev_nr = vcpu->arch.exception.nr;
648 if (prev_nr == DF_VECTOR) {
649 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300650 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200651 return;
652 }
653 class1 = exception_class(prev_nr);
654 class2 = exception_class(nr);
655 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
656 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
Wanpeng Li664f8e22017-08-24 03:35:09 -0700657 /*
658 * Generate double fault per SDM Table 5-5. Set
659 * exception.pending = true so that the double fault
660 * can trigger a nested vmexit.
661 */
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200662 vcpu->arch.exception.pending = true;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700663 vcpu->arch.exception.injected = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200664 vcpu->arch.exception.has_error_code = true;
665 vcpu->arch.exception.nr = DF_VECTOR;
666 vcpu->arch.exception.error_code = 0;
Jim Mattsonc8514362018-10-16 14:29:19 -0700667 vcpu->arch.exception.has_payload = false;
668 vcpu->arch.exception.payload = 0;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200669 } else
670 /* replace previous exception with a new one in a hope
671 that instruction re-execution will regenerate lost
672 exception */
673 goto queue;
674}
675
Avi Kivity298101d2007-11-25 13:41:11 +0200676void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
677{
Jim Mattson91e86d22018-10-16 14:29:21 -0700678 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200679}
680EXPORT_SYMBOL_GPL(kvm_queue_exception);
681
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200682void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
683{
Jim Mattson91e86d22018-10-16 14:29:21 -0700684 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200685}
686EXPORT_SYMBOL_GPL(kvm_requeue_exception);
687
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400688void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr,
689 unsigned long payload)
Jim Mattsonf10c7292018-10-16 14:29:23 -0700690{
691 kvm_multiple_exception(vcpu, nr, false, 0, true, payload, false);
692}
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400693EXPORT_SYMBOL_GPL(kvm_queue_exception_p);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700694
Jim Mattsonda998b42018-10-16 14:29:22 -0700695static void kvm_queue_exception_e_p(struct kvm_vcpu *vcpu, unsigned nr,
696 u32 error_code, unsigned long payload)
697{
698 kvm_multiple_exception(vcpu, nr, true, error_code,
699 true, payload, false);
700}
701
Kyle Huey6affcbe2016-11-29 12:40:40 -0800702int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200703{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100704 if (err)
705 kvm_inject_gp(vcpu, 0);
706 else
Kyle Huey6affcbe2016-11-29 12:40:40 -0800707 return kvm_skip_emulated_instruction(vcpu);
708
709 return 1;
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100710}
711EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200712
Avi Kivity6389ee92010-11-29 16:12:30 +0200713void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200714{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200715 ++vcpu->stat.pf_guest;
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700716 vcpu->arch.exception.nested_apf =
717 is_guest_mode(vcpu) && fault->async_page_fault;
Jim Mattsonda998b42018-10-16 14:29:22 -0700718 if (vcpu->arch.exception.nested_apf) {
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700719 vcpu->arch.apf.nested_apf_token = fault->address;
Jim Mattsonda998b42018-10-16 14:29:22 -0700720 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
721 } else {
722 kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code,
723 fault->address);
724 }
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200725}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300726EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200727
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700728bool kvm_inject_emulated_page_fault(struct kvm_vcpu *vcpu,
729 struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200730{
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400731 struct kvm_mmu *fault_mmu;
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700732 WARN_ON_ONCE(fault->vector != PF_VECTOR);
733
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400734 fault_mmu = fault->nested_page_fault ? vcpu->arch.mmu :
735 vcpu->arch.walk_mmu;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200736
Junaid Shahidee1fa202020-03-20 14:28:03 -0700737 /*
738 * Invalidate the TLB entry for the faulting address, if it exists,
739 * else the access will fault indefinitely (and to emulate hardware).
740 */
741 if ((fault->error_code & PFERR_PRESENT_MASK) &&
742 !(fault->error_code & PFERR_RSVD_MASK))
743 kvm_mmu_invalidate_gva(vcpu, fault_mmu, fault->address,
744 fault_mmu->root_hpa);
745
746 fault_mmu->inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200747 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200748}
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700749EXPORT_SYMBOL_GPL(kvm_inject_emulated_page_fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200750
Sheng Yang3419ffc2008-05-15 09:52:48 +0800751void kvm_inject_nmi(struct kvm_vcpu *vcpu)
752{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300753 atomic_inc(&vcpu->arch.nmi_queued);
754 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800755}
756EXPORT_SYMBOL_GPL(kvm_inject_nmi);
757
Avi Kivity298101d2007-11-25 13:41:11 +0200758void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
759{
Jim Mattson91e86d22018-10-16 14:29:21 -0700760 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200761}
762EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
763
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200764void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
765{
Jim Mattson91e86d22018-10-16 14:29:21 -0700766 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200767}
768EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
769
Carsten Ottea03490e2007-10-29 16:09:35 +0100770/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300771 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
772 * a #GP and return false.
773 */
774bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200775{
Jason Baronb36464772021-01-14 22:27:56 -0500776 if (static_call(kvm_x86_get_cpl)(vcpu) <= required_cpl)
Avi Kivity0a79b002009-09-01 12:03:25 +0300777 return true;
778 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
779 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100780}
Avi Kivity0a79b002009-09-01 12:03:25 +0300781EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100782
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300783bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
784{
785 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
786 return true;
787
788 kvm_queue_exception(vcpu, UD_VECTOR);
789 return false;
790}
791EXPORT_SYMBOL_GPL(kvm_require_dr);
792
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700793static inline u64 pdptr_rsvd_bits(struct kvm_vcpu *vcpu)
794{
Sean Christopherson5b7f5752021-02-03 16:01:13 -0800795 return vcpu->arch.reserved_gpa_bits | rsvd_bits(5, 8) | rsvd_bits(1, 2);
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700796}
797
Joerg Roedelec92fe42010-09-10 17:30:51 +0200798/*
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700799 * Load the pae pdptrs. Return 1 if they are all valid, 0 otherwise.
Carsten Ottea03490e2007-10-29 16:09:35 +0100800 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200801int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100802{
803 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700804 gpa_t real_gpa;
Carsten Ottea03490e2007-10-29 16:09:35 +0100805 int i;
806 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200807 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100808
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700809 /*
810 * If the MMU is nested, CR3 holds an L2 GPA and needs to be translated
811 * to an L1 GPA.
812 */
813 real_gpa = mmu->translate_gpa(vcpu, gfn_to_gpa(pdpt_gfn),
814 PFERR_USER_MASK | PFERR_WRITE_MASK, NULL);
815 if (real_gpa == UNMAPPED_GVA)
816 return 0;
817
Sean Christopherson94c641b2021-08-31 09:42:24 -0700818 /* Note the offset, PDPTRs are 32 byte aligned when using PAE paging. */
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700819 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(real_gpa), pdpte,
Sean Christopherson94c641b2021-08-31 09:42:24 -0700820 cr3 & GENMASK(11, 5), sizeof(pdpte));
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700821 if (ret < 0)
822 return 0;
823
Carsten Ottea03490e2007-10-29 16:09:35 +0100824 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400825 if ((pdpte[i] & PT_PRESENT_MASK) &&
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700826 (pdpte[i] & pdptr_rsvd_bits(vcpu))) {
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700827 return 0;
Carsten Ottea03490e2007-10-29 16:09:35 +0100828 }
829 }
Carsten Ottea03490e2007-10-29 16:09:35 +0100830
Joerg Roedelff03a072010-09-10 17:30:57 +0200831 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700832 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
Maxim Levitsky158a48e2021-06-07 12:02:03 +0300833 vcpu->arch.pdptrs_from_userspace = false;
834
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700835 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100836}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100837EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100838
Tom Lendackyf27ad382020-12-10 11:09:56 -0600839void kvm_post_set_cr0(struct kvm_vcpu *vcpu, unsigned long old_cr0, unsigned long cr0)
840{
Tom Lendackyf27ad382020-12-10 11:09:56 -0600841 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
842 kvm_clear_async_pf_completion_queue(vcpu);
843 kvm_async_pf_hash_reset(vcpu);
844 }
845
Sean Christopherson20f632b2021-06-22 10:57:02 -0700846 if ((cr0 ^ old_cr0) & KVM_MMU_CR0_ROLE_BITS)
Tom Lendackyf27ad382020-12-10 11:09:56 -0600847 kvm_mmu_reset_context(vcpu);
848
849 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
850 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
851 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
852 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
853}
854EXPORT_SYMBOL_GPL(kvm_post_set_cr0);
855
Avi Kivity49a9b072010-06-10 17:02:14 +0300856int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100857{
Sheng Yangaad82702010-05-12 16:40:42 +0800858 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Jim Mattsond42e3fa2020-07-07 15:36:30 -0700859 unsigned long pdptr_bits = X86_CR0_CD | X86_CR0_NW | X86_CR0_PG;
Sheng Yangaad82702010-05-12 16:40:42 +0800860
Avi Kivityf9a48e62010-01-06 19:10:22 +0200861 cr0 |= X86_CR0_ET;
862
Gleb Natapovab344822010-01-21 15:28:46 +0200863#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300864 if (cr0 & 0xffffffff00000000UL)
865 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200866#endif
867
868 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100869
Gleb Natapov0f122442010-04-28 19:15:31 +0300870 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
871 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100872
Gleb Natapov0f122442010-04-28 19:15:31 +0300873 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
874 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100875
Carsten Ottea03490e2007-10-29 16:09:35 +0100876#ifdef CONFIG_X86_64
Sean Christopherson05487212020-07-13 18:57:32 -0700877 if ((vcpu->arch.efer & EFER_LME) && !is_paging(vcpu) &&
878 (cr0 & X86_CR0_PG)) {
879 int cs_db, cs_l;
Carsten Ottea03490e2007-10-29 16:09:35 +0100880
Sean Christopherson05487212020-07-13 18:57:32 -0700881 if (!is_pae(vcpu))
882 return 1;
Jason Baronb36464772021-01-14 22:27:56 -0500883 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Sean Christopherson05487212020-07-13 18:57:32 -0700884 if (cs_l)
Gleb Natapov0f122442010-04-28 19:15:31 +0300885 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100886 }
Sean Christopherson05487212020-07-13 18:57:32 -0700887#endif
888 if (!(vcpu->arch.efer & EFER_LME) && (cr0 & X86_CR0_PG) &&
889 is_pae(vcpu) && ((cr0 ^ old_cr0) & pdptr_bits) &&
890 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu)))
891 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100892
Mao, Junjiead756a12012-07-02 01:18:48 +0000893 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
894 return 1;
895
Jason Baronb36464772021-01-14 22:27:56 -0500896 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100897
Tom Lendackyf27ad382020-12-10 11:09:56 -0600898 kvm_post_set_cr0(vcpu, old_cr0, cr0);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800899
Gleb Natapov0f122442010-04-28 19:15:31 +0300900 return 0;
901}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200902EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100903
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200904void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100905{
Avi Kivity49a9b072010-06-10 17:02:14 +0300906 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100907}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200908EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100909
Aaron Lewis139a12c2019-10-21 16:30:25 -0700910void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu)
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300911{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600912 if (vcpu->arch.guest_state_protected)
913 return;
914
Aaron Lewis139a12c2019-10-21 16:30:25 -0700915 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300916
Aaron Lewis139a12c2019-10-21 16:30:25 -0700917 if (vcpu->arch.xcr0 != host_xcr0)
918 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
919
920 if (vcpu->arch.xsaves_enabled &&
921 vcpu->arch.ia32_xss != host_xss)
922 wrmsrl(MSR_IA32_XSS, vcpu->arch.ia32_xss);
923 }
Babu Moger37486132020-05-12 18:59:06 -0500924
925 if (static_cpu_has(X86_FEATURE_PKU) &&
926 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
927 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU)) &&
928 vcpu->arch.pkru != vcpu->arch.host_pkru)
Thomas Gleixner72a6c082021-06-23 14:02:23 +0200929 write_pkru(vcpu->arch.pkru);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300930}
Aaron Lewis139a12c2019-10-21 16:30:25 -0700931EXPORT_SYMBOL_GPL(kvm_load_guest_xsave_state);
932
933void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu)
934{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600935 if (vcpu->arch.guest_state_protected)
936 return;
937
Babu Moger37486132020-05-12 18:59:06 -0500938 if (static_cpu_has(X86_FEATURE_PKU) &&
939 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
940 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU))) {
941 vcpu->arch.pkru = rdpkru();
942 if (vcpu->arch.pkru != vcpu->arch.host_pkru)
Thomas Gleixner72a6c082021-06-23 14:02:23 +0200943 write_pkru(vcpu->arch.host_pkru);
Babu Moger37486132020-05-12 18:59:06 -0500944 }
945
Aaron Lewis139a12c2019-10-21 16:30:25 -0700946 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
947
948 if (vcpu->arch.xcr0 != host_xcr0)
949 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
950
951 if (vcpu->arch.xsaves_enabled &&
952 vcpu->arch.ia32_xss != host_xss)
953 wrmsrl(MSR_IA32_XSS, host_xss);
954 }
955
956}
957EXPORT_SYMBOL_GPL(kvm_load_host_xsave_state);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300958
Fengguang Wu69b00492015-01-19 22:33:39 +0800959static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800960{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000961 u64 xcr0 = xcr;
962 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200963 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800964
965 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
966 if (index != XCR_XFEATURE_ENABLED_MASK)
967 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700968 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800969 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700970 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800971 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200972
973 /*
974 * Do not allow the guest to set bits that we do not support
975 * saving. However, xcr0 bit 0 is always set, even if the
Sean Christophersone8f65b92021-09-20 17:02:58 -0700976 * emulated CPU does not support XSAVE (see kvm_vcpu_reset()).
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200977 */
Dave Hansend91cab72015-09-02 16:31:26 -0700978 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200979 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800980 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200981
Dave Hansend91cab72015-09-02 16:31:26 -0700982 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
983 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +0000984 return 1;
985
Dave Hansend91cab72015-09-02 16:31:26 -0700986 if (xcr0 & XFEATURE_MASK_AVX512) {
987 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +0800988 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700989 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +0800990 return 1;
991 }
Dexuan Cui2acf9232010-06-10 11:27:12 +0800992 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000993
Dave Hansend91cab72015-09-02 16:31:26 -0700994 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800995 kvm_update_cpuid_runtime(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800996 return 0;
997}
998
Sean Christopherson92f98952021-02-04 16:57:46 -0800999int kvm_emulate_xsetbv(struct kvm_vcpu *vcpu)
Dexuan Cui2acf9232010-06-10 11:27:12 +08001000{
Sean Christopherson92f98952021-02-04 16:57:46 -08001001 if (static_call(kvm_x86_get_cpl)(vcpu) != 0 ||
1002 __kvm_set_xcr(vcpu, kvm_rcx_read(vcpu), kvm_read_edx_eax(vcpu))) {
1003 kvm_inject_gp(vcpu, 0);
1004 return 1;
1005 }
Paolo Bonzinibbefd4f2020-12-14 07:49:54 -05001006
Sean Christopherson92f98952021-02-04 16:57:46 -08001007 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001008}
Sean Christopherson92f98952021-02-04 16:57:46 -08001009EXPORT_SYMBOL_GPL(kvm_emulate_xsetbv);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001010
Sean Christophersonee69c922020-10-06 18:44:16 -07001011bool kvm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Wanpeng Li3ca94192019-09-18 17:50:10 +08001012{
Sean Christophersonb11306b2019-12-10 14:44:13 -08001013 if (cr4 & cr4_reserved_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001014 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001015
Krish Sadhukhanb899c132020-07-08 00:39:55 +00001016 if (cr4 & vcpu->arch.cr4_guest_rsvd_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001017 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001018
Jason Baronb36464772021-01-14 22:27:56 -05001019 return static_call(kvm_x86_is_valid_cr4)(vcpu, cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001020}
Sean Christophersonee69c922020-10-06 18:44:16 -07001021EXPORT_SYMBOL_GPL(kvm_is_valid_cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001022
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001023void kvm_post_set_cr4(struct kvm_vcpu *vcpu, unsigned long old_cr4, unsigned long cr4)
1024{
Sean Christopherson20f632b2021-06-22 10:57:02 -07001025 if (((cr4 ^ old_cr4) & KVM_MMU_CR4_ROLE_BITS) ||
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001026 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
1027 kvm_mmu_reset_context(vcpu);
1028}
1029EXPORT_SYMBOL_GPL(kvm_post_set_cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001030
Avi Kivitya83b29c2010-06-10 17:02:15 +03001031int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +01001032{
Avi Kivityfc78f512009-12-07 12:16:48 +02001033 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +08001034 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
Jim Mattsoncb957ad2020-08-17 11:16:54 -07001035 X86_CR4_SMEP;
Xiao Guangrong0be02262015-05-11 22:55:21 +08001036
Sean Christophersonee69c922020-10-06 18:44:16 -07001037 if (!kvm_is_valid_cr4(vcpu, cr4))
Paolo Bonziniae3e61e2016-07-12 10:36:41 +02001038 return 1;
1039
Carsten Ottea03490e2007-10-29 16:09:35 +01001040 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +03001041 if (!(cr4 & X86_CR4_PAE))
1042 return 1;
Sean Christophersond74fcfc2020-07-02 19:17:14 -07001043 if ((cr4 ^ old_cr4) & X86_CR4_LA57)
1044 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +03001045 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
1046 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +02001047 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
1048 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +03001049 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001050
Mao, Junjiead756a12012-07-02 01:18:48 +00001051 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
Radim Krčmářd6321d42017-08-05 00:12:49 +02001052 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
Mao, Junjiead756a12012-07-02 01:18:48 +00001053 return 1;
1054
1055 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
1056 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
1057 return 1;
1058 }
1059
Jason Baronb36464772021-01-14 22:27:56 -05001060 static_call(kvm_x86_set_cr4)(vcpu, cr4);
Gleb Natapov0f122442010-04-28 19:15:31 +03001061
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001062 kvm_post_set_cr4(vcpu, old_cr4, cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001063
Gleb Natapov0f122442010-04-28 19:15:31 +03001064 return 0;
1065}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001066EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +01001067
Sean Christopherson21823fb2021-06-09 16:42:24 -07001068static void kvm_invalidate_pcid(struct kvm_vcpu *vcpu, unsigned long pcid)
1069{
1070 struct kvm_mmu *mmu = vcpu->arch.mmu;
1071 unsigned long roots_to_free = 0;
1072 int i;
1073
1074 /*
1075 * If neither the current CR3 nor any of the prev_roots use the given
1076 * PCID, then nothing needs to be done here because a resync will
1077 * happen anyway before switching to any other CR3.
1078 */
1079 if (kvm_get_active_pcid(vcpu) == pcid) {
Sean Christophersone62f1aa2021-06-09 16:42:32 -07001080 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001081 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
1082 }
1083
1084 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
1085 if (kvm_get_pcid(vcpu, mmu->prev_roots[i].pgd) == pcid)
1086 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
1087
1088 kvm_mmu_free_roots(vcpu, mmu, roots_to_free);
1089}
1090
Avi Kivity23902182010-06-10 17:02:16 +03001091int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +01001092{
Junaid Shahidade61e22018-06-27 14:59:15 -07001093 bool skip_tlb_flush = false;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001094 unsigned long pcid = 0;
Paolo Bonziniac146232014-11-10 13:53:25 +01001095#ifdef CONFIG_X86_64
Junaid Shahidc19986f2018-05-04 11:37:13 -07001096 bool pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
1097
Junaid Shahidade61e22018-06-27 14:59:15 -07001098 if (pcid_enabled) {
Junaid Shahid208320b2018-06-27 14:59:21 -07001099 skip_tlb_flush = cr3 & X86_CR3_PCID_NOFLUSH;
1100 cr3 &= ~X86_CR3_PCID_NOFLUSH;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001101 pcid = cr3 & X86_CR3_PCID_MASK;
Junaid Shahidade61e22018-06-27 14:59:15 -07001102 }
Paolo Bonziniac146232014-11-10 13:53:25 +01001103#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +02001104
Sean Christophersonc7313152021-06-07 12:01:58 +03001105 /* PDPTRs are always reloaded for PAE paging. */
Sean Christopherson21823fb2021-06-09 16:42:24 -07001106 if (cr3 == kvm_read_cr3(vcpu) && !is_pae_paging(vcpu))
1107 goto handle_tlb_flush;
Avi Kivityd835dfe2007-11-21 02:57:59 +02001108
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001109 /*
1110 * Do not condition the GPA check on long mode, this helper is used to
1111 * stuff CR3, e.g. for RSM emulation, and there is no guarantee that
1112 * the current vCPU mode is accurate.
1113 */
1114 if (kvm_vcpu_is_illegal_gpa(vcpu, cr3))
Yu Zhangd1cd3ce2017-08-24 20:27:53 +08001115 return 1;
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001116
1117 if (is_pae_paging(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +03001118 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001119
Sean Christopherson21823fb2021-06-09 16:42:24 -07001120 if (cr3 != kvm_read_cr3(vcpu))
Sean Christophersonb5129102021-06-09 16:42:27 -07001121 kvm_mmu_new_pgd(vcpu, cr3);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001122
Gleb Natapov0f122442010-04-28 19:15:31 +03001123 vcpu->arch.cr3 = cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001124 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Junaid Shahid7c390d32018-06-27 14:59:06 -07001125
Sean Christopherson21823fb2021-06-09 16:42:24 -07001126handle_tlb_flush:
1127 /*
1128 * A load of CR3 that flushes the TLB flushes only the current PCID,
1129 * even if PCID is disabled, in which case PCID=0 is flushed. It's a
1130 * moot point in the end because _disabling_ PCID will flush all PCIDs,
1131 * and it's impossible to use a non-zero PCID when PCID is disabled,
1132 * i.e. only PCID=0 can be relevant.
1133 */
1134 if (!skip_tlb_flush)
1135 kvm_invalidate_pcid(vcpu, pcid);
1136
Gleb Natapov0f122442010-04-28 19:15:31 +03001137 return 0;
1138}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001139EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +01001140
Andre Przywaraeea1cff2010-12-21 11:12:00 +01001141int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +01001142{
Gleb Natapov0f122442010-04-28 19:15:31 +03001143 if (cr8 & CR8_RESERVED_BITS)
1144 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +02001145 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001146 kvm_lapic_set_tpr(vcpu, cr8);
1147 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001148 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +03001149 return 0;
1150}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001151EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001152
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001153unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +01001154{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001155 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001156 return kvm_lapic_get_cr8(vcpu);
1157 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001158 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +01001159}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001160EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001161
Nadav Amitae561ed2015-04-02 03:10:37 +03001162static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
1163{
1164 int i;
1165
1166 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
1167 for (i = 0; i < KVM_NR_DB_REGS; i++)
1168 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Nadav Amitae561ed2015-04-02 03:10:37 +03001169 }
1170}
1171
Paolo Bonzini7c866632020-05-16 08:42:28 -04001172void kvm_update_dr7(struct kvm_vcpu *vcpu)
Jan Kiszkac8639012012-09-21 05:42:55 +02001173{
1174 unsigned long dr7;
1175
1176 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1177 dr7 = vcpu->arch.guest_debug_dr7;
1178 else
1179 dr7 = vcpu->arch.dr7;
Jason Baronb36464772021-01-14 22:27:56 -05001180 static_call(kvm_x86_set_dr7)(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +01001181 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
1182 if (dr7 & DR7_BP_EN_MASK)
1183 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +02001184}
Paolo Bonzini7c866632020-05-16 08:42:28 -04001185EXPORT_SYMBOL_GPL(kvm_update_dr7);
Jan Kiszkac8639012012-09-21 05:42:55 +02001186
Nadav Amit6f43ed02014-07-15 17:37:46 +03001187static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
1188{
1189 u64 fixed = DR6_FIXED_1;
1190
Radim Krčmářd6321d42017-08-05 00:12:49 +02001191 if (!guest_cpuid_has(vcpu, X86_FEATURE_RTM))
Nadav Amit6f43ed02014-07-15 17:37:46 +03001192 fixed |= DR6_RTM;
Chenyi Qiange8ea85f2021-02-02 17:04:32 +08001193
1194 if (!guest_cpuid_has(vcpu, X86_FEATURE_BUS_LOCK_DETECT))
1195 fixed |= DR6_BUS_LOCK;
Nadav Amit6f43ed02014-07-15 17:37:46 +03001196 return fixed;
1197}
1198
Paolo Bonzini996ff542020-12-14 07:49:54 -05001199int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +03001200{
Marios Pomonisea740052019-12-11 12:47:52 -08001201 size_t size = ARRAY_SIZE(vcpu->arch.db);
1202
Gleb Natapov020df072010-04-13 10:05:23 +03001203 switch (dr) {
1204 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001205 vcpu->arch.db[array_index_nospec(dr, size)] = val;
Gleb Natapov020df072010-04-13 10:05:23 +03001206 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
1207 vcpu->arch.eff_db[dr] = val;
1208 break;
1209 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001210 case 6:
Krish Sadhukhanf5f61452020-05-22 18:19:51 -04001211 if (!kvm_dr6_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001212 return 1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +03001213 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001214 break;
1215 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001216 default: /* 7 */
Krish Sadhukhanb91991b2020-01-15 19:54:32 -05001217 if (!kvm_dr7_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001218 return 1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +03001219 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02001220 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001221 break;
1222 }
1223
1224 return 0;
1225}
1226EXPORT_SYMBOL_GPL(kvm_set_dr);
1227
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05001228void kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +03001229{
Marios Pomonisea740052019-12-11 12:47:52 -08001230 size_t size = ARRAY_SIZE(vcpu->arch.db);
1231
Gleb Natapov020df072010-04-13 10:05:23 +03001232 switch (dr) {
1233 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001234 *val = vcpu->arch.db[array_index_nospec(dr, size)];
Gleb Natapov020df072010-04-13 10:05:23 +03001235 break;
1236 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001237 case 6:
Paolo Bonzini5679b802020-05-04 11:28:25 -04001238 *val = vcpu->arch.dr6;
Gleb Natapov020df072010-04-13 10:05:23 +03001239 break;
1240 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001241 default: /* 7 */
1242 *val = vcpu->arch.dr7;
1243 break;
1244 }
Gleb Natapov338dbc92010-04-28 19:15:32 +03001245}
Gleb Natapov020df072010-04-13 10:05:23 +03001246EXPORT_SYMBOL_GPL(kvm_get_dr);
1247
Sean Christophersonc483c452021-02-04 16:57:48 -08001248int kvm_emulate_rdpmc(struct kvm_vcpu *vcpu)
Avi Kivity022cd0e2011-11-10 14:57:23 +02001249{
Sean Christophersonde3cd112019-04-30 10:36:17 -07001250 u32 ecx = kvm_rcx_read(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001251 u64 data;
Avi Kivity022cd0e2011-11-10 14:57:23 +02001252
Sean Christophersonc483c452021-02-04 16:57:48 -08001253 if (kvm_pmu_rdpmc(vcpu, ecx, &data)) {
1254 kvm_inject_gp(vcpu, 0);
1255 return 1;
1256 }
1257
Sean Christophersonde3cd112019-04-30 10:36:17 -07001258 kvm_rax_write(vcpu, (u32)data);
1259 kvm_rdx_write(vcpu, data >> 32);
Sean Christophersonc483c452021-02-04 16:57:48 -08001260 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001261}
Sean Christophersonc483c452021-02-04 16:57:48 -08001262EXPORT_SYMBOL_GPL(kvm_emulate_rdpmc);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001263
Carsten Otte043405e2007-10-10 17:16:19 +02001264/*
1265 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
1266 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
1267 *
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001268 * The three MSR lists(msrs_to_save, emulated_msrs, msr_based_features)
1269 * extract the supported MSRs from the related const lists.
1270 * msrs_to_save is selected from the msrs_to_save_all to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -04001271 * capabilities of the host cpu. This capabilities test skips MSRs that are
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001272 * kvm-specific. Those are put in emulated_msrs_all; filtering of emulated_msrs
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001273 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +02001274 */
Glauber Costae3267cb2009-10-06 13:24:50 -04001275
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001276static const u32 msrs_to_save_all[] = {
Carsten Otte043405e2007-10-10 17:16:19 +02001277 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -04001278 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +02001279#ifdef CONFIG_X86_64
1280 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
1281#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +08001282 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001283 MSR_IA32_FEAT_CTL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001284 MSR_IA32_SPEC_CTRL,
Chao Pengbf8c55d2018-10-24 16:05:14 +08001285 MSR_IA32_RTIT_CTL, MSR_IA32_RTIT_STATUS, MSR_IA32_RTIT_CR3_MATCH,
1286 MSR_IA32_RTIT_OUTPUT_BASE, MSR_IA32_RTIT_OUTPUT_MASK,
1287 MSR_IA32_RTIT_ADDR0_A, MSR_IA32_RTIT_ADDR0_B,
1288 MSR_IA32_RTIT_ADDR1_A, MSR_IA32_RTIT_ADDR1_B,
1289 MSR_IA32_RTIT_ADDR2_A, MSR_IA32_RTIT_ADDR2_B,
1290 MSR_IA32_RTIT_ADDR3_A, MSR_IA32_RTIT_ADDR3_B,
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001291 MSR_IA32_UMWAIT_CONTROL,
1292
Jim Mattsone2ada662019-08-21 11:20:04 -07001293 MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1,
1294 MSR_ARCH_PERFMON_FIXED_CTR0 + 2, MSR_ARCH_PERFMON_FIXED_CTR0 + 3,
1295 MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS,
1296 MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL,
1297 MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1,
1298 MSR_ARCH_PERFMON_PERFCTR0 + 2, MSR_ARCH_PERFMON_PERFCTR0 + 3,
1299 MSR_ARCH_PERFMON_PERFCTR0 + 4, MSR_ARCH_PERFMON_PERFCTR0 + 5,
1300 MSR_ARCH_PERFMON_PERFCTR0 + 6, MSR_ARCH_PERFMON_PERFCTR0 + 7,
1301 MSR_ARCH_PERFMON_PERFCTR0 + 8, MSR_ARCH_PERFMON_PERFCTR0 + 9,
1302 MSR_ARCH_PERFMON_PERFCTR0 + 10, MSR_ARCH_PERFMON_PERFCTR0 + 11,
1303 MSR_ARCH_PERFMON_PERFCTR0 + 12, MSR_ARCH_PERFMON_PERFCTR0 + 13,
1304 MSR_ARCH_PERFMON_PERFCTR0 + 14, MSR_ARCH_PERFMON_PERFCTR0 + 15,
1305 MSR_ARCH_PERFMON_PERFCTR0 + 16, MSR_ARCH_PERFMON_PERFCTR0 + 17,
Jim Mattsone2ada662019-08-21 11:20:04 -07001306 MSR_ARCH_PERFMON_EVENTSEL0, MSR_ARCH_PERFMON_EVENTSEL1,
1307 MSR_ARCH_PERFMON_EVENTSEL0 + 2, MSR_ARCH_PERFMON_EVENTSEL0 + 3,
1308 MSR_ARCH_PERFMON_EVENTSEL0 + 4, MSR_ARCH_PERFMON_EVENTSEL0 + 5,
1309 MSR_ARCH_PERFMON_EVENTSEL0 + 6, MSR_ARCH_PERFMON_EVENTSEL0 + 7,
1310 MSR_ARCH_PERFMON_EVENTSEL0 + 8, MSR_ARCH_PERFMON_EVENTSEL0 + 9,
1311 MSR_ARCH_PERFMON_EVENTSEL0 + 10, MSR_ARCH_PERFMON_EVENTSEL0 + 11,
1312 MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13,
1313 MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15,
1314 MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17,
Fares Mehannae1fc1552021-09-15 13:39:50 +00001315
1316 MSR_K7_EVNTSEL0, MSR_K7_EVNTSEL1, MSR_K7_EVNTSEL2, MSR_K7_EVNTSEL3,
1317 MSR_K7_PERFCTR0, MSR_K7_PERFCTR1, MSR_K7_PERFCTR2, MSR_K7_PERFCTR3,
1318 MSR_F15H_PERF_CTL0, MSR_F15H_PERF_CTL1, MSR_F15H_PERF_CTL2,
1319 MSR_F15H_PERF_CTL3, MSR_F15H_PERF_CTL4, MSR_F15H_PERF_CTL5,
1320 MSR_F15H_PERF_CTR0, MSR_F15H_PERF_CTR1, MSR_F15H_PERF_CTR2,
1321 MSR_F15H_PERF_CTR3, MSR_F15H_PERF_CTR4, MSR_F15H_PERF_CTR5,
Carsten Otte043405e2007-10-10 17:16:19 +02001322};
1323
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001324static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)];
Carsten Otte043405e2007-10-10 17:16:19 +02001325static unsigned num_msrs_to_save;
1326
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001327static const u32 emulated_msrs_all[] = {
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001328 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
1329 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
1330 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
1331 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Ladi Prosek72c139b2017-07-26 13:32:59 +02001332 HV_X64_MSR_TSC_FREQUENCY, HV_X64_MSR_APIC_FREQUENCY,
Andrey Smetanine7d95132015-07-03 15:01:37 +03001333 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
1334 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +03001335 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +03001336 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +03001337 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001338 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03001339 HV_X64_MSR_STIMER0_CONFIG,
Ladi Prosekd4abc572018-03-20 15:02:07 +01001340 HV_X64_MSR_VP_ASSIST_PAGE,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001341 HV_X64_MSR_REENLIGHTENMENT_CONTROL, HV_X64_MSR_TSC_EMULATION_CONTROL,
1342 HV_X64_MSR_TSC_EMULATION_STATUS,
Jon Doronf97f5a52020-05-29 16:45:40 +03001343 HV_X64_MSR_SYNDBG_OPTIONS,
1344 HV_X64_MSR_SYNDBG_CONTROL, HV_X64_MSR_SYNDBG_STATUS,
1345 HV_X64_MSR_SYNDBG_SEND_BUFFER, HV_X64_MSR_SYNDBG_RECV_BUFFER,
1346 HV_X64_MSR_SYNDBG_PENDING_BUFFER,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001347
1348 MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02001349 MSR_KVM_PV_EOI_EN, MSR_KVM_ASYNC_PF_INT, MSR_KVM_ASYNC_PF_ACK,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001350
Will Auldba904632012-11-29 12:42:50 -08001351 MSR_IA32_TSC_ADJUST,
Dave Hansen09141ec2020-03-05 09:47:06 -08001352 MSR_IA32_TSC_DEADLINE,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001353 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001354 MSR_IA32_PERF_CAPABILITIES,
Carsten Otte043405e2007-10-10 17:16:19 +02001355 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001356 MSR_IA32_MCG_STATUS,
1357 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001358 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001359 MSR_IA32_SMBASE,
Liran Alon52797bf2017-11-15 13:43:14 +02001360 MSR_SMI_COUNT,
Kyle Hueydb2336a2017-03-20 01:16:28 -07001361 MSR_PLATFORM_INFO,
1362 MSR_MISC_FEATURES_ENABLES,
Tom Lendackybc226f02018-05-10 22:06:39 +02001363 MSR_AMD64_VIRT_SPEC_CTRL,
Maxim Levitsky5228eb92021-09-14 18:48:24 +03001364 MSR_AMD64_TSC_RATIO,
Liran Alon6c6a2ab2019-04-15 18:45:26 +03001365 MSR_IA32_POWER_CTL,
Paolo Bonzini99634e32020-01-20 14:22:55 +01001366 MSR_IA32_UCODE_REV,
Borislav Petkov191c8132019-04-18 18:32:50 +02001367
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001368 /*
1369 * The following list leaves out MSRs whose values are determined
1370 * by arch/x86/kvm/vmx/nested.c based on CPUID or other MSRs.
1371 * We always support the "true" VMX control MSRs, even if the host
1372 * processor does not, so I am putting these registers here rather
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001373 * than in msrs_to_save_all.
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001374 */
1375 MSR_IA32_VMX_BASIC,
1376 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1377 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1378 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1379 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1380 MSR_IA32_VMX_MISC,
1381 MSR_IA32_VMX_CR0_FIXED0,
1382 MSR_IA32_VMX_CR4_FIXED0,
1383 MSR_IA32_VMX_VMCS_ENUM,
1384 MSR_IA32_VMX_PROCBASED_CTLS2,
1385 MSR_IA32_VMX_EPT_VPID_CAP,
1386 MSR_IA32_VMX_VMFUNC,
1387
Borislav Petkov191c8132019-04-18 18:32:50 +02001388 MSR_K7_HWCR,
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03001389 MSR_KVM_POLL_CONTROL,
Carsten Otte043405e2007-10-10 17:16:19 +02001390};
1391
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001392static u32 emulated_msrs[ARRAY_SIZE(emulated_msrs_all)];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001393static unsigned num_emulated_msrs;
1394
Tom Lendacky801e4592018-02-21 13:39:51 -06001395/*
1396 * List of msr numbers which are used to expose MSR-based features that
1397 * can be used by a hypervisor to validate requested CPU features.
1398 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001399static const u32 msr_based_features_all[] = {
Paolo Bonzini13893092018-02-26 13:40:09 +01001400 MSR_IA32_VMX_BASIC,
1401 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1402 MSR_IA32_VMX_PINBASED_CTLS,
1403 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1404 MSR_IA32_VMX_PROCBASED_CTLS,
1405 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1406 MSR_IA32_VMX_EXIT_CTLS,
1407 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1408 MSR_IA32_VMX_ENTRY_CTLS,
1409 MSR_IA32_VMX_MISC,
1410 MSR_IA32_VMX_CR0_FIXED0,
1411 MSR_IA32_VMX_CR0_FIXED1,
1412 MSR_IA32_VMX_CR4_FIXED0,
1413 MSR_IA32_VMX_CR4_FIXED1,
1414 MSR_IA32_VMX_VMCS_ENUM,
1415 MSR_IA32_VMX_PROCBASED_CTLS2,
1416 MSR_IA32_VMX_EPT_VPID_CAP,
1417 MSR_IA32_VMX_VMFUNC,
1418
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01001419 MSR_F10H_DECFG,
Wanpeng Li518e7b92018-02-28 14:03:31 +08001420 MSR_IA32_UCODE_REV,
Paolo Bonzinicd283252018-06-25 14:04:37 +02001421 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001422 MSR_IA32_PERF_CAPABILITIES,
Tom Lendacky801e4592018-02-21 13:39:51 -06001423};
1424
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001425static u32 msr_based_features[ARRAY_SIZE(msr_based_features_all)];
Tom Lendacky801e4592018-02-21 13:39:51 -06001426static unsigned int num_msr_based_features;
1427
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001428static u64 kvm_get_arch_capabilities(void)
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001429{
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001430 u64 data = 0;
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001431
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001432 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
1433 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, data);
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001434
1435 /*
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001436 * If nx_huge_pages is enabled, KVM's shadow paging will ensure that
1437 * the nested hypervisor runs with NX huge pages. If it is not,
Ingo Molnard9f6e122021-03-18 15:28:01 +01001438 * L1 is anyway vulnerable to ITLB_MULTIHIT exploits from other
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001439 * L1 guests, so it need not worry about its own (L2) guests.
1440 */
1441 data |= ARCH_CAP_PSCHANGE_MC_NO;
1442
1443 /*
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001444 * If we're doing cache flushes (either "always" or "cond")
1445 * we will do one whenever the guest does a vmlaunch/vmresume.
1446 * If an outer hypervisor is doing the cache flush for us
1447 * (VMENTER_L1D_FLUSH_NESTED_VM), we can safely pass that
1448 * capability to the guest too, and if EPT is disabled we're not
1449 * vulnerable. Overall, only VMENTER_L1D_FLUSH_NEVER will
1450 * require a nested hypervisor to do a flush of its own.
1451 */
1452 if (l1tf_vmx_mitigation != VMENTER_L1D_FLUSH_NEVER)
1453 data |= ARCH_CAP_SKIP_VMENTRY_L1DFLUSH;
1454
Paolo Bonzini0c549142019-08-19 17:24:07 +02001455 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
1456 data |= ARCH_CAP_RDCL_NO;
1457 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1458 data |= ARCH_CAP_SSB_NO;
1459 if (!boot_cpu_has_bug(X86_BUG_MDS))
1460 data |= ARCH_CAP_MDS_NO;
1461
Paolo Bonzini71316362021-01-28 11:45:00 -05001462 if (!boot_cpu_has(X86_FEATURE_RTM)) {
1463 /*
1464 * If RTM=0 because the kernel has disabled TSX, the host might
1465 * have TAA_NO or TSX_CTRL. Clear TAA_NO (the guest sees RTM=0
1466 * and therefore knows that there cannot be TAA) but keep
1467 * TSX_CTRL: some buggy userspaces leave it set on tsx=on hosts,
1468 * and we want to allow migrating those guests to tsx=off hosts.
1469 */
1470 data &= ~ARCH_CAP_TAA_NO;
1471 } else if (!boot_cpu_has_bug(X86_BUG_TAA)) {
Paolo Bonzinicbbaa272019-11-18 18:58:26 +01001472 data |= ARCH_CAP_TAA_NO;
Paolo Bonzini71316362021-01-28 11:45:00 -05001473 } else {
1474 /*
1475 * Nothing to do here; we emulate TSX_CTRL if present on the
1476 * host so the guest can choose between disabling TSX or
1477 * using VERW to clear CPU buffers.
1478 */
1479 }
Pawan Guptae1d38b62019-10-23 12:23:33 +02001480
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001481 return data;
1482}
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001483
Wanpeng Li66421c12018-02-28 14:03:30 +08001484static int kvm_get_msr_feature(struct kvm_msr_entry *msr)
1485{
1486 switch (msr->index) {
Paolo Bonzinicd283252018-06-25 14:04:37 +02001487 case MSR_IA32_ARCH_CAPABILITIES:
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001488 msr->data = kvm_get_arch_capabilities();
1489 break;
1490 case MSR_IA32_UCODE_REV:
Paolo Bonzinicd283252018-06-25 14:04:37 +02001491 rdmsrl_safe(msr->index, &msr->data);
Wanpeng Li518e7b92018-02-28 14:03:31 +08001492 break;
Wanpeng Li66421c12018-02-28 14:03:30 +08001493 default:
Jason Baronb36464772021-01-14 22:27:56 -05001494 return static_call(kvm_x86_get_msr_feature)(msr);
Wanpeng Li66421c12018-02-28 14:03:30 +08001495 }
1496 return 0;
1497}
1498
Tom Lendacky801e4592018-02-21 13:39:51 -06001499static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1500{
1501 struct kvm_msr_entry msr;
Wanpeng Li66421c12018-02-28 14:03:30 +08001502 int r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001503
1504 msr.index = index;
Wanpeng Li66421c12018-02-28 14:03:30 +08001505 r = kvm_get_msr_feature(&msr);
Peter Xu12bc2132020-06-22 18:04:42 -04001506
1507 if (r == KVM_MSR_RET_INVALID) {
1508 /* Unconditionally clear the output for simplicity */
1509 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001510 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001511 r = 0;
Peter Xu12bc2132020-06-22 18:04:42 -04001512 }
1513
Wanpeng Li66421c12018-02-28 14:03:30 +08001514 if (r)
1515 return r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001516
1517 *data = msr.data;
1518
1519 return 0;
1520}
1521
Sean Christopherson11988492019-04-02 08:19:15 -07001522static bool __kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
1523{
1524 if (efer & EFER_FFXSR && !guest_cpuid_has(vcpu, X86_FEATURE_FXSR_OPT))
1525 return false;
1526
1527 if (efer & EFER_SVME && !guest_cpuid_has(vcpu, X86_FEATURE_SVM))
1528 return false;
1529
Sean Christopherson0a629562019-04-02 08:19:16 -07001530 if (efer & (EFER_LME | EFER_LMA) &&
1531 !guest_cpuid_has(vcpu, X86_FEATURE_LM))
1532 return false;
1533
1534 if (efer & EFER_NX && !guest_cpuid_has(vcpu, X86_FEATURE_NX))
1535 return false;
1536
Sean Christopherson11988492019-04-02 08:19:15 -07001537 return true;
1538
1539}
Jan Kiszka384bb782013-04-20 10:52:36 +02001540bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001541{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001542 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001543 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001544
Sean Christopherson11988492019-04-02 08:19:15 -07001545 return __kvm_valid_efer(vcpu, efer);
Jan Kiszka384bb782013-04-20 10:52:36 +02001546}
1547EXPORT_SYMBOL_GPL(kvm_valid_efer);
1548
Sean Christopherson11988492019-04-02 08:19:15 -07001549static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Jan Kiszka384bb782013-04-20 10:52:36 +02001550{
1551 u64 old_efer = vcpu->arch.efer;
Sean Christopherson11988492019-04-02 08:19:15 -07001552 u64 efer = msr_info->data;
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001553 int r;
Jan Kiszka384bb782013-04-20 10:52:36 +02001554
Sean Christopherson11988492019-04-02 08:19:15 -07001555 if (efer & efer_reserved_bits)
Paolo Bonzini66f61c92019-05-24 21:52:46 +02001556 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +02001557
Sean Christopherson11988492019-04-02 08:19:15 -07001558 if (!msr_info->host_initiated) {
1559 if (!__kvm_valid_efer(vcpu, efer))
1560 return 1;
1561
1562 if (is_paging(vcpu) &&
1563 (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1564 return 1;
1565 }
Jan Kiszka384bb782013-04-20 10:52:36 +02001566
Carsten Otte15c4a642007-10-30 18:44:17 +01001567 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001568 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001569
Jason Baronb36464772021-01-14 22:27:56 -05001570 r = static_call(kvm_x86_set_efer)(vcpu, efer);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001571 if (r) {
1572 WARN_ON(r > 0);
1573 return r;
1574 }
Sheng Yanga3d204e2010-05-12 16:40:40 +08001575
Sheng Yangaad82702010-05-12 16:40:42 +08001576 /* Update reserved bits */
1577 if ((efer ^ old_efer) & EFER_NX)
1578 kvm_mmu_reset_context(vcpu);
1579
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001580 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001581}
1582
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001583void kvm_enable_efer_bits(u64 mask)
1584{
1585 efer_reserved_bits &= ~mask;
1586}
1587EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1588
Alexander Graf51de8152020-09-25 16:34:17 +02001589bool kvm_msr_allowed(struct kvm_vcpu *vcpu, u32 index, u32 type)
1590{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001591 struct kvm_x86_msr_filter *msr_filter;
1592 struct msr_bitmap_range *ranges;
Alexander Graf1a1552542020-09-25 16:34:21 +02001593 struct kvm *kvm = vcpu->kvm;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001594 bool allowed;
Alexander Graf1a1552542020-09-25 16:34:21 +02001595 int idx;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001596 u32 i;
Alexander Graf1a1552542020-09-25 16:34:21 +02001597
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001598 /* x2APIC MSRs do not support filtering. */
1599 if (index >= 0x800 && index <= 0x8ff)
Alexander Graf1a1552542020-09-25 16:34:21 +02001600 return true;
1601
Alexander Graf1a1552542020-09-25 16:34:21 +02001602 idx = srcu_read_lock(&kvm->srcu);
1603
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001604 msr_filter = srcu_dereference(kvm->arch.msr_filter, &kvm->srcu);
1605 if (!msr_filter) {
1606 allowed = true;
1607 goto out;
1608 }
1609
1610 allowed = msr_filter->default_allow;
1611 ranges = msr_filter->ranges;
1612
1613 for (i = 0; i < msr_filter->count; i++) {
Alexander Graf1a1552542020-09-25 16:34:21 +02001614 u32 start = ranges[i].base;
1615 u32 end = start + ranges[i].nmsrs;
1616 u32 flags = ranges[i].flags;
1617 unsigned long *bitmap = ranges[i].bitmap;
1618
1619 if ((index >= start) && (index < end) && (flags & type)) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001620 allowed = !!test_bit(index - start, bitmap);
Alexander Graf1a1552542020-09-25 16:34:21 +02001621 break;
1622 }
1623 }
1624
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001625out:
Alexander Graf1a1552542020-09-25 16:34:21 +02001626 srcu_read_unlock(&kvm->srcu, idx);
1627
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001628 return allowed;
Alexander Graf51de8152020-09-25 16:34:17 +02001629}
1630EXPORT_SYMBOL_GPL(kvm_msr_allowed);
1631
Carsten Otte15c4a642007-10-30 18:44:17 +01001632/*
Sean Christophersonf20935d2019-09-05 14:22:54 -07001633 * Write @data into the MSR specified by @index. Select MSR specific fault
1634 * checks are bypassed if @host_initiated is %true.
Carsten Otte15c4a642007-10-30 18:44:17 +01001635 * Returns 0 on success, non-0 otherwise.
1636 * Assumes vcpu_load() was already called.
1637 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001638static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data,
1639 bool host_initiated)
Carsten Otte15c4a642007-10-30 18:44:17 +01001640{
Sean Christophersonf20935d2019-09-05 14:22:54 -07001641 struct msr_data msr;
1642
Alexander Graf1a1552542020-09-25 16:34:21 +02001643 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_WRITE))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001644 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001645
Sean Christophersonf20935d2019-09-05 14:22:54 -07001646 switch (index) {
Nadav Amit854e8bb2014-09-16 03:24:05 +03001647 case MSR_FS_BASE:
1648 case MSR_GS_BASE:
1649 case MSR_KERNEL_GS_BASE:
1650 case MSR_CSTAR:
1651 case MSR_LSTAR:
Sean Christophersonf20935d2019-09-05 14:22:54 -07001652 if (is_noncanonical_address(data, vcpu))
Nadav Amit854e8bb2014-09-16 03:24:05 +03001653 return 1;
1654 break;
1655 case MSR_IA32_SYSENTER_EIP:
1656 case MSR_IA32_SYSENTER_ESP:
1657 /*
1658 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1659 * non-canonical address is written on Intel but not on
1660 * AMD (which ignores the top 32-bits, because it does
1661 * not implement 64-bit SYSENTER).
1662 *
1663 * 64-bit code should hence be able to write a non-canonical
1664 * value on AMD. Making the address canonical ensures that
1665 * vmentry does not fail on Intel after writing a non-canonical
1666 * value, and that something deterministic happens if the guest
1667 * invokes 64-bit SYSENTER.
1668 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001669 data = get_canonical(data, vcpu_virt_addr_bits(vcpu));
Sean Christopherson61a05d42021-05-04 10:17:33 -07001670 break;
1671 case MSR_TSC_AUX:
1672 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1673 return 1;
1674
1675 if (!host_initiated &&
1676 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1677 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1678 return 1;
1679
1680 /*
1681 * Per Intel's SDM, bits 63:32 are reserved, but AMD's APM has
1682 * incomplete and conflicting architectural behavior. Current
1683 * AMD CPUs completely ignore bits 63:32, i.e. they aren't
1684 * reserved and always read as zeros. Enforce Intel's reserved
1685 * bits check if and only if the guest CPU is Intel, and clear
1686 * the bits in all other cases. This ensures cross-vendor
1687 * migration will provide consistent behavior for the guest.
1688 */
1689 if (guest_cpuid_is_intel(vcpu) && (data >> 32) != 0)
1690 return 1;
1691
1692 data = (u32)data;
1693 break;
Nadav Amit854e8bb2014-09-16 03:24:05 +03001694 }
Sean Christophersonf20935d2019-09-05 14:22:54 -07001695
1696 msr.data = data;
1697 msr.index = index;
1698 msr.host_initiated = host_initiated;
1699
Jason Baronb36464772021-01-14 22:27:56 -05001700 return static_call(kvm_x86_set_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001701}
1702
Peter Xu6abe9c12020-06-22 18:04:41 -04001703static int kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu,
1704 u32 index, u64 data, bool host_initiated)
1705{
1706 int ret = __kvm_set_msr(vcpu, index, data, host_initiated);
1707
1708 if (ret == KVM_MSR_RET_INVALID)
Haiwei Lid6328262021-03-13 13:10:32 +08001709 if (kvm_msr_ignored_check(index, data, true))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001710 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001711
1712 return ret;
1713}
1714
Sean Christophersonf20935d2019-09-05 14:22:54 -07001715/*
1716 * Read the MSR specified by @index into @data. Select MSR specific fault
1717 * checks are bypassed if @host_initiated is %true.
1718 * Returns 0 on success, non-0 otherwise.
1719 * Assumes vcpu_load() was already called.
1720 */
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001721int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data,
1722 bool host_initiated)
Sean Christophersonf20935d2019-09-05 14:22:54 -07001723{
1724 struct msr_data msr;
1725 int ret;
1726
Alexander Graf1a1552542020-09-25 16:34:21 +02001727 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_READ))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001728 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001729
Sean Christopherson61a05d42021-05-04 10:17:33 -07001730 switch (index) {
1731 case MSR_TSC_AUX:
1732 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1733 return 1;
1734
1735 if (!host_initiated &&
1736 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1737 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1738 return 1;
1739 break;
1740 }
1741
Sean Christophersonf20935d2019-09-05 14:22:54 -07001742 msr.index = index;
1743 msr.host_initiated = host_initiated;
1744
Jason Baronb36464772021-01-14 22:27:56 -05001745 ret = static_call(kvm_x86_get_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001746 if (!ret)
1747 *data = msr.data;
1748 return ret;
1749}
1750
Peter Xu6abe9c12020-06-22 18:04:41 -04001751static int kvm_get_msr_ignored_check(struct kvm_vcpu *vcpu,
1752 u32 index, u64 *data, bool host_initiated)
1753{
1754 int ret = __kvm_get_msr(vcpu, index, data, host_initiated);
1755
1756 if (ret == KVM_MSR_RET_INVALID) {
1757 /* Unconditionally clear *data for simplicity */
1758 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001759 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001760 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001761 }
1762
1763 return ret;
1764}
1765
Sean Christophersonf20935d2019-09-05 14:22:54 -07001766int kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data)
1767{
Peter Xu6abe9c12020-06-22 18:04:41 -04001768 return kvm_get_msr_ignored_check(vcpu, index, data, false);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001769}
1770EXPORT_SYMBOL_GPL(kvm_get_msr);
1771
1772int kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data)
1773{
Peter Xu6abe9c12020-06-22 18:04:41 -04001774 return kvm_set_msr_ignored_check(vcpu, index, data, false);
Carsten Otte15c4a642007-10-30 18:44:17 +01001775}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001776EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001777
Paolo Bonzini8b474422020-12-14 07:44:46 -05001778static int complete_emulated_rdmsr(struct kvm_vcpu *vcpu)
Alexander Graf1ae09952020-09-25 16:34:16 +02001779{
Paolo Bonzini8b474422020-12-14 07:44:46 -05001780 int err = vcpu->run->msr.error;
1781 if (!err) {
Alexander Graf1ae09952020-09-25 16:34:16 +02001782 kvm_rax_write(vcpu, (u32)vcpu->run->msr.data);
1783 kvm_rdx_write(vcpu, vcpu->run->msr.data >> 32);
1784 }
1785
Jason Baronb36464772021-01-14 22:27:56 -05001786 return static_call(kvm_x86_complete_emulated_msr)(vcpu, err);
Alexander Graf1ae09952020-09-25 16:34:16 +02001787}
1788
1789static int complete_emulated_wrmsr(struct kvm_vcpu *vcpu)
1790{
Jason Baronb36464772021-01-14 22:27:56 -05001791 return static_call(kvm_x86_complete_emulated_msr)(vcpu, vcpu->run->msr.error);
Alexander Graf1ae09952020-09-25 16:34:16 +02001792}
1793
1794static u64 kvm_msr_reason(int r)
1795{
1796 switch (r) {
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001797 case KVM_MSR_RET_INVALID:
Alexander Graf1ae09952020-09-25 16:34:16 +02001798 return KVM_MSR_EXIT_REASON_UNKNOWN;
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001799 case KVM_MSR_RET_FILTERED:
Alexander Graf1a1552542020-09-25 16:34:21 +02001800 return KVM_MSR_EXIT_REASON_FILTER;
Alexander Graf1ae09952020-09-25 16:34:16 +02001801 default:
1802 return KVM_MSR_EXIT_REASON_INVAL;
1803 }
1804}
1805
1806static int kvm_msr_user_space(struct kvm_vcpu *vcpu, u32 index,
1807 u32 exit_reason, u64 data,
1808 int (*completion)(struct kvm_vcpu *vcpu),
1809 int r)
1810{
1811 u64 msr_reason = kvm_msr_reason(r);
1812
1813 /* Check if the user wanted to know about this MSR fault */
1814 if (!(vcpu->kvm->arch.user_space_msr_mask & msr_reason))
1815 return 0;
1816
1817 vcpu->run->exit_reason = exit_reason;
1818 vcpu->run->msr.error = 0;
1819 memset(vcpu->run->msr.pad, 0, sizeof(vcpu->run->msr.pad));
1820 vcpu->run->msr.reason = msr_reason;
1821 vcpu->run->msr.index = index;
1822 vcpu->run->msr.data = data;
1823 vcpu->arch.complete_userspace_io = completion;
1824
1825 return 1;
1826}
1827
1828static int kvm_get_msr_user_space(struct kvm_vcpu *vcpu, u32 index, int r)
1829{
1830 return kvm_msr_user_space(vcpu, index, KVM_EXIT_X86_RDMSR, 0,
1831 complete_emulated_rdmsr, r);
1832}
1833
1834static int kvm_set_msr_user_space(struct kvm_vcpu *vcpu, u32 index, u64 data, int r)
1835{
1836 return kvm_msr_user_space(vcpu, index, KVM_EXIT_X86_WRMSR, data,
1837 complete_emulated_wrmsr, r);
1838}
1839
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001840int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu)
1841{
1842 u32 ecx = kvm_rcx_read(vcpu);
1843 u64 data;
Alexander Graf1ae09952020-09-25 16:34:16 +02001844 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001845
Alexander Graf1ae09952020-09-25 16:34:16 +02001846 r = kvm_get_msr(vcpu, ecx, &data);
1847
1848 /* MSR read failed? See if we should ask user space */
1849 if (r && kvm_get_msr_user_space(vcpu, ecx, r)) {
1850 /* Bounce to user space */
1851 return 0;
1852 }
1853
Paolo Bonzini8b474422020-12-14 07:44:46 -05001854 if (!r) {
1855 trace_kvm_msr_read(ecx, data);
1856
1857 kvm_rax_write(vcpu, data & -1u);
1858 kvm_rdx_write(vcpu, (data >> 32) & -1u);
1859 } else {
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001860 trace_kvm_msr_read_ex(ecx);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001861 }
1862
Jason Baronb36464772021-01-14 22:27:56 -05001863 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001864}
1865EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr);
1866
1867int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu)
1868{
1869 u32 ecx = kvm_rcx_read(vcpu);
1870 u64 data = kvm_read_edx_eax(vcpu);
Alexander Graf1ae09952020-09-25 16:34:16 +02001871 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001872
Alexander Graf1ae09952020-09-25 16:34:16 +02001873 r = kvm_set_msr(vcpu, ecx, data);
1874
1875 /* MSR write failed? See if we should ask user space */
Maxim Levitsky7dffeca2020-10-01 14:29:52 +03001876 if (r && kvm_set_msr_user_space(vcpu, ecx, data, r))
Alexander Graf1ae09952020-09-25 16:34:16 +02001877 /* Bounce to user space */
1878 return 0;
Maxim Levitsky7dffeca2020-10-01 14:29:52 +03001879
1880 /* Signal all other negative errors to userspace */
1881 if (r < 0)
1882 return r;
Alexander Graf1ae09952020-09-25 16:34:16 +02001883
Paolo Bonzini8b474422020-12-14 07:44:46 -05001884 if (!r)
1885 trace_kvm_msr_write(ecx, data);
1886 else
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001887 trace_kvm_msr_write_ex(ecx, data);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001888
Jason Baronb36464772021-01-14 22:27:56 -05001889 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001890}
1891EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr);
1892
Sean Christopherson5ff3a352021-02-04 16:57:47 -08001893int kvm_emulate_as_nop(struct kvm_vcpu *vcpu)
1894{
1895 return kvm_skip_emulated_instruction(vcpu);
1896}
1897EXPORT_SYMBOL_GPL(kvm_emulate_as_nop);
1898
1899int kvm_emulate_invd(struct kvm_vcpu *vcpu)
1900{
1901 /* Treat an INVD instruction as a NOP and just skip it. */
1902 return kvm_emulate_as_nop(vcpu);
1903}
1904EXPORT_SYMBOL_GPL(kvm_emulate_invd);
1905
1906int kvm_emulate_mwait(struct kvm_vcpu *vcpu)
1907{
1908 pr_warn_once("kvm: MWAIT instruction emulated as NOP!\n");
1909 return kvm_emulate_as_nop(vcpu);
1910}
1911EXPORT_SYMBOL_GPL(kvm_emulate_mwait);
1912
1913int kvm_handle_invalid_op(struct kvm_vcpu *vcpu)
1914{
1915 kvm_queue_exception(vcpu, UD_VECTOR);
1916 return 1;
1917}
1918EXPORT_SYMBOL_GPL(kvm_handle_invalid_op);
1919
1920int kvm_emulate_monitor(struct kvm_vcpu *vcpu)
1921{
1922 pr_warn_once("kvm: MONITOR instruction emulated as NOP!\n");
1923 return kvm_emulate_as_nop(vcpu);
1924}
1925EXPORT_SYMBOL_GPL(kvm_emulate_monitor);
1926
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05001927static inline bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu)
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001928{
Frederic Weisbecker4ae7dc92021-02-01 00:05:48 +01001929 xfer_to_guest_mode_prepare();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001930 return vcpu->mode == EXITING_GUEST_MODE || kvm_request_pending(vcpu) ||
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02001931 xfer_to_guest_mode_work_pending();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001932}
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001933
Carsten Otte313a3dc2007-10-11 19:16:52 +02001934/*
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001935 * The fast path for frequent and performance sensitive wrmsr emulation,
1936 * i.e. the sending of IPI, sending IPI early in the VM-Exit flow reduces
1937 * the latency of virtual IPI by avoiding the expensive bits of transitioning
1938 * from guest to host, e.g. reacquiring KVM's SRCU lock. In contrast to the
1939 * other cases which must be called after interrupts are enabled on the host.
1940 */
1941static int handle_fastpath_set_x2apic_icr_irqoff(struct kvm_vcpu *vcpu, u64 data)
1942{
Wanpeng Lie1be9ac2020-03-26 10:20:01 +08001943 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(vcpu->arch.apic))
1944 return 1;
1945
1946 if (((data & APIC_SHORT_MASK) == APIC_DEST_NOSHORT) &&
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001947 ((data & APIC_DEST_MASK) == APIC_DEST_PHYSICAL) &&
Wanpeng Li4064a4c2020-04-02 16:20:26 +08001948 ((data & APIC_MODE_MASK) == APIC_DM_FIXED) &&
1949 ((u32)(data >> 32) != X2APIC_BROADCAST)) {
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001950
Wanpeng Lid5361672020-03-26 10:20:02 +08001951 data &= ~(1 << 12);
1952 kvm_apic_send_ipi(vcpu->arch.apic, (u32)data, (u32)(data >> 32));
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001953 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR2, (u32)(data >> 32));
Wanpeng Lid5361672020-03-26 10:20:02 +08001954 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR, (u32)data);
1955 trace_kvm_apic_write(APIC_ICR, (u32)data);
1956 return 0;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001957 }
1958
1959 return 1;
1960}
1961
Wanpeng Liae95f562020-04-28 14:23:28 +08001962static int handle_fastpath_set_tscdeadline(struct kvm_vcpu *vcpu, u64 data)
1963{
1964 if (!kvm_can_use_hv_timer(vcpu))
1965 return 1;
1966
1967 kvm_set_lapic_tscdeadline_msr(vcpu, data);
1968 return 0;
1969}
1970
Wanpeng Li404d5d72020-04-28 14:23:25 +08001971fastpath_t handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001972{
1973 u32 msr = kvm_rcx_read(vcpu);
Wanpeng Li8a1038d2020-03-26 10:20:00 +08001974 u64 data;
Wanpeng Li404d5d72020-04-28 14:23:25 +08001975 fastpath_t ret = EXIT_FASTPATH_NONE;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001976
1977 switch (msr) {
1978 case APIC_BASE_MSR + (APIC_ICR >> 4):
Wanpeng Li8a1038d2020-03-26 10:20:00 +08001979 data = kvm_read_edx_eax(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08001980 if (!handle_fastpath_set_x2apic_icr_irqoff(vcpu, data)) {
1981 kvm_skip_emulated_instruction(vcpu);
1982 ret = EXIT_FASTPATH_EXIT_HANDLED;
Haiwei Li80bc97f2020-05-18 09:31:38 +08001983 }
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001984 break;
Dave Hansen09141ec2020-03-05 09:47:06 -08001985 case MSR_IA32_TSC_DEADLINE:
Wanpeng Liae95f562020-04-28 14:23:28 +08001986 data = kvm_read_edx_eax(vcpu);
1987 if (!handle_fastpath_set_tscdeadline(vcpu, data)) {
1988 kvm_skip_emulated_instruction(vcpu);
1989 ret = EXIT_FASTPATH_REENTER_GUEST;
1990 }
1991 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001992 default:
Wanpeng Li404d5d72020-04-28 14:23:25 +08001993 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001994 }
1995
Wanpeng Li404d5d72020-04-28 14:23:25 +08001996 if (ret != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001997 trace_kvm_msr_write(msr, data);
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001998
Wanpeng Li404d5d72020-04-28 14:23:25 +08001999 return ret;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002000}
2001EXPORT_SYMBOL_GPL(handle_fastpath_set_msr_irqoff);
2002
2003/*
Carsten Otte313a3dc2007-10-11 19:16:52 +02002004 * Adapt set_msr() to msr_io()'s calling convention
2005 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002006static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2007{
Peter Xu6abe9c12020-06-22 18:04:41 -04002008 return kvm_get_msr_ignored_check(vcpu, index, data, true);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002009}
2010
Carsten Otte313a3dc2007-10-11 19:16:52 +02002011static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2012{
Peter Xu6abe9c12020-06-22 18:04:41 -04002013 return kvm_set_msr_ignored_check(vcpu, index, *data, true);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002014}
2015
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002016#ifdef CONFIG_X86_64
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002017struct pvclock_clock {
2018 int vclock_mode;
2019 u64 cycle_last;
2020 u64 mask;
2021 u32 mult;
2022 u32 shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002023 u64 base_cycles;
2024 u64 offset;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002025};
2026
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002027struct pvclock_gtod_data {
2028 seqcount_t seq;
2029
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002030 struct pvclock_clock clock; /* extract of a clocksource struct */
2031 struct pvclock_clock raw_clock; /* extract of a clocksource struct */
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002032
Paolo Bonzini917f9472020-01-22 14:32:20 +01002033 ktime_t offs_boot;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002034 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002035};
2036
2037static struct pvclock_gtod_data pvclock_gtod_data;
2038
2039static void update_pvclock_gtod(struct timekeeper *tk)
2040{
2041 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
2042
2043 write_seqcount_begin(&vdata->seq);
2044
2045 /* copy pvclock gtod data */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002046 vdata->clock.vclock_mode = tk->tkr_mono.clock->vdso_clock_mode;
Peter Zijlstra876e7882015-03-19 10:09:06 +01002047 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
2048 vdata->clock.mask = tk->tkr_mono.mask;
2049 vdata->clock.mult = tk->tkr_mono.mult;
2050 vdata->clock.shift = tk->tkr_mono.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002051 vdata->clock.base_cycles = tk->tkr_mono.xtime_nsec;
2052 vdata->clock.offset = tk->tkr_mono.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002053
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002054 vdata->raw_clock.vclock_mode = tk->tkr_raw.clock->vdso_clock_mode;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002055 vdata->raw_clock.cycle_last = tk->tkr_raw.cycle_last;
2056 vdata->raw_clock.mask = tk->tkr_raw.mask;
2057 vdata->raw_clock.mult = tk->tkr_raw.mult;
2058 vdata->raw_clock.shift = tk->tkr_raw.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002059 vdata->raw_clock.base_cycles = tk->tkr_raw.xtime_nsec;
2060 vdata->raw_clock.offset = tk->tkr_raw.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002061
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002062 vdata->wall_time_sec = tk->xtime_sec;
2063
Paolo Bonzini917f9472020-01-22 14:32:20 +01002064 vdata->offs_boot = tk->offs_boot;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002065
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002066 write_seqcount_end(&vdata->seq);
2067}
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002068
2069static s64 get_kvmclock_base_ns(void)
2070{
2071 /* Count up from boot time, but with the frequency of the raw clock. */
2072 return ktime_to_ns(ktime_add(ktime_get_raw(), pvclock_gtod_data.offs_boot));
2073}
2074#else
2075static s64 get_kvmclock_base_ns(void)
2076{
2077 /* Master clock not used, so we can just use CLOCK_BOOTTIME. */
2078 return ktime_get_boottime_ns();
2079}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002080#endif
2081
Joao Martins629b5342018-06-28 15:06:43 -04002082void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock, int sec_hi_ofs)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002083{
Avi Kivity9ed3c442010-05-04 15:00:37 +03002084 int version;
2085 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002086 struct pvclock_wall_clock wc;
Joao Martins629b5342018-06-28 15:06:43 -04002087 u32 wc_sec_hi;
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002088 u64 wall_nsec;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002089
2090 if (!wall_clock)
2091 return;
2092
Avi Kivity9ed3c442010-05-04 15:00:37 +03002093 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
2094 if (r)
2095 return;
2096
2097 if (version & 1)
2098 ++version; /* first time write, random junk */
2099
2100 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002101
Nicholas Krause1dab1342015-12-30 13:08:46 -05002102 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
2103 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002104
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002105 /*
2106 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10002107 * system time (updated by kvm_guest_time_update below) to the
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002108 * wall clock specified here. We do the reverse here.
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002109 */
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002110 wall_nsec = ktime_get_real_ns() - get_kvmclock_ns(kvm);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002111
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002112 wc.nsec = do_div(wall_nsec, 1000000000);
2113 wc.sec = (u32)wall_nsec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002114 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002115
2116 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
2117
Joao Martins629b5342018-06-28 15:06:43 -04002118 if (sec_hi_ofs) {
2119 wc_sec_hi = wall_nsec >> 32;
2120 kvm_write_guest(kvm, wall_clock + sec_hi_ofs,
2121 &wc_sec_hi, sizeof(wc_sec_hi));
2122 }
2123
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002124 version++;
2125 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002126}
2127
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002128static void kvm_write_system_time(struct kvm_vcpu *vcpu, gpa_t system_time,
2129 bool old_msr, bool host_initiated)
2130{
2131 struct kvm_arch *ka = &vcpu->kvm->arch;
2132
2133 if (vcpu->vcpu_id == 0 && !host_initiated) {
Oliver Upton1e293d12020-10-27 16:10:43 -07002134 if (ka->boot_vcpu_runs_old_kvmclock != old_msr)
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002135 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2136
2137 ka->boot_vcpu_runs_old_kvmclock = old_msr;
2138 }
2139
2140 vcpu->arch.time = system_time;
2141 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
2142
2143 /* we verify if the enable bit is set... */
2144 vcpu->arch.pv_time_enabled = false;
2145 if (!(system_time & 1))
2146 return;
2147
2148 if (!kvm_gfn_to_hva_cache_init(vcpu->kvm,
2149 &vcpu->arch.pv_time, system_time & ~1ULL,
2150 sizeof(struct pvclock_vcpu_time_info)))
2151 vcpu->arch.pv_time_enabled = true;
2152
2153 return;
2154}
2155
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002156static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
2157{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01002158 do_shl32_div32(dividend, divisor);
2159 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002160}
2161
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002162static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002163 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002164{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002165 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002166 int32_t shift = 0;
2167 uint64_t tps64;
2168 uint32_t tps32;
2169
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002170 tps64 = base_hz;
2171 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02002172 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002173 tps64 >>= 1;
2174 shift--;
2175 }
2176
2177 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02002178 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
2179 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002180 scaled64 >>= 1;
2181 else
2182 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002183 shift++;
2184 }
2185
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002186 *pshift = shift;
2187 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002188}
2189
Marcelo Tosattid8281992012-11-27 23:29:01 -02002190#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002191static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002192#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002193
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002194static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08002195static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002196
Zachary Amsdencc578282012-02-03 15:43:50 -02002197static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10002198{
Zachary Amsdencc578282012-02-03 15:43:50 -02002199 u64 v = (u64)khz * (1000000 + ppm);
2200 do_div(v, 1000000);
2201 return v;
2202}
2203
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002204static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier);
2205
Haozhong Zhang381d5852015-10-20 15:39:04 +08002206static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
2207{
2208 u64 ratio;
2209
2210 /* Guest TSC same frequency as host TSC? */
2211 if (!scale) {
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002212 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002213 return 0;
2214 }
2215
2216 /* TSC scaling supported? */
2217 if (!kvm_has_tsc_control) {
2218 if (user_tsc_khz > tsc_khz) {
2219 vcpu->arch.tsc_catchup = 1;
2220 vcpu->arch.tsc_always_catchup = 1;
2221 return 0;
2222 } else {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002223 pr_warn_ratelimited("user requested TSC rate below hardware speed\n");
Haozhong Zhang381d5852015-10-20 15:39:04 +08002224 return -1;
2225 }
2226 }
2227
2228 /* TSC scaling required - calculate ratio */
2229 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
2230 user_tsc_khz, tsc_khz);
2231
2232 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002233 pr_warn_ratelimited("Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
2234 user_tsc_khz);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002235 return -1;
2236 }
2237
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002238 kvm_vcpu_write_tsc_multiplier(vcpu, ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002239 return 0;
2240}
2241
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002242static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02002243{
2244 u32 thresh_lo, thresh_hi;
2245 int use_scaling = 0;
2246
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002247 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002248 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08002249 /* set tsc_scaling_ratio to a safe value */
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002250 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002251 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08002252 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002253
Zachary Amsdenc2855452010-09-18 14:38:15 -10002254 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002255 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02002256 &vcpu->arch.virtual_tsc_shift,
2257 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002258 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02002259
2260 /*
2261 * Compute the variation in TSC rate which is acceptable
2262 * within the range of tolerance and decide if the
2263 * rate being applied is within that bounds of the hardware
2264 * rate. If so, no scaling or compensation need be done.
2265 */
2266 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
2267 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002268 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
2269 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 -02002270 use_scaling = 1;
2271 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002272 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002273}
2274
2275static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
2276{
Zachary Amsdene26101b2012-02-03 15:43:57 -02002277 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02002278 vcpu->arch.virtual_tsc_mult,
2279 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002280 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002281 return tsc;
2282}
2283
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002284static inline int gtod_is_based_on_tsc(int mode)
2285{
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002286 return mode == VDSO_CLOCKMODE_TSC || mode == VDSO_CLOCKMODE_HVCLOCK;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002287}
2288
Fengguang Wu69b00492015-01-19 22:33:39 +08002289static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002290{
2291#ifdef CONFIG_X86_64
2292 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002293 struct kvm_arch *ka = &vcpu->kvm->arch;
2294 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2295
2296 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2297 atomic_read(&vcpu->kvm->online_vcpus));
2298
Marcelo Tosatti7f187922014-11-04 21:30:44 -02002299 /*
2300 * Once the masterclock is enabled, always perform request in
2301 * order to update it.
2302 *
2303 * In order to enable masterclock, the host clocksource must be TSC
2304 * and the vcpus need to have matched TSCs. When that happens,
2305 * perform request to enable masterclock.
2306 */
2307 if (ka->use_master_clock ||
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002308 (gtod_is_based_on_tsc(gtod->clock.vclock_mode) && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002309 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2310
2311 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
2312 atomic_read(&vcpu->kvm->online_vcpus),
2313 ka->use_master_clock, gtod->clock.vclock_mode);
2314#endif
2315}
2316
Haozhong Zhang35181e82015-10-20 15:39:03 +08002317/*
2318 * Multiply tsc by a fixed point number represented by ratio.
2319 *
2320 * The most significant 64-N bits (mult) of ratio represent the
2321 * integral part of the fixed point number; the remaining N bits
2322 * (frac) represent the fractional part, ie. ratio represents a fixed
2323 * point number (mult + frac * 2^(-N)).
2324 *
2325 * N equals to kvm_tsc_scaling_ratio_frac_bits.
2326 */
2327static inline u64 __scale_tsc(u64 ratio, u64 tsc)
2328{
2329 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
2330}
2331
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002332u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc, u64 ratio)
Haozhong Zhang35181e82015-10-20 15:39:03 +08002333{
2334 u64 _tsc = tsc;
Haozhong Zhang35181e82015-10-20 15:39:03 +08002335
2336 if (ratio != kvm_default_tsc_scaling_ratio)
2337 _tsc = __scale_tsc(ratio, tsc);
2338
2339 return _tsc;
2340}
2341EXPORT_SYMBOL_GPL(kvm_scale_tsc);
2342
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002343static u64 kvm_compute_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
Haozhong Zhang07c14192015-10-20 15:39:05 +08002344{
2345 u64 tsc;
2346
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002347 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang07c14192015-10-20 15:39:05 +08002348
2349 return target_tsc - tsc;
2350}
2351
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002352u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
2353{
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002354 return vcpu->arch.l1_tsc_offset +
2355 kvm_scale_tsc(vcpu, host_tsc, vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002356}
2357EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
2358
Ilias Stamatis83150f22021-05-26 19:44:14 +01002359u64 kvm_calc_nested_tsc_offset(u64 l1_offset, u64 l2_offset, u64 l2_multiplier)
2360{
2361 u64 nested_offset;
2362
2363 if (l2_multiplier == kvm_default_tsc_scaling_ratio)
2364 nested_offset = l1_offset;
2365 else
2366 nested_offset = mul_s64_u64_shr((s64) l1_offset, l2_multiplier,
2367 kvm_tsc_scaling_ratio_frac_bits);
2368
2369 nested_offset += l2_offset;
2370 return nested_offset;
2371}
2372EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_offset);
2373
2374u64 kvm_calc_nested_tsc_multiplier(u64 l1_multiplier, u64 l2_multiplier)
2375{
2376 if (l2_multiplier != kvm_default_tsc_scaling_ratio)
2377 return mul_u64_u64_shr(l1_multiplier, l2_multiplier,
2378 kvm_tsc_scaling_ratio_frac_bits);
2379
2380 return l1_multiplier;
2381}
2382EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_multiplier);
2383
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002384static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 l1_offset)
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002385{
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002386 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2387 vcpu->arch.l1_tsc_offset,
2388 l1_offset);
2389
2390 vcpu->arch.l1_tsc_offset = l1_offset;
2391
2392 /*
2393 * If we are here because L1 chose not to trap WRMSR to TSC then
2394 * according to the spec this should set L1's TSC (as opposed to
2395 * setting L1's offset for L2).
2396 */
2397 if (is_guest_mode(vcpu))
2398 vcpu->arch.tsc_offset = kvm_calc_nested_tsc_offset(
2399 l1_offset,
2400 static_call(kvm_x86_get_l2_tsc_offset)(vcpu),
2401 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2402 else
2403 vcpu->arch.tsc_offset = l1_offset;
2404
2405 static_call(kvm_x86_write_tsc_offset)(vcpu, vcpu->arch.tsc_offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002406}
2407
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002408static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier)
2409{
2410 vcpu->arch.l1_tsc_scaling_ratio = l1_multiplier;
2411
2412 /* Userspace is changing the multiplier while L2 is active */
2413 if (is_guest_mode(vcpu))
2414 vcpu->arch.tsc_scaling_ratio = kvm_calc_nested_tsc_multiplier(
2415 l1_multiplier,
2416 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2417 else
2418 vcpu->arch.tsc_scaling_ratio = l1_multiplier;
2419
2420 if (kvm_has_tsc_control)
2421 static_call(kvm_x86_write_tsc_multiplier)(
2422 vcpu, vcpu->arch.tsc_scaling_ratio);
2423}
2424
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002425static inline bool kvm_check_tsc_unstable(void)
2426{
2427#ifdef CONFIG_X86_64
2428 /*
2429 * TSC is marked unstable when we're running on Hyper-V,
2430 * 'TSC page' clocksource is good.
2431 */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002432 if (pvclock_gtod_data.clock.vclock_mode == VDSO_CLOCKMODE_HVCLOCK)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002433 return false;
2434#endif
2435 return check_tsc_unstable();
2436}
2437
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002438static void kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 data)
Zachary Amsden99e3e302010-08-19 22:07:17 -10002439{
2440 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002441 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002442 unsigned long flags;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002443 bool matched;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002444 bool already_matched;
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002445 bool synchronizing = false;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002446
Jan Kiszka038f8c12011-02-04 10:49:11 +01002447 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002448 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002449 ns = get_kvmclock_base_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002450 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002451
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002452 if (vcpu->arch.virtual_tsc_khz) {
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002453 if (data == 0) {
Denis Plotnikovbd8fab32017-04-07 12:09:53 +03002454 /*
2455 * detection of vcpu initialization -- need to sync
2456 * with other vCPUs. This particularly helps to keep
2457 * kvm_clock stable after CPU hotplug
2458 */
2459 synchronizing = true;
2460 } else {
2461 u64 tsc_exp = kvm->arch.last_tsc_write +
2462 nsec_to_cycles(vcpu, elapsed);
2463 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
2464 /*
2465 * Special case: TSC write with a small delta (1 second)
2466 * of virtual cycle time against real time is
2467 * interpreted as an attempt to synchronize the CPU.
2468 */
2469 synchronizing = data < tsc_exp + tsc_hz &&
2470 data + tsc_hz > tsc_exp;
2471 }
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002472 }
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002473
2474 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002475 * For a reliable TSC, we can match TSC offsets, and for an unstable
2476 * TSC, we add elapsed time in this computation. We could let the
2477 * compensation code attempt to catch up if we fall behind, but
2478 * it's better to try to match offsets from the beginning.
2479 */
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002480 if (synchronizing &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002481 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002482 if (!kvm_check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02002483 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002484 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01002485 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002486 data += delta;
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002487 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002488 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002489 matched = true;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002490 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002491 } else {
2492 /*
2493 * We split periods of matched TSC writes into generations.
2494 * For each generation, we track the original measured
2495 * nanosecond time, offset, and write, so if TSCs are in
2496 * sync, we can match exact offset, and if not, we can match
Guo Chao4a969982012-06-28 15:17:27 +08002497 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02002498 *
2499 * These values are tracked in kvm->arch.cur_xxx variables.
2500 */
2501 kvm->arch.cur_tsc_generation++;
2502 kvm->arch.cur_tsc_nsec = ns;
2503 kvm->arch.cur_tsc_write = data;
2504 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002505 matched = false;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002506 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02002507
2508 /*
2509 * We also track th most recent recorded KHZ, write and time to
2510 * allow the matching interval to be extended at each write.
2511 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002512 kvm->arch.last_tsc_nsec = ns;
2513 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002514 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002515
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002516 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02002517
2518 /* Keep track of which generation this VCPU has synchronized to */
2519 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
2520 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
2521 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
2522
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002523 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002524 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002525
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002526 spin_lock_irqsave(&kvm->arch.pvclock_gtod_sync_lock, flags);
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002527 if (!matched) {
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002528 kvm->arch.nr_vcpus_matched_tsc = 0;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002529 } else if (!already_matched) {
2530 kvm->arch.nr_vcpus_matched_tsc++;
2531 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002532
2533 kvm_track_tsc_matching(vcpu);
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002534 spin_unlock_irqrestore(&kvm->arch.pvclock_gtod_sync_lock, flags);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002535}
Zachary Amsdene26101b2012-02-03 15:43:57 -02002536
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002537static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
2538 s64 adjustment)
2539{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07002540 u64 tsc_offset = vcpu->arch.l1_tsc_offset;
Leonid Shatz326e7422018-11-06 12:14:25 +02002541 kvm_vcpu_write_tsc_offset(vcpu, tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002542}
2543
2544static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
2545{
Ilias Stamatis805d7052021-05-26 19:44:09 +01002546 if (vcpu->arch.l1_tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002547 WARN_ON(adjustment < 0);
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002548 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment,
2549 vcpu->arch.l1_tsc_scaling_ratio);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01002550 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002551}
2552
Marcelo Tosattid8281992012-11-27 23:29:01 -02002553#ifdef CONFIG_X86_64
2554
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002555static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002556{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002557 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02002558 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002559
2560 if (likely(ret >= last))
2561 return ret;
2562
2563 /*
2564 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08002565 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02002566 * very likely) and there's a data dependence, so force GCC
2567 * to generate a branch instead. I don't barrier() because
2568 * we don't actually need a barrier, and if this function
2569 * ever gets inlined it will generate worse code.
2570 */
2571 asm volatile ("");
2572 return last;
2573}
2574
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002575static inline u64 vgettsc(struct pvclock_clock *clock, u64 *tsc_timestamp,
2576 int *mode)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002577{
2578 long v;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002579 u64 tsc_pg_val;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002580
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002581 switch (clock->vclock_mode) {
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002582 case VDSO_CLOCKMODE_HVCLOCK:
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002583 tsc_pg_val = hv_read_tsc_page_tsc(hv_get_tsc_page(),
2584 tsc_timestamp);
2585 if (tsc_pg_val != U64_MAX) {
2586 /* TSC page valid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002587 *mode = VDSO_CLOCKMODE_HVCLOCK;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002588 v = (tsc_pg_val - clock->cycle_last) &
2589 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002590 } else {
2591 /* TSC page invalid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002592 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002593 }
2594 break;
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002595 case VDSO_CLOCKMODE_TSC:
2596 *mode = VDSO_CLOCKMODE_TSC;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002597 *tsc_timestamp = read_tsc();
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002598 v = (*tsc_timestamp - clock->cycle_last) &
2599 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002600 break;
2601 default:
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002602 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002603 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002604
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002605 if (*mode == VDSO_CLOCKMODE_NONE)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002606 *tsc_timestamp = v = 0;
2607
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002608 return v * clock->mult;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002609}
2610
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002611static int do_monotonic_raw(s64 *t, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002612{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002613 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002614 unsigned long seq;
2615 int mode;
2616 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002617
Marcelo Tosattid8281992012-11-27 23:29:01 -02002618 do {
2619 seq = read_seqcount_begin(&gtod->seq);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002620 ns = gtod->raw_clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002621 ns += vgettsc(&gtod->raw_clock, tsc_timestamp, &mode);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002622 ns >>= gtod->raw_clock.shift;
2623 ns += ktime_to_ns(ktime_add(gtod->raw_clock.offset, gtod->offs_boot));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002624 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002625 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002626
2627 return mode;
2628}
2629
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002630static int do_realtime(struct timespec64 *ts, u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002631{
2632 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2633 unsigned long seq;
2634 int mode;
2635 u64 ns;
2636
2637 do {
2638 seq = read_seqcount_begin(&gtod->seq);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002639 ts->tv_sec = gtod->wall_time_sec;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002640 ns = gtod->clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002641 ns += vgettsc(&gtod->clock, tsc_timestamp, &mode);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002642 ns >>= gtod->clock.shift;
2643 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
2644
2645 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
2646 ts->tv_nsec = ns;
2647
2648 return mode;
2649}
2650
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002651/* returns true if host is using TSC based clocksource */
2652static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002653{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002654 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002655 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosattid8281992012-11-27 23:29:01 -02002656 return false;
2657
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002658 return gtod_is_based_on_tsc(do_monotonic_raw(kernel_ns,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002659 tsc_timestamp));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002660}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002661
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002662/* returns true if host is using TSC based clocksource */
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002663static bool kvm_get_walltime_and_clockread(struct timespec64 *ts,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002664 u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002665{
2666 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002667 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002668 return false;
2669
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002670 return gtod_is_based_on_tsc(do_realtime(ts, tsc_timestamp));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002671}
Marcelo Tosattid8281992012-11-27 23:29:01 -02002672#endif
2673
2674/*
2675 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002676 * Assuming a stable TSC across physical CPUS, and a stable TSC
2677 * across virtual CPUs, the following condition is possible.
2678 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02002679 * CPUs at the next numbered event.
2680 *
2681 * "timespecX" represents host monotonic time. "tscX" represents
2682 * RDTSC value.
2683 *
2684 * VCPU0 on CPU0 | VCPU1 on CPU1
2685 *
2686 * 1. read timespec0,tsc0
2687 * 2. | timespec1 = timespec0 + N
2688 * | tsc1 = tsc0 + M
2689 * 3. transition to guest | transition to guest
2690 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
2691 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
2692 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
2693 *
2694 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
2695 *
2696 * - ret0 < ret1
2697 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
2698 * ...
2699 * - 0 < N - M => M < N
2700 *
2701 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
2702 * always the case (the difference between two distinct xtime instances
2703 * might be smaller then the difference between corresponding TSC reads,
2704 * when updating guest vcpus pvclock areas).
2705 *
2706 * To avoid that problem, do not allow visibility of distinct
2707 * system_timestamp/tsc_timestamp values simultaneously: use a master
2708 * copy of host monotonic time values. Update that master copy
2709 * in lockstep.
2710 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002711 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02002712 *
2713 */
2714
2715static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
2716{
2717#ifdef CONFIG_X86_64
2718 struct kvm_arch *ka = &kvm->arch;
2719 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002720 bool host_tsc_clocksource, vcpus_matched;
2721
2722 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2723 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002724
2725 /*
2726 * If the host uses TSC clock, then passthrough TSC as stable
2727 * to the guest.
2728 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002729 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02002730 &ka->master_kernel_ns,
2731 &ka->master_cycle_now);
2732
Marcelo Tosatti16a96022014-05-14 12:43:24 -03002733 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Ladi Proseka826faf2017-06-26 09:56:43 +02002734 && !ka->backwards_tsc_observed
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002735 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002736
Marcelo Tosattid8281992012-11-27 23:29:01 -02002737 if (ka->use_master_clock)
2738 atomic_set(&kvm_guest_has_master_clock, 1);
2739
2740 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002741 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
2742 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002743#endif
2744}
2745
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002746static void kvm_make_mclock_inprogress_request(struct kvm *kvm)
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002747{
2748 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
2749}
2750
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002751static void kvm_start_pvclock_update(struct kvm *kvm)
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002752{
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002753 struct kvm_arch *ka = &kvm->arch;
Vitaly Kuznetsove880c6e2021-03-16 15:37:34 +01002754
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002755 kvm_make_mclock_inprogress_request(kvm);
Paolo Bonzinic2c647f2021-03-25 14:05:11 -04002756
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002757 /* no guest entries from this point */
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002758 spin_lock_irq(&ka->pvclock_gtod_sync_lock);
2759}
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002760
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002761static void kvm_end_pvclock_update(struct kvm *kvm)
2762{
2763 struct kvm_arch *ka = &kvm->arch;
2764 struct kvm_vcpu *vcpu;
2765 int i;
2766
2767 spin_unlock_irq(&ka->pvclock_gtod_sync_lock);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002768 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002769 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002770
2771 /* guest entries allowed */
2772 kvm_for_each_vcpu(i, vcpu, kvm)
Radim Krčmář72875d82017-04-26 22:32:19 +02002773 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002774}
2775
2776static void kvm_update_masterclock(struct kvm *kvm)
2777{
2778 kvm_hv_invalidate_tsc_page(kvm);
2779 kvm_start_pvclock_update(kvm);
2780 pvclock_update_vm_gtod_copy(kvm);
2781 kvm_end_pvclock_update(kvm);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002782}
2783
Marcelo Tosattie891a322017-04-17 12:51:37 -03002784u64 get_kvmclock_ns(struct kvm *kvm)
Paolo Bonzini108b2492016-09-01 14:21:03 +02002785{
Paolo Bonzini108b2492016-09-01 14:21:03 +02002786 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002787 struct pvclock_vcpu_time_info hv_clock;
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002788 unsigned long flags;
Wanpeng Lie2c22062017-05-11 18:12:05 -07002789 u64 ret;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002790
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002791 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
Paolo Bonzini8b953442016-11-16 18:31:30 +01002792 if (!ka->use_master_clock) {
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002793 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002794 return get_kvmclock_base_ns() + ka->kvmclock_offset;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002795 }
2796
Paolo Bonzini8b953442016-11-16 18:31:30 +01002797 hv_clock.tsc_timestamp = ka->master_cycle_now;
2798 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002799 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Paolo Bonzini8b953442016-11-16 18:31:30 +01002800
Wanpeng Lie2c22062017-05-11 18:12:05 -07002801 /* both __this_cpu_read() and rdtsc() should be on the same cpu */
2802 get_cpu();
2803
Wanpeng Lie70b57a2017-11-20 14:55:05 -08002804 if (__this_cpu_read(cpu_tsc_khz)) {
2805 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
2806 &hv_clock.tsc_shift,
2807 &hv_clock.tsc_to_system_mul);
2808 ret = __pvclock_read_cycles(&hv_clock, rdtsc());
2809 } else
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002810 ret = get_kvmclock_base_ns() + ka->kvmclock_offset;
Wanpeng Lie2c22062017-05-11 18:12:05 -07002811
2812 put_cpu();
2813
2814 return ret;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002815}
2816
Joao Martinsaa096aa2019-02-01 13:01:45 -05002817static void kvm_setup_pvclock_page(struct kvm_vcpu *v,
2818 struct gfn_to_hva_cache *cache,
2819 unsigned int offset)
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002820{
2821 struct kvm_vcpu_arch *vcpu = &v->arch;
2822 struct pvclock_vcpu_time_info guest_hv_clock;
2823
Joao Martinsaa096aa2019-02-01 13:01:45 -05002824 if (unlikely(kvm_read_guest_offset_cached(v->kvm, cache,
2825 &guest_hv_clock, offset, sizeof(guest_hv_clock))))
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002826 return;
2827
2828 /* This VCPU is paused, but it's legal for a guest to read another
2829 * VCPU's kvmclock, so we really have to follow the specification where
2830 * it says that version is odd if data is being modified, and even after
2831 * it is consistent.
2832 *
2833 * Version field updates must be kept separate. This is because
2834 * kvm_write_guest_cached might use a "rep movs" instruction, and
2835 * writes within a string instruction are weakly ordered. So there
2836 * are three writes overall.
2837 *
2838 * As a small optimization, only write the version field in the first
2839 * and third write. The vcpu->pv_time cache is still valid, because the
2840 * version field is the first in the struct.
2841 */
2842 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
2843
Liran Alon51c4b8b2017-11-05 16:11:30 +02002844 if (guest_hv_clock.version & 1)
2845 ++guest_hv_clock.version; /* first time write, random junk */
2846
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002847 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002848 kvm_write_guest_offset_cached(v->kvm, cache,
2849 &vcpu->hv_clock, offset,
2850 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002851
2852 smp_wmb();
2853
2854 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
2855 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
2856
2857 if (vcpu->pvclock_set_guest_stopped_request) {
2858 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
2859 vcpu->pvclock_set_guest_stopped_request = false;
2860 }
2861
2862 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
2863
Joao Martinsaa096aa2019-02-01 13:01:45 -05002864 kvm_write_guest_offset_cached(v->kvm, cache,
2865 &vcpu->hv_clock, offset,
2866 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002867
2868 smp_wmb();
2869
2870 vcpu->hv_clock.version++;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002871 kvm_write_guest_offset_cached(v->kvm, cache,
2872 &vcpu->hv_clock, offset,
2873 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002874}
2875
Zachary Amsden34c238a2010-09-18 14:38:14 -10002876static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002877{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002878 unsigned long flags, tgt_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002879 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002880 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02002881 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002882 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002883 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002884 bool use_master_clock;
2885
2886 kernel_ns = 0;
2887 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002888
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002889 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02002890 * If the host uses TSC clock, then passthrough TSC as stable
2891 * to the guest.
2892 */
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002893 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002894 use_master_clock = ka->use_master_clock;
2895 if (use_master_clock) {
2896 host_tsc = ka->master_cycle_now;
2897 kernel_ns = ka->master_kernel_ns;
2898 }
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002899 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002900
2901 /* Keep irq disabled to prevent changes to the clock */
2902 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002903 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
2904 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002905 local_irq_restore(flags);
2906 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
2907 return 1;
2908 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002909 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002910 host_tsc = rdtsc();
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002911 kernel_ns = get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02002912 }
2913
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002914 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002915
2916 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10002917 * We may have to catch up the TSC to match elapsed wall clock
2918 * time for two reasons, even if kvmclock is used.
2919 * 1) CPU could have been running below the maximum TSC rate
2920 * 2) Broken TSC compensation resets the base at each VCPU
2921 * entry to avoid unknown leaps of TSC even when running
2922 * again on the same CPU. This may cause apparent elapsed
2923 * time to disappear, and the guest to stand still or run
2924 * very slowly.
2925 */
2926 if (vcpu->tsc_catchup) {
2927 u64 tsc = compute_guest_tsc(v, kernel_ns);
2928 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02002929 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002930 tsc_timestamp = tsc;
2931 }
2932 }
2933
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002934 local_irq_restore(flags);
2935
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002936 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10002937
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002938 if (kvm_has_tsc_control)
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002939 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz,
2940 v->arch.l1_tsc_scaling_ratio);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002941
2942 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002943 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002944 &vcpu->hv_clock.tsc_shift,
2945 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002946 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10002947 }
2948
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002949 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10002950 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10002951 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002952
Marcelo Tosattid8281992012-11-27 23:29:01 -02002953 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002954 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002955 if (use_master_clock)
2956 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
2957
Marcelo Tosatti78c03372012-11-27 23:28:47 -02002958 vcpu->hv_clock.flags = pvclock_flags;
2959
Paolo Bonzini095cf552016-02-08 12:54:12 +01002960 if (vcpu->pv_time_enabled)
Joao Martinsaa096aa2019-02-01 13:01:45 -05002961 kvm_setup_pvclock_page(v, &vcpu->pv_time, 0);
2962 if (vcpu->xen.vcpu_info_set)
2963 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_info_cache,
2964 offsetof(struct compat_vcpu_info, time));
Joao Martinsf2340cd2018-07-23 11:20:57 -04002965 if (vcpu->xen.vcpu_time_info_set)
2966 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_time_info_cache, 0);
Sean Christopherson94c245a2021-09-10 11:32:20 -07002967 if (!v->vcpu_idx)
Paolo Bonzini095cf552016-02-08 12:54:12 +01002968 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10002969 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002970}
2971
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002972/*
2973 * kvmclock updates which are isolated to a given vcpu, such as
2974 * vcpu->cpu migration, should not allow system_timestamp from
2975 * the rest of the vcpus to remain static. Otherwise ntp frequency
2976 * correction applies to one vcpu's system_timestamp but not
2977 * the others.
2978 *
2979 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01002980 * We need to rate-limit these requests though, as they can
2981 * considerably slow guests that have a large number of vcpus.
2982 * The time for a remote vcpu to update its kvmclock is bound
2983 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002984 */
2985
Andrew Jones7e44e442014-02-28 12:52:54 +01002986#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
2987
2988static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002989{
2990 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01002991 struct delayed_work *dwork = to_delayed_work(work);
2992 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
2993 kvmclock_update_work);
2994 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002995 struct kvm_vcpu *vcpu;
2996
2997 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002998 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002999 kvm_vcpu_kick(vcpu);
3000 }
3001}
3002
Andrew Jones7e44e442014-02-28 12:52:54 +01003003static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
3004{
3005 struct kvm *kvm = v->kvm;
3006
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003007 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01003008 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
3009 KVMCLOCK_UPDATE_DELAY);
3010}
3011
Andrew Jones332967a2014-02-28 12:52:55 +01003012#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
3013
3014static void kvmclock_sync_fn(struct work_struct *work)
3015{
3016 struct delayed_work *dwork = to_delayed_work(work);
3017 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3018 kvmclock_sync_work);
3019 struct kvm *kvm = container_of(ka, struct kvm, arch);
3020
Marcelo Tosatti630994b2015-05-12 22:42:04 -03003021 if (!kvmclock_periodic_sync)
3022 return;
3023
Andrew Jones332967a2014-02-28 12:52:55 +01003024 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
3025 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
3026 KVMCLOCK_SYNC_PERIOD);
3027}
3028
Borislav Petkov191c8132019-04-18 18:32:50 +02003029/*
3030 * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP.
3031 */
3032static bool can_set_mci_status(struct kvm_vcpu *vcpu)
3033{
3034 /* McStatusWrEn enabled? */
Sean Christopherson23493d02020-03-04 17:34:33 -08003035 if (guest_cpuid_is_amd_or_hygon(vcpu))
Borislav Petkov191c8132019-04-18 18:32:50 +02003036 return !!(vcpu->arch.msr_hwcr & BIT_ULL(18));
3037
3038 return false;
3039}
3040
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003041static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Huang Ying890ca9a2009-05-11 16:48:15 +08003042{
3043 u64 mcg_cap = vcpu->arch.mcg_cap;
3044 unsigned bank_num = mcg_cap & 0xff;
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003045 u32 msr = msr_info->index;
3046 u64 data = msr_info->data;
Huang Ying890ca9a2009-05-11 16:48:15 +08003047
3048 switch (msr) {
3049 case MSR_IA32_MCG_STATUS:
3050 vcpu->arch.mcg_status = data;
3051 break;
3052 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003053 if (!(mcg_cap & MCG_CTL_P) &&
3054 (data || !msr_info->host_initiated))
Huang Ying890ca9a2009-05-11 16:48:15 +08003055 return 1;
3056 if (data != 0 && data != ~(u64)0)
Paolo Bonzini44883f02018-07-26 13:01:52 +02003057 return 1;
Huang Ying890ca9a2009-05-11 16:48:15 +08003058 vcpu->arch.mcg_ctl = data;
3059 break;
3060 default:
3061 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003062 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003063 u32 offset = array_index_nospec(
3064 msr - MSR_IA32_MC0_CTL,
3065 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3066
Andre Przywara114be422010-03-24 17:46:42 +01003067 /* only 0 or all 1s can be written to IA32_MCi_CTL
3068 * some Linux kernels though clear bit 10 in bank 4 to
3069 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
3070 * this to avoid an uncatched #GP in the guest
3071 */
Huang Ying890ca9a2009-05-11 16:48:15 +08003072 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01003073 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08003074 return -1;
Borislav Petkov191c8132019-04-18 18:32:50 +02003075
3076 /* MCi_STATUS */
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003077 if (!msr_info->host_initiated &&
Borislav Petkov191c8132019-04-18 18:32:50 +02003078 (offset & 0x3) == 1 && data != 0) {
3079 if (!can_set_mci_status(vcpu))
3080 return -1;
3081 }
3082
Huang Ying890ca9a2009-05-11 16:48:15 +08003083 vcpu->arch.mce_banks[offset] = data;
3084 break;
3085 }
3086 return 1;
3087 }
3088 return 0;
3089}
3090
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003091static inline bool kvm_pv_async_pf_enabled(struct kvm_vcpu *vcpu)
3092{
3093 u64 mask = KVM_ASYNC_PF_ENABLED | KVM_ASYNC_PF_DELIVERY_AS_INT;
3094
3095 return (vcpu->arch.apf.msr_en_val & mask) == mask;
3096}
3097
Gleb Natapov344d9582010-10-14 11:22:50 +02003098static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
3099{
3100 gpa_t gpa = data & ~0x3f;
3101
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003102 /* Bits 4:5 are reserved, Should be zero */
3103 if (data & 0x30)
Gleb Natapov344d9582010-10-14 11:22:50 +02003104 return 1;
3105
Oliver Upton66570e92020-08-18 15:24:28 +00003106 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_VMEXIT) &&
3107 (data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT))
3108 return 1;
3109
3110 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT) &&
3111 (data & KVM_ASYNC_PF_DELIVERY_AS_INT))
3112 return 1;
3113
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003114 if (!lapic_in_kernel(vcpu))
Vitaly Kuznetsovd831de12020-09-11 11:31:47 +02003115 return data ? 1 : 0;
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003116
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003117 vcpu->arch.apf.msr_en_val = data;
Gleb Natapov344d9582010-10-14 11:22:50 +02003118
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003119 if (!kvm_pv_async_pf_enabled(vcpu)) {
Gleb Natapov344d9582010-10-14 11:22:50 +02003120 kvm_clear_async_pf_completion_queue(vcpu);
3121 kvm_async_pf_hash_reset(vcpu);
3122 return 0;
3123 }
3124
Paolo Bonzini4e335d92017-05-02 16:20:18 +02003125 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003126 sizeof(u64)))
Gleb Natapov344d9582010-10-14 11:22:50 +02003127 return 1;
3128
Gleb Natapov6adba522010-10-14 11:22:55 +02003129 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Wanpeng Li52a5c152017-07-13 18:30:42 -07003130 vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003131
Gleb Natapov344d9582010-10-14 11:22:50 +02003132 kvm_async_pf_wakeup_all(vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003133
3134 return 0;
3135}
3136
3137static int kvm_pv_enable_async_pf_int(struct kvm_vcpu *vcpu, u64 data)
3138{
3139 /* Bits 8-63 are reserved */
3140 if (data >> 8)
3141 return 1;
3142
3143 if (!lapic_in_kernel(vcpu))
3144 return 1;
3145
3146 vcpu->arch.apf.msr_int_val = data;
3147
3148 vcpu->arch.apf.vec = data & KVM_ASYNC_PF_VEC_MASK;
3149
Gleb Natapov344d9582010-10-14 11:22:50 +02003150 return 0;
3151}
3152
Glauber Costa12f9a482011-02-01 14:16:40 -05003153static void kvmclock_reset(struct kvm_vcpu *vcpu)
3154{
Andy Honig0b794592013-02-20 14:48:10 -08003155 vcpu->arch.pv_time_enabled = false;
Paolo Bonzini49dedf02019-10-10 12:49:22 +02003156 vcpu->arch.time = 0;
Glauber Costa12f9a482011-02-01 14:16:40 -05003157}
3158
Sean Christopherson77809382020-03-20 14:28:18 -07003159static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003160{
3161 ++vcpu->stat.tlb_flush;
Jason Baronb36464772021-01-14 22:27:56 -05003162 static_call(kvm_x86_tlb_flush_all)(vcpu);
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003163}
3164
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003165static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
3166{
3167 ++vcpu->stat.tlb_flush;
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003168
3169 if (!tdp_enabled) {
3170 /*
3171 * A TLB flush on behalf of the guest is equivalent to
3172 * INVPCID(all), toggling CR4.PGE, etc., which requires
3173 * a forced sync of the shadow page tables. Unload the
3174 * entire MMU here and the subsequent load will sync the
3175 * shadow page tables, and also flush the TLB.
3176 */
3177 kvm_mmu_unload(vcpu);
3178 return;
3179 }
3180
Jason Baronb36464772021-01-14 22:27:56 -05003181 static_call(kvm_x86_tlb_flush_guest)(vcpu);
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003182}
3183
Glauber Costac9aaa892011-07-11 15:28:14 -04003184static void record_steal_time(struct kvm_vcpu *vcpu)
3185{
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003186 struct kvm_host_map map;
3187 struct kvm_steal_time *st;
3188
David Woodhouse30b5c852021-03-01 12:53:09 +00003189 if (kvm_xen_msr_enabled(vcpu->kvm)) {
3190 kvm_xen_runstate_set_running(vcpu);
3191 return;
3192 }
3193
Glauber Costac9aaa892011-07-11 15:28:14 -04003194 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
3195 return;
3196
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003197 /* -EAGAIN is returned in atomic context so we can just return. */
3198 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT,
3199 &map, &vcpu->arch.st.cache, false))
Glauber Costac9aaa892011-07-11 15:28:14 -04003200 return;
3201
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003202 st = map.hva +
3203 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
3204
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003205 /*
3206 * Doing a TLB flush here, on the guest's behalf, can avoid
3207 * expensive IPIs.
3208 */
Oliver Upton66570e92020-08-18 15:24:28 +00003209 if (guest_pv_has(vcpu, KVM_FEATURE_PV_TLB_FLUSH)) {
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003210 u8 st_preempted = xchg(&st->preempted, 0);
3211
Oliver Upton66570e92020-08-18 15:24:28 +00003212 trace_kvm_pv_tlb_flush(vcpu->vcpu_id,
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003213 st_preempted & KVM_VCPU_FLUSH_TLB);
3214 if (st_preempted & KVM_VCPU_FLUSH_TLB)
Oliver Upton66570e92020-08-18 15:24:28 +00003215 kvm_vcpu_flush_tlb_guest(vcpu);
Wanpeng Li1eff0ad2021-05-18 05:00:33 -07003216 } else {
3217 st->preempted = 0;
Oliver Upton66570e92020-08-18 15:24:28 +00003218 }
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003219
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00003220 vcpu->arch.st.preempted = 0;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003221
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003222 if (st->version & 1)
3223 st->version += 1; /* first time write, random junk */
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003224
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003225 st->version += 1;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003226
3227 smp_wmb();
3228
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003229 st->steal += current->sched_info.run_delay -
Liang Chenc54cdf12016-03-16 19:33:16 +08003230 vcpu->arch.st.last_steal;
3231 vcpu->arch.st.last_steal = current->sched_info.run_delay;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003232
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003233 smp_wmb();
3234
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003235 st->version += 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003236
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003237 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, false);
Glauber Costac9aaa892011-07-11 15:28:14 -04003238}
3239
Will Auld8fe8ab42012-11-29 12:42:12 -08003240int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003241{
Gleb Natapov57537852012-01-15 14:17:22 +02003242 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08003243 u32 msr = msr_info->index;
3244 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02003245
Joao Martins1232f8e2018-06-13 06:10:37 -04003246 if (msr && msr == vcpu->kvm->arch.xen_hvm_config.msr)
Joao Martins23200b72018-06-13 09:55:44 -04003247 return kvm_xen_write_hypercall_page(vcpu, data);
Joao Martins1232f8e2018-06-13 06:10:37 -04003248
Carsten Otte15c4a642007-10-30 18:44:17 +01003249 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01003250 case MSR_AMD64_NB_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003251 case MSR_IA32_UCODE_WRITE:
3252 case MSR_VM_HSAVE_PA:
3253 case MSR_AMD64_PATCH_LOADER:
3254 case MSR_AMD64_BU_CFG2:
Ladi Prosek405a3532017-04-06 15:22:20 +02003255 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003256 case MSR_F15H_EX_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003257 break;
3258
Wanpeng Li518e7b92018-02-28 14:03:31 +08003259 case MSR_IA32_UCODE_REV:
3260 if (msr_info->host_initiated)
3261 vcpu->arch.microcode_version = data;
3262 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003263 case MSR_IA32_ARCH_CAPABILITIES:
3264 if (!msr_info->host_initiated)
3265 return 1;
3266 vcpu->arch.arch_capabilities = data;
3267 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003268 case MSR_IA32_PERF_CAPABILITIES: {
3269 struct kvm_msr_entry msr_ent = {.index = msr, .data = 0};
3270
3271 if (!msr_info->host_initiated)
3272 return 1;
3273 if (guest_cpuid_has(vcpu, X86_FEATURE_PDCM) && kvm_get_msr_feature(&msr_ent))
3274 return 1;
3275 if (data & ~msr_ent.data)
3276 return 1;
3277
3278 vcpu->arch.perf_capabilities = data;
3279
3280 return 0;
3281 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003282 case MSR_EFER:
Sean Christopherson11988492019-04-02 08:19:15 -07003283 return set_efer(vcpu, msr_info);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003284 case MSR_K7_HWCR:
3285 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01003286 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08003287 data &= ~(u64)0x8; /* ignore TLB cache disable */
Borislav Petkov191c8132019-04-18 18:32:50 +02003288
3289 /* Handle McStatusWrEn */
3290 if (data == BIT_ULL(18)) {
3291 vcpu->arch.msr_hwcr = data;
3292 } else if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003293 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
3294 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003295 return 1;
3296 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003297 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003298 case MSR_FAM10H_MMIO_CONF_BASE:
3299 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003300 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
3301 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003302 return 1;
3303 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003304 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03003305 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003306 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003307 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01003308 return kvm_set_apic_base(vcpu, msr_info);
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003309 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03003310 return kvm_x2apic_msr_write(vcpu, msr, data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003311 case MSR_IA32_TSC_DEADLINE:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003312 kvm_set_lapic_tscdeadline_msr(vcpu, data);
3313 break;
Will Auldba904632012-11-29 12:42:50 -08003314 case MSR_IA32_TSC_ADJUST:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003315 if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) {
Will Auldba904632012-11-29 12:42:50 -08003316 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06003317 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08003318 adjust_tsc_offset_guest(vcpu, adj);
Zelin Dengd9130a22021-04-28 10:22:01 +08003319 /* Before back to guest, tsc_timestamp must be adjusted
3320 * as well, otherwise guest's percpu pvclock time could jump.
3321 */
3322 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Will Auldba904632012-11-29 12:42:50 -08003323 }
3324 vcpu->arch.ia32_tsc_adjust_msr = data;
3325 }
3326 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003327 case MSR_IA32_MISC_ENABLE:
Wanpeng Li511a85562019-05-21 14:06:54 +08003328 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) &&
3329 ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) {
3330 if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3))
3331 return 1;
3332 vcpu->arch.ia32_misc_enable_msr = data;
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08003333 kvm_update_cpuid_runtime(vcpu);
Wanpeng Li511a85562019-05-21 14:06:54 +08003334 } else {
3335 vcpu->arch.ia32_misc_enable_msr = data;
3336 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003337 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003338 case MSR_IA32_SMBASE:
3339 if (!msr_info->host_initiated)
3340 return 1;
3341 vcpu->arch.smbase = data;
3342 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003343 case MSR_IA32_POWER_CTL:
3344 vcpu->arch.msr_ia32_power_ctl = data;
3345 break;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003346 case MSR_IA32_TSC:
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003347 if (msr_info->host_initiated) {
3348 kvm_synchronize_tsc(vcpu, data);
3349 } else {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01003350 u64 adj = kvm_compute_l1_tsc_offset(vcpu, data) - vcpu->arch.l1_tsc_offset;
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003351 adjust_tsc_offset_guest(vcpu, adj);
3352 vcpu->arch.ia32_tsc_adjust_msr += adj;
3353 }
Paolo Bonzinidd259932018-04-13 11:38:35 +02003354 break;
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003355 case MSR_IA32_XSS:
3356 if (!msr_info->host_initiated &&
3357 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3358 return 1;
3359 /*
Sean Christophersona1bead22020-03-02 15:57:00 -08003360 * KVM supports exposing PT to the guest, but does not support
3361 * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than
3362 * XSAVES/XRSTORS to save/restore PT MSRs.
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003363 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01003364 if (data & ~supported_xss)
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003365 return 1;
3366 vcpu->arch.ia32_xss = data;
3367 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003368 case MSR_SMI_COUNT:
3369 if (!msr_info->host_initiated)
3370 return 1;
3371 vcpu->arch.smi_count = data;
3372 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003373 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003374 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3375 return 1;
3376
Joao Martins629b5342018-06-28 15:06:43 -04003377 vcpu->kvm->arch.wall_clock = data;
3378 kvm_write_wall_clock(vcpu->kvm, data, 0);
Oliver Upton66570e92020-08-18 15:24:28 +00003379 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003380 case MSR_KVM_WALL_CLOCK:
Oliver Upton66570e92020-08-18 15:24:28 +00003381 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3382 return 1;
3383
Joao Martins629b5342018-06-28 15:06:43 -04003384 vcpu->kvm->arch.wall_clock = data;
3385 kvm_write_wall_clock(vcpu->kvm, data, 0);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003386 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003387 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003388 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3389 return 1;
3390
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003391 kvm_write_system_time(vcpu, data, false, msr_info->host_initiated);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003392 break;
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003393 case MSR_KVM_SYSTEM_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003394 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3395 return 1;
3396
3397 kvm_write_system_time(vcpu, data, true, msr_info->host_initiated);
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003398 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003399 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003400 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3401 return 1;
3402
Gleb Natapov344d9582010-10-14 11:22:50 +02003403 if (kvm_pv_enable_async_pf(vcpu, data))
3404 return 1;
3405 break;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003406 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton66570e92020-08-18 15:24:28 +00003407 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3408 return 1;
3409
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003410 if (kvm_pv_enable_async_pf_int(vcpu, data))
3411 return 1;
3412 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003413 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003414 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton66570e92020-08-18 15:24:28 +00003415 return 1;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003416 if (data & 0x1) {
3417 vcpu->arch.apf.pageready_pending = false;
3418 kvm_check_async_pf_completion(vcpu);
3419 }
3420 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003421 case MSR_KVM_STEAL_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003422 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3423 return 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003424
3425 if (unlikely(!sched_info_on()))
3426 return 1;
3427
3428 if (data & KVM_STEAL_RESERVED_MASK)
3429 return 1;
3430
Glauber Costac9aaa892011-07-11 15:28:14 -04003431 vcpu->arch.st.msr_val = data;
3432
3433 if (!(data & KVM_MSR_ENABLED))
3434 break;
3435
Glauber Costac9aaa892011-07-11 15:28:14 -04003436 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
3437
3438 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003439 case MSR_KVM_PV_EOI_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003440 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3441 return 1;
3442
Ladi Prosek72bbf932018-10-16 18:49:59 +02003443 if (kvm_lapic_enable_pv_eoi(vcpu, data, sizeof(u8)))
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003444 return 1;
3445 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003446
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003447 case MSR_KVM_POLL_CONTROL:
Oliver Upton66570e92020-08-18 15:24:28 +00003448 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3449 return 1;
3450
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003451 /* only enable bit supported */
3452 if (data & (-1ULL << 1))
3453 return 1;
3454
3455 vcpu->arch.msr_kvm_poll_control = data;
3456 break;
3457
Huang Ying890ca9a2009-05-11 16:48:15 +08003458 case MSR_IA32_MCG_CTL:
3459 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003460 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003461 return set_msr_mce(vcpu, msr_info);
Andre Przywara71db6022009-06-12 22:01:29 +02003462
Wei Huang6912ac32015-06-12 01:34:56 -04003463 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3464 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003465 pr = true;
3466 fallthrough;
Wei Huang6912ac32015-06-12 01:34:56 -04003467 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3468 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003469 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003470 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02003471
3472 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03003473 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
3474 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02003475 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003476 case MSR_K7_CLK_CTL:
3477 /*
3478 * Ignore all writes to this no longer documented MSR.
3479 * Writes are only relevant for old K7 processors,
3480 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08003481 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003482 * affected processor models on the command line, hence
3483 * the need to ignore the workaround.
3484 */
3485 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003486 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003487 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3488 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003489 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3490 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003491 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003492 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3493 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3494 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003495 return kvm_hv_set_msr_common(vcpu, msr, data,
3496 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003497 case MSR_IA32_BBL_CR_CTL3:
3498 /* Drop writes to this legacy MSR -- see rdmsr
3499 * counterpart for further detail.
3500 */
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02003501 if (report_ignored_msrs)
3502 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
3503 msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05003504 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003505 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003506 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003507 return 1;
3508 vcpu->arch.osvw.length = data;
3509 break;
3510 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003511 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003512 return 1;
3513 vcpu->arch.osvw.status = data;
3514 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003515 case MSR_PLATFORM_INFO:
3516 if (!msr_info->host_initiated ||
Kyle Hueydb2336a2017-03-20 01:16:28 -07003517 (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) &&
3518 cpuid_fault_enabled(vcpu)))
3519 return 1;
3520 vcpu->arch.msr_platform_info = data;
3521 break;
3522 case MSR_MISC_FEATURES_ENABLES:
3523 if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT ||
3524 (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT &&
3525 !supports_cpuid_fault(vcpu)))
3526 return 1;
3527 vcpu->arch.msr_misc_features_enables = data;
3528 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003529 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003530 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003531 return kvm_pmu_set_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003532 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003533 }
3534 return 0;
3535}
3536EXPORT_SYMBOL_GPL(kvm_set_msr_common);
3537
Paolo Bonzini44883f02018-07-26 13:01:52 +02003538static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003539{
3540 u64 data;
3541 u64 mcg_cap = vcpu->arch.mcg_cap;
3542 unsigned bank_num = mcg_cap & 0xff;
3543
3544 switch (msr) {
3545 case MSR_IA32_P5_MC_ADDR:
3546 case MSR_IA32_P5_MC_TYPE:
3547 data = 0;
3548 break;
3549 case MSR_IA32_MCG_CAP:
3550 data = vcpu->arch.mcg_cap;
3551 break;
3552 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003553 if (!(mcg_cap & MCG_CTL_P) && !host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003554 return 1;
3555 data = vcpu->arch.mcg_ctl;
3556 break;
3557 case MSR_IA32_MCG_STATUS:
3558 data = vcpu->arch.mcg_status;
3559 break;
3560 default:
3561 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003562 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003563 u32 offset = array_index_nospec(
3564 msr - MSR_IA32_MC0_CTL,
3565 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3566
Huang Ying890ca9a2009-05-11 16:48:15 +08003567 data = vcpu->arch.mce_banks[offset];
3568 break;
3569 }
3570 return 1;
3571 }
3572 *pdata = data;
3573 return 0;
3574}
3575
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003576int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003577{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003578 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01003579 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01003580 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02003581 case MSR_IA32_LASTBRANCHFROMIP:
3582 case MSR_IA32_LASTBRANCHTOIP:
3583 case MSR_IA32_LASTINTFROMIP:
3584 case MSR_IA32_LASTINTTOIP:
Brijesh Singh059e5c32021-04-27 06:16:36 -05003585 case MSR_AMD64_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02003586 case MSR_K8_TSEG_ADDR:
3587 case MSR_K8_TSEG_MASK:
Avi Kivity61a6bd62008-12-29 17:32:28 +02003588 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02003589 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02003590 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003591 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003592 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03003593 case MSR_IA32_PERF_CTL:
Ladi Prosek405a3532017-04-06 15:22:20 +02003594 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003595 case MSR_F15H_EX_CFG:
Venkatesh Srinivas2ca1a062020-04-16 11:42:54 -07003596 /*
3597 * Intel Sandy Bridge CPUs must support the RAPL (running average power
3598 * limit) MSRs. Just return 0, as we do not want to expose the host
3599 * data here. Do not conditionalize this on CPUID, as KVM does not do
3600 * so for existing CPU-specific MSRs.
3601 */
3602 case MSR_RAPL_POWER_UNIT:
3603 case MSR_PP0_ENERGY_STATUS: /* Power plane 0 (core) */
3604 case MSR_PP1_ENERGY_STATUS: /* Power plane 1 (graphics uncore) */
3605 case MSR_PKG_ENERGY_STATUS: /* Total package */
3606 case MSR_DRAM_ENERGY_STATUS: /* DRAM controller */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003607 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01003608 break;
Janakarajan Natarajanc51eb522018-02-05 13:24:52 -06003609 case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5:
Vitaly Kuznetsovc28fa562021-03-29 14:48:04 +02003610 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
3611 return kvm_pmu_get_msr(vcpu, msr_info);
3612 if (!msr_info->host_initiated)
3613 return 1;
3614 msr_info->data = 0;
3615 break;
Wei Huang6912ac32015-06-12 01:34:56 -04003616 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3617 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3618 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
3619 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003620 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003621 return kvm_pmu_get_msr(vcpu, msr_info);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003622 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02003623 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003624 case MSR_IA32_UCODE_REV:
Wanpeng Li518e7b92018-02-28 14:03:31 +08003625 msr_info->data = vcpu->arch.microcode_version;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003626 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003627 case MSR_IA32_ARCH_CAPABILITIES:
3628 if (!msr_info->host_initiated &&
3629 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3630 return 1;
3631 msr_info->data = vcpu->arch.arch_capabilities;
3632 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003633 case MSR_IA32_PERF_CAPABILITIES:
3634 if (!msr_info->host_initiated &&
3635 !guest_cpuid_has(vcpu, X86_FEATURE_PDCM))
3636 return 1;
3637 msr_info->data = vcpu->arch.perf_capabilities;
3638 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003639 case MSR_IA32_POWER_CTL:
3640 msr_info->data = vcpu->arch.msr_ia32_power_ctl;
3641 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003642 case MSR_IA32_TSC: {
3643 /*
3644 * Intel SDM states that MSR_IA32_TSC read adds the TSC offset
3645 * even when not intercepted. AMD manual doesn't explicitly
3646 * state this but appears to behave the same.
3647 *
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003648 * On userspace reads and writes, however, we unconditionally
Paolo Bonzinic0623f52020-10-21 18:05:58 -04003649 * return L1's TSC value to ensure backwards-compatible
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003650 * behavior for migration.
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003651 */
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003652 u64 offset, ratio;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003653
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003654 if (msr_info->host_initiated) {
3655 offset = vcpu->arch.l1_tsc_offset;
3656 ratio = vcpu->arch.l1_tsc_scaling_ratio;
3657 } else {
3658 offset = vcpu->arch.tsc_offset;
3659 ratio = vcpu->arch.tsc_scaling_ratio;
3660 }
3661
3662 msr_info->data = kvm_scale_tsc(vcpu, rdtsc(), ratio) + offset;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003663 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003664 }
Avi Kivity9ba075a2008-05-26 20:06:35 +03003665 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03003666 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003667 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003668 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003669 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01003670 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02003671 /*
3672 * MSR_EBC_FREQUENCY_ID
3673 * Conservative value valid for even the basic CPU models.
3674 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
3675 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
3676 * and 266MHz for model 3, or 4. Set Core Clock
3677 * Frequency to System Bus Frequency Ratio to 1 (bits
3678 * 31:24) even though these are only valid for CPU
3679 * models > 2, however guests may end up dividing or
3680 * multiplying by zero otherwise.
3681 */
3682 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003683 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02003684 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003685 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003686 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01003687 break;
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003688 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003689 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003690 case MSR_IA32_TSC_DEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003691 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003692 break;
Will Auldba904632012-11-29 12:42:50 -08003693 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003694 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08003695 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003696 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003697 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01003698 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003699 case MSR_IA32_SMBASE:
3700 if (!msr_info->host_initiated)
3701 return 1;
3702 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01003703 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003704 case MSR_SMI_COUNT:
3705 msr_info->data = vcpu->arch.smi_count;
3706 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003707 case MSR_IA32_PERF_STATUS:
3708 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003709 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003710 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08003711 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01003712 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003713 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003714 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01003715 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003716 case MSR_KVM_WALL_CLOCK:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003717 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3718 return 1;
3719
3720 msr_info->data = vcpu->kvm->arch.wall_clock;
3721 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003722 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003723 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3724 return 1;
3725
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003726 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003727 break;
3728 case MSR_KVM_SYSTEM_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003729 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3730 return 1;
3731
3732 msr_info->data = vcpu->arch.time;
3733 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003734 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003735 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3736 return 1;
3737
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003738 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003739 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003740 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003741 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3742 return 1;
3743
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003744 msr_info->data = vcpu->arch.apf.msr_en_val;
3745 break;
3746 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003747 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3748 return 1;
3749
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003750 msr_info->data = vcpu->arch.apf.msr_int_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02003751 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003752 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003753 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton1930e5d2020-10-27 16:10:41 -07003754 return 1;
3755
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003756 msr_info->data = 0;
3757 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003758 case MSR_KVM_STEAL_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003759 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3760 return 1;
3761
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003762 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04003763 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003764 case MSR_KVM_PV_EOI_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003765 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3766 return 1;
3767
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003768 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003769 break;
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003770 case MSR_KVM_POLL_CONTROL:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003771 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3772 return 1;
3773
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003774 msr_info->data = vcpu->arch.msr_kvm_poll_control;
3775 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003776 case MSR_IA32_P5_MC_ADDR:
3777 case MSR_IA32_P5_MC_TYPE:
3778 case MSR_IA32_MCG_CAP:
3779 case MSR_IA32_MCG_CTL:
3780 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003781 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003782 return get_msr_mce(vcpu, msr_info->index, &msr_info->data,
3783 msr_info->host_initiated);
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003784 case MSR_IA32_XSS:
3785 if (!msr_info->host_initiated &&
3786 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3787 return 1;
3788 msr_info->data = vcpu->arch.ia32_xss;
3789 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003790 case MSR_K7_CLK_CTL:
3791 /*
3792 * Provide expected ramp-up count for K7. All other
3793 * are set to zero, indicating minimum divisors for
3794 * every field.
3795 *
3796 * This prevents guest kernels on AMD host with CPU
3797 * type 6, model 8 and higher from exploding due to
3798 * the rdmsr failing.
3799 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003800 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003801 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003802 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003803 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3804 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003805 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3806 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003807 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003808 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3809 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3810 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine83d5882015-07-03 15:01:34 +03003811 return kvm_hv_get_msr_common(vcpu,
Paolo Bonzini44883f02018-07-26 13:01:52 +02003812 msr_info->index, &msr_info->data,
3813 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003814 case MSR_IA32_BBL_CR_CTL3:
3815 /* This legacy MSR exists but isn't fully documented in current
3816 * silicon. It is however accessed by winxp in very narrow
3817 * scenarios where it sets bit #19, itself documented as
3818 * a "reserved" bit. Best effort attempt to source coherent
3819 * read data here should the balance of the register be
3820 * interpreted by the guest:
3821 *
3822 * L2 cache control register 3: 64GB range, 256KB size,
3823 * enabled, latency 0x1, configured
3824 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003825 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05003826 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003827 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003828 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003829 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003830 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003831 break;
3832 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003833 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003834 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003835 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003836 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003837 case MSR_PLATFORM_INFO:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07003838 if (!msr_info->host_initiated &&
3839 !vcpu->kvm->arch.guest_can_read_msr_platform_info)
3840 return 1;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003841 msr_info->data = vcpu->arch.msr_platform_info;
3842 break;
3843 case MSR_MISC_FEATURES_ENABLES:
3844 msr_info->data = vcpu->arch.msr_misc_features_enables;
3845 break;
Borislav Petkov191c8132019-04-18 18:32:50 +02003846 case MSR_K7_HWCR:
3847 msr_info->data = vcpu->arch.msr_hwcr;
3848 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003849 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003850 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003851 return kvm_pmu_get_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003852 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003853 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003854 return 0;
3855}
3856EXPORT_SYMBOL_GPL(kvm_get_msr_common);
3857
Carsten Otte313a3dc2007-10-11 19:16:52 +02003858/*
3859 * Read or write a bunch of msrs. All parameters are kernel addresses.
3860 *
3861 * @return number of msrs set successfully.
3862 */
3863static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
3864 struct kvm_msr_entry *entries,
3865 int (*do_msr)(struct kvm_vcpu *vcpu,
3866 unsigned index, u64 *data))
3867{
Tom Lendacky801e4592018-02-21 13:39:51 -06003868 int i;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003869
Carsten Otte313a3dc2007-10-11 19:16:52 +02003870 for (i = 0; i < msrs->nmsrs; ++i)
3871 if (do_msr(vcpu, entries[i].index, &entries[i].data))
3872 break;
3873
Carsten Otte313a3dc2007-10-11 19:16:52 +02003874 return i;
3875}
3876
3877/*
3878 * Read or write a bunch of msrs. Parameters are user addresses.
3879 *
3880 * @return number of msrs set successfully.
3881 */
3882static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
3883 int (*do_msr)(struct kvm_vcpu *vcpu,
3884 unsigned index, u64 *data),
3885 int writeback)
3886{
3887 struct kvm_msrs msrs;
3888 struct kvm_msr_entry *entries;
3889 int r, n;
3890 unsigned size;
3891
3892 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003893 if (copy_from_user(&msrs, user_msrs, sizeof(msrs)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003894 goto out;
3895
3896 r = -E2BIG;
3897 if (msrs.nmsrs >= MAX_IO_MSRS)
3898 goto out;
3899
Carsten Otte313a3dc2007-10-11 19:16:52 +02003900 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003901 entries = memdup_user(user_msrs->entries, size);
3902 if (IS_ERR(entries)) {
3903 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003904 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003905 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003906
3907 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
3908 if (r < 0)
3909 goto out_free;
3910
3911 r = -EFAULT;
3912 if (writeback && copy_to_user(user_msrs->entries, entries, size))
3913 goto out_free;
3914
3915 r = n;
3916
3917out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03003918 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003919out:
3920 return r;
3921}
3922
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003923static inline bool kvm_can_mwait_in_guest(void)
3924{
3925 return boot_cpu_has(X86_FEATURE_MWAIT) &&
KarimAllah Ahmed8e9b29b2018-04-11 11:16:03 +02003926 !boot_cpu_has_bug(X86_BUG_MONITOR) &&
3927 boot_cpu_has(X86_FEATURE_ARAT);
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003928}
3929
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02003930static int kvm_ioctl_get_supported_hv_cpuid(struct kvm_vcpu *vcpu,
3931 struct kvm_cpuid2 __user *cpuid_arg)
3932{
3933 struct kvm_cpuid2 cpuid;
3934 int r;
3935
3936 r = -EFAULT;
3937 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
3938 return r;
3939
3940 r = kvm_get_hv_cpuid(vcpu, &cpuid, cpuid_arg->entries);
3941 if (r)
3942 return r;
3943
3944 r = -EFAULT;
3945 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
3946 return r;
3947
3948 return 0;
3949}
3950
Alexander Graf784aa3d2014-07-14 18:27:35 +02003951int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003952{
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003953 int r = 0;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003954
3955 switch (ext) {
3956 case KVM_CAP_IRQCHIP:
3957 case KVM_CAP_HLT:
3958 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003959 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02003960 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02003961 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01003962 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08003963 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05003964 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03003965 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03003966 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08003967 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003968 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02003969 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003970 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03003971 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003972 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04003973 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08003974 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003975 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003976 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02003977 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02003978 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003979 case KVM_CAP_HYPERV_SYNIC:
Roman Kaganefc479e2017-06-22 16:51:01 +03003980 case KVM_CAP_HYPERV_SYNIC2:
Roman Kagand3457c82017-07-14 17:13:20 +03003981 case KVM_CAP_HYPERV_VP_INDEX:
Roman Kaganfaeb7832018-02-01 16:48:32 +03003982 case KVM_CAP_HYPERV_EVENTFD:
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02003983 case KVM_CAP_HYPERV_TLBFLUSH:
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02003984 case KVM_CAP_HYPERV_SEND_IPI:
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01003985 case KVM_CAP_HYPERV_CPUID:
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02003986 case KVM_CAP_HYPERV_ENFORCE_CPUID:
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02003987 case KVM_CAP_SYS_HYPERV_CPUID:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08003988 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003989 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01003990 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003991 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02003992 case KVM_CAP_ASYNC_PF:
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +02003993 case KVM_CAP_ASYNC_PF_INT:
Joerg Roedel92a1f122011-03-25 09:44:51 +01003994 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003995 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08003996 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01003997 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05003998 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01003999 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03004000 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004001 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07004002 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004003 case KVM_CAP_IMMEDIATE_EXIT:
Eric Hankland66bb8a02019-07-10 18:25:15 -07004004 case KVM_CAP_PMU_EVENT_FILTER:
Tom Lendacky801e4592018-02-21 13:39:51 -06004005 case KVM_CAP_GET_MSR_FEATURES:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07004006 case KVM_CAP_MSR_PLATFORM_INFO:
Jim Mattsonc4f55192018-10-16 14:29:24 -07004007 case KVM_CAP_EXCEPTION_PAYLOAD:
Peter Xub9b27822020-05-05 11:47:50 -04004008 case KVM_CAP_SET_GUEST_DEBUG:
Jim Mattson1aa561b2020-06-03 16:56:21 -07004009 case KVM_CAP_LAST_CPU:
Alexander Graf1ae09952020-09-25 16:34:16 +02004010 case KVM_CAP_X86_USER_SPACE_MSR:
Alexander Graf1a1552542020-09-25 16:34:21 +02004011 case KVM_CAP_X86_MSR_FILTER:
Oliver Upton66570e92020-08-18 15:24:28 +00004012 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
Sean Christophersonfe7e9482021-04-12 16:21:43 +12004013#ifdef CONFIG_X86_SGX_KVM
4014 case KVM_CAP_SGX_ATTRIBUTE:
4015#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00004016 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
Maxim Levitsky6dba9402021-06-07 12:02:02 +03004017 case KVM_CAP_SREGS2:
Aaron Lewis19238e72021-05-10 07:48:33 -07004018 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004019 r = 1;
4020 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00004021 case KVM_CAP_EXIT_HYPERCALL:
4022 r = KVM_EXIT_HYPERCALL_VALID_MASK;
4023 break;
Maxim Levitsky7e582cc2021-04-01 16:54:45 +03004024 case KVM_CAP_SET_GUEST_DEBUG2:
4025 return KVM_GUESTDBG_VALID_MASK;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004026#ifdef CONFIG_KVM_XEN
Joao Martins23200b72018-06-13 09:55:44 -04004027 case KVM_CAP_XEN_HVM:
4028 r = KVM_XEN_HVM_CONFIG_HYPERCALL_MSR |
David Woodhouse8d4e7e82020-12-04 01:02:04 +00004029 KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL |
4030 KVM_XEN_HVM_CONFIG_SHARED_INFO;
David Woodhouse30b5c852021-03-01 12:53:09 +00004031 if (sched_info_on())
4032 r |= KVM_XEN_HVM_CONFIG_RUNSTATE;
Joao Martins23200b72018-06-13 09:55:44 -04004033 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004034#endif
Ken Hofsass01643c52018-01-31 16:03:36 -08004035 case KVM_CAP_SYNC_REGS:
4036 r = KVM_SYNC_X86_VALID_FIELDS;
4037 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004038 case KVM_CAP_ADJUST_CLOCK:
4039 r = KVM_CLOCK_TSC_STABLE;
4040 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004041 case KVM_CAP_X86_DISABLE_EXITS:
Wanpeng Lib5170062019-05-21 14:06:53 +08004042 r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE |
4043 KVM_X86_DISABLE_EXITS_CSTATE;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004044 if(kvm_can_mwait_in_guest())
4045 r |= KVM_X86_DISABLE_EXITS_MWAIT;
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02004046 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004047 case KVM_CAP_X86_SMM:
4048 /* SMBASE is usually relocated above 1M on modern chipsets,
4049 * and SMM handlers might indeed rely on 4G segment limits,
4050 * so do not report SMM to be available if real mode is
4051 * emulated via vm86 mode. Still, do not go to great lengths
4052 * to avoid userspace's usage of the feature, because it is a
4053 * fringe case that is not enabled except via specific settings
4054 * of the module parameters.
4055 */
Jason Baronb36464772021-01-14 22:27:56 -05004056 r = static_call(kvm_x86_has_emulated_msr)(kvm, MSR_IA32_SMBASE);
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004057 break;
Avi Kivity774ead32007-12-26 13:57:04 +02004058 case KVM_CAP_VAPIC:
Jason Baronb36464772021-01-14 22:27:56 -05004059 r = !static_call(kvm_x86_cpu_has_accelerated_tpr)();
Avi Kivity774ead32007-12-26 13:57:04 +02004060 break;
Avi Kivityf7252302008-02-20 11:53:16 +02004061 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03004062 r = KVM_SOFT_MAX_VCPUS;
4063 break;
4064 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02004065 r = KVM_MAX_VCPUS;
4066 break;
Thomas Hutha86cb412019-05-23 18:43:08 +02004067 case KVM_CAP_MAX_VCPU_ID:
Juergen Grossa1c42dd2021-09-13 15:57:44 +02004068 r = KVM_MAX_VCPU_IDS;
Thomas Hutha86cb412019-05-23 18:43:08 +02004069 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03004070 case KVM_CAP_PV_MMU: /* obsolete */
4071 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05004072 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08004073 case KVM_CAP_MCE:
4074 r = KVM_MAX_MCE_BANKS;
4075 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004076 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02004077 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004078 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004079 case KVM_CAP_TSC_CONTROL:
4080 r = kvm_has_tsc_control;
4081 break;
Radim Krčmář371313132016-07-12 22:09:27 +02004082 case KVM_CAP_X2APIC_API:
4083 r = KVM_X2APIC_API_VALID_FLAGS;
4084 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004085 case KVM_CAP_NESTED_STATE:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004086 r = kvm_x86_ops.nested_ops->get_state ?
4087 kvm_x86_ops.nested_ops->get_state(NULL, NULL, 0) : 0;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004088 break;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004089 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004090 r = kvm_x86_ops.enable_direct_tlbflush != NULL;
Vitaly Kuznetsov5a0165f2019-08-28 09:59:05 +02004091 break;
4092 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004093 r = kvm_x86_ops.nested_ops->enable_evmcs != NULL;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004094 break;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02004095 case KVM_CAP_SMALLER_MAXPHYADDR:
4096 r = (int) allow_smaller_maxphyaddr;
4097 break;
Andrew Jones004a0122020-08-04 19:06:04 +02004098 case KVM_CAP_STEAL_TIME:
4099 r = sched_info_on();
4100 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004101 case KVM_CAP_X86_BUS_LOCK_EXIT:
4102 if (kvm_has_bus_lock_exit)
4103 r = KVM_BUS_LOCK_DETECTION_OFF |
4104 KVM_BUS_LOCK_DETECTION_EXIT;
4105 else
4106 r = 0;
4107 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004108 default:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004109 break;
4110 }
4111 return r;
4112
4113}
4114
Carsten Otte043405e2007-10-10 17:16:19 +02004115long kvm_arch_dev_ioctl(struct file *filp,
4116 unsigned int ioctl, unsigned long arg)
4117{
4118 void __user *argp = (void __user *)arg;
4119 long r;
4120
4121 switch (ioctl) {
4122 case KVM_GET_MSR_INDEX_LIST: {
4123 struct kvm_msr_list __user *user_msr_list = argp;
4124 struct kvm_msr_list msr_list;
4125 unsigned n;
4126
4127 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004128 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004129 goto out;
4130 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004131 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004132 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004133 goto out;
4134 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004135 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02004136 goto out;
4137 r = -EFAULT;
4138 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
4139 num_msrs_to_save * sizeof(u32)))
4140 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004141 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02004142 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004143 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02004144 goto out;
4145 r = 0;
4146 break;
4147 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004148 case KVM_GET_SUPPORTED_CPUID:
4149 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02004150 struct kvm_cpuid2 __user *cpuid_arg = argp;
4151 struct kvm_cpuid2 cpuid;
4152
4153 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004154 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004155 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004156
4157 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
4158 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02004159 if (r)
4160 goto out;
4161
4162 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004163 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004164 goto out;
4165 r = 0;
4166 break;
4167 }
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004168 case KVM_X86_GET_MCE_CAP_SUPPORTED:
Huang Ying890ca9a2009-05-11 16:48:15 +08004169 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004170 if (copy_to_user(argp, &kvm_mce_cap_supported,
4171 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004172 goto out;
4173 r = 0;
4174 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004175 case KVM_GET_MSR_FEATURE_INDEX_LIST: {
4176 struct kvm_msr_list __user *user_msr_list = argp;
4177 struct kvm_msr_list msr_list;
4178 unsigned int n;
4179
4180 r = -EFAULT;
4181 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
4182 goto out;
4183 n = msr_list.nmsrs;
4184 msr_list.nmsrs = num_msr_based_features;
4185 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
4186 goto out;
4187 r = -E2BIG;
4188 if (n < msr_list.nmsrs)
4189 goto out;
4190 r = -EFAULT;
4191 if (copy_to_user(user_msr_list->indices, &msr_based_features,
4192 num_msr_based_features * sizeof(u32)))
4193 goto out;
4194 r = 0;
4195 break;
4196 }
4197 case KVM_GET_MSRS:
4198 r = msr_io(NULL, argp, do_get_msr_feature, 1);
4199 break;
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004200 case KVM_GET_SUPPORTED_HV_CPUID:
4201 r = kvm_ioctl_get_supported_hv_cpuid(NULL, argp);
4202 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004203 default:
4204 r = -EINVAL;
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004205 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004206 }
4207out:
4208 return r;
4209}
4210
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004211static void wbinvd_ipi(void *garbage)
4212{
4213 wbinvd();
4214}
4215
4216static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
4217{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06004218 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004219}
4220
Carsten Otte313a3dc2007-10-11 19:16:52 +02004221void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
4222{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004223 /* Address WBINVD may be executed by guest */
4224 if (need_emulate_wbinvd(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05004225 if (static_call(kvm_x86_has_wbinvd_exit)())
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004226 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
4227 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
4228 smp_call_function_single(vcpu->cpu,
4229 wbinvd_ipi, NULL, 1);
4230 }
4231
Jason Baronb36464772021-01-14 22:27:56 -05004232 static_call(kvm_x86_vcpu_load)(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004233
Babu Moger37486132020-05-12 18:59:06 -05004234 /* Save host pkru register if supported */
4235 vcpu->arch.host_pkru = read_pkru();
4236
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004237 /* Apply any externally detected TSC adjustments (due to suspend) */
4238 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
4239 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
4240 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08004241 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004242 }
4243
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004244 if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02004245 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004246 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10004247 if (tsc_delta < 0)
4248 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07004249
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004250 if (kvm_check_tsc_unstable()) {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01004251 u64 offset = kvm_compute_l1_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02004252 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04004253 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004254 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10004255 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02004256
4257 if (kvm_lapic_hv_timer_in_use(vcpu))
4258 kvm_lapic_restart_hv_timer(vcpu);
4259
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02004260 /*
4261 * On a host with synchronized TSC, there is no need to update
4262 * kvmclock on vcpu->cpu migration
4263 */
4264 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03004265 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004266 if (vcpu->cpu != cpu)
Radim Krčmář1bd20092017-04-26 22:32:20 +02004267 kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10004268 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10004269 }
Glauber Costac9aaa892011-07-11 15:28:14 -04004270
Glauber Costac9aaa892011-07-11 15:28:14 -04004271 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004272}
4273
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004274static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
4275{
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004276 struct kvm_host_map map;
4277 struct kvm_steal_time *st;
4278
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004279 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
4280 return;
4281
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004282 if (vcpu->arch.st.preempted)
Boris Ostrovsky8c6de562019-10-30 19:01:31 +00004283 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004284
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004285 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT, &map,
4286 &vcpu->arch.st.cache, true))
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004287 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004288
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004289 st = map.hva +
4290 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
4291
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004292 st->preempted = vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004293
4294 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, true);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004295}
4296
Carsten Otte313a3dc2007-10-11 19:16:52 +02004297void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
4298{
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004299 int idx;
4300
Tom Lendackyf1c63662020-12-14 10:29:50 -05004301 if (vcpu->preempted && !vcpu->arch.guest_state_protected)
Jason Baronb36464772021-01-14 22:27:56 -05004302 vcpu->arch.preempted_in_kernel = !static_call(kvm_x86_get_cpl)(vcpu);
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004303
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004304 /*
4305 * Take the srcu lock as memslots will be accessed to check the gfn
4306 * cache generation against the memslots generation.
4307 */
4308 idx = srcu_read_lock(&vcpu->kvm->srcu);
David Woodhouse30b5c852021-03-01 12:53:09 +00004309 if (kvm_xen_msr_enabled(vcpu->kvm))
4310 kvm_xen_runstate_set_preempted(vcpu);
4311 else
4312 kvm_steal_time_set_preempted(vcpu);
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004313 srcu_read_unlock(&vcpu->kvm->srcu, idx);
David Woodhouse30b5c852021-03-01 12:53:09 +00004314
Jason Baronb36464772021-01-14 22:27:56 -05004315 static_call(kvm_x86_vcpu_put)(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004316 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02004317}
4318
Carsten Otte313a3dc2007-10-11 19:16:52 +02004319static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
4320 struct kvm_lapic_state *s)
4321{
Liran Alonfa59cc02017-12-24 18:12:53 +02004322 if (vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05004323 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004324
Radim Krčmářa92e2542016-07-12 22:09:22 +02004325 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004326}
4327
4328static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
4329 struct kvm_lapic_state *s)
4330{
Radim Krčmářa92e2542016-07-12 22:09:22 +02004331 int r;
4332
4333 r = kvm_apic_set_state(vcpu, s);
4334 if (r)
4335 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03004336 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004337
4338 return 0;
4339}
4340
Matt Gingell127a4572015-11-17 17:32:05 +01004341static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
4342{
Paolo Bonzini71cc8492020-11-27 09:18:20 +01004343 /*
4344 * We can accept userspace's request for interrupt injection
4345 * as long as we have a place to store the interrupt number.
4346 * The actual injection will happen when the CPU is able to
4347 * deliver the interrupt.
4348 */
4349 if (kvm_cpu_has_extint(vcpu))
4350 return false;
4351
4352 /* Acknowledging ExtINT does not happen if LINT0 is masked. */
Matt Gingell127a4572015-11-17 17:32:05 +01004353 return (!lapic_in_kernel(vcpu) ||
4354 kvm_apic_accept_pic_intr(vcpu));
4355}
4356
Matt Gingell782d4222015-11-16 15:26:00 -08004357static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
4358{
Paolo Bonzinifa7a5492021-07-14 17:37:49 -04004359 /*
4360 * Do not cause an interrupt window exit if an exception
4361 * is pending or an event needs reinjection; userspace
4362 * might want to inject the interrupt manually using KVM_SET_REGS
4363 * or KVM_SET_SREGS. For that to work, we must be at an
4364 * instruction boundary and with no events half-injected.
4365 */
4366 return (kvm_arch_interrupt_allowed(vcpu) &&
4367 kvm_cpu_accept_dm_intr(vcpu) &&
4368 !kvm_event_needs_reinjection(vcpu) &&
4369 !vcpu->arch.exception.pending);
Matt Gingell782d4222015-11-16 15:26:00 -08004370}
4371
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004372static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
4373 struct kvm_interrupt *irq)
4374{
Chen Gang02cdb502013-02-27 11:33:25 +08004375 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004376 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004377
4378 if (!irqchip_in_kernel(vcpu->kvm)) {
4379 kvm_queue_interrupt(vcpu, irq->irq, false);
4380 kvm_make_request(KVM_REQ_EVENT, vcpu);
4381 return 0;
4382 }
4383
4384 /*
4385 * With in-kernel LAPIC, we only use this to inject EXTINT, so
4386 * fail for in-kernel 8259.
4387 */
4388 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004389 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004390
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004391 if (vcpu->arch.pending_external_vector != -1)
4392 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004393
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004394 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08004395 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004396 return 0;
4397}
4398
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004399static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
4400{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004401 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004402
4403 return 0;
4404}
4405
Paolo Bonzinif0778252015-04-01 15:06:40 +02004406static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
4407{
Paolo Bonzini64d60672015-05-07 11:36:11 +02004408 kvm_make_request(KVM_REQ_SMI, vcpu);
4409
Paolo Bonzinif0778252015-04-01 15:06:40 +02004410 return 0;
4411}
4412
Avi Kivityb209749f2007-10-22 16:50:39 +02004413static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
4414 struct kvm_tpr_access_ctl *tac)
4415{
4416 if (tac->flags)
4417 return -EINVAL;
4418 vcpu->arch.tpr_access_reporting = !!tac->enabled;
4419 return 0;
4420}
4421
Huang Ying890ca9a2009-05-11 16:48:15 +08004422static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
4423 u64 mcg_cap)
4424{
4425 int r;
4426 unsigned bank_num = mcg_cap & 0xff, bank;
4427
4428 r = -EINVAL;
Jim Mattsonc4e0e4ab2020-05-11 15:56:16 -07004429 if (!bank_num || bank_num > KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08004430 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004431 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08004432 goto out;
4433 r = 0;
4434 vcpu->arch.mcg_cap = mcg_cap;
4435 /* Init IA32_MCG_CTL to all 1s */
4436 if (mcg_cap & MCG_CTL_P)
4437 vcpu->arch.mcg_ctl = ~(u64)0;
4438 /* Init IA32_MCi_CTL to all 1s */
4439 for (bank = 0; bank < bank_num; bank++)
4440 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004441
Jason Baronb36464772021-01-14 22:27:56 -05004442 static_call(kvm_x86_setup_mce)(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004443out:
4444 return r;
4445}
4446
4447static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
4448 struct kvm_x86_mce *mce)
4449{
4450 u64 mcg_cap = vcpu->arch.mcg_cap;
4451 unsigned bank_num = mcg_cap & 0xff;
4452 u64 *banks = vcpu->arch.mce_banks;
4453
4454 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
4455 return -EINVAL;
4456 /*
4457 * if IA32_MCG_CTL is not all 1s, the uncorrected error
4458 * reporting is disabled
4459 */
4460 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
4461 vcpu->arch.mcg_ctl != ~(u64)0)
4462 return 0;
4463 banks += 4 * mce->bank;
4464 /*
4465 * if IA32_MCi_CTL is not all 1s, the uncorrected error
4466 * reporting is disabled for the bank
4467 */
4468 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
4469 return 0;
4470 if (mce->status & MCI_STATUS_UC) {
4471 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02004472 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03004473 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004474 return 0;
4475 }
4476 if (banks[1] & MCI_STATUS_VAL)
4477 mce->status |= MCI_STATUS_OVER;
4478 banks[2] = mce->addr;
4479 banks[3] = mce->misc;
4480 vcpu->arch.mcg_status = mce->mcg_status;
4481 banks[1] = mce->status;
4482 kvm_queue_exception(vcpu, MC_VECTOR);
4483 } else if (!(banks[1] & MCI_STATUS_VAL)
4484 || !(banks[1] & MCI_STATUS_UC)) {
4485 if (banks[1] & MCI_STATUS_VAL)
4486 mce->status |= MCI_STATUS_OVER;
4487 banks[2] = mce->addr;
4488 banks[3] = mce->misc;
4489 banks[1] = mce->status;
4490 } else
4491 banks[1] |= MCI_STATUS_OVER;
4492 return 0;
4493}
4494
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004495static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
4496 struct kvm_vcpu_events *events)
4497{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004498 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004499
Jay Zhou1f7becf2021-01-18 16:47:20 +08004500 if (kvm_check_request(KVM_REQ_SMI, vcpu))
4501 process_smi(vcpu);
4502
Wanpeng Li664f8e22017-08-24 03:35:09 -07004503 /*
Oliver Uptona06230b2020-02-07 02:36:06 -08004504 * In guest mode, payload delivery should be deferred,
4505 * so that the L1 hypervisor can intercept #PF before
4506 * CR2 is modified (or intercept #DB before DR6 is
4507 * modified under nVMX). Unless the per-VM capability,
4508 * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of
4509 * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we
4510 * opportunistically defer the exception payload, deliver it if the
4511 * capability hasn't been requested before processing a
4512 * KVM_GET_VCPU_EVENTS.
4513 */
4514 if (!vcpu->kvm->arch.exception_payload_enabled &&
4515 vcpu->arch.exception.pending && vcpu->arch.exception.has_payload)
4516 kvm_deliver_exception_payload(vcpu);
4517
4518 /*
Jim Mattson59073aa2018-10-16 14:29:20 -07004519 * The API doesn't provide the instruction length for software
4520 * exceptions, so don't report them. As long as the guest RIP
4521 * isn't advanced, we should expect to encounter the exception
4522 * again.
Wanpeng Li664f8e22017-08-24 03:35:09 -07004523 */
Jim Mattson59073aa2018-10-16 14:29:20 -07004524 if (kvm_exception_is_soft(vcpu->arch.exception.nr)) {
4525 events->exception.injected = 0;
4526 events->exception.pending = 0;
4527 } else {
4528 events->exception.injected = vcpu->arch.exception.injected;
4529 events->exception.pending = vcpu->arch.exception.pending;
4530 /*
4531 * For ABI compatibility, deliberately conflate
4532 * pending and injected exceptions when
4533 * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled.
4534 */
4535 if (!vcpu->kvm->arch.exception_payload_enabled)
4536 events->exception.injected |=
4537 vcpu->arch.exception.pending;
4538 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004539 events->exception.nr = vcpu->arch.exception.nr;
4540 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
4541 events->exception.error_code = vcpu->arch.exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004542 events->exception_has_payload = vcpu->arch.exception.has_payload;
4543 events->exception_payload = vcpu->arch.exception.payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004544
Jan Kiszka03b82a32010-02-15 10:45:41 +01004545 events->interrupt.injected =
Liran Alon04140b42018-03-23 03:01:31 +03004546 vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004547 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01004548 events->interrupt.soft = 0;
Jason Baronb36464772021-01-14 22:27:56 -05004549 events->interrupt.shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004550
4551 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004552 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jason Baronb36464772021-01-14 22:27:56 -05004553 events->nmi.masked = static_call(kvm_x86_get_nmi_mask)(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004554 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004555
Jan Kiszka66450a22013-03-13 12:42:34 +01004556 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004557
Paolo Bonzinif0778252015-04-01 15:06:40 +02004558 events->smi.smm = is_smm(vcpu);
4559 events->smi.pending = vcpu->arch.smi_pending;
4560 events->smi.smm_inside_nmi =
4561 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
4562 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
4563
Jan Kiszkadab4b912009-12-06 18:24:15 +01004564 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02004565 | KVM_VCPUEVENT_VALID_SHADOW
4566 | KVM_VCPUEVENT_VALID_SMM);
Jim Mattson59073aa2018-10-16 14:29:20 -07004567 if (vcpu->kvm->arch.exception_payload_enabled)
4568 events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD;
4569
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004570 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004571}
4572
Sean Christophersondc872752021-06-09 11:56:15 -07004573static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004574
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004575static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
4576 struct kvm_vcpu_events *events)
4577{
Jan Kiszkadab4b912009-12-06 18:24:15 +01004578 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01004579 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02004580 | KVM_VCPUEVENT_VALID_SHADOW
Jim Mattson59073aa2018-10-16 14:29:20 -07004581 | KVM_VCPUEVENT_VALID_SMM
4582 | KVM_VCPUEVENT_VALID_PAYLOAD))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004583 return -EINVAL;
4584
Jim Mattson59073aa2018-10-16 14:29:20 -07004585 if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) {
4586 if (!vcpu->kvm->arch.exception_payload_enabled)
4587 return -EINVAL;
4588 if (events->exception.pending)
4589 events->exception.injected = 0;
4590 else
4591 events->exception_has_payload = 0;
4592 } else {
4593 events->exception.pending = 0;
4594 events->exception_has_payload = 0;
4595 }
4596
4597 if ((events->exception.injected || events->exception.pending) &&
4598 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02004599 return -EINVAL;
4600
David Hildenbrand28bf2882017-03-23 11:46:03 +01004601 /* INITs are latched while in SMM */
4602 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
4603 (events->smi.smm || events->smi.pending) &&
4604 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
4605 return -EINVAL;
4606
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004607 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004608 vcpu->arch.exception.injected = events->exception.injected;
4609 vcpu->arch.exception.pending = events->exception.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004610 vcpu->arch.exception.nr = events->exception.nr;
4611 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
4612 vcpu->arch.exception.error_code = events->exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004613 vcpu->arch.exception.has_payload = events->exception_has_payload;
4614 vcpu->arch.exception.payload = events->exception_payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004615
Liran Alon04140b42018-03-23 03:01:31 +03004616 vcpu->arch.interrupt.injected = events->interrupt.injected;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004617 vcpu->arch.interrupt.nr = events->interrupt.nr;
4618 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01004619 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
Jason Baronb36464772021-01-14 22:27:56 -05004620 static_call(kvm_x86_set_interrupt_shadow)(vcpu,
4621 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004622
4623 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01004624 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
4625 vcpu->arch.nmi_pending = events->nmi.pending;
Jason Baronb36464772021-01-14 22:27:56 -05004626 static_call(kvm_x86_set_nmi_mask)(vcpu, events->nmi.masked);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004627
Jan Kiszka66450a22013-03-13 12:42:34 +01004628 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004629 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01004630 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004631
Paolo Bonzinif0778252015-04-01 15:06:40 +02004632 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Sean Christophersondc872752021-06-09 11:56:15 -07004633 if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm)
4634 kvm_smm_changed(vcpu, events->smi.smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004635
Paolo Bonzinif0778252015-04-01 15:06:40 +02004636 vcpu->arch.smi_pending = events->smi.pending;
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004637
4638 if (events->smi.smm) {
4639 if (events->smi.smm_inside_nmi)
4640 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02004641 else
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004642 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Liran Alonff90afa2019-11-11 11:16:39 +02004643 }
4644
4645 if (lapic_in_kernel(vcpu)) {
4646 if (events->smi.latched_init)
4647 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
4648 else
4649 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
Paolo Bonzinif0778252015-04-01 15:06:40 +02004650 }
4651 }
4652
Avi Kivity3842d132010-07-27 12:30:24 +03004653 kvm_make_request(KVM_REQ_EVENT, vcpu);
4654
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004655 return 0;
4656}
4657
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004658static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
4659 struct kvm_debugregs *dbgregs)
4660{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004661 unsigned long val;
4662
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004663 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004664 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004665 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004666 dbgregs->dr7 = vcpu->arch.dr7;
4667 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004668 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004669}
4670
4671static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
4672 struct kvm_debugregs *dbgregs)
4673{
4674 if (dbgregs->flags)
4675 return -EINVAL;
4676
Paolo Bonzinifd238002020-11-13 08:31:09 -05004677 if (!kvm_dr6_valid(dbgregs->dr6))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004678 return -EINVAL;
Paolo Bonzinifd238002020-11-13 08:31:09 -05004679 if (!kvm_dr7_valid(dbgregs->dr7))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004680 return -EINVAL;
4681
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004682 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03004683 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004684 vcpu->arch.dr6 = dbgregs->dr6;
4685 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01004686 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004687
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004688 return 0;
4689}
4690
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004691#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
4692
4693static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
4694{
Marc Orrb666a4b2018-11-06 14:53:56 -08004695 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02004696 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004697 u64 valid;
4698
4699 /*
4700 * Copy legacy XSAVE area, to avoid complications with CPUID
4701 * leaves 0 and 1 in the loop below.
4702 */
4703 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
4704
4705 /* Set XSTATE_BV */
Radim Krčmář00c87e92017-02-01 14:19:53 +01004706 xstate_bv &= vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004707 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
4708
4709 /*
4710 * Copy each region from the possibly compacted offset to the
4711 * non-compacted offset.
4712 */
Dave Hansend91cab72015-09-02 16:31:26 -07004713 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004714 while (valid) {
Dave Hansen71ef4532021-06-23 14:01:49 +02004715 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004716 u64 xfeature_mask = valid & -valid;
4717 int xfeature_nr = fls64(xfeature_mask) - 1;
Dave Hansen71ef4532021-06-23 14:01:49 +02004718 void *src;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004719
Dave Hansen71ef4532021-06-23 14:01:49 +02004720 cpuid_count(XSTATE_CPUID, xfeature_nr,
4721 &size, &offset, &ecx, &edx);
4722
4723 if (xfeature_nr == XFEATURE_PKRU) {
4724 memcpy(dest + offset, &vcpu->arch.pkru,
4725 sizeof(vcpu->arch.pkru));
4726 } else {
4727 src = get_xsave_addr(xsave, xfeature_nr);
4728 if (src)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004729 memcpy(dest + offset, src, size);
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004730 }
4731
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004732 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004733 }
4734}
4735
4736static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
4737{
Marc Orrb666a4b2018-11-06 14:53:56 -08004738 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004739 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
4740 u64 valid;
4741
4742 /*
4743 * Copy legacy XSAVE area, to avoid complications with CPUID
4744 * leaves 0 and 1 in the loop below.
4745 */
4746 memcpy(xsave, src, XSAVE_HDR_OFFSET);
4747
4748 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02004749 xsave->header.xfeatures = xstate_bv;
Borislav Petkov782511b2016-04-04 22:25:03 +02004750 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar3a544502015-04-24 10:14:36 +02004751 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004752
4753 /*
4754 * Copy each region from the non-compacted offset to the
4755 * possibly compacted offset.
4756 */
Dave Hansend91cab72015-09-02 16:31:26 -07004757 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004758 while (valid) {
Dave Hansen71ef4532021-06-23 14:01:49 +02004759 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004760 u64 xfeature_mask = valid & -valid;
4761 int xfeature_nr = fls64(xfeature_mask) - 1;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004762
Dave Hansen71ef4532021-06-23 14:01:49 +02004763 cpuid_count(XSTATE_CPUID, xfeature_nr,
4764 &size, &offset, &ecx, &edx);
4765
4766 if (xfeature_nr == XFEATURE_PKRU) {
4767 memcpy(&vcpu->arch.pkru, src + offset,
4768 sizeof(vcpu->arch.pkru));
4769 } else {
4770 void *dest = get_xsave_addr(xsave, xfeature_nr);
4771
4772 if (dest)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004773 memcpy(dest, src + offset, size);
Wanpeng Liee4100d2015-07-09 15:44:52 +08004774 }
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004775
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004776 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004777 }
4778}
4779
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004780static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
4781 struct kvm_xsave *guest_xsave)
4782{
Tom Lendackyed02b212020-12-10 11:10:01 -06004783 if (!vcpu->arch.guest_fpu)
4784 return;
4785
Borislav Petkovd366bf72016-04-04 22:25:02 +02004786 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004787 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
4788 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02004789 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004790 memcpy(guest_xsave->region,
Marc Orrb666a4b2018-11-06 14:53:56 -08004791 &vcpu->arch.guest_fpu->state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02004792 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004793 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
Dave Hansend91cab72015-09-02 16:31:26 -07004794 XFEATURE_MASK_FPSSE;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004795 }
4796}
4797
Wanpeng Lia5758132017-05-11 02:58:55 -07004798#define XSAVE_MXCSR_OFFSET 24
4799
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004800static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
4801 struct kvm_xsave *guest_xsave)
4802{
Tom Lendackyed02b212020-12-10 11:10:01 -06004803 u64 xstate_bv;
4804 u32 mxcsr;
4805
4806 if (!vcpu->arch.guest_fpu)
4807 return 0;
4808
4809 xstate_bv = *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
4810 mxcsr = *(u32 *)&guest_xsave->region[XSAVE_MXCSR_OFFSET / sizeof(u32)];
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004811
Borislav Petkovd366bf72016-04-04 22:25:02 +02004812 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004813 /*
4814 * Here we allow setting states that are not present in
4815 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
4816 * with old userspace.
4817 */
Sean Christophersoncfc48182020-03-02 15:56:23 -08004818 if (xstate_bv & ~supported_xcr0 || mxcsr & ~mxcsr_feature_mask)
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004819 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004820 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004821 } else {
Wanpeng Lia5758132017-05-11 02:58:55 -07004822 if (xstate_bv & ~XFEATURE_MASK_FPSSE ||
4823 mxcsr & ~mxcsr_feature_mask)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004824 return -EINVAL;
Marc Orrb666a4b2018-11-06 14:53:56 -08004825 memcpy(&vcpu->arch.guest_fpu->state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02004826 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004827 }
4828 return 0;
4829}
4830
4831static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
4832 struct kvm_xcrs *guest_xcrs)
4833{
Borislav Petkovd366bf72016-04-04 22:25:02 +02004834 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004835 guest_xcrs->nr_xcrs = 0;
4836 return;
4837 }
4838
4839 guest_xcrs->nr_xcrs = 1;
4840 guest_xcrs->flags = 0;
4841 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
4842 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
4843}
4844
4845static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
4846 struct kvm_xcrs *guest_xcrs)
4847{
4848 int i, r = 0;
4849
Borislav Petkovd366bf72016-04-04 22:25:02 +02004850 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004851 return -EINVAL;
4852
4853 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
4854 return -EINVAL;
4855
4856 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
4857 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004858 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004859 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004860 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004861 break;
4862 }
4863 if (r)
4864 r = -EINVAL;
4865 return r;
4866}
4867
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004868/*
4869 * kvm_set_guest_paused() indicates to the guest kernel that it has been
4870 * stopped by the hypervisor. This function will be called from the host only.
4871 * EINVAL is returned when the host attempts to set the flag for a guest that
4872 * does not support pv clocks.
4873 */
4874static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
4875{
Andy Honig0b794592013-02-20 14:48:10 -08004876 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004877 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03004878 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004879 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
4880 return 0;
4881}
4882
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004883static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
4884 struct kvm_enable_cap *cap)
4885{
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004886 int r;
4887 uint16_t vmcs_version;
4888 void __user *user_ptr;
4889
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004890 if (cap->flags)
4891 return -EINVAL;
4892
4893 switch (cap->cap) {
Roman Kaganefc479e2017-06-22 16:51:01 +03004894 case KVM_CAP_HYPERV_SYNIC2:
4895 if (cap->args[0])
4896 return -EINVAL;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004897 fallthrough;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004898
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004899 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08004900 if (!irqchip_in_kernel(vcpu->kvm))
4901 return -EINVAL;
Roman Kaganefc479e2017-06-22 16:51:01 +03004902 return kvm_hv_activate_synic(vcpu, cap->cap ==
4903 KVM_CAP_HYPERV_SYNIC2);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004904 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004905 if (!kvm_x86_ops.nested_ops->enable_evmcs)
Sean Christopherson51589172018-12-03 13:53:10 -08004906 return -ENOTTY;
Paolo Bonzini33b22172020-04-17 10:24:18 -04004907 r = kvm_x86_ops.nested_ops->enable_evmcs(vcpu, &vmcs_version);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004908 if (!r) {
4909 user_ptr = (void __user *)(uintptr_t)cap->args[0];
4910 if (copy_to_user(user_ptr, &vmcs_version,
4911 sizeof(vmcs_version)))
4912 r = -EFAULT;
4913 }
4914 return r;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004915 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004916 if (!kvm_x86_ops.enable_direct_tlbflush)
Tianyu Lan344c6c82019-08-22 22:30:20 +08004917 return -ENOTTY;
4918
Jason Baronb36464772021-01-14 22:27:56 -05004919 return static_call(kvm_x86_enable_direct_tlbflush)(vcpu);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004920
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02004921 case KVM_CAP_HYPERV_ENFORCE_CPUID:
4922 return kvm_hv_set_enforce_cpuid(vcpu, cap->args[0]);
4923
Oliver Upton66570e92020-08-18 15:24:28 +00004924 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
4925 vcpu->arch.pv_cpuid.enforce = cap->args[0];
Oliver Upton01b4f512020-10-27 16:10:42 -07004926 if (vcpu->arch.pv_cpuid.enforce)
4927 kvm_update_pv_runtime(vcpu);
Oliver Upton66570e92020-08-18 15:24:28 +00004928
4929 return 0;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004930 default:
4931 return -EINVAL;
4932 }
4933}
4934
Carsten Otte313a3dc2007-10-11 19:16:52 +02004935long kvm_arch_vcpu_ioctl(struct file *filp,
4936 unsigned int ioctl, unsigned long arg)
4937{
4938 struct kvm_vcpu *vcpu = filp->private_data;
4939 void __user *argp = (void __user *)arg;
4940 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004941 union {
Maxim Levitsky6dba9402021-06-07 12:02:02 +03004942 struct kvm_sregs2 *sregs2;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004943 struct kvm_lapic_state *lapic;
4944 struct kvm_xsave *xsave;
4945 struct kvm_xcrs *xcrs;
4946 void *buffer;
4947 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004948
Christoffer Dall9b0624712017-12-04 21:35:36 +01004949 vcpu_load(vcpu);
4950
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004951 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004952 switch (ioctl) {
4953 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004954 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004955 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004956 goto out;
Ben Gardon254272c2019-02-11 11:02:50 -08004957 u.lapic = kzalloc(sizeof(struct kvm_lapic_state),
4958 GFP_KERNEL_ACCOUNT);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004959
Dave Hansenb772ff32008-08-11 10:01:47 -07004960 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004961 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07004962 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004963 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004964 if (r)
4965 goto out;
4966 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004967 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02004968 goto out;
4969 r = 0;
4970 break;
4971 }
4972 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004973 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004974 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004975 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004976 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Christoffer Dall9b0624712017-12-04 21:35:36 +01004977 if (IS_ERR(u.lapic)) {
4978 r = PTR_ERR(u.lapic);
4979 goto out_nofree;
4980 }
Sasha Levinff5c2c02011-12-04 19:36:29 +02004981
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004982 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004983 break;
4984 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004985 case KVM_INTERRUPT: {
4986 struct kvm_interrupt irq;
4987
4988 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004989 if (copy_from_user(&irq, argp, sizeof(irq)))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004990 goto out;
4991 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004992 break;
4993 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004994 case KVM_NMI: {
4995 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004996 break;
4997 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02004998 case KVM_SMI: {
4999 r = kvm_vcpu_ioctl_smi(vcpu);
5000 break;
5001 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02005002 case KVM_SET_CPUID: {
5003 struct kvm_cpuid __user *cpuid_arg = argp;
5004 struct kvm_cpuid cpuid;
5005
5006 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005007 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005008 goto out;
5009 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005010 break;
5011 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02005012 case KVM_SET_CPUID2: {
5013 struct kvm_cpuid2 __user *cpuid_arg = argp;
5014 struct kvm_cpuid2 cpuid;
5015
5016 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005017 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005018 goto out;
5019 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005020 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005021 break;
5022 }
5023 case KVM_GET_CPUID2: {
5024 struct kvm_cpuid2 __user *cpuid_arg = argp;
5025 struct kvm_cpuid2 cpuid;
5026
5027 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005028 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005029 goto out;
5030 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005031 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005032 if (r)
5033 goto out;
5034 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005035 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005036 goto out;
5037 r = 0;
5038 break;
5039 }
Tom Lendacky801e4592018-02-21 13:39:51 -06005040 case KVM_GET_MSRS: {
5041 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005042 r = msr_io(vcpu, argp, do_get_msr, 1);
Tom Lendacky801e4592018-02-21 13:39:51 -06005043 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005044 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005045 }
5046 case KVM_SET_MSRS: {
5047 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005048 r = msr_io(vcpu, argp, do_set_msr, 0);
Tom Lendacky801e4592018-02-21 13:39:51 -06005049 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005050 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005051 }
Avi Kivityb209749f2007-10-22 16:50:39 +02005052 case KVM_TPR_ACCESS_REPORTING: {
5053 struct kvm_tpr_access_ctl tac;
5054
5055 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005056 if (copy_from_user(&tac, argp, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005057 goto out;
5058 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
5059 if (r)
5060 goto out;
5061 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005062 if (copy_to_user(argp, &tac, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005063 goto out;
5064 r = 0;
5065 break;
5066 };
Avi Kivityb93463a2007-10-25 16:52:32 +02005067 case KVM_SET_VAPIC_ADDR: {
5068 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005069 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02005070
5071 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005072 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02005073 goto out;
5074 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005075 if (copy_from_user(&va, argp, sizeof(va)))
Avi Kivityb93463a2007-10-25 16:52:32 +02005076 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005077 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08005078 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005079 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02005080 break;
5081 }
Huang Ying890ca9a2009-05-11 16:48:15 +08005082 case KVM_X86_SETUP_MCE: {
5083 u64 mcg_cap;
5084
5085 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005086 if (copy_from_user(&mcg_cap, argp, sizeof(mcg_cap)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005087 goto out;
5088 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
5089 break;
5090 }
5091 case KVM_X86_SET_MCE: {
5092 struct kvm_x86_mce mce;
5093
5094 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005095 if (copy_from_user(&mce, argp, sizeof(mce)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005096 goto out;
5097 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
5098 break;
5099 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005100 case KVM_GET_VCPU_EVENTS: {
5101 struct kvm_vcpu_events events;
5102
5103 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
5104
5105 r = -EFAULT;
5106 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
5107 break;
5108 r = 0;
5109 break;
5110 }
5111 case KVM_SET_VCPU_EVENTS: {
5112 struct kvm_vcpu_events events;
5113
5114 r = -EFAULT;
5115 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
5116 break;
5117
5118 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
5119 break;
5120 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01005121 case KVM_GET_DEBUGREGS: {
5122 struct kvm_debugregs dbgregs;
5123
5124 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
5125
5126 r = -EFAULT;
5127 if (copy_to_user(argp, &dbgregs,
5128 sizeof(struct kvm_debugregs)))
5129 break;
5130 r = 0;
5131 break;
5132 }
5133 case KVM_SET_DEBUGREGS: {
5134 struct kvm_debugregs dbgregs;
5135
5136 r = -EFAULT;
5137 if (copy_from_user(&dbgregs, argp,
5138 sizeof(struct kvm_debugregs)))
5139 break;
5140
5141 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
5142 break;
5143 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005144 case KVM_GET_XSAVE: {
Ben Gardon254272c2019-02-11 11:02:50 -08005145 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005146 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005147 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005148 break;
5149
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005150 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005151
5152 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005153 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005154 break;
5155 r = 0;
5156 break;
5157 }
5158 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005159 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005160 if (IS_ERR(u.xsave)) {
5161 r = PTR_ERR(u.xsave);
5162 goto out_nofree;
5163 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005164
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005165 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005166 break;
5167 }
5168 case KVM_GET_XCRS: {
Ben Gardon254272c2019-02-11 11:02:50 -08005169 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005170 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005171 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005172 break;
5173
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005174 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005175
5176 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005177 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005178 sizeof(struct kvm_xcrs)))
5179 break;
5180 r = 0;
5181 break;
5182 }
5183 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005184 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005185 if (IS_ERR(u.xcrs)) {
5186 r = PTR_ERR(u.xcrs);
5187 goto out_nofree;
5188 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005189
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005190 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005191 break;
5192 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01005193 case KVM_SET_TSC_KHZ: {
5194 u32 user_tsc_khz;
5195
5196 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005197 user_tsc_khz = (u32)arg;
5198
Marcelo Tosatti26769f92020-06-16 08:47:41 -03005199 if (kvm_has_tsc_control &&
5200 user_tsc_khz >= kvm_max_guest_tsc_khz)
Joerg Roedel92a1f122011-03-25 09:44:51 +01005201 goto out;
5202
Zachary Amsdencc578282012-02-03 15:43:50 -02005203 if (user_tsc_khz == 0)
5204 user_tsc_khz = tsc_khz;
5205
Haozhong Zhang381d5852015-10-20 15:39:04 +08005206 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
5207 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005208
Joerg Roedel92a1f122011-03-25 09:44:51 +01005209 goto out;
5210 }
5211 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02005212 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005213 goto out;
5214 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005215 case KVM_KVMCLOCK_CTRL: {
5216 r = kvm_set_guest_paused(vcpu);
5217 goto out;
5218 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005219 case KVM_ENABLE_CAP: {
5220 struct kvm_enable_cap cap;
5221
5222 r = -EFAULT;
5223 if (copy_from_user(&cap, argp, sizeof(cap)))
5224 goto out;
5225 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
5226 break;
5227 }
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005228 case KVM_GET_NESTED_STATE: {
5229 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5230 u32 user_data_size;
5231
5232 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005233 if (!kvm_x86_ops.nested_ops->get_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005234 break;
5235
5236 BUILD_BUG_ON(sizeof(user_data_size) != sizeof(user_kvm_nested_state->size));
Liran Alon26b471c2018-09-16 14:28:20 +03005237 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005238 if (get_user(user_data_size, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005239 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005240
Paolo Bonzini33b22172020-04-17 10:24:18 -04005241 r = kvm_x86_ops.nested_ops->get_state(vcpu, user_kvm_nested_state,
5242 user_data_size);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005243 if (r < 0)
Liran Alon26b471c2018-09-16 14:28:20 +03005244 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005245
5246 if (r > user_data_size) {
5247 if (put_user(r, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005248 r = -EFAULT;
5249 else
5250 r = -E2BIG;
5251 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005252 }
Liran Alon26b471c2018-09-16 14:28:20 +03005253
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005254 r = 0;
5255 break;
5256 }
5257 case KVM_SET_NESTED_STATE: {
5258 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5259 struct kvm_nested_state kvm_state;
Sean Christophersonad5996d2019-11-22 08:58:18 -08005260 int idx;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005261
5262 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005263 if (!kvm_x86_ops.nested_ops->set_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005264 break;
5265
Liran Alon26b471c2018-09-16 14:28:20 +03005266 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005267 if (copy_from_user(&kvm_state, user_kvm_nested_state, sizeof(kvm_state)))
Liran Alon26b471c2018-09-16 14:28:20 +03005268 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005269
Liran Alon26b471c2018-09-16 14:28:20 +03005270 r = -EINVAL;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005271 if (kvm_state.size < sizeof(kvm_state))
Liran Alon26b471c2018-09-16 14:28:20 +03005272 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005273
5274 if (kvm_state.flags &
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005275 ~(KVM_STATE_NESTED_RUN_PENDING | KVM_STATE_NESTED_GUEST_MODE
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04005276 | KVM_STATE_NESTED_EVMCS | KVM_STATE_NESTED_MTF_PENDING
5277 | KVM_STATE_NESTED_GIF_SET))
Liran Alon26b471c2018-09-16 14:28:20 +03005278 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005279
5280 /* nested_run_pending implies guest_mode. */
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005281 if ((kvm_state.flags & KVM_STATE_NESTED_RUN_PENDING)
5282 && !(kvm_state.flags & KVM_STATE_NESTED_GUEST_MODE))
Liran Alon26b471c2018-09-16 14:28:20 +03005283 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005284
Sean Christophersonad5996d2019-11-22 08:58:18 -08005285 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini33b22172020-04-17 10:24:18 -04005286 r = kvm_x86_ops.nested_ops->set_state(vcpu, user_kvm_nested_state, &kvm_state);
Sean Christophersonad5996d2019-11-22 08:58:18 -08005287 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005288 break;
5289 }
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02005290 case KVM_GET_SUPPORTED_HV_CPUID:
5291 r = kvm_ioctl_get_supported_hv_cpuid(vcpu, argp);
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01005292 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005293#ifdef CONFIG_KVM_XEN
David Woodhouse3e324612021-02-02 16:53:25 +00005294 case KVM_XEN_VCPU_GET_ATTR: {
5295 struct kvm_xen_vcpu_attr xva;
5296
5297 r = -EFAULT;
5298 if (copy_from_user(&xva, argp, sizeof(xva)))
5299 goto out;
5300 r = kvm_xen_vcpu_get_attr(vcpu, &xva);
5301 if (!r && copy_to_user(argp, &xva, sizeof(xva)))
5302 r = -EFAULT;
5303 break;
5304 }
5305 case KVM_XEN_VCPU_SET_ATTR: {
5306 struct kvm_xen_vcpu_attr xva;
5307
5308 r = -EFAULT;
5309 if (copy_from_user(&xva, argp, sizeof(xva)))
5310 goto out;
5311 r = kvm_xen_vcpu_set_attr(vcpu, &xva);
5312 break;
5313 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005314#endif
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005315 case KVM_GET_SREGS2: {
5316 u.sregs2 = kzalloc(sizeof(struct kvm_sregs2), GFP_KERNEL);
5317 r = -ENOMEM;
5318 if (!u.sregs2)
5319 goto out;
5320 __get_sregs2(vcpu, u.sregs2);
5321 r = -EFAULT;
5322 if (copy_to_user(argp, u.sregs2, sizeof(struct kvm_sregs2)))
5323 goto out;
5324 r = 0;
5325 break;
5326 }
5327 case KVM_SET_SREGS2: {
5328 u.sregs2 = memdup_user(argp, sizeof(struct kvm_sregs2));
5329 if (IS_ERR(u.sregs2)) {
5330 r = PTR_ERR(u.sregs2);
5331 u.sregs2 = NULL;
5332 goto out;
5333 }
5334 r = __set_sregs2(vcpu, u.sregs2);
5335 break;
5336 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02005337 default:
5338 r = -EINVAL;
5339 }
5340out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005341 kfree(u.buffer);
Christoffer Dall9b0624712017-12-04 21:35:36 +01005342out_nofree:
5343 vcpu_put(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005344 return r;
5345}
5346
Souptick Joarder1499fa82018-04-19 00:49:58 +05305347vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
Carsten Otte5b1c1492012-01-04 10:25:23 +01005348{
5349 return VM_FAULT_SIGBUS;
5350}
5351
Carsten Otte1fe779f2007-10-29 16:08:35 +01005352static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
5353{
5354 int ret;
5355
5356 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08005357 return -EINVAL;
Jason Baronb36464772021-01-14 22:27:56 -05005358 ret = static_call(kvm_x86_set_tss_addr)(kvm, addr);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005359 return ret;
5360}
5361
Sheng Yangb927a3c2009-07-21 10:42:48 +08005362static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
5363 u64 ident_addr)
5364{
Jason Baronb36464772021-01-14 22:27:56 -05005365 return static_call(kvm_x86_set_identity_map_addr)(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005366}
5367
Carsten Otte1fe779f2007-10-29 16:08:35 +01005368static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005369 unsigned long kvm_nr_mmu_pages)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005370{
5371 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
5372 return -EINVAL;
5373
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005374 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005375
5376 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08005377 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005378
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005379 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005380 return 0;
5381}
5382
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005383static unsigned long kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005384{
Dave Hansen39de71e2010-08-19 18:11:14 -07005385 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005386}
5387
Carsten Otte1fe779f2007-10-29 16:08:35 +01005388static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5389{
David Hildenbrand90bca052017-04-07 10:50:23 +02005390 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005391 int r;
5392
5393 r = 0;
5394 switch (chip->chip_id) {
5395 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005396 memcpy(&chip->chip.pic, &pic->pics[0],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005397 sizeof(struct kvm_pic_state));
5398 break;
5399 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005400 memcpy(&chip->chip.pic, &pic->pics[1],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005401 sizeof(struct kvm_pic_state));
5402 break;
5403 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005404 kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005405 break;
5406 default:
5407 r = -EINVAL;
5408 break;
5409 }
5410 return r;
5411}
5412
5413static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5414{
David Hildenbrand90bca052017-04-07 10:50:23 +02005415 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005416 int r;
5417
5418 r = 0;
5419 switch (chip->chip_id) {
5420 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005421 spin_lock(&pic->lock);
5422 memcpy(&pic->pics[0], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005423 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005424 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005425 break;
5426 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005427 spin_lock(&pic->lock);
5428 memcpy(&pic->pics[1], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005429 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005430 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005431 break;
5432 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005433 kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005434 break;
5435 default:
5436 r = -EINVAL;
5437 break;
5438 }
David Hildenbrand90bca052017-04-07 10:50:23 +02005439 kvm_pic_update_irq(pic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005440 return r;
5441}
5442
Sheng Yange0f63cb2008-03-04 00:50:59 +08005443static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5444{
Radim Krčmář34f39412016-03-02 22:56:50 +01005445 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
5446
5447 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
5448
5449 mutex_lock(&kps->lock);
5450 memcpy(ps, &kps->channels, sizeof(*ps));
5451 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305452 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005453}
5454
5455static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5456{
Andrew Honig01856042015-11-18 14:50:23 -08005457 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01005458 struct kvm_pit *pit = kvm->arch.vpit;
5459
5460 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01005461 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08005462 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005463 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
5464 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305465 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005466}
5467
5468static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5469{
Beth Kone9f42752009-07-07 11:50:38 -04005470 mutex_lock(&kvm->arch.vpit->pit_state.lock);
5471 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
5472 sizeof(ps->channels));
5473 ps->flags = kvm->arch.vpit->pit_state.flags;
5474 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04005475 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305476 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005477}
5478
5479static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5480{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305481 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08005482 int i;
Beth Kone9f42752009-07-07 11:50:38 -04005483 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01005484 struct kvm_pit *pit = kvm->arch.vpit;
5485
5486 mutex_lock(&pit->pit_state.lock);
5487 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04005488 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
5489 if (!prev_legacy && cur_legacy)
5490 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01005491 memcpy(&pit->pit_state.channels, &ps->channels,
5492 sizeof(pit->pit_state.channels));
5493 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08005494 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005495 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01005496 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01005497 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305498 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005499}
5500
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005501static int kvm_vm_ioctl_reinject(struct kvm *kvm,
5502 struct kvm_reinject_control *control)
5503{
Radim Krčmář71474e22016-03-02 22:56:45 +01005504 struct kvm_pit *pit = kvm->arch.vpit;
5505
Radim Krčmář71474e22016-03-02 22:56:45 +01005506 /* pit->pit_state.lock was overloaded to prevent userspace from getting
5507 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
5508 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
5509 */
5510 mutex_lock(&pit->pit_state.lock);
5511 kvm_pit_set_reinject(pit, control->pit_reinject);
5512 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01005513
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005514 return 0;
5515}
5516
Sean Christopherson0dff0842020-02-18 13:07:29 -08005517void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005518{
Sean Christophersona018eba2021-02-12 16:50:10 -08005519
Kai Huang88178fd2015-01-28 10:54:27 +08005520 /*
Sean Christophersona018eba2021-02-12 16:50:10 -08005521 * Flush all CPUs' dirty log buffers to the dirty_bitmap. Called
5522 * before reporting dirty_bitmap to userspace. KVM flushes the buffers
5523 * on all VM-Exits, thus we only need to kick running vCPUs to force a
5524 * VM-Exit.
Kai Huang88178fd2015-01-28 10:54:27 +08005525 */
Sean Christophersona018eba2021-02-12 16:50:10 -08005526 struct kvm_vcpu *vcpu;
5527 int i;
5528
5529 kvm_for_each_vcpu(i, vcpu, kvm)
5530 kvm_vcpu_kick(vcpu);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005531}
5532
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005533int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
5534 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005535{
5536 if (!irqchip_in_kernel(kvm))
5537 return -ENXIO;
5538
5539 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005540 irq_event->irq, irq_event->level,
5541 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005542 return 0;
5543}
5544
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01005545int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
5546 struct kvm_enable_cap *cap)
Nadav Amit90de4a12015-04-13 01:53:41 +03005547{
5548 int r;
5549
5550 if (cap->flags)
5551 return -EINVAL;
5552
5553 switch (cap->cap) {
5554 case KVM_CAP_DISABLE_QUIRKS:
5555 kvm->arch.disabled_quirks = cap->args[0];
5556 r = 0;
5557 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07005558 case KVM_CAP_SPLIT_IRQCHIP: {
5559 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005560 r = -EINVAL;
5561 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
5562 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07005563 r = -EEXIST;
5564 if (irqchip_in_kernel(kvm))
5565 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005566 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07005567 goto split_irqchip_unlock;
5568 r = kvm_setup_empty_irq_routing(kvm);
David Hildenbrand5c0aea02017-04-28 17:06:20 +02005569 if (r)
Steve Rutherford49df6392015-07-29 23:21:40 -07005570 goto split_irqchip_unlock;
5571 /* Pairs with irqchip_in_kernel. */
5572 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005573 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005574 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Steve Rutherford49df6392015-07-29 23:21:40 -07005575 r = 0;
5576split_irqchip_unlock:
5577 mutex_unlock(&kvm->lock);
5578 break;
5579 }
Radim Krčmář371313132016-07-12 22:09:27 +02005580 case KVM_CAP_X2APIC_API:
5581 r = -EINVAL;
5582 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
5583 break;
5584
5585 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
5586 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02005587 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
5588 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02005589
5590 r = 0;
5591 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005592 case KVM_CAP_X86_DISABLE_EXITS:
5593 r = -EINVAL;
5594 if (cap->args[0] & ~KVM_X86_DISABLE_VALID_EXITS)
5595 break;
5596
5597 if ((cap->args[0] & KVM_X86_DISABLE_EXITS_MWAIT) &&
5598 kvm_can_mwait_in_guest())
5599 kvm->arch.mwait_in_guest = true;
Michael S. Tsirkin766d3572018-06-08 02:19:53 +03005600 if (cap->args[0] & KVM_X86_DISABLE_EXITS_HLT)
Wanpeng Licaa057a2018-03-12 04:53:03 -07005601 kvm->arch.hlt_in_guest = true;
Wanpeng Lib31c1142018-03-12 04:53:04 -07005602 if (cap->args[0] & KVM_X86_DISABLE_EXITS_PAUSE)
5603 kvm->arch.pause_in_guest = true;
Wanpeng Lib5170062019-05-21 14:06:53 +08005604 if (cap->args[0] & KVM_X86_DISABLE_EXITS_CSTATE)
5605 kvm->arch.cstate_in_guest = true;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005606 r = 0;
5607 break;
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005608 case KVM_CAP_MSR_PLATFORM_INFO:
5609 kvm->arch.guest_can_read_msr_platform_info = cap->args[0];
5610 r = 0;
5611 break;
Jim Mattsonc4f55192018-10-16 14:29:24 -07005612 case KVM_CAP_EXCEPTION_PAYLOAD:
5613 kvm->arch.exception_payload_enabled = cap->args[0];
5614 r = 0;
5615 break;
Alexander Graf1ae09952020-09-25 16:34:16 +02005616 case KVM_CAP_X86_USER_SPACE_MSR:
5617 kvm->arch.user_space_msr_mask = cap->args[0];
5618 r = 0;
5619 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005620 case KVM_CAP_X86_BUS_LOCK_EXIT:
5621 r = -EINVAL;
5622 if (cap->args[0] & ~KVM_BUS_LOCK_DETECTION_VALID_MODE)
5623 break;
5624
5625 if ((cap->args[0] & KVM_BUS_LOCK_DETECTION_OFF) &&
5626 (cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT))
5627 break;
5628
5629 if (kvm_has_bus_lock_exit &&
5630 cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT)
5631 kvm->arch.bus_lock_detection_enabled = true;
5632 r = 0;
5633 break;
Sean Christophersonfe7e9482021-04-12 16:21:43 +12005634#ifdef CONFIG_X86_SGX_KVM
5635 case KVM_CAP_SGX_ATTRIBUTE: {
5636 unsigned long allowed_attributes = 0;
5637
5638 r = sgx_set_attribute(&allowed_attributes, cap->args[0]);
5639 if (r)
5640 break;
5641
5642 /* KVM only supports the PROVISIONKEY privileged attribute. */
5643 if ((allowed_attributes & SGX_ATTR_PROVISIONKEY) &&
5644 !(allowed_attributes & ~SGX_ATTR_PROVISIONKEY))
5645 kvm->arch.sgx_provisioning_allowed = true;
5646 else
5647 r = -EINVAL;
5648 break;
5649 }
5650#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00005651 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
5652 r = -EINVAL;
5653 if (kvm_x86_ops.vm_copy_enc_context_from)
5654 r = kvm_x86_ops.vm_copy_enc_context_from(kvm, cap->args[0]);
5655 return r;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00005656 case KVM_CAP_EXIT_HYPERCALL:
5657 if (cap->args[0] & ~KVM_EXIT_HYPERCALL_VALID_MASK) {
5658 r = -EINVAL;
5659 break;
5660 }
5661 kvm->arch.hypercall_exit_enabled = cap->args[0];
5662 r = 0;
5663 break;
Aaron Lewis19238e72021-05-10 07:48:33 -07005664 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
5665 r = -EINVAL;
5666 if (cap->args[0] & ~1)
5667 break;
5668 kvm->arch.exit_on_emulation_error = cap->args[0];
5669 r = 0;
5670 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03005671 default:
5672 r = -EINVAL;
5673 break;
5674 }
5675 return r;
5676}
5677
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005678static struct kvm_x86_msr_filter *kvm_alloc_msr_filter(bool default_allow)
Alexander Graf1a1552542020-09-25 16:34:21 +02005679{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005680 struct kvm_x86_msr_filter *msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005681
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005682 msr_filter = kzalloc(sizeof(*msr_filter), GFP_KERNEL_ACCOUNT);
5683 if (!msr_filter)
5684 return NULL;
Alexander Graf1a1552542020-09-25 16:34:21 +02005685
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005686 msr_filter->default_allow = default_allow;
5687 return msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005688}
5689
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005690static void kvm_free_msr_filter(struct kvm_x86_msr_filter *msr_filter)
Alexander Graf1a1552542020-09-25 16:34:21 +02005691{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005692 u32 i;
5693
5694 if (!msr_filter)
5695 return;
5696
5697 for (i = 0; i < msr_filter->count; i++)
5698 kfree(msr_filter->ranges[i].bitmap);
5699
5700 kfree(msr_filter);
5701}
5702
5703static int kvm_add_msr_filter(struct kvm_x86_msr_filter *msr_filter,
5704 struct kvm_msr_filter_range *user_range)
5705{
Alexander Graf1a1552542020-09-25 16:34:21 +02005706 unsigned long *bitmap = NULL;
5707 size_t bitmap_size;
Alexander Graf1a1552542020-09-25 16:34:21 +02005708
5709 if (!user_range->nmsrs)
5710 return 0;
5711
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005712 if (user_range->flags & ~(KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE))
5713 return -EINVAL;
5714
5715 if (!user_range->flags)
5716 return -EINVAL;
5717
Alexander Graf1a1552542020-09-25 16:34:21 +02005718 bitmap_size = BITS_TO_LONGS(user_range->nmsrs) * sizeof(long);
5719 if (!bitmap_size || bitmap_size > KVM_MSR_FILTER_MAX_BITMAP_SIZE)
5720 return -EINVAL;
5721
5722 bitmap = memdup_user((__user u8*)user_range->bitmap, bitmap_size);
5723 if (IS_ERR(bitmap))
5724 return PTR_ERR(bitmap);
5725
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005726 msr_filter->ranges[msr_filter->count] = (struct msr_bitmap_range) {
Alexander Graf1a1552542020-09-25 16:34:21 +02005727 .flags = user_range->flags,
5728 .base = user_range->base,
5729 .nmsrs = user_range->nmsrs,
5730 .bitmap = bitmap,
5731 };
5732
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005733 msr_filter->count++;
Alexander Graf1a1552542020-09-25 16:34:21 +02005734 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005735}
5736
5737static int kvm_vm_ioctl_set_msr_filter(struct kvm *kvm, void __user *argp)
5738{
5739 struct kvm_msr_filter __user *user_msr_filter = argp;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005740 struct kvm_x86_msr_filter *new_filter, *old_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005741 struct kvm_msr_filter filter;
5742 bool default_allow;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005743 bool empty = true;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005744 int r = 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005745 u32 i;
5746
5747 if (copy_from_user(&filter, user_msr_filter, sizeof(filter)))
5748 return -EFAULT;
5749
Paolo Bonzini043248b2020-10-20 10:57:01 -04005750 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++)
5751 empty &= !filter.ranges[i].nmsrs;
Alexander Graf1a1552542020-09-25 16:34:21 +02005752
5753 default_allow = !(filter.flags & KVM_MSR_FILTER_DEFAULT_DENY);
Paolo Bonzini043248b2020-10-20 10:57:01 -04005754 if (empty && !default_allow)
5755 return -EINVAL;
5756
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005757 new_filter = kvm_alloc_msr_filter(default_allow);
5758 if (!new_filter)
5759 return -ENOMEM;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005760
Alexander Graf1a1552542020-09-25 16:34:21 +02005761 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005762 r = kvm_add_msr_filter(new_filter, &filter.ranges[i]);
5763 if (r) {
5764 kvm_free_msr_filter(new_filter);
5765 return r;
5766 }
Alexander Graf1a1552542020-09-25 16:34:21 +02005767 }
5768
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005769 mutex_lock(&kvm->lock);
5770
5771 /* The per-VM filter is protected by kvm->lock... */
5772 old_filter = srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1);
5773
5774 rcu_assign_pointer(kvm->arch.msr_filter, new_filter);
5775 synchronize_srcu(&kvm->srcu);
5776
5777 kvm_free_msr_filter(old_filter);
5778
Alexander Graf1a1552542020-09-25 16:34:21 +02005779 kvm_make_all_cpus_request(kvm, KVM_REQ_MSR_FILTER_CHANGED);
5780 mutex_unlock(&kvm->lock);
5781
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005782 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005783}
5784
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09005785#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
5786static int kvm_arch_suspend_notifier(struct kvm *kvm)
5787{
5788 struct kvm_vcpu *vcpu;
5789 int i, ret = 0;
5790
5791 mutex_lock(&kvm->lock);
5792 kvm_for_each_vcpu(i, vcpu, kvm) {
5793 if (!vcpu->arch.pv_time_enabled)
5794 continue;
5795
5796 ret = kvm_set_guest_paused(vcpu);
5797 if (ret) {
5798 kvm_err("Failed to pause guest VCPU%d: %d\n",
5799 vcpu->vcpu_id, ret);
5800 break;
5801 }
5802 }
5803 mutex_unlock(&kvm->lock);
5804
5805 return ret ? NOTIFY_BAD : NOTIFY_DONE;
5806}
5807
5808int kvm_arch_pm_notifier(struct kvm *kvm, unsigned long state)
5809{
5810 switch (state) {
5811 case PM_HIBERNATION_PREPARE:
5812 case PM_SUSPEND_PREPARE:
5813 return kvm_arch_suspend_notifier(kvm);
5814 }
5815
5816 return NOTIFY_DONE;
5817}
5818#endif /* CONFIG_HAVE_KVM_PM_NOTIFIER */
5819
Carsten Otte1fe779f2007-10-29 16:08:35 +01005820long kvm_arch_vm_ioctl(struct file *filp,
5821 unsigned int ioctl, unsigned long arg)
5822{
5823 struct kvm *kvm = filp->private_data;
5824 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03005825 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07005826 /*
5827 * This union makes it completely explicit to gcc-3.x
5828 * that these two variables' stack usage should be
5829 * combined, not added together.
5830 */
5831 union {
5832 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04005833 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005834 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07005835 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005836
5837 switch (ioctl) {
5838 case KVM_SET_TSS_ADDR:
5839 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005840 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005841 case KVM_SET_IDENTITY_MAP_ADDR: {
5842 u64 ident_addr;
5843
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005844 mutex_lock(&kvm->lock);
5845 r = -EINVAL;
5846 if (kvm->created_vcpus)
5847 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005848 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005849 if (copy_from_user(&ident_addr, argp, sizeof(ident_addr)))
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005850 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005851 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005852set_identity_unlock:
5853 mutex_unlock(&kvm->lock);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005854 break;
5855 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01005856 case KVM_SET_NR_MMU_PAGES:
5857 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005858 break;
5859 case KVM_GET_NR_MMU_PAGES:
5860 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
5861 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005862 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005863 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01005864
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005865 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01005866 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005867 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005868
Avi Kivity3e515702012-03-05 14:23:29 +02005869 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005870 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02005871 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005872
5873 r = kvm_pic_init(kvm);
5874 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005875 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005876
5877 r = kvm_ioapic_init(kvm);
5878 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01005879 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01005880 goto create_irqchip_unlock;
5881 }
5882
Avi Kivity399ec802008-11-19 13:58:46 +02005883 r = kvm_setup_default_irq_routing(kvm);
5884 if (r) {
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08005885 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01005886 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02005887 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02005888 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01005889 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02005890 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005891 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005892 create_irqchip_unlock:
5893 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005894 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005895 }
Sheng Yang78376992008-01-28 05:10:22 +08005896 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005897 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
5898 goto create_pit;
5899 case KVM_CREATE_PIT2:
5900 r = -EFAULT;
5901 if (copy_from_user(&u.pit_config, argp,
5902 sizeof(struct kvm_pit_config)))
5903 goto out;
5904 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02005905 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02005906 r = -EEXIST;
5907 if (kvm->arch.vpit)
5908 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08005909 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005910 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08005911 if (kvm->arch.vpit)
5912 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02005913 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02005914 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08005915 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005916 case KVM_GET_IRQCHIP: {
5917 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02005918 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005919
Sasha Levinff5c2c02011-12-04 19:36:29 +02005920 chip = memdup_user(argp, sizeof(*chip));
5921 if (IS_ERR(chip)) {
5922 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005923 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005924 }
5925
Carsten Otte1fe779f2007-10-29 16:08:35 +01005926 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01005927 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07005928 goto get_irqchip_out;
5929 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
5930 if (r)
5931 goto get_irqchip_out;
5932 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005933 if (copy_to_user(argp, chip, sizeof(*chip)))
Dave Hansenf0d66272008-08-11 10:01:45 -07005934 goto get_irqchip_out;
5935 r = 0;
5936 get_irqchip_out:
5937 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005938 break;
5939 }
5940 case KVM_SET_IRQCHIP: {
5941 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02005942 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005943
Sasha Levinff5c2c02011-12-04 19:36:29 +02005944 chip = memdup_user(argp, sizeof(*chip));
5945 if (IS_ERR(chip)) {
5946 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005947 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005948 }
5949
Carsten Otte1fe779f2007-10-29 16:08:35 +01005950 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01005951 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07005952 goto set_irqchip_out;
5953 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
Dave Hansenf0d66272008-08-11 10:01:45 -07005954 set_irqchip_out:
5955 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005956 break;
5957 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08005958 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08005959 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07005960 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005961 goto out;
5962 r = -ENXIO;
5963 if (!kvm->arch.vpit)
5964 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07005965 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005966 if (r)
5967 goto out;
5968 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07005969 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005970 goto out;
5971 r = 0;
5972 break;
5973 }
5974 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08005975 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005976 if (copy_from_user(&u.ps, argp, sizeof(u.ps)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005977 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005978 mutex_lock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005979 r = -ENXIO;
5980 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005981 goto set_pit_out;
Dave Hansenf0d66272008-08-11 10:01:45 -07005982 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005983set_pit_out:
5984 mutex_unlock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005985 break;
5986 }
Beth Kone9f42752009-07-07 11:50:38 -04005987 case KVM_GET_PIT2: {
5988 r = -ENXIO;
5989 if (!kvm->arch.vpit)
5990 goto out;
5991 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
5992 if (r)
5993 goto out;
5994 r = -EFAULT;
5995 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
5996 goto out;
5997 r = 0;
5998 break;
5999 }
6000 case KVM_SET_PIT2: {
6001 r = -EFAULT;
6002 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
6003 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006004 mutex_lock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006005 r = -ENXIO;
6006 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006007 goto set_pit2_out;
Beth Kone9f42752009-07-07 11:50:38 -04006008 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006009set_pit2_out:
6010 mutex_unlock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006011 break;
6012 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006013 case KVM_REINJECT_CONTROL: {
6014 struct kvm_reinject_control control;
6015 r = -EFAULT;
6016 if (copy_from_user(&control, argp, sizeof(control)))
6017 goto out;
Miaohe Lincad23e72019-12-07 17:25:22 +08006018 r = -ENXIO;
6019 if (!kvm->arch.vpit)
6020 goto out;
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006021 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006022 break;
6023 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006024 case KVM_SET_BOOT_CPU_ID:
6025 r = 0;
6026 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02006027 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006028 r = -EBUSY;
6029 else
6030 kvm->arch.bsp_vcpu_id = arg;
6031 mutex_unlock(&kvm->lock);
6032 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006033#ifdef CONFIG_KVM_XEN
Ed Swierkffde22a2009-10-15 15:21:43 -07006034 case KVM_XEN_HVM_CONFIG: {
Paolo Bonzini51776042017-10-26 15:45:47 +02006035 struct kvm_xen_hvm_config xhc;
Ed Swierkffde22a2009-10-15 15:21:43 -07006036 r = -EFAULT;
Paolo Bonzini51776042017-10-26 15:45:47 +02006037 if (copy_from_user(&xhc, argp, sizeof(xhc)))
Ed Swierkffde22a2009-10-15 15:21:43 -07006038 goto out;
David Woodhouse78e98782021-02-02 13:19:35 +00006039 r = kvm_xen_hvm_config(kvm, &xhc);
Ed Swierkffde22a2009-10-15 15:21:43 -07006040 break;
6041 }
Joao Martinsa76b9642020-12-03 15:52:25 +00006042 case KVM_XEN_HVM_GET_ATTR: {
6043 struct kvm_xen_hvm_attr xha;
6044
6045 r = -EFAULT;
6046 if (copy_from_user(&xha, argp, sizeof(xha)))
Hannes Edercded19f2009-02-21 02:19:13 +01006047 goto out;
Joao Martinsa76b9642020-12-03 15:52:25 +00006048 r = kvm_xen_hvm_get_attr(kvm, &xha);
6049 if (!r && copy_to_user(argp, &xha, sizeof(xha)))
6050 r = -EFAULT;
6051 break;
6052 }
6053 case KVM_XEN_HVM_SET_ATTR: {
6054 struct kvm_xen_hvm_attr xha;
6055
6056 r = -EFAULT;
6057 if (copy_from_user(&xha, argp, sizeof(xha)))
6058 goto out;
6059 r = kvm_xen_hvm_set_attr(kvm, &xha);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006060 break;
6061 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006062#endif
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006063 case KVM_SET_CLOCK: {
Vitaly Kuznetsov77fcbe82021-03-31 14:41:29 +02006064 struct kvm_arch *ka = &kvm->arch;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006065 struct kvm_clock_data user_ns;
6066 u64 now_ns;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006067
6068 r = -EFAULT;
6069 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
6070 goto out;
6071
6072 r = -EINVAL;
6073 if (user_ns.flags)
6074 goto out;
6075
6076 r = 0;
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00006077
6078 kvm_hv_invalidate_tsc_page(kvm);
6079 kvm_start_pvclock_update(kvm);
6080 pvclock_update_vm_gtod_copy(kvm);
Vitaly Kuznetsov77fcbe82021-03-31 14:41:29 +02006081
6082 /*
6083 * This pairs with kvm_guest_time_update(): when masterclock is
6084 * in use, we use master_kernel_ns + kvmclock_offset to set
6085 * unsigned 'system_time' so if we use get_kvmclock_ns() (which
6086 * is slightly ahead) here we risk going negative on unsigned
6087 * 'system_time' when 'user_ns.clock' is very small.
6088 */
Vitaly Kuznetsov77fcbe82021-03-31 14:41:29 +02006089 if (kvm->arch.use_master_clock)
6090 now_ns = ka->master_kernel_ns;
6091 else
6092 now_ns = get_kvmclock_base_ns();
6093 ka->kvmclock_offset = user_ns.clock - now_ns;
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00006094 kvm_end_pvclock_update(kvm);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006095 break;
6096 }
6097 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006098 struct kvm_clock_data user_ns;
6099 u64 now_ns;
6100
Marcelo Tosattie891a322017-04-17 12:51:37 -03006101 now_ns = get_kvmclock_ns(kvm);
Paolo Bonzini108b2492016-09-01 14:21:03 +02006102 user_ns.clock = now_ns;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01006103 user_ns.flags = kvm->arch.use_master_clock ? KVM_CLOCK_TSC_STABLE : 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04006104 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006105
6106 r = -EFAULT;
6107 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
6108 goto out;
6109 r = 0;
6110 break;
6111 }
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006112 case KVM_MEMORY_ENCRYPT_OP: {
6113 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006114 if (kvm_x86_ops.mem_enc_op)
Jason Baronb36464772021-01-14 22:27:56 -05006115 r = static_call(kvm_x86_mem_enc_op)(kvm, argp);
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006116 break;
6117 }
Brijesh Singh69eaede2017-12-04 10:57:26 -06006118 case KVM_MEMORY_ENCRYPT_REG_REGION: {
6119 struct kvm_enc_region region;
6120
6121 r = -EFAULT;
6122 if (copy_from_user(&region, argp, sizeof(region)))
6123 goto out;
6124
6125 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006126 if (kvm_x86_ops.mem_enc_reg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006127 r = static_call(kvm_x86_mem_enc_reg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006128 break;
6129 }
6130 case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
6131 struct kvm_enc_region region;
6132
6133 r = -EFAULT;
6134 if (copy_from_user(&region, argp, sizeof(region)))
6135 goto out;
6136
6137 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006138 if (kvm_x86_ops.mem_enc_unreg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006139 r = static_call(kvm_x86_mem_enc_unreg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006140 break;
6141 }
Roman Kaganfaeb7832018-02-01 16:48:32 +03006142 case KVM_HYPERV_EVENTFD: {
6143 struct kvm_hyperv_eventfd hvevfd;
6144
6145 r = -EFAULT;
6146 if (copy_from_user(&hvevfd, argp, sizeof(hvevfd)))
6147 goto out;
6148 r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd);
6149 break;
6150 }
Eric Hankland66bb8a02019-07-10 18:25:15 -07006151 case KVM_SET_PMU_EVENT_FILTER:
6152 r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp);
6153 break;
Alexander Graf1a1552542020-09-25 16:34:21 +02006154 case KVM_X86_SET_MSR_FILTER:
6155 r = kvm_vm_ioctl_set_msr_filter(kvm, argp);
6156 break;
Carsten Otte043405e2007-10-10 17:16:19 +02006157 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02006158 r = -ENOTTY;
Carsten Otte043405e2007-10-10 17:16:19 +02006159 }
6160out:
6161 return r;
6162}
6163
6164static void kvm_init_msr_list(void)
6165{
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006166 struct x86_pmu_capability x86_pmu;
Carsten Otte043405e2007-10-10 17:16:19 +02006167 u32 dummy[2];
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006168 unsigned i;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006169
Jim Mattsone2ada662019-08-21 11:20:04 -07006170 BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4,
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006171 "Please update the fixed PMCs in msrs_to_saved_all[]");
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006172
6173 perf_get_x86_pmu_capability(&x86_pmu);
Jim Mattsone2ada662019-08-21 11:20:04 -07006174
Xiaoyao Li6cbee2b2019-11-13 09:15:21 +08006175 num_msrs_to_save = 0;
6176 num_emulated_msrs = 0;
6177 num_msr_based_features = 0;
6178
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006179 for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) {
6180 if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006181 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006182
6183 /*
6184 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006185 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006186 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006187 switch (msrs_to_save_all[i]) {
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006188 case MSR_IA32_BNDCFGS:
Liran Alon503234b2018-09-14 03:25:53 +03006189 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006190 continue;
6191 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006192 case MSR_TSC_AUX:
Sean Christopherson36fa06f2021-05-04 10:17:26 -07006193 if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP) &&
6194 !kvm_cpu_cap_has(X86_FEATURE_RDPID))
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006195 continue;
6196 break;
Maxim Levitskyf4cfcd22020-05-23 19:14:55 +03006197 case MSR_IA32_UMWAIT_CONTROL:
6198 if (!kvm_cpu_cap_has(X86_FEATURE_WAITPKG))
6199 continue;
6200 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08006201 case MSR_IA32_RTIT_CTL:
6202 case MSR_IA32_RTIT_STATUS:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006203 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT))
Chao Pengbf8c55d2018-10-24 16:05:14 +08006204 continue;
6205 break;
6206 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006207 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006208 !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering))
6209 continue;
6210 break;
6211 case MSR_IA32_RTIT_OUTPUT_BASE:
6212 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006213 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006214 (!intel_pt_validate_hw_cap(PT_CAP_topa_output) &&
6215 !intel_pt_validate_hw_cap(PT_CAP_single_range_output)))
6216 continue;
6217 break;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006218 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006219 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006220 msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >=
Chao Pengbf8c55d2018-10-24 16:05:14 +08006221 intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2)
6222 continue;
6223 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006224 case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006225 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006226 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6227 continue;
6228 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006229 case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006230 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006231 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6232 continue;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006233 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006234 default:
6235 break;
6236 }
6237
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006238 msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i];
Carsten Ottebbd9b642007-10-30 18:44:21 +01006239 }
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006240
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006241 for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
Jason Baronb36464772021-01-14 22:27:56 -05006242 if (!static_call(kvm_x86_has_emulated_msr)(NULL, emulated_msrs_all[i]))
Tom Lendackybc226f02018-05-10 22:06:39 +02006243 continue;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006244
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006245 emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006246 }
Tom Lendacky801e4592018-02-21 13:39:51 -06006247
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006248 for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) {
Tom Lendacky801e4592018-02-21 13:39:51 -06006249 struct kvm_msr_entry msr;
6250
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006251 msr.index = msr_based_features_all[i];
Wanpeng Li66421c12018-02-28 14:03:30 +08006252 if (kvm_get_msr_feature(&msr))
Tom Lendacky801e4592018-02-21 13:39:51 -06006253 continue;
6254
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006255 msr_based_features[num_msr_based_features++] = msr_based_features_all[i];
Tom Lendacky801e4592018-02-21 13:39:51 -06006256 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006257}
6258
6259static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
6260 const void *v)
6261{
Avi Kivity70252a12010-01-19 12:51:22 +02006262 int handled = 0;
6263 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006264
Avi Kivity70252a12010-01-19 12:51:22 +02006265 do {
6266 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006267 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006268 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
6269 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006270 break;
6271 handled += n;
6272 addr += n;
6273 len -= n;
6274 v += n;
6275 } while (len);
6276
6277 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006278}
6279
6280static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
6281{
Avi Kivity70252a12010-01-19 12:51:22 +02006282 int handled = 0;
6283 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006284
Avi Kivity70252a12010-01-19 12:51:22 +02006285 do {
6286 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006287 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006288 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
6289 addr, n, v))
6290 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006291 break;
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006292 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v);
Avi Kivity70252a12010-01-19 12:51:22 +02006293 handled += n;
6294 addr += n;
6295 len -= n;
6296 v += n;
6297 } while (len);
6298
6299 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006300}
6301
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006302static void kvm_set_segment(struct kvm_vcpu *vcpu,
6303 struct kvm_segment *var, int seg)
6304{
Jason Baronb36464772021-01-14 22:27:56 -05006305 static_call(kvm_x86_set_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006306}
6307
6308void kvm_get_segment(struct kvm_vcpu *vcpu,
6309 struct kvm_segment *var, int seg)
6310{
Jason Baronb36464772021-01-14 22:27:56 -05006311 static_call(kvm_x86_get_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006312}
6313
Paolo Bonzini54987b72014-09-02 13:23:06 +02006314gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
6315 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006316{
6317 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006318
6319 BUG_ON(!mmu_is_nested(vcpu));
6320
6321 /* NPT walks are always user-walks */
6322 access |= PFERR_USER_MASK;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02006323 t_gpa = vcpu->arch.mmu->gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006324
6325 return t_gpa;
6326}
6327
Avi Kivityab9ae312010-11-22 17:53:26 +02006328gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
6329 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006330{
Jason Baronb36464772021-01-14 22:27:56 -05006331 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02006332 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006333}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006334EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_read);
Gleb Natapov1871c602010-02-10 14:21:32 +02006335
Avi Kivityab9ae312010-11-22 17:53:26 +02006336 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
6337 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006338{
Jason Baronb36464772021-01-14 22:27:56 -05006339 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006340 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02006341 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006342}
6343
Avi Kivityab9ae312010-11-22 17:53:26 +02006344gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
6345 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006346{
Jason Baronb36464772021-01-14 22:27:56 -05006347 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006348 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02006349 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006350}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006351EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_write);
Gleb Natapov1871c602010-02-10 14:21:32 +02006352
6353/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02006354gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
6355 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006356{
Avi Kivityab9ae312010-11-22 17:53:26 +02006357 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006358}
6359
6360static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6361 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006362 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006363{
6364 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006365 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006366
6367 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02006368 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02006369 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006370 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02006371 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006372 int ret;
6373
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006374 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006375 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006376 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
6377 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006378 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006379 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006380 goto out;
6381 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006382
Izik Eidus77c20022008-12-29 01:42:19 +02006383 bytes -= toread;
6384 data += toread;
6385 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006386 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006387out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006388 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006389}
Izik Eidus77c20022008-12-29 01:42:19 +02006390
Gleb Natapov1871c602010-02-10 14:21:32 +02006391/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03006392static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
6393 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006394 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006395{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006396 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Jason Baronb36464772021-01-14 22:27:56 -05006397 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006398 unsigned offset;
6399 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006400
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006401 /* Inline kvm_read_guest_virt_helper for speed. */
6402 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
6403 exception);
6404 if (unlikely(gpa == UNMAPPED_GVA))
6405 return X86EMUL_PROPAGATE_FAULT;
6406
6407 offset = addr & (PAGE_SIZE-1);
6408 if (WARN_ON(offset + bytes > PAGE_SIZE))
6409 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006410 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
6411 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006412 if (unlikely(ret < 0))
6413 return X86EMUL_IO_NEEDED;
6414
6415 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02006416}
6417
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006418int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006419 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006420 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006421{
Jason Baronb36464772021-01-14 22:27:56 -05006422 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006423
Paolo Bonzini353c0952019-01-29 18:41:16 +01006424 /*
6425 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
6426 * is returned, but our callers are not ready for that and they blindly
6427 * call kvm_inject_page_fault. Ensure that they at least do not leak
6428 * uninitialized kernel stack memory into cr2 and error code.
6429 */
6430 memset(exception, 0, sizeof(*exception));
Gleb Natapov1871c602010-02-10 14:21:32 +02006431 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006432 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006433}
Nadav Har'El064aea72011-05-25 23:04:56 +03006434EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02006435
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006436static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
6437 gva_t addr, void *val, unsigned int bytes,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006438 struct x86_exception *exception, bool system)
Gleb Natapov1871c602010-02-10 14:21:32 +02006439{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006440 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006441 u32 access = 0;
6442
Jason Baronb36464772021-01-14 22:27:56 -05006443 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006444 access |= PFERR_USER_MASK;
6445
6446 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006447}
6448
Radim Krčmář7a036a62015-10-30 16:36:24 +01006449static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
6450 unsigned long addr, void *val, unsigned int bytes)
6451{
6452 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6453 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
6454
6455 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
6456}
6457
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006458static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6459 struct kvm_vcpu *vcpu, u32 access,
6460 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02006461{
6462 void *data = val;
6463 int r = X86EMUL_CONTINUE;
6464
6465 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02006466 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006467 access,
Avi Kivityab9ae312010-11-22 17:53:26 +02006468 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02006469 unsigned offset = addr & (PAGE_SIZE-1);
6470 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
6471 int ret;
6472
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006473 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006474 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006475 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02006476 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006477 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02006478 goto out;
6479 }
6480
6481 bytes -= towrite;
6482 data += towrite;
6483 addr += towrite;
6484 }
6485out:
6486 return r;
6487}
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006488
6489static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006490 unsigned int bytes, struct x86_exception *exception,
6491 bool system)
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006492{
6493 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006494 u32 access = PFERR_WRITE_MASK;
6495
Jason Baronb36464772021-01-14 22:27:56 -05006496 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006497 access |= PFERR_USER_MASK;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006498
6499 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006500 access, exception);
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006501}
6502
6503int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val,
6504 unsigned int bytes, struct x86_exception *exception)
6505{
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006506 /* kvm_write_guest_virt_system can pull in tons of pages. */
6507 vcpu->arch.l1tf_flush_l1d = true;
6508
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006509 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
6510 PFERR_WRITE_MASK, exception);
6511}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03006512EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02006513
Wanpeng Li082d06e2018-04-03 16:28:48 -07006514int handle_ud(struct kvm_vcpu *vcpu)
6515{
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006516 static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX };
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006517 int emul_type = EMULTYPE_TRAP_UD;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006518 char sig[5]; /* ud2; .ascii "kvm" */
6519 struct x86_exception e;
Wanpeng Li082d06e2018-04-03 16:28:48 -07006520
Jason Baronb36464772021-01-14 22:27:56 -05006521 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, NULL, 0)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07006522 return 1;
6523
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006524 if (force_emulation_prefix &&
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006525 kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu),
6526 sig, sizeof(sig), &e) == 0 &&
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006527 memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) {
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006528 kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig));
Sean Christophersonb4000602019-08-27 14:40:32 -07006529 emul_type = EMULTYPE_TRAP_UD_FORCED;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006530 }
6531
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006532 return kvm_emulate_instruction(vcpu, emul_type);
Wanpeng Li082d06e2018-04-03 16:28:48 -07006533}
6534EXPORT_SYMBOL_GPL(handle_ud);
6535
Tom Lendacky0f89b202016-12-14 14:59:23 -05006536static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6537 gpa_t gpa, bool write)
6538{
6539 /* For APIC access vmexit */
6540 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6541 return 1;
6542
6543 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
6544 trace_vcpu_match_mmio(gva, gpa, write, true);
6545 return 1;
6546 }
6547
6548 return 0;
6549}
6550
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006551static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6552 gpa_t *gpa, struct x86_exception *exception,
6553 bool write)
6554{
Jason Baronb36464772021-01-14 22:27:56 -05006555 u32 access = ((static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0)
Avi Kivity97d64b72012-09-12 14:52:00 +03006556 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006557
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08006558 /*
6559 * currently PKRU is only applied to ept enabled guest so
6560 * there is no pkey in EPT page table for L1 guest or EPT
6561 * shadow page table for L2 guest.
6562 */
Sean Christopherson908b7d42021-07-13 09:33:04 -07006563 if (vcpu_match_mmio_gva(vcpu, gva) && (!is_paging(vcpu) ||
6564 !permission_fault(vcpu, vcpu->arch.walk_mmu,
6565 vcpu->arch.mmio_access, 0, access))) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006566 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
6567 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08006568 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006569 return 1;
6570 }
6571
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006572 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
6573
6574 if (*gpa == UNMAPPED_GVA)
6575 return -1;
6576
Tom Lendacky0f89b202016-12-14 14:59:23 -05006577 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006578}
6579
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006580int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006581 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02006582{
6583 int ret;
6584
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006585 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006586 if (ret < 0)
6587 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006588 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006589 return 1;
6590}
6591
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006592struct read_write_emulator_ops {
6593 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
6594 int bytes);
6595 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
6596 void *val, int bytes);
6597 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6598 int bytes, void *val);
6599 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6600 void *val, int bytes);
6601 bool write;
6602};
6603
6604static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
6605{
6606 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006607 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006608 vcpu->mmio_fragments[0].gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006609 vcpu->mmio_read_completed = 0;
6610 return 1;
6611 }
6612
6613 return 0;
6614}
6615
6616static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6617 void *val, int bytes)
6618{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006619 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006620}
6621
6622static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6623 void *val, int bytes)
6624{
6625 return emulator_write_phys(vcpu, gpa, val, bytes);
6626}
6627
6628static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
6629{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006630 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006631 return vcpu_mmio_write(vcpu, gpa, bytes, val);
6632}
6633
6634static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6635 void *val, int bytes)
6636{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006637 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006638 return X86EMUL_IO_NEEDED;
6639}
6640
6641static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6642 void *val, int bytes)
6643{
Avi Kivityf78146b2012-04-18 19:22:47 +03006644 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
6645
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006646 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006647 return X86EMUL_CONTINUE;
6648}
6649
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006650static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006651 .read_write_prepare = read_prepare,
6652 .read_write_emulate = read_emulate,
6653 .read_write_mmio = vcpu_mmio_read,
6654 .read_write_exit_mmio = read_exit_mmio,
6655};
6656
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006657static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006658 .read_write_emulate = write_emulate,
6659 .read_write_mmio = write_mmio,
6660 .read_write_exit_mmio = write_exit_mmio,
6661 .write = true,
6662};
6663
Xiao Guangrong22388a32011-07-13 14:32:31 +08006664static int emulator_read_write_onepage(unsigned long addr, void *val,
6665 unsigned int bytes,
6666 struct x86_exception *exception,
6667 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006668 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006669{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006670 gpa_t gpa;
6671 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006672 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03006673 struct kvm_mmio_fragment *frag;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006674 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006675
6676 /*
6677 * If the exit was due to a NPF we may already have a GPA.
6678 * If the GPA is present, use it to avoid the GVA to GPA table walk.
6679 * Note, this cannot be used on string operations since string
6680 * operation using rep will only have the initial GPA from the NPF
6681 * occurred.
6682 */
Sean Christopherson744e6992020-02-18 15:03:09 -08006683 if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) &&
6684 (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) {
6685 gpa = ctxt->gpa_val;
Brijesh Singh618232e2017-08-17 18:36:57 +02006686 ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write);
6687 } else {
6688 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
6689 if (ret < 0)
6690 return X86EMUL_PROPAGATE_FAULT;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006691 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006692
Brijesh Singh618232e2017-08-17 18:36:57 +02006693 if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01006694 return X86EMUL_CONTINUE;
6695
Carsten Ottebbd9b642007-10-30 18:44:21 +01006696 /*
6697 * Is this MMIO handled locally?
6698 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08006699 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02006700 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006701 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006702
Avi Kivity70252a12010-01-19 12:51:22 +02006703 gpa += handled;
6704 bytes -= handled;
6705 val += handled;
6706
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006707 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
6708 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
6709 frag->gpa = gpa;
6710 frag->data = val;
6711 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03006712 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006713}
6714
Xiubo Li52eb5a62015-03-13 17:39:45 +08006715static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
6716 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006717 void *val, unsigned int bytes,
6718 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006719 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006720{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006721 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03006722 gpa_t gpa;
6723 int rc;
6724
6725 if (ops->read_write_prepare &&
6726 ops->read_write_prepare(vcpu, val, bytes))
6727 return X86EMUL_CONTINUE;
6728
6729 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006730
Carsten Ottebbd9b642007-10-30 18:44:21 +01006731 /* Crossing a page boundary? */
6732 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03006733 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006734
6735 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006736 rc = emulator_read_write_onepage(addr, val, now, exception,
6737 vcpu, ops);
6738
Carsten Ottebbd9b642007-10-30 18:44:21 +01006739 if (rc != X86EMUL_CONTINUE)
6740 return rc;
6741 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02006742 if (ctxt->mode != X86EMUL_MODE_PROT64)
6743 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006744 val += now;
6745 bytes -= now;
6746 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006747
Avi Kivityf78146b2012-04-18 19:22:47 +03006748 rc = emulator_read_write_onepage(addr, val, bytes, exception,
6749 vcpu, ops);
6750 if (rc != X86EMUL_CONTINUE)
6751 return rc;
6752
6753 if (!vcpu->mmio_nr_fragments)
6754 return rc;
6755
6756 gpa = vcpu->mmio_fragments[0].gpa;
6757
6758 vcpu->mmio_needed = 1;
6759 vcpu->mmio_cur_fragment = 0;
6760
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006761 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03006762 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
6763 vcpu->run->exit_reason = KVM_EXIT_MMIO;
6764 vcpu->run->mmio.phys_addr = gpa;
6765
6766 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08006767}
6768
6769static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
6770 unsigned long addr,
6771 void *val,
6772 unsigned int bytes,
6773 struct x86_exception *exception)
6774{
6775 return emulator_read_write(ctxt, addr, val, bytes,
6776 exception, &read_emultor);
6777}
6778
Xiubo Li52eb5a62015-03-13 17:39:45 +08006779static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006780 unsigned long addr,
6781 const void *val,
6782 unsigned int bytes,
6783 struct x86_exception *exception)
6784{
6785 return emulator_read_write(ctxt, addr, (void *)val, bytes,
6786 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006787}
Carsten Ottebbd9b642007-10-30 18:44:21 +01006788
Avi Kivitydaea3e72010-03-15 13:59:54 +02006789#define CMPXCHG_TYPE(t, ptr, old, new) \
6790 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
6791
6792#ifdef CONFIG_X86_64
6793# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
6794#else
6795# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01006796 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02006797#endif
6798
Avi Kivity0f65dd72011-04-20 13:37:53 +03006799static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
6800 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01006801 const void *old,
6802 const void *new,
6803 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006804 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006805{
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006806 struct kvm_host_map map;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006807 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02006808 u64 page_line_mask;
Avi Kivitydaea3e72010-03-15 13:59:54 +02006809 gpa_t gpa;
Avi Kivitydaea3e72010-03-15 13:59:54 +02006810 char *kaddr;
6811 bool exchanged;
6812
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006813 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02006814 if (bytes > 8 || (bytes & (bytes - 1)))
6815 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006816
Avi Kivitydaea3e72010-03-15 13:59:54 +02006817 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006818
Avi Kivitydaea3e72010-03-15 13:59:54 +02006819 if (gpa == UNMAPPED_GVA ||
6820 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6821 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006822
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02006823 /*
6824 * Emulate the atomic as a straight write to avoid #AC if SLD is
6825 * enabled in the host and the access splits a cache line.
6826 */
6827 if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
6828 page_line_mask = ~(cache_line_size() - 1);
6829 else
6830 page_line_mask = PAGE_MASK;
6831
6832 if (((gpa + bytes - 1) & page_line_mask) != (gpa & page_line_mask))
Avi Kivitydaea3e72010-03-15 13:59:54 +02006833 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006834
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006835 if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08006836 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02006837
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006838 kaddr = map.hva + offset_in_page(gpa);
6839
Avi Kivitydaea3e72010-03-15 13:59:54 +02006840 switch (bytes) {
6841 case 1:
6842 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
6843 break;
6844 case 2:
6845 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
6846 break;
6847 case 4:
6848 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
6849 break;
6850 case 8:
6851 exchanged = CMPXCHG64(kaddr, old, new);
6852 break;
6853 default:
6854 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006855 }
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006856
6857 kvm_vcpu_unmap(vcpu, &map, true);
Avi Kivitydaea3e72010-03-15 13:59:54 +02006858
6859 if (!exchanged)
6860 return X86EMUL_CMPXCHG_FAILED;
6861
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006862 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03006863
6864 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02006865
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006866emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02006867 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006868
Avi Kivity0f65dd72011-04-20 13:37:53 +03006869 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006870}
6871
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006872static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
6873{
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006874 int r = 0, i;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006875
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006876 for (i = 0; i < vcpu->arch.pio.count; i++) {
6877 if (vcpu->arch.pio.in)
6878 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
6879 vcpu->arch.pio.size, pd);
6880 else
6881 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
6882 vcpu->arch.pio.port, vcpu->arch.pio.size,
6883 pd);
6884 if (r)
6885 break;
6886 pd += vcpu->arch.pio.size;
6887 }
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006888 return r;
6889}
6890
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006891static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
6892 unsigned short port, void *val,
6893 unsigned int count, bool in)
6894{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006895 vcpu->arch.pio.port = port;
6896 vcpu->arch.pio.in = in;
6897 vcpu->arch.pio.count = count;
6898 vcpu->arch.pio.size = size;
6899
6900 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
6901 vcpu->arch.pio.count = 0;
6902 return 1;
6903 }
6904
6905 vcpu->run->exit_reason = KVM_EXIT_IO;
6906 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
6907 vcpu->run->io.size = size;
6908 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
6909 vcpu->run->io.count = count;
6910 vcpu->run->io.port = port;
6911
6912 return 0;
6913}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006914
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006915static int emulator_pio_in(struct kvm_vcpu *vcpu, int size,
6916 unsigned short port, void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006917{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006918 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03006919
Gleb Natapov79729952010-03-18 15:20:24 +02006920 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006921 goto data_avail;
6922
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006923 memset(vcpu->arch.pio_data, 0, size * count);
6924
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006925 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
6926 if (ret) {
6927data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006928 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02006929 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02006930 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006931 return 1;
6932 }
6933
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006934 return 0;
6935}
6936
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006937static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
6938 int size, unsigned short port, void *val,
6939 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006940{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006941 return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count);
Avi Kivityca1d4a92011-04-20 13:37:53 +03006942
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006943}
6944
6945static int emulator_pio_out(struct kvm_vcpu *vcpu, int size,
6946 unsigned short port, const void *val,
6947 unsigned int count)
6948{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006949 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02006950 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006951 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006952}
6953
Carsten Ottebbd9b642007-10-30 18:44:21 +01006954static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
6955 int size, unsigned short port,
6956 const void *val, unsigned int count)
6957{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006958 return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006959}
6960
6961static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
6962{
Jason Baronb36464772021-01-14 22:27:56 -05006963 return static_call(kvm_x86_get_segment_base)(vcpu, seg);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006964}
6965
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006966static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006967{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006968 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006969}
6970
Jiang Biaoae6a2372016-11-07 08:54:51 +08006971static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006972{
6973 if (!need_emulate_wbinvd(vcpu))
6974 return X86EMUL_CONTINUE;
6975
Jason Baronb36464772021-01-14 22:27:56 -05006976 if (static_call(kvm_x86_has_wbinvd_exit)()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01006977 int cpu = get_cpu();
6978
6979 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Wanpeng Lic2162e12021-03-12 10:45:51 +08006980 on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006981 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01006982 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006983 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01006984 } else
6985 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006986 return X86EMUL_CONTINUE;
6987}
Joel Schopp5cb56052015-03-02 13:43:31 -06006988
6989int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
6990{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006991 kvm_emulate_wbinvd_noskip(vcpu);
6992 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06006993}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006994EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
6995
Joel Schopp5cb56052015-03-02 13:43:31 -06006996
6997
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03006998static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
6999{
Joel Schopp5cb56052015-03-02 13:43:31 -06007000 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007001}
7002
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007003static void emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
7004 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007005{
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007006 kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007007}
7008
Xiubo Li52eb5a62015-03-13 17:39:45 +08007009static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
7010 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007011{
Gleb Natapov338dbc92010-04-28 19:15:32 +03007012
Paolo Bonzini996ff542020-12-14 07:49:54 -05007013 return kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007014}
7015
Gleb Natapov52a46612010-03-18 15:20:03 +02007016static u64 mk_cr_64(u64 curr_cr, u32 new_val)
7017{
7018 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
7019}
7020
Avi Kivity717746e2011-04-20 13:37:53 +03007021static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02007022{
Avi Kivity717746e2011-04-20 13:37:53 +03007023 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02007024 unsigned long value;
7025
7026 switch (cr) {
7027 case 0:
7028 value = kvm_read_cr0(vcpu);
7029 break;
7030 case 2:
7031 value = vcpu->arch.cr2;
7032 break;
7033 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02007034 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02007035 break;
7036 case 4:
7037 value = kvm_read_cr4(vcpu);
7038 break;
7039 case 8:
7040 value = kvm_get_cr8(vcpu);
7041 break;
7042 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007043 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02007044 return 0;
7045 }
7046
7047 return value;
7048}
7049
Avi Kivity717746e2011-04-20 13:37:53 +03007050static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02007051{
Avi Kivity717746e2011-04-20 13:37:53 +03007052 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03007053 int res = 0;
7054
Gleb Natapov52a46612010-03-18 15:20:03 +02007055 switch (cr) {
7056 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03007057 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007058 break;
7059 case 2:
7060 vcpu->arch.cr2 = val;
7061 break;
7062 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03007063 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007064 break;
7065 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03007066 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007067 break;
7068 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007069 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007070 break;
7071 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007072 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03007073 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02007074 }
Gleb Natapov0f122442010-04-28 19:15:31 +03007075
7076 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02007077}
7078
Avi Kivity717746e2011-04-20 13:37:53 +03007079static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02007080{
Jason Baronb36464772021-01-14 22:27:56 -05007081 return static_call(kvm_x86_get_cpl)(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02007082}
7083
Avi Kivity4bff1e862011-04-20 13:37:53 +03007084static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007085{
Jason Baronb36464772021-01-14 22:27:56 -05007086 static_call(kvm_x86_get_gdt)(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007087}
7088
Avi Kivity4bff1e862011-04-20 13:37:53 +03007089static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007090{
Jason Baronb36464772021-01-14 22:27:56 -05007091 static_call(kvm_x86_get_idt)(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007092}
7093
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007094static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7095{
Jason Baronb36464772021-01-14 22:27:56 -05007096 static_call(kvm_x86_set_gdt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007097}
7098
7099static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7100{
Jason Baronb36464772021-01-14 22:27:56 -05007101 static_call(kvm_x86_set_idt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007102}
7103
Avi Kivity4bff1e862011-04-20 13:37:53 +03007104static unsigned long emulator_get_cached_segment_base(
7105 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03007106{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007107 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03007108}
7109
Avi Kivity1aa36612011-04-27 13:20:30 +03007110static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
7111 struct desc_struct *desc, u32 *base3,
7112 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007113{
7114 struct kvm_segment var;
7115
Avi Kivity4bff1e862011-04-20 13:37:53 +03007116 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03007117 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007118
Gleb Natapov378a8b02013-01-21 15:36:48 +02007119 if (var.unusable) {
7120 memset(desc, 0, sizeof(*desc));
Radim Krčmářf0367ee2017-05-18 19:37:30 +02007121 if (base3)
7122 *base3 = 0;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007123 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02007124 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007125
7126 if (var.g)
7127 var.limit >>= 12;
7128 set_desc_limit(desc, var.limit);
7129 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02007130#ifdef CONFIG_X86_64
7131 if (base3)
7132 *base3 = var.base >> 32;
7133#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007134 desc->type = var.type;
7135 desc->s = var.s;
7136 desc->dpl = var.dpl;
7137 desc->p = var.present;
7138 desc->avl = var.avl;
7139 desc->l = var.l;
7140 desc->d = var.db;
7141 desc->g = var.g;
7142
7143 return true;
7144}
7145
Avi Kivity1aa36612011-04-27 13:20:30 +03007146static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
7147 struct desc_struct *desc, u32 base3,
7148 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007149{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007150 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007151 struct kvm_segment var;
7152
Avi Kivity1aa36612011-04-27 13:20:30 +03007153 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007154 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02007155#ifdef CONFIG_X86_64
7156 var.base |= ((u64)base3) << 32;
7157#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007158 var.limit = get_desc_limit(desc);
7159 if (desc->g)
7160 var.limit = (var.limit << 12) | 0xfff;
7161 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007162 var.dpl = desc->dpl;
7163 var.db = desc->d;
7164 var.s = desc->s;
7165 var.l = desc->l;
7166 var.g = desc->g;
7167 var.avl = desc->avl;
7168 var.present = desc->p;
7169 var.unusable = !var.present;
7170 var.padding = 0;
7171
7172 kvm_set_segment(vcpu, &var, seg);
7173 return;
7174}
7175
Avi Kivity717746e2011-04-20 13:37:53 +03007176static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
7177 u32 msr_index, u64 *pdata)
7178{
Alexander Graf1ae09952020-09-25 16:34:16 +02007179 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7180 int r;
7181
7182 r = kvm_get_msr(vcpu, msr_index, pdata);
7183
7184 if (r && kvm_get_msr_user_space(vcpu, msr_index, r)) {
7185 /* Bounce to user space */
7186 return X86EMUL_IO_NEEDED;
7187 }
7188
7189 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007190}
7191
7192static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
7193 u32 msr_index, u64 data)
7194{
Alexander Graf1ae09952020-09-25 16:34:16 +02007195 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7196 int r;
7197
7198 r = kvm_set_msr(vcpu, msr_index, data);
7199
7200 if (r && kvm_set_msr_user_space(vcpu, msr_index, data, r)) {
7201 /* Bounce to user space */
7202 return X86EMUL_IO_NEEDED;
7203 }
7204
7205 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007206}
7207
Paolo Bonzini64d60672015-05-07 11:36:11 +02007208static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
7209{
7210 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7211
7212 return vcpu->arch.smbase;
7213}
7214
7215static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
7216{
7217 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7218
7219 vcpu->arch.smbase = smbase;
7220}
7221
Nadav Amit67f4d422014-06-02 18:34:09 +03007222static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
7223 u32 pmc)
7224{
Like Xu98ff80f2019-10-27 18:52:40 +08007225 return kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03007226}
7227
Avi Kivity222d21a2011-11-10 14:57:30 +02007228static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
7229 u32 pmc, u64 *pdata)
7230{
Wei Huangc6702c92015-06-19 13:44:45 +02007231 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02007232}
7233
Avi Kivity6c3287f2011-04-20 15:43:05 +03007234static void emulator_halt(struct x86_emulate_ctxt *ctxt)
7235{
7236 emul_to_vcpu(ctxt)->arch.halt_request = 1;
7237}
7238
Avi Kivity29535382011-04-20 13:37:53 +03007239static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007240 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007241 enum x86_intercept_stage stage)
7242{
Jason Baronb36464772021-01-14 22:27:56 -05007243 return static_call(kvm_x86_check_intercept)(emul_to_vcpu(ctxt), info, stage,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007244 &ctxt->exception);
Avi Kivityc4f035c2011-04-04 12:39:22 +02007245}
7246
Yu Zhange911eb32017-08-24 20:27:52 +08007247static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Sean Christophersonf91af512020-03-04 17:34:37 -08007248 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx,
7249 bool exact_only)
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007250{
Sean Christophersonf91af512020-03-04 17:34:37 -08007251 return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007252}
7253
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007254static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt)
7255{
7256 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM);
7257}
7258
7259static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt)
7260{
7261 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE);
7262}
7263
7264static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt)
7265{
7266 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR);
7267}
7268
Avi Kivitydd856ef2012-08-27 23:46:17 +03007269static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
7270{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007271 return kvm_register_read_raw(emul_to_vcpu(ctxt), reg);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007272}
7273
7274static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
7275{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007276 kvm_register_write_raw(emul_to_vcpu(ctxt), reg, val);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007277}
7278
Nadav Amit801806d2015-01-26 09:32:23 +02007279static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
7280{
Jason Baronb36464772021-01-14 22:27:56 -05007281 static_call(kvm_x86_set_nmi_mask)(emul_to_vcpu(ctxt), masked);
Nadav Amit801806d2015-01-26 09:32:23 +02007282}
7283
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007284static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt)
7285{
7286 return emul_to_vcpu(ctxt)->arch.hflags;
7287}
7288
Sean Christophersonedce4652021-06-09 11:56:13 -07007289static void emulator_exiting_smm(struct x86_emulate_ctxt *ctxt)
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007290{
Sean Christopherson78fcb2c2021-06-09 11:56:11 -07007291 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7292
Sean Christophersondc872752021-06-09 11:56:15 -07007293 kvm_smm_changed(vcpu, false);
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007294}
7295
Sean Christophersonecc513e2021-06-09 11:56:19 -07007296static int emulator_leave_smm(struct x86_emulate_ctxt *ctxt,
Sean Christophersoned193212019-04-02 08:03:09 -07007297 const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007298{
Sean Christophersonecc513e2021-06-09 11:56:19 -07007299 return static_call(kvm_x86_leave_smm)(emul_to_vcpu(ctxt), smstate);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007300}
7301
Sean Christopherson25b17222021-06-09 11:56:12 -07007302static void emulator_triple_fault(struct x86_emulate_ctxt *ctxt)
7303{
7304 kvm_make_request(KVM_REQ_TRIPLE_FAULT, emul_to_vcpu(ctxt));
7305}
7306
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007307static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr)
7308{
7309 return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr);
7310}
7311
Mathias Krause0225fb52012-08-30 01:30:16 +02007312static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03007313 .read_gpr = emulator_read_gpr,
7314 .write_gpr = emulator_write_gpr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02007315 .read_std = emulator_read_std,
7316 .write_std = emulator_write_std,
Radim Krčmář7a036a62015-10-30 16:36:24 +01007317 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02007318 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007319 .read_emulated = emulator_read_emulated,
7320 .write_emulated = emulator_write_emulated,
7321 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007322 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007323 .pio_in_emulated = emulator_pio_in_emulated,
7324 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03007325 .get_segment = emulator_get_segment,
7326 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03007327 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007328 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007329 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007330 .set_gdt = emulator_set_gdt,
7331 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02007332 .get_cr = emulator_get_cr,
7333 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02007334 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03007335 .get_dr = emulator_get_dr,
7336 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02007337 .get_smbase = emulator_get_smbase,
7338 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03007339 .set_msr = emulator_set_msr,
7340 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03007341 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02007342 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03007343 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007344 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03007345 .fix_hypercall = emulator_fix_hypercall,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007346 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007347 .get_cpuid = emulator_get_cpuid,
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007348 .guest_has_long_mode = emulator_guest_has_long_mode,
7349 .guest_has_movbe = emulator_guest_has_movbe,
7350 .guest_has_fxsr = emulator_guest_has_fxsr,
Nadav Amit801806d2015-01-26 09:32:23 +02007351 .set_nmi_mask = emulator_set_nmi_mask,
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007352 .get_hflags = emulator_get_hflags,
Sean Christophersonedce4652021-06-09 11:56:13 -07007353 .exiting_smm = emulator_exiting_smm,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007354 .leave_smm = emulator_leave_smm,
Sean Christopherson25b17222021-06-09 11:56:12 -07007355 .triple_fault = emulator_triple_fault,
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007356 .set_xcr = emulator_set_xcr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007357};
7358
Gleb Natapov95cb2292010-04-28 19:15:43 +03007359static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
7360{
Jason Baronb36464772021-01-14 22:27:56 -05007361 u32 int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03007362 /*
7363 * an sti; sti; sequence only disable interrupts for the first
7364 * instruction. So, if the last instruction, be it emulated or
7365 * not, left the system with the INT_STI flag enabled, it
7366 * means that the last instruction is an sti. We should not
7367 * leave the flag on in this case. The same goes for mov ss
7368 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02007369 if (int_shadow & mask)
7370 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007371 if (unlikely(int_shadow || mask)) {
Jason Baronb36464772021-01-14 22:27:56 -05007372 static_call(kvm_x86_set_interrupt_shadow)(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007373 if (!mask)
7374 kvm_make_request(KVM_REQ_EVENT, vcpu);
7375 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03007376}
7377
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007378static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03007379{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007380 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02007381 if (ctxt->exception.vector == PF_VECTOR)
Sean Christopherson53b3d8e2020-03-20 14:28:01 -07007382 return kvm_inject_emulated_page_fault(vcpu, &ctxt->exception);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007383
7384 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02007385 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
7386 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03007387 else
Avi Kivityda9cb572010-11-22 17:53:21 +02007388 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007389 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03007390}
7391
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007392static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu)
7393{
7394 struct x86_emulate_ctxt *ctxt;
7395
7396 ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT);
7397 if (!ctxt) {
7398 pr_err("kvm: failed to allocate vcpu's emulator\n");
7399 return NULL;
7400 }
7401
7402 ctxt->vcpu = vcpu;
7403 ctxt->ops = &emulate_ops;
7404 vcpu->arch.emulate_ctxt = ctxt;
7405
7406 return ctxt;
7407}
7408
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007409static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
7410{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007411 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007412 int cs_db, cs_l;
7413
Jason Baronb36464772021-01-14 22:27:56 -05007414 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007415
Sean Christopherson744e6992020-02-18 15:03:09 -08007416 ctxt->gpa_available = false;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007417 ctxt->eflags = kvm_get_rflags(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007418 ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0;
7419
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007420 ctxt->eip = kvm_rip_read(vcpu);
7421 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
7422 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03007423 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007424 cs_db ? X86EMUL_MODE_PROT32 :
7425 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02007426 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007427 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
7428 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007429
Wanpeng Lida6393c2021-05-27 17:01:36 -07007430 ctxt->interruptibility = 0;
7431 ctxt->have_exception = false;
7432 ctxt->exception.vector = -1;
7433 ctxt->perm_ok = false;
7434
Avi Kivitydd856ef2012-08-27 23:46:17 +03007435 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007436 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007437}
7438
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007439void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02007440{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007441 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02007442 int ret;
7443
7444 init_emulate_ctxt(vcpu);
7445
Avi Kivity9dac77f2011-06-01 15:34:25 +03007446 ctxt->op_bytes = 2;
7447 ctxt->ad_bytes = 2;
7448 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007449 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02007450
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007451 if (ret != X86EMUL_CONTINUE) {
7452 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7453 } else {
7454 ctxt->eip = ctxt->_eip;
7455 kvm_rip_write(vcpu, ctxt->eip);
7456 kvm_set_rflags(vcpu, ctxt->eflags);
7457 }
Mohammed Gamal63995652010-09-19 14:34:06 +02007458}
7459EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
7460
Aaron Lewis19238e72021-05-10 07:48:33 -07007461static void prepare_emulation_failure_exit(struct kvm_vcpu *vcpu)
7462{
7463 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7464 u32 insn_size = ctxt->fetch.end - ctxt->fetch.data;
7465 struct kvm_run *run = vcpu->run;
7466
7467 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7468 run->emulation_failure.suberror = KVM_INTERNAL_ERROR_EMULATION;
7469 run->emulation_failure.ndata = 0;
7470 run->emulation_failure.flags = 0;
7471
7472 if (insn_size) {
7473 run->emulation_failure.ndata = 3;
7474 run->emulation_failure.flags |=
7475 KVM_INTERNAL_ERROR_EMULATION_FLAG_INSTRUCTION_BYTES;
7476 run->emulation_failure.insn_size = insn_size;
7477 memset(run->emulation_failure.insn_bytes, 0x90,
7478 sizeof(run->emulation_failure.insn_bytes));
7479 memcpy(run->emulation_failure.insn_bytes,
7480 ctxt->fetch.data, insn_size);
7481 }
7482}
7483
Liran Alone2366172018-03-12 13:12:49 +02007484static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007485{
Aaron Lewis19238e72021-05-10 07:48:33 -07007486 struct kvm *kvm = vcpu->kvm;
7487
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007488 ++vcpu->stat.insn_emulation_fail;
7489 trace_kvm_emulate_insn_failed(vcpu);
Liran Alone2366172018-03-12 13:12:49 +02007490
Sean Christopherson42cbf062019-08-27 14:40:31 -07007491 if (emulation_type & EMULTYPE_VMWARE_GP) {
7492 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007493 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007494 }
Liran Alone2366172018-03-12 13:12:49 +02007495
Aaron Lewis19238e72021-05-10 07:48:33 -07007496 if (kvm->arch.exit_on_emulation_error ||
7497 (emulation_type & EMULTYPE_SKIP)) {
7498 prepare_emulation_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007499 return 0;
Sean Christopherson738fece2019-08-27 14:40:34 -07007500 }
7501
Sean Christopherson22da61c2019-08-27 14:40:28 -07007502 kvm_queue_exception(vcpu, UD_VECTOR);
7503
Jason Baronb36464772021-01-14 22:27:56 -05007504 if (!is_guest_mode(vcpu) && static_call(kvm_x86_get_cpl)(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007505 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7506 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7507 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007508 return 0;
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007509 }
Liran Alone2366172018-03-12 13:12:49 +02007510
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007511 return 1;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007512}
7513
Sean Christopherson736c2912019-12-06 15:57:14 -08007514static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007515 bool write_fault_to_shadow_pgtable,
7516 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03007517{
Sean Christopherson736c2912019-12-06 15:57:14 -08007518 gpa_t gpa = cr2_or_gpa;
Dan Williamsba049e92016-01-15 16:56:11 -08007519 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007520
Sean Christopherson92daa482020-02-18 15:03:08 -08007521 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Gleb Natapov991eebf2013-04-11 12:10:51 +03007522 return false;
7523
Sean Christopherson92daa482020-02-18 15:03:08 -08007524 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7525 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007526 return false;
7527
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007528 if (!vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007529 /*
7530 * Write permission should be allowed since only
7531 * write access need to be emulated.
7532 */
Sean Christopherson736c2912019-12-06 15:57:14 -08007533 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03007534
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007535 /*
7536 * If the mapping is invalid in guest, let cpu retry
7537 * it to generate fault.
7538 */
7539 if (gpa == UNMAPPED_GVA)
7540 return true;
7541 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007542
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007543 /*
7544 * Do not retry the unhandleable instruction if it faults on the
7545 * readonly host memory, otherwise it will goto a infinite loop:
7546 * retry instruction -> write #PF -> emulation fail -> retry
7547 * instruction -> ...
7548 */
7549 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007550
7551 /*
7552 * If the instruction failed on the error pfn, it can not be fixed,
7553 * report the error to userspace.
7554 */
7555 if (is_error_noslot_pfn(pfn))
7556 return false;
7557
7558 kvm_release_pfn_clean(pfn);
7559
7560 /* The instructions are well-emulated on direct mmu. */
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007561 if (vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007562 unsigned int indirect_shadow_pages;
7563
Ben Gardon531810c2021-02-02 10:57:24 -08007564 write_lock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007565 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
Ben Gardon531810c2021-02-02 10:57:24 -08007566 write_unlock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007567
7568 if (indirect_shadow_pages)
7569 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
7570
Gleb Natapova6f177e2010-07-08 12:41:12 +03007571 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007572 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007573
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007574 /*
7575 * if emulation was due to access to shadowed page table
7576 * and it failed try to unshadow page and re-enter the
7577 * guest to let CPU execute the instruction.
7578 */
7579 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007580
7581 /*
7582 * If the access faults on its page table, it can not
7583 * be fixed by unprotecting shadow page and it should
7584 * be reported to userspace.
7585 */
7586 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007587}
7588
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007589static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
Sean Christopherson736c2912019-12-06 15:57:14 -08007590 gpa_t cr2_or_gpa, int emulation_type)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007591{
7592 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christopherson736c2912019-12-06 15:57:14 -08007593 unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007594
7595 last_retry_eip = vcpu->arch.last_retry_eip;
7596 last_retry_addr = vcpu->arch.last_retry_addr;
7597
7598 /*
7599 * If the emulation is caused by #PF and it is non-page_table
7600 * writing instruction, it means the VM-EXIT is caused by shadow
7601 * page protected, we can zap the shadow page and retry this
7602 * instruction directly.
7603 *
7604 * Note: if the guest uses a non-page-table modifying instruction
7605 * on the PDE that points to the instruction, then we will unmap
7606 * the instruction and go to an infinite loop. So, we cache the
7607 * last retried eip and the last fault address, if we meet the eip
7608 * and the address again, we can break out of the potential infinite
7609 * loop.
7610 */
7611 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
7612
Sean Christopherson92daa482020-02-18 15:03:08 -08007613 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007614 return false;
7615
Sean Christopherson92daa482020-02-18 15:03:08 -08007616 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7617 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007618 return false;
7619
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007620 if (x86_page_table_writing_insn(ctxt))
7621 return false;
7622
Sean Christopherson736c2912019-12-06 15:57:14 -08007623 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007624 return false;
7625
7626 vcpu->arch.last_retry_eip = ctxt->eip;
Sean Christopherson736c2912019-12-06 15:57:14 -08007627 vcpu->arch.last_retry_addr = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007628
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007629 if (!vcpu->arch.mmu->direct_map)
Sean Christopherson736c2912019-12-06 15:57:14 -08007630 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007631
Xiao Guangrong22368022013-01-13 23:44:12 +08007632 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007633
7634 return true;
7635}
7636
Gleb Natapov716d51a2012-09-03 15:24:26 +03007637static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
7638static int complete_emulated_pio(struct kvm_vcpu *vcpu);
7639
Sean Christophersondc872752021-06-09 11:56:15 -07007640static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm)
Paolo Bonzinia5845392015-04-01 18:18:53 +02007641{
Sean Christopherson1270e642021-06-09 11:56:17 -07007642 trace_kvm_smm_transition(vcpu->vcpu_id, vcpu->arch.smbase, entering_smm);
Sean Christopherson0d7ee6f2021-06-09 11:56:16 -07007643
Sean Christophersondc872752021-06-09 11:56:15 -07007644 if (entering_smm) {
7645 vcpu->arch.hflags |= HF_SMM_MASK;
7646 } else {
7647 vcpu->arch.hflags &= ~(HF_SMM_MASK | HF_SMM_INSIDE_NMI_MASK);
7648
Paolo Bonzinic43203c2016-06-01 22:26:00 +02007649 /* Process a latched INIT or SMI, if any. */
7650 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitsky37687c42021-09-13 17:09:50 +03007651
7652 /*
7653 * Even if KVM_SET_SREGS2 loaded PDPTRs out of band,
7654 * on SMM exit we still need to reload them from
7655 * guest memory
7656 */
7657 vcpu->arch.pdptrs_from_userspace = false;
Paolo Bonzini64d60672015-05-07 11:36:11 +02007658 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02007659
7660 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007661}
7662
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007663static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
7664 unsigned long *db)
7665{
7666 u32 dr6 = 0;
7667 int i;
7668 u32 enable, rwlen;
7669
7670 enable = dr7;
7671 rwlen = dr7 >> 16;
7672 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
7673 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
7674 dr6 |= (1 << i);
7675 return dr6;
7676}
7677
Sean Christopherson120c2c42019-08-27 14:40:29 -07007678static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007679{
7680 struct kvm_run *kvm_run = vcpu->run;
7681
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007682 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08007683 kvm_run->debug.arch.dr6 = DR6_BS | DR6_ACTIVE_LOW;
Peter Xud5d260c2020-05-05 16:49:59 -04007684 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007685 kvm_run->debug.arch.exception = DB_VECTOR;
7686 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007687 return 0;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007688 }
Sean Christopherson120c2c42019-08-27 14:40:29 -07007689 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007690 return 1;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007691}
7692
Kyle Huey6affcbe2016-11-29 12:40:40 -08007693int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
7694{
Jason Baronb36464772021-01-14 22:27:56 -05007695 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007696 int r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007697
Jason Baronb36464772021-01-14 22:27:56 -05007698 r = static_call(kvm_x86_skip_emulated_instruction)(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007699 if (unlikely(!r))
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007700 return 0;
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007701
7702 /*
7703 * rflags is the old, "raw" value of the flags. The new value has
7704 * not been saved yet.
7705 *
7706 * This is correct even for TF set by the guest, because "the
7707 * processor will not generate this exception after the instruction
7708 * that sets the TF flag".
7709 */
7710 if (unlikely(rflags & X86_EFLAGS_TF))
Sean Christopherson120c2c42019-08-27 14:40:29 -07007711 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007712 return r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007713}
7714EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
7715
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007716static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
7717{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007718 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
7719 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02007720 struct kvm_run *kvm_run = vcpu->run;
7721 unsigned long eip = kvm_get_linear_rip(vcpu);
7722 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007723 vcpu->arch.guest_debug_dr7,
7724 vcpu->arch.eff_db);
7725
7726 if (dr6 != 0) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08007727 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Nadav Amit82b32772014-11-02 11:54:45 +02007728 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007729 kvm_run->debug.arch.exception = DB_VECTOR;
7730 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007731 *r = 0;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007732 return true;
7733 }
7734 }
7735
Nadav Amit4161a562014-07-17 01:19:31 +03007736 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
7737 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02007738 unsigned long eip = kvm_get_linear_rip(vcpu);
7739 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007740 vcpu->arch.dr7,
7741 vcpu->arch.db);
7742
7743 if (dr6 != 0) {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04007744 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007745 *r = 1;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007746 return true;
7747 }
7748 }
7749
7750 return false;
7751}
7752
Liran Alon04789b62018-03-12 13:12:50 +02007753static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt)
7754{
Arbel Moshe2d7921c2018-03-12 13:12:53 +02007755 switch (ctxt->opcode_len) {
7756 case 1:
7757 switch (ctxt->b) {
7758 case 0xe4: /* IN */
7759 case 0xe5:
7760 case 0xec:
7761 case 0xed:
7762 case 0xe6: /* OUT */
7763 case 0xe7:
7764 case 0xee:
7765 case 0xef:
7766 case 0x6c: /* INS */
7767 case 0x6d:
7768 case 0x6e: /* OUTS */
7769 case 0x6f:
7770 return true;
7771 }
7772 break;
7773 case 2:
7774 switch (ctxt->b) {
7775 case 0x33: /* RDPMC */
7776 return true;
7777 }
7778 break;
Liran Alon04789b62018-03-12 13:12:50 +02007779 }
7780
7781 return false;
7782}
7783
Wei Huang4aa26912021-01-26 03:18:28 -05007784/*
7785 * Decode to be emulated instruction. Return EMULATION_OK if success.
7786 */
7787int x86_decode_emulated_instruction(struct kvm_vcpu *vcpu, int emulation_type,
7788 void *insn, int insn_len)
7789{
7790 int r = EMULATION_OK;
7791 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7792
7793 init_emulate_ctxt(vcpu);
7794
7795 /*
7796 * We will reenter on the same instruction since we do not set
7797 * complete_userspace_io. This does not handle watchpoints yet,
7798 * those would be handled in the emulate_ops.
7799 */
7800 if (!(emulation_type & EMULTYPE_SKIP) &&
7801 kvm_vcpu_check_breakpoint(vcpu, &r))
7802 return r;
7803
Wanpeng Lib35491e2021-05-27 17:01:37 -07007804 r = x86_decode_insn(ctxt, insn, insn_len, emulation_type);
Wei Huang4aa26912021-01-26 03:18:28 -05007805
7806 trace_kvm_emulate_insn_start(vcpu);
7807 ++vcpu->stat.insn_emulation;
7808
7809 return r;
7810}
7811EXPORT_SYMBOL_GPL(x86_decode_emulated_instruction);
7812
Sean Christopherson736c2912019-12-06 15:57:14 -08007813int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
7814 int emulation_type, void *insn, int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007815{
Gleb Natapov95cb2292010-04-28 19:15:43 +03007816 int r;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007817 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007818 bool writeback = true;
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007819 bool write_fault_to_spt;
7820
Jason Baronb36464772021-01-14 22:27:56 -05007821 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, insn, insn_len)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007822 return 1;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007823
Paolo Bonzinic595cee2018-07-02 13:07:14 +02007824 vcpu->arch.l1tf_flush_l1d = true;
7825
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007826 /*
7827 * Clear write_fault_to_shadow_pgtable here to ensure it is
7828 * never reused.
7829 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007830 write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007831 vcpu->arch.write_fault_to_shadow_pgtable = false;
Gleb Natapov8d7d81022011-04-12 12:36:21 +03007832
Sheng Yang571008d2008-01-02 14:49:22 +08007833 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Wei Huang4aa26912021-01-26 03:18:28 -05007834 kvm_clear_exception_queue(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007835
Wei Huang4aa26912021-01-26 03:18:28 -05007836 r = x86_decode_emulated_instruction(vcpu, emulation_type,
7837 insn, insn_len);
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09007838 if (r != EMULATION_OK) {
Sean Christophersonb4000602019-08-27 14:40:32 -07007839 if ((emulation_type & EMULTYPE_TRAP_UD) ||
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07007840 (emulation_type & EMULTYPE_TRAP_UD_FORCED)) {
7841 kvm_queue_exception(vcpu, UD_VECTOR);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007842 return 1;
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07007843 }
Sean Christopherson736c2912019-12-06 15:57:14 -08007844 if (reexecute_instruction(vcpu, cr2_or_gpa,
7845 write_fault_to_spt,
7846 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007847 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00007848 if (ctxt->have_exception) {
Jan Dakinevichc8848ce2019-08-27 13:07:08 +00007849 /*
7850 * #UD should result in just EMULATION_FAILED, and trap-like
7851 * exception should not be encountered during decode.
7852 */
7853 WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR ||
7854 exception_type(ctxt->exception.vector) == EXCPT_TRAP);
Jan Dakinevich8530a792019-08-27 13:07:09 +00007855 inject_emulated_exception(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007856 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00007857 }
Liran Alone2366172018-03-12 13:12:49 +02007858 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007859 }
7860 }
7861
Sean Christopherson42cbf062019-08-27 14:40:31 -07007862 if ((emulation_type & EMULTYPE_VMWARE_GP) &&
7863 !is_vmware_backdoor_opcode(ctxt)) {
7864 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007865 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007866 }
Liran Alon04789b62018-03-12 13:12:50 +02007867
Sean Christopherson1957aa62019-08-27 14:40:39 -07007868 /*
7869 * Note, EMULTYPE_SKIP is intended for use *only* by vendor callbacks
7870 * for kvm_skip_emulated_instruction(). The caller is responsible for
7871 * updating interruptibility state and injecting single-step #DBs.
7872 */
Gleb Natapovba8afb62009-04-12 13:36:57 +03007873 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03007874 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03007875 if (ctxt->eflags & X86_EFLAGS_RF)
7876 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007877 return 1;
Gleb Natapovba8afb62009-04-12 13:36:57 +03007878 }
7879
Sean Christopherson736c2912019-12-06 15:57:14 -08007880 if (retry_instruction(ctxt, cr2_or_gpa, emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007881 return 1;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007882
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007883 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03007884 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007885 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
7886 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03007887 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007888 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03007889
Gleb Natapov5cd21912010-03-18 15:20:26 +02007890restart:
Sean Christopherson92daa482020-02-18 15:03:08 -08007891 if (emulation_type & EMULTYPE_PF) {
7892 /* Save the faulting GPA (cr2) in the address field */
7893 ctxt->exception.address = cr2_or_gpa;
7894
7895 /* With shadow page tables, cr2 contains a GVA or nGPA. */
7896 if (vcpu->arch.mmu->direct_map) {
Sean Christopherson744e6992020-02-18 15:03:09 -08007897 ctxt->gpa_available = true;
7898 ctxt->gpa_val = cr2_or_gpa;
Sean Christopherson92daa482020-02-18 15:03:08 -08007899 }
7900 } else {
7901 /* Sanitize the address out of an abundance of paranoia. */
7902 ctxt->exception.address = 0;
7903 }
Tom Lendacky0f89b202016-12-14 14:59:23 -05007904
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007905 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03007906
Joerg Roedel775fde82011-04-04 12:39:24 +02007907 if (r == EMULATION_INTERCEPTED)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007908 return 1;
Joerg Roedel775fde82011-04-04 12:39:24 +02007909
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007910 if (r == EMULATION_FAILED) {
Sean Christopherson736c2912019-12-06 15:57:14 -08007911 if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007912 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007913 return 1;
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03007914
Liran Alone2366172018-03-12 13:12:49 +02007915 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007916 }
7917
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007918 if (ctxt->have_exception) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007919 r = 1;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007920 if (inject_emulated_exception(vcpu))
7921 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007922 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02007923 if (!vcpu->arch.pio.in) {
7924 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03007925 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02007926 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007927 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03007928 vcpu->arch.complete_userspace_io = complete_emulated_pio;
7929 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007930 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007931 } else if (vcpu->mmio_needed) {
Sean Christophersonbc8a0aa2019-08-27 14:40:27 -07007932 ++vcpu->stat.mmio_exits;
7933
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007934 if (!vcpu->mmio_is_write)
7935 writeback = false;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007936 r = 0;
Gleb Natapov716d51a2012-09-03 15:24:26 +03007937 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007938 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03007939 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007940 else
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007941 r = 1;
Gleb Natapove85d28f2010-07-29 15:11:52 +03007942
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007943 if (writeback) {
Jason Baronb36464772021-01-14 22:27:56 -05007944 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007945 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007946 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Nadav Amit38827db2014-11-02 11:54:53 +02007947 if (!ctxt->have_exception ||
Sean Christopherson75ee23b2019-08-23 13:55:44 -07007948 exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
7949 kvm_rip_write(vcpu, ctxt->eip);
Felipe Franciosi384dea12020-05-19 08:11:22 +00007950 if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)))
Sean Christopherson120c2c42019-08-27 14:40:29 -07007951 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007952 if (kvm_x86_ops.update_emulated_instruction)
Jason Baronb36464772021-01-14 22:27:56 -05007953 static_call(kvm_x86_update_emulated_instruction)(vcpu);
Nadav Amit38827db2014-11-02 11:54:53 +02007954 __kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07007955 }
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007956
7957 /*
7958 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
7959 * do nothing, and it will be requested again as soon as
7960 * the shadow expires. But we still need to check here,
7961 * because POPF has no interrupt shadow.
7962 */
7963 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
7964 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007965 } else
7966 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03007967
Gleb Natapove85d28f2010-07-29 15:11:52 +03007968 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007969}
Sean Christophersonc60658d2018-08-23 13:56:53 -07007970
7971int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type)
7972{
7973 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
7974}
7975EXPORT_SYMBOL_GPL(kvm_emulate_instruction);
7976
7977int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
7978 void *insn, int insn_len)
7979{
7980 return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len);
7981}
7982EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007983
Sean Christopherson8764ed52019-04-29 07:04:15 -07007984static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu)
7985{
7986 vcpu->arch.pio.count = 0;
7987 return 1;
7988}
7989
Sean Christopherson45def772019-03-11 20:01:05 -07007990static int complete_fast_pio_out(struct kvm_vcpu *vcpu)
7991{
7992 vcpu->arch.pio.count = 0;
7993
7994 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip)))
7995 return 1;
7996
7997 return kvm_skip_emulated_instruction(vcpu);
7998}
7999
Sean Christophersondca7f122018-03-08 08:57:27 -08008000static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size,
8001 unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01008002{
Sean Christophersonde3cd112019-04-30 10:36:17 -07008003 unsigned long val = kvm_rax_read(vcpu);
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008004 int ret = emulator_pio_out(vcpu, size, port, &val, 1);
8005
Sean Christopherson8764ed52019-04-29 07:04:15 -07008006 if (ret)
8007 return ret;
Sean Christopherson45def772019-03-11 20:01:05 -07008008
Sean Christopherson8764ed52019-04-29 07:04:15 -07008009 /*
8010 * Workaround userspace that relies on old KVM behavior of %rip being
8011 * incremented prior to exiting to userspace to handle "OUT 0x7e".
8012 */
8013 if (port == 0x7e &&
8014 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) {
8015 vcpu->arch.complete_userspace_io =
8016 complete_fast_pio_out_port_0x7e;
8017 kvm_skip_emulated_instruction(vcpu);
8018 } else {
Sean Christopherson45def772019-03-11 20:01:05 -07008019 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
8020 vcpu->arch.complete_userspace_io = complete_fast_pio_out;
8021 }
Sean Christopherson8764ed52019-04-29 07:04:15 -07008022 return 0;
Carsten Ottede7d7892007-10-30 18:44:25 +01008023}
Carsten Ottede7d7892007-10-30 18:44:25 +01008024
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008025static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
8026{
8027 unsigned long val;
8028
8029 /* We should only ever be called with arch.pio.count equal to 1 */
8030 BUG_ON(vcpu->arch.pio.count != 1);
8031
Sean Christopherson45def772019-03-11 20:01:05 -07008032 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) {
8033 vcpu->arch.pio.count = 0;
8034 return 1;
8035 }
8036
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008037 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008038 val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008039
8040 /*
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008041 * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008042 * the copy and tracing
8043 */
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008044 emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1);
Sean Christophersonde3cd112019-04-30 10:36:17 -07008045 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008046
Sean Christopherson45def772019-03-11 20:01:05 -07008047 return kvm_skip_emulated_instruction(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008048}
8049
Sean Christophersondca7f122018-03-08 08:57:27 -08008050static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size,
8051 unsigned short port)
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008052{
8053 unsigned long val;
8054 int ret;
8055
8056 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008057 val = (size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008058
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008059 ret = emulator_pio_in(vcpu, size, port, &val, 1);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008060 if (ret) {
Sean Christophersonde3cd112019-04-30 10:36:17 -07008061 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008062 return ret;
8063 }
8064
Sean Christopherson45def772019-03-11 20:01:05 -07008065 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008066 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
8067
8068 return 0;
8069}
Sean Christophersondca7f122018-03-08 08:57:27 -08008070
8071int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in)
8072{
Sean Christopherson45def772019-03-11 20:01:05 -07008073 int ret;
Sean Christophersondca7f122018-03-08 08:57:27 -08008074
Sean Christophersondca7f122018-03-08 08:57:27 -08008075 if (in)
Sean Christopherson45def772019-03-11 20:01:05 -07008076 ret = kvm_fast_pio_in(vcpu, size, port);
Sean Christophersondca7f122018-03-08 08:57:27 -08008077 else
Sean Christopherson45def772019-03-11 20:01:05 -07008078 ret = kvm_fast_pio_out(vcpu, size, port);
8079 return ret && kvm_skip_emulated_instruction(vcpu);
Sean Christophersondca7f122018-03-08 08:57:27 -08008080}
8081EXPORT_SYMBOL_GPL(kvm_fast_pio);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008082
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008083static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008084{
Tejun Heo0a3aee02010-12-18 16:28:55 +01008085 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008086 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008087}
8088
8089static void tsc_khz_changed(void *data)
8090{
8091 struct cpufreq_freqs *freq = data;
8092 unsigned long khz = 0;
8093
8094 if (data)
8095 khz = freq->new;
8096 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8097 khz = cpufreq_quick_get(raw_smp_processor_id());
8098 if (!khz)
8099 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01008100 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008101}
8102
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008103#ifdef CONFIG_X86_64
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008104static void kvm_hyperv_tsc_notifier(void)
8105{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008106 struct kvm *kvm;
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008107 int cpu;
8108
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008109 mutex_lock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008110 list_for_each_entry(kvm, &vm_list, vm_list)
8111 kvm_make_mclock_inprogress_request(kvm);
8112
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008113 /* no guest entries from this point */
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008114 hyperv_stop_tsc_emulation();
8115
8116 /* TSC frequency always matches when on Hyper-V */
8117 for_each_present_cpu(cpu)
8118 per_cpu(cpu_tsc_khz, cpu) = tsc_khz;
8119 kvm_max_guest_tsc_khz = tsc_khz;
8120
8121 list_for_each_entry(kvm, &vm_list, vm_list) {
8122 struct kvm_arch *ka = &kvm->arch;
8123
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008124 spin_lock_irq(&ka->pvclock_gtod_sync_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008125 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008126 kvm_end_pvclock_update(kvm);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008127 }
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008128
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008129 mutex_unlock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008130}
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008131#endif
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008132
Viresh Kumardf240142019-04-29 15:03:58 +05308133static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008134{
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008135 struct kvm *kvm;
8136 struct kvm_vcpu *vcpu;
8137 int i, send_ipi = 0;
8138
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008139 /*
8140 * We allow guests to temporarily run on slowing clocks,
8141 * provided we notify them after, or to run on accelerating
8142 * clocks, provided we notify them before. Thus time never
8143 * goes backwards.
8144 *
8145 * However, we have a problem. We can't atomically update
8146 * the frequency of a given CPU from this function; it is
8147 * merely a notifier, which can be called from any CPU.
8148 * Changing the TSC frequency at arbitrary points in time
8149 * requires a recomputation of local variables related to
8150 * the TSC for each VCPU. We must flag these local variables
8151 * to be updated and be sure the update takes place with the
8152 * new frequency before any guests proceed.
8153 *
8154 * Unfortunately, the combination of hotplug CPU and frequency
8155 * change creates an intractable locking scenario; the order
8156 * of when these callouts happen is undefined with respect to
8157 * CPU hotplug, and they can race with each other. As such,
8158 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
8159 * undefined; you can actually have a CPU frequency change take
8160 * place in between the computation of X and the setting of the
8161 * variable. To protect against this problem, all updates of
8162 * the per_cpu tsc_khz variable are done in an interrupt
8163 * protected IPI, and all callers wishing to update the value
8164 * must wait for a synchronous IPI to complete (which is trivial
8165 * if the caller is on the CPU already). This establishes the
8166 * necessary total order on variable updates.
8167 *
8168 * Note that because a guest time update may take place
8169 * anytime after the setting of the VCPU's request bit, the
8170 * correct TSC value must be set before the request. However,
8171 * to ensure the update actually makes it to any guest which
8172 * starts running in hardware virtualization between the set
8173 * and the acquisition of the spinlock, we must also ping the
8174 * CPU after setting the request bit.
8175 *
8176 */
8177
Viresh Kumardf240142019-04-29 15:03:58 +05308178 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008179
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008180 mutex_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008181 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008182 kvm_for_each_vcpu(i, vcpu, kvm) {
Viresh Kumardf240142019-04-29 15:03:58 +05308183 if (vcpu->cpu != cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008184 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10008185 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008186 if (vcpu->cpu != raw_smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008187 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008188 }
8189 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008190 mutex_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008191
8192 if (freq->old < freq->new && send_ipi) {
8193 /*
8194 * We upscale the frequency. Must make the guest
8195 * doesn't see old kvmclock values while running with
8196 * the new frequency, otherwise we risk the guest sees
8197 * time go backwards.
8198 *
8199 * In case we update the frequency for another cpu
8200 * (which might be in guest context) send an interrupt
8201 * to kick the cpu out of guest context. Next time
8202 * guest context is entered kvmclock will be updated,
8203 * so the guest will not see stale values.
8204 */
Viresh Kumardf240142019-04-29 15:03:58 +05308205 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008206 }
Viresh Kumardf240142019-04-29 15:03:58 +05308207}
8208
8209static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
8210 void *data)
8211{
8212 struct cpufreq_freqs *freq = data;
8213 int cpu;
8214
8215 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
8216 return 0;
8217 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
8218 return 0;
8219
8220 for_each_cpu(cpu, freq->policy->cpus)
8221 __kvmclock_cpufreq_notifier(freq, cpu);
8222
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008223 return 0;
8224}
8225
8226static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008227 .notifier_call = kvmclock_cpufreq_notifier
8228};
8229
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008230static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008231{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008232 tsc_khz_changed(NULL);
8233 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008234}
8235
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008236static void kvm_timer_init(void)
8237{
Zachary Amsdenc2855452010-09-18 14:38:15 -10008238 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308239
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008240 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10008241#ifdef CONFIG_CPU_FREQ
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008242 struct cpufreq_policy *policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02008243 int cpu;
8244
Avi Kivity3e26f232010-12-16 12:16:34 +02008245 cpu = get_cpu();
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008246 policy = cpufreq_cpu_get(cpu);
Wanpeng Li9a119972020-03-02 15:15:36 +08008247 if (policy) {
8248 if (policy->cpuinfo.max_freq)
8249 max_tsc_khz = policy->cpuinfo.max_freq;
8250 cpufreq_cpu_put(policy);
8251 }
Avi Kivity3e26f232010-12-16 12:16:34 +02008252 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10008253#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008254 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
8255 CPUFREQ_TRANSITION_NOTIFIER);
8256 }
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308257
Thomas Gleixner73c1b412016-12-21 20:19:54 +01008258 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008259 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008260}
8261
Andi Kleendd60d212017-07-25 17:20:32 -07008262DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
8263EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008264
Gleb Natapovf5132b02011-11-10 14:57:22 +02008265int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008266{
Alex,Shi086c9852011-10-20 15:34:01 +08008267 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008268}
8269
8270static int kvm_is_user_mode(void)
8271{
8272 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008273
Alex,Shi086c9852011-10-20 15:34:01 +08008274 if (__this_cpu_read(current_vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008275 user_mode = static_call(kvm_x86_get_cpl)(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008276
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008277 return user_mode != 0;
8278}
8279
8280static unsigned long kvm_get_guest_ip(void)
8281{
8282 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008283
Alex,Shi086c9852011-10-20 15:34:01 +08008284 if (__this_cpu_read(current_vcpu))
8285 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008286
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008287 return ip;
8288}
8289
Luwei Kang8479e042019-02-18 19:26:07 -05008290static void kvm_handle_intel_pt_intr(void)
8291{
8292 struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu);
8293
8294 kvm_make_request(KVM_REQ_PMI, vcpu);
8295 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
8296 (unsigned long *)&vcpu->arch.pmu.global_status);
8297}
8298
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008299static struct perf_guest_info_callbacks kvm_guest_cbs = {
8300 .is_in_guest = kvm_is_in_guest,
8301 .is_user_mode = kvm_is_user_mode,
8302 .get_guest_ip = kvm_get_guest_ip,
Luwei Kang8479e042019-02-18 19:26:07 -05008303 .handle_intel_pt_intr = kvm_handle_intel_pt_intr,
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008304};
8305
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008306#ifdef CONFIG_X86_64
8307static void pvclock_gtod_update_fn(struct work_struct *work)
8308{
Marcelo Tosattid8281992012-11-27 23:29:01 -02008309 struct kvm *kvm;
8310
8311 struct kvm_vcpu *vcpu;
8312 int i;
8313
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008314 mutex_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008315 list_for_each_entry(kvm, &vm_list, vm_list)
8316 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08008317 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008318 atomic_set(&kvm_guest_has_master_clock, 0);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008319 mutex_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008320}
8321
8322static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
8323
8324/*
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008325 * Indirection to move queue_work() out of the tk_core.seq write held
8326 * region to prevent possible deadlocks against time accessors which
8327 * are invoked with work related locks held.
8328 */
8329static void pvclock_irq_work_fn(struct irq_work *w)
8330{
8331 queue_work(system_long_wq, &pvclock_gtod_work);
8332}
8333
8334static DEFINE_IRQ_WORK(pvclock_irq_work, pvclock_irq_work_fn);
8335
8336/*
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008337 * Notification about pvclock gtod data update.
8338 */
8339static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
8340 void *priv)
8341{
8342 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
8343 struct timekeeper *tk = priv;
8344
8345 update_pvclock_gtod(tk);
8346
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008347 /*
8348 * Disable master clock if host does not trust, or does not use,
8349 * TSC based clocksource. Delegate queue_work() to irq_work as
8350 * this is invoked with tk_core.seq write held.
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008351 */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01008352 if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) &&
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008353 atomic_read(&kvm_guest_has_master_clock) != 0)
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008354 irq_work_queue(&pvclock_irq_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008355 return 0;
8356}
8357
8358static struct notifier_block pvclock_gtod_notifier = {
8359 .notifier_call = pvclock_gtod_notify,
8360};
8361#endif
8362
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008363int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02008364{
Sean Christophersond008dfd2020-03-21 13:25:56 -07008365 struct kvm_x86_init_ops *ops = opaque;
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008366 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008367
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008368 if (kvm_x86_ops.hardware_enable) {
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008369 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008370 r = -EEXIST;
8371 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008372 }
8373
8374 if (!ops->cpu_has_kvm_support()) {
Erwan Veluef935c252020-02-27 19:00:46 +01008375 pr_err_ratelimited("kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008376 r = -EOPNOTSUPP;
8377 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008378 }
8379 if (ops->disabled_by_bios()) {
Erwan Veluef935c252020-02-27 19:00:46 +01008380 pr_err_ratelimited("kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008381 r = -EOPNOTSUPP;
8382 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008383 }
8384
Marc Orrb666a4b2018-11-06 14:53:56 -08008385 /*
8386 * KVM explicitly assumes that the guest has an FPU and
8387 * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the
8388 * vCPU's FPU state as a fxregs_state struct.
8389 */
8390 if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) {
8391 printk(KERN_ERR "kvm: inadequate fpu\n");
8392 r = -EOPNOTSUPP;
8393 goto out;
8394 }
8395
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008396 r = -ENOMEM;
Paolo Bonzinied8e4812018-12-21 11:25:59 +01008397 x86_fpu_cache = kmem_cache_create("x86_fpu", sizeof(struct fpu),
Marc Orrb666a4b2018-11-06 14:53:56 -08008398 __alignof__(struct fpu), SLAB_ACCOUNT,
8399 NULL);
8400 if (!x86_fpu_cache) {
8401 printk(KERN_ERR "kvm: failed to allocate cache for x86 fpu\n");
8402 goto out;
8403 }
8404
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008405 x86_emulator_cache = kvm_alloc_emulator_cache();
8406 if (!x86_emulator_cache) {
8407 pr_err("kvm: failed to allocate cache for x86 emulator\n");
8408 goto out_free_x86_fpu_cache;
8409 }
8410
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008411 user_return_msrs = alloc_percpu(struct kvm_user_return_msrs);
8412 if (!user_return_msrs) {
8413 printk(KERN_ERR "kvm: failed to allocate percpu kvm_user_return_msrs\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008414 goto out_free_x86_emulator_cache;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008415 }
Sean Christophersone5fda4b2021-05-04 10:17:32 -07008416 kvm_nr_uret_msrs = 0;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008417
Avi Kivity97db56c2008-01-13 13:23:56 +02008418 r = kvm_mmu_module_init();
8419 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008420 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02008421
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008422 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008423
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008424 perf_register_guest_info_callbacks(&kvm_guest_cbs);
8425
Sean Christophersoncfc48182020-03-02 15:56:23 -08008426 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +08008427 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
Sean Christophersoncfc48182020-03-02 15:56:23 -08008428 supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0;
8429 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08008430
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08008431 if (pi_inject_timer == -1)
8432 pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008433#ifdef CONFIG_X86_64
8434 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008435
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008436 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008437 set_hv_tscchange_cb(kvm_hyperv_tsc_notifier);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008438#endif
8439
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008440 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008441
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008442out_free_percpu:
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008443 free_percpu(user_return_msrs);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008444out_free_x86_emulator_cache:
8445 kmem_cache_destroy(x86_emulator_cache);
Marc Orrb666a4b2018-11-06 14:53:56 -08008446out_free_x86_fpu_cache:
8447 kmem_cache_destroy(x86_fpu_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008448out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008449 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02008450}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008451
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008452void kvm_arch_exit(void)
8453{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008454#ifdef CONFIG_X86_64
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008455 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008456 clear_hv_tscchange_cb();
8457#endif
David Matlackcef84c32016-12-16 14:30:36 -08008458 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008459 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
8460
Jan Kiszka888d2562009-04-17 19:24:58 +02008461 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8462 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
8463 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008464 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008465#ifdef CONFIG_X86_64
8466 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008467 irq_work_sync(&pvclock_irq_work);
Thomas Gleixner594b27e2021-05-05 23:48:17 +02008468 cancel_work_sync(&pvclock_gtod_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008469#endif
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008470 kvm_x86_ops.hardware_enable = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008471 kvm_mmu_module_exit();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008472 free_percpu(user_return_msrs);
Wanpeng Lidfdc0a72021-06-10 21:59:33 -07008473 kmem_cache_destroy(x86_emulator_cache);
Marc Orrb666a4b2018-11-06 14:53:56 -08008474 kmem_cache_destroy(x86_fpu_cache);
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008475#ifdef CONFIG_KVM_XEN
Paolo Bonzinic462f852021-02-26 04:49:06 -05008476 static_key_deferred_flush(&kvm_xen_enabled);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +00008477 WARN_ON(static_branch_unlikely(&kvm_xen_enabled.key));
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008478#endif
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008479}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008480
Paolo Bonzini872f36e2021-01-08 05:54:44 -05008481static int __kvm_vcpu_halt(struct kvm_vcpu *vcpu, int state, int reason)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008482{
8483 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008484 if (lapic_in_kernel(vcpu)) {
Tom Lendacky647daca2021-01-04 14:20:01 -06008485 vcpu->arch.mp_state = state;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008486 return 1;
8487 } else {
Tom Lendacky647daca2021-01-04 14:20:01 -06008488 vcpu->run->exit_reason = reason;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008489 return 0;
8490 }
8491}
Tom Lendacky647daca2021-01-04 14:20:01 -06008492
8493int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
8494{
8495 return __kvm_vcpu_halt(vcpu, KVM_MP_STATE_HALTED, KVM_EXIT_HLT);
8496}
Joel Schopp5cb56052015-03-02 13:43:31 -06008497EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
8498
8499int kvm_emulate_halt(struct kvm_vcpu *vcpu)
8500{
Kyle Huey6affcbe2016-11-29 12:40:40 -08008501 int ret = kvm_skip_emulated_instruction(vcpu);
8502 /*
8503 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
8504 * KVM_EXIT_DEBUG here.
8505 */
8506 return kvm_vcpu_halt(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06008507}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008508EXPORT_SYMBOL_GPL(kvm_emulate_halt);
8509
Tom Lendacky647daca2021-01-04 14:20:01 -06008510int kvm_emulate_ap_reset_hold(struct kvm_vcpu *vcpu)
8511{
8512 int ret = kvm_skip_emulated_instruction(vcpu);
8513
8514 return __kvm_vcpu_halt(vcpu, KVM_MP_STATE_AP_RESET_HOLD, KVM_EXIT_AP_RESET_HOLD) && ret;
8515}
8516EXPORT_SYMBOL_GPL(kvm_emulate_ap_reset_hold);
8517
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008518#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008519static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
8520 unsigned long clock_type)
8521{
8522 struct kvm_clock_pairing clock_pairing;
Arnd Bergmann899a31f2018-04-23 10:04:26 +02008523 struct timespec64 ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01008524 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008525 int ret;
8526
8527 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
8528 return -KVM_EOPNOTSUPP;
8529
YANG LI7ca7f3b2021-01-11 17:32:58 +08008530 if (!kvm_get_walltime_and_clockread(&ts, &cycle))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008531 return -KVM_EOPNOTSUPP;
8532
8533 clock_pairing.sec = ts.tv_sec;
8534 clock_pairing.nsec = ts.tv_nsec;
8535 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
8536 clock_pairing.flags = 0;
Liran Alonbcbfbd82018-11-08 00:43:06 +02008537 memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008538
8539 ret = 0;
8540 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
8541 sizeof(struct kvm_clock_pairing)))
8542 ret = -KVM_EFAULT;
8543
8544 return ret;
8545}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008546#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008547
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308548/*
8549 * kvm_pv_kick_cpu_op: Kick a vcpu.
8550 *
8551 * @apicid - apicid of vcpu to be kicked.
8552 */
8553static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
8554{
Raghavendra K T24d21662013-08-26 14:18:35 +05308555 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308556
Peter Xu150a84f2019-12-04 20:07:21 +01008557 lapic_irq.shorthand = APIC_DEST_NOSHORT;
Peter Xuc96001c2019-12-04 20:07:18 +01008558 lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
Longpeng(Mike)ebd28fc2017-08-02 11:20:51 +08008559 lapic_irq.level = 0;
Raghavendra K T24d21662013-08-26 14:18:35 +05308560 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06008561 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308562
Raghavendra K T24d21662013-08-26 14:18:35 +05308563 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08008564 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308565}
8566
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008567bool kvm_apicv_activated(struct kvm *kvm)
8568{
8569 return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0);
8570}
8571EXPORT_SYMBOL_GPL(kvm_apicv_activated);
8572
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008573static void kvm_apicv_init(struct kvm *kvm)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008574{
Maxim Levitskyb0a16372021-08-10 23:52:44 +03008575 mutex_init(&kvm->arch.apicv_update_lock);
8576
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008577 if (enable_apicv)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008578 clear_bit(APICV_INHIBIT_REASON_DISABLE,
8579 &kvm->arch.apicv_inhibit_reasons);
8580 else
8581 set_bit(APICV_INHIBIT_REASON_DISABLE,
8582 &kvm->arch.apicv_inhibit_reasons);
8583}
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008584
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008585static void kvm_sched_yield(struct kvm_vcpu *vcpu, unsigned long dest_id)
Wanpeng Li71506292019-06-11 20:23:49 +08008586{
8587 struct kvm_vcpu *target = NULL;
8588 struct kvm_apic_map *map;
8589
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008590 vcpu->stat.directed_yield_attempted++;
8591
Wanpeng Li72b268a2021-05-18 05:00:32 -07008592 if (single_task_running())
8593 goto no_yield;
8594
Wanpeng Li71506292019-06-11 20:23:49 +08008595 rcu_read_lock();
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008596 map = rcu_dereference(vcpu->kvm->arch.apic_map);
Wanpeng Li71506292019-06-11 20:23:49 +08008597
8598 if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id])
8599 target = map->phys_map[dest_id]->vcpu;
8600
8601 rcu_read_unlock();
8602
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008603 if (!target || !READ_ONCE(target->ready))
8604 goto no_yield;
8605
Wanpeng Lia1fa4cb2021-04-09 12:18:31 +08008606 /* Ignore requests to yield to self */
8607 if (vcpu == target)
8608 goto no_yield;
8609
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008610 if (kvm_vcpu_yield_to(target) <= 0)
8611 goto no_yield;
8612
8613 vcpu->stat.directed_yield_successful++;
8614
8615no_yield:
8616 return;
Wanpeng Li71506292019-06-11 20:23:49 +08008617}
8618
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008619static int complete_hypercall_exit(struct kvm_vcpu *vcpu)
8620{
8621 u64 ret = vcpu->run->hypercall.ret;
8622
8623 if (!is_64_bit_mode(vcpu))
8624 ret = (u32)ret;
8625 kvm_rax_write(vcpu, ret);
8626 ++vcpu->stat.hypercalls;
8627 return kvm_skip_emulated_instruction(vcpu);
8628}
8629
Hollis Blanchard8776e512007-10-31 17:24:24 -05008630int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
8631{
8632 unsigned long nr, a0, a1, a2, a3, ret;
Marian Rotariu6356ee02018-04-30 12:23:01 +03008633 int op_64_bit;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008634
Joao Martins23200b72018-06-13 09:55:44 -04008635 if (kvm_xen_hypercall_enabled(vcpu->kvm))
8636 return kvm_xen_hypercall(vcpu);
8637
Vitaly Kuznetsov8f014552021-01-26 14:48:14 +01008638 if (kvm_hv_hypercall_enabled(vcpu))
Radim Krčmář696ca772018-05-24 17:50:56 +02008639 return kvm_hv_hypercall(vcpu);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02008640
Sean Christophersonde3cd112019-04-30 10:36:17 -07008641 nr = kvm_rax_read(vcpu);
8642 a0 = kvm_rbx_read(vcpu);
8643 a1 = kvm_rcx_read(vcpu);
8644 a2 = kvm_rdx_read(vcpu);
8645 a3 = kvm_rsi_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008646
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008647 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04008648
Nadav Amita449c7a2014-06-18 17:19:24 +03008649 op_64_bit = is_64_bit_mode(vcpu);
8650 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05008651 nr &= 0xFFFFFFFF;
8652 a0 &= 0xFFFFFFFF;
8653 a1 &= 0xFFFFFFFF;
8654 a2 &= 0xFFFFFFFF;
8655 a3 &= 0xFFFFFFFF;
8656 }
8657
Jason Baronb36464772021-01-14 22:27:56 -05008658 if (static_call(kvm_x86_get_cpl)(vcpu) != 0) {
Jan Kiszka07708c42009-08-03 18:43:28 +02008659 ret = -KVM_EPERM;
Radim Krčmář696ca772018-05-24 17:50:56 +02008660 goto out;
Jan Kiszka07708c42009-08-03 18:43:28 +02008661 }
8662
Oliver Upton66570e92020-08-18 15:24:28 +00008663 ret = -KVM_ENOSYS;
8664
Hollis Blanchard8776e512007-10-31 17:24:24 -05008665 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02008666 case KVM_HC_VAPIC_POLL_IRQ:
8667 ret = 0;
8668 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308669 case KVM_HC_KICK_CPU:
Oliver Upton66570e92020-08-18 15:24:28 +00008670 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT))
8671 break;
8672
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308673 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008674 kvm_sched_yield(vcpu, a1);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308675 ret = 0;
8676 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008677#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008678 case KVM_HC_CLOCK_PAIRING:
8679 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
8680 break;
Sean Christopherson1ed199a2019-01-23 09:22:39 -08008681#endif
Wanpeng Li4180bf12018-07-23 14:39:54 +08008682 case KVM_HC_SEND_IPI:
Oliver Upton66570e92020-08-18 15:24:28 +00008683 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SEND_IPI))
8684 break;
8685
Wanpeng Li4180bf12018-07-23 14:39:54 +08008686 ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit);
8687 break;
Wanpeng Li71506292019-06-11 20:23:49 +08008688 case KVM_HC_SCHED_YIELD:
Oliver Upton66570e92020-08-18 15:24:28 +00008689 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SCHED_YIELD))
8690 break;
8691
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008692 kvm_sched_yield(vcpu, a0);
Wanpeng Li71506292019-06-11 20:23:49 +08008693 ret = 0;
8694 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008695 case KVM_HC_MAP_GPA_RANGE: {
8696 u64 gpa = a0, npages = a1, attrs = a2;
8697
8698 ret = -KVM_ENOSYS;
8699 if (!(vcpu->kvm->arch.hypercall_exit_enabled & (1 << KVM_HC_MAP_GPA_RANGE)))
8700 break;
8701
8702 if (!PAGE_ALIGNED(gpa) || !npages ||
8703 gpa_to_gfn(gpa) + npages <= gpa_to_gfn(gpa)) {
8704 ret = -KVM_EINVAL;
8705 break;
8706 }
8707
8708 vcpu->run->exit_reason = KVM_EXIT_HYPERCALL;
8709 vcpu->run->hypercall.nr = KVM_HC_MAP_GPA_RANGE;
8710 vcpu->run->hypercall.args[0] = gpa;
8711 vcpu->run->hypercall.args[1] = npages;
8712 vcpu->run->hypercall.args[2] = attrs;
8713 vcpu->run->hypercall.longmode = op_64_bit;
8714 vcpu->arch.complete_userspace_io = complete_hypercall_exit;
8715 return 0;
8716 }
Hollis Blanchard8776e512007-10-31 17:24:24 -05008717 default:
8718 ret = -KVM_ENOSYS;
8719 break;
8720 }
Radim Krčmář696ca772018-05-24 17:50:56 +02008721out:
Nadav Amita449c7a2014-06-18 17:19:24 +03008722 if (!op_64_bit)
8723 ret = (u32)ret;
Sean Christophersonde3cd112019-04-30 10:36:17 -07008724 kvm_rax_write(vcpu, ret);
Marian Rotariu6356ee02018-04-30 12:23:01 +03008725
Amit Shahf11c3a82008-02-21 01:00:30 +05308726 ++vcpu->stat.hypercalls;
Marian Rotariu6356ee02018-04-30 12:23:01 +03008727 return kvm_skip_emulated_instruction(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008728}
8729EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
8730
Jan Kiszkab6785de2012-09-20 07:43:17 +02008731static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008732{
Avi Kivityd6aa1002011-04-20 15:47:13 +03008733 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008734 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008735 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008736
Jason Baronb36464772021-01-14 22:27:56 -05008737 static_call(kvm_x86_patch_hypercall)(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008738
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01008739 return emulator_write_emulated(ctxt, rip, instruction, 3,
8740 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008741}
8742
Avi Kivity851ba692009-08-24 11:10:17 +03008743static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008744{
Matt Gingell782d4222015-11-16 15:26:00 -08008745 return vcpu->run->request_interrupt_window &&
8746 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008747}
8748
Avi Kivity851ba692009-08-24 11:10:17 +03008749static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008750{
Avi Kivity851ba692009-08-24 11:10:17 +03008751 struct kvm_run *kvm_run = vcpu->run;
8752
Tom Lendackyf1c63662020-12-14 10:29:50 -05008753 /*
8754 * if_flag is obsolete and useless, so do not bother
8755 * setting it for SEV-ES guests. Userspace can just
8756 * use kvm_run->ready_for_interrupt_injection.
8757 */
8758 kvm_run->if_flag = !vcpu->arch.guest_state_protected
8759 && (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
8760
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02008761 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008762 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01008763 kvm_run->ready_for_interrupt_injection =
8764 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08008765 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08008766
8767 if (is_smm(vcpu))
8768 kvm_run->flags |= KVM_RUN_X86_SMM;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008769}
8770
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008771static void update_cr8_intercept(struct kvm_vcpu *vcpu)
8772{
8773 int max_irr, tpr;
8774
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008775 if (!kvm_x86_ops.update_cr8_intercept)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008776 return;
8777
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01008778 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03008779 return;
8780
Andrey Smetanind62caab2015-11-10 15:36:33 +03008781 if (vcpu->arch.apicv_active)
8782 return;
8783
Gleb Natapov8db3baa2009-05-11 13:35:54 +03008784 if (!vcpu->arch.apic->vapic_addr)
8785 max_irr = kvm_lapic_find_highest_irr(vcpu);
8786 else
8787 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008788
8789 if (max_irr != -1)
8790 max_irr >>= 4;
8791
8792 tpr = kvm_lapic_get_cr8(vcpu);
8793
Jason Baronb36464772021-01-14 22:27:56 -05008794 static_call(kvm_x86_update_cr8_intercept)(vcpu, tpr, max_irr);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008795}
8796
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008797
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08008798int kvm_check_nested_events(struct kvm_vcpu *vcpu)
8799{
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08008800 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
8801 kvm_x86_ops.nested_ops->triple_fault(vcpu);
8802 return 1;
8803 }
8804
8805 return kvm_x86_ops.nested_ops->check_events(vcpu);
8806}
8807
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008808static void kvm_inject_exception(struct kvm_vcpu *vcpu)
8809{
8810 if (vcpu->arch.exception.error_code && !is_protmode(vcpu))
8811 vcpu->arch.exception.error_code = false;
8812 static_call(kvm_x86_queue_exception)(vcpu);
8813}
8814
Jim Mattsona5f69092021-06-04 10:26:03 -07008815static int inject_pending_event(struct kvm_vcpu *vcpu, bool *req_immediate_exit)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008816{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01008817 int r;
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008818 bool can_inject = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +01008819
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008820 /* try to reinject previous events if any */
Wanpeng Li664f8e22017-08-24 03:35:09 -07008821
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008822 if (vcpu->arch.exception.injected) {
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008823 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008824 can_inject = false;
8825 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07008826 /*
Liran Alona042c262018-03-23 03:01:32 +03008827 * Do not inject an NMI or interrupt if there is a pending
8828 * exception. Exceptions and interrupts are recognized at
8829 * instruction boundaries, i.e. the start of an instruction.
8830 * Trap-like exceptions, e.g. #DB, have higher priority than
8831 * NMIs and interrupts, i.e. traps are recognized before an
8832 * NMI/interrupt that's pending on the same instruction.
8833 * Fault-like exceptions, e.g. #GP and #PF, are the lowest
8834 * priority, but are only generated (pended) during instruction
8835 * execution, i.e. a pending fault-like exception means the
8836 * fault occurred on the *previous* instruction and must be
8837 * serviced prior to recognizing any new events in order to
8838 * fully complete the previous instruction.
Wanpeng Li664f8e22017-08-24 03:35:09 -07008839 */
Liran Alon1a680e32018-03-23 03:01:33 +03008840 else if (!vcpu->arch.exception.pending) {
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008841 if (vcpu->arch.nmi_injected) {
Jason Baronb36464772021-01-14 22:27:56 -05008842 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008843 can_inject = false;
8844 } else if (vcpu->arch.interrupt.injected) {
Jason Baronb36464772021-01-14 22:27:56 -05008845 static_call(kvm_x86_set_irq)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008846 can_inject = false;
8847 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07008848 }
8849
Sean Christopherson3b82b8d2020-04-22 19:25:47 -07008850 WARN_ON_ONCE(vcpu->arch.exception.injected &&
8851 vcpu->arch.exception.pending);
8852
Liran Alon1a680e32018-03-23 03:01:33 +03008853 /*
8854 * Call check_nested_events() even if we reinjected a previous event
8855 * in order for caller to determine if it should require immediate-exit
8856 * from L2 to L1 due to pending L1 events which require exit
8857 * from L2 to L1.
8858 */
Paolo Bonzini56083bd2020-04-17 10:32:53 -04008859 if (is_guest_mode(vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08008860 r = kvm_check_nested_events(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008861 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008862 goto out;
Wanpeng Li664f8e22017-08-24 03:35:09 -07008863 }
8864
8865 /* try to inject new event if pending */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03008866 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02008867 trace_kvm_inj_exception(vcpu->arch.exception.nr,
8868 vcpu->arch.exception.has_error_code,
8869 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03008870
Wanpeng Li664f8e22017-08-24 03:35:09 -07008871 vcpu->arch.exception.pending = false;
8872 vcpu->arch.exception.injected = true;
8873
Nadav Amitd6e8c852014-07-24 14:51:24 +03008874 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
8875 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
8876 X86_EFLAGS_RF);
8877
Jim Mattsonf10c7292018-10-16 14:29:23 -07008878 if (vcpu->arch.exception.nr == DB_VECTOR) {
Jim Mattsonf10c7292018-10-16 14:29:23 -07008879 kvm_deliver_exception_payload(vcpu);
8880 if (vcpu->arch.dr7 & DR7_GD) {
8881 vcpu->arch.dr7 &= ~DR7_GD;
8882 kvm_update_dr7(vcpu);
8883 }
Nadav Amit6bdf0662014-09-30 20:49:14 +03008884 }
8885
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008886 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008887 can_inject = false;
Liran Alon1a680e32018-03-23 03:01:33 +03008888 }
8889
Maxim Levitsky61e5f692021-08-11 15:29:26 +03008890 /* Don't inject interrupts if the user asked to avoid doing so */
8891 if (vcpu->guest_debug & KVM_GUESTDBG_BLOCKIRQ)
8892 return 0;
8893
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008894 /*
8895 * Finally, inject interrupt events. If an event cannot be injected
8896 * due to architectural conditions (e.g. IF=0) a window-open exit
8897 * will re-request KVM_REQ_EVENT. Sometimes however an event is pending
8898 * and can architecturally be injected, but we cannot do it right now:
8899 * an interrupt could have arrived just now and we have to inject it
8900 * as a vmexit, or there could already an event in the queue, which is
8901 * indicated by can_inject. In that case we request an immediate exit
8902 * in order to make progress and get back here for another iteration.
8903 * The kvm_x86_ops hooks communicate this by returning -EBUSY.
8904 */
8905 if (vcpu->arch.smi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05008906 r = can_inject ? static_call(kvm_x86_smi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008907 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008908 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008909 if (r) {
8910 vcpu->arch.smi_pending = false;
8911 ++vcpu->arch.smi_count;
8912 enter_smm(vcpu);
8913 can_inject = false;
8914 } else
Jason Baronb36464772021-01-14 22:27:56 -05008915 static_call(kvm_x86_enable_smi_window)(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008916 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008917
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008918 if (vcpu->arch.nmi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05008919 r = can_inject ? static_call(kvm_x86_nmi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008920 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008921 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008922 if (r) {
8923 --vcpu->arch.nmi_pending;
8924 vcpu->arch.nmi_injected = true;
Jason Baronb36464772021-01-14 22:27:56 -05008925 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008926 can_inject = false;
Jason Baronb36464772021-01-14 22:27:56 -05008927 WARN_ON(static_call(kvm_x86_nmi_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008928 }
8929 if (vcpu->arch.nmi_pending)
Jason Baronb36464772021-01-14 22:27:56 -05008930 static_call(kvm_x86_enable_nmi_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008931 }
8932
8933 if (kvm_cpu_has_injectable_intr(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05008934 r = can_inject ? static_call(kvm_x86_interrupt_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008935 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008936 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008937 if (r) {
8938 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), false);
Jason Baronb36464772021-01-14 22:27:56 -05008939 static_call(kvm_x86_set_irq)(vcpu);
8940 WARN_ON(static_call(kvm_x86_interrupt_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008941 }
8942 if (kvm_cpu_has_injectable_intr(vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008943 static_call(kvm_x86_enable_irq_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008944 }
8945
8946 if (is_guest_mode(vcpu) &&
8947 kvm_x86_ops.nested_ops->hv_timer_pending &&
8948 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
8949 *req_immediate_exit = true;
8950
8951 WARN_ON(vcpu->arch.exception.pending);
Jim Mattsona5f69092021-06-04 10:26:03 -07008952 return 0;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008953
Jim Mattsona5f69092021-06-04 10:26:03 -07008954out:
8955 if (r == -EBUSY) {
8956 *req_immediate_exit = true;
8957 r = 0;
8958 }
8959 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008960}
8961
Avi Kivity7460fb4a2011-09-20 13:43:14 +03008962static void process_nmi(struct kvm_vcpu *vcpu)
8963{
8964 unsigned limit = 2;
8965
8966 /*
8967 * x86 is limited to one NMI running, and one NMI pending after it.
8968 * If an NMI is already in progress, limit further NMIs to just one.
8969 * Otherwise, allow two (and we'll inject the first one immediately).
8970 */
Jason Baronb36464772021-01-14 22:27:56 -05008971 if (static_call(kvm_x86_get_nmi_mask)(vcpu) || vcpu->arch.nmi_injected)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03008972 limit = 1;
8973
8974 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
8975 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
8976 kvm_make_request(KVM_REQ_EVENT, vcpu);
8977}
8978
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008979static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008980{
8981 u32 flags = 0;
8982 flags |= seg->g << 23;
8983 flags |= seg->db << 22;
8984 flags |= seg->l << 21;
8985 flags |= seg->avl << 20;
8986 flags |= seg->present << 15;
8987 flags |= seg->dpl << 13;
8988 flags |= seg->s << 12;
8989 flags |= seg->type << 8;
8990 return flags;
8991}
8992
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008993static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008994{
8995 struct kvm_segment seg;
8996 int offset;
8997
8998 kvm_get_segment(vcpu, &seg, n);
8999 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
9000
9001 if (n < 3)
9002 offset = 0x7f84 + n * 12;
9003 else
9004 offset = 0x7f2c + (n - 3) * 12;
9005
9006 put_smstate(u32, buf, offset + 8, seg.base);
9007 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009008 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009009}
9010
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009011#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009012static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009013{
9014 struct kvm_segment seg;
9015 int offset;
9016 u16 flags;
9017
9018 kvm_get_segment(vcpu, &seg, n);
9019 offset = 0x7e00 + n * 16;
9020
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009021 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009022 put_smstate(u16, buf, offset, seg.selector);
9023 put_smstate(u16, buf, offset + 2, flags);
9024 put_smstate(u32, buf, offset + 4, seg.limit);
9025 put_smstate(u64, buf, offset + 8, seg.base);
9026}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009027#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009028
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009029static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009030{
9031 struct desc_ptr dt;
9032 struct kvm_segment seg;
9033 unsigned long val;
9034 int i;
9035
9036 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
9037 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
9038 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
9039 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
9040
9041 for (i = 0; i < 8; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009042 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009043
9044 kvm_get_dr(vcpu, 6, &val);
9045 put_smstate(u32, buf, 0x7fcc, (u32)val);
9046 kvm_get_dr(vcpu, 7, &val);
9047 put_smstate(u32, buf, 0x7fc8, (u32)val);
9048
9049 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9050 put_smstate(u32, buf, 0x7fc4, seg.selector);
9051 put_smstate(u32, buf, 0x7f64, seg.base);
9052 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009053 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009054
9055 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9056 put_smstate(u32, buf, 0x7fc0, seg.selector);
9057 put_smstate(u32, buf, 0x7f80, seg.base);
9058 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009059 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009060
Jason Baronb36464772021-01-14 22:27:56 -05009061 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009062 put_smstate(u32, buf, 0x7f74, dt.address);
9063 put_smstate(u32, buf, 0x7f70, dt.size);
9064
Jason Baronb36464772021-01-14 22:27:56 -05009065 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009066 put_smstate(u32, buf, 0x7f58, dt.address);
9067 put_smstate(u32, buf, 0x7f54, dt.size);
9068
9069 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009070 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009071
9072 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
9073
9074 /* revision id */
9075 put_smstate(u32, buf, 0x7efc, 0x00020000);
9076 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
9077}
9078
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009079#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009080static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009081{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009082 struct desc_ptr dt;
9083 struct kvm_segment seg;
9084 unsigned long val;
9085 int i;
9086
9087 for (i = 0; i < 16; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009088 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009089
9090 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
9091 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
9092
9093 kvm_get_dr(vcpu, 6, &val);
9094 put_smstate(u64, buf, 0x7f68, val);
9095 kvm_get_dr(vcpu, 7, &val);
9096 put_smstate(u64, buf, 0x7f60, val);
9097
9098 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
9099 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
9100 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
9101
9102 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
9103
9104 /* revision id */
9105 put_smstate(u32, buf, 0x7efc, 0x00020064);
9106
9107 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
9108
9109 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9110 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009111 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009112 put_smstate(u32, buf, 0x7e94, seg.limit);
9113 put_smstate(u64, buf, 0x7e98, seg.base);
9114
Jason Baronb36464772021-01-14 22:27:56 -05009115 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009116 put_smstate(u32, buf, 0x7e84, dt.size);
9117 put_smstate(u64, buf, 0x7e88, dt.address);
9118
9119 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9120 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009121 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009122 put_smstate(u32, buf, 0x7e74, seg.limit);
9123 put_smstate(u64, buf, 0x7e78, seg.base);
9124
Jason Baronb36464772021-01-14 22:27:56 -05009125 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009126 put_smstate(u32, buf, 0x7e64, dt.size);
9127 put_smstate(u64, buf, 0x7e68, dt.address);
9128
9129 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009130 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009131}
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009132#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009133
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009134static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02009135{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009136 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02009137 struct desc_ptr dt;
Sean Christophersondbc47392021-06-22 10:56:59 -07009138 unsigned long cr0;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009139 char buf[512];
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009140
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009141 memset(buf, 0, 512);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009142#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009143 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009144 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009145 else
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009146#endif
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009147 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009148
Ladi Prosek0234bf82017-10-11 16:54:40 +02009149 /*
Sean Christophersonecc513e2021-06-09 11:56:19 -07009150 * Give enter_smm() a chance to make ISA-specific changes to the vCPU
9151 * state (e.g. leave guest mode) after we've saved the state into the
9152 * SMM state-save area.
Ladi Prosek0234bf82017-10-11 16:54:40 +02009153 */
Sean Christophersonecc513e2021-06-09 11:56:19 -07009154 static_call(kvm_x86_enter_smm)(vcpu, buf);
Ladi Prosek0234bf82017-10-11 16:54:40 +02009155
Sean Christophersondc872752021-06-09 11:56:15 -07009156 kvm_smm_changed(vcpu, true);
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009157 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009158
Jason Baronb36464772021-01-14 22:27:56 -05009159 if (static_call(kvm_x86_get_nmi_mask)(vcpu))
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009160 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
9161 else
Jason Baronb36464772021-01-14 22:27:56 -05009162 static_call(kvm_x86_set_nmi_mask)(vcpu, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009163
9164 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
9165 kvm_rip_write(vcpu, 0x8000);
9166
9167 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
Jason Baronb36464772021-01-14 22:27:56 -05009168 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009169 vcpu->arch.cr0 = cr0;
9170
Jason Baronb36464772021-01-14 22:27:56 -05009171 static_call(kvm_x86_set_cr4)(vcpu, 0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009172
Paolo Bonzini18c36262015-08-07 12:27:54 +02009173 /* Undocumented: IDT limit is set to zero on entry to SMM. */
9174 dt.address = dt.size = 0;
Jason Baronb36464772021-01-14 22:27:56 -05009175 static_call(kvm_x86_set_idt)(vcpu, &dt);
Paolo Bonzini18c36262015-08-07 12:27:54 +02009176
Paolo Bonzini996ff542020-12-14 07:49:54 -05009177 kvm_set_dr(vcpu, 7, DR7_FIXED_1);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009178
9179 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
9180 cs.base = vcpu->arch.smbase;
9181
9182 ds.selector = 0;
9183 ds.base = 0;
9184
9185 cs.limit = ds.limit = 0xffffffff;
9186 cs.type = ds.type = 0x3;
9187 cs.dpl = ds.dpl = 0;
9188 cs.db = ds.db = 0;
9189 cs.s = ds.s = 1;
9190 cs.l = ds.l = 0;
9191 cs.g = ds.g = 1;
9192 cs.avl = ds.avl = 0;
9193 cs.present = ds.present = 1;
9194 cs.unusable = ds.unusable = 0;
9195 cs.padding = ds.padding = 0;
9196
9197 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
9198 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
9199 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
9200 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
9201 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
9202 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
9203
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009204#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009205 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Jason Baronb36464772021-01-14 22:27:56 -05009206 static_call(kvm_x86_set_efer)(vcpu, 0);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009207#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009208
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08009209 kvm_update_cpuid_runtime(vcpu);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009210 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009211}
9212
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009213static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009214{
9215 vcpu->arch.smi_pending = true;
9216 kvm_make_request(KVM_REQ_EVENT, vcpu);
9217}
9218
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009219void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
9220 unsigned long *vcpu_bitmap)
9221{
Vitaly Kuznetsov620b2432021-09-03 09:51:41 +02009222 kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC, vcpu_bitmap);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009223}
9224
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01009225void kvm_make_scan_ioapic_request(struct kvm *kvm)
9226{
9227 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
9228}
9229
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009230void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
9231{
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009232 bool activate;
9233
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009234 if (!lapic_in_kernel(vcpu))
9235 return;
9236
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009237 mutex_lock(&vcpu->kvm->arch.apicv_update_lock);
9238
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009239 activate = kvm_apicv_activated(vcpu->kvm);
9240 if (vcpu->arch.apicv_active == activate)
9241 goto out;
9242
9243 vcpu->arch.apicv_active = activate;
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009244 kvm_apic_update_apicv(vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009245 static_call(kvm_x86_refresh_apicv_exec_ctrl)(vcpu);
Vitaly Kuznetsovbca66db2021-06-09 17:09:10 +02009246
9247 /*
9248 * When APICv gets disabled, we may still have injected interrupts
9249 * pending. At the same time, KVM_REQ_EVENT may not be set as APICv was
9250 * still active when the interrupt got accepted. Make sure
9251 * inject_pending_event() is called to check for that.
9252 */
9253 if (!vcpu->arch.apicv_active)
9254 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009255
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009256out:
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009257 mutex_unlock(&vcpu->kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009258}
9259EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv);
9260
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009261void __kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009262{
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009263 unsigned long old, new;
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009264
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009265 if (!kvm_x86_ops.check_apicv_inhibit_reasons ||
Jason Baronb36464772021-01-14 22:27:56 -05009266 !static_call(kvm_x86_check_apicv_inhibit_reasons)(bit))
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06009267 return;
9268
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009269 old = new = kvm->arch.apicv_inhibit_reasons;
9270
9271 if (activate)
9272 __clear_bit(bit, &new);
9273 else
9274 __set_bit(bit, &new);
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009275
Maxim Levitsky36222b12021-08-10 23:52:43 +03009276 if (!!old != !!new) {
9277 trace_kvm_apicv_update_request(activate, bit);
9278 kvm_make_all_cpus_request(kvm, KVM_REQ_APICV_UPDATE);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009279 kvm->arch.apicv_inhibit_reasons = new;
Maxim Levitsky36222b12021-08-10 23:52:43 +03009280 if (new) {
9281 unsigned long gfn = gpa_to_gfn(APIC_DEFAULT_PHYS_BASE);
Maxim Levitsky36222b12021-08-10 23:52:43 +03009282 kvm_zap_gfn_range(kvm, gfn, gfn+1);
9283 }
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009284 } else
9285 kvm->arch.apicv_inhibit_reasons = new;
9286}
9287EXPORT_SYMBOL_GPL(__kvm_request_apicv_update);
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05009288
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009289void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
9290{
9291 mutex_lock(&kvm->arch.apicv_update_lock);
9292 __kvm_request_apicv_update(kvm, activate, bit);
9293 mutex_unlock(&kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009294}
9295EXPORT_SYMBOL_GPL(kvm_request_apicv_update);
9296
Yang Zhang3d81bc72013-04-11 19:25:13 +08009297static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009298{
Wanpeng Lidcbd3e42018-12-17 10:43:23 +08009299 if (!kvm_apic_present(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08009300 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009301
Andrey Smetanin63086302015-11-10 15:36:32 +03009302 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009303
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07009304 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03009305 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009306 else {
Liran Alonfa59cc02017-12-24 18:12:53 +02009307 if (vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05009308 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Wanpeng Lie97f8522018-11-20 16:34:18 +08009309 if (ioapic_in_kernel(vcpu->kvm))
9310 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009311 }
Liran Alone40ff1d2018-03-21 02:50:31 +02009312
9313 if (is_guest_mode(vcpu))
9314 vcpu->arch.load_eoi_exitmap_pending = true;
9315 else
9316 kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu);
9317}
9318
9319static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
9320{
9321 u64 eoi_exit_bitmap[4];
9322
9323 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
9324 return;
9325
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009326 if (to_hv_vcpu(vcpu))
9327 bitmap_or((ulong *)eoi_exit_bitmap,
9328 vcpu->arch.ioapic_handled_vectors,
9329 to_hv_synic(vcpu)->vec_bitmap, 256);
9330
Jason Baronb36464772021-01-14 22:27:56 -05009331 static_call(kvm_x86_load_eoi_exitmap)(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009332}
9333
Eiichi Tsukatae649b3f2020-06-06 13:26:27 +09009334void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
9335 unsigned long start, unsigned long end)
Radim Krčmářb1394e72017-11-30 19:05:45 +01009336{
9337 unsigned long apic_address;
9338
9339 /*
9340 * The physical address of apic access page is stored in the VMCS.
9341 * Update it when it becomes invalid.
9342 */
9343 apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
9344 if (start <= apic_address && apic_address < end)
9345 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
9346}
9347
Tang Chen4256f432014-09-24 15:57:54 +08009348void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
9349{
Paolo Bonzini35754c92015-07-29 12:05:37 +02009350 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02009351 return;
9352
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009353 if (!kvm_x86_ops.set_apic_access_page_addr)
Tang Chen4256f432014-09-24 15:57:54 +08009354 return;
9355
Jason Baronb36464772021-01-14 22:27:56 -05009356 static_call(kvm_x86_set_apic_access_page_addr)(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009357}
Tang Chen4256f432014-09-24 15:57:54 +08009358
Sean Christophersond264ee02018-08-27 15:21:12 -07009359void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu)
9360{
9361 smp_send_reschedule(vcpu->cpu);
9362}
9363EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit);
9364
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009365/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01009366 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009367 * exiting to the userspace. Otherwise, the value will be returned to the
9368 * userspace.
9369 */
Avi Kivity851ba692009-08-24 11:10:17 +03009370static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009371{
9372 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08009373 bool req_int_win =
9374 dm_request_for_irq_injection(vcpu) &&
9375 kvm_cpu_accept_dm_intr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08009376 fastpath_t exit_fastpath;
Matt Gingell62a193e2015-11-16 15:26:07 -08009377
Jan Kiszka730dca42013-04-28 10:50:52 +02009378 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009379
Peter Xufb04a1e2020-09-30 21:22:22 -04009380 /* Forbid vmenter if vcpu dirty ring is soft-full */
9381 if (unlikely(vcpu->kvm->dirty_ring_size &&
9382 kvm_dirty_ring_soft_full(&vcpu->dirty_ring))) {
9383 vcpu->run->exit_reason = KVM_EXIT_DIRTY_RING_FULL;
9384 trace_kvm_dirty_ring_exit(vcpu);
9385 r = 0;
9386 goto out;
9387 }
9388
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02009389 if (kvm_request_pending(vcpu)) {
Sean Christopherson67369272021-07-02 15:04:25 -07009390 if (kvm_check_request(KVM_REQ_VM_BUGGED, vcpu)) {
9391 r = -EIO;
9392 goto out;
9393 }
Paolo Bonzini729c15c2020-09-22 06:53:57 -04009394 if (kvm_check_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu)) {
Paolo Bonzini9a78e152021-01-08 11:43:08 -05009395 if (unlikely(!kvm_x86_ops.nested_ops->get_nested_state_pages(vcpu))) {
Jim Mattson671ddc72019-10-15 10:44:05 -07009396 r = 0;
9397 goto out;
9398 }
9399 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009400 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05009401 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03009402 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03009403 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02009404 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00009405 kvm_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03009406 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
9407 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10009408 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
9409 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10009410 if (unlikely(r))
9411 goto out;
9412 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009413 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03009414 kvm_mmu_sync_roots(vcpu);
Paolo Bonzini727a7e22020-03-05 03:52:50 -05009415 if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu))
9416 kvm_mmu_load_pgd(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009417 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
Sean Christopherson77809382020-03-20 14:28:18 -07009418 kvm_vcpu_flush_tlb_all(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009419
9420 /* Flushing all ASIDs flushes the current ASID... */
9421 kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
9422 }
9423 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
9424 kvm_vcpu_flush_tlb_current(vcpu);
Sean Christopherson07ffaf32021-06-09 16:42:21 -07009425 if (kvm_check_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu))
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04009426 kvm_vcpu_flush_tlb_guest(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009427
Avi Kivitya8eeb042010-05-10 12:34:53 +03009428 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009429 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02009430 r = 0;
9431 goto out;
9432 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009433 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009434 if (is_guest_mode(vcpu)) {
9435 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9436 } else {
9437 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
9438 vcpu->mmio_needed = 0;
9439 r = 0;
9440 goto out;
9441 }
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01009442 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009443 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
9444 /* Page is swapped out. Do synthetic halt */
9445 vcpu->arch.apf.halted = true;
9446 r = 1;
9447 goto out;
9448 }
Glauber Costac9aaa892011-07-11 15:28:14 -04009449 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
9450 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009451 if (kvm_check_request(KVM_REQ_SMI, vcpu))
9452 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009453 if (kvm_check_request(KVM_REQ_NMI, vcpu))
9454 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009455 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009456 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009457 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009458 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07009459 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
9460 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
9461 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03009462 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07009463 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
9464 vcpu->run->eoi.vector =
9465 vcpu->arch.pending_ioapic_eoi;
9466 r = 0;
9467 goto out;
9468 }
9469 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08009470 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
9471 vcpu_scan_ioapic(vcpu);
Liran Alone40ff1d2018-03-21 02:50:31 +02009472 if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu))
9473 vcpu_load_eoi_exitmap(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009474 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
9475 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03009476 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
9477 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9478 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
9479 r = 0;
9480 goto out;
9481 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03009482 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
9483 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9484 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
9485 r = 0;
9486 goto out;
9487 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03009488 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009489 struct kvm_vcpu_hv *hv_vcpu = to_hv_vcpu(vcpu);
9490
Andrey Smetanindb3975712015-11-10 15:36:35 +03009491 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009492 vcpu->run->hyperv = hv_vcpu->exit;
Andrey Smetanindb3975712015-11-10 15:36:35 +03009493 r = 0;
9494 goto out;
9495 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03009496
9497 /*
9498 * KVM_REQ_HV_STIMER has to be processed after
9499 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
9500 * depend on the guest clock being up-to-date
9501 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03009502 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
9503 kvm_hv_process_stimers(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009504 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
9505 kvm_vcpu_update_apicv(vcpu);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02009506 if (kvm_check_request(KVM_REQ_APF_READY, vcpu))
9507 kvm_check_async_pf_completion(vcpu);
Alexander Graf1a1552542020-09-25 16:34:21 +02009508 if (kvm_check_request(KVM_REQ_MSR_FILTER_CHANGED, vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009509 static_call(kvm_x86_msr_filter_changed)(vcpu);
Makarand Sonarea85863c2021-02-12 16:50:12 -08009510
9511 if (kvm_check_request(KVM_REQ_UPDATE_CPU_DIRTY_LOGGING, vcpu))
9512 static_call(kvm_x86_update_cpu_dirty_logging)(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02009513 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009514
David Woodhouse40da8cc2020-12-09 20:08:30 +00009515 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win ||
9516 kvm_xen_has_interrupt(vcpu)) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01009517 ++vcpu->stat.req_event;
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009518 r = kvm_apic_accept_events(vcpu);
9519 if (r < 0) {
9520 r = 0;
9521 goto out;
9522 }
Jan Kiszka66450a22013-03-13 12:42:34 +01009523 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
9524 r = 1;
9525 goto out;
9526 }
9527
Jim Mattsona5f69092021-06-04 10:26:03 -07009528 r = inject_pending_event(vcpu, &req_immediate_exit);
9529 if (r < 0) {
9530 r = 0;
9531 goto out;
9532 }
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009533 if (req_int_win)
Jason Baronb36464772021-01-14 22:27:56 -05009534 static_call(kvm_x86_enable_irq_window)(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03009535
Avi Kivity3842d132010-07-27 12:30:24 +03009536 if (kvm_lapic_enabled(vcpu)) {
9537 update_cr8_intercept(vcpu);
9538 kvm_lapic_sync_to_vapic(vcpu);
9539 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009540 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009541
Avi Kivityd8368af2012-05-14 18:07:56 +03009542 r = kvm_mmu_reload(vcpu);
9543 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009544 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03009545 }
9546
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009547 preempt_disable();
9548
Jason Baronb36464772021-01-14 22:27:56 -05009549 static_call(kvm_x86_prepare_guest_switch)(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009550
9551 /*
9552 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
9553 * IPI are then delayed after guest entry, which ensures that they
9554 * result in virtual interrupt delivery.
9555 */
9556 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009557 vcpu->mode = IN_GUEST_MODE;
9558
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009559 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
9560
Lan Tianyu0f127d12016-03-13 11:10:29 +08009561 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009562 * 1) We should set ->mode before checking ->requests. Please see
Andrew Jonescde9af62017-04-26 22:32:24 +02009563 * the comment in kvm_vcpu_exiting_guest_mode().
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009564 *
Luwei Kang81b01662019-01-31 16:52:02 +08009565 * 2) For APICv, we should set ->mode before checking PID.ON. This
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009566 * pairs with the memory barrier implicit in pi_test_and_set_on
9567 * (see vmx_deliver_posted_interrupt).
9568 *
9569 * 3) This also orders the write to mode from any reads to the page
9570 * tables done while the VCPU is running. Please see the comment
9571 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009572 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009573 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009574
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009575 /*
9576 * This handles the case where a posted interrupt was
9577 * notified with kvm_vcpu_kick.
9578 */
Liran Alonfa59cc02017-12-24 18:12:53 +02009579 if (kvm_lapic_enabled(vcpu) && vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05009580 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009581
Wanpeng Li5a9f5442020-04-28 14:23:26 +08009582 if (kvm_vcpu_exit_request(vcpu)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009583 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009584 smp_wmb();
9585 local_irq_enable();
9586 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009587 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009588 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009589 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009590 }
9591
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009592 if (req_immediate_exit) {
9593 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009594 static_call(kvm_x86_request_immediate_exit)(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009595 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03009596
Sean Christopherson2620fe22020-01-17 11:30:51 -08009597 fpregs_assert_state_consistent();
9598 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9599 switch_fpu_return();
Rik van Riel5f409e22019-04-03 18:41:52 +02009600
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009601 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009602 set_debugreg(0, 7);
9603 set_debugreg(vcpu->arch.eff_db[0], 0);
9604 set_debugreg(vcpu->arch.eff_db[1], 1);
9605 set_debugreg(vcpu->arch.eff_db[2], 2);
9606 set_debugreg(vcpu->arch.eff_db[3], 3);
Lai Jiangshanf85d4012021-06-29 01:26:32 +08009607 } else if (unlikely(hw_breakpoint_active())) {
9608 set_debugreg(0, 7);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009609 }
9610
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05009611 for (;;) {
9612 exit_fastpath = static_call(kvm_x86_run)(vcpu);
9613 if (likely(exit_fastpath != EXIT_FASTPATH_REENTER_GUEST))
9614 break;
9615
9616 if (unlikely(kvm_vcpu_exit_request(vcpu))) {
9617 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
9618 break;
9619 }
9620
9621 if (vcpu->arch.apicv_active)
9622 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
9623 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009624
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009625 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009626 * Do this here before restoring debug registers on the host. And
9627 * since we do this before handling the vmexit, a DR access vmexit
9628 * can (a) read the correct value of the debug registers, (b) set
9629 * KVM_DEBUGREG_WONT_EXIT again.
9630 */
9631 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009632 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
Jason Baronb36464772021-01-14 22:27:56 -05009633 static_call(kvm_x86_sync_dirty_debug_regs)(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009634 kvm_update_dr0123(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009635 kvm_update_dr7(vcpu);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009636 }
9637
9638 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009639 * If the guest has used debug registers, at least dr7
9640 * will be disabled while returning to the host.
9641 * If we don't have active breakpoints in the host, we don't
9642 * care about the messed up debug address registers. But if
9643 * we have some of them active, restore the old state.
9644 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01009645 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009646 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009647
Jim Mattsonc9671182020-06-03 16:56:23 -07009648 vcpu->arch.last_vmentry_cpu = vcpu->cpu;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08009649 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10009650
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009651 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03009652 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08009653
Jason Baronb36464772021-01-14 22:27:56 -05009654 static_call(kvm_x86_handle_exit_irqoff)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009655
Sean Christophersond7a08882019-07-10 09:07:34 -07009656 /*
9657 * Consume any pending interrupts, including the possible source of
9658 * VM-Exit on SVM and any ticks that occur between VM-Exit and now.
9659 * An instruction is required after local_irq_enable() to fully unblock
9660 * interrupts on processors that implement an interrupt shadow, the
9661 * stat.exits increment will do nicely.
9662 */
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009663 kvm_before_interrupt(vcpu);
Sean Christophersond7a08882019-07-10 09:07:34 -07009664 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009665 ++vcpu->stat.exits;
Sean Christophersond7a08882019-07-10 09:07:34 -07009666 local_irq_disable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009667 kvm_after_interrupt(vcpu);
9668
Wanpeng Li16045712021-05-04 17:27:30 -07009669 /*
9670 * Wait until after servicing IRQs to account guest time so that any
9671 * ticks that occurred while running the guest are properly accounted
9672 * to the guest. Waiting until IRQs are enabled degrades the accuracy
9673 * of accounting via context tracking, but the loss of accuracy is
9674 * acceptable for all known use cases.
9675 */
9676 vtime_account_guest_exit();
9677
Wanpeng Liec0671d2019-05-20 16:18:08 +08009678 if (lapic_in_kernel(vcpu)) {
9679 s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta;
9680 if (delta != S64_MIN) {
9681 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta);
9682 vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN;
9683 }
9684 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009685
Paolo Bonzinif2485b32016-06-15 15:23:11 +02009686 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009687 preempt_enable();
9688
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009689 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03009690
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009691 /*
9692 * Profile KVM exit RIPs:
9693 */
9694 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009695 unsigned long rip = kvm_rip_read(vcpu);
9696 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009697 }
9698
Zachary Amsdencc578282012-02-03 15:43:50 -02009699 if (unlikely(vcpu->arch.tsc_always_catchup))
9700 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02009701
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03009702 if (vcpu->arch.apic_attention)
9703 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02009704
Jason Baronb36464772021-01-14 22:27:56 -05009705 r = static_call(kvm_x86_handle_exit)(vcpu, exit_fastpath);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009706 return r;
9707
9708cancel_injection:
Sean Christopherson8081ad02020-04-22 19:25:40 -07009709 if (req_immediate_exit)
9710 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009711 static_call(kvm_x86_cancel_injection)(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03009712 if (unlikely(vcpu->arch.apic_attention))
9713 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009714out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03009715 return r;
9716}
9717
Paolo Bonzini362c6982015-02-06 12:48:04 +01009718static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
9719{
Feng Wubf9f6ac2015-09-18 22:29:55 +08009720 if (!kvm_arch_vcpu_runnable(vcpu) &&
Jason Baronb36464772021-01-14 22:27:56 -05009721 (!kvm_x86_ops.pre_block || static_call(kvm_x86_pre_block)(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01009722 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
9723 kvm_vcpu_block(vcpu);
9724 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009725
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009726 if (kvm_x86_ops.post_block)
Jason Baronb36464772021-01-14 22:27:56 -05009727 static_call(kvm_x86_post_block)(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009728
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01009729 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
9730 return 1;
9731 }
Gleb Natapov09cec752009-03-23 15:11:44 +02009732
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009733 if (kvm_apic_accept_events(vcpu) < 0)
9734 return 0;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009735 switch(vcpu->arch.mp_state) {
9736 case KVM_MP_STATE_HALTED:
Tom Lendacky647daca2021-01-04 14:20:01 -06009737 case KVM_MP_STATE_AP_RESET_HOLD:
Paolo Bonzini362c6982015-02-06 12:48:04 +01009738 vcpu->arch.pv.pv_unhalted = false;
9739 vcpu->arch.mp_state =
9740 KVM_MP_STATE_RUNNABLE;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05009741 fallthrough;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009742 case KVM_MP_STATE_RUNNABLE:
9743 vcpu->arch.apf.halted = false;
9744 break;
9745 case KVM_MP_STATE_INIT_RECEIVED:
9746 break;
9747 default:
9748 return -EINTR;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009749 }
9750 return 1;
9751}
9752
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02009753static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
9754{
Paolo Bonzini56083bd2020-04-17 10:32:53 -04009755 if (is_guest_mode(vcpu))
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009756 kvm_check_nested_events(vcpu);
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +01009757
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02009758 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
9759 !vcpu->arch.apf.halted);
9760}
9761
Paolo Bonzini362c6982015-02-06 12:48:04 +01009762static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03009763{
9764 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009765 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03009766
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009767 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +02009768 vcpu->arch.l1tf_flush_l1d = true;
Marcelo Tosattid7690172008-09-08 15:23:48 -03009769
Paolo Bonzini362c6982015-02-06 12:48:04 +01009770 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +02009771 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009772 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009773 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +01009774 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009775 }
9776
Gleb Natapov09cec752009-03-23 15:11:44 +02009777 if (r <= 0)
9778 break;
9779
Marcelo Tosatti084071d2021-05-25 10:41:17 -03009780 kvm_clear_request(KVM_REQ_UNBLOCK, vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +02009781 if (kvm_cpu_has_pending_timer(vcpu))
9782 kvm_inject_pending_timer_irqs(vcpu);
9783
Matt Gingell782d4222015-11-16 15:26:00 -08009784 if (dm_request_for_irq_injection(vcpu) &&
9785 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +02009786 r = 0;
9787 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +02009788 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009789 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02009790 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009791
Thomas Gleixnerf3020b82020-07-30 09:19:01 +02009792 if (__xfer_to_guest_mode_work_pending()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009793 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02009794 r = xfer_to_guest_mode_handle_work(vcpu);
9795 if (r)
9796 return r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009797 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03009798 }
9799 }
9800
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009801 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009802
9803 return r;
9804}
9805
Gleb Natapov716d51a2012-09-03 15:24:26 +03009806static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
9807{
9808 int r;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07009809
Gleb Natapov716d51a2012-09-03 15:24:26 +03009810 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Sean Christopherson0ce97a22018-08-23 13:56:52 -07009811 r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
Gleb Natapov716d51a2012-09-03 15:24:26 +03009812 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07009813 return r;
Gleb Natapov716d51a2012-09-03 15:24:26 +03009814}
9815
9816static int complete_emulated_pio(struct kvm_vcpu *vcpu)
9817{
9818 BUG_ON(!vcpu->arch.pio.count);
9819
9820 return complete_emulated_io(vcpu);
9821}
9822
Avi Kivityf78146b2012-04-18 19:22:47 +03009823/*
9824 * Implements the following, as a state machine:
9825 *
9826 * read:
9827 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009828 * for each mmio piece in the fragment
9829 * write gpa, len
9830 * exit
9831 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03009832 * execute insn
9833 *
9834 * write:
9835 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009836 * for each mmio piece in the fragment
9837 * write gpa, len
9838 * copy data
9839 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03009840 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03009841static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02009842{
9843 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03009844 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009845 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02009846
Gleb Natapov716d51a2012-09-03 15:24:26 +03009847 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02009848
Gleb Natapov716d51a2012-09-03 15:24:26 +03009849 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009850 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
9851 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03009852 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009853 memcpy(frag->data, run->mmio.data, len);
9854
9855 if (frag->len <= 8) {
9856 /* Switch to the next fragment. */
9857 frag++;
9858 vcpu->mmio_cur_fragment++;
9859 } else {
9860 /* Go forward to the next mmio piece. */
9861 frag->data += len;
9862 frag->gpa += len;
9863 frag->len -= len;
9864 }
9865
Andrew Honiga08d3b32014-02-27 19:35:14 +01009866 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03009867 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02009868
9869 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02009870 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03009871 return 1;
9872 vcpu->mmio_read_completed = 1;
9873 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02009874 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009875
Gleb Natapov716d51a2012-09-03 15:24:26 +03009876 run->exit_reason = KVM_EXIT_MMIO;
9877 run->mmio.phys_addr = frag->gpa;
9878 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009879 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
9880 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03009881 run->mmio.is_write = vcpu->mmio_is_write;
9882 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
9883 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02009884}
9885
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009886static void kvm_save_current_fpu(struct fpu *fpu)
9887{
9888 /*
9889 * If the target FPU state is not resident in the CPU registers, just
9890 * memcpy() from current, else save CPU state directly to the target.
9891 */
9892 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9893 memcpy(&fpu->state, &current->thread.fpu.state,
9894 fpu_kernel_xstate_size);
9895 else
Thomas Gleixnerebe72342021-06-23 14:01:59 +02009896 save_fpregs_to_fpstate(fpu);
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009897}
9898
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02009899/* Swap (qemu) user FPU context for the guest FPU context. */
9900static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
9901{
Rik van Riel5f409e22019-04-03 18:41:52 +02009902 fpregs_lock();
9903
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009904 kvm_save_current_fpu(vcpu->arch.user_fpu);
9905
Tom Lendackyed02b212020-12-10 11:10:01 -06009906 /*
9907 * Guests with protected state can't have it set by the hypervisor,
9908 * so skip trying to set it.
9909 */
9910 if (vcpu->arch.guest_fpu)
9911 /* PKRU is separately restored in kvm_x86_ops.run. */
Thomas Gleixner1c61fad2021-06-23 14:02:01 +02009912 __restore_fpregs_from_fpstate(&vcpu->arch.guest_fpu->state,
Tom Lendackyed02b212020-12-10 11:10:01 -06009913 ~XFEATURE_MASK_PKRU);
Rik van Riel5f409e22019-04-03 18:41:52 +02009914
9915 fpregs_mark_activate();
9916 fpregs_unlock();
9917
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02009918 trace_kvm_fpu(1);
9919}
9920
9921/* When vcpu_run ends, restore user space FPU context. */
9922static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
9923{
Rik van Riel5f409e22019-04-03 18:41:52 +02009924 fpregs_lock();
9925
Tom Lendackyed02b212020-12-10 11:10:01 -06009926 /*
9927 * Guests with protected state can't have it read by the hypervisor,
9928 * so skip trying to save it.
9929 */
9930 if (vcpu->arch.guest_fpu)
9931 kvm_save_current_fpu(vcpu->arch.guest_fpu);
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009932
Thomas Gleixner1c61fad2021-06-23 14:02:01 +02009933 restore_fpregs_from_fpstate(&vcpu->arch.user_fpu->state);
Rik van Riel5f409e22019-04-03 18:41:52 +02009934
9935 fpregs_mark_activate();
9936 fpregs_unlock();
9937
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02009938 ++vcpu->stat.fpu_reload;
9939 trace_kvm_fpu(0);
9940}
9941
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009942int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009943{
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009944 struct kvm_run *kvm_run = vcpu->run;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009945 int r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009946
Christoffer Dallaccb7572017-12-04 21:35:25 +01009947 vcpu_load(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +01009948 kvm_sigset_activate(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08009949 kvm_run->flags = 0;
Peter Xu5663d8f2017-12-12 17:15:02 +01009950 kvm_load_guest_fpu(vcpu);
9951
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009952 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
Jan H. Schönherr2f173d22017-09-06 18:34:06 +02009953 if (kvm_run->immediate_exit) {
9954 r = -EINTR;
9955 goto out;
9956 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009957 kvm_vcpu_block(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009958 if (kvm_apic_accept_events(vcpu) < 0) {
9959 r = 0;
9960 goto out;
9961 }
Radim Krčmář72875d82017-04-26 22:32:19 +02009962 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009963 r = -EAGAIN;
Jan H. Schönherra0595002017-09-06 00:27:19 +02009964 if (signal_pending(current)) {
9965 r = -EINTR;
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009966 kvm_run->exit_reason = KVM_EXIT_INTR;
Jan H. Schönherra0595002017-09-06 00:27:19 +02009967 ++vcpu->stat.signal_exits;
9968 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009969 goto out;
9970 }
9971
Sean Christophersone489a4a2021-07-02 15:04:29 -07009972 if ((kvm_run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) ||
9973 (kvm_run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS)) {
Ken Hofsass01643c52018-01-31 16:03:36 -08009974 r = -EINVAL;
9975 goto out;
9976 }
9977
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009978 if (kvm_run->kvm_dirty_regs) {
Ken Hofsass01643c52018-01-31 16:03:36 -08009979 r = sync_regs(vcpu);
9980 if (r != 0)
9981 goto out;
9982 }
9983
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009984 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +02009985 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +01009986 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
9987 r = -EINVAL;
9988 goto out;
9989 }
9990 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009991
Gleb Natapov716d51a2012-09-03 15:24:26 +03009992 if (unlikely(vcpu->arch.complete_userspace_io)) {
9993 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
9994 vcpu->arch.complete_userspace_io = NULL;
9995 r = cui(vcpu);
9996 if (r <= 0)
Peter Xu5663d8f2017-12-12 17:15:02 +01009997 goto out;
Gleb Natapov716d51a2012-09-03 15:24:26 +03009998 } else
9999 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +020010000
Paolo Bonzini460df4c2017-02-08 11:50:15 +010010001 if (kvm_run->immediate_exit)
10002 r = -EINTR;
10003 else
10004 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010005
10006out:
Peter Xu5663d8f2017-12-12 17:15:02 +010010007 kvm_put_guest_fpu(vcpu);
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010008 if (kvm_run->kvm_valid_regs)
Ken Hofsass01643c52018-01-31 16:03:36 -080010009 store_regs(vcpu);
Marcelo Tosattif1d86e42010-05-03 23:04:27 -030010010 post_kvm_run_save(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010011 kvm_sigset_deactivate(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010012
Christoffer Dallaccb7572017-12-04 21:35:25 +010010013 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010014 return r;
10015}
10016
Ken Hofsass01643c52018-01-31 16:03:36 -080010017static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010018{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010019 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
10020 /*
10021 * We are here if userspace calls get_regs() in the middle of
10022 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +080010023 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010024 * that usually, but some bad designed PV devices (vmware
10025 * backdoor interface) need this to work
10026 */
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010027 emulator_writeback_register_cache(vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010028 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10029 }
Sean Christophersonde3cd112019-04-30 10:36:17 -070010030 regs->rax = kvm_rax_read(vcpu);
10031 regs->rbx = kvm_rbx_read(vcpu);
10032 regs->rcx = kvm_rcx_read(vcpu);
10033 regs->rdx = kvm_rdx_read(vcpu);
10034 regs->rsi = kvm_rsi_read(vcpu);
10035 regs->rdi = kvm_rdi_read(vcpu);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010036 regs->rsp = kvm_rsp_read(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010037 regs->rbp = kvm_rbp_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010038#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010039 regs->r8 = kvm_r8_read(vcpu);
10040 regs->r9 = kvm_r9_read(vcpu);
10041 regs->r10 = kvm_r10_read(vcpu);
10042 regs->r11 = kvm_r11_read(vcpu);
10043 regs->r12 = kvm_r12_read(vcpu);
10044 regs->r13 = kvm_r13_read(vcpu);
10045 regs->r14 = kvm_r14_read(vcpu);
10046 regs->r15 = kvm_r15_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010047#endif
10048
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010049 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +020010050 regs->rflags = kvm_get_rflags(vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010051}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010052
Ken Hofsass01643c52018-01-31 16:03:36 -080010053int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10054{
10055 vcpu_load(vcpu);
10056 __get_regs(vcpu, regs);
Christoffer Dall1fc9b762017-12-04 21:35:26 +010010057 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010058 return 0;
10059}
10060
Ken Hofsass01643c52018-01-31 16:03:36 -080010061static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010062{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010063 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
10064 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10065
Sean Christophersonde3cd112019-04-30 10:36:17 -070010066 kvm_rax_write(vcpu, regs->rax);
10067 kvm_rbx_write(vcpu, regs->rbx);
10068 kvm_rcx_write(vcpu, regs->rcx);
10069 kvm_rdx_write(vcpu, regs->rdx);
10070 kvm_rsi_write(vcpu, regs->rsi);
10071 kvm_rdi_write(vcpu, regs->rdi);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010072 kvm_rsp_write(vcpu, regs->rsp);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010073 kvm_rbp_write(vcpu, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010074#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010075 kvm_r8_write(vcpu, regs->r8);
10076 kvm_r9_write(vcpu, regs->r9);
10077 kvm_r10_write(vcpu, regs->r10);
10078 kvm_r11_write(vcpu, regs->r11);
10079 kvm_r12_write(vcpu, regs->r12);
10080 kvm_r13_write(vcpu, regs->r13);
10081 kvm_r14_write(vcpu, regs->r14);
10082 kvm_r15_write(vcpu, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010083#endif
10084
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010085 kvm_rip_write(vcpu, regs->rip);
Wanpeng Lid73235d2017-12-07 00:30:08 -080010086 kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010087
Jan Kiszkab4f14ab2008-04-30 17:59:04 +020010088 vcpu->arch.exception.pending = false;
10089
Avi Kivity3842d132010-07-27 12:30:24 +030010090 kvm_make_request(KVM_REQ_EVENT, vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010091}
Avi Kivity3842d132010-07-27 12:30:24 +030010092
Ken Hofsass01643c52018-01-31 16:03:36 -080010093int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10094{
10095 vcpu_load(vcpu);
10096 __set_regs(vcpu, regs);
Christoffer Dall875656f2017-12-04 21:35:27 +010010097 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010098 return 0;
10099}
10100
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010101void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
10102{
10103 struct kvm_segment cs;
10104
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010105 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010106 *db = cs.db;
10107 *l = cs.l;
10108}
10109EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
10110
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010111static void __get_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010112{
Gleb Natapov89a27f42010-02-16 10:51:48 +020010113 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010114
Tom Lendacky52657132020-12-10 11:09:59 -060010115 if (vcpu->arch.guest_state_protected)
10116 goto skip_protected_regs;
10117
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010118 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10119 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10120 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10121 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10122 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10123 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010124
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010125 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10126 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010127
Jason Baronb36464772021-01-14 22:27:56 -050010128 static_call(kvm_x86_get_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010129 sregs->idt.limit = dt.size;
10130 sregs->idt.base = dt.address;
Jason Baronb36464772021-01-14 22:27:56 -050010131 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010132 sregs->gdt.limit = dt.size;
10133 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010134
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010135 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +020010136 sregs->cr3 = kvm_read_cr3(vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010137
10138skip_protected_regs:
10139 sregs->cr0 = kvm_read_cr0(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +020010140 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010141 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +020010142 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010143 sregs->apic_base = kvm_get_apic_base(vcpu);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010144}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010145
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010146static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10147{
10148 __get_sregs_common(vcpu, sregs);
10149
10150 if (vcpu->arch.guest_state_protected)
10151 return;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010152
Liran Alon04140b42018-03-23 03:01:31 +030010153 if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +030010154 set_bit(vcpu->arch.interrupt.nr,
10155 (unsigned long *)sregs->interrupt_bitmap);
Ken Hofsass01643c52018-01-31 16:03:36 -080010156}
Gleb Natapov16d7a192009-04-21 17:45:10 +030010157
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010158static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10159{
10160 int i;
10161
10162 __get_sregs_common(vcpu, (struct kvm_sregs *)sregs2);
10163
10164 if (vcpu->arch.guest_state_protected)
10165 return;
10166
10167 if (is_pae_paging(vcpu)) {
10168 for (i = 0 ; i < 4 ; i++)
10169 sregs2->pdptrs[i] = kvm_pdptr_read(vcpu, i);
10170 sregs2->flags |= KVM_SREGS2_FLAGS_PDPTRS_VALID;
10171 }
10172}
10173
Ken Hofsass01643c52018-01-31 16:03:36 -080010174int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
10175 struct kvm_sregs *sregs)
10176{
10177 vcpu_load(vcpu);
10178 __get_sregs(vcpu, sregs);
Christoffer Dallbcdec412017-12-04 21:35:28 +010010179 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010180 return 0;
10181}
10182
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010183int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
10184 struct kvm_mp_state *mp_state)
10185{
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010186 int r;
10187
Christoffer Dallfd232562017-12-04 21:35:30 +010010188 vcpu_load(vcpu);
Sean Christophersonf958bd22019-12-09 12:19:31 -080010189 if (kvm_mpx_supported())
10190 kvm_load_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010191
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010192 r = kvm_apic_accept_events(vcpu);
10193 if (r < 0)
10194 goto out;
10195 r = 0;
10196
Tom Lendacky647daca2021-01-04 14:20:01 -060010197 if ((vcpu->arch.mp_state == KVM_MP_STATE_HALTED ||
10198 vcpu->arch.mp_state == KVM_MP_STATE_AP_RESET_HOLD) &&
10199 vcpu->arch.pv.pv_unhalted)
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +053010200 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
10201 else
10202 mp_state->mp_state = vcpu->arch.mp_state;
10203
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010204out:
Sean Christophersonf958bd22019-12-09 12:19:31 -080010205 if (kvm_mpx_supported())
10206 kvm_put_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010207 vcpu_put(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010208 return r;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010209}
10210
10211int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
10212 struct kvm_mp_state *mp_state)
10213{
Christoffer Dalle83dff52017-12-04 21:35:31 +010010214 int ret = -EINVAL;
10215
10216 vcpu_load(vcpu);
10217
Paolo Bonzinibce87cc2016-01-08 13:48:51 +010010218 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +010010219 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
Christoffer Dalle83dff52017-12-04 21:35:31 +010010220 goto out;
Jan Kiszka66450a22013-03-13 12:42:34 +010010221
Liran Alon27cbe7d2019-11-11 11:16:40 +020010222 /*
10223 * KVM_MP_STATE_INIT_RECEIVED means the processor is in
10224 * INIT state; latched init should be reported using
10225 * KVM_SET_VCPU_EVENTS, so reject it here.
10226 */
10227 if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) &&
David Hildenbrand28bf2882017-03-23 11:46:03 +010010228 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
10229 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
Christoffer Dalle83dff52017-12-04 21:35:31 +010010230 goto out;
David Hildenbrand28bf2882017-03-23 11:46:03 +010010231
Jan Kiszka66450a22013-03-13 12:42:34 +010010232 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
10233 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
10234 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
10235 } else
10236 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +030010237 kvm_make_request(KVM_REQ_EVENT, vcpu);
Christoffer Dalle83dff52017-12-04 21:35:31 +010010238
10239 ret = 0;
10240out:
10241 vcpu_put(vcpu);
10242 return ret;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010243}
10244
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010245int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
10246 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010247{
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010248 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010249 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010250
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010251 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +020010252
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010253 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010254 has_error_code, error_code);
Sean Christopherson10517782019-08-27 14:40:35 -070010255 if (ret) {
10256 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
10257 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
10258 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010259 return 0;
Sean Christopherson10517782019-08-27 14:40:35 -070010260 }
Gleb Natapovc6975182010-02-18 12:15:01 +020010261
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010262 kvm_rip_write(vcpu, ctxt->eip);
10263 kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010264 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +020010265}
10266EXPORT_SYMBOL_GPL(kvm_task_switch);
10267
Sean Christophersonee69c922020-10-06 18:44:16 -070010268static bool kvm_is_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Lan Tianyuf2981032017-12-14 03:01:52 -050010269{
Tianyu Lan37b95952018-01-16 17:34:07 +080010270 if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) {
Lan Tianyuf2981032017-12-14 03:01:52 -050010271 /*
10272 * When EFER.LME and CR0.PG are set, the processor is in
10273 * 64-bit mode (though maybe in a 32-bit code segment).
10274 * CR4.PAE and EFER.LMA must be set.
10275 */
Sean Christophersonee69c922020-10-06 18:44:16 -070010276 if (!(sregs->cr4 & X86_CR4_PAE) || !(sregs->efer & EFER_LMA))
10277 return false;
Sean Christophersonca29e142021-02-03 16:01:12 -080010278 if (kvm_vcpu_is_illegal_gpa(vcpu, sregs->cr3))
Paolo Bonzinic1c35cf2020-11-13 08:30:38 -050010279 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010280 } else {
10281 /*
10282 * Not in 64-bit mode: EFER.LMA is clear and the code
10283 * segment cannot be 64-bit.
10284 */
10285 if (sregs->efer & EFER_LMA || sregs->cs.l)
Sean Christophersonee69c922020-10-06 18:44:16 -070010286 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010287 }
10288
Sean Christophersonee69c922020-10-06 18:44:16 -070010289 return kvm_is_valid_cr4(vcpu, sregs->cr4);
Lan Tianyuf2981032017-12-14 03:01:52 -050010290}
10291
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010292static int __set_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs,
10293 int *mmu_reset_needed, bool update_pdptrs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010294{
Jan Kiszka58cb6282014-01-24 16:48:44 +010010295 struct msr_data apic_base_msr;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010296 int idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +020010297 struct desc_ptr dt;
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010298
Sean Christophersonee69c922020-10-06 18:44:16 -070010299 if (!kvm_is_valid_sregs(vcpu, sregs))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010300 return -EINVAL;
Lan Tianyuf2981032017-12-14 03:01:52 -050010301
Jim Mattsond3802282017-08-10 10:14:13 -070010302 apic_base_msr.data = sregs->apic_base;
10303 apic_base_msr.host_initiated = true;
10304 if (kvm_set_apic_base(vcpu, &apic_base_msr))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010305 return -EINVAL;
Petr Matousek6d1068b2012-11-06 19:24:07 +010010306
Tom Lendacky52657132020-12-10 11:09:59 -060010307 if (vcpu->arch.guest_state_protected)
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010308 return 0;
Tom Lendacky52657132020-12-10 11:09:59 -060010309
Gleb Natapov89a27f42010-02-16 10:51:48 +020010310 dt.size = sregs->idt.limit;
10311 dt.address = sregs->idt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010312 static_call(kvm_x86_set_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010313 dt.size = sregs->gdt.limit;
10314 dt.address = sregs->gdt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010315 static_call(kvm_x86_set_gdt)(vcpu, &dt);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010316
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010317 vcpu->arch.cr2 = sregs->cr2;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010318 *mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +020010319 vcpu->arch.cr3 = sregs->cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -070010320 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010321
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010322 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010323
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010324 *mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Jason Baronb36464772021-01-14 22:27:56 -050010325 static_call(kvm_x86_set_efer)(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010326
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010327 *mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Jason Baronb36464772021-01-14 22:27:56 -050010328 static_call(kvm_x86_set_cr0)(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +000010329 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010330
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010331 *mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Jason Baronb36464772021-01-14 22:27:56 -050010332 static_call(kvm_x86_set_cr4)(vcpu, sregs->cr4);
Xiao Guangrong63f42e02011-01-12 15:39:18 +080010333
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010334 if (update_pdptrs) {
10335 idx = srcu_read_lock(&vcpu->kvm->srcu);
10336 if (is_pae_paging(vcpu)) {
10337 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
10338 *mmu_reset_needed = 1;
10339 }
10340 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Marcelo Tosatti7c93be442009-10-26 16:48:33 -020010341 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010342
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010343 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10344 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10345 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10346 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10347 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10348 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010349
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010350 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10351 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010352
Mikhail Ershov5f0269f2009-08-03 14:58:25 +030010353 update_cr8_intercept(vcpu);
10354
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010355 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +030010356 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010357 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +020010358 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010359 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10360
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010361 return 0;
10362}
10363
10364static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10365{
10366 int pending_vec, max_bits;
10367 int mmu_reset_needed = 0;
10368 int ret = __set_sregs_common(vcpu, sregs, &mmu_reset_needed, true);
10369
10370 if (ret)
10371 return ret;
10372
10373 if (mmu_reset_needed)
10374 kvm_mmu_reset_context(vcpu);
10375
Tom Lendacky52657132020-12-10 11:09:59 -060010376 max_bits = KVM_NR_INTERRUPTS;
10377 pending_vec = find_first_bit(
10378 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010379
Tom Lendacky52657132020-12-10 11:09:59 -060010380 if (pending_vec < max_bits) {
10381 kvm_queue_interrupt(vcpu, pending_vec, false);
10382 pr_debug("Set back pending irq %d\n", pending_vec);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010383 kvm_make_request(KVM_REQ_EVENT, vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010384 }
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010385 return 0;
10386}
Tom Lendacky52657132020-12-10 11:09:59 -060010387
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010388static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10389{
10390 int mmu_reset_needed = 0;
10391 bool valid_pdptrs = sregs2->flags & KVM_SREGS2_FLAGS_PDPTRS_VALID;
10392 bool pae = (sregs2->cr0 & X86_CR0_PG) && (sregs2->cr4 & X86_CR4_PAE) &&
10393 !(sregs2->efer & EFER_LMA);
10394 int i, ret;
Avi Kivity3842d132010-07-27 12:30:24 +030010395
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010396 if (sregs2->flags & ~KVM_SREGS2_FLAGS_PDPTRS_VALID)
10397 return -EINVAL;
10398
10399 if (valid_pdptrs && (!pae || vcpu->arch.guest_state_protected))
10400 return -EINVAL;
10401
10402 ret = __set_sregs_common(vcpu, (struct kvm_sregs *)sregs2,
10403 &mmu_reset_needed, !valid_pdptrs);
10404 if (ret)
10405 return ret;
10406
10407 if (valid_pdptrs) {
10408 for (i = 0; i < 4 ; i++)
10409 kvm_pdptr_write(vcpu, i, sregs2->pdptrs[i]);
10410
10411 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
10412 mmu_reset_needed = 1;
Maxim Levitsky158a48e2021-06-07 12:02:03 +030010413 vcpu->arch.pdptrs_from_userspace = true;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010414 }
10415 if (mmu_reset_needed)
10416 kvm_mmu_reset_context(vcpu);
10417 return 0;
Ken Hofsass01643c52018-01-31 16:03:36 -080010418}
10419
10420int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
10421 struct kvm_sregs *sregs)
10422{
10423 int ret;
10424
10425 vcpu_load(vcpu);
10426 ret = __set_sregs(vcpu, sregs);
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010427 vcpu_put(vcpu);
10428 return ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010429}
10430
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010431int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
10432 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010433{
Jan Kiszka355be0b2009-10-03 00:31:21 +020010434 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010435 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010436
Tom Lendacky8d4846b2020-12-10 11:09:43 -060010437 if (vcpu->arch.guest_state_protected)
10438 return -EINVAL;
10439
Christoffer Dall66b56562017-12-04 21:35:33 +010010440 vcpu_load(vcpu);
10441
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010442 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
10443 r = -EBUSY;
10444 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +030010445 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010446 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
10447 kvm_queue_exception(vcpu, DB_VECTOR);
10448 else
10449 kvm_queue_exception(vcpu, BP_VECTOR);
10450 }
10451
Jan Kiszka91586a32009-10-05 13:07:21 +020010452 /*
10453 * Read rflags as long as potentially injected trace flags are still
10454 * filtered out.
10455 */
10456 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010457
10458 vcpu->guest_debug = dbg->control;
10459 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
10460 vcpu->guest_debug = 0;
10461
10462 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010463 for (i = 0; i < KVM_NR_DB_REGS; ++i)
10464 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +020010465 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010466 } else {
10467 for (i = 0; i < KVM_NR_DB_REGS; i++)
10468 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010469 }
Jan Kiszkac8639012012-09-21 05:42:55 +020010470 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010471
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010472 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Yuan Yaoe87e46d2021-05-26 14:38:28 +080010473 vcpu->arch.singlestep_rip = kvm_get_linear_rip(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010474
Jan Kiszka91586a32009-10-05 13:07:21 +020010475 /*
10476 * Trigger an rflags update that will inject or remove the trace
10477 * flags.
10478 */
10479 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010480
Jason Baronb36464772021-01-14 22:27:56 -050010481 static_call(kvm_x86_update_exception_bitmap)(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010482
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010483 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010484
Avi Kivity2122ff52010-05-13 11:25:04 +030010485out:
Christoffer Dall66b56562017-12-04 21:35:33 +010010486 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010487 return r;
10488}
10489
10490/*
Zhang Xiantao8b006792007-11-16 13:05:55 +080010491 * Translate a guest virtual address to a guest physical address.
10492 */
10493int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
10494 struct kvm_translation *tr)
10495{
10496 unsigned long vaddr = tr->linear_address;
10497 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010498 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010499
Christoffer Dall1da5b612017-12-04 21:35:32 +010010500 vcpu_load(vcpu);
10501
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010502 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +020010503 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010504 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010505 tr->physical_address = gpa;
10506 tr->valid = gpa != UNMAPPED_GVA;
10507 tr->writeable = 1;
10508 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010509
Christoffer Dall1da5b612017-12-04 21:35:32 +010010510 vcpu_put(vcpu);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010511 return 0;
10512}
10513
Hollis Blanchardd0752062007-10-31 17:24:25 -050010514int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10515{
Christoffer Dall13931232017-12-04 21:35:34 +010010516 struct fxregs_state *fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010517
Tom Lendackyed02b212020-12-10 11:10:01 -060010518 if (!vcpu->arch.guest_fpu)
10519 return 0;
10520
Christoffer Dall13931232017-12-04 21:35:34 +010010521 vcpu_load(vcpu);
10522
Marc Orrb666a4b2018-11-06 14:53:56 -080010523 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010524 memcpy(fpu->fpr, fxsave->st_space, 128);
10525 fpu->fcw = fxsave->cwd;
10526 fpu->fsw = fxsave->swd;
10527 fpu->ftwx = fxsave->twd;
10528 fpu->last_opcode = fxsave->fop;
10529 fpu->last_ip = fxsave->rip;
10530 fpu->last_dp = fxsave->rdp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010531 memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010532
Christoffer Dall13931232017-12-04 21:35:34 +010010533 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010534 return 0;
10535}
10536
10537int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10538{
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010539 struct fxregs_state *fxsave;
10540
Tom Lendackyed02b212020-12-10 11:10:01 -060010541 if (!vcpu->arch.guest_fpu)
10542 return 0;
10543
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010544 vcpu_load(vcpu);
10545
Marc Orrb666a4b2018-11-06 14:53:56 -080010546 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010547
Hollis Blanchardd0752062007-10-31 17:24:25 -050010548 memcpy(fxsave->st_space, fpu->fpr, 128);
10549 fxsave->cwd = fpu->fcw;
10550 fxsave->swd = fpu->fsw;
10551 fxsave->twd = fpu->ftwx;
10552 fxsave->fop = fpu->last_opcode;
10553 fxsave->rip = fpu->last_ip;
10554 fxsave->rdp = fpu->last_dp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010555 memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010556
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010557 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010558 return 0;
10559}
10560
Ken Hofsass01643c52018-01-31 16:03:36 -080010561static void store_regs(struct kvm_vcpu *vcpu)
10562{
10563 BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES);
10564
10565 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS)
10566 __get_regs(vcpu, &vcpu->run->s.regs.regs);
10567
10568 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS)
10569 __get_sregs(vcpu, &vcpu->run->s.regs.sregs);
10570
10571 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS)
10572 kvm_vcpu_ioctl_x86_get_vcpu_events(
10573 vcpu, &vcpu->run->s.regs.events);
10574}
10575
10576static int sync_regs(struct kvm_vcpu *vcpu)
10577{
Ken Hofsass01643c52018-01-31 16:03:36 -080010578 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) {
10579 __set_regs(vcpu, &vcpu->run->s.regs.regs);
10580 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS;
10581 }
10582 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) {
10583 if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs))
10584 return -EINVAL;
10585 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS;
10586 }
10587 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) {
10588 if (kvm_vcpu_ioctl_x86_set_vcpu_events(
10589 vcpu, &vcpu->run->s.regs.events))
10590 return -EINVAL;
10591 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS;
10592 }
10593
10594 return 0;
10595}
10596
Tom Lendackyed02b212020-12-10 11:10:01 -060010597void kvm_free_guest_fpu(struct kvm_vcpu *vcpu)
10598{
10599 if (vcpu->arch.guest_fpu) {
10600 kmem_cache_free(x86_fpu_cache, vcpu->arch.guest_fpu);
10601 vcpu->arch.guest_fpu = NULL;
10602 }
10603}
10604EXPORT_SYMBOL_GPL(kvm_free_guest_fpu);
10605
Sean Christopherson897cc382019-12-18 13:55:09 -080010606int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010607{
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010010608 if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
Sean Christopherson897cc382019-12-18 13:55:09 -080010609 pr_warn_once("kvm: SMP vm created on host with unstable TSC; "
10610 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +080010611
Sean Christopherson897cc382019-12-18 13:55:09 -080010612 return 0;
Avi Kivity26e52152007-11-20 15:30:24 +020010613}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010614
Sean Christophersone529ef62019-12-18 13:55:15 -080010615int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
Avi Kivity26e52152007-11-20 15:30:24 +020010616{
Sean Christopherson95a0d012019-12-18 13:55:23 -080010617 struct page *page;
10618 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010619
Sean Christopherson63f5a192021-06-22 10:56:52 -070010620 vcpu->arch.last_vmentry_cpu = -1;
Sean Christopherson71170032021-09-20 17:02:54 -070010621 vcpu->arch.regs_avail = ~0;
10622 vcpu->arch.regs_dirty = ~0;
Sean Christopherson63f5a192021-06-22 10:56:52 -070010623
Sean Christopherson95a0d012019-12-18 13:55:23 -080010624 if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu))
10625 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10626 else
10627 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
10628
Sean Christopherson95a0d012019-12-18 13:55:23 -080010629 r = kvm_mmu_create(vcpu);
10630 if (r < 0)
10631 return r;
10632
10633 if (irqchip_in_kernel(vcpu->kvm)) {
Sean Christopherson95a0d012019-12-18 13:55:23 -080010634 r = kvm_create_lapic(vcpu, lapic_timer_advance_ns);
10635 if (r < 0)
10636 goto fail_mmu_destroy;
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -060010637 if (kvm_apicv_activated(vcpu->kvm))
10638 vcpu->arch.apicv_active = true;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010639 } else
Cun Li6e4e3b42021-01-11 23:24:35 +080010640 static_branch_inc(&kvm_has_noapic_vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010641
10642 r = -ENOMEM;
10643
Shakeel Butt93bb59c2020-12-18 14:01:38 -080010644 page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010645 if (!page)
10646 goto fail_free_lapic;
10647 vcpu->arch.pio_data = page_address(page);
10648
10649 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
10650 GFP_KERNEL_ACCOUNT);
10651 if (!vcpu->arch.mce_banks)
10652 goto fail_free_pio_data;
10653 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
10654
10655 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask,
10656 GFP_KERNEL_ACCOUNT))
10657 goto fail_free_mce_banks;
10658
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010659 if (!alloc_emulate_ctxt(vcpu))
10660 goto free_wbinvd_dirty_mask;
10661
Sean Christopherson95a0d012019-12-18 13:55:23 -080010662 vcpu->arch.user_fpu = kmem_cache_zalloc(x86_fpu_cache,
10663 GFP_KERNEL_ACCOUNT);
10664 if (!vcpu->arch.user_fpu) {
10665 pr_err("kvm: failed to allocate userspace's fpu\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010666 goto free_emulate_ctxt;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010667 }
10668
10669 vcpu->arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
10670 GFP_KERNEL_ACCOUNT);
10671 if (!vcpu->arch.guest_fpu) {
10672 pr_err("kvm: failed to allocate vcpu's fpu\n");
10673 goto free_user_fpu;
10674 }
Sean Christopherson583d3692021-09-20 17:02:59 -070010675 fpstate_init(&vcpu->arch.guest_fpu->state);
10676 if (boot_cpu_has(X86_FEATURE_XSAVES))
10677 vcpu->arch.guest_fpu->state.xsave.header.xcomp_bv =
10678 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010679
Sean Christopherson95a0d012019-12-18 13:55:23 -080010680 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Sean Christophersona8ac8642021-02-03 16:01:15 -080010681 vcpu->arch.reserved_gpa_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010682
10683 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
10684
10685 kvm_async_pf_hash_reset(vcpu);
10686 kvm_pmu_init(vcpu);
10687
10688 vcpu->arch.pending_external_vector = -1;
10689 vcpu->arch.preempted_in_kernel = false;
10690
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000010691#if IS_ENABLED(CONFIG_HYPERV)
10692 vcpu->arch.hv_root_tdp = INVALID_PAGE;
10693#endif
10694
Jason Baronb36464772021-01-14 22:27:56 -050010695 r = static_call(kvm_x86_vcpu_create)(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010696 if (r)
10697 goto free_guest_fpu;
Sean Christopherson5f73db12019-12-18 13:55:18 -080010698
Sean Christopherson0cf91352019-03-07 15:43:02 -080010699 vcpu->arch.arch_capabilities = kvm_get_arch_capabilities();
Jim Mattsone53d88af2018-10-30 12:20:21 -070010700 vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT;
Xiao Guangrong19efffa2015-06-15 16:55:31 +080010701 kvm_vcpu_mtrr_init(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010010702 vcpu_load(vcpu);
Ilias Stamatis1ab92872021-06-07 11:54:38 +010010703 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010704 kvm_vcpu_reset(vcpu, false);
Sean Christophersonc9060662021-06-09 16:42:33 -070010705 kvm_init_mmu(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010706 vcpu_put(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010010707 return 0;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010708
10709free_guest_fpu:
Tom Lendackyed02b212020-12-10 11:10:01 -060010710 kvm_free_guest_fpu(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010711free_user_fpu:
10712 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010713free_emulate_ctxt:
10714 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010715free_wbinvd_dirty_mask:
10716 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
10717fail_free_mce_banks:
10718 kfree(vcpu->arch.mce_banks);
10719fail_free_pio_data:
10720 free_page((unsigned long)vcpu->arch.pio_data);
10721fail_free_lapic:
10722 kvm_free_lapic(vcpu);
10723fail_mmu_destroy:
10724 kvm_mmu_destroy(vcpu);
10725 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010726}
10727
Dominik Dingel31928aa2014-12-04 15:47:07 +010010728void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010729{
Andrew Jones332967a2014-02-28 12:52:55 +010010730 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010731
Christoffer Dallec7660c2017-12-04 21:35:23 +010010732 if (mutex_lock_killable(&vcpu->mutex))
Dominik Dingel31928aa2014-12-04 15:47:07 +010010733 return;
Christoffer Dallec7660c2017-12-04 21:35:23 +010010734 vcpu_load(vcpu);
Paolo Bonzini0c899c22020-09-24 14:45:27 +020010735 kvm_synchronize_tsc(vcpu, 0);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010736 vcpu_put(vcpu);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030010737
10738 /* poll control enabled by default */
10739 vcpu->arch.msr_kvm_poll_control = 1;
10740
Christoffer Dallec7660c2017-12-04 21:35:23 +010010741 mutex_unlock(&vcpu->mutex);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010742
Wanpeng Lib34de572020-02-28 11:18:41 +080010743 if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0)
10744 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
10745 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010746}
10747
Hollis Blanchardd40ccc62007-11-19 14:04:43 -060010748void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010749{
Paolo Bonzini4cbc4182020-01-30 18:47:38 +010010750 struct gfn_to_pfn_cache *cache = &vcpu->arch.st.cache;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010751 int idx;
Gleb Natapov344d9582010-10-14 11:22:50 +020010752
Paolo Bonzini4cbc4182020-01-30 18:47:38 +010010753 kvm_release_pfn(cache->pfn, cache->dirty, cache);
10754
Sean Christopherson50b143e2019-12-18 13:55:07 -080010755 kvmclock_reset(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010756
Jason Baronb36464772021-01-14 22:27:56 -050010757 static_call(kvm_x86_vcpu_free)(vcpu);
Sean Christopherson50b143e2019-12-18 13:55:07 -080010758
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010759 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson50b143e2019-12-18 13:55:07 -080010760 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
10761 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
Tom Lendackyed02b212020-12-10 11:10:01 -060010762 kvm_free_guest_fpu(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010763
10764 kvm_hv_vcpu_uninit(vcpu);
10765 kvm_pmu_destroy(vcpu);
10766 kfree(vcpu->arch.mce_banks);
10767 kvm_free_lapic(vcpu);
10768 idx = srcu_read_lock(&vcpu->kvm->srcu);
10769 kvm_mmu_destroy(vcpu);
10770 srcu_read_unlock(&vcpu->kvm->srcu, idx);
10771 free_page((unsigned long)vcpu->arch.pio_data);
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +020010772 kvfree(vcpu->arch.cpuid_entries);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010773 if (!lapic_in_kernel(vcpu))
Cun Li6e4e3b42021-01-11 23:24:35 +080010774 static_branch_dec(&kvm_has_noapic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010775}
10776
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010777void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010778{
Sean Christopherson25b97842021-09-29 15:24:26 -070010779 struct kvm_cpuid_entry2 *cpuid_0x1;
Sean Christopherson0aa18372021-06-22 10:56:48 -070010780 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Sean Christopherson4c72ab52021-07-13 09:33:24 -070010781 unsigned long new_cr0;
Sean Christopherson0aa18372021-06-22 10:56:48 -070010782
Sean Christopherson62dd57d2021-09-20 17:03:03 -070010783 /*
10784 * Several of the "set" flows, e.g. ->set_cr0(), read other registers
10785 * to handle side effects. RESET emulation hits those flows and relies
10786 * on emulated/virtualized registers, including those that are loaded
10787 * into hardware, to be zeroed at vCPU creation. Use CRs as a sentinel
10788 * to detect improper or missing initialization.
10789 */
10790 WARN_ON_ONCE(!init_event &&
10791 (old_cr0 || kvm_read_cr3(vcpu) || kvm_read_cr4(vcpu)));
10792
Radim Krčmářb7e31be2018-03-01 15:24:25 +010010793 kvm_lapic_reset(vcpu, init_event);
10794
Paolo Bonzinie69fab52015-06-04 10:44:44 +020010795 vcpu->arch.hflags = 0;
10796
Paolo Bonzinic43203c2016-06-01 22:26:00 +020010797 vcpu->arch.smi_pending = 0;
Liran Alon52797bf2017-11-15 13:43:14 +020010798 vcpu->arch.smi_count = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +030010799 atomic_set(&vcpu->arch.nmi_queued, 0);
10800 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +020010801 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +030010802 kvm_clear_interrupt_queue(vcpu);
10803 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +020010804
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010805 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +030010806 kvm_update_dr0123(vcpu);
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +080010807 vcpu->arch.dr6 = DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010808 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +020010809 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010810
Nadav Amit11190222015-04-02 03:10:38 +030010811 vcpu->arch.cr2 = 0;
10812
Avi Kivity3842d132010-07-27 12:30:24 +030010813 kvm_make_request(KVM_REQ_EVENT, vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020010814 vcpu->arch.apf.msr_en_val = 0;
10815 vcpu->arch.apf.msr_int_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -040010816 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +030010817
Glauber Costa12f9a482011-02-01 14:16:40 -050010818 kvmclock_reset(vcpu);
10819
Gleb Natapovaf585b92010-10-14 11:22:46 +020010820 kvm_clear_async_pf_completion_queue(vcpu);
10821 kvm_async_pf_hash_reset(vcpu);
10822 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010823
Tom Lendackyed02b212020-12-10 11:10:01 -060010824 if (vcpu->arch.guest_fpu && kvm_mpx_supported()) {
Wanpeng Lia554d202017-10-11 05:10:19 -070010825 void *mpx_state_buffer;
10826
10827 /*
10828 * To avoid have the INIT path from kvm_apic_has_events() that be
10829 * called with loaded FPU and does not let userspace fix the state.
10830 */
Rik van Rielf775b132017-11-14 16:54:23 -050010831 if (init_event)
10832 kvm_put_guest_fpu(vcpu);
Marc Orrb666a4b2018-11-06 14:53:56 -080010833 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +020010834 XFEATURE_BNDREGS);
Wanpeng Lia554d202017-10-11 05:10:19 -070010835 if (mpx_state_buffer)
10836 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndreg_state));
Marc Orrb666a4b2018-11-06 14:53:56 -080010837 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +020010838 XFEATURE_BNDCSR);
Wanpeng Lia554d202017-10-11 05:10:19 -070010839 if (mpx_state_buffer)
10840 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndcsr));
Rik van Rielf775b132017-11-14 16:54:23 -050010841 if (init_event)
10842 kvm_load_guest_fpu(vcpu);
Wanpeng Lia554d202017-10-11 05:10:19 -070010843 }
10844
Paolo Bonzini64d60672015-05-07 11:36:11 +020010845 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010846 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +020010847 vcpu->arch.smbase = 0x30000;
Kyle Hueydb2336a2017-03-20 01:16:28 -070010848
Kyle Hueydb2336a2017-03-20 01:16:28 -070010849 vcpu->arch.msr_misc_features_enables = 0;
Wanpeng Lia554d202017-10-11 05:10:19 -070010850
10851 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Paolo Bonzini64d60672015-05-07 11:36:11 +020010852 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020010853
Sean Christophersonff8828c2021-09-20 17:02:56 -070010854 /* All GPRs except RDX (handled below) are zeroed on RESET/INIT. */
Julian Stecklina66f7b722012-12-05 15:26:19 +010010855 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
Sean Christophersonff8828c2021-09-20 17:02:56 -070010856 kvm_register_mark_dirty(vcpu, VCPU_REGS_RSP);
Julian Stecklina66f7b722012-12-05 15:26:19 +010010857
Sean Christopherson49d86652021-07-13 09:32:57 -070010858 /*
10859 * Fall back to KVM's default Family/Model/Stepping of 0x600 (P6/Athlon)
10860 * if no CPUID match is found. Note, it's impossible to get a match at
10861 * RESET since KVM emulates RESET before exposing the vCPU to userspace,
Sean Christopherson25b97842021-09-29 15:24:26 -070010862 * i.e. it's impossible for kvm_find_cpuid_entry() to find a valid entry
10863 * on RESET. But, go through the motions in case that's ever remedied.
Sean Christopherson49d86652021-07-13 09:32:57 -070010864 */
Sean Christopherson25b97842021-09-29 15:24:26 -070010865 cpuid_0x1 = kvm_find_cpuid_entry(vcpu, 1, 0);
10866 kvm_rdx_write(vcpu, cpuid_0x1 ? cpuid_0x1->eax : 0x600);
Sean Christopherson49d86652021-07-13 09:32:57 -070010867
Wanpeng Lia554d202017-10-11 05:10:19 -070010868 vcpu->arch.ia32_xss = 0;
10869
Jason Baronb36464772021-01-14 22:27:56 -050010870 static_call(kvm_x86_vcpu_reset)(vcpu, init_event);
Sean Christopherson0aa18372021-06-22 10:56:48 -070010871
Sean Christophersonf39e8052021-07-13 09:33:14 -070010872 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
10873 kvm_rip_write(vcpu, 0xfff0);
10874
Sean Christopherson03a6e842021-09-20 17:02:55 -070010875 vcpu->arch.cr3 = 0;
10876 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
10877
Sean Christopherson4c72ab52021-07-13 09:33:24 -070010878 /*
10879 * CR0.CD/NW are set on RESET, preserved on INIT. Note, some versions
10880 * of Intel's SDM list CD/NW as being set on INIT, but they contradict
10881 * (or qualify) that with a footnote stating that CD/NW are preserved.
10882 */
10883 new_cr0 = X86_CR0_ET;
10884 if (init_event)
10885 new_cr0 |= (old_cr0 & (X86_CR0_NW | X86_CR0_CD));
10886 else
10887 new_cr0 |= X86_CR0_NW | X86_CR0_CD;
10888
10889 static_call(kvm_x86_set_cr0)(vcpu, new_cr0);
Sean Christophersonf39e8052021-07-13 09:33:14 -070010890 static_call(kvm_x86_set_cr4)(vcpu, 0);
10891 static_call(kvm_x86_set_efer)(vcpu, 0);
10892 static_call(kvm_x86_update_exception_bitmap)(vcpu);
10893
Sean Christopherson0aa18372021-06-22 10:56:48 -070010894 /*
10895 * Reset the MMU context if paging was enabled prior to INIT (which is
10896 * implied if CR0.PG=1 as CR0 will be '0' prior to RESET). Unlike the
10897 * standard CR0/CR4/EFER modification paths, only CR0.PG needs to be
10898 * checked because it is unconditionally cleared on INIT and all other
10899 * paging related bits are ignored if paging is disabled, i.e. CR0.WP,
10900 * CR4, and EFER changes are all irrelevant if CR0.PG was '0'.
10901 */
10902 if (old_cr0 & X86_CR0_PG)
10903 kvm_mmu_reset_context(vcpu);
Sean Christophersondf37ed32021-07-13 09:32:39 -070010904
10905 /*
10906 * Intel's SDM states that all TLB entries are flushed on INIT. AMD's
10907 * APM states the TLBs are untouched by INIT, but it also states that
10908 * the TLBs are flushed on "External initialization of the processor."
10909 * Flush the guest TLB regardless of vendor, there is no meaningful
10910 * benefit in relying on the guest to flush the TLB immediately after
10911 * INIT. A spurious TLB flush is benign and likely negligible from a
10912 * performance perspective.
10913 */
10914 if (init_event)
10915 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010916}
Sean Christopherson265e4352021-07-13 09:33:22 -070010917EXPORT_SYMBOL_GPL(kvm_vcpu_reset);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010918
Paolo Bonzini2b4a2732014-11-24 14:35:24 +010010919void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +010010920{
10921 struct kvm_segment cs;
10922
10923 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
10924 cs.selector = vector << 8;
10925 cs.base = vector << 12;
10926 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
10927 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010928}
Tom Lendacky647daca2021-01-04 14:20:01 -060010929EXPORT_SYMBOL_GPL(kvm_vcpu_deliver_sipi_vector);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010930
Radim Krčmář13a34e02014-08-28 15:13:03 +020010931int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010932{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -100010933 struct kvm *kvm;
10934 struct kvm_vcpu *vcpu;
10935 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010936 int ret;
10937 u64 local_tsc;
10938 u64 max_tsc = 0;
10939 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +030010940
Sean Christopherson7e34fbd2020-09-23 11:03:55 -070010941 kvm_user_return_msr_cpu_online();
Jason Baronb36464772021-01-14 22:27:56 -050010942 ret = static_call(kvm_x86_hardware_enable)();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010943 if (ret != 0)
10944 return ret;
10945
Andy Lutomirski4ea16362015-06-25 18:44:07 +020010946 local_tsc = rdtsc();
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010010947 stable = !kvm_check_tsc_unstable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010948 list_for_each_entry(kvm, &vm_list, vm_list) {
10949 kvm_for_each_vcpu(i, vcpu, kvm) {
10950 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +080010951 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010952 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
10953 backwards_tsc = true;
10954 if (vcpu->arch.last_host_tsc > max_tsc)
10955 max_tsc = vcpu->arch.last_host_tsc;
10956 }
10957 }
10958 }
10959
10960 /*
10961 * Sometimes, even reliable TSCs go backwards. This happens on
10962 * platforms that reset TSC during suspend or hibernate actions, but
10963 * maintain synchronization. We must compensate. Fortunately, we can
10964 * detect that condition here, which happens early in CPU bringup,
10965 * before any KVM threads can be running. Unfortunately, we can't
10966 * bring the TSCs fully up to date with real time, as we aren't yet far
10967 * enough into CPU bringup that we know how much real time has actually
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020010968 * elapsed; our helper function, ktime_get_boottime_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010969 * variables that haven't been updated yet.
10970 *
10971 * So we simply find the maximum observed TSC above, then record the
10972 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
10973 * the adjustment will be applied. Note that we accumulate
10974 * adjustments, in case multiple suspend cycles happen before some VCPU
10975 * gets a chance to run again. In the event that no KVM threads get a
10976 * chance to run, we will miss the entire elapsed period, as we'll have
10977 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
10978 * loose cycle time. This isn't too big a deal, since the loss will be
10979 * uniform across all VCPUs (not to mention the scenario is extremely
10980 * unlikely). It is possible that a second hibernate recovery happens
10981 * much faster than a first, causing the observed TSC here to be
10982 * smaller; this would require additional padding adjustment, which is
10983 * why we set last_host_tsc to the local tsc observed here.
10984 *
10985 * N.B. - this code below runs only on platforms with reliable TSC,
10986 * as that is the only way backwards_tsc is set above. Also note
10987 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
10988 * have the same delta_cyc adjustment applied if backwards_tsc
10989 * is detected. Note further, this adjustment is only done once,
10990 * as we reset last_host_tsc on all VCPUs to stop this from being
10991 * called multiple times (one for each physical CPU bringup).
10992 *
Guo Chao4a969982012-06-28 15:17:27 +080010993 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010994 * will be compensated by the logic in vcpu_load, which sets the TSC to
10995 * catchup mode. This will catchup all VCPUs to real time, but cannot
10996 * guarantee that they stay in perfect synchronization.
10997 */
10998 if (backwards_tsc) {
10999 u64 delta_cyc = max_tsc - local_tsc;
11000 list_for_each_entry(kvm, &vm_list, vm_list) {
Ladi Proseka826faf2017-06-26 09:56:43 +020011001 kvm->arch.backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011002 kvm_for_each_vcpu(i, vcpu, kvm) {
11003 vcpu->arch.tsc_offset_adjustment += delta_cyc;
11004 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +080011005 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011006 }
11007
11008 /*
11009 * We have to disable TSC offset matching.. if you were
11010 * booting a VM while issuing an S4 host suspend....
11011 * you may have some problem. Solving this issue is
11012 * left as an exercise to the reader.
11013 */
11014 kvm->arch.last_tsc_nsec = 0;
11015 kvm->arch.last_tsc_write = 0;
11016 }
11017
11018 }
11019 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011020}
11021
Radim Krčmář13a34e02014-08-28 15:13:03 +020011022void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011023{
Jason Baronb36464772021-01-14 22:27:56 -050011024 static_call(kvm_x86_hardware_disable)();
Radim Krčmář13a34e02014-08-28 15:13:03 +020011025 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011026}
11027
Sean Christophersonb9904082020-03-21 13:25:55 -070011028int kvm_arch_hardware_setup(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011029{
Sean Christophersond008dfd2020-03-21 13:25:56 -070011030 struct kvm_x86_init_ops *ops = opaque;
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011031 int r;
11032
Sean Christopherson91661982020-03-02 15:57:06 -080011033 rdmsrl_safe(MSR_EFER, &host_efer);
11034
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011035 if (boot_cpu_has(X86_FEATURE_XSAVES))
11036 rdmsrl(MSR_IA32_XSS, host_xss);
11037
Sean Christophersond008dfd2020-03-21 13:25:56 -070011038 r = ops->hardware_setup();
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011039 if (r != 0)
11040 return r;
11041
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011042 memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops));
Jason Baronb36464772021-01-14 22:27:56 -050011043 kvm_ops_static_call_update();
Sean Christopherson69c6f692020-03-21 13:25:59 -070011044
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011045 if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES))
11046 supported_xss = 0;
11047
Paolo Bonzini139f7422020-05-05 09:40:46 -040011048#define __kvm_cpu_cap_has(UNUSED_, f) kvm_cpu_cap_has(f)
11049 cr4_reserved_bits = __cr4_reserved_bits(__kvm_cpu_cap_has, UNUSED_);
11050#undef __kvm_cpu_cap_has
Sean Christophersonb11306b2019-12-10 14:44:13 -080011051
Haozhong Zhang35181e82015-10-20 15:39:03 +080011052 if (kvm_has_tsc_control) {
11053 /*
11054 * Make sure the user can only configure tsc_khz values that
11055 * fit into a signed integer.
Marcelo Tosatti273ba452018-06-11 14:12:10 -030011056 * A min value is not calculated because it will always
Haozhong Zhang35181e82015-10-20 15:39:03 +080011057 * be 1 on all machines.
11058 */
11059 u64 max = min(0x7fffffffULL,
11060 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
11061 kvm_max_guest_tsc_khz = max;
11062
Haozhong Zhangad7218832015-10-20 15:39:02 +080011063 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +080011064 }
Haozhong Zhangad7218832015-10-20 15:39:02 +080011065
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011066 kvm_init_msr_list();
11067 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011068}
11069
11070void kvm_arch_hardware_unsetup(void)
11071{
Jason Baronb36464772021-01-14 22:27:56 -050011072 static_call(kvm_x86_hardware_unsetup)();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011073}
11074
Sean Christophersonb9904082020-03-21 13:25:55 -070011075int kvm_arch_check_processor_compat(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011076{
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011077 struct cpuinfo_x86 *c = &cpu_data(smp_processor_id());
Sean Christophersond008dfd2020-03-21 13:25:56 -070011078 struct kvm_x86_init_ops *ops = opaque;
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011079
11080 WARN_ON(!irqs_disabled());
11081
Paolo Bonzini139f7422020-05-05 09:40:46 -040011082 if (__cr4_reserved_bits(cpu_has, c) !=
11083 __cr4_reserved_bits(cpu_has, &boot_cpu_data))
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011084 return -EIO;
11085
Sean Christophersond008dfd2020-03-21 13:25:56 -070011086 return ops->check_processor_compatibility();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011087}
11088
Paolo Bonzinid71ba782015-07-29 11:56:48 +020011089bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
11090{
11091 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
11092}
11093EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
11094
11095bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
11096{
11097 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
11098}
11099
Cun Li6e4e3b42021-01-11 23:24:35 +080011100__read_mostly DEFINE_STATIC_KEY_FALSE(kvm_has_noapic_vcpu);
11101EXPORT_SYMBOL_GPL(kvm_has_noapic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +030011102
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011103void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
11104{
Like Xub35e5542019-10-27 18:52:43 +080011105 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
11106
Paolo Bonzinic595cee2018-07-02 13:07:14 +020011107 vcpu->arch.l1tf_flush_l1d = true;
Like Xub35e5542019-10-27 18:52:43 +080011108 if (pmu->version && unlikely(pmu->event_count)) {
11109 pmu->need_cleanup = true;
11110 kvm_make_request(KVM_REQ_PMU, vcpu);
11111 }
Jason Baronb36464772021-01-14 22:27:56 -050011112 static_call(kvm_x86_sched_in)(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011113}
11114
Sean Christopherson562b6b02020-01-26 16:41:13 -080011115void kvm_arch_free_vm(struct kvm *kvm)
11116{
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +010011117 kfree(to_kvm_hv(kvm)->hv_pa_pg);
Sean Christopherson562b6b02020-01-26 16:41:13 -080011118 vfree(kvm);
11119}
11120
11121
Carsten Ottee08b9632012-01-04 10:25:20 +010011122int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011123{
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011124 int ret;
11125
Carsten Ottee08b9632012-01-04 10:25:20 +010011126 if (type)
11127 return -EINVAL;
11128
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011129 ret = kvm_page_track_init(kvm);
11130 if (ret)
11131 return ret;
11132
Paolo Bonzini6ef768f2014-11-20 13:45:31 +010011133 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +080011134 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Sean Christopherson10605202019-09-12 19:46:10 -070011135 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011136 INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030011137 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060011138 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011139
Sheng Yang5550af42008-10-15 20:15:06 +080011140 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
11141 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -060011142 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
11143 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
11144 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +080011145
Jan Kiszka038f8c12011-02-04 10:49:11 +010011146 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +030011147 mutex_init(&kvm->arch.apic_map_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -020011148 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
11149
Paolo Bonzini8171cd62020-01-22 14:36:09 +010011150 kvm->arch.kvmclock_offset = -get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -020011151 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +010011152
Drew Schmitt6fbbde92018-08-20 10:32:15 -070011153 kvm->arch.guest_can_read_msr_platform_info = true;
11154
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000011155#if IS_ENABLED(CONFIG_HYPERV)
11156 spin_lock_init(&kvm->arch.hv_root_tdp_lock);
11157 kvm->arch.hv_root_tdp = INVALID_PAGE;
11158#endif
11159
Andrew Jones7e44e442014-02-28 12:52:54 +010011160 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +010011161 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +010011162
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +020011163 kvm_apicv_init(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011164 kvm_hv_init_vm(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011165 kvm_mmu_init_vm(kvm);
Paolo Bonzini319afe62021-08-04 12:48:41 -040011166 kvm_xen_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +080011167
Jason Baronb36464772021-01-14 22:27:56 -050011168 return static_call(kvm_x86_vm_init)(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011169}
11170
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011171int kvm_arch_post_init_vm(struct kvm *kvm)
11172{
11173 return kvm_mmu_post_init_vm(kvm);
11174}
11175
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011176static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
11177{
Christoffer Dallec7660c2017-12-04 21:35:23 +010011178 vcpu_load(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011179 kvm_mmu_unload(vcpu);
11180 vcpu_put(vcpu);
11181}
11182
11183static void kvm_free_vcpus(struct kvm *kvm)
11184{
11185 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011186 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011187
11188 /*
11189 * Unpin any mmu pages first.
11190 */
Gleb Natapovaf585b92010-10-14 11:22:46 +020011191 kvm_for_each_vcpu(i, vcpu, kvm) {
11192 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011193 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011194 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011195 kvm_for_each_vcpu(i, vcpu, kvm)
Sean Christopherson4543bdc2019-12-18 13:55:14 -080011196 kvm_vcpu_destroy(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011197
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011198 mutex_lock(&kvm->lock);
11199 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
11200 kvm->vcpus[i] = NULL;
11201
11202 atomic_set(&kvm->online_vcpus, 0);
11203 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011204}
11205
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011206void kvm_arch_sync_events(struct kvm *kvm)
11207{
Andrew Jones332967a2014-02-28 12:52:55 +010011208 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +010011209 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +080011210 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011211}
11212
Peter Xuff5a9832020-09-30 21:20:33 -040011213#define ERR_PTR_USR(e) ((void __user *)ERR_PTR(e))
11214
11215/**
11216 * __x86_set_memory_region: Setup KVM internal memory slot
11217 *
11218 * @kvm: the kvm pointer to the VM.
11219 * @id: the slot ID to setup.
11220 * @gpa: the GPA to install the slot (unused when @size == 0).
11221 * @size: the size of the slot. Set to zero to uninstall a slot.
11222 *
11223 * This function helps to setup a KVM internal memory slot. Specify
11224 * @size > 0 to install a new slot, while @size == 0 to uninstall a
11225 * slot. The return code can be one of the following:
11226 *
11227 * HVA: on success (uninstall will return a bogus HVA)
11228 * -errno: on error
11229 *
11230 * The caller should always use IS_ERR() to check the return value
11231 * before use. Note, the KVM internal memory slots are guaranteed to
11232 * remain valid and unchanged until the VM is destroyed, i.e., the
11233 * GPA->HVA translation will not change. However, the HVA is a user
11234 * address, i.e. its accessibility is not guaranteed, and must be
11235 * accessed via __copy_{to,from}_user().
11236 */
11237void __user * __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa,
11238 u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011239{
11240 int i, r;
Kees Cook3f649ab2020-06-03 13:09:38 -070011241 unsigned long hva, old_npages;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011242 struct kvm_memslots *slots = kvm_memslots(kvm);
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011243 struct kvm_memory_slot *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011244
11245 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011246 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
Peter Xuff5a9832020-09-30 21:20:33 -040011247 return ERR_PTR_USR(-EINVAL);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011248
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011249 slot = id_to_memslot(slots, id);
11250 if (size) {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011251 if (slot && slot->npages)
Peter Xuff5a9832020-09-30 21:20:33 -040011252 return ERR_PTR_USR(-EEXIST);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011253
11254 /*
11255 * MAP_SHARED to prevent internal slot pages from being moved
11256 * by fork()/COW.
11257 */
11258 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
11259 MAP_SHARED | MAP_ANONYMOUS, 0);
11260 if (IS_ERR((void *)hva))
Peter Xuff5a9832020-09-30 21:20:33 -040011261 return (void __user *)hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011262 } else {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011263 if (!slot || !slot->npages)
Muhammad Usama Anjum46914532021-03-05 23:08:16 +050011264 return NULL;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011265
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011266 old_npages = slot->npages;
Zheng Zhan Liangb66f9ba2021-02-01 13:53:10 +080011267 hva = slot->userspace_addr;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011268 }
11269
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011270 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011271 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011272
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011273 m.slot = id | (i << 16);
11274 m.flags = 0;
11275 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011276 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011277 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011278 r = __kvm_set_memory_region(kvm, &m);
11279 if (r < 0)
Peter Xuff5a9832020-09-30 21:20:33 -040011280 return ERR_PTR_USR(r);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011281 }
11282
Eric Biggers103c7632018-01-31 17:30:21 -080011283 if (!size)
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011284 vm_munmap(hva, old_npages * PAGE_SIZE);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011285
Peter Xuff5a9832020-09-30 21:20:33 -040011286 return (void __user *)hva;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011287}
11288EXPORT_SYMBOL_GPL(__x86_set_memory_region);
11289
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011290void kvm_arch_pre_destroy_vm(struct kvm *kvm)
11291{
11292 kvm_mmu_pre_destroy_vm(kvm);
11293}
11294
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011295void kvm_arch_destroy_vm(struct kvm *kvm)
11296{
Andrew Honig27469d22013-04-18 09:38:14 -070011297 if (current->mm == kvm->mm) {
11298 /*
11299 * Free memory regions allocated on behalf of userspace,
11300 * unless the the memory map has changed due to process exit
11301 * or fd copying.
11302 */
Peter Xu6a3c6232020-01-09 09:57:16 -050011303 mutex_lock(&kvm->slots_lock);
11304 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
11305 0, 0);
11306 __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
11307 0, 0);
11308 __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
11309 mutex_unlock(&kvm->slots_lock);
Andrew Honig27469d22013-04-18 09:38:14 -070011310 }
Jason Baronb36464772021-01-14 22:27:56 -050011311 static_call_cond(kvm_x86_vm_destroy)(kvm);
Sean Christophersonb318e8d2021-03-16 11:44:33 -070011312 kvm_free_msr_filter(srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1));
Peter Xuc7611592017-03-15 16:01:19 +080011313 kvm_pic_destroy(kvm);
11314 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011315 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +020011316 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Eric Hankland66bb8a02019-07-10 18:25:15 -070011317 kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011318 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +020011319 kvm_page_track_cleanup(kvm);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +000011320 kvm_xen_destroy_vm(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011321 kvm_hv_destroy_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011322}
Zhang Xiantao0de10342007-11-20 16:25:04 +080011323
Ben Gardonc9b929b2021-05-18 10:34:08 -070011324static void memslot_rmap_free(struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011325{
11326 int i;
11327
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011328 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011329 kvfree(slot->arch.rmap[i]);
11330 slot->arch.rmap[i] = NULL;
Ben Gardonc9b929b2021-05-18 10:34:08 -070011331 }
11332}
Sean Christophersone96c81e2020-02-18 13:07:27 -080011333
Ben Gardonc9b929b2021-05-18 10:34:08 -070011334void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
11335{
11336 int i;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011337
Ben Gardonc9b929b2021-05-18 10:34:08 -070011338 memslot_rmap_free(slot);
11339
11340 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011341 kvfree(slot->arch.lpage_info[i - 1]);
11342 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011343 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011344
Sean Christophersone96c81e2020-02-18 13:07:27 -080011345 kvm_page_track_free_memslot(slot);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011346}
11347
Ben Gardon56dd1012021-05-18 10:34:09 -070011348static int memslot_rmap_alloc(struct kvm_memory_slot *slot,
11349 unsigned long npages)
11350{
11351 const int sz = sizeof(*slot->arch.rmap[0]);
11352 int i;
11353
11354 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
11355 int level = i + 1;
Peter Xu4139b192021-07-30 18:04:51 -040011356 int lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Ben Gardon56dd1012021-05-18 10:34:09 -070011357
Ben Gardond501f742021-05-18 10:34:14 -070011358 WARN_ON(slot->arch.rmap[i]);
11359
Ben Gardon56dd1012021-05-18 10:34:09 -070011360 slot->arch.rmap[i] = kvcalloc(lpages, sz, GFP_KERNEL_ACCOUNT);
11361 if (!slot->arch.rmap[i]) {
11362 memslot_rmap_free(slot);
11363 return -ENOMEM;
11364 }
11365 }
11366
11367 return 0;
11368}
11369
Ben Gardond501f742021-05-18 10:34:14 -070011370int alloc_all_memslots_rmaps(struct kvm *kvm)
11371{
11372 struct kvm_memslots *slots;
11373 struct kvm_memory_slot *slot;
11374 int r, i;
11375
11376 /*
11377 * Check if memslots alreday have rmaps early before acquiring
11378 * the slots_arch_lock below.
11379 */
11380 if (kvm_memslots_have_rmaps(kvm))
11381 return 0;
11382
11383 mutex_lock(&kvm->slots_arch_lock);
11384
11385 /*
11386 * Read memslots_have_rmaps again, under the slots arch lock,
11387 * before allocating the rmaps
11388 */
11389 if (kvm_memslots_have_rmaps(kvm)) {
11390 mutex_unlock(&kvm->slots_arch_lock);
11391 return 0;
11392 }
11393
11394 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
11395 slots = __kvm_memslots(kvm, i);
11396 kvm_for_each_memslot(slot, slots) {
11397 r = memslot_rmap_alloc(slot, slot->npages);
11398 if (r) {
11399 mutex_unlock(&kvm->slots_arch_lock);
11400 return r;
11401 }
11402 }
11403 }
11404
11405 /*
11406 * Ensure that memslots_have_rmaps becomes true strictly after
11407 * all the rmap pointers are set.
11408 */
11409 smp_store_release(&kvm->arch.memslots_have_rmaps, true);
11410 mutex_unlock(&kvm->slots_arch_lock);
11411 return 0;
11412}
11413
Ben Gardona2557402021-05-18 10:34:12 -070011414static int kvm_alloc_memslot_metadata(struct kvm *kvm,
11415 struct kvm_memory_slot *slot,
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011416 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011417{
Ben Gardon56dd1012021-05-18 10:34:09 -070011418 int i, r;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011419
Sean Christophersonedd4fa32020-02-18 13:07:15 -080011420 /*
11421 * Clear out the previous array pointers for the KVM_MR_MOVE case. The
11422 * old arrays will be freed by __kvm_set_memory_region() if installing
11423 * the new memslot is successful.
11424 */
11425 memset(&slot->arch, 0, sizeof(slot->arch));
11426
Ben Gardone2209712021-05-18 10:34:13 -070011427 if (kvm_memslots_have_rmaps(kvm)) {
Ben Gardona2557402021-05-18 10:34:12 -070011428 r = memslot_rmap_alloc(slot, npages);
11429 if (r)
11430 return r;
11431 }
Ben Gardon56dd1012021-05-18 10:34:09 -070011432
11433 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011434 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011435 unsigned long ugfn;
11436 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011437 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011438
Peter Xu4139b192021-07-30 18:04:51 -040011439 lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011440
Ben Gardon254272c2019-02-11 11:02:50 -080011441 linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT);
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011442 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011443 goto out_free;
11444
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011445 slot->arch.lpage_info[i - 1] = linfo;
11446
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011447 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011448 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011449 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011450 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011451 ugfn = slot->userspace_addr >> PAGE_SHIFT;
11452 /*
11453 * If the gfn and userspace address are not aligned wrt each
Sean Christopherson600087b2020-03-02 15:57:05 -080011454 * other, disable large page support for this slot.
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011455 */
Sean Christopherson600087b2020-03-02 15:57:05 -080011456 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011457 unsigned long j;
11458
11459 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011460 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011461 }
11462 }
11463
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011464 if (kvm_page_track_create_memslot(slot, npages))
11465 goto out_free;
11466
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011467 return 0;
11468
11469out_free:
Ben Gardonc9b929b2021-05-18 10:34:08 -070011470 memslot_rmap_free(slot);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011471
Ben Gardonc9b929b2021-05-18 10:34:08 -070011472 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +010011473 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011474 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011475 }
11476 return -ENOMEM;
11477}
11478
Sean Christopherson15248252019-02-05 12:54:17 -080011479void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011480{
Boris Ostrovsky91724812019-12-05 01:30:51 +000011481 struct kvm_vcpu *vcpu;
11482 int i;
11483
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +090011484 /*
11485 * memslots->generation has been incremented.
11486 * mmio generation may have reached its maximum value.
11487 */
Sean Christopherson15248252019-02-05 12:54:17 -080011488 kvm_mmu_invalidate_mmio_sptes(kvm, gen);
Boris Ostrovsky91724812019-12-05 01:30:51 +000011489
11490 /* Force re-initialization of steal_time cache */
11491 kvm_for_each_vcpu(i, vcpu, kvm)
11492 kvm_vcpu_kick(vcpu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011493}
11494
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011495int kvm_arch_prepare_memory_region(struct kvm *kvm,
11496 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +020011497 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +090011498 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +080011499{
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011500 if (change == KVM_MR_CREATE || change == KVM_MR_MOVE)
Ben Gardona2557402021-05-18 10:34:12 -070011501 return kvm_alloc_memslot_metadata(kvm, memslot,
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011502 mem->memory_size >> PAGE_SHIFT);
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011503 return 0;
11504}
11505
Makarand Sonarea85863c2021-02-12 16:50:12 -080011506
11507static void kvm_mmu_update_cpu_dirty_logging(struct kvm *kvm, bool enable)
11508{
11509 struct kvm_arch *ka = &kvm->arch;
11510
11511 if (!kvm_x86_ops.cpu_dirty_log_size)
11512 return;
11513
11514 if ((enable && ++ka->cpu_dirty_logging_count == 1) ||
11515 (!enable && --ka->cpu_dirty_logging_count == 0))
11516 kvm_make_all_cpus_request(kvm, KVM_REQ_UPDATE_CPU_DIRTY_LOGGING);
11517
11518 WARN_ON_ONCE(ka->cpu_dirty_logging_count < 0);
11519}
11520
Kai Huang88178fd2015-01-28 10:54:27 +080011521static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
Anthony Yznaga37416792020-06-02 13:07:30 -070011522 struct kvm_memory_slot *old,
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011523 const struct kvm_memory_slot *new,
Anthony Yznaga37416792020-06-02 13:07:30 -070011524 enum kvm_mr_change change)
Kai Huang88178fd2015-01-28 10:54:27 +080011525{
Makarand Sonarea85863c2021-02-12 16:50:12 -080011526 bool log_dirty_pages = new->flags & KVM_MEM_LOG_DIRTY_PAGES;
11527
Anthony Yznaga37416792020-06-02 13:07:30 -070011528 /*
Makarand Sonarea85863c2021-02-12 16:50:12 -080011529 * Update CPU dirty logging if dirty logging is being toggled. This
11530 * applies to all operations.
11531 */
11532 if ((old->flags ^ new->flags) & KVM_MEM_LOG_DIRTY_PAGES)
11533 kvm_mmu_update_cpu_dirty_logging(kvm, log_dirty_pages);
11534
11535 /*
11536 * Nothing more to do for RO slots (which can't be dirtied and can't be
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011537 * made writable) or CREATE/MOVE/DELETE of a slot.
11538 *
11539 * For a memslot with dirty logging disabled:
11540 * CREATE: No dirty mappings will already exist.
11541 * MOVE/DELETE: The old mappings will already have been cleaned up by
11542 * kvm_arch_flush_shadow_memslot()
11543 *
11544 * For a memslot with dirty logging enabled:
11545 * CREATE: No shadow pages exist, thus nothing to write-protect
11546 * and no dirty bits to clear.
11547 * MOVE/DELETE: The old mappings will already have been cleaned up by
11548 * kvm_arch_flush_shadow_memslot().
Anthony Yznaga37416792020-06-02 13:07:30 -070011549 */
11550 if ((change != KVM_MR_FLAGS_ONLY) || (new->flags & KVM_MEM_READONLY))
Kai Huang88178fd2015-01-28 10:54:27 +080011551 return;
Kai Huang88178fd2015-01-28 10:54:27 +080011552
11553 /*
Sean Christopherson52f460792021-02-12 16:50:11 -080011554 * READONLY and non-flags changes were filtered out above, and the only
11555 * other flag is LOG_DIRTY_PAGES, i.e. something is wrong if dirty
11556 * logging isn't being toggled on or off.
Anthony Yznaga37416792020-06-02 13:07:30 -070011557 */
Sean Christopherson52f460792021-02-12 16:50:11 -080011558 if (WARN_ON_ONCE(!((old->flags ^ new->flags) & KVM_MEM_LOG_DIRTY_PAGES)))
11559 return;
11560
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011561 if (!log_dirty_pages) {
11562 /*
11563 * Dirty logging tracks sptes in 4k granularity, meaning that
11564 * large sptes have to be split. If live migration succeeds,
11565 * the guest in the source machine will be destroyed and large
11566 * sptes will be created in the destination. However, if the
11567 * guest continues to run in the source machine (for example if
11568 * live migration fails), small sptes will remain around and
11569 * cause bad performance.
11570 *
11571 * Scan sptes if dirty logging has been stopped, dropping those
11572 * which can be collapsed into a single large-page spte. Later
11573 * page faults will create the large-page sptes.
11574 */
Anthony Yznaga37416792020-06-02 13:07:30 -070011575 kvm_mmu_zap_collapsible_sptes(kvm, new);
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011576 } else {
Keqian Zhu89212912021-04-29 11:41:15 +080011577 /*
11578 * Initially-all-set does not require write protecting any page,
11579 * because they're all assumed to be dirty.
11580 */
11581 if (kvm_dirty_log_manual_protect_and_init_set(kvm))
11582 return;
Anthony Yznaga37416792020-06-02 13:07:30 -070011583
Sean Christophersona018eba2021-02-12 16:50:10 -080011584 if (kvm_x86_ops.cpu_dirty_log_size) {
Keqian Zhu89212912021-04-29 11:41:15 +080011585 kvm_mmu_slot_leaf_clear_dirty(kvm, new);
11586 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_2M);
11587 } else {
11588 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_4K);
Jay Zhou3c9bd402020-02-27 09:32:27 +080011589 }
Kai Huang88178fd2015-01-28 10:54:27 +080011590 }
11591}
11592
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011593void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +020011594 const struct kvm_userspace_memory_region *mem,
Sean Christopherson9d4c1972020-02-18 13:07:24 -080011595 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020011596 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +090011597 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011598{
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +080011599 if (!kvm->arch.n_requested_mmu_pages)
Wei Yang4d666232018-09-27 08:31:26 +080011600 kvm_mmu_change_mmu_pages(kvm,
11601 kvm_mmu_calculate_default_mmu_pages(kvm));
Kai Huang1c91cad42015-01-28 10:54:26 +080011602
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011603 kvm_mmu_slot_apply_flags(kvm, old, new, change);
Sean Christopherson21198842020-02-18 13:07:25 -080011604
11605 /* Free the arrays associated with the old memslot. */
11606 if (change == KVM_MR_MOVE)
Sean Christophersone96c81e2020-02-18 13:07:27 -080011607 kvm_arch_free_memslot(kvm, old);
Zhang Xiantao0de10342007-11-20 16:25:04 +080011608}
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011609
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011610void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011611{
Sean Christopherson7390de12019-02-05 13:01:31 -080011612 kvm_mmu_zap_all(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011613}
11614
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011615void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
11616 struct kvm_memory_slot *slot)
11617{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +080011618 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011619}
11620
Liran Alone6c67d82018-09-04 10:56:52 +030011621static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
11622{
11623 return (is_guest_mode(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011624 kvm_x86_ops.guest_apic_has_interrupt &&
Jason Baronb36464772021-01-14 22:27:56 -050011625 static_call(kvm_x86_guest_apic_has_interrupt)(vcpu));
Liran Alone6c67d82018-09-04 10:56:52 +030011626}
11627
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011628static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
11629{
11630 if (!list_empty_careful(&vcpu->async_pf.done))
11631 return true;
11632
11633 if (kvm_apic_has_events(vcpu))
11634 return true;
11635
11636 if (vcpu->arch.pv.pv_unhalted)
11637 return true;
11638
Wanpeng Lia5f01f82017-09-13 04:04:01 -070011639 if (vcpu->arch.exception.pending)
11640 return true;
11641
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011642 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11643 (vcpu->arch.nmi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011644 static_call(kvm_x86_nmi_allowed)(vcpu, false)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011645 return true;
11646
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011647 if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -040011648 (vcpu->arch.smi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011649 static_call(kvm_x86_smi_allowed)(vcpu, false)))
Paolo Bonzini73917732015-10-13 10:19:35 +020011650 return true;
11651
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011652 if (kvm_arch_interrupt_allowed(vcpu) &&
Liran Alone6c67d82018-09-04 10:56:52 +030011653 (kvm_cpu_has_interrupt(vcpu) ||
11654 kvm_guest_apic_has_interrupt(vcpu)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011655 return true;
11656
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +030011657 if (kvm_hv_has_stimer_pending(vcpu))
11658 return true;
11659
Sean Christophersond2060bd2020-04-22 19:25:39 -070011660 if (is_guest_mode(vcpu) &&
11661 kvm_x86_ops.nested_ops->hv_timer_pending &&
11662 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
11663 return true;
11664
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011665 return false;
11666}
11667
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011668int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
11669{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011670 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011671}
Zhang Xiantao57361992007-12-17 14:21:40 +080011672
Haiwei Li10dbdf92021-04-21 11:25:13 +080011673bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu)
11674{
11675 if (vcpu->arch.apicv_active && static_call(kvm_x86_dy_apicv_has_pending_interrupt)(vcpu))
11676 return true;
11677
11678 return false;
11679}
11680
Wanpeng Li17e433b2019-08-05 10:03:19 +080011681bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
11682{
11683 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
11684 return true;
11685
11686 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11687 kvm_test_request(KVM_REQ_SMI, vcpu) ||
11688 kvm_test_request(KVM_REQ_EVENT, vcpu))
11689 return true;
11690
Haiwei Li10dbdf92021-04-21 11:25:13 +080011691 return kvm_arch_dy_has_pending_interrupt(vcpu);
Wanpeng Li17e433b2019-08-05 10:03:19 +080011692}
11693
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011694bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
11695{
Wanpeng Lib86bb112021-04-22 16:34:19 +080011696 if (vcpu->arch.guest_state_protected)
11697 return true;
11698
Longpeng(Mike)de63ad42017-08-08 12:05:33 +080011699 return vcpu->arch.preempted_in_kernel;
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011700}
11701
Christoffer Dallb6d33832012-03-08 16:44:24 -050011702int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +080011703{
Christoffer Dallb6d33832012-03-08 16:44:24 -050011704 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +080011705}
Gleb Natapov78646122009-03-23 12:12:11 +020011706
11707int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
11708{
Jason Baronb36464772021-01-14 22:27:56 -050011709 return static_call(kvm_x86_interrupt_allowed)(vcpu, false);
Gleb Natapov78646122009-03-23 12:12:11 +020011710}
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011711
Nadav Amit82b32772014-11-02 11:54:45 +020011712unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
11713{
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060011714 /* Can't read the RIP when guest state is protected, just return 0 */
11715 if (vcpu->arch.guest_state_protected)
11716 return 0;
11717
Nadav Amit82b32772014-11-02 11:54:45 +020011718 if (is_64_bit_mode(vcpu))
11719 return kvm_rip_read(vcpu);
11720 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
11721 kvm_rip_read(vcpu));
11722}
11723EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
11724
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011725bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
11726{
Nadav Amit82b32772014-11-02 11:54:45 +020011727 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011728}
11729EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
11730
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011731unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
11732{
11733 unsigned long rflags;
11734
Jason Baronb36464772021-01-14 22:27:56 -050011735 rflags = static_call(kvm_x86_get_rflags)(vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011736 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +010011737 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011738 return rflags;
11739}
11740EXPORT_SYMBOL_GPL(kvm_get_rflags);
11741
Paolo Bonzini6addfc42014-03-27 11:29:28 +010011742static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011743{
11744 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011745 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +010011746 rflags |= X86_EFLAGS_TF;
Jason Baronb36464772021-01-14 22:27:56 -050011747 static_call(kvm_x86_set_rflags)(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010011748}
11749
11750void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
11751{
11752 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +030011753 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011754}
11755EXPORT_SYMBOL_GPL(kvm_set_rflags);
11756
Gleb Natapov56028d02010-10-17 18:13:42 +020011757void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
11758{
11759 int r;
11760
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020011761 if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +080011762 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +020011763 return;
11764
11765 r = kvm_mmu_reload(vcpu);
11766 if (unlikely(r))
11767 return;
11768
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020011769 if (!vcpu->arch.mmu->direct_map &&
Sean Christophersond8dd54e2020-03-02 18:02:39 -080011770 work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu))
Xiao Guangrongfb67e142010-12-07 10:35:25 +080011771 return;
11772
Sean Christopherson7a026742020-02-06 14:14:34 -080011773 kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true);
Gleb Natapov56028d02010-10-17 18:13:42 +020011774}
11775
Gleb Natapovaf585b92010-10-14 11:22:46 +020011776static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
11777{
Peter Xudd03bca2020-04-16 11:58:59 -040011778 BUILD_BUG_ON(!is_power_of_2(ASYNC_PF_PER_VCPU));
11779
Gleb Natapovaf585b92010-10-14 11:22:46 +020011780 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
11781}
11782
11783static inline u32 kvm_async_pf_next_probe(u32 key)
11784{
Peter Xudd03bca2020-04-16 11:58:59 -040011785 return (key + 1) & (ASYNC_PF_PER_VCPU - 1);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011786}
11787
11788static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11789{
11790 u32 key = kvm_async_pf_hash_fn(gfn);
11791
11792 while (vcpu->arch.apf.gfns[key] != ~0)
11793 key = kvm_async_pf_next_probe(key);
11794
11795 vcpu->arch.apf.gfns[key] = gfn;
11796}
11797
11798static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
11799{
11800 int i;
11801 u32 key = kvm_async_pf_hash_fn(gfn);
11802
Peter Xudd03bca2020-04-16 11:58:59 -040011803 for (i = 0; i < ASYNC_PF_PER_VCPU &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +080011804 (vcpu->arch.apf.gfns[key] != gfn &&
11805 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +020011806 key = kvm_async_pf_next_probe(key);
11807
11808 return key;
11809}
11810
11811bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11812{
11813 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
11814}
11815
11816static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11817{
11818 u32 i, j, k;
11819
11820 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
Peter Xu0fd46042020-04-16 11:59:10 -040011821
11822 if (WARN_ON_ONCE(vcpu->arch.apf.gfns[i] != gfn))
11823 return;
11824
Gleb Natapovaf585b92010-10-14 11:22:46 +020011825 while (true) {
11826 vcpu->arch.apf.gfns[i] = ~0;
11827 do {
11828 j = kvm_async_pf_next_probe(j);
11829 if (vcpu->arch.apf.gfns[j] == ~0)
11830 return;
11831 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
11832 /*
11833 * k lies cyclically in ]i,j]
11834 * | i.k.j |
11835 * |....j i.k.| or |.k..j i...|
11836 */
11837 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
11838 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
11839 i = j;
11840 }
11841}
11842
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020011843static inline int apf_put_user_notpresent(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020011844{
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020011845 u32 reason = KVM_PV_REASON_PAGE_NOT_PRESENT;
11846
11847 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &reason,
11848 sizeof(reason));
11849}
11850
11851static inline int apf_put_user_ready(struct kvm_vcpu *vcpu, u32 token)
11852{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011853 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
Paolo Bonzini4e335d92017-05-02 16:20:18 +020011854
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011855 return kvm_write_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
11856 &token, offset, sizeof(token));
11857}
11858
11859static inline bool apf_pageready_slot_free(struct kvm_vcpu *vcpu)
11860{
11861 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
11862 u32 val;
11863
11864 if (kvm_read_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
11865 &val, offset, sizeof(val)))
11866 return false;
11867
11868 return !val;
Gleb Natapov7c907052010-10-14 11:22:53 +020011869}
11870
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011871static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
11872{
11873 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
11874 return false;
11875
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011876 if (!kvm_pv_async_pf_enabled(vcpu) ||
Jason Baronb36464772021-01-14 22:27:56 -050011877 (vcpu->arch.apf.send_user_only && static_call(kvm_x86_get_cpl)(vcpu) == 0))
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011878 return false;
11879
11880 return true;
11881}
11882
11883bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
11884{
11885 if (unlikely(!lapic_in_kernel(vcpu) ||
11886 kvm_event_needs_reinjection(vcpu) ||
11887 vcpu->arch.exception.pending))
11888 return false;
11889
11890 if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu))
11891 return false;
11892
11893 /*
11894 * If interrupts are off we cannot even use an artificial
11895 * halt state.
11896 */
Paolo Bonzinic300ab92020-04-23 14:08:58 -040011897 return kvm_arch_interrupt_allowed(vcpu);
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011898}
11899
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011900bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
Gleb Natapovaf585b92010-10-14 11:22:46 +020011901 struct kvm_async_pf *work)
11902{
Avi Kivity6389ee92010-11-29 16:12:30 +020011903 struct x86_exception fault;
11904
Sean Christopherson736c2912019-12-06 15:57:14 -080011905 trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011906 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +020011907
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011908 if (kvm_can_deliver_async_pf(vcpu) &&
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020011909 !apf_put_user_notpresent(vcpu)) {
Avi Kivity6389ee92010-11-29 16:12:30 +020011910 fault.vector = PF_VECTOR;
11911 fault.error_code_valid = true;
11912 fault.error_code = 0;
11913 fault.nested_page_fault = false;
11914 fault.address = work->arch.token;
Wanpeng Liadfe20f2017-07-13 18:30:41 -070011915 fault.async_page_fault = true;
Avi Kivity6389ee92010-11-29 16:12:30 +020011916 kvm_inject_page_fault(vcpu, &fault);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011917 return true;
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011918 } else {
11919 /*
11920 * It is not possible to deliver a paravirtualized asynchronous
11921 * page fault, but putting the guest in an artificial halt state
11922 * can be beneficial nevertheless: if an interrupt arrives, we
11923 * can deliver it timely and perhaps the guest will schedule
11924 * another process. When the instruction that triggered a page
11925 * fault is retried, hopefully the page will be ready in the host.
11926 */
11927 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011928 return false;
Gleb Natapov7c907052010-10-14 11:22:53 +020011929 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020011930}
11931
11932void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
11933 struct kvm_async_pf *work)
11934{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011935 struct kvm_lapic_irq irq = {
11936 .delivery_mode = APIC_DM_FIXED,
11937 .vector = vcpu->arch.apf.vec
11938 };
Avi Kivity6389ee92010-11-29 16:12:30 +020011939
chai wenf2e10662013-10-14 22:22:33 +080011940 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +020011941 work->arch.token = ~0; /* broadcast wakeup */
11942 else
11943 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Sean Christopherson736c2912019-12-06 15:57:14 -080011944 trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa);
Gleb Natapov7c907052010-10-14 11:22:53 +020011945
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011946 if ((work->wakeup_all || work->notpresent_injected) &&
11947 kvm_pv_async_pf_enabled(vcpu) &&
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020011948 !apf_put_user_ready(vcpu, work->arch.token)) {
11949 vcpu->arch.apf.pageready_pending = true;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011950 kvm_apic_set_irq(vcpu, &irq, NULL);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020011951 }
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011952
Xiao Guangronge6d53e32010-11-01 17:01:28 +080011953 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +030011954 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +020011955}
11956
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020011957void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu)
11958{
11959 kvm_make_request(KVM_REQ_APF_READY, vcpu);
11960 if (!vcpu->arch.apf.pageready_pending)
11961 kvm_vcpu_kick(vcpu);
11962}
11963
Vitaly Kuznetsov7c0ade62020-05-25 16:41:18 +020011964bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020011965{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011966 if (!kvm_pv_async_pf_enabled(vcpu))
Gleb Natapov7c907052010-10-14 11:22:53 +020011967 return true;
11968 else
Vitaly Kuznetsov2f15d022021-04-22 11:29:48 +020011969 return kvm_lapic_enabled(vcpu) && apf_pageready_slot_free(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011970}
11971
Paolo Bonzini5544eb92015-07-07 15:41:58 +020011972void kvm_arch_start_assignment(struct kvm *kvm)
11973{
Marcelo Tosatti57ab8792021-05-25 10:41:16 -030011974 if (atomic_inc_return(&kvm->arch.assigned_device_count) == 1)
11975 static_call_cond(kvm_x86_start_assignment)(kvm);
Paolo Bonzini5544eb92015-07-07 15:41:58 +020011976}
11977EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
11978
11979void kvm_arch_end_assignment(struct kvm *kvm)
11980{
11981 atomic_dec(&kvm->arch.assigned_device_count);
11982}
11983EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
11984
11985bool kvm_arch_has_assigned_device(struct kvm *kvm)
11986{
11987 return atomic_read(&kvm->arch.assigned_device_count);
11988}
11989EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
11990
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060011991void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
11992{
11993 atomic_inc(&kvm->arch.noncoherent_dma_count);
11994}
11995EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
11996
11997void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
11998{
11999 atomic_dec(&kvm->arch.noncoherent_dma_count);
12000}
12001EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
12002
12003bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
12004{
12005 return atomic_read(&kvm->arch.noncoherent_dma_count);
12006}
12007EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
12008
Alex Williamson14717e22016-05-05 11:58:35 -060012009bool kvm_arch_has_irq_bypass(void)
12010{
Sean Christopherson92735b12019-08-02 15:06:17 -070012011 return true;
Alex Williamson14717e22016-05-05 11:58:35 -060012012}
12013
Feng Wu87276882015-09-18 22:29:40 +080012014int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
12015 struct irq_bypass_producer *prod)
12016{
12017 struct kvm_kernel_irqfd *irqfd =
12018 container_of(cons, struct kvm_kernel_irqfd, consumer);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012019 int ret;
Feng Wu87276882015-09-18 22:29:40 +080012020
Alex Williamson14717e22016-05-05 11:58:35 -060012021 irqfd->producer = prod;
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012022 kvm_arch_start_assignment(irqfd->kvm);
Jason Baronb36464772021-01-14 22:27:56 -050012023 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm,
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012024 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +080012025
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012026 if (ret)
12027 kvm_arch_end_assignment(irqfd->kvm);
12028
12029 return ret;
Feng Wu87276882015-09-18 22:29:40 +080012030}
12031
12032void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
12033 struct irq_bypass_producer *prod)
12034{
12035 int ret;
12036 struct kvm_kernel_irqfd *irqfd =
12037 container_of(cons, struct kvm_kernel_irqfd, consumer);
12038
Feng Wu87276882015-09-18 22:29:40 +080012039 WARN_ON(irqfd->producer != prod);
12040 irqfd->producer = NULL;
12041
12042 /*
12043 * When producer of consumer is unregistered, we change back to
12044 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +020012045 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +080012046 * int this case doesn't want to receive the interrupts.
12047 */
Jason Baronb36464772021-01-14 22:27:56 -050012048 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm, prod->irq, irqfd->gsi, 0);
Feng Wu87276882015-09-18 22:29:40 +080012049 if (ret)
12050 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
12051 " fails: %d\n", irqfd->consumer.token, ret);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012052
12053 kvm_arch_end_assignment(irqfd->kvm);
Feng Wu87276882015-09-18 22:29:40 +080012054}
12055
12056int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
12057 uint32_t guest_irq, bool set)
12058{
Jason Baronb36464772021-01-14 22:27:56 -050012059 return static_call(kvm_x86_update_pi_irte)(kvm, host_irq, guest_irq, set);
Feng Wu87276882015-09-18 22:29:40 +080012060}
12061
Longpeng(Mike)515a0c72021-08-27 16:00:03 +080012062bool kvm_arch_irqfd_route_changed(struct kvm_kernel_irq_routing_entry *old,
12063 struct kvm_kernel_irq_routing_entry *new)
12064{
12065 if (new->type != KVM_IRQ_ROUTING_MSI)
12066 return true;
12067
12068 return !!memcmp(&old->msi, &new->msi, sizeof(new->msi));
12069}
12070
Feng Wu520040142016-01-25 16:53:33 +080012071bool kvm_vector_hashing_enabled(void)
12072{
12073 return vector_hashing;
12074}
Feng Wu520040142016-01-25 16:53:33 +080012075
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012076bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
12077{
12078 return (vcpu->arch.msr_kvm_poll_control & 1) == 0;
12079}
12080EXPORT_SYMBOL_GPL(kvm_arch_no_poll);
12081
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012082
12083int kvm_spec_ctrl_test_value(u64 value)
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012084{
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012085 /*
12086 * test that setting IA32_SPEC_CTRL to given value
12087 * is allowed by the host processor
12088 */
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012089
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012090 u64 saved_value;
12091 unsigned long flags;
12092 int ret = 0;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012093
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012094 local_irq_save(flags);
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012095
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012096 if (rdmsrl_safe(MSR_IA32_SPEC_CTRL, &saved_value))
12097 ret = 1;
12098 else if (wrmsrl_safe(MSR_IA32_SPEC_CTRL, value))
12099 ret = 1;
12100 else
12101 wrmsrl(MSR_IA32_SPEC_CTRL, saved_value);
12102
12103 local_irq_restore(flags);
12104
12105 return ret;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012106}
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012107EXPORT_SYMBOL_GPL(kvm_spec_ctrl_test_value);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012108
Mohammed Gamal89786142020-07-10 17:48:03 +020012109void kvm_fixup_and_inject_pf_error(struct kvm_vcpu *vcpu, gva_t gva, u16 error_code)
12110{
12111 struct x86_exception fault;
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012112 u32 access = error_code &
12113 (PFERR_WRITE_MASK | PFERR_FETCH_MASK | PFERR_USER_MASK);
Mohammed Gamal89786142020-07-10 17:48:03 +020012114
12115 if (!(error_code & PFERR_PRESENT_MASK) ||
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012116 vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, &fault) != UNMAPPED_GVA) {
Mohammed Gamal89786142020-07-10 17:48:03 +020012117 /*
12118 * If vcpu->arch.walk_mmu->gva_to_gpa succeeded, the page
12119 * tables probably do not match the TLB. Just proceed
12120 * with the error code that the processor gave.
12121 */
12122 fault.vector = PF_VECTOR;
12123 fault.error_code_valid = true;
12124 fault.error_code = error_code;
12125 fault.nested_page_fault = false;
12126 fault.address = gva;
12127 }
12128 vcpu->arch.walk_mmu->inject_page_fault(vcpu, &fault);
12129}
12130EXPORT_SYMBOL_GPL(kvm_fixup_and_inject_pf_error);
Carsten Otte043405e2007-10-10 17:16:19 +020012131
Babu Moger3f3393b2020-09-11 14:29:05 -050012132/*
12133 * Handles kvm_read/write_guest_virt*() result and either injects #PF or returns
12134 * KVM_EXIT_INTERNAL_ERROR for cases not currently handled by KVM. Return value
12135 * indicates whether exit to userspace is needed.
12136 */
12137int kvm_handle_memory_failure(struct kvm_vcpu *vcpu, int r,
12138 struct x86_exception *e)
12139{
12140 if (r == X86EMUL_PROPAGATE_FAULT) {
12141 kvm_inject_emulated_page_fault(vcpu, e);
12142 return 1;
12143 }
12144
12145 /*
12146 * In case kvm_read/write_guest_virt*() failed with X86EMUL_IO_NEEDED
12147 * while handling a VMX instruction KVM could've handled the request
12148 * correctly by exiting to userspace and performing I/O but there
12149 * doesn't seem to be a real use-case behind such requests, just return
12150 * KVM_EXIT_INTERNAL_ERROR for now.
12151 */
12152 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
12153 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
12154 vcpu->run->internal.ndata = 0;
12155
12156 return 0;
12157}
12158EXPORT_SYMBOL_GPL(kvm_handle_memory_failure);
12159
Babu Moger97150922020-09-11 14:29:12 -050012160int kvm_handle_invpcid(struct kvm_vcpu *vcpu, unsigned long type, gva_t gva)
12161{
12162 bool pcid_enabled;
12163 struct x86_exception e;
Babu Moger97150922020-09-11 14:29:12 -050012164 struct {
12165 u64 pcid;
12166 u64 gla;
12167 } operand;
12168 int r;
12169
12170 r = kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e);
12171 if (r != X86EMUL_CONTINUE)
12172 return kvm_handle_memory_failure(vcpu, r, &e);
12173
12174 if (operand.pcid >> 12 != 0) {
12175 kvm_inject_gp(vcpu, 0);
12176 return 1;
12177 }
12178
12179 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
12180
12181 switch (type) {
12182 case INVPCID_TYPE_INDIV_ADDR:
12183 if ((!pcid_enabled && (operand.pcid != 0)) ||
12184 is_noncanonical_address(operand.gla, vcpu)) {
12185 kvm_inject_gp(vcpu, 0);
12186 return 1;
12187 }
12188 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
12189 return kvm_skip_emulated_instruction(vcpu);
12190
12191 case INVPCID_TYPE_SINGLE_CTXT:
12192 if (!pcid_enabled && (operand.pcid != 0)) {
12193 kvm_inject_gp(vcpu, 0);
12194 return 1;
12195 }
12196
Sean Christopherson21823fb2021-06-09 16:42:24 -070012197 kvm_invalidate_pcid(vcpu, operand.pcid);
Babu Moger97150922020-09-11 14:29:12 -050012198 return kvm_skip_emulated_instruction(vcpu);
12199
12200 case INVPCID_TYPE_ALL_NON_GLOBAL:
12201 /*
12202 * Currently, KVM doesn't mark global entries in the shadow
12203 * page tables, so a non-global flush just degenerates to a
12204 * global flush. If needed, we could optimize this later by
12205 * keeping track of global entries in shadow page tables.
12206 */
12207
12208 fallthrough;
12209 case INVPCID_TYPE_ALL_INCL_GLOBAL:
Sean Christopherson28f28d42021-06-09 16:42:30 -070012210 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Babu Moger97150922020-09-11 14:29:12 -050012211 return kvm_skip_emulated_instruction(vcpu);
12212
12213 default:
12214 BUG(); /* We have already checked above that type <= 3 */
12215 }
12216}
12217EXPORT_SYMBOL_GPL(kvm_handle_invpcid);
12218
Tom Lendacky8f423a82020-12-10 11:09:53 -060012219static int complete_sev_es_emulated_mmio(struct kvm_vcpu *vcpu)
12220{
12221 struct kvm_run *run = vcpu->run;
12222 struct kvm_mmio_fragment *frag;
12223 unsigned int len;
12224
12225 BUG_ON(!vcpu->mmio_needed);
12226
12227 /* Complete previous fragment */
12228 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
12229 len = min(8u, frag->len);
12230 if (!vcpu->mmio_is_write)
12231 memcpy(frag->data, run->mmio.data, len);
12232
12233 if (frag->len <= 8) {
12234 /* Switch to the next fragment. */
12235 frag++;
12236 vcpu->mmio_cur_fragment++;
12237 } else {
12238 /* Go forward to the next mmio piece. */
12239 frag->data += len;
12240 frag->gpa += len;
12241 frag->len -= len;
12242 }
12243
12244 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
12245 vcpu->mmio_needed = 0;
12246
12247 // VMG change, at this point, we're always done
12248 // RIP has already been advanced
12249 return 1;
12250 }
12251
12252 // More MMIO is needed
12253 run->mmio.phys_addr = frag->gpa;
12254 run->mmio.len = min(8u, frag->len);
12255 run->mmio.is_write = vcpu->mmio_is_write;
12256 if (run->mmio.is_write)
12257 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
12258 run->exit_reason = KVM_EXIT_MMIO;
12259
12260 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12261
12262 return 0;
12263}
12264
12265int kvm_sev_es_mmio_write(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12266 void *data)
12267{
12268 int handled;
12269 struct kvm_mmio_fragment *frag;
12270
12271 if (!data)
12272 return -EINVAL;
12273
12274 handled = write_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12275 if (handled == bytes)
12276 return 1;
12277
12278 bytes -= handled;
12279 gpa += handled;
12280 data += handled;
12281
12282 /*TODO: Check if need to increment number of frags */
12283 frag = vcpu->mmio_fragments;
12284 vcpu->mmio_nr_fragments = 1;
12285 frag->len = bytes;
12286 frag->gpa = gpa;
12287 frag->data = data;
12288
12289 vcpu->mmio_needed = 1;
12290 vcpu->mmio_cur_fragment = 0;
12291
12292 vcpu->run->mmio.phys_addr = gpa;
12293 vcpu->run->mmio.len = min(8u, frag->len);
12294 vcpu->run->mmio.is_write = 1;
12295 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
12296 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12297
12298 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12299
12300 return 0;
12301}
12302EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_write);
12303
12304int kvm_sev_es_mmio_read(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12305 void *data)
12306{
12307 int handled;
12308 struct kvm_mmio_fragment *frag;
12309
12310 if (!data)
12311 return -EINVAL;
12312
12313 handled = read_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12314 if (handled == bytes)
12315 return 1;
12316
12317 bytes -= handled;
12318 gpa += handled;
12319 data += handled;
12320
12321 /*TODO: Check if need to increment number of frags */
12322 frag = vcpu->mmio_fragments;
12323 vcpu->mmio_nr_fragments = 1;
12324 frag->len = bytes;
12325 frag->gpa = gpa;
12326 frag->data = data;
12327
12328 vcpu->mmio_needed = 1;
12329 vcpu->mmio_cur_fragment = 0;
12330
12331 vcpu->run->mmio.phys_addr = gpa;
12332 vcpu->run->mmio.len = min(8u, frag->len);
12333 vcpu->run->mmio.is_write = 0;
12334 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12335
12336 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12337
12338 return 0;
12339}
12340EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_read);
12341
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012342static int complete_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12343{
12344 memcpy(vcpu->arch.guest_ins_data, vcpu->arch.pio_data,
12345 vcpu->arch.pio.count * vcpu->arch.pio.size);
12346 vcpu->arch.pio.count = 0;
12347
12348 return 1;
12349}
12350
12351static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
12352 unsigned int port, void *data, unsigned int count)
12353{
12354 int ret;
12355
12356 ret = emulator_pio_out_emulated(vcpu->arch.emulate_ctxt, size, port,
12357 data, count);
12358 if (ret)
12359 return ret;
12360
12361 vcpu->arch.pio.count = 0;
12362
12363 return 0;
12364}
12365
12366static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
12367 unsigned int port, void *data, unsigned int count)
12368{
12369 int ret;
12370
12371 ret = emulator_pio_in_emulated(vcpu->arch.emulate_ctxt, size, port,
12372 data, count);
12373 if (ret) {
12374 vcpu->arch.pio.count = 0;
12375 } else {
12376 vcpu->arch.guest_ins_data = data;
12377 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_ins;
12378 }
12379
12380 return 0;
12381}
12382
12383int kvm_sev_es_string_io(struct kvm_vcpu *vcpu, unsigned int size,
12384 unsigned int port, void *data, unsigned int count,
12385 int in)
12386{
12387 return in ? kvm_sev_es_ins(vcpu, size, port, data, count)
12388 : kvm_sev_es_outs(vcpu, size, port, data, count);
12389}
12390EXPORT_SYMBOL_GPL(kvm_sev_es_string_io);
12391
Lorenzo Bresciad95df952020-12-23 14:45:07 +000012392EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_entry);
Carsten Otte043405e2007-10-10 17:16:19 +020012393EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
12394EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
12395EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
12396EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
12397EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
12398EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
12399EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
12400EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
12401EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
12402EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Sean Christopherson5497b952019-07-11 08:58:29 -070012403EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed);
Carsten Otte043405e2007-10-10 17:16:19 +020012404EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
12405EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
12406EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
12407EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Peter Xu4f75bcc2019-09-06 10:17:22 +080012408EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update);
Carsten Otte043405e2007-10-10 17:16:19 +020012409EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
12410EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
12411EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
12412EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);
Suravee Suthikulpanitab56f8e2020-03-12 05:39:28 -050012413EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log);
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -060012414EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request);
Tom Lendackyd523ab6b2020-12-10 11:09:48 -060012415EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_enter);
12416EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_exit);
Tom Lendacky59e38b52020-12-10 11:09:52 -060012417EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_enter);
12418EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_exit);