blob: 03091a2e0822340fcbbe4053bcb2153d962cf5a2 [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
Oliver Upton55c0cef2021-09-16 18:15:34 +00002784static void get_kvmclock(struct kvm *kvm, struct kvm_clock_data *data)
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;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002789
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002790 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
Paolo Bonzini8b953442016-11-16 18:31:30 +01002791 if (!ka->use_master_clock) {
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002792 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Oliver Upton55c0cef2021-09-16 18:15:34 +00002793 data->clock = get_kvmclock_base_ns() + ka->kvmclock_offset;
2794 return;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002795 }
2796
Oliver Upton55c0cef2021-09-16 18:15:34 +00002797 data->flags |= KVM_CLOCK_TSC_STABLE;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002798 hv_clock.tsc_timestamp = ka->master_cycle_now;
2799 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002800 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Paolo Bonzini8b953442016-11-16 18:31:30 +01002801
Wanpeng Lie2c22062017-05-11 18:12:05 -07002802 /* both __this_cpu_read() and rdtsc() should be on the same cpu */
2803 get_cpu();
2804
Wanpeng Lie70b57a2017-11-20 14:55:05 -08002805 if (__this_cpu_read(cpu_tsc_khz)) {
2806 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
2807 &hv_clock.tsc_shift,
2808 &hv_clock.tsc_to_system_mul);
Oliver Upton55c0cef2021-09-16 18:15:34 +00002809 data->clock = __pvclock_read_cycles(&hv_clock, rdtsc());
2810 } else {
2811 data->clock = get_kvmclock_base_ns() + ka->kvmclock_offset;
2812 }
Wanpeng Lie2c22062017-05-11 18:12:05 -07002813
2814 put_cpu();
Oliver Upton55c0cef2021-09-16 18:15:34 +00002815}
Wanpeng Lie2c22062017-05-11 18:12:05 -07002816
Oliver Upton55c0cef2021-09-16 18:15:34 +00002817u64 get_kvmclock_ns(struct kvm *kvm)
2818{
2819 struct kvm_clock_data data;
2820
2821 /*
2822 * Zero flags as it's accessed RMW, leave everything else uninitialized
2823 * as clock is always written and no other fields are consumed.
2824 */
2825 data.flags = 0;
2826
2827 get_kvmclock(kvm, &data);
2828 return data.clock;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002829}
2830
Joao Martinsaa096aa2019-02-01 13:01:45 -05002831static void kvm_setup_pvclock_page(struct kvm_vcpu *v,
2832 struct gfn_to_hva_cache *cache,
2833 unsigned int offset)
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002834{
2835 struct kvm_vcpu_arch *vcpu = &v->arch;
2836 struct pvclock_vcpu_time_info guest_hv_clock;
2837
Joao Martinsaa096aa2019-02-01 13:01:45 -05002838 if (unlikely(kvm_read_guest_offset_cached(v->kvm, cache,
2839 &guest_hv_clock, offset, sizeof(guest_hv_clock))))
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002840 return;
2841
2842 /* This VCPU is paused, but it's legal for a guest to read another
2843 * VCPU's kvmclock, so we really have to follow the specification where
2844 * it says that version is odd if data is being modified, and even after
2845 * it is consistent.
2846 *
2847 * Version field updates must be kept separate. This is because
2848 * kvm_write_guest_cached might use a "rep movs" instruction, and
2849 * writes within a string instruction are weakly ordered. So there
2850 * are three writes overall.
2851 *
2852 * As a small optimization, only write the version field in the first
2853 * and third write. The vcpu->pv_time cache is still valid, because the
2854 * version field is the first in the struct.
2855 */
2856 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
2857
Liran Alon51c4b8b2017-11-05 16:11:30 +02002858 if (guest_hv_clock.version & 1)
2859 ++guest_hv_clock.version; /* first time write, random junk */
2860
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002861 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002862 kvm_write_guest_offset_cached(v->kvm, cache,
2863 &vcpu->hv_clock, offset,
2864 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002865
2866 smp_wmb();
2867
2868 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
2869 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
2870
2871 if (vcpu->pvclock_set_guest_stopped_request) {
2872 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
2873 vcpu->pvclock_set_guest_stopped_request = false;
2874 }
2875
2876 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
2877
Joao Martinsaa096aa2019-02-01 13:01:45 -05002878 kvm_write_guest_offset_cached(v->kvm, cache,
2879 &vcpu->hv_clock, offset,
2880 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002881
2882 smp_wmb();
2883
2884 vcpu->hv_clock.version++;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002885 kvm_write_guest_offset_cached(v->kvm, cache,
2886 &vcpu->hv_clock, offset,
2887 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002888}
2889
Zachary Amsden34c238a2010-09-18 14:38:14 -10002890static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002891{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002892 unsigned long flags, tgt_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002893 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002894 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02002895 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002896 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002897 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002898 bool use_master_clock;
2899
2900 kernel_ns = 0;
2901 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002902
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002903 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02002904 * If the host uses TSC clock, then passthrough TSC as stable
2905 * to the guest.
2906 */
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002907 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002908 use_master_clock = ka->use_master_clock;
2909 if (use_master_clock) {
2910 host_tsc = ka->master_cycle_now;
2911 kernel_ns = ka->master_kernel_ns;
2912 }
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002913 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002914
2915 /* Keep irq disabled to prevent changes to the clock */
2916 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002917 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
2918 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002919 local_irq_restore(flags);
2920 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
2921 return 1;
2922 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002923 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002924 host_tsc = rdtsc();
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002925 kernel_ns = get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02002926 }
2927
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002928 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002929
2930 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10002931 * We may have to catch up the TSC to match elapsed wall clock
2932 * time for two reasons, even if kvmclock is used.
2933 * 1) CPU could have been running below the maximum TSC rate
2934 * 2) Broken TSC compensation resets the base at each VCPU
2935 * entry to avoid unknown leaps of TSC even when running
2936 * again on the same CPU. This may cause apparent elapsed
2937 * time to disappear, and the guest to stand still or run
2938 * very slowly.
2939 */
2940 if (vcpu->tsc_catchup) {
2941 u64 tsc = compute_guest_tsc(v, kernel_ns);
2942 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02002943 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002944 tsc_timestamp = tsc;
2945 }
2946 }
2947
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002948 local_irq_restore(flags);
2949
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002950 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10002951
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002952 if (kvm_has_tsc_control)
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002953 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz,
2954 v->arch.l1_tsc_scaling_ratio);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002955
2956 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002957 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002958 &vcpu->hv_clock.tsc_shift,
2959 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002960 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10002961 }
2962
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002963 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10002964 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10002965 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002966
Marcelo Tosattid8281992012-11-27 23:29:01 -02002967 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002968 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002969 if (use_master_clock)
2970 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
2971
Marcelo Tosatti78c03372012-11-27 23:28:47 -02002972 vcpu->hv_clock.flags = pvclock_flags;
2973
Paolo Bonzini095cf552016-02-08 12:54:12 +01002974 if (vcpu->pv_time_enabled)
Joao Martinsaa096aa2019-02-01 13:01:45 -05002975 kvm_setup_pvclock_page(v, &vcpu->pv_time, 0);
2976 if (vcpu->xen.vcpu_info_set)
2977 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_info_cache,
2978 offsetof(struct compat_vcpu_info, time));
Joao Martinsf2340cd2018-07-23 11:20:57 -04002979 if (vcpu->xen.vcpu_time_info_set)
2980 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_time_info_cache, 0);
Sean Christopherson94c245a2021-09-10 11:32:20 -07002981 if (!v->vcpu_idx)
Paolo Bonzini095cf552016-02-08 12:54:12 +01002982 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10002983 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002984}
2985
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002986/*
2987 * kvmclock updates which are isolated to a given vcpu, such as
2988 * vcpu->cpu migration, should not allow system_timestamp from
2989 * the rest of the vcpus to remain static. Otherwise ntp frequency
2990 * correction applies to one vcpu's system_timestamp but not
2991 * the others.
2992 *
2993 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01002994 * We need to rate-limit these requests though, as they can
2995 * considerably slow guests that have a large number of vcpus.
2996 * The time for a remote vcpu to update its kvmclock is bound
2997 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002998 */
2999
Andrew Jones7e44e442014-02-28 12:52:54 +01003000#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
3001
3002static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003003{
3004 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01003005 struct delayed_work *dwork = to_delayed_work(work);
3006 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3007 kvmclock_update_work);
3008 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003009 struct kvm_vcpu *vcpu;
3010
3011 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003012 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003013 kvm_vcpu_kick(vcpu);
3014 }
3015}
3016
Andrew Jones7e44e442014-02-28 12:52:54 +01003017static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
3018{
3019 struct kvm *kvm = v->kvm;
3020
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003021 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01003022 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
3023 KVMCLOCK_UPDATE_DELAY);
3024}
3025
Andrew Jones332967a2014-02-28 12:52:55 +01003026#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
3027
3028static void kvmclock_sync_fn(struct work_struct *work)
3029{
3030 struct delayed_work *dwork = to_delayed_work(work);
3031 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3032 kvmclock_sync_work);
3033 struct kvm *kvm = container_of(ka, struct kvm, arch);
3034
Marcelo Tosatti630994b2015-05-12 22:42:04 -03003035 if (!kvmclock_periodic_sync)
3036 return;
3037
Andrew Jones332967a2014-02-28 12:52:55 +01003038 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
3039 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
3040 KVMCLOCK_SYNC_PERIOD);
3041}
3042
Borislav Petkov191c8132019-04-18 18:32:50 +02003043/*
3044 * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP.
3045 */
3046static bool can_set_mci_status(struct kvm_vcpu *vcpu)
3047{
3048 /* McStatusWrEn enabled? */
Sean Christopherson23493d02020-03-04 17:34:33 -08003049 if (guest_cpuid_is_amd_or_hygon(vcpu))
Borislav Petkov191c8132019-04-18 18:32:50 +02003050 return !!(vcpu->arch.msr_hwcr & BIT_ULL(18));
3051
3052 return false;
3053}
3054
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003055static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Huang Ying890ca9a2009-05-11 16:48:15 +08003056{
3057 u64 mcg_cap = vcpu->arch.mcg_cap;
3058 unsigned bank_num = mcg_cap & 0xff;
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003059 u32 msr = msr_info->index;
3060 u64 data = msr_info->data;
Huang Ying890ca9a2009-05-11 16:48:15 +08003061
3062 switch (msr) {
3063 case MSR_IA32_MCG_STATUS:
3064 vcpu->arch.mcg_status = data;
3065 break;
3066 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003067 if (!(mcg_cap & MCG_CTL_P) &&
3068 (data || !msr_info->host_initiated))
Huang Ying890ca9a2009-05-11 16:48:15 +08003069 return 1;
3070 if (data != 0 && data != ~(u64)0)
Paolo Bonzini44883f02018-07-26 13:01:52 +02003071 return 1;
Huang Ying890ca9a2009-05-11 16:48:15 +08003072 vcpu->arch.mcg_ctl = data;
3073 break;
3074 default:
3075 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003076 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003077 u32 offset = array_index_nospec(
3078 msr - MSR_IA32_MC0_CTL,
3079 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3080
Andre Przywara114be422010-03-24 17:46:42 +01003081 /* only 0 or all 1s can be written to IA32_MCi_CTL
3082 * some Linux kernels though clear bit 10 in bank 4 to
3083 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
3084 * this to avoid an uncatched #GP in the guest
3085 */
Huang Ying890ca9a2009-05-11 16:48:15 +08003086 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01003087 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08003088 return -1;
Borislav Petkov191c8132019-04-18 18:32:50 +02003089
3090 /* MCi_STATUS */
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003091 if (!msr_info->host_initiated &&
Borislav Petkov191c8132019-04-18 18:32:50 +02003092 (offset & 0x3) == 1 && data != 0) {
3093 if (!can_set_mci_status(vcpu))
3094 return -1;
3095 }
3096
Huang Ying890ca9a2009-05-11 16:48:15 +08003097 vcpu->arch.mce_banks[offset] = data;
3098 break;
3099 }
3100 return 1;
3101 }
3102 return 0;
3103}
3104
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003105static inline bool kvm_pv_async_pf_enabled(struct kvm_vcpu *vcpu)
3106{
3107 u64 mask = KVM_ASYNC_PF_ENABLED | KVM_ASYNC_PF_DELIVERY_AS_INT;
3108
3109 return (vcpu->arch.apf.msr_en_val & mask) == mask;
3110}
3111
Gleb Natapov344d9582010-10-14 11:22:50 +02003112static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
3113{
3114 gpa_t gpa = data & ~0x3f;
3115
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003116 /* Bits 4:5 are reserved, Should be zero */
3117 if (data & 0x30)
Gleb Natapov344d9582010-10-14 11:22:50 +02003118 return 1;
3119
Oliver Upton66570e92020-08-18 15:24:28 +00003120 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_VMEXIT) &&
3121 (data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT))
3122 return 1;
3123
3124 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT) &&
3125 (data & KVM_ASYNC_PF_DELIVERY_AS_INT))
3126 return 1;
3127
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003128 if (!lapic_in_kernel(vcpu))
Vitaly Kuznetsovd831de12020-09-11 11:31:47 +02003129 return data ? 1 : 0;
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003130
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003131 vcpu->arch.apf.msr_en_val = data;
Gleb Natapov344d9582010-10-14 11:22:50 +02003132
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003133 if (!kvm_pv_async_pf_enabled(vcpu)) {
Gleb Natapov344d9582010-10-14 11:22:50 +02003134 kvm_clear_async_pf_completion_queue(vcpu);
3135 kvm_async_pf_hash_reset(vcpu);
3136 return 0;
3137 }
3138
Paolo Bonzini4e335d92017-05-02 16:20:18 +02003139 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003140 sizeof(u64)))
Gleb Natapov344d9582010-10-14 11:22:50 +02003141 return 1;
3142
Gleb Natapov6adba522010-10-14 11:22:55 +02003143 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Wanpeng Li52a5c152017-07-13 18:30:42 -07003144 vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003145
Gleb Natapov344d9582010-10-14 11:22:50 +02003146 kvm_async_pf_wakeup_all(vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003147
3148 return 0;
3149}
3150
3151static int kvm_pv_enable_async_pf_int(struct kvm_vcpu *vcpu, u64 data)
3152{
3153 /* Bits 8-63 are reserved */
3154 if (data >> 8)
3155 return 1;
3156
3157 if (!lapic_in_kernel(vcpu))
3158 return 1;
3159
3160 vcpu->arch.apf.msr_int_val = data;
3161
3162 vcpu->arch.apf.vec = data & KVM_ASYNC_PF_VEC_MASK;
3163
Gleb Natapov344d9582010-10-14 11:22:50 +02003164 return 0;
3165}
3166
Glauber Costa12f9a482011-02-01 14:16:40 -05003167static void kvmclock_reset(struct kvm_vcpu *vcpu)
3168{
Andy Honig0b794592013-02-20 14:48:10 -08003169 vcpu->arch.pv_time_enabled = false;
Paolo Bonzini49dedf02019-10-10 12:49:22 +02003170 vcpu->arch.time = 0;
Glauber Costa12f9a482011-02-01 14:16:40 -05003171}
3172
Sean Christopherson77809382020-03-20 14:28:18 -07003173static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003174{
3175 ++vcpu->stat.tlb_flush;
Jason Baronb36464772021-01-14 22:27:56 -05003176 static_call(kvm_x86_tlb_flush_all)(vcpu);
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003177}
3178
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003179static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
3180{
3181 ++vcpu->stat.tlb_flush;
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003182
3183 if (!tdp_enabled) {
3184 /*
3185 * A TLB flush on behalf of the guest is equivalent to
3186 * INVPCID(all), toggling CR4.PGE, etc., which requires
3187 * a forced sync of the shadow page tables. Unload the
3188 * entire MMU here and the subsequent load will sync the
3189 * shadow page tables, and also flush the TLB.
3190 */
3191 kvm_mmu_unload(vcpu);
3192 return;
3193 }
3194
Jason Baronb36464772021-01-14 22:27:56 -05003195 static_call(kvm_x86_tlb_flush_guest)(vcpu);
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003196}
3197
Glauber Costac9aaa892011-07-11 15:28:14 -04003198static void record_steal_time(struct kvm_vcpu *vcpu)
3199{
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003200 struct kvm_host_map map;
3201 struct kvm_steal_time *st;
3202
David Woodhouse30b5c852021-03-01 12:53:09 +00003203 if (kvm_xen_msr_enabled(vcpu->kvm)) {
3204 kvm_xen_runstate_set_running(vcpu);
3205 return;
3206 }
3207
Glauber Costac9aaa892011-07-11 15:28:14 -04003208 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
3209 return;
3210
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003211 /* -EAGAIN is returned in atomic context so we can just return. */
3212 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT,
3213 &map, &vcpu->arch.st.cache, false))
Glauber Costac9aaa892011-07-11 15:28:14 -04003214 return;
3215
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003216 st = map.hva +
3217 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
3218
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003219 /*
3220 * Doing a TLB flush here, on the guest's behalf, can avoid
3221 * expensive IPIs.
3222 */
Oliver Upton66570e92020-08-18 15:24:28 +00003223 if (guest_pv_has(vcpu, KVM_FEATURE_PV_TLB_FLUSH)) {
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003224 u8 st_preempted = xchg(&st->preempted, 0);
3225
Oliver Upton66570e92020-08-18 15:24:28 +00003226 trace_kvm_pv_tlb_flush(vcpu->vcpu_id,
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003227 st_preempted & KVM_VCPU_FLUSH_TLB);
3228 if (st_preempted & KVM_VCPU_FLUSH_TLB)
Oliver Upton66570e92020-08-18 15:24:28 +00003229 kvm_vcpu_flush_tlb_guest(vcpu);
Wanpeng Li1eff0ad2021-05-18 05:00:33 -07003230 } else {
3231 st->preempted = 0;
Oliver Upton66570e92020-08-18 15:24:28 +00003232 }
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003233
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00003234 vcpu->arch.st.preempted = 0;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003235
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003236 if (st->version & 1)
3237 st->version += 1; /* first time write, random junk */
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003238
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003239 st->version += 1;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003240
3241 smp_wmb();
3242
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003243 st->steal += current->sched_info.run_delay -
Liang Chenc54cdf12016-03-16 19:33:16 +08003244 vcpu->arch.st.last_steal;
3245 vcpu->arch.st.last_steal = current->sched_info.run_delay;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003246
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003247 smp_wmb();
3248
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003249 st->version += 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003250
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003251 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, false);
Glauber Costac9aaa892011-07-11 15:28:14 -04003252}
3253
Will Auld8fe8ab42012-11-29 12:42:12 -08003254int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003255{
Gleb Natapov57537852012-01-15 14:17:22 +02003256 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08003257 u32 msr = msr_info->index;
3258 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02003259
Joao Martins1232f8e2018-06-13 06:10:37 -04003260 if (msr && msr == vcpu->kvm->arch.xen_hvm_config.msr)
Joao Martins23200b72018-06-13 09:55:44 -04003261 return kvm_xen_write_hypercall_page(vcpu, data);
Joao Martins1232f8e2018-06-13 06:10:37 -04003262
Carsten Otte15c4a642007-10-30 18:44:17 +01003263 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01003264 case MSR_AMD64_NB_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003265 case MSR_IA32_UCODE_WRITE:
3266 case MSR_VM_HSAVE_PA:
3267 case MSR_AMD64_PATCH_LOADER:
3268 case MSR_AMD64_BU_CFG2:
Ladi Prosek405a3532017-04-06 15:22:20 +02003269 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003270 case MSR_F15H_EX_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003271 break;
3272
Wanpeng Li518e7b92018-02-28 14:03:31 +08003273 case MSR_IA32_UCODE_REV:
3274 if (msr_info->host_initiated)
3275 vcpu->arch.microcode_version = data;
3276 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003277 case MSR_IA32_ARCH_CAPABILITIES:
3278 if (!msr_info->host_initiated)
3279 return 1;
3280 vcpu->arch.arch_capabilities = data;
3281 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003282 case MSR_IA32_PERF_CAPABILITIES: {
3283 struct kvm_msr_entry msr_ent = {.index = msr, .data = 0};
3284
3285 if (!msr_info->host_initiated)
3286 return 1;
3287 if (guest_cpuid_has(vcpu, X86_FEATURE_PDCM) && kvm_get_msr_feature(&msr_ent))
3288 return 1;
3289 if (data & ~msr_ent.data)
3290 return 1;
3291
3292 vcpu->arch.perf_capabilities = data;
3293
3294 return 0;
3295 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003296 case MSR_EFER:
Sean Christopherson11988492019-04-02 08:19:15 -07003297 return set_efer(vcpu, msr_info);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003298 case MSR_K7_HWCR:
3299 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01003300 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08003301 data &= ~(u64)0x8; /* ignore TLB cache disable */
Borislav Petkov191c8132019-04-18 18:32:50 +02003302
3303 /* Handle McStatusWrEn */
3304 if (data == BIT_ULL(18)) {
3305 vcpu->arch.msr_hwcr = data;
3306 } else if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003307 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
3308 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003309 return 1;
3310 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003311 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003312 case MSR_FAM10H_MMIO_CONF_BASE:
3313 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003314 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
3315 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003316 return 1;
3317 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003318 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03003319 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003320 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003321 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01003322 return kvm_set_apic_base(vcpu, msr_info);
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003323 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03003324 return kvm_x2apic_msr_write(vcpu, msr, data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003325 case MSR_IA32_TSC_DEADLINE:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003326 kvm_set_lapic_tscdeadline_msr(vcpu, data);
3327 break;
Will Auldba904632012-11-29 12:42:50 -08003328 case MSR_IA32_TSC_ADJUST:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003329 if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) {
Will Auldba904632012-11-29 12:42:50 -08003330 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06003331 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08003332 adjust_tsc_offset_guest(vcpu, adj);
Zelin Dengd9130a22021-04-28 10:22:01 +08003333 /* Before back to guest, tsc_timestamp must be adjusted
3334 * as well, otherwise guest's percpu pvclock time could jump.
3335 */
3336 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Will Auldba904632012-11-29 12:42:50 -08003337 }
3338 vcpu->arch.ia32_tsc_adjust_msr = data;
3339 }
3340 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003341 case MSR_IA32_MISC_ENABLE:
Wanpeng Li511a85562019-05-21 14:06:54 +08003342 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) &&
3343 ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) {
3344 if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3))
3345 return 1;
3346 vcpu->arch.ia32_misc_enable_msr = data;
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08003347 kvm_update_cpuid_runtime(vcpu);
Wanpeng Li511a85562019-05-21 14:06:54 +08003348 } else {
3349 vcpu->arch.ia32_misc_enable_msr = data;
3350 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003351 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003352 case MSR_IA32_SMBASE:
3353 if (!msr_info->host_initiated)
3354 return 1;
3355 vcpu->arch.smbase = data;
3356 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003357 case MSR_IA32_POWER_CTL:
3358 vcpu->arch.msr_ia32_power_ctl = data;
3359 break;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003360 case MSR_IA32_TSC:
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003361 if (msr_info->host_initiated) {
3362 kvm_synchronize_tsc(vcpu, data);
3363 } else {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01003364 u64 adj = kvm_compute_l1_tsc_offset(vcpu, data) - vcpu->arch.l1_tsc_offset;
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003365 adjust_tsc_offset_guest(vcpu, adj);
3366 vcpu->arch.ia32_tsc_adjust_msr += adj;
3367 }
Paolo Bonzinidd259932018-04-13 11:38:35 +02003368 break;
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003369 case MSR_IA32_XSS:
3370 if (!msr_info->host_initiated &&
3371 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3372 return 1;
3373 /*
Sean Christophersona1bead22020-03-02 15:57:00 -08003374 * KVM supports exposing PT to the guest, but does not support
3375 * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than
3376 * XSAVES/XRSTORS to save/restore PT MSRs.
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003377 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01003378 if (data & ~supported_xss)
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003379 return 1;
3380 vcpu->arch.ia32_xss = data;
3381 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003382 case MSR_SMI_COUNT:
3383 if (!msr_info->host_initiated)
3384 return 1;
3385 vcpu->arch.smi_count = data;
3386 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003387 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003388 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3389 return 1;
3390
Joao Martins629b5342018-06-28 15:06:43 -04003391 vcpu->kvm->arch.wall_clock = data;
3392 kvm_write_wall_clock(vcpu->kvm, data, 0);
Oliver Upton66570e92020-08-18 15:24:28 +00003393 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003394 case MSR_KVM_WALL_CLOCK:
Oliver Upton66570e92020-08-18 15:24:28 +00003395 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3396 return 1;
3397
Joao Martins629b5342018-06-28 15:06:43 -04003398 vcpu->kvm->arch.wall_clock = data;
3399 kvm_write_wall_clock(vcpu->kvm, data, 0);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003400 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003401 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003402 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3403 return 1;
3404
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003405 kvm_write_system_time(vcpu, data, false, msr_info->host_initiated);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003406 break;
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003407 case MSR_KVM_SYSTEM_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003408 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3409 return 1;
3410
3411 kvm_write_system_time(vcpu, data, true, msr_info->host_initiated);
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003412 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003413 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003414 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3415 return 1;
3416
Gleb Natapov344d9582010-10-14 11:22:50 +02003417 if (kvm_pv_enable_async_pf(vcpu, data))
3418 return 1;
3419 break;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003420 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton66570e92020-08-18 15:24:28 +00003421 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3422 return 1;
3423
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003424 if (kvm_pv_enable_async_pf_int(vcpu, data))
3425 return 1;
3426 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003427 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003428 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton66570e92020-08-18 15:24:28 +00003429 return 1;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003430 if (data & 0x1) {
3431 vcpu->arch.apf.pageready_pending = false;
3432 kvm_check_async_pf_completion(vcpu);
3433 }
3434 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003435 case MSR_KVM_STEAL_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003436 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3437 return 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003438
3439 if (unlikely(!sched_info_on()))
3440 return 1;
3441
3442 if (data & KVM_STEAL_RESERVED_MASK)
3443 return 1;
3444
Glauber Costac9aaa892011-07-11 15:28:14 -04003445 vcpu->arch.st.msr_val = data;
3446
3447 if (!(data & KVM_MSR_ENABLED))
3448 break;
3449
Glauber Costac9aaa892011-07-11 15:28:14 -04003450 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
3451
3452 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003453 case MSR_KVM_PV_EOI_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003454 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3455 return 1;
3456
Ladi Prosek72bbf932018-10-16 18:49:59 +02003457 if (kvm_lapic_enable_pv_eoi(vcpu, data, sizeof(u8)))
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003458 return 1;
3459 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003460
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003461 case MSR_KVM_POLL_CONTROL:
Oliver Upton66570e92020-08-18 15:24:28 +00003462 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3463 return 1;
3464
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003465 /* only enable bit supported */
3466 if (data & (-1ULL << 1))
3467 return 1;
3468
3469 vcpu->arch.msr_kvm_poll_control = data;
3470 break;
3471
Huang Ying890ca9a2009-05-11 16:48:15 +08003472 case MSR_IA32_MCG_CTL:
3473 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003474 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003475 return set_msr_mce(vcpu, msr_info);
Andre Przywara71db6022009-06-12 22:01:29 +02003476
Wei Huang6912ac32015-06-12 01:34:56 -04003477 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3478 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003479 pr = true;
3480 fallthrough;
Wei Huang6912ac32015-06-12 01:34:56 -04003481 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3482 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003483 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003484 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02003485
3486 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03003487 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
3488 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02003489 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003490 case MSR_K7_CLK_CTL:
3491 /*
3492 * Ignore all writes to this no longer documented MSR.
3493 * Writes are only relevant for old K7 processors,
3494 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08003495 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003496 * affected processor models on the command line, hence
3497 * the need to ignore the workaround.
3498 */
3499 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003500 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003501 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3502 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003503 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3504 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003505 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003506 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3507 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3508 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003509 return kvm_hv_set_msr_common(vcpu, msr, data,
3510 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003511 case MSR_IA32_BBL_CR_CTL3:
3512 /* Drop writes to this legacy MSR -- see rdmsr
3513 * counterpart for further detail.
3514 */
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02003515 if (report_ignored_msrs)
3516 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
3517 msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05003518 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003519 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003520 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003521 return 1;
3522 vcpu->arch.osvw.length = data;
3523 break;
3524 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003525 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003526 return 1;
3527 vcpu->arch.osvw.status = data;
3528 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003529 case MSR_PLATFORM_INFO:
3530 if (!msr_info->host_initiated ||
Kyle Hueydb2336a2017-03-20 01:16:28 -07003531 (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) &&
3532 cpuid_fault_enabled(vcpu)))
3533 return 1;
3534 vcpu->arch.msr_platform_info = data;
3535 break;
3536 case MSR_MISC_FEATURES_ENABLES:
3537 if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT ||
3538 (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT &&
3539 !supports_cpuid_fault(vcpu)))
3540 return 1;
3541 vcpu->arch.msr_misc_features_enables = data;
3542 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003543 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003544 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003545 return kvm_pmu_set_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003546 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003547 }
3548 return 0;
3549}
3550EXPORT_SYMBOL_GPL(kvm_set_msr_common);
3551
Paolo Bonzini44883f02018-07-26 13:01:52 +02003552static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003553{
3554 u64 data;
3555 u64 mcg_cap = vcpu->arch.mcg_cap;
3556 unsigned bank_num = mcg_cap & 0xff;
3557
3558 switch (msr) {
3559 case MSR_IA32_P5_MC_ADDR:
3560 case MSR_IA32_P5_MC_TYPE:
3561 data = 0;
3562 break;
3563 case MSR_IA32_MCG_CAP:
3564 data = vcpu->arch.mcg_cap;
3565 break;
3566 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003567 if (!(mcg_cap & MCG_CTL_P) && !host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003568 return 1;
3569 data = vcpu->arch.mcg_ctl;
3570 break;
3571 case MSR_IA32_MCG_STATUS:
3572 data = vcpu->arch.mcg_status;
3573 break;
3574 default:
3575 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003576 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003577 u32 offset = array_index_nospec(
3578 msr - MSR_IA32_MC0_CTL,
3579 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3580
Huang Ying890ca9a2009-05-11 16:48:15 +08003581 data = vcpu->arch.mce_banks[offset];
3582 break;
3583 }
3584 return 1;
3585 }
3586 *pdata = data;
3587 return 0;
3588}
3589
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003590int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003591{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003592 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01003593 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01003594 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02003595 case MSR_IA32_LASTBRANCHFROMIP:
3596 case MSR_IA32_LASTBRANCHTOIP:
3597 case MSR_IA32_LASTINTFROMIP:
3598 case MSR_IA32_LASTINTTOIP:
Brijesh Singh059e5c32021-04-27 06:16:36 -05003599 case MSR_AMD64_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02003600 case MSR_K8_TSEG_ADDR:
3601 case MSR_K8_TSEG_MASK:
Avi Kivity61a6bd62008-12-29 17:32:28 +02003602 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02003603 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02003604 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003605 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003606 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03003607 case MSR_IA32_PERF_CTL:
Ladi Prosek405a3532017-04-06 15:22:20 +02003608 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003609 case MSR_F15H_EX_CFG:
Venkatesh Srinivas2ca1a062020-04-16 11:42:54 -07003610 /*
3611 * Intel Sandy Bridge CPUs must support the RAPL (running average power
3612 * limit) MSRs. Just return 0, as we do not want to expose the host
3613 * data here. Do not conditionalize this on CPUID, as KVM does not do
3614 * so for existing CPU-specific MSRs.
3615 */
3616 case MSR_RAPL_POWER_UNIT:
3617 case MSR_PP0_ENERGY_STATUS: /* Power plane 0 (core) */
3618 case MSR_PP1_ENERGY_STATUS: /* Power plane 1 (graphics uncore) */
3619 case MSR_PKG_ENERGY_STATUS: /* Total package */
3620 case MSR_DRAM_ENERGY_STATUS: /* DRAM controller */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003621 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01003622 break;
Janakarajan Natarajanc51eb522018-02-05 13:24:52 -06003623 case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5:
Vitaly Kuznetsovc28fa562021-03-29 14:48:04 +02003624 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
3625 return kvm_pmu_get_msr(vcpu, msr_info);
3626 if (!msr_info->host_initiated)
3627 return 1;
3628 msr_info->data = 0;
3629 break;
Wei Huang6912ac32015-06-12 01:34:56 -04003630 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3631 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3632 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
3633 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003634 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003635 return kvm_pmu_get_msr(vcpu, msr_info);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003636 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02003637 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003638 case MSR_IA32_UCODE_REV:
Wanpeng Li518e7b92018-02-28 14:03:31 +08003639 msr_info->data = vcpu->arch.microcode_version;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003640 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003641 case MSR_IA32_ARCH_CAPABILITIES:
3642 if (!msr_info->host_initiated &&
3643 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3644 return 1;
3645 msr_info->data = vcpu->arch.arch_capabilities;
3646 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003647 case MSR_IA32_PERF_CAPABILITIES:
3648 if (!msr_info->host_initiated &&
3649 !guest_cpuid_has(vcpu, X86_FEATURE_PDCM))
3650 return 1;
3651 msr_info->data = vcpu->arch.perf_capabilities;
3652 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003653 case MSR_IA32_POWER_CTL:
3654 msr_info->data = vcpu->arch.msr_ia32_power_ctl;
3655 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003656 case MSR_IA32_TSC: {
3657 /*
3658 * Intel SDM states that MSR_IA32_TSC read adds the TSC offset
3659 * even when not intercepted. AMD manual doesn't explicitly
3660 * state this but appears to behave the same.
3661 *
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003662 * On userspace reads and writes, however, we unconditionally
Paolo Bonzinic0623f52020-10-21 18:05:58 -04003663 * return L1's TSC value to ensure backwards-compatible
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003664 * behavior for migration.
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003665 */
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003666 u64 offset, ratio;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003667
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003668 if (msr_info->host_initiated) {
3669 offset = vcpu->arch.l1_tsc_offset;
3670 ratio = vcpu->arch.l1_tsc_scaling_ratio;
3671 } else {
3672 offset = vcpu->arch.tsc_offset;
3673 ratio = vcpu->arch.tsc_scaling_ratio;
3674 }
3675
3676 msr_info->data = kvm_scale_tsc(vcpu, rdtsc(), ratio) + offset;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003677 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003678 }
Avi Kivity9ba075a2008-05-26 20:06:35 +03003679 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03003680 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003681 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003682 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003683 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01003684 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02003685 /*
3686 * MSR_EBC_FREQUENCY_ID
3687 * Conservative value valid for even the basic CPU models.
3688 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
3689 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
3690 * and 266MHz for model 3, or 4. Set Core Clock
3691 * Frequency to System Bus Frequency Ratio to 1 (bits
3692 * 31:24) even though these are only valid for CPU
3693 * models > 2, however guests may end up dividing or
3694 * multiplying by zero otherwise.
3695 */
3696 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003697 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02003698 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003699 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003700 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01003701 break;
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003702 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003703 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003704 case MSR_IA32_TSC_DEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003705 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003706 break;
Will Auldba904632012-11-29 12:42:50 -08003707 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003708 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08003709 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003710 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003711 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01003712 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003713 case MSR_IA32_SMBASE:
3714 if (!msr_info->host_initiated)
3715 return 1;
3716 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01003717 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003718 case MSR_SMI_COUNT:
3719 msr_info->data = vcpu->arch.smi_count;
3720 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003721 case MSR_IA32_PERF_STATUS:
3722 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003723 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003724 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08003725 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01003726 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003727 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003728 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01003729 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003730 case MSR_KVM_WALL_CLOCK:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003731 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3732 return 1;
3733
3734 msr_info->data = vcpu->kvm->arch.wall_clock;
3735 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003736 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003737 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3738 return 1;
3739
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003740 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003741 break;
3742 case MSR_KVM_SYSTEM_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003743 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3744 return 1;
3745
3746 msr_info->data = vcpu->arch.time;
3747 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003748 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003749 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3750 return 1;
3751
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003752 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003753 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003754 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003755 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3756 return 1;
3757
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003758 msr_info->data = vcpu->arch.apf.msr_en_val;
3759 break;
3760 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003761 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3762 return 1;
3763
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003764 msr_info->data = vcpu->arch.apf.msr_int_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02003765 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003766 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003767 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton1930e5d2020-10-27 16:10:41 -07003768 return 1;
3769
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003770 msr_info->data = 0;
3771 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003772 case MSR_KVM_STEAL_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003773 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3774 return 1;
3775
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003776 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04003777 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003778 case MSR_KVM_PV_EOI_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003779 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3780 return 1;
3781
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003782 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003783 break;
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003784 case MSR_KVM_POLL_CONTROL:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003785 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3786 return 1;
3787
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003788 msr_info->data = vcpu->arch.msr_kvm_poll_control;
3789 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003790 case MSR_IA32_P5_MC_ADDR:
3791 case MSR_IA32_P5_MC_TYPE:
3792 case MSR_IA32_MCG_CAP:
3793 case MSR_IA32_MCG_CTL:
3794 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003795 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003796 return get_msr_mce(vcpu, msr_info->index, &msr_info->data,
3797 msr_info->host_initiated);
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003798 case MSR_IA32_XSS:
3799 if (!msr_info->host_initiated &&
3800 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3801 return 1;
3802 msr_info->data = vcpu->arch.ia32_xss;
3803 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003804 case MSR_K7_CLK_CTL:
3805 /*
3806 * Provide expected ramp-up count for K7. All other
3807 * are set to zero, indicating minimum divisors for
3808 * every field.
3809 *
3810 * This prevents guest kernels on AMD host with CPU
3811 * type 6, model 8 and higher from exploding due to
3812 * the rdmsr failing.
3813 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003814 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003815 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003816 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003817 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3818 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003819 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3820 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003821 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003822 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3823 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3824 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine83d5882015-07-03 15:01:34 +03003825 return kvm_hv_get_msr_common(vcpu,
Paolo Bonzini44883f02018-07-26 13:01:52 +02003826 msr_info->index, &msr_info->data,
3827 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003828 case MSR_IA32_BBL_CR_CTL3:
3829 /* This legacy MSR exists but isn't fully documented in current
3830 * silicon. It is however accessed by winxp in very narrow
3831 * scenarios where it sets bit #19, itself documented as
3832 * a "reserved" bit. Best effort attempt to source coherent
3833 * read data here should the balance of the register be
3834 * interpreted by the guest:
3835 *
3836 * L2 cache control register 3: 64GB range, 256KB size,
3837 * enabled, latency 0x1, configured
3838 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003839 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05003840 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003841 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003842 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003843 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003844 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003845 break;
3846 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003847 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003848 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003849 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003850 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003851 case MSR_PLATFORM_INFO:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07003852 if (!msr_info->host_initiated &&
3853 !vcpu->kvm->arch.guest_can_read_msr_platform_info)
3854 return 1;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003855 msr_info->data = vcpu->arch.msr_platform_info;
3856 break;
3857 case MSR_MISC_FEATURES_ENABLES:
3858 msr_info->data = vcpu->arch.msr_misc_features_enables;
3859 break;
Borislav Petkov191c8132019-04-18 18:32:50 +02003860 case MSR_K7_HWCR:
3861 msr_info->data = vcpu->arch.msr_hwcr;
3862 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003863 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003864 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003865 return kvm_pmu_get_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003866 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003867 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003868 return 0;
3869}
3870EXPORT_SYMBOL_GPL(kvm_get_msr_common);
3871
Carsten Otte313a3dc2007-10-11 19:16:52 +02003872/*
3873 * Read or write a bunch of msrs. All parameters are kernel addresses.
3874 *
3875 * @return number of msrs set successfully.
3876 */
3877static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
3878 struct kvm_msr_entry *entries,
3879 int (*do_msr)(struct kvm_vcpu *vcpu,
3880 unsigned index, u64 *data))
3881{
Tom Lendacky801e4592018-02-21 13:39:51 -06003882 int i;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003883
Carsten Otte313a3dc2007-10-11 19:16:52 +02003884 for (i = 0; i < msrs->nmsrs; ++i)
3885 if (do_msr(vcpu, entries[i].index, &entries[i].data))
3886 break;
3887
Carsten Otte313a3dc2007-10-11 19:16:52 +02003888 return i;
3889}
3890
3891/*
3892 * Read or write a bunch of msrs. Parameters are user addresses.
3893 *
3894 * @return number of msrs set successfully.
3895 */
3896static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
3897 int (*do_msr)(struct kvm_vcpu *vcpu,
3898 unsigned index, u64 *data),
3899 int writeback)
3900{
3901 struct kvm_msrs msrs;
3902 struct kvm_msr_entry *entries;
3903 int r, n;
3904 unsigned size;
3905
3906 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003907 if (copy_from_user(&msrs, user_msrs, sizeof(msrs)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003908 goto out;
3909
3910 r = -E2BIG;
3911 if (msrs.nmsrs >= MAX_IO_MSRS)
3912 goto out;
3913
Carsten Otte313a3dc2007-10-11 19:16:52 +02003914 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003915 entries = memdup_user(user_msrs->entries, size);
3916 if (IS_ERR(entries)) {
3917 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003918 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003919 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003920
3921 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
3922 if (r < 0)
3923 goto out_free;
3924
3925 r = -EFAULT;
3926 if (writeback && copy_to_user(user_msrs->entries, entries, size))
3927 goto out_free;
3928
3929 r = n;
3930
3931out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03003932 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003933out:
3934 return r;
3935}
3936
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003937static inline bool kvm_can_mwait_in_guest(void)
3938{
3939 return boot_cpu_has(X86_FEATURE_MWAIT) &&
KarimAllah Ahmed8e9b29b2018-04-11 11:16:03 +02003940 !boot_cpu_has_bug(X86_BUG_MONITOR) &&
3941 boot_cpu_has(X86_FEATURE_ARAT);
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003942}
3943
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02003944static int kvm_ioctl_get_supported_hv_cpuid(struct kvm_vcpu *vcpu,
3945 struct kvm_cpuid2 __user *cpuid_arg)
3946{
3947 struct kvm_cpuid2 cpuid;
3948 int r;
3949
3950 r = -EFAULT;
3951 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
3952 return r;
3953
3954 r = kvm_get_hv_cpuid(vcpu, &cpuid, cpuid_arg->entries);
3955 if (r)
3956 return r;
3957
3958 r = -EFAULT;
3959 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
3960 return r;
3961
3962 return 0;
3963}
3964
Alexander Graf784aa3d2014-07-14 18:27:35 +02003965int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003966{
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003967 int r = 0;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003968
3969 switch (ext) {
3970 case KVM_CAP_IRQCHIP:
3971 case KVM_CAP_HLT:
3972 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003973 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02003974 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02003975 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01003976 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08003977 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05003978 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03003979 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03003980 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08003981 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003982 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02003983 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003984 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03003985 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003986 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04003987 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08003988 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003989 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003990 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02003991 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02003992 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003993 case KVM_CAP_HYPERV_SYNIC:
Roman Kaganefc479e2017-06-22 16:51:01 +03003994 case KVM_CAP_HYPERV_SYNIC2:
Roman Kagand3457c82017-07-14 17:13:20 +03003995 case KVM_CAP_HYPERV_VP_INDEX:
Roman Kaganfaeb7832018-02-01 16:48:32 +03003996 case KVM_CAP_HYPERV_EVENTFD:
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02003997 case KVM_CAP_HYPERV_TLBFLUSH:
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02003998 case KVM_CAP_HYPERV_SEND_IPI:
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01003999 case KVM_CAP_HYPERV_CPUID:
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02004000 case KVM_CAP_HYPERV_ENFORCE_CPUID:
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004001 case KVM_CAP_SYS_HYPERV_CPUID:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08004002 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004003 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01004004 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004005 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02004006 case KVM_CAP_ASYNC_PF:
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +02004007 case KVM_CAP_ASYNC_PF_INT:
Joerg Roedel92a1f122011-03-25 09:44:51 +01004008 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004009 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08004010 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01004011 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05004012 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01004013 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03004014 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004015 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07004016 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004017 case KVM_CAP_IMMEDIATE_EXIT:
Eric Hankland66bb8a02019-07-10 18:25:15 -07004018 case KVM_CAP_PMU_EVENT_FILTER:
Tom Lendacky801e4592018-02-21 13:39:51 -06004019 case KVM_CAP_GET_MSR_FEATURES:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07004020 case KVM_CAP_MSR_PLATFORM_INFO:
Jim Mattsonc4f55192018-10-16 14:29:24 -07004021 case KVM_CAP_EXCEPTION_PAYLOAD:
Peter Xub9b27822020-05-05 11:47:50 -04004022 case KVM_CAP_SET_GUEST_DEBUG:
Jim Mattson1aa561b2020-06-03 16:56:21 -07004023 case KVM_CAP_LAST_CPU:
Alexander Graf1ae09952020-09-25 16:34:16 +02004024 case KVM_CAP_X86_USER_SPACE_MSR:
Alexander Graf1a1552542020-09-25 16:34:21 +02004025 case KVM_CAP_X86_MSR_FILTER:
Oliver Upton66570e92020-08-18 15:24:28 +00004026 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
Sean Christophersonfe7e9482021-04-12 16:21:43 +12004027#ifdef CONFIG_X86_SGX_KVM
4028 case KVM_CAP_SGX_ATTRIBUTE:
4029#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00004030 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
Maxim Levitsky6dba9402021-06-07 12:02:02 +03004031 case KVM_CAP_SREGS2:
Aaron Lewis19238e72021-05-10 07:48:33 -07004032 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004033 r = 1;
4034 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00004035 case KVM_CAP_EXIT_HYPERCALL:
4036 r = KVM_EXIT_HYPERCALL_VALID_MASK;
4037 break;
Maxim Levitsky7e582cc2021-04-01 16:54:45 +03004038 case KVM_CAP_SET_GUEST_DEBUG2:
4039 return KVM_GUESTDBG_VALID_MASK;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004040#ifdef CONFIG_KVM_XEN
Joao Martins23200b72018-06-13 09:55:44 -04004041 case KVM_CAP_XEN_HVM:
4042 r = KVM_XEN_HVM_CONFIG_HYPERCALL_MSR |
David Woodhouse8d4e7e82020-12-04 01:02:04 +00004043 KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL |
4044 KVM_XEN_HVM_CONFIG_SHARED_INFO;
David Woodhouse30b5c852021-03-01 12:53:09 +00004045 if (sched_info_on())
4046 r |= KVM_XEN_HVM_CONFIG_RUNSTATE;
Joao Martins23200b72018-06-13 09:55:44 -04004047 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004048#endif
Ken Hofsass01643c52018-01-31 16:03:36 -08004049 case KVM_CAP_SYNC_REGS:
4050 r = KVM_SYNC_X86_VALID_FIELDS;
4051 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004052 case KVM_CAP_ADJUST_CLOCK:
4053 r = KVM_CLOCK_TSC_STABLE;
4054 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004055 case KVM_CAP_X86_DISABLE_EXITS:
Wanpeng Lib5170062019-05-21 14:06:53 +08004056 r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE |
4057 KVM_X86_DISABLE_EXITS_CSTATE;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004058 if(kvm_can_mwait_in_guest())
4059 r |= KVM_X86_DISABLE_EXITS_MWAIT;
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02004060 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004061 case KVM_CAP_X86_SMM:
4062 /* SMBASE is usually relocated above 1M on modern chipsets,
4063 * and SMM handlers might indeed rely on 4G segment limits,
4064 * so do not report SMM to be available if real mode is
4065 * emulated via vm86 mode. Still, do not go to great lengths
4066 * to avoid userspace's usage of the feature, because it is a
4067 * fringe case that is not enabled except via specific settings
4068 * of the module parameters.
4069 */
Jason Baronb36464772021-01-14 22:27:56 -05004070 r = static_call(kvm_x86_has_emulated_msr)(kvm, MSR_IA32_SMBASE);
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004071 break;
Avi Kivity774ead32007-12-26 13:57:04 +02004072 case KVM_CAP_VAPIC:
Jason Baronb36464772021-01-14 22:27:56 -05004073 r = !static_call(kvm_x86_cpu_has_accelerated_tpr)();
Avi Kivity774ead32007-12-26 13:57:04 +02004074 break;
Avi Kivityf7252302008-02-20 11:53:16 +02004075 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03004076 r = KVM_SOFT_MAX_VCPUS;
4077 break;
4078 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02004079 r = KVM_MAX_VCPUS;
4080 break;
Thomas Hutha86cb412019-05-23 18:43:08 +02004081 case KVM_CAP_MAX_VCPU_ID:
Juergen Grossa1c42dd2021-09-13 15:57:44 +02004082 r = KVM_MAX_VCPU_IDS;
Thomas Hutha86cb412019-05-23 18:43:08 +02004083 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03004084 case KVM_CAP_PV_MMU: /* obsolete */
4085 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05004086 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08004087 case KVM_CAP_MCE:
4088 r = KVM_MAX_MCE_BANKS;
4089 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004090 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02004091 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004092 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004093 case KVM_CAP_TSC_CONTROL:
4094 r = kvm_has_tsc_control;
4095 break;
Radim Krčmář371313132016-07-12 22:09:27 +02004096 case KVM_CAP_X2APIC_API:
4097 r = KVM_X2APIC_API_VALID_FLAGS;
4098 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004099 case KVM_CAP_NESTED_STATE:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004100 r = kvm_x86_ops.nested_ops->get_state ?
4101 kvm_x86_ops.nested_ops->get_state(NULL, NULL, 0) : 0;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004102 break;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004103 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004104 r = kvm_x86_ops.enable_direct_tlbflush != NULL;
Vitaly Kuznetsov5a0165f2019-08-28 09:59:05 +02004105 break;
4106 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004107 r = kvm_x86_ops.nested_ops->enable_evmcs != NULL;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004108 break;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02004109 case KVM_CAP_SMALLER_MAXPHYADDR:
4110 r = (int) allow_smaller_maxphyaddr;
4111 break;
Andrew Jones004a0122020-08-04 19:06:04 +02004112 case KVM_CAP_STEAL_TIME:
4113 r = sched_info_on();
4114 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004115 case KVM_CAP_X86_BUS_LOCK_EXIT:
4116 if (kvm_has_bus_lock_exit)
4117 r = KVM_BUS_LOCK_DETECTION_OFF |
4118 KVM_BUS_LOCK_DETECTION_EXIT;
4119 else
4120 r = 0;
4121 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004122 default:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004123 break;
4124 }
4125 return r;
4126
4127}
4128
Carsten Otte043405e2007-10-10 17:16:19 +02004129long kvm_arch_dev_ioctl(struct file *filp,
4130 unsigned int ioctl, unsigned long arg)
4131{
4132 void __user *argp = (void __user *)arg;
4133 long r;
4134
4135 switch (ioctl) {
4136 case KVM_GET_MSR_INDEX_LIST: {
4137 struct kvm_msr_list __user *user_msr_list = argp;
4138 struct kvm_msr_list msr_list;
4139 unsigned n;
4140
4141 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004142 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004143 goto out;
4144 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004145 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004146 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004147 goto out;
4148 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004149 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02004150 goto out;
4151 r = -EFAULT;
4152 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
4153 num_msrs_to_save * sizeof(u32)))
4154 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004155 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02004156 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004157 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02004158 goto out;
4159 r = 0;
4160 break;
4161 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004162 case KVM_GET_SUPPORTED_CPUID:
4163 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02004164 struct kvm_cpuid2 __user *cpuid_arg = argp;
4165 struct kvm_cpuid2 cpuid;
4166
4167 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004168 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004169 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004170
4171 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
4172 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02004173 if (r)
4174 goto out;
4175
4176 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004177 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004178 goto out;
4179 r = 0;
4180 break;
4181 }
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004182 case KVM_X86_GET_MCE_CAP_SUPPORTED:
Huang Ying890ca9a2009-05-11 16:48:15 +08004183 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004184 if (copy_to_user(argp, &kvm_mce_cap_supported,
4185 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004186 goto out;
4187 r = 0;
4188 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004189 case KVM_GET_MSR_FEATURE_INDEX_LIST: {
4190 struct kvm_msr_list __user *user_msr_list = argp;
4191 struct kvm_msr_list msr_list;
4192 unsigned int n;
4193
4194 r = -EFAULT;
4195 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
4196 goto out;
4197 n = msr_list.nmsrs;
4198 msr_list.nmsrs = num_msr_based_features;
4199 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
4200 goto out;
4201 r = -E2BIG;
4202 if (n < msr_list.nmsrs)
4203 goto out;
4204 r = -EFAULT;
4205 if (copy_to_user(user_msr_list->indices, &msr_based_features,
4206 num_msr_based_features * sizeof(u32)))
4207 goto out;
4208 r = 0;
4209 break;
4210 }
4211 case KVM_GET_MSRS:
4212 r = msr_io(NULL, argp, do_get_msr_feature, 1);
4213 break;
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004214 case KVM_GET_SUPPORTED_HV_CPUID:
4215 r = kvm_ioctl_get_supported_hv_cpuid(NULL, argp);
4216 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004217 default:
4218 r = -EINVAL;
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004219 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004220 }
4221out:
4222 return r;
4223}
4224
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004225static void wbinvd_ipi(void *garbage)
4226{
4227 wbinvd();
4228}
4229
4230static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
4231{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06004232 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004233}
4234
Carsten Otte313a3dc2007-10-11 19:16:52 +02004235void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
4236{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004237 /* Address WBINVD may be executed by guest */
4238 if (need_emulate_wbinvd(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05004239 if (static_call(kvm_x86_has_wbinvd_exit)())
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004240 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
4241 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
4242 smp_call_function_single(vcpu->cpu,
4243 wbinvd_ipi, NULL, 1);
4244 }
4245
Jason Baronb36464772021-01-14 22:27:56 -05004246 static_call(kvm_x86_vcpu_load)(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004247
Babu Moger37486132020-05-12 18:59:06 -05004248 /* Save host pkru register if supported */
4249 vcpu->arch.host_pkru = read_pkru();
4250
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004251 /* Apply any externally detected TSC adjustments (due to suspend) */
4252 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
4253 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
4254 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08004255 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004256 }
4257
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004258 if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02004259 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004260 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10004261 if (tsc_delta < 0)
4262 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07004263
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004264 if (kvm_check_tsc_unstable()) {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01004265 u64 offset = kvm_compute_l1_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02004266 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04004267 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004268 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10004269 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02004270
4271 if (kvm_lapic_hv_timer_in_use(vcpu))
4272 kvm_lapic_restart_hv_timer(vcpu);
4273
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02004274 /*
4275 * On a host with synchronized TSC, there is no need to update
4276 * kvmclock on vcpu->cpu migration
4277 */
4278 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03004279 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004280 if (vcpu->cpu != cpu)
Radim Krčmář1bd20092017-04-26 22:32:20 +02004281 kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10004282 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10004283 }
Glauber Costac9aaa892011-07-11 15:28:14 -04004284
Glauber Costac9aaa892011-07-11 15:28:14 -04004285 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004286}
4287
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004288static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
4289{
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004290 struct kvm_host_map map;
4291 struct kvm_steal_time *st;
4292
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004293 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
4294 return;
4295
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004296 if (vcpu->arch.st.preempted)
Boris Ostrovsky8c6de562019-10-30 19:01:31 +00004297 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004298
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004299 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT, &map,
4300 &vcpu->arch.st.cache, true))
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004301 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004302
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004303 st = map.hva +
4304 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
4305
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004306 st->preempted = vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004307
4308 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, true);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004309}
4310
Carsten Otte313a3dc2007-10-11 19:16:52 +02004311void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
4312{
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004313 int idx;
4314
Tom Lendackyf1c63662020-12-14 10:29:50 -05004315 if (vcpu->preempted && !vcpu->arch.guest_state_protected)
Jason Baronb36464772021-01-14 22:27:56 -05004316 vcpu->arch.preempted_in_kernel = !static_call(kvm_x86_get_cpl)(vcpu);
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004317
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004318 /*
4319 * Take the srcu lock as memslots will be accessed to check the gfn
4320 * cache generation against the memslots generation.
4321 */
4322 idx = srcu_read_lock(&vcpu->kvm->srcu);
David Woodhouse30b5c852021-03-01 12:53:09 +00004323 if (kvm_xen_msr_enabled(vcpu->kvm))
4324 kvm_xen_runstate_set_preempted(vcpu);
4325 else
4326 kvm_steal_time_set_preempted(vcpu);
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004327 srcu_read_unlock(&vcpu->kvm->srcu, idx);
David Woodhouse30b5c852021-03-01 12:53:09 +00004328
Jason Baronb36464772021-01-14 22:27:56 -05004329 static_call(kvm_x86_vcpu_put)(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004330 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02004331}
4332
Carsten Otte313a3dc2007-10-11 19:16:52 +02004333static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
4334 struct kvm_lapic_state *s)
4335{
Liran Alonfa59cc02017-12-24 18:12:53 +02004336 if (vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05004337 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004338
Radim Krčmářa92e2542016-07-12 22:09:22 +02004339 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004340}
4341
4342static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
4343 struct kvm_lapic_state *s)
4344{
Radim Krčmářa92e2542016-07-12 22:09:22 +02004345 int r;
4346
4347 r = kvm_apic_set_state(vcpu, s);
4348 if (r)
4349 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03004350 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004351
4352 return 0;
4353}
4354
Matt Gingell127a4572015-11-17 17:32:05 +01004355static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
4356{
Paolo Bonzini71cc8492020-11-27 09:18:20 +01004357 /*
4358 * We can accept userspace's request for interrupt injection
4359 * as long as we have a place to store the interrupt number.
4360 * The actual injection will happen when the CPU is able to
4361 * deliver the interrupt.
4362 */
4363 if (kvm_cpu_has_extint(vcpu))
4364 return false;
4365
4366 /* Acknowledging ExtINT does not happen if LINT0 is masked. */
Matt Gingell127a4572015-11-17 17:32:05 +01004367 return (!lapic_in_kernel(vcpu) ||
4368 kvm_apic_accept_pic_intr(vcpu));
4369}
4370
Matt Gingell782d4222015-11-16 15:26:00 -08004371static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
4372{
Paolo Bonzinifa7a5492021-07-14 17:37:49 -04004373 /*
4374 * Do not cause an interrupt window exit if an exception
4375 * is pending or an event needs reinjection; userspace
4376 * might want to inject the interrupt manually using KVM_SET_REGS
4377 * or KVM_SET_SREGS. For that to work, we must be at an
4378 * instruction boundary and with no events half-injected.
4379 */
4380 return (kvm_arch_interrupt_allowed(vcpu) &&
4381 kvm_cpu_accept_dm_intr(vcpu) &&
4382 !kvm_event_needs_reinjection(vcpu) &&
4383 !vcpu->arch.exception.pending);
Matt Gingell782d4222015-11-16 15:26:00 -08004384}
4385
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004386static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
4387 struct kvm_interrupt *irq)
4388{
Chen Gang02cdb502013-02-27 11:33:25 +08004389 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004390 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004391
4392 if (!irqchip_in_kernel(vcpu->kvm)) {
4393 kvm_queue_interrupt(vcpu, irq->irq, false);
4394 kvm_make_request(KVM_REQ_EVENT, vcpu);
4395 return 0;
4396 }
4397
4398 /*
4399 * With in-kernel LAPIC, we only use this to inject EXTINT, so
4400 * fail for in-kernel 8259.
4401 */
4402 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004403 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004404
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004405 if (vcpu->arch.pending_external_vector != -1)
4406 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004407
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004408 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08004409 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004410 return 0;
4411}
4412
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004413static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
4414{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004415 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004416
4417 return 0;
4418}
4419
Paolo Bonzinif0778252015-04-01 15:06:40 +02004420static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
4421{
Paolo Bonzini64d60672015-05-07 11:36:11 +02004422 kvm_make_request(KVM_REQ_SMI, vcpu);
4423
Paolo Bonzinif0778252015-04-01 15:06:40 +02004424 return 0;
4425}
4426
Avi Kivityb209749f2007-10-22 16:50:39 +02004427static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
4428 struct kvm_tpr_access_ctl *tac)
4429{
4430 if (tac->flags)
4431 return -EINVAL;
4432 vcpu->arch.tpr_access_reporting = !!tac->enabled;
4433 return 0;
4434}
4435
Huang Ying890ca9a2009-05-11 16:48:15 +08004436static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
4437 u64 mcg_cap)
4438{
4439 int r;
4440 unsigned bank_num = mcg_cap & 0xff, bank;
4441
4442 r = -EINVAL;
Jim Mattsonc4e0e4ab2020-05-11 15:56:16 -07004443 if (!bank_num || bank_num > KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08004444 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004445 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08004446 goto out;
4447 r = 0;
4448 vcpu->arch.mcg_cap = mcg_cap;
4449 /* Init IA32_MCG_CTL to all 1s */
4450 if (mcg_cap & MCG_CTL_P)
4451 vcpu->arch.mcg_ctl = ~(u64)0;
4452 /* Init IA32_MCi_CTL to all 1s */
4453 for (bank = 0; bank < bank_num; bank++)
4454 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004455
Jason Baronb36464772021-01-14 22:27:56 -05004456 static_call(kvm_x86_setup_mce)(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004457out:
4458 return r;
4459}
4460
4461static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
4462 struct kvm_x86_mce *mce)
4463{
4464 u64 mcg_cap = vcpu->arch.mcg_cap;
4465 unsigned bank_num = mcg_cap & 0xff;
4466 u64 *banks = vcpu->arch.mce_banks;
4467
4468 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
4469 return -EINVAL;
4470 /*
4471 * if IA32_MCG_CTL is not all 1s, the uncorrected error
4472 * reporting is disabled
4473 */
4474 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
4475 vcpu->arch.mcg_ctl != ~(u64)0)
4476 return 0;
4477 banks += 4 * mce->bank;
4478 /*
4479 * if IA32_MCi_CTL is not all 1s, the uncorrected error
4480 * reporting is disabled for the bank
4481 */
4482 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
4483 return 0;
4484 if (mce->status & MCI_STATUS_UC) {
4485 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02004486 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03004487 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004488 return 0;
4489 }
4490 if (banks[1] & MCI_STATUS_VAL)
4491 mce->status |= MCI_STATUS_OVER;
4492 banks[2] = mce->addr;
4493 banks[3] = mce->misc;
4494 vcpu->arch.mcg_status = mce->mcg_status;
4495 banks[1] = mce->status;
4496 kvm_queue_exception(vcpu, MC_VECTOR);
4497 } else if (!(banks[1] & MCI_STATUS_VAL)
4498 || !(banks[1] & MCI_STATUS_UC)) {
4499 if (banks[1] & MCI_STATUS_VAL)
4500 mce->status |= MCI_STATUS_OVER;
4501 banks[2] = mce->addr;
4502 banks[3] = mce->misc;
4503 banks[1] = mce->status;
4504 } else
4505 banks[1] |= MCI_STATUS_OVER;
4506 return 0;
4507}
4508
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004509static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
4510 struct kvm_vcpu_events *events)
4511{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004512 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004513
Jay Zhou1f7becf2021-01-18 16:47:20 +08004514 if (kvm_check_request(KVM_REQ_SMI, vcpu))
4515 process_smi(vcpu);
4516
Wanpeng Li664f8e22017-08-24 03:35:09 -07004517 /*
Oliver Uptona06230b2020-02-07 02:36:06 -08004518 * In guest mode, payload delivery should be deferred,
4519 * so that the L1 hypervisor can intercept #PF before
4520 * CR2 is modified (or intercept #DB before DR6 is
4521 * modified under nVMX). Unless the per-VM capability,
4522 * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of
4523 * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we
4524 * opportunistically defer the exception payload, deliver it if the
4525 * capability hasn't been requested before processing a
4526 * KVM_GET_VCPU_EVENTS.
4527 */
4528 if (!vcpu->kvm->arch.exception_payload_enabled &&
4529 vcpu->arch.exception.pending && vcpu->arch.exception.has_payload)
4530 kvm_deliver_exception_payload(vcpu);
4531
4532 /*
Jim Mattson59073aa2018-10-16 14:29:20 -07004533 * The API doesn't provide the instruction length for software
4534 * exceptions, so don't report them. As long as the guest RIP
4535 * isn't advanced, we should expect to encounter the exception
4536 * again.
Wanpeng Li664f8e22017-08-24 03:35:09 -07004537 */
Jim Mattson59073aa2018-10-16 14:29:20 -07004538 if (kvm_exception_is_soft(vcpu->arch.exception.nr)) {
4539 events->exception.injected = 0;
4540 events->exception.pending = 0;
4541 } else {
4542 events->exception.injected = vcpu->arch.exception.injected;
4543 events->exception.pending = vcpu->arch.exception.pending;
4544 /*
4545 * For ABI compatibility, deliberately conflate
4546 * pending and injected exceptions when
4547 * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled.
4548 */
4549 if (!vcpu->kvm->arch.exception_payload_enabled)
4550 events->exception.injected |=
4551 vcpu->arch.exception.pending;
4552 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004553 events->exception.nr = vcpu->arch.exception.nr;
4554 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
4555 events->exception.error_code = vcpu->arch.exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004556 events->exception_has_payload = vcpu->arch.exception.has_payload;
4557 events->exception_payload = vcpu->arch.exception.payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004558
Jan Kiszka03b82a32010-02-15 10:45:41 +01004559 events->interrupt.injected =
Liran Alon04140b42018-03-23 03:01:31 +03004560 vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004561 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01004562 events->interrupt.soft = 0;
Jason Baronb36464772021-01-14 22:27:56 -05004563 events->interrupt.shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004564
4565 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004566 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jason Baronb36464772021-01-14 22:27:56 -05004567 events->nmi.masked = static_call(kvm_x86_get_nmi_mask)(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004568 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004569
Jan Kiszka66450a22013-03-13 12:42:34 +01004570 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004571
Paolo Bonzinif0778252015-04-01 15:06:40 +02004572 events->smi.smm = is_smm(vcpu);
4573 events->smi.pending = vcpu->arch.smi_pending;
4574 events->smi.smm_inside_nmi =
4575 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
4576 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
4577
Jan Kiszkadab4b912009-12-06 18:24:15 +01004578 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02004579 | KVM_VCPUEVENT_VALID_SHADOW
4580 | KVM_VCPUEVENT_VALID_SMM);
Jim Mattson59073aa2018-10-16 14:29:20 -07004581 if (vcpu->kvm->arch.exception_payload_enabled)
4582 events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD;
4583
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004584 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004585}
4586
Sean Christophersondc872752021-06-09 11:56:15 -07004587static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004588
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004589static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
4590 struct kvm_vcpu_events *events)
4591{
Jan Kiszkadab4b912009-12-06 18:24:15 +01004592 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01004593 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02004594 | KVM_VCPUEVENT_VALID_SHADOW
Jim Mattson59073aa2018-10-16 14:29:20 -07004595 | KVM_VCPUEVENT_VALID_SMM
4596 | KVM_VCPUEVENT_VALID_PAYLOAD))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004597 return -EINVAL;
4598
Jim Mattson59073aa2018-10-16 14:29:20 -07004599 if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) {
4600 if (!vcpu->kvm->arch.exception_payload_enabled)
4601 return -EINVAL;
4602 if (events->exception.pending)
4603 events->exception.injected = 0;
4604 else
4605 events->exception_has_payload = 0;
4606 } else {
4607 events->exception.pending = 0;
4608 events->exception_has_payload = 0;
4609 }
4610
4611 if ((events->exception.injected || events->exception.pending) &&
4612 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02004613 return -EINVAL;
4614
David Hildenbrand28bf2882017-03-23 11:46:03 +01004615 /* INITs are latched while in SMM */
4616 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
4617 (events->smi.smm || events->smi.pending) &&
4618 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
4619 return -EINVAL;
4620
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004621 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004622 vcpu->arch.exception.injected = events->exception.injected;
4623 vcpu->arch.exception.pending = events->exception.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004624 vcpu->arch.exception.nr = events->exception.nr;
4625 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
4626 vcpu->arch.exception.error_code = events->exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004627 vcpu->arch.exception.has_payload = events->exception_has_payload;
4628 vcpu->arch.exception.payload = events->exception_payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004629
Liran Alon04140b42018-03-23 03:01:31 +03004630 vcpu->arch.interrupt.injected = events->interrupt.injected;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004631 vcpu->arch.interrupt.nr = events->interrupt.nr;
4632 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01004633 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
Jason Baronb36464772021-01-14 22:27:56 -05004634 static_call(kvm_x86_set_interrupt_shadow)(vcpu,
4635 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004636
4637 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01004638 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
4639 vcpu->arch.nmi_pending = events->nmi.pending;
Jason Baronb36464772021-01-14 22:27:56 -05004640 static_call(kvm_x86_set_nmi_mask)(vcpu, events->nmi.masked);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004641
Jan Kiszka66450a22013-03-13 12:42:34 +01004642 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004643 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01004644 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004645
Paolo Bonzinif0778252015-04-01 15:06:40 +02004646 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Sean Christophersondc872752021-06-09 11:56:15 -07004647 if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm)
4648 kvm_smm_changed(vcpu, events->smi.smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004649
Paolo Bonzinif0778252015-04-01 15:06:40 +02004650 vcpu->arch.smi_pending = events->smi.pending;
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004651
4652 if (events->smi.smm) {
4653 if (events->smi.smm_inside_nmi)
4654 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02004655 else
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004656 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Liran Alonff90afa2019-11-11 11:16:39 +02004657 }
4658
4659 if (lapic_in_kernel(vcpu)) {
4660 if (events->smi.latched_init)
4661 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
4662 else
4663 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
Paolo Bonzinif0778252015-04-01 15:06:40 +02004664 }
4665 }
4666
Avi Kivity3842d132010-07-27 12:30:24 +03004667 kvm_make_request(KVM_REQ_EVENT, vcpu);
4668
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004669 return 0;
4670}
4671
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004672static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
4673 struct kvm_debugregs *dbgregs)
4674{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004675 unsigned long val;
4676
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004677 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004678 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004679 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004680 dbgregs->dr7 = vcpu->arch.dr7;
4681 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004682 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004683}
4684
4685static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
4686 struct kvm_debugregs *dbgregs)
4687{
4688 if (dbgregs->flags)
4689 return -EINVAL;
4690
Paolo Bonzinifd238002020-11-13 08:31:09 -05004691 if (!kvm_dr6_valid(dbgregs->dr6))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004692 return -EINVAL;
Paolo Bonzinifd238002020-11-13 08:31:09 -05004693 if (!kvm_dr7_valid(dbgregs->dr7))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004694 return -EINVAL;
4695
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004696 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03004697 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004698 vcpu->arch.dr6 = dbgregs->dr6;
4699 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01004700 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004701
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004702 return 0;
4703}
4704
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004705#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
4706
4707static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
4708{
Marc Orrb666a4b2018-11-06 14:53:56 -08004709 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02004710 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004711 u64 valid;
4712
4713 /*
4714 * Copy legacy XSAVE area, to avoid complications with CPUID
4715 * leaves 0 and 1 in the loop below.
4716 */
4717 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
4718
4719 /* Set XSTATE_BV */
Radim Krčmář00c87e92017-02-01 14:19:53 +01004720 xstate_bv &= vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004721 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
4722
4723 /*
4724 * Copy each region from the possibly compacted offset to the
4725 * non-compacted offset.
4726 */
Dave Hansend91cab72015-09-02 16:31:26 -07004727 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004728 while (valid) {
Dave Hansen71ef4532021-06-23 14:01:49 +02004729 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004730 u64 xfeature_mask = valid & -valid;
4731 int xfeature_nr = fls64(xfeature_mask) - 1;
Dave Hansen71ef4532021-06-23 14:01:49 +02004732 void *src;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004733
Dave Hansen71ef4532021-06-23 14:01:49 +02004734 cpuid_count(XSTATE_CPUID, xfeature_nr,
4735 &size, &offset, &ecx, &edx);
4736
4737 if (xfeature_nr == XFEATURE_PKRU) {
4738 memcpy(dest + offset, &vcpu->arch.pkru,
4739 sizeof(vcpu->arch.pkru));
4740 } else {
4741 src = get_xsave_addr(xsave, xfeature_nr);
4742 if (src)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004743 memcpy(dest + offset, src, size);
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004744 }
4745
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004746 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004747 }
4748}
4749
4750static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
4751{
Marc Orrb666a4b2018-11-06 14:53:56 -08004752 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004753 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
4754 u64 valid;
4755
4756 /*
4757 * Copy legacy XSAVE area, to avoid complications with CPUID
4758 * leaves 0 and 1 in the loop below.
4759 */
4760 memcpy(xsave, src, XSAVE_HDR_OFFSET);
4761
4762 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02004763 xsave->header.xfeatures = xstate_bv;
Borislav Petkov782511b2016-04-04 22:25:03 +02004764 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar3a544502015-04-24 10:14:36 +02004765 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004766
4767 /*
4768 * Copy each region from the non-compacted offset to the
4769 * possibly compacted offset.
4770 */
Dave Hansend91cab72015-09-02 16:31:26 -07004771 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004772 while (valid) {
Dave Hansen71ef4532021-06-23 14:01:49 +02004773 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004774 u64 xfeature_mask = valid & -valid;
4775 int xfeature_nr = fls64(xfeature_mask) - 1;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004776
Dave Hansen71ef4532021-06-23 14:01:49 +02004777 cpuid_count(XSTATE_CPUID, xfeature_nr,
4778 &size, &offset, &ecx, &edx);
4779
4780 if (xfeature_nr == XFEATURE_PKRU) {
4781 memcpy(&vcpu->arch.pkru, src + offset,
4782 sizeof(vcpu->arch.pkru));
4783 } else {
4784 void *dest = get_xsave_addr(xsave, xfeature_nr);
4785
4786 if (dest)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004787 memcpy(dest, src + offset, size);
Wanpeng Liee4100d2015-07-09 15:44:52 +08004788 }
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004789
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004790 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004791 }
4792}
4793
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004794static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
4795 struct kvm_xsave *guest_xsave)
4796{
Tom Lendackyed02b212020-12-10 11:10:01 -06004797 if (!vcpu->arch.guest_fpu)
4798 return;
4799
Borislav Petkovd366bf72016-04-04 22:25:02 +02004800 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004801 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
4802 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02004803 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004804 memcpy(guest_xsave->region,
Marc Orrb666a4b2018-11-06 14:53:56 -08004805 &vcpu->arch.guest_fpu->state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02004806 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004807 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
Dave Hansend91cab72015-09-02 16:31:26 -07004808 XFEATURE_MASK_FPSSE;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004809 }
4810}
4811
Wanpeng Lia5758132017-05-11 02:58:55 -07004812#define XSAVE_MXCSR_OFFSET 24
4813
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004814static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
4815 struct kvm_xsave *guest_xsave)
4816{
Tom Lendackyed02b212020-12-10 11:10:01 -06004817 u64 xstate_bv;
4818 u32 mxcsr;
4819
4820 if (!vcpu->arch.guest_fpu)
4821 return 0;
4822
4823 xstate_bv = *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
4824 mxcsr = *(u32 *)&guest_xsave->region[XSAVE_MXCSR_OFFSET / sizeof(u32)];
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004825
Borislav Petkovd366bf72016-04-04 22:25:02 +02004826 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004827 /*
4828 * Here we allow setting states that are not present in
4829 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
4830 * with old userspace.
4831 */
Sean Christophersoncfc48182020-03-02 15:56:23 -08004832 if (xstate_bv & ~supported_xcr0 || mxcsr & ~mxcsr_feature_mask)
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004833 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004834 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004835 } else {
Wanpeng Lia5758132017-05-11 02:58:55 -07004836 if (xstate_bv & ~XFEATURE_MASK_FPSSE ||
4837 mxcsr & ~mxcsr_feature_mask)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004838 return -EINVAL;
Marc Orrb666a4b2018-11-06 14:53:56 -08004839 memcpy(&vcpu->arch.guest_fpu->state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02004840 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004841 }
4842 return 0;
4843}
4844
4845static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
4846 struct kvm_xcrs *guest_xcrs)
4847{
Borislav Petkovd366bf72016-04-04 22:25:02 +02004848 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004849 guest_xcrs->nr_xcrs = 0;
4850 return;
4851 }
4852
4853 guest_xcrs->nr_xcrs = 1;
4854 guest_xcrs->flags = 0;
4855 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
4856 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
4857}
4858
4859static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
4860 struct kvm_xcrs *guest_xcrs)
4861{
4862 int i, r = 0;
4863
Borislav Petkovd366bf72016-04-04 22:25:02 +02004864 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004865 return -EINVAL;
4866
4867 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
4868 return -EINVAL;
4869
4870 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
4871 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004872 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004873 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004874 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004875 break;
4876 }
4877 if (r)
4878 r = -EINVAL;
4879 return r;
4880}
4881
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004882/*
4883 * kvm_set_guest_paused() indicates to the guest kernel that it has been
4884 * stopped by the hypervisor. This function will be called from the host only.
4885 * EINVAL is returned when the host attempts to set the flag for a guest that
4886 * does not support pv clocks.
4887 */
4888static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
4889{
Andy Honig0b794592013-02-20 14:48:10 -08004890 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004891 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03004892 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004893 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
4894 return 0;
4895}
4896
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004897static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
4898 struct kvm_enable_cap *cap)
4899{
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004900 int r;
4901 uint16_t vmcs_version;
4902 void __user *user_ptr;
4903
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004904 if (cap->flags)
4905 return -EINVAL;
4906
4907 switch (cap->cap) {
Roman Kaganefc479e2017-06-22 16:51:01 +03004908 case KVM_CAP_HYPERV_SYNIC2:
4909 if (cap->args[0])
4910 return -EINVAL;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004911 fallthrough;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004912
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004913 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08004914 if (!irqchip_in_kernel(vcpu->kvm))
4915 return -EINVAL;
Roman Kaganefc479e2017-06-22 16:51:01 +03004916 return kvm_hv_activate_synic(vcpu, cap->cap ==
4917 KVM_CAP_HYPERV_SYNIC2);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004918 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004919 if (!kvm_x86_ops.nested_ops->enable_evmcs)
Sean Christopherson51589172018-12-03 13:53:10 -08004920 return -ENOTTY;
Paolo Bonzini33b22172020-04-17 10:24:18 -04004921 r = kvm_x86_ops.nested_ops->enable_evmcs(vcpu, &vmcs_version);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004922 if (!r) {
4923 user_ptr = (void __user *)(uintptr_t)cap->args[0];
4924 if (copy_to_user(user_ptr, &vmcs_version,
4925 sizeof(vmcs_version)))
4926 r = -EFAULT;
4927 }
4928 return r;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004929 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004930 if (!kvm_x86_ops.enable_direct_tlbflush)
Tianyu Lan344c6c82019-08-22 22:30:20 +08004931 return -ENOTTY;
4932
Jason Baronb36464772021-01-14 22:27:56 -05004933 return static_call(kvm_x86_enable_direct_tlbflush)(vcpu);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004934
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02004935 case KVM_CAP_HYPERV_ENFORCE_CPUID:
4936 return kvm_hv_set_enforce_cpuid(vcpu, cap->args[0]);
4937
Oliver Upton66570e92020-08-18 15:24:28 +00004938 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
4939 vcpu->arch.pv_cpuid.enforce = cap->args[0];
Oliver Upton01b4f512020-10-27 16:10:42 -07004940 if (vcpu->arch.pv_cpuid.enforce)
4941 kvm_update_pv_runtime(vcpu);
Oliver Upton66570e92020-08-18 15:24:28 +00004942
4943 return 0;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004944 default:
4945 return -EINVAL;
4946 }
4947}
4948
Carsten Otte313a3dc2007-10-11 19:16:52 +02004949long kvm_arch_vcpu_ioctl(struct file *filp,
4950 unsigned int ioctl, unsigned long arg)
4951{
4952 struct kvm_vcpu *vcpu = filp->private_data;
4953 void __user *argp = (void __user *)arg;
4954 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004955 union {
Maxim Levitsky6dba9402021-06-07 12:02:02 +03004956 struct kvm_sregs2 *sregs2;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004957 struct kvm_lapic_state *lapic;
4958 struct kvm_xsave *xsave;
4959 struct kvm_xcrs *xcrs;
4960 void *buffer;
4961 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004962
Christoffer Dall9b0624712017-12-04 21:35:36 +01004963 vcpu_load(vcpu);
4964
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004965 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004966 switch (ioctl) {
4967 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004968 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004969 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004970 goto out;
Ben Gardon254272c2019-02-11 11:02:50 -08004971 u.lapic = kzalloc(sizeof(struct kvm_lapic_state),
4972 GFP_KERNEL_ACCOUNT);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004973
Dave Hansenb772ff32008-08-11 10:01:47 -07004974 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004975 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07004976 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004977 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004978 if (r)
4979 goto out;
4980 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004981 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02004982 goto out;
4983 r = 0;
4984 break;
4985 }
4986 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004987 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004988 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004989 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004990 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Christoffer Dall9b0624712017-12-04 21:35:36 +01004991 if (IS_ERR(u.lapic)) {
4992 r = PTR_ERR(u.lapic);
4993 goto out_nofree;
4994 }
Sasha Levinff5c2c02011-12-04 19:36:29 +02004995
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004996 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004997 break;
4998 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004999 case KVM_INTERRUPT: {
5000 struct kvm_interrupt irq;
5001
5002 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005003 if (copy_from_user(&irq, argp, sizeof(irq)))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005004 goto out;
5005 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005006 break;
5007 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02005008 case KVM_NMI: {
5009 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02005010 break;
5011 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02005012 case KVM_SMI: {
5013 r = kvm_vcpu_ioctl_smi(vcpu);
5014 break;
5015 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02005016 case KVM_SET_CPUID: {
5017 struct kvm_cpuid __user *cpuid_arg = argp;
5018 struct kvm_cpuid cpuid;
5019
5020 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005021 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005022 goto out;
5023 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005024 break;
5025 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02005026 case KVM_SET_CPUID2: {
5027 struct kvm_cpuid2 __user *cpuid_arg = argp;
5028 struct kvm_cpuid2 cpuid;
5029
5030 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005031 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005032 goto out;
5033 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005034 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005035 break;
5036 }
5037 case KVM_GET_CPUID2: {
5038 struct kvm_cpuid2 __user *cpuid_arg = argp;
5039 struct kvm_cpuid2 cpuid;
5040
5041 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005042 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005043 goto out;
5044 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005045 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005046 if (r)
5047 goto out;
5048 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005049 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005050 goto out;
5051 r = 0;
5052 break;
5053 }
Tom Lendacky801e4592018-02-21 13:39:51 -06005054 case KVM_GET_MSRS: {
5055 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005056 r = msr_io(vcpu, argp, do_get_msr, 1);
Tom Lendacky801e4592018-02-21 13:39:51 -06005057 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005058 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005059 }
5060 case KVM_SET_MSRS: {
5061 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005062 r = msr_io(vcpu, argp, do_set_msr, 0);
Tom Lendacky801e4592018-02-21 13:39:51 -06005063 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005064 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005065 }
Avi Kivityb209749f2007-10-22 16:50:39 +02005066 case KVM_TPR_ACCESS_REPORTING: {
5067 struct kvm_tpr_access_ctl tac;
5068
5069 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005070 if (copy_from_user(&tac, argp, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005071 goto out;
5072 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
5073 if (r)
5074 goto out;
5075 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005076 if (copy_to_user(argp, &tac, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005077 goto out;
5078 r = 0;
5079 break;
5080 };
Avi Kivityb93463a2007-10-25 16:52:32 +02005081 case KVM_SET_VAPIC_ADDR: {
5082 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005083 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02005084
5085 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005086 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02005087 goto out;
5088 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005089 if (copy_from_user(&va, argp, sizeof(va)))
Avi Kivityb93463a2007-10-25 16:52:32 +02005090 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005091 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08005092 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005093 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02005094 break;
5095 }
Huang Ying890ca9a2009-05-11 16:48:15 +08005096 case KVM_X86_SETUP_MCE: {
5097 u64 mcg_cap;
5098
5099 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005100 if (copy_from_user(&mcg_cap, argp, sizeof(mcg_cap)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005101 goto out;
5102 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
5103 break;
5104 }
5105 case KVM_X86_SET_MCE: {
5106 struct kvm_x86_mce mce;
5107
5108 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005109 if (copy_from_user(&mce, argp, sizeof(mce)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005110 goto out;
5111 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
5112 break;
5113 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005114 case KVM_GET_VCPU_EVENTS: {
5115 struct kvm_vcpu_events events;
5116
5117 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
5118
5119 r = -EFAULT;
5120 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
5121 break;
5122 r = 0;
5123 break;
5124 }
5125 case KVM_SET_VCPU_EVENTS: {
5126 struct kvm_vcpu_events events;
5127
5128 r = -EFAULT;
5129 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
5130 break;
5131
5132 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
5133 break;
5134 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01005135 case KVM_GET_DEBUGREGS: {
5136 struct kvm_debugregs dbgregs;
5137
5138 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
5139
5140 r = -EFAULT;
5141 if (copy_to_user(argp, &dbgregs,
5142 sizeof(struct kvm_debugregs)))
5143 break;
5144 r = 0;
5145 break;
5146 }
5147 case KVM_SET_DEBUGREGS: {
5148 struct kvm_debugregs dbgregs;
5149
5150 r = -EFAULT;
5151 if (copy_from_user(&dbgregs, argp,
5152 sizeof(struct kvm_debugregs)))
5153 break;
5154
5155 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
5156 break;
5157 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005158 case KVM_GET_XSAVE: {
Ben Gardon254272c2019-02-11 11:02:50 -08005159 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005160 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005161 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005162 break;
5163
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005164 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005165
5166 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005167 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005168 break;
5169 r = 0;
5170 break;
5171 }
5172 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005173 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005174 if (IS_ERR(u.xsave)) {
5175 r = PTR_ERR(u.xsave);
5176 goto out_nofree;
5177 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005178
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005179 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005180 break;
5181 }
5182 case KVM_GET_XCRS: {
Ben Gardon254272c2019-02-11 11:02:50 -08005183 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005184 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005185 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005186 break;
5187
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005188 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005189
5190 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005191 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005192 sizeof(struct kvm_xcrs)))
5193 break;
5194 r = 0;
5195 break;
5196 }
5197 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005198 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005199 if (IS_ERR(u.xcrs)) {
5200 r = PTR_ERR(u.xcrs);
5201 goto out_nofree;
5202 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005203
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005204 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005205 break;
5206 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01005207 case KVM_SET_TSC_KHZ: {
5208 u32 user_tsc_khz;
5209
5210 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005211 user_tsc_khz = (u32)arg;
5212
Marcelo Tosatti26769f92020-06-16 08:47:41 -03005213 if (kvm_has_tsc_control &&
5214 user_tsc_khz >= kvm_max_guest_tsc_khz)
Joerg Roedel92a1f122011-03-25 09:44:51 +01005215 goto out;
5216
Zachary Amsdencc578282012-02-03 15:43:50 -02005217 if (user_tsc_khz == 0)
5218 user_tsc_khz = tsc_khz;
5219
Haozhong Zhang381d5852015-10-20 15:39:04 +08005220 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
5221 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005222
Joerg Roedel92a1f122011-03-25 09:44:51 +01005223 goto out;
5224 }
5225 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02005226 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005227 goto out;
5228 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005229 case KVM_KVMCLOCK_CTRL: {
5230 r = kvm_set_guest_paused(vcpu);
5231 goto out;
5232 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005233 case KVM_ENABLE_CAP: {
5234 struct kvm_enable_cap cap;
5235
5236 r = -EFAULT;
5237 if (copy_from_user(&cap, argp, sizeof(cap)))
5238 goto out;
5239 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
5240 break;
5241 }
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005242 case KVM_GET_NESTED_STATE: {
5243 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5244 u32 user_data_size;
5245
5246 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005247 if (!kvm_x86_ops.nested_ops->get_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005248 break;
5249
5250 BUILD_BUG_ON(sizeof(user_data_size) != sizeof(user_kvm_nested_state->size));
Liran Alon26b471c2018-09-16 14:28:20 +03005251 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005252 if (get_user(user_data_size, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005253 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005254
Paolo Bonzini33b22172020-04-17 10:24:18 -04005255 r = kvm_x86_ops.nested_ops->get_state(vcpu, user_kvm_nested_state,
5256 user_data_size);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005257 if (r < 0)
Liran Alon26b471c2018-09-16 14:28:20 +03005258 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005259
5260 if (r > user_data_size) {
5261 if (put_user(r, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005262 r = -EFAULT;
5263 else
5264 r = -E2BIG;
5265 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005266 }
Liran Alon26b471c2018-09-16 14:28:20 +03005267
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005268 r = 0;
5269 break;
5270 }
5271 case KVM_SET_NESTED_STATE: {
5272 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5273 struct kvm_nested_state kvm_state;
Sean Christophersonad5996d2019-11-22 08:58:18 -08005274 int idx;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005275
5276 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005277 if (!kvm_x86_ops.nested_ops->set_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005278 break;
5279
Liran Alon26b471c2018-09-16 14:28:20 +03005280 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005281 if (copy_from_user(&kvm_state, user_kvm_nested_state, sizeof(kvm_state)))
Liran Alon26b471c2018-09-16 14:28:20 +03005282 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005283
Liran Alon26b471c2018-09-16 14:28:20 +03005284 r = -EINVAL;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005285 if (kvm_state.size < sizeof(kvm_state))
Liran Alon26b471c2018-09-16 14:28:20 +03005286 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005287
5288 if (kvm_state.flags &
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005289 ~(KVM_STATE_NESTED_RUN_PENDING | KVM_STATE_NESTED_GUEST_MODE
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04005290 | KVM_STATE_NESTED_EVMCS | KVM_STATE_NESTED_MTF_PENDING
5291 | KVM_STATE_NESTED_GIF_SET))
Liran Alon26b471c2018-09-16 14:28:20 +03005292 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005293
5294 /* nested_run_pending implies guest_mode. */
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005295 if ((kvm_state.flags & KVM_STATE_NESTED_RUN_PENDING)
5296 && !(kvm_state.flags & KVM_STATE_NESTED_GUEST_MODE))
Liran Alon26b471c2018-09-16 14:28:20 +03005297 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005298
Sean Christophersonad5996d2019-11-22 08:58:18 -08005299 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini33b22172020-04-17 10:24:18 -04005300 r = kvm_x86_ops.nested_ops->set_state(vcpu, user_kvm_nested_state, &kvm_state);
Sean Christophersonad5996d2019-11-22 08:58:18 -08005301 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005302 break;
5303 }
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02005304 case KVM_GET_SUPPORTED_HV_CPUID:
5305 r = kvm_ioctl_get_supported_hv_cpuid(vcpu, argp);
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01005306 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005307#ifdef CONFIG_KVM_XEN
David Woodhouse3e324612021-02-02 16:53:25 +00005308 case KVM_XEN_VCPU_GET_ATTR: {
5309 struct kvm_xen_vcpu_attr xva;
5310
5311 r = -EFAULT;
5312 if (copy_from_user(&xva, argp, sizeof(xva)))
5313 goto out;
5314 r = kvm_xen_vcpu_get_attr(vcpu, &xva);
5315 if (!r && copy_to_user(argp, &xva, sizeof(xva)))
5316 r = -EFAULT;
5317 break;
5318 }
5319 case KVM_XEN_VCPU_SET_ATTR: {
5320 struct kvm_xen_vcpu_attr xva;
5321
5322 r = -EFAULT;
5323 if (copy_from_user(&xva, argp, sizeof(xva)))
5324 goto out;
5325 r = kvm_xen_vcpu_set_attr(vcpu, &xva);
5326 break;
5327 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005328#endif
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005329 case KVM_GET_SREGS2: {
5330 u.sregs2 = kzalloc(sizeof(struct kvm_sregs2), GFP_KERNEL);
5331 r = -ENOMEM;
5332 if (!u.sregs2)
5333 goto out;
5334 __get_sregs2(vcpu, u.sregs2);
5335 r = -EFAULT;
5336 if (copy_to_user(argp, u.sregs2, sizeof(struct kvm_sregs2)))
5337 goto out;
5338 r = 0;
5339 break;
5340 }
5341 case KVM_SET_SREGS2: {
5342 u.sregs2 = memdup_user(argp, sizeof(struct kvm_sregs2));
5343 if (IS_ERR(u.sregs2)) {
5344 r = PTR_ERR(u.sregs2);
5345 u.sregs2 = NULL;
5346 goto out;
5347 }
5348 r = __set_sregs2(vcpu, u.sregs2);
5349 break;
5350 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02005351 default:
5352 r = -EINVAL;
5353 }
5354out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005355 kfree(u.buffer);
Christoffer Dall9b0624712017-12-04 21:35:36 +01005356out_nofree:
5357 vcpu_put(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005358 return r;
5359}
5360
Souptick Joarder1499fa82018-04-19 00:49:58 +05305361vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
Carsten Otte5b1c1492012-01-04 10:25:23 +01005362{
5363 return VM_FAULT_SIGBUS;
5364}
5365
Carsten Otte1fe779f2007-10-29 16:08:35 +01005366static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
5367{
5368 int ret;
5369
5370 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08005371 return -EINVAL;
Jason Baronb36464772021-01-14 22:27:56 -05005372 ret = static_call(kvm_x86_set_tss_addr)(kvm, addr);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005373 return ret;
5374}
5375
Sheng Yangb927a3c2009-07-21 10:42:48 +08005376static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
5377 u64 ident_addr)
5378{
Jason Baronb36464772021-01-14 22:27:56 -05005379 return static_call(kvm_x86_set_identity_map_addr)(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005380}
5381
Carsten Otte1fe779f2007-10-29 16:08:35 +01005382static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005383 unsigned long kvm_nr_mmu_pages)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005384{
5385 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
5386 return -EINVAL;
5387
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005388 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005389
5390 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08005391 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005392
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005393 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005394 return 0;
5395}
5396
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005397static unsigned long kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005398{
Dave Hansen39de71e2010-08-19 18:11:14 -07005399 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005400}
5401
Carsten Otte1fe779f2007-10-29 16:08:35 +01005402static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5403{
David Hildenbrand90bca052017-04-07 10:50:23 +02005404 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005405 int r;
5406
5407 r = 0;
5408 switch (chip->chip_id) {
5409 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005410 memcpy(&chip->chip.pic, &pic->pics[0],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005411 sizeof(struct kvm_pic_state));
5412 break;
5413 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005414 memcpy(&chip->chip.pic, &pic->pics[1],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005415 sizeof(struct kvm_pic_state));
5416 break;
5417 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005418 kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005419 break;
5420 default:
5421 r = -EINVAL;
5422 break;
5423 }
5424 return r;
5425}
5426
5427static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5428{
David Hildenbrand90bca052017-04-07 10:50:23 +02005429 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005430 int r;
5431
5432 r = 0;
5433 switch (chip->chip_id) {
5434 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005435 spin_lock(&pic->lock);
5436 memcpy(&pic->pics[0], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005437 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005438 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005439 break;
5440 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005441 spin_lock(&pic->lock);
5442 memcpy(&pic->pics[1], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005443 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005444 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005445 break;
5446 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005447 kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005448 break;
5449 default:
5450 r = -EINVAL;
5451 break;
5452 }
David Hildenbrand90bca052017-04-07 10:50:23 +02005453 kvm_pic_update_irq(pic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005454 return r;
5455}
5456
Sheng Yange0f63cb2008-03-04 00:50:59 +08005457static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5458{
Radim Krčmář34f39412016-03-02 22:56:50 +01005459 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
5460
5461 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
5462
5463 mutex_lock(&kps->lock);
5464 memcpy(ps, &kps->channels, sizeof(*ps));
5465 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305466 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005467}
5468
5469static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5470{
Andrew Honig01856042015-11-18 14:50:23 -08005471 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01005472 struct kvm_pit *pit = kvm->arch.vpit;
5473
5474 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01005475 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08005476 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005477 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
5478 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305479 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005480}
5481
5482static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5483{
Beth Kone9f42752009-07-07 11:50:38 -04005484 mutex_lock(&kvm->arch.vpit->pit_state.lock);
5485 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
5486 sizeof(ps->channels));
5487 ps->flags = kvm->arch.vpit->pit_state.flags;
5488 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04005489 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305490 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005491}
5492
5493static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5494{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305495 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08005496 int i;
Beth Kone9f42752009-07-07 11:50:38 -04005497 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01005498 struct kvm_pit *pit = kvm->arch.vpit;
5499
5500 mutex_lock(&pit->pit_state.lock);
5501 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04005502 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
5503 if (!prev_legacy && cur_legacy)
5504 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01005505 memcpy(&pit->pit_state.channels, &ps->channels,
5506 sizeof(pit->pit_state.channels));
5507 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08005508 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005509 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01005510 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01005511 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305512 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005513}
5514
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005515static int kvm_vm_ioctl_reinject(struct kvm *kvm,
5516 struct kvm_reinject_control *control)
5517{
Radim Krčmář71474e22016-03-02 22:56:45 +01005518 struct kvm_pit *pit = kvm->arch.vpit;
5519
Radim Krčmář71474e22016-03-02 22:56:45 +01005520 /* pit->pit_state.lock was overloaded to prevent userspace from getting
5521 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
5522 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
5523 */
5524 mutex_lock(&pit->pit_state.lock);
5525 kvm_pit_set_reinject(pit, control->pit_reinject);
5526 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01005527
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005528 return 0;
5529}
5530
Sean Christopherson0dff0842020-02-18 13:07:29 -08005531void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005532{
Sean Christophersona018eba2021-02-12 16:50:10 -08005533
Kai Huang88178fd2015-01-28 10:54:27 +08005534 /*
Sean Christophersona018eba2021-02-12 16:50:10 -08005535 * Flush all CPUs' dirty log buffers to the dirty_bitmap. Called
5536 * before reporting dirty_bitmap to userspace. KVM flushes the buffers
5537 * on all VM-Exits, thus we only need to kick running vCPUs to force a
5538 * VM-Exit.
Kai Huang88178fd2015-01-28 10:54:27 +08005539 */
Sean Christophersona018eba2021-02-12 16:50:10 -08005540 struct kvm_vcpu *vcpu;
5541 int i;
5542
5543 kvm_for_each_vcpu(i, vcpu, kvm)
5544 kvm_vcpu_kick(vcpu);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005545}
5546
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005547int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
5548 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005549{
5550 if (!irqchip_in_kernel(kvm))
5551 return -ENXIO;
5552
5553 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005554 irq_event->irq, irq_event->level,
5555 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005556 return 0;
5557}
5558
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01005559int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
5560 struct kvm_enable_cap *cap)
Nadav Amit90de4a12015-04-13 01:53:41 +03005561{
5562 int r;
5563
5564 if (cap->flags)
5565 return -EINVAL;
5566
5567 switch (cap->cap) {
5568 case KVM_CAP_DISABLE_QUIRKS:
5569 kvm->arch.disabled_quirks = cap->args[0];
5570 r = 0;
5571 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07005572 case KVM_CAP_SPLIT_IRQCHIP: {
5573 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005574 r = -EINVAL;
5575 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
5576 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07005577 r = -EEXIST;
5578 if (irqchip_in_kernel(kvm))
5579 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005580 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07005581 goto split_irqchip_unlock;
5582 r = kvm_setup_empty_irq_routing(kvm);
David Hildenbrand5c0aea02017-04-28 17:06:20 +02005583 if (r)
Steve Rutherford49df6392015-07-29 23:21:40 -07005584 goto split_irqchip_unlock;
5585 /* Pairs with irqchip_in_kernel. */
5586 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005587 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005588 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Steve Rutherford49df6392015-07-29 23:21:40 -07005589 r = 0;
5590split_irqchip_unlock:
5591 mutex_unlock(&kvm->lock);
5592 break;
5593 }
Radim Krčmář371313132016-07-12 22:09:27 +02005594 case KVM_CAP_X2APIC_API:
5595 r = -EINVAL;
5596 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
5597 break;
5598
5599 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
5600 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02005601 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
5602 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02005603
5604 r = 0;
5605 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005606 case KVM_CAP_X86_DISABLE_EXITS:
5607 r = -EINVAL;
5608 if (cap->args[0] & ~KVM_X86_DISABLE_VALID_EXITS)
5609 break;
5610
5611 if ((cap->args[0] & KVM_X86_DISABLE_EXITS_MWAIT) &&
5612 kvm_can_mwait_in_guest())
5613 kvm->arch.mwait_in_guest = true;
Michael S. Tsirkin766d3572018-06-08 02:19:53 +03005614 if (cap->args[0] & KVM_X86_DISABLE_EXITS_HLT)
Wanpeng Licaa057a2018-03-12 04:53:03 -07005615 kvm->arch.hlt_in_guest = true;
Wanpeng Lib31c1142018-03-12 04:53:04 -07005616 if (cap->args[0] & KVM_X86_DISABLE_EXITS_PAUSE)
5617 kvm->arch.pause_in_guest = true;
Wanpeng Lib5170062019-05-21 14:06:53 +08005618 if (cap->args[0] & KVM_X86_DISABLE_EXITS_CSTATE)
5619 kvm->arch.cstate_in_guest = true;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005620 r = 0;
5621 break;
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005622 case KVM_CAP_MSR_PLATFORM_INFO:
5623 kvm->arch.guest_can_read_msr_platform_info = cap->args[0];
5624 r = 0;
5625 break;
Jim Mattsonc4f55192018-10-16 14:29:24 -07005626 case KVM_CAP_EXCEPTION_PAYLOAD:
5627 kvm->arch.exception_payload_enabled = cap->args[0];
5628 r = 0;
5629 break;
Alexander Graf1ae09952020-09-25 16:34:16 +02005630 case KVM_CAP_X86_USER_SPACE_MSR:
5631 kvm->arch.user_space_msr_mask = cap->args[0];
5632 r = 0;
5633 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005634 case KVM_CAP_X86_BUS_LOCK_EXIT:
5635 r = -EINVAL;
5636 if (cap->args[0] & ~KVM_BUS_LOCK_DETECTION_VALID_MODE)
5637 break;
5638
5639 if ((cap->args[0] & KVM_BUS_LOCK_DETECTION_OFF) &&
5640 (cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT))
5641 break;
5642
5643 if (kvm_has_bus_lock_exit &&
5644 cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT)
5645 kvm->arch.bus_lock_detection_enabled = true;
5646 r = 0;
5647 break;
Sean Christophersonfe7e9482021-04-12 16:21:43 +12005648#ifdef CONFIG_X86_SGX_KVM
5649 case KVM_CAP_SGX_ATTRIBUTE: {
5650 unsigned long allowed_attributes = 0;
5651
5652 r = sgx_set_attribute(&allowed_attributes, cap->args[0]);
5653 if (r)
5654 break;
5655
5656 /* KVM only supports the PROVISIONKEY privileged attribute. */
5657 if ((allowed_attributes & SGX_ATTR_PROVISIONKEY) &&
5658 !(allowed_attributes & ~SGX_ATTR_PROVISIONKEY))
5659 kvm->arch.sgx_provisioning_allowed = true;
5660 else
5661 r = -EINVAL;
5662 break;
5663 }
5664#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00005665 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
5666 r = -EINVAL;
5667 if (kvm_x86_ops.vm_copy_enc_context_from)
5668 r = kvm_x86_ops.vm_copy_enc_context_from(kvm, cap->args[0]);
5669 return r;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00005670 case KVM_CAP_EXIT_HYPERCALL:
5671 if (cap->args[0] & ~KVM_EXIT_HYPERCALL_VALID_MASK) {
5672 r = -EINVAL;
5673 break;
5674 }
5675 kvm->arch.hypercall_exit_enabled = cap->args[0];
5676 r = 0;
5677 break;
Aaron Lewis19238e72021-05-10 07:48:33 -07005678 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
5679 r = -EINVAL;
5680 if (cap->args[0] & ~1)
5681 break;
5682 kvm->arch.exit_on_emulation_error = cap->args[0];
5683 r = 0;
5684 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03005685 default:
5686 r = -EINVAL;
5687 break;
5688 }
5689 return r;
5690}
5691
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005692static struct kvm_x86_msr_filter *kvm_alloc_msr_filter(bool default_allow)
Alexander Graf1a1552542020-09-25 16:34:21 +02005693{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005694 struct kvm_x86_msr_filter *msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005695
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005696 msr_filter = kzalloc(sizeof(*msr_filter), GFP_KERNEL_ACCOUNT);
5697 if (!msr_filter)
5698 return NULL;
Alexander Graf1a1552542020-09-25 16:34:21 +02005699
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005700 msr_filter->default_allow = default_allow;
5701 return msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005702}
5703
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005704static void kvm_free_msr_filter(struct kvm_x86_msr_filter *msr_filter)
Alexander Graf1a1552542020-09-25 16:34:21 +02005705{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005706 u32 i;
5707
5708 if (!msr_filter)
5709 return;
5710
5711 for (i = 0; i < msr_filter->count; i++)
5712 kfree(msr_filter->ranges[i].bitmap);
5713
5714 kfree(msr_filter);
5715}
5716
5717static int kvm_add_msr_filter(struct kvm_x86_msr_filter *msr_filter,
5718 struct kvm_msr_filter_range *user_range)
5719{
Alexander Graf1a1552542020-09-25 16:34:21 +02005720 unsigned long *bitmap = NULL;
5721 size_t bitmap_size;
Alexander Graf1a1552542020-09-25 16:34:21 +02005722
5723 if (!user_range->nmsrs)
5724 return 0;
5725
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005726 if (user_range->flags & ~(KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE))
5727 return -EINVAL;
5728
5729 if (!user_range->flags)
5730 return -EINVAL;
5731
Alexander Graf1a1552542020-09-25 16:34:21 +02005732 bitmap_size = BITS_TO_LONGS(user_range->nmsrs) * sizeof(long);
5733 if (!bitmap_size || bitmap_size > KVM_MSR_FILTER_MAX_BITMAP_SIZE)
5734 return -EINVAL;
5735
5736 bitmap = memdup_user((__user u8*)user_range->bitmap, bitmap_size);
5737 if (IS_ERR(bitmap))
5738 return PTR_ERR(bitmap);
5739
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005740 msr_filter->ranges[msr_filter->count] = (struct msr_bitmap_range) {
Alexander Graf1a1552542020-09-25 16:34:21 +02005741 .flags = user_range->flags,
5742 .base = user_range->base,
5743 .nmsrs = user_range->nmsrs,
5744 .bitmap = bitmap,
5745 };
5746
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005747 msr_filter->count++;
Alexander Graf1a1552542020-09-25 16:34:21 +02005748 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005749}
5750
5751static int kvm_vm_ioctl_set_msr_filter(struct kvm *kvm, void __user *argp)
5752{
5753 struct kvm_msr_filter __user *user_msr_filter = argp;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005754 struct kvm_x86_msr_filter *new_filter, *old_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005755 struct kvm_msr_filter filter;
5756 bool default_allow;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005757 bool empty = true;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005758 int r = 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005759 u32 i;
5760
5761 if (copy_from_user(&filter, user_msr_filter, sizeof(filter)))
5762 return -EFAULT;
5763
Paolo Bonzini043248b2020-10-20 10:57:01 -04005764 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++)
5765 empty &= !filter.ranges[i].nmsrs;
Alexander Graf1a1552542020-09-25 16:34:21 +02005766
5767 default_allow = !(filter.flags & KVM_MSR_FILTER_DEFAULT_DENY);
Paolo Bonzini043248b2020-10-20 10:57:01 -04005768 if (empty && !default_allow)
5769 return -EINVAL;
5770
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005771 new_filter = kvm_alloc_msr_filter(default_allow);
5772 if (!new_filter)
5773 return -ENOMEM;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005774
Alexander Graf1a1552542020-09-25 16:34:21 +02005775 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005776 r = kvm_add_msr_filter(new_filter, &filter.ranges[i]);
5777 if (r) {
5778 kvm_free_msr_filter(new_filter);
5779 return r;
5780 }
Alexander Graf1a1552542020-09-25 16:34:21 +02005781 }
5782
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005783 mutex_lock(&kvm->lock);
5784
5785 /* The per-VM filter is protected by kvm->lock... */
5786 old_filter = srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1);
5787
5788 rcu_assign_pointer(kvm->arch.msr_filter, new_filter);
5789 synchronize_srcu(&kvm->srcu);
5790
5791 kvm_free_msr_filter(old_filter);
5792
Alexander Graf1a1552542020-09-25 16:34:21 +02005793 kvm_make_all_cpus_request(kvm, KVM_REQ_MSR_FILTER_CHANGED);
5794 mutex_unlock(&kvm->lock);
5795
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005796 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005797}
5798
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09005799#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
5800static int kvm_arch_suspend_notifier(struct kvm *kvm)
5801{
5802 struct kvm_vcpu *vcpu;
5803 int i, ret = 0;
5804
5805 mutex_lock(&kvm->lock);
5806 kvm_for_each_vcpu(i, vcpu, kvm) {
5807 if (!vcpu->arch.pv_time_enabled)
5808 continue;
5809
5810 ret = kvm_set_guest_paused(vcpu);
5811 if (ret) {
5812 kvm_err("Failed to pause guest VCPU%d: %d\n",
5813 vcpu->vcpu_id, ret);
5814 break;
5815 }
5816 }
5817 mutex_unlock(&kvm->lock);
5818
5819 return ret ? NOTIFY_BAD : NOTIFY_DONE;
5820}
5821
5822int kvm_arch_pm_notifier(struct kvm *kvm, unsigned long state)
5823{
5824 switch (state) {
5825 case PM_HIBERNATION_PREPARE:
5826 case PM_SUSPEND_PREPARE:
5827 return kvm_arch_suspend_notifier(kvm);
5828 }
5829
5830 return NOTIFY_DONE;
5831}
5832#endif /* CONFIG_HAVE_KVM_PM_NOTIFIER */
5833
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00005834static int kvm_vm_ioctl_get_clock(struct kvm *kvm, void __user *argp)
5835{
5836 struct kvm_clock_data data;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00005837
Oliver Upton55c0cef2021-09-16 18:15:34 +00005838 memset(&data, 0, sizeof(data));
5839 get_kvmclock(kvm, &data);
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00005840 if (copy_to_user(argp, &data, sizeof(data)))
5841 return -EFAULT;
5842
5843 return 0;
5844}
5845
5846static int kvm_vm_ioctl_set_clock(struct kvm *kvm, void __user *argp)
5847{
5848 struct kvm_arch *ka = &kvm->arch;
5849 struct kvm_clock_data data;
5850 u64 now_ns;
5851
5852 if (copy_from_user(&data, argp, sizeof(data)))
5853 return -EFAULT;
5854
5855 if (data.flags)
5856 return -EINVAL;
5857
5858 kvm_hv_invalidate_tsc_page(kvm);
5859 kvm_start_pvclock_update(kvm);
5860 pvclock_update_vm_gtod_copy(kvm);
5861
5862 /*
5863 * This pairs with kvm_guest_time_update(): when masterclock is
5864 * in use, we use master_kernel_ns + kvmclock_offset to set
5865 * unsigned 'system_time' so if we use get_kvmclock_ns() (which
5866 * is slightly ahead) here we risk going negative on unsigned
5867 * 'system_time' when 'data.clock' is very small.
5868 */
5869 if (kvm->arch.use_master_clock)
5870 now_ns = ka->master_kernel_ns;
5871 else
5872 now_ns = get_kvmclock_base_ns();
5873 ka->kvmclock_offset = data.clock - now_ns;
5874 kvm_end_pvclock_update(kvm);
5875 return 0;
5876}
5877
Carsten Otte1fe779f2007-10-29 16:08:35 +01005878long kvm_arch_vm_ioctl(struct file *filp,
5879 unsigned int ioctl, unsigned long arg)
5880{
5881 struct kvm *kvm = filp->private_data;
5882 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03005883 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07005884 /*
5885 * This union makes it completely explicit to gcc-3.x
5886 * that these two variables' stack usage should be
5887 * combined, not added together.
5888 */
5889 union {
5890 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04005891 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005892 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07005893 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005894
5895 switch (ioctl) {
5896 case KVM_SET_TSS_ADDR:
5897 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005898 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005899 case KVM_SET_IDENTITY_MAP_ADDR: {
5900 u64 ident_addr;
5901
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005902 mutex_lock(&kvm->lock);
5903 r = -EINVAL;
5904 if (kvm->created_vcpus)
5905 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005906 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005907 if (copy_from_user(&ident_addr, argp, sizeof(ident_addr)))
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005908 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005909 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005910set_identity_unlock:
5911 mutex_unlock(&kvm->lock);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005912 break;
5913 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01005914 case KVM_SET_NR_MMU_PAGES:
5915 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005916 break;
5917 case KVM_GET_NR_MMU_PAGES:
5918 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
5919 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005920 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005921 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01005922
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005923 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01005924 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005925 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005926
Avi Kivity3e515702012-03-05 14:23:29 +02005927 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005928 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02005929 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005930
5931 r = kvm_pic_init(kvm);
5932 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005933 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005934
5935 r = kvm_ioapic_init(kvm);
5936 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01005937 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01005938 goto create_irqchip_unlock;
5939 }
5940
Avi Kivity399ec802008-11-19 13:58:46 +02005941 r = kvm_setup_default_irq_routing(kvm);
5942 if (r) {
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08005943 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01005944 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02005945 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02005946 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01005947 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02005948 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005949 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005950 create_irqchip_unlock:
5951 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005952 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005953 }
Sheng Yang78376992008-01-28 05:10:22 +08005954 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005955 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
5956 goto create_pit;
5957 case KVM_CREATE_PIT2:
5958 r = -EFAULT;
5959 if (copy_from_user(&u.pit_config, argp,
5960 sizeof(struct kvm_pit_config)))
5961 goto out;
5962 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02005963 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02005964 r = -EEXIST;
5965 if (kvm->arch.vpit)
5966 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08005967 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005968 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08005969 if (kvm->arch.vpit)
5970 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02005971 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02005972 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08005973 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005974 case KVM_GET_IRQCHIP: {
5975 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02005976 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005977
Sasha Levinff5c2c02011-12-04 19:36:29 +02005978 chip = memdup_user(argp, sizeof(*chip));
5979 if (IS_ERR(chip)) {
5980 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005981 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005982 }
5983
Carsten Otte1fe779f2007-10-29 16:08:35 +01005984 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01005985 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07005986 goto get_irqchip_out;
5987 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
5988 if (r)
5989 goto get_irqchip_out;
5990 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005991 if (copy_to_user(argp, chip, sizeof(*chip)))
Dave Hansenf0d66272008-08-11 10:01:45 -07005992 goto get_irqchip_out;
5993 r = 0;
5994 get_irqchip_out:
5995 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005996 break;
5997 }
5998 case KVM_SET_IRQCHIP: {
5999 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02006000 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006001
Sasha Levinff5c2c02011-12-04 19:36:29 +02006002 chip = memdup_user(argp, sizeof(*chip));
6003 if (IS_ERR(chip)) {
6004 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006005 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02006006 }
6007
Carsten Otte1fe779f2007-10-29 16:08:35 +01006008 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01006009 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07006010 goto set_irqchip_out;
6011 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
Dave Hansenf0d66272008-08-11 10:01:45 -07006012 set_irqchip_out:
6013 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006014 break;
6015 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08006016 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08006017 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07006018 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006019 goto out;
6020 r = -ENXIO;
6021 if (!kvm->arch.vpit)
6022 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07006023 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006024 if (r)
6025 goto out;
6026 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07006027 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006028 goto out;
6029 r = 0;
6030 break;
6031 }
6032 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08006033 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006034 if (copy_from_user(&u.ps, argp, sizeof(u.ps)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006035 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006036 mutex_lock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006037 r = -ENXIO;
6038 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006039 goto set_pit_out;
Dave Hansenf0d66272008-08-11 10:01:45 -07006040 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006041set_pit_out:
6042 mutex_unlock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006043 break;
6044 }
Beth Kone9f42752009-07-07 11:50:38 -04006045 case KVM_GET_PIT2: {
6046 r = -ENXIO;
6047 if (!kvm->arch.vpit)
6048 goto out;
6049 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
6050 if (r)
6051 goto out;
6052 r = -EFAULT;
6053 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
6054 goto out;
6055 r = 0;
6056 break;
6057 }
6058 case KVM_SET_PIT2: {
6059 r = -EFAULT;
6060 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
6061 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006062 mutex_lock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006063 r = -ENXIO;
6064 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006065 goto set_pit2_out;
Beth Kone9f42752009-07-07 11:50:38 -04006066 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006067set_pit2_out:
6068 mutex_unlock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006069 break;
6070 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006071 case KVM_REINJECT_CONTROL: {
6072 struct kvm_reinject_control control;
6073 r = -EFAULT;
6074 if (copy_from_user(&control, argp, sizeof(control)))
6075 goto out;
Miaohe Lincad23e72019-12-07 17:25:22 +08006076 r = -ENXIO;
6077 if (!kvm->arch.vpit)
6078 goto out;
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006079 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006080 break;
6081 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006082 case KVM_SET_BOOT_CPU_ID:
6083 r = 0;
6084 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02006085 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006086 r = -EBUSY;
6087 else
6088 kvm->arch.bsp_vcpu_id = arg;
6089 mutex_unlock(&kvm->lock);
6090 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006091#ifdef CONFIG_KVM_XEN
Ed Swierkffde22a2009-10-15 15:21:43 -07006092 case KVM_XEN_HVM_CONFIG: {
Paolo Bonzini51776042017-10-26 15:45:47 +02006093 struct kvm_xen_hvm_config xhc;
Ed Swierkffde22a2009-10-15 15:21:43 -07006094 r = -EFAULT;
Paolo Bonzini51776042017-10-26 15:45:47 +02006095 if (copy_from_user(&xhc, argp, sizeof(xhc)))
Ed Swierkffde22a2009-10-15 15:21:43 -07006096 goto out;
David Woodhouse78e98782021-02-02 13:19:35 +00006097 r = kvm_xen_hvm_config(kvm, &xhc);
Ed Swierkffde22a2009-10-15 15:21:43 -07006098 break;
6099 }
Joao Martinsa76b9642020-12-03 15:52:25 +00006100 case KVM_XEN_HVM_GET_ATTR: {
6101 struct kvm_xen_hvm_attr xha;
6102
6103 r = -EFAULT;
6104 if (copy_from_user(&xha, argp, sizeof(xha)))
Hannes Edercded19f2009-02-21 02:19:13 +01006105 goto out;
Joao Martinsa76b9642020-12-03 15:52:25 +00006106 r = kvm_xen_hvm_get_attr(kvm, &xha);
6107 if (!r && copy_to_user(argp, &xha, sizeof(xha)))
6108 r = -EFAULT;
6109 break;
6110 }
6111 case KVM_XEN_HVM_SET_ATTR: {
6112 struct kvm_xen_hvm_attr xha;
6113
6114 r = -EFAULT;
6115 if (copy_from_user(&xha, argp, sizeof(xha)))
6116 goto out;
6117 r = kvm_xen_hvm_set_attr(kvm, &xha);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006118 break;
6119 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006120#endif
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006121 case KVM_SET_CLOCK:
6122 r = kvm_vm_ioctl_set_clock(kvm, argp);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006123 break;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006124 case KVM_GET_CLOCK:
6125 r = kvm_vm_ioctl_get_clock(kvm, argp);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006126 break;
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006127 case KVM_MEMORY_ENCRYPT_OP: {
6128 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006129 if (kvm_x86_ops.mem_enc_op)
Jason Baronb36464772021-01-14 22:27:56 -05006130 r = static_call(kvm_x86_mem_enc_op)(kvm, argp);
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006131 break;
6132 }
Brijesh Singh69eaede2017-12-04 10:57:26 -06006133 case KVM_MEMORY_ENCRYPT_REG_REGION: {
6134 struct kvm_enc_region region;
6135
6136 r = -EFAULT;
6137 if (copy_from_user(&region, argp, sizeof(region)))
6138 goto out;
6139
6140 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006141 if (kvm_x86_ops.mem_enc_reg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006142 r = static_call(kvm_x86_mem_enc_reg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006143 break;
6144 }
6145 case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
6146 struct kvm_enc_region region;
6147
6148 r = -EFAULT;
6149 if (copy_from_user(&region, argp, sizeof(region)))
6150 goto out;
6151
6152 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006153 if (kvm_x86_ops.mem_enc_unreg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006154 r = static_call(kvm_x86_mem_enc_unreg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006155 break;
6156 }
Roman Kaganfaeb7832018-02-01 16:48:32 +03006157 case KVM_HYPERV_EVENTFD: {
6158 struct kvm_hyperv_eventfd hvevfd;
6159
6160 r = -EFAULT;
6161 if (copy_from_user(&hvevfd, argp, sizeof(hvevfd)))
6162 goto out;
6163 r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd);
6164 break;
6165 }
Eric Hankland66bb8a02019-07-10 18:25:15 -07006166 case KVM_SET_PMU_EVENT_FILTER:
6167 r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp);
6168 break;
Alexander Graf1a1552542020-09-25 16:34:21 +02006169 case KVM_X86_SET_MSR_FILTER:
6170 r = kvm_vm_ioctl_set_msr_filter(kvm, argp);
6171 break;
Carsten Otte043405e2007-10-10 17:16:19 +02006172 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02006173 r = -ENOTTY;
Carsten Otte043405e2007-10-10 17:16:19 +02006174 }
6175out:
6176 return r;
6177}
6178
6179static void kvm_init_msr_list(void)
6180{
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006181 struct x86_pmu_capability x86_pmu;
Carsten Otte043405e2007-10-10 17:16:19 +02006182 u32 dummy[2];
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006183 unsigned i;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006184
Jim Mattsone2ada662019-08-21 11:20:04 -07006185 BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4,
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006186 "Please update the fixed PMCs in msrs_to_saved_all[]");
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006187
6188 perf_get_x86_pmu_capability(&x86_pmu);
Jim Mattsone2ada662019-08-21 11:20:04 -07006189
Xiaoyao Li6cbee2b2019-11-13 09:15:21 +08006190 num_msrs_to_save = 0;
6191 num_emulated_msrs = 0;
6192 num_msr_based_features = 0;
6193
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006194 for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) {
6195 if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006196 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006197
6198 /*
6199 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006200 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006201 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006202 switch (msrs_to_save_all[i]) {
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006203 case MSR_IA32_BNDCFGS:
Liran Alon503234b2018-09-14 03:25:53 +03006204 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006205 continue;
6206 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006207 case MSR_TSC_AUX:
Sean Christopherson36fa06f2021-05-04 10:17:26 -07006208 if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP) &&
6209 !kvm_cpu_cap_has(X86_FEATURE_RDPID))
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006210 continue;
6211 break;
Maxim Levitskyf4cfcd22020-05-23 19:14:55 +03006212 case MSR_IA32_UMWAIT_CONTROL:
6213 if (!kvm_cpu_cap_has(X86_FEATURE_WAITPKG))
6214 continue;
6215 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08006216 case MSR_IA32_RTIT_CTL:
6217 case MSR_IA32_RTIT_STATUS:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006218 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT))
Chao Pengbf8c55d2018-10-24 16:05:14 +08006219 continue;
6220 break;
6221 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006222 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006223 !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering))
6224 continue;
6225 break;
6226 case MSR_IA32_RTIT_OUTPUT_BASE:
6227 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006228 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006229 (!intel_pt_validate_hw_cap(PT_CAP_topa_output) &&
6230 !intel_pt_validate_hw_cap(PT_CAP_single_range_output)))
6231 continue;
6232 break;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006233 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006234 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006235 msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >=
Chao Pengbf8c55d2018-10-24 16:05:14 +08006236 intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2)
6237 continue;
6238 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006239 case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006240 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006241 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6242 continue;
6243 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006244 case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006245 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006246 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6247 continue;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006248 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006249 default:
6250 break;
6251 }
6252
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006253 msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i];
Carsten Ottebbd9b642007-10-30 18:44:21 +01006254 }
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006255
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006256 for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
Jason Baronb36464772021-01-14 22:27:56 -05006257 if (!static_call(kvm_x86_has_emulated_msr)(NULL, emulated_msrs_all[i]))
Tom Lendackybc226f02018-05-10 22:06:39 +02006258 continue;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006259
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006260 emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006261 }
Tom Lendacky801e4592018-02-21 13:39:51 -06006262
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006263 for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) {
Tom Lendacky801e4592018-02-21 13:39:51 -06006264 struct kvm_msr_entry msr;
6265
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006266 msr.index = msr_based_features_all[i];
Wanpeng Li66421c12018-02-28 14:03:30 +08006267 if (kvm_get_msr_feature(&msr))
Tom Lendacky801e4592018-02-21 13:39:51 -06006268 continue;
6269
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006270 msr_based_features[num_msr_based_features++] = msr_based_features_all[i];
Tom Lendacky801e4592018-02-21 13:39:51 -06006271 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006272}
6273
6274static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
6275 const void *v)
6276{
Avi Kivity70252a12010-01-19 12:51:22 +02006277 int handled = 0;
6278 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006279
Avi Kivity70252a12010-01-19 12:51:22 +02006280 do {
6281 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006282 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006283 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
6284 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006285 break;
6286 handled += n;
6287 addr += n;
6288 len -= n;
6289 v += n;
6290 } while (len);
6291
6292 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006293}
6294
6295static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
6296{
Avi Kivity70252a12010-01-19 12:51:22 +02006297 int handled = 0;
6298 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006299
Avi Kivity70252a12010-01-19 12:51:22 +02006300 do {
6301 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006302 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006303 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
6304 addr, n, v))
6305 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006306 break;
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006307 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v);
Avi Kivity70252a12010-01-19 12:51:22 +02006308 handled += n;
6309 addr += n;
6310 len -= n;
6311 v += n;
6312 } while (len);
6313
6314 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006315}
6316
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006317static void kvm_set_segment(struct kvm_vcpu *vcpu,
6318 struct kvm_segment *var, int seg)
6319{
Jason Baronb36464772021-01-14 22:27:56 -05006320 static_call(kvm_x86_set_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006321}
6322
6323void kvm_get_segment(struct kvm_vcpu *vcpu,
6324 struct kvm_segment *var, int seg)
6325{
Jason Baronb36464772021-01-14 22:27:56 -05006326 static_call(kvm_x86_get_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006327}
6328
Paolo Bonzini54987b72014-09-02 13:23:06 +02006329gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
6330 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006331{
6332 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006333
6334 BUG_ON(!mmu_is_nested(vcpu));
6335
6336 /* NPT walks are always user-walks */
6337 access |= PFERR_USER_MASK;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02006338 t_gpa = vcpu->arch.mmu->gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006339
6340 return t_gpa;
6341}
6342
Avi Kivityab9ae312010-11-22 17:53:26 +02006343gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
6344 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006345{
Jason Baronb36464772021-01-14 22:27:56 -05006346 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02006347 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006348}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006349EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_read);
Gleb Natapov1871c602010-02-10 14:21:32 +02006350
Avi Kivityab9ae312010-11-22 17:53:26 +02006351 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
6352 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006353{
Jason Baronb36464772021-01-14 22:27:56 -05006354 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006355 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02006356 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006357}
6358
Avi Kivityab9ae312010-11-22 17:53:26 +02006359gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
6360 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006361{
Jason Baronb36464772021-01-14 22:27:56 -05006362 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006363 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02006364 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006365}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006366EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_write);
Gleb Natapov1871c602010-02-10 14:21:32 +02006367
6368/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02006369gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
6370 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006371{
Avi Kivityab9ae312010-11-22 17:53:26 +02006372 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006373}
6374
6375static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6376 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006377 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006378{
6379 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006380 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006381
6382 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02006383 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02006384 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006385 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02006386 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006387 int ret;
6388
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006389 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006390 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006391 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
6392 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006393 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006394 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006395 goto out;
6396 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006397
Izik Eidus77c20022008-12-29 01:42:19 +02006398 bytes -= toread;
6399 data += toread;
6400 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006401 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006402out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006403 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006404}
Izik Eidus77c20022008-12-29 01:42:19 +02006405
Gleb Natapov1871c602010-02-10 14:21:32 +02006406/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03006407static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
6408 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006409 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006410{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006411 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Jason Baronb36464772021-01-14 22:27:56 -05006412 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006413 unsigned offset;
6414 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006415
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006416 /* Inline kvm_read_guest_virt_helper for speed. */
6417 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
6418 exception);
6419 if (unlikely(gpa == UNMAPPED_GVA))
6420 return X86EMUL_PROPAGATE_FAULT;
6421
6422 offset = addr & (PAGE_SIZE-1);
6423 if (WARN_ON(offset + bytes > PAGE_SIZE))
6424 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006425 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
6426 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006427 if (unlikely(ret < 0))
6428 return X86EMUL_IO_NEEDED;
6429
6430 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02006431}
6432
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006433int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006434 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006435 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006436{
Jason Baronb36464772021-01-14 22:27:56 -05006437 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006438
Paolo Bonzini353c0952019-01-29 18:41:16 +01006439 /*
6440 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
6441 * is returned, but our callers are not ready for that and they blindly
6442 * call kvm_inject_page_fault. Ensure that they at least do not leak
6443 * uninitialized kernel stack memory into cr2 and error code.
6444 */
6445 memset(exception, 0, sizeof(*exception));
Gleb Natapov1871c602010-02-10 14:21:32 +02006446 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006447 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006448}
Nadav Har'El064aea72011-05-25 23:04:56 +03006449EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02006450
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006451static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
6452 gva_t addr, void *val, unsigned int bytes,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006453 struct x86_exception *exception, bool system)
Gleb Natapov1871c602010-02-10 14:21:32 +02006454{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006455 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006456 u32 access = 0;
6457
Jason Baronb36464772021-01-14 22:27:56 -05006458 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006459 access |= PFERR_USER_MASK;
6460
6461 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006462}
6463
Radim Krčmář7a036a62015-10-30 16:36:24 +01006464static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
6465 unsigned long addr, void *val, unsigned int bytes)
6466{
6467 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6468 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
6469
6470 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
6471}
6472
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006473static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6474 struct kvm_vcpu *vcpu, u32 access,
6475 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02006476{
6477 void *data = val;
6478 int r = X86EMUL_CONTINUE;
6479
6480 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02006481 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006482 access,
Avi Kivityab9ae312010-11-22 17:53:26 +02006483 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02006484 unsigned offset = addr & (PAGE_SIZE-1);
6485 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
6486 int ret;
6487
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006488 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006489 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006490 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02006491 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006492 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02006493 goto out;
6494 }
6495
6496 bytes -= towrite;
6497 data += towrite;
6498 addr += towrite;
6499 }
6500out:
6501 return r;
6502}
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006503
6504static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006505 unsigned int bytes, struct x86_exception *exception,
6506 bool system)
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006507{
6508 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006509 u32 access = PFERR_WRITE_MASK;
6510
Jason Baronb36464772021-01-14 22:27:56 -05006511 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006512 access |= PFERR_USER_MASK;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006513
6514 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006515 access, exception);
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006516}
6517
6518int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val,
6519 unsigned int bytes, struct x86_exception *exception)
6520{
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006521 /* kvm_write_guest_virt_system can pull in tons of pages. */
6522 vcpu->arch.l1tf_flush_l1d = true;
6523
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006524 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
6525 PFERR_WRITE_MASK, exception);
6526}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03006527EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02006528
Wanpeng Li082d06e2018-04-03 16:28:48 -07006529int handle_ud(struct kvm_vcpu *vcpu)
6530{
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006531 static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX };
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006532 int emul_type = EMULTYPE_TRAP_UD;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006533 char sig[5]; /* ud2; .ascii "kvm" */
6534 struct x86_exception e;
Wanpeng Li082d06e2018-04-03 16:28:48 -07006535
Jason Baronb36464772021-01-14 22:27:56 -05006536 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, NULL, 0)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07006537 return 1;
6538
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006539 if (force_emulation_prefix &&
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006540 kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu),
6541 sig, sizeof(sig), &e) == 0 &&
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006542 memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) {
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006543 kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig));
Sean Christophersonb4000602019-08-27 14:40:32 -07006544 emul_type = EMULTYPE_TRAP_UD_FORCED;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006545 }
6546
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006547 return kvm_emulate_instruction(vcpu, emul_type);
Wanpeng Li082d06e2018-04-03 16:28:48 -07006548}
6549EXPORT_SYMBOL_GPL(handle_ud);
6550
Tom Lendacky0f89b202016-12-14 14:59:23 -05006551static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6552 gpa_t gpa, bool write)
6553{
6554 /* For APIC access vmexit */
6555 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6556 return 1;
6557
6558 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
6559 trace_vcpu_match_mmio(gva, gpa, write, true);
6560 return 1;
6561 }
6562
6563 return 0;
6564}
6565
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006566static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6567 gpa_t *gpa, struct x86_exception *exception,
6568 bool write)
6569{
Jason Baronb36464772021-01-14 22:27:56 -05006570 u32 access = ((static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0)
Avi Kivity97d64b72012-09-12 14:52:00 +03006571 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006572
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08006573 /*
6574 * currently PKRU is only applied to ept enabled guest so
6575 * there is no pkey in EPT page table for L1 guest or EPT
6576 * shadow page table for L2 guest.
6577 */
Sean Christopherson908b7d42021-07-13 09:33:04 -07006578 if (vcpu_match_mmio_gva(vcpu, gva) && (!is_paging(vcpu) ||
6579 !permission_fault(vcpu, vcpu->arch.walk_mmu,
6580 vcpu->arch.mmio_access, 0, access))) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006581 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
6582 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08006583 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006584 return 1;
6585 }
6586
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006587 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
6588
6589 if (*gpa == UNMAPPED_GVA)
6590 return -1;
6591
Tom Lendacky0f89b202016-12-14 14:59:23 -05006592 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006593}
6594
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006595int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006596 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02006597{
6598 int ret;
6599
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006600 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006601 if (ret < 0)
6602 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006603 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006604 return 1;
6605}
6606
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006607struct read_write_emulator_ops {
6608 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
6609 int bytes);
6610 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
6611 void *val, int bytes);
6612 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6613 int bytes, void *val);
6614 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6615 void *val, int bytes);
6616 bool write;
6617};
6618
6619static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
6620{
6621 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006622 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006623 vcpu->mmio_fragments[0].gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006624 vcpu->mmio_read_completed = 0;
6625 return 1;
6626 }
6627
6628 return 0;
6629}
6630
6631static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6632 void *val, int bytes)
6633{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006634 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006635}
6636
6637static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6638 void *val, int bytes)
6639{
6640 return emulator_write_phys(vcpu, gpa, val, bytes);
6641}
6642
6643static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
6644{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006645 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006646 return vcpu_mmio_write(vcpu, gpa, bytes, val);
6647}
6648
6649static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6650 void *val, int bytes)
6651{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006652 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006653 return X86EMUL_IO_NEEDED;
6654}
6655
6656static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6657 void *val, int bytes)
6658{
Avi Kivityf78146b2012-04-18 19:22:47 +03006659 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
6660
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006661 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006662 return X86EMUL_CONTINUE;
6663}
6664
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006665static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006666 .read_write_prepare = read_prepare,
6667 .read_write_emulate = read_emulate,
6668 .read_write_mmio = vcpu_mmio_read,
6669 .read_write_exit_mmio = read_exit_mmio,
6670};
6671
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006672static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006673 .read_write_emulate = write_emulate,
6674 .read_write_mmio = write_mmio,
6675 .read_write_exit_mmio = write_exit_mmio,
6676 .write = true,
6677};
6678
Xiao Guangrong22388a32011-07-13 14:32:31 +08006679static int emulator_read_write_onepage(unsigned long addr, void *val,
6680 unsigned int bytes,
6681 struct x86_exception *exception,
6682 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006683 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006684{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006685 gpa_t gpa;
6686 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006687 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03006688 struct kvm_mmio_fragment *frag;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006689 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006690
6691 /*
6692 * If the exit was due to a NPF we may already have a GPA.
6693 * If the GPA is present, use it to avoid the GVA to GPA table walk.
6694 * Note, this cannot be used on string operations since string
6695 * operation using rep will only have the initial GPA from the NPF
6696 * occurred.
6697 */
Sean Christopherson744e6992020-02-18 15:03:09 -08006698 if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) &&
6699 (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) {
6700 gpa = ctxt->gpa_val;
Brijesh Singh618232e2017-08-17 18:36:57 +02006701 ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write);
6702 } else {
6703 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
6704 if (ret < 0)
6705 return X86EMUL_PROPAGATE_FAULT;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006706 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006707
Brijesh Singh618232e2017-08-17 18:36:57 +02006708 if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01006709 return X86EMUL_CONTINUE;
6710
Carsten Ottebbd9b642007-10-30 18:44:21 +01006711 /*
6712 * Is this MMIO handled locally?
6713 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08006714 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02006715 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006716 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006717
Avi Kivity70252a12010-01-19 12:51:22 +02006718 gpa += handled;
6719 bytes -= handled;
6720 val += handled;
6721
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006722 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
6723 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
6724 frag->gpa = gpa;
6725 frag->data = val;
6726 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03006727 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006728}
6729
Xiubo Li52eb5a62015-03-13 17:39:45 +08006730static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
6731 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006732 void *val, unsigned int bytes,
6733 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006734 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006735{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006736 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03006737 gpa_t gpa;
6738 int rc;
6739
6740 if (ops->read_write_prepare &&
6741 ops->read_write_prepare(vcpu, val, bytes))
6742 return X86EMUL_CONTINUE;
6743
6744 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006745
Carsten Ottebbd9b642007-10-30 18:44:21 +01006746 /* Crossing a page boundary? */
6747 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03006748 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006749
6750 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006751 rc = emulator_read_write_onepage(addr, val, now, exception,
6752 vcpu, ops);
6753
Carsten Ottebbd9b642007-10-30 18:44:21 +01006754 if (rc != X86EMUL_CONTINUE)
6755 return rc;
6756 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02006757 if (ctxt->mode != X86EMUL_MODE_PROT64)
6758 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006759 val += now;
6760 bytes -= now;
6761 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006762
Avi Kivityf78146b2012-04-18 19:22:47 +03006763 rc = emulator_read_write_onepage(addr, val, bytes, exception,
6764 vcpu, ops);
6765 if (rc != X86EMUL_CONTINUE)
6766 return rc;
6767
6768 if (!vcpu->mmio_nr_fragments)
6769 return rc;
6770
6771 gpa = vcpu->mmio_fragments[0].gpa;
6772
6773 vcpu->mmio_needed = 1;
6774 vcpu->mmio_cur_fragment = 0;
6775
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006776 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03006777 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
6778 vcpu->run->exit_reason = KVM_EXIT_MMIO;
6779 vcpu->run->mmio.phys_addr = gpa;
6780
6781 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08006782}
6783
6784static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
6785 unsigned long addr,
6786 void *val,
6787 unsigned int bytes,
6788 struct x86_exception *exception)
6789{
6790 return emulator_read_write(ctxt, addr, val, bytes,
6791 exception, &read_emultor);
6792}
6793
Xiubo Li52eb5a62015-03-13 17:39:45 +08006794static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006795 unsigned long addr,
6796 const void *val,
6797 unsigned int bytes,
6798 struct x86_exception *exception)
6799{
6800 return emulator_read_write(ctxt, addr, (void *)val, bytes,
6801 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006802}
Carsten Ottebbd9b642007-10-30 18:44:21 +01006803
Avi Kivitydaea3e72010-03-15 13:59:54 +02006804#define CMPXCHG_TYPE(t, ptr, old, new) \
6805 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
6806
6807#ifdef CONFIG_X86_64
6808# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
6809#else
6810# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01006811 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02006812#endif
6813
Avi Kivity0f65dd72011-04-20 13:37:53 +03006814static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
6815 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01006816 const void *old,
6817 const void *new,
6818 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006819 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006820{
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006821 struct kvm_host_map map;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006822 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02006823 u64 page_line_mask;
Avi Kivitydaea3e72010-03-15 13:59:54 +02006824 gpa_t gpa;
Avi Kivitydaea3e72010-03-15 13:59:54 +02006825 char *kaddr;
6826 bool exchanged;
6827
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006828 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02006829 if (bytes > 8 || (bytes & (bytes - 1)))
6830 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006831
Avi Kivitydaea3e72010-03-15 13:59:54 +02006832 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006833
Avi Kivitydaea3e72010-03-15 13:59:54 +02006834 if (gpa == UNMAPPED_GVA ||
6835 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6836 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006837
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02006838 /*
6839 * Emulate the atomic as a straight write to avoid #AC if SLD is
6840 * enabled in the host and the access splits a cache line.
6841 */
6842 if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
6843 page_line_mask = ~(cache_line_size() - 1);
6844 else
6845 page_line_mask = PAGE_MASK;
6846
6847 if (((gpa + bytes - 1) & page_line_mask) != (gpa & page_line_mask))
Avi Kivitydaea3e72010-03-15 13:59:54 +02006848 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006849
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006850 if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08006851 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02006852
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006853 kaddr = map.hva + offset_in_page(gpa);
6854
Avi Kivitydaea3e72010-03-15 13:59:54 +02006855 switch (bytes) {
6856 case 1:
6857 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
6858 break;
6859 case 2:
6860 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
6861 break;
6862 case 4:
6863 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
6864 break;
6865 case 8:
6866 exchanged = CMPXCHG64(kaddr, old, new);
6867 break;
6868 default:
6869 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006870 }
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006871
6872 kvm_vcpu_unmap(vcpu, &map, true);
Avi Kivitydaea3e72010-03-15 13:59:54 +02006873
6874 if (!exchanged)
6875 return X86EMUL_CMPXCHG_FAILED;
6876
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006877 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03006878
6879 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02006880
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006881emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02006882 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006883
Avi Kivity0f65dd72011-04-20 13:37:53 +03006884 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006885}
6886
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006887static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
6888{
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006889 int r = 0, i;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006890
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006891 for (i = 0; i < vcpu->arch.pio.count; i++) {
6892 if (vcpu->arch.pio.in)
6893 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
6894 vcpu->arch.pio.size, pd);
6895 else
6896 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
6897 vcpu->arch.pio.port, vcpu->arch.pio.size,
6898 pd);
6899 if (r)
6900 break;
6901 pd += vcpu->arch.pio.size;
6902 }
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006903 return r;
6904}
6905
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006906static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
6907 unsigned short port, void *val,
6908 unsigned int count, bool in)
6909{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006910 vcpu->arch.pio.port = port;
6911 vcpu->arch.pio.in = in;
6912 vcpu->arch.pio.count = count;
6913 vcpu->arch.pio.size = size;
6914
6915 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
6916 vcpu->arch.pio.count = 0;
6917 return 1;
6918 }
6919
6920 vcpu->run->exit_reason = KVM_EXIT_IO;
6921 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
6922 vcpu->run->io.size = size;
6923 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
6924 vcpu->run->io.count = count;
6925 vcpu->run->io.port = port;
6926
6927 return 0;
6928}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006929
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006930static int emulator_pio_in(struct kvm_vcpu *vcpu, int size,
6931 unsigned short port, void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006932{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006933 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03006934
Gleb Natapov79729952010-03-18 15:20:24 +02006935 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006936 goto data_avail;
6937
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006938 memset(vcpu->arch.pio_data, 0, size * count);
6939
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006940 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
6941 if (ret) {
6942data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006943 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02006944 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02006945 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006946 return 1;
6947 }
6948
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006949 return 0;
6950}
6951
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006952static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
6953 int size, unsigned short port, void *val,
6954 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006955{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006956 return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count);
Avi Kivityca1d4a92011-04-20 13:37:53 +03006957
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006958}
6959
6960static int emulator_pio_out(struct kvm_vcpu *vcpu, int size,
6961 unsigned short port, const void *val,
6962 unsigned int count)
6963{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006964 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02006965 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006966 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006967}
6968
Carsten Ottebbd9b642007-10-30 18:44:21 +01006969static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
6970 int size, unsigned short port,
6971 const void *val, unsigned int count)
6972{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006973 return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006974}
6975
6976static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
6977{
Jason Baronb36464772021-01-14 22:27:56 -05006978 return static_call(kvm_x86_get_segment_base)(vcpu, seg);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006979}
6980
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006981static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006982{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006983 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006984}
6985
Jiang Biaoae6a2372016-11-07 08:54:51 +08006986static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006987{
6988 if (!need_emulate_wbinvd(vcpu))
6989 return X86EMUL_CONTINUE;
6990
Jason Baronb36464772021-01-14 22:27:56 -05006991 if (static_call(kvm_x86_has_wbinvd_exit)()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01006992 int cpu = get_cpu();
6993
6994 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Wanpeng Lic2162e12021-03-12 10:45:51 +08006995 on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006996 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01006997 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006998 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01006999 } else
7000 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007001 return X86EMUL_CONTINUE;
7002}
Joel Schopp5cb56052015-03-02 13:43:31 -06007003
7004int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
7005{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007006 kvm_emulate_wbinvd_noskip(vcpu);
7007 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06007008}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007009EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
7010
Joel Schopp5cb56052015-03-02 13:43:31 -06007011
7012
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007013static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
7014{
Joel Schopp5cb56052015-03-02 13:43:31 -06007015 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007016}
7017
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007018static void emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
7019 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007020{
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007021 kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007022}
7023
Xiubo Li52eb5a62015-03-13 17:39:45 +08007024static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
7025 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007026{
Gleb Natapov338dbc92010-04-28 19:15:32 +03007027
Paolo Bonzini996ff542020-12-14 07:49:54 -05007028 return kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007029}
7030
Gleb Natapov52a46612010-03-18 15:20:03 +02007031static u64 mk_cr_64(u64 curr_cr, u32 new_val)
7032{
7033 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
7034}
7035
Avi Kivity717746e2011-04-20 13:37:53 +03007036static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02007037{
Avi Kivity717746e2011-04-20 13:37:53 +03007038 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02007039 unsigned long value;
7040
7041 switch (cr) {
7042 case 0:
7043 value = kvm_read_cr0(vcpu);
7044 break;
7045 case 2:
7046 value = vcpu->arch.cr2;
7047 break;
7048 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02007049 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02007050 break;
7051 case 4:
7052 value = kvm_read_cr4(vcpu);
7053 break;
7054 case 8:
7055 value = kvm_get_cr8(vcpu);
7056 break;
7057 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007058 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02007059 return 0;
7060 }
7061
7062 return value;
7063}
7064
Avi Kivity717746e2011-04-20 13:37:53 +03007065static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02007066{
Avi Kivity717746e2011-04-20 13:37:53 +03007067 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03007068 int res = 0;
7069
Gleb Natapov52a46612010-03-18 15:20:03 +02007070 switch (cr) {
7071 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03007072 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007073 break;
7074 case 2:
7075 vcpu->arch.cr2 = val;
7076 break;
7077 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03007078 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007079 break;
7080 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03007081 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007082 break;
7083 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007084 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007085 break;
7086 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007087 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03007088 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02007089 }
Gleb Natapov0f122442010-04-28 19:15:31 +03007090
7091 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02007092}
7093
Avi Kivity717746e2011-04-20 13:37:53 +03007094static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02007095{
Jason Baronb36464772021-01-14 22:27:56 -05007096 return static_call(kvm_x86_get_cpl)(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02007097}
7098
Avi Kivity4bff1e862011-04-20 13:37:53 +03007099static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007100{
Jason Baronb36464772021-01-14 22:27:56 -05007101 static_call(kvm_x86_get_gdt)(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007102}
7103
Avi Kivity4bff1e862011-04-20 13:37:53 +03007104static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007105{
Jason Baronb36464772021-01-14 22:27:56 -05007106 static_call(kvm_x86_get_idt)(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007107}
7108
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007109static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7110{
Jason Baronb36464772021-01-14 22:27:56 -05007111 static_call(kvm_x86_set_gdt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007112}
7113
7114static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7115{
Jason Baronb36464772021-01-14 22:27:56 -05007116 static_call(kvm_x86_set_idt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007117}
7118
Avi Kivity4bff1e862011-04-20 13:37:53 +03007119static unsigned long emulator_get_cached_segment_base(
7120 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03007121{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007122 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03007123}
7124
Avi Kivity1aa36612011-04-27 13:20:30 +03007125static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
7126 struct desc_struct *desc, u32 *base3,
7127 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007128{
7129 struct kvm_segment var;
7130
Avi Kivity4bff1e862011-04-20 13:37:53 +03007131 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03007132 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007133
Gleb Natapov378a8b02013-01-21 15:36:48 +02007134 if (var.unusable) {
7135 memset(desc, 0, sizeof(*desc));
Radim Krčmářf0367ee2017-05-18 19:37:30 +02007136 if (base3)
7137 *base3 = 0;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007138 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02007139 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007140
7141 if (var.g)
7142 var.limit >>= 12;
7143 set_desc_limit(desc, var.limit);
7144 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02007145#ifdef CONFIG_X86_64
7146 if (base3)
7147 *base3 = var.base >> 32;
7148#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007149 desc->type = var.type;
7150 desc->s = var.s;
7151 desc->dpl = var.dpl;
7152 desc->p = var.present;
7153 desc->avl = var.avl;
7154 desc->l = var.l;
7155 desc->d = var.db;
7156 desc->g = var.g;
7157
7158 return true;
7159}
7160
Avi Kivity1aa36612011-04-27 13:20:30 +03007161static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
7162 struct desc_struct *desc, u32 base3,
7163 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007164{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007165 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007166 struct kvm_segment var;
7167
Avi Kivity1aa36612011-04-27 13:20:30 +03007168 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007169 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02007170#ifdef CONFIG_X86_64
7171 var.base |= ((u64)base3) << 32;
7172#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007173 var.limit = get_desc_limit(desc);
7174 if (desc->g)
7175 var.limit = (var.limit << 12) | 0xfff;
7176 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007177 var.dpl = desc->dpl;
7178 var.db = desc->d;
7179 var.s = desc->s;
7180 var.l = desc->l;
7181 var.g = desc->g;
7182 var.avl = desc->avl;
7183 var.present = desc->p;
7184 var.unusable = !var.present;
7185 var.padding = 0;
7186
7187 kvm_set_segment(vcpu, &var, seg);
7188 return;
7189}
7190
Avi Kivity717746e2011-04-20 13:37:53 +03007191static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
7192 u32 msr_index, u64 *pdata)
7193{
Alexander Graf1ae09952020-09-25 16:34:16 +02007194 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7195 int r;
7196
7197 r = kvm_get_msr(vcpu, msr_index, pdata);
7198
7199 if (r && kvm_get_msr_user_space(vcpu, msr_index, r)) {
7200 /* Bounce to user space */
7201 return X86EMUL_IO_NEEDED;
7202 }
7203
7204 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007205}
7206
7207static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
7208 u32 msr_index, u64 data)
7209{
Alexander Graf1ae09952020-09-25 16:34:16 +02007210 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7211 int r;
7212
7213 r = kvm_set_msr(vcpu, msr_index, data);
7214
7215 if (r && kvm_set_msr_user_space(vcpu, msr_index, data, r)) {
7216 /* Bounce to user space */
7217 return X86EMUL_IO_NEEDED;
7218 }
7219
7220 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007221}
7222
Paolo Bonzini64d60672015-05-07 11:36:11 +02007223static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
7224{
7225 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7226
7227 return vcpu->arch.smbase;
7228}
7229
7230static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
7231{
7232 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7233
7234 vcpu->arch.smbase = smbase;
7235}
7236
Nadav Amit67f4d422014-06-02 18:34:09 +03007237static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
7238 u32 pmc)
7239{
Like Xu98ff80f2019-10-27 18:52:40 +08007240 return kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03007241}
7242
Avi Kivity222d21a2011-11-10 14:57:30 +02007243static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
7244 u32 pmc, u64 *pdata)
7245{
Wei Huangc6702c92015-06-19 13:44:45 +02007246 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02007247}
7248
Avi Kivity6c3287f2011-04-20 15:43:05 +03007249static void emulator_halt(struct x86_emulate_ctxt *ctxt)
7250{
7251 emul_to_vcpu(ctxt)->arch.halt_request = 1;
7252}
7253
Avi Kivity29535382011-04-20 13:37:53 +03007254static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007255 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007256 enum x86_intercept_stage stage)
7257{
Jason Baronb36464772021-01-14 22:27:56 -05007258 return static_call(kvm_x86_check_intercept)(emul_to_vcpu(ctxt), info, stage,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007259 &ctxt->exception);
Avi Kivityc4f035c2011-04-04 12:39:22 +02007260}
7261
Yu Zhange911eb32017-08-24 20:27:52 +08007262static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Sean Christophersonf91af512020-03-04 17:34:37 -08007263 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx,
7264 bool exact_only)
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007265{
Sean Christophersonf91af512020-03-04 17:34:37 -08007266 return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007267}
7268
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007269static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt)
7270{
7271 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM);
7272}
7273
7274static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt)
7275{
7276 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE);
7277}
7278
7279static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt)
7280{
7281 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR);
7282}
7283
Avi Kivitydd856ef2012-08-27 23:46:17 +03007284static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
7285{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007286 return kvm_register_read_raw(emul_to_vcpu(ctxt), reg);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007287}
7288
7289static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
7290{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007291 kvm_register_write_raw(emul_to_vcpu(ctxt), reg, val);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007292}
7293
Nadav Amit801806d2015-01-26 09:32:23 +02007294static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
7295{
Jason Baronb36464772021-01-14 22:27:56 -05007296 static_call(kvm_x86_set_nmi_mask)(emul_to_vcpu(ctxt), masked);
Nadav Amit801806d2015-01-26 09:32:23 +02007297}
7298
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007299static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt)
7300{
7301 return emul_to_vcpu(ctxt)->arch.hflags;
7302}
7303
Sean Christophersonedce4652021-06-09 11:56:13 -07007304static void emulator_exiting_smm(struct x86_emulate_ctxt *ctxt)
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007305{
Sean Christopherson78fcb2c2021-06-09 11:56:11 -07007306 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7307
Sean Christophersondc872752021-06-09 11:56:15 -07007308 kvm_smm_changed(vcpu, false);
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007309}
7310
Sean Christophersonecc513e2021-06-09 11:56:19 -07007311static int emulator_leave_smm(struct x86_emulate_ctxt *ctxt,
Sean Christophersoned193212019-04-02 08:03:09 -07007312 const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007313{
Sean Christophersonecc513e2021-06-09 11:56:19 -07007314 return static_call(kvm_x86_leave_smm)(emul_to_vcpu(ctxt), smstate);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007315}
7316
Sean Christopherson25b17222021-06-09 11:56:12 -07007317static void emulator_triple_fault(struct x86_emulate_ctxt *ctxt)
7318{
7319 kvm_make_request(KVM_REQ_TRIPLE_FAULT, emul_to_vcpu(ctxt));
7320}
7321
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007322static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr)
7323{
7324 return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr);
7325}
7326
Mathias Krause0225fb52012-08-30 01:30:16 +02007327static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03007328 .read_gpr = emulator_read_gpr,
7329 .write_gpr = emulator_write_gpr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02007330 .read_std = emulator_read_std,
7331 .write_std = emulator_write_std,
Radim Krčmář7a036a62015-10-30 16:36:24 +01007332 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02007333 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007334 .read_emulated = emulator_read_emulated,
7335 .write_emulated = emulator_write_emulated,
7336 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007337 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007338 .pio_in_emulated = emulator_pio_in_emulated,
7339 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03007340 .get_segment = emulator_get_segment,
7341 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03007342 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007343 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007344 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007345 .set_gdt = emulator_set_gdt,
7346 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02007347 .get_cr = emulator_get_cr,
7348 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02007349 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03007350 .get_dr = emulator_get_dr,
7351 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02007352 .get_smbase = emulator_get_smbase,
7353 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03007354 .set_msr = emulator_set_msr,
7355 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03007356 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02007357 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03007358 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007359 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03007360 .fix_hypercall = emulator_fix_hypercall,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007361 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007362 .get_cpuid = emulator_get_cpuid,
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007363 .guest_has_long_mode = emulator_guest_has_long_mode,
7364 .guest_has_movbe = emulator_guest_has_movbe,
7365 .guest_has_fxsr = emulator_guest_has_fxsr,
Nadav Amit801806d2015-01-26 09:32:23 +02007366 .set_nmi_mask = emulator_set_nmi_mask,
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007367 .get_hflags = emulator_get_hflags,
Sean Christophersonedce4652021-06-09 11:56:13 -07007368 .exiting_smm = emulator_exiting_smm,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007369 .leave_smm = emulator_leave_smm,
Sean Christopherson25b17222021-06-09 11:56:12 -07007370 .triple_fault = emulator_triple_fault,
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007371 .set_xcr = emulator_set_xcr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007372};
7373
Gleb Natapov95cb2292010-04-28 19:15:43 +03007374static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
7375{
Jason Baronb36464772021-01-14 22:27:56 -05007376 u32 int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03007377 /*
7378 * an sti; sti; sequence only disable interrupts for the first
7379 * instruction. So, if the last instruction, be it emulated or
7380 * not, left the system with the INT_STI flag enabled, it
7381 * means that the last instruction is an sti. We should not
7382 * leave the flag on in this case. The same goes for mov ss
7383 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02007384 if (int_shadow & mask)
7385 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007386 if (unlikely(int_shadow || mask)) {
Jason Baronb36464772021-01-14 22:27:56 -05007387 static_call(kvm_x86_set_interrupt_shadow)(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007388 if (!mask)
7389 kvm_make_request(KVM_REQ_EVENT, vcpu);
7390 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03007391}
7392
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007393static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03007394{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007395 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02007396 if (ctxt->exception.vector == PF_VECTOR)
Sean Christopherson53b3d8e2020-03-20 14:28:01 -07007397 return kvm_inject_emulated_page_fault(vcpu, &ctxt->exception);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007398
7399 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02007400 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
7401 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03007402 else
Avi Kivityda9cb572010-11-22 17:53:21 +02007403 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007404 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03007405}
7406
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007407static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu)
7408{
7409 struct x86_emulate_ctxt *ctxt;
7410
7411 ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT);
7412 if (!ctxt) {
7413 pr_err("kvm: failed to allocate vcpu's emulator\n");
7414 return NULL;
7415 }
7416
7417 ctxt->vcpu = vcpu;
7418 ctxt->ops = &emulate_ops;
7419 vcpu->arch.emulate_ctxt = ctxt;
7420
7421 return ctxt;
7422}
7423
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007424static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
7425{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007426 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007427 int cs_db, cs_l;
7428
Jason Baronb36464772021-01-14 22:27:56 -05007429 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007430
Sean Christopherson744e6992020-02-18 15:03:09 -08007431 ctxt->gpa_available = false;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007432 ctxt->eflags = kvm_get_rflags(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007433 ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0;
7434
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007435 ctxt->eip = kvm_rip_read(vcpu);
7436 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
7437 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03007438 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007439 cs_db ? X86EMUL_MODE_PROT32 :
7440 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02007441 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007442 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
7443 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007444
Wanpeng Lida6393c2021-05-27 17:01:36 -07007445 ctxt->interruptibility = 0;
7446 ctxt->have_exception = false;
7447 ctxt->exception.vector = -1;
7448 ctxt->perm_ok = false;
7449
Avi Kivitydd856ef2012-08-27 23:46:17 +03007450 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007451 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007452}
7453
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007454void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02007455{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007456 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02007457 int ret;
7458
7459 init_emulate_ctxt(vcpu);
7460
Avi Kivity9dac77f2011-06-01 15:34:25 +03007461 ctxt->op_bytes = 2;
7462 ctxt->ad_bytes = 2;
7463 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007464 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02007465
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007466 if (ret != X86EMUL_CONTINUE) {
7467 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7468 } else {
7469 ctxt->eip = ctxt->_eip;
7470 kvm_rip_write(vcpu, ctxt->eip);
7471 kvm_set_rflags(vcpu, ctxt->eflags);
7472 }
Mohammed Gamal63995652010-09-19 14:34:06 +02007473}
7474EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
7475
Aaron Lewis19238e72021-05-10 07:48:33 -07007476static void prepare_emulation_failure_exit(struct kvm_vcpu *vcpu)
7477{
7478 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7479 u32 insn_size = ctxt->fetch.end - ctxt->fetch.data;
7480 struct kvm_run *run = vcpu->run;
7481
7482 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7483 run->emulation_failure.suberror = KVM_INTERNAL_ERROR_EMULATION;
7484 run->emulation_failure.ndata = 0;
7485 run->emulation_failure.flags = 0;
7486
7487 if (insn_size) {
7488 run->emulation_failure.ndata = 3;
7489 run->emulation_failure.flags |=
7490 KVM_INTERNAL_ERROR_EMULATION_FLAG_INSTRUCTION_BYTES;
7491 run->emulation_failure.insn_size = insn_size;
7492 memset(run->emulation_failure.insn_bytes, 0x90,
7493 sizeof(run->emulation_failure.insn_bytes));
7494 memcpy(run->emulation_failure.insn_bytes,
7495 ctxt->fetch.data, insn_size);
7496 }
7497}
7498
Liran Alone2366172018-03-12 13:12:49 +02007499static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007500{
Aaron Lewis19238e72021-05-10 07:48:33 -07007501 struct kvm *kvm = vcpu->kvm;
7502
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007503 ++vcpu->stat.insn_emulation_fail;
7504 trace_kvm_emulate_insn_failed(vcpu);
Liran Alone2366172018-03-12 13:12:49 +02007505
Sean Christopherson42cbf062019-08-27 14:40:31 -07007506 if (emulation_type & EMULTYPE_VMWARE_GP) {
7507 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007508 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007509 }
Liran Alone2366172018-03-12 13:12:49 +02007510
Aaron Lewis19238e72021-05-10 07:48:33 -07007511 if (kvm->arch.exit_on_emulation_error ||
7512 (emulation_type & EMULTYPE_SKIP)) {
7513 prepare_emulation_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007514 return 0;
Sean Christopherson738fece2019-08-27 14:40:34 -07007515 }
7516
Sean Christopherson22da61c2019-08-27 14:40:28 -07007517 kvm_queue_exception(vcpu, UD_VECTOR);
7518
Jason Baronb36464772021-01-14 22:27:56 -05007519 if (!is_guest_mode(vcpu) && static_call(kvm_x86_get_cpl)(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007520 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7521 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7522 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007523 return 0;
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007524 }
Liran Alone2366172018-03-12 13:12:49 +02007525
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007526 return 1;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007527}
7528
Sean Christopherson736c2912019-12-06 15:57:14 -08007529static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007530 bool write_fault_to_shadow_pgtable,
7531 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03007532{
Sean Christopherson736c2912019-12-06 15:57:14 -08007533 gpa_t gpa = cr2_or_gpa;
Dan Williamsba049e92016-01-15 16:56:11 -08007534 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007535
Sean Christopherson92daa482020-02-18 15:03:08 -08007536 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Gleb Natapov991eebf2013-04-11 12:10:51 +03007537 return false;
7538
Sean Christopherson92daa482020-02-18 15:03:08 -08007539 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7540 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007541 return false;
7542
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007543 if (!vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007544 /*
7545 * Write permission should be allowed since only
7546 * write access need to be emulated.
7547 */
Sean Christopherson736c2912019-12-06 15:57:14 -08007548 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03007549
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007550 /*
7551 * If the mapping is invalid in guest, let cpu retry
7552 * it to generate fault.
7553 */
7554 if (gpa == UNMAPPED_GVA)
7555 return true;
7556 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007557
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007558 /*
7559 * Do not retry the unhandleable instruction if it faults on the
7560 * readonly host memory, otherwise it will goto a infinite loop:
7561 * retry instruction -> write #PF -> emulation fail -> retry
7562 * instruction -> ...
7563 */
7564 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007565
7566 /*
7567 * If the instruction failed on the error pfn, it can not be fixed,
7568 * report the error to userspace.
7569 */
7570 if (is_error_noslot_pfn(pfn))
7571 return false;
7572
7573 kvm_release_pfn_clean(pfn);
7574
7575 /* The instructions are well-emulated on direct mmu. */
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007576 if (vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007577 unsigned int indirect_shadow_pages;
7578
Ben Gardon531810c2021-02-02 10:57:24 -08007579 write_lock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007580 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
Ben Gardon531810c2021-02-02 10:57:24 -08007581 write_unlock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007582
7583 if (indirect_shadow_pages)
7584 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
7585
Gleb Natapova6f177e2010-07-08 12:41:12 +03007586 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007587 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007588
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007589 /*
7590 * if emulation was due to access to shadowed page table
7591 * and it failed try to unshadow page and re-enter the
7592 * guest to let CPU execute the instruction.
7593 */
7594 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007595
7596 /*
7597 * If the access faults on its page table, it can not
7598 * be fixed by unprotecting shadow page and it should
7599 * be reported to userspace.
7600 */
7601 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007602}
7603
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007604static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
Sean Christopherson736c2912019-12-06 15:57:14 -08007605 gpa_t cr2_or_gpa, int emulation_type)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007606{
7607 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christopherson736c2912019-12-06 15:57:14 -08007608 unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007609
7610 last_retry_eip = vcpu->arch.last_retry_eip;
7611 last_retry_addr = vcpu->arch.last_retry_addr;
7612
7613 /*
7614 * If the emulation is caused by #PF and it is non-page_table
7615 * writing instruction, it means the VM-EXIT is caused by shadow
7616 * page protected, we can zap the shadow page and retry this
7617 * instruction directly.
7618 *
7619 * Note: if the guest uses a non-page-table modifying instruction
7620 * on the PDE that points to the instruction, then we will unmap
7621 * the instruction and go to an infinite loop. So, we cache the
7622 * last retried eip and the last fault address, if we meet the eip
7623 * and the address again, we can break out of the potential infinite
7624 * loop.
7625 */
7626 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
7627
Sean Christopherson92daa482020-02-18 15:03:08 -08007628 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007629 return false;
7630
Sean Christopherson92daa482020-02-18 15:03:08 -08007631 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7632 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007633 return false;
7634
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007635 if (x86_page_table_writing_insn(ctxt))
7636 return false;
7637
Sean Christopherson736c2912019-12-06 15:57:14 -08007638 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007639 return false;
7640
7641 vcpu->arch.last_retry_eip = ctxt->eip;
Sean Christopherson736c2912019-12-06 15:57:14 -08007642 vcpu->arch.last_retry_addr = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007643
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007644 if (!vcpu->arch.mmu->direct_map)
Sean Christopherson736c2912019-12-06 15:57:14 -08007645 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007646
Xiao Guangrong22368022013-01-13 23:44:12 +08007647 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007648
7649 return true;
7650}
7651
Gleb Natapov716d51a2012-09-03 15:24:26 +03007652static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
7653static int complete_emulated_pio(struct kvm_vcpu *vcpu);
7654
Sean Christophersondc872752021-06-09 11:56:15 -07007655static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm)
Paolo Bonzinia5845392015-04-01 18:18:53 +02007656{
Sean Christopherson1270e642021-06-09 11:56:17 -07007657 trace_kvm_smm_transition(vcpu->vcpu_id, vcpu->arch.smbase, entering_smm);
Sean Christopherson0d7ee6f2021-06-09 11:56:16 -07007658
Sean Christophersondc872752021-06-09 11:56:15 -07007659 if (entering_smm) {
7660 vcpu->arch.hflags |= HF_SMM_MASK;
7661 } else {
7662 vcpu->arch.hflags &= ~(HF_SMM_MASK | HF_SMM_INSIDE_NMI_MASK);
7663
Paolo Bonzinic43203c2016-06-01 22:26:00 +02007664 /* Process a latched INIT or SMI, if any. */
7665 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitsky37687c42021-09-13 17:09:50 +03007666
7667 /*
7668 * Even if KVM_SET_SREGS2 loaded PDPTRs out of band,
7669 * on SMM exit we still need to reload them from
7670 * guest memory
7671 */
7672 vcpu->arch.pdptrs_from_userspace = false;
Paolo Bonzini64d60672015-05-07 11:36:11 +02007673 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02007674
7675 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007676}
7677
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007678static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
7679 unsigned long *db)
7680{
7681 u32 dr6 = 0;
7682 int i;
7683 u32 enable, rwlen;
7684
7685 enable = dr7;
7686 rwlen = dr7 >> 16;
7687 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
7688 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
7689 dr6 |= (1 << i);
7690 return dr6;
7691}
7692
Sean Christopherson120c2c42019-08-27 14:40:29 -07007693static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007694{
7695 struct kvm_run *kvm_run = vcpu->run;
7696
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007697 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08007698 kvm_run->debug.arch.dr6 = DR6_BS | DR6_ACTIVE_LOW;
Peter Xud5d260c2020-05-05 16:49:59 -04007699 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007700 kvm_run->debug.arch.exception = DB_VECTOR;
7701 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007702 return 0;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007703 }
Sean Christopherson120c2c42019-08-27 14:40:29 -07007704 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007705 return 1;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007706}
7707
Kyle Huey6affcbe2016-11-29 12:40:40 -08007708int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
7709{
Jason Baronb36464772021-01-14 22:27:56 -05007710 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007711 int r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007712
Jason Baronb36464772021-01-14 22:27:56 -05007713 r = static_call(kvm_x86_skip_emulated_instruction)(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007714 if (unlikely(!r))
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007715 return 0;
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007716
7717 /*
7718 * rflags is the old, "raw" value of the flags. The new value has
7719 * not been saved yet.
7720 *
7721 * This is correct even for TF set by the guest, because "the
7722 * processor will not generate this exception after the instruction
7723 * that sets the TF flag".
7724 */
7725 if (unlikely(rflags & X86_EFLAGS_TF))
Sean Christopherson120c2c42019-08-27 14:40:29 -07007726 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007727 return r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007728}
7729EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
7730
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007731static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
7732{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007733 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
7734 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02007735 struct kvm_run *kvm_run = vcpu->run;
7736 unsigned long eip = kvm_get_linear_rip(vcpu);
7737 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007738 vcpu->arch.guest_debug_dr7,
7739 vcpu->arch.eff_db);
7740
7741 if (dr6 != 0) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08007742 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Nadav Amit82b32772014-11-02 11:54:45 +02007743 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007744 kvm_run->debug.arch.exception = DB_VECTOR;
7745 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007746 *r = 0;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007747 return true;
7748 }
7749 }
7750
Nadav Amit4161a562014-07-17 01:19:31 +03007751 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
7752 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02007753 unsigned long eip = kvm_get_linear_rip(vcpu);
7754 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007755 vcpu->arch.dr7,
7756 vcpu->arch.db);
7757
7758 if (dr6 != 0) {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04007759 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007760 *r = 1;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007761 return true;
7762 }
7763 }
7764
7765 return false;
7766}
7767
Liran Alon04789b62018-03-12 13:12:50 +02007768static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt)
7769{
Arbel Moshe2d7921c2018-03-12 13:12:53 +02007770 switch (ctxt->opcode_len) {
7771 case 1:
7772 switch (ctxt->b) {
7773 case 0xe4: /* IN */
7774 case 0xe5:
7775 case 0xec:
7776 case 0xed:
7777 case 0xe6: /* OUT */
7778 case 0xe7:
7779 case 0xee:
7780 case 0xef:
7781 case 0x6c: /* INS */
7782 case 0x6d:
7783 case 0x6e: /* OUTS */
7784 case 0x6f:
7785 return true;
7786 }
7787 break;
7788 case 2:
7789 switch (ctxt->b) {
7790 case 0x33: /* RDPMC */
7791 return true;
7792 }
7793 break;
Liran Alon04789b62018-03-12 13:12:50 +02007794 }
7795
7796 return false;
7797}
7798
Wei Huang4aa26912021-01-26 03:18:28 -05007799/*
7800 * Decode to be emulated instruction. Return EMULATION_OK if success.
7801 */
7802int x86_decode_emulated_instruction(struct kvm_vcpu *vcpu, int emulation_type,
7803 void *insn, int insn_len)
7804{
7805 int r = EMULATION_OK;
7806 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7807
7808 init_emulate_ctxt(vcpu);
7809
7810 /*
7811 * We will reenter on the same instruction since we do not set
7812 * complete_userspace_io. This does not handle watchpoints yet,
7813 * those would be handled in the emulate_ops.
7814 */
7815 if (!(emulation_type & EMULTYPE_SKIP) &&
7816 kvm_vcpu_check_breakpoint(vcpu, &r))
7817 return r;
7818
Wanpeng Lib35491e2021-05-27 17:01:37 -07007819 r = x86_decode_insn(ctxt, insn, insn_len, emulation_type);
Wei Huang4aa26912021-01-26 03:18:28 -05007820
7821 trace_kvm_emulate_insn_start(vcpu);
7822 ++vcpu->stat.insn_emulation;
7823
7824 return r;
7825}
7826EXPORT_SYMBOL_GPL(x86_decode_emulated_instruction);
7827
Sean Christopherson736c2912019-12-06 15:57:14 -08007828int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
7829 int emulation_type, void *insn, int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007830{
Gleb Natapov95cb2292010-04-28 19:15:43 +03007831 int r;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007832 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007833 bool writeback = true;
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007834 bool write_fault_to_spt;
7835
Jason Baronb36464772021-01-14 22:27:56 -05007836 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, insn, insn_len)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007837 return 1;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007838
Paolo Bonzinic595cee2018-07-02 13:07:14 +02007839 vcpu->arch.l1tf_flush_l1d = true;
7840
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007841 /*
7842 * Clear write_fault_to_shadow_pgtable here to ensure it is
7843 * never reused.
7844 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007845 write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007846 vcpu->arch.write_fault_to_shadow_pgtable = false;
Gleb Natapov8d7d81022011-04-12 12:36:21 +03007847
Sheng Yang571008d2008-01-02 14:49:22 +08007848 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Wei Huang4aa26912021-01-26 03:18:28 -05007849 kvm_clear_exception_queue(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007850
Wei Huang4aa26912021-01-26 03:18:28 -05007851 r = x86_decode_emulated_instruction(vcpu, emulation_type,
7852 insn, insn_len);
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09007853 if (r != EMULATION_OK) {
Sean Christophersonb4000602019-08-27 14:40:32 -07007854 if ((emulation_type & EMULTYPE_TRAP_UD) ||
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07007855 (emulation_type & EMULTYPE_TRAP_UD_FORCED)) {
7856 kvm_queue_exception(vcpu, UD_VECTOR);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007857 return 1;
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07007858 }
Sean Christopherson736c2912019-12-06 15:57:14 -08007859 if (reexecute_instruction(vcpu, cr2_or_gpa,
7860 write_fault_to_spt,
7861 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007862 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00007863 if (ctxt->have_exception) {
Jan Dakinevichc8848ce2019-08-27 13:07:08 +00007864 /*
7865 * #UD should result in just EMULATION_FAILED, and trap-like
7866 * exception should not be encountered during decode.
7867 */
7868 WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR ||
7869 exception_type(ctxt->exception.vector) == EXCPT_TRAP);
Jan Dakinevich8530a792019-08-27 13:07:09 +00007870 inject_emulated_exception(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007871 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00007872 }
Liran Alone2366172018-03-12 13:12:49 +02007873 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007874 }
7875 }
7876
Sean Christopherson42cbf062019-08-27 14:40:31 -07007877 if ((emulation_type & EMULTYPE_VMWARE_GP) &&
7878 !is_vmware_backdoor_opcode(ctxt)) {
7879 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007880 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007881 }
Liran Alon04789b62018-03-12 13:12:50 +02007882
Sean Christopherson1957aa62019-08-27 14:40:39 -07007883 /*
7884 * Note, EMULTYPE_SKIP is intended for use *only* by vendor callbacks
7885 * for kvm_skip_emulated_instruction(). The caller is responsible for
7886 * updating interruptibility state and injecting single-step #DBs.
7887 */
Gleb Natapovba8afb62009-04-12 13:36:57 +03007888 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03007889 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03007890 if (ctxt->eflags & X86_EFLAGS_RF)
7891 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007892 return 1;
Gleb Natapovba8afb62009-04-12 13:36:57 +03007893 }
7894
Sean Christopherson736c2912019-12-06 15:57:14 -08007895 if (retry_instruction(ctxt, cr2_or_gpa, emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007896 return 1;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007897
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007898 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03007899 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007900 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
7901 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03007902 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007903 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03007904
Gleb Natapov5cd21912010-03-18 15:20:26 +02007905restart:
Sean Christopherson92daa482020-02-18 15:03:08 -08007906 if (emulation_type & EMULTYPE_PF) {
7907 /* Save the faulting GPA (cr2) in the address field */
7908 ctxt->exception.address = cr2_or_gpa;
7909
7910 /* With shadow page tables, cr2 contains a GVA or nGPA. */
7911 if (vcpu->arch.mmu->direct_map) {
Sean Christopherson744e6992020-02-18 15:03:09 -08007912 ctxt->gpa_available = true;
7913 ctxt->gpa_val = cr2_or_gpa;
Sean Christopherson92daa482020-02-18 15:03:08 -08007914 }
7915 } else {
7916 /* Sanitize the address out of an abundance of paranoia. */
7917 ctxt->exception.address = 0;
7918 }
Tom Lendacky0f89b202016-12-14 14:59:23 -05007919
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007920 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03007921
Joerg Roedel775fde82011-04-04 12:39:24 +02007922 if (r == EMULATION_INTERCEPTED)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007923 return 1;
Joerg Roedel775fde82011-04-04 12:39:24 +02007924
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007925 if (r == EMULATION_FAILED) {
Sean Christopherson736c2912019-12-06 15:57:14 -08007926 if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007927 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007928 return 1;
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03007929
Liran Alone2366172018-03-12 13:12:49 +02007930 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007931 }
7932
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007933 if (ctxt->have_exception) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007934 r = 1;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007935 if (inject_emulated_exception(vcpu))
7936 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007937 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02007938 if (!vcpu->arch.pio.in) {
7939 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03007940 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02007941 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007942 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03007943 vcpu->arch.complete_userspace_io = complete_emulated_pio;
7944 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007945 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007946 } else if (vcpu->mmio_needed) {
Sean Christophersonbc8a0aa2019-08-27 14:40:27 -07007947 ++vcpu->stat.mmio_exits;
7948
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007949 if (!vcpu->mmio_is_write)
7950 writeback = false;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007951 r = 0;
Gleb Natapov716d51a2012-09-03 15:24:26 +03007952 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007953 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03007954 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007955 else
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007956 r = 1;
Gleb Natapove85d28f2010-07-29 15:11:52 +03007957
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007958 if (writeback) {
Jason Baronb36464772021-01-14 22:27:56 -05007959 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007960 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007961 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Nadav Amit38827db2014-11-02 11:54:53 +02007962 if (!ctxt->have_exception ||
Sean Christopherson75ee23b2019-08-23 13:55:44 -07007963 exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
7964 kvm_rip_write(vcpu, ctxt->eip);
Felipe Franciosi384dea12020-05-19 08:11:22 +00007965 if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)))
Sean Christopherson120c2c42019-08-27 14:40:29 -07007966 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007967 if (kvm_x86_ops.update_emulated_instruction)
Jason Baronb36464772021-01-14 22:27:56 -05007968 static_call(kvm_x86_update_emulated_instruction)(vcpu);
Nadav Amit38827db2014-11-02 11:54:53 +02007969 __kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07007970 }
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007971
7972 /*
7973 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
7974 * do nothing, and it will be requested again as soon as
7975 * the shadow expires. But we still need to check here,
7976 * because POPF has no interrupt shadow.
7977 */
7978 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
7979 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007980 } else
7981 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03007982
Gleb Natapove85d28f2010-07-29 15:11:52 +03007983 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007984}
Sean Christophersonc60658d2018-08-23 13:56:53 -07007985
7986int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type)
7987{
7988 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
7989}
7990EXPORT_SYMBOL_GPL(kvm_emulate_instruction);
7991
7992int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
7993 void *insn, int insn_len)
7994{
7995 return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len);
7996}
7997EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007998
Sean Christopherson8764ed52019-04-29 07:04:15 -07007999static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu)
8000{
8001 vcpu->arch.pio.count = 0;
8002 return 1;
8003}
8004
Sean Christopherson45def772019-03-11 20:01:05 -07008005static int complete_fast_pio_out(struct kvm_vcpu *vcpu)
8006{
8007 vcpu->arch.pio.count = 0;
8008
8009 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip)))
8010 return 1;
8011
8012 return kvm_skip_emulated_instruction(vcpu);
8013}
8014
Sean Christophersondca7f122018-03-08 08:57:27 -08008015static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size,
8016 unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01008017{
Sean Christophersonde3cd112019-04-30 10:36:17 -07008018 unsigned long val = kvm_rax_read(vcpu);
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008019 int ret = emulator_pio_out(vcpu, size, port, &val, 1);
8020
Sean Christopherson8764ed52019-04-29 07:04:15 -07008021 if (ret)
8022 return ret;
Sean Christopherson45def772019-03-11 20:01:05 -07008023
Sean Christopherson8764ed52019-04-29 07:04:15 -07008024 /*
8025 * Workaround userspace that relies on old KVM behavior of %rip being
8026 * incremented prior to exiting to userspace to handle "OUT 0x7e".
8027 */
8028 if (port == 0x7e &&
8029 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) {
8030 vcpu->arch.complete_userspace_io =
8031 complete_fast_pio_out_port_0x7e;
8032 kvm_skip_emulated_instruction(vcpu);
8033 } else {
Sean Christopherson45def772019-03-11 20:01:05 -07008034 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
8035 vcpu->arch.complete_userspace_io = complete_fast_pio_out;
8036 }
Sean Christopherson8764ed52019-04-29 07:04:15 -07008037 return 0;
Carsten Ottede7d7892007-10-30 18:44:25 +01008038}
Carsten Ottede7d7892007-10-30 18:44:25 +01008039
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008040static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
8041{
8042 unsigned long val;
8043
8044 /* We should only ever be called with arch.pio.count equal to 1 */
8045 BUG_ON(vcpu->arch.pio.count != 1);
8046
Sean Christopherson45def772019-03-11 20:01:05 -07008047 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) {
8048 vcpu->arch.pio.count = 0;
8049 return 1;
8050 }
8051
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008052 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008053 val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008054
8055 /*
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008056 * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008057 * the copy and tracing
8058 */
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008059 emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1);
Sean Christophersonde3cd112019-04-30 10:36:17 -07008060 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008061
Sean Christopherson45def772019-03-11 20:01:05 -07008062 return kvm_skip_emulated_instruction(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008063}
8064
Sean Christophersondca7f122018-03-08 08:57:27 -08008065static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size,
8066 unsigned short port)
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008067{
8068 unsigned long val;
8069 int ret;
8070
8071 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008072 val = (size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008073
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008074 ret = emulator_pio_in(vcpu, size, port, &val, 1);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008075 if (ret) {
Sean Christophersonde3cd112019-04-30 10:36:17 -07008076 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008077 return ret;
8078 }
8079
Sean Christopherson45def772019-03-11 20:01:05 -07008080 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008081 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
8082
8083 return 0;
8084}
Sean Christophersondca7f122018-03-08 08:57:27 -08008085
8086int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in)
8087{
Sean Christopherson45def772019-03-11 20:01:05 -07008088 int ret;
Sean Christophersondca7f122018-03-08 08:57:27 -08008089
Sean Christophersondca7f122018-03-08 08:57:27 -08008090 if (in)
Sean Christopherson45def772019-03-11 20:01:05 -07008091 ret = kvm_fast_pio_in(vcpu, size, port);
Sean Christophersondca7f122018-03-08 08:57:27 -08008092 else
Sean Christopherson45def772019-03-11 20:01:05 -07008093 ret = kvm_fast_pio_out(vcpu, size, port);
8094 return ret && kvm_skip_emulated_instruction(vcpu);
Sean Christophersondca7f122018-03-08 08:57:27 -08008095}
8096EXPORT_SYMBOL_GPL(kvm_fast_pio);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008097
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008098static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008099{
Tejun Heo0a3aee02010-12-18 16:28:55 +01008100 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008101 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008102}
8103
8104static void tsc_khz_changed(void *data)
8105{
8106 struct cpufreq_freqs *freq = data;
8107 unsigned long khz = 0;
8108
8109 if (data)
8110 khz = freq->new;
8111 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8112 khz = cpufreq_quick_get(raw_smp_processor_id());
8113 if (!khz)
8114 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01008115 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008116}
8117
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008118#ifdef CONFIG_X86_64
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008119static void kvm_hyperv_tsc_notifier(void)
8120{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008121 struct kvm *kvm;
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008122 int cpu;
8123
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008124 mutex_lock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008125 list_for_each_entry(kvm, &vm_list, vm_list)
8126 kvm_make_mclock_inprogress_request(kvm);
8127
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008128 /* no guest entries from this point */
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008129 hyperv_stop_tsc_emulation();
8130
8131 /* TSC frequency always matches when on Hyper-V */
8132 for_each_present_cpu(cpu)
8133 per_cpu(cpu_tsc_khz, cpu) = tsc_khz;
8134 kvm_max_guest_tsc_khz = tsc_khz;
8135
8136 list_for_each_entry(kvm, &vm_list, vm_list) {
8137 struct kvm_arch *ka = &kvm->arch;
8138
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008139 spin_lock_irq(&ka->pvclock_gtod_sync_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008140 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008141 kvm_end_pvclock_update(kvm);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008142 }
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008143
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008144 mutex_unlock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008145}
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008146#endif
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008147
Viresh Kumardf240142019-04-29 15:03:58 +05308148static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008149{
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008150 struct kvm *kvm;
8151 struct kvm_vcpu *vcpu;
8152 int i, send_ipi = 0;
8153
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008154 /*
8155 * We allow guests to temporarily run on slowing clocks,
8156 * provided we notify them after, or to run on accelerating
8157 * clocks, provided we notify them before. Thus time never
8158 * goes backwards.
8159 *
8160 * However, we have a problem. We can't atomically update
8161 * the frequency of a given CPU from this function; it is
8162 * merely a notifier, which can be called from any CPU.
8163 * Changing the TSC frequency at arbitrary points in time
8164 * requires a recomputation of local variables related to
8165 * the TSC for each VCPU. We must flag these local variables
8166 * to be updated and be sure the update takes place with the
8167 * new frequency before any guests proceed.
8168 *
8169 * Unfortunately, the combination of hotplug CPU and frequency
8170 * change creates an intractable locking scenario; the order
8171 * of when these callouts happen is undefined with respect to
8172 * CPU hotplug, and they can race with each other. As such,
8173 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
8174 * undefined; you can actually have a CPU frequency change take
8175 * place in between the computation of X and the setting of the
8176 * variable. To protect against this problem, all updates of
8177 * the per_cpu tsc_khz variable are done in an interrupt
8178 * protected IPI, and all callers wishing to update the value
8179 * must wait for a synchronous IPI to complete (which is trivial
8180 * if the caller is on the CPU already). This establishes the
8181 * necessary total order on variable updates.
8182 *
8183 * Note that because a guest time update may take place
8184 * anytime after the setting of the VCPU's request bit, the
8185 * correct TSC value must be set before the request. However,
8186 * to ensure the update actually makes it to any guest which
8187 * starts running in hardware virtualization between the set
8188 * and the acquisition of the spinlock, we must also ping the
8189 * CPU after setting the request bit.
8190 *
8191 */
8192
Viresh Kumardf240142019-04-29 15:03:58 +05308193 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008194
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008195 mutex_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008196 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008197 kvm_for_each_vcpu(i, vcpu, kvm) {
Viresh Kumardf240142019-04-29 15:03:58 +05308198 if (vcpu->cpu != cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008199 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10008200 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008201 if (vcpu->cpu != raw_smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008202 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008203 }
8204 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008205 mutex_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008206
8207 if (freq->old < freq->new && send_ipi) {
8208 /*
8209 * We upscale the frequency. Must make the guest
8210 * doesn't see old kvmclock values while running with
8211 * the new frequency, otherwise we risk the guest sees
8212 * time go backwards.
8213 *
8214 * In case we update the frequency for another cpu
8215 * (which might be in guest context) send an interrupt
8216 * to kick the cpu out of guest context. Next time
8217 * guest context is entered kvmclock will be updated,
8218 * so the guest will not see stale values.
8219 */
Viresh Kumardf240142019-04-29 15:03:58 +05308220 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008221 }
Viresh Kumardf240142019-04-29 15:03:58 +05308222}
8223
8224static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
8225 void *data)
8226{
8227 struct cpufreq_freqs *freq = data;
8228 int cpu;
8229
8230 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
8231 return 0;
8232 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
8233 return 0;
8234
8235 for_each_cpu(cpu, freq->policy->cpus)
8236 __kvmclock_cpufreq_notifier(freq, cpu);
8237
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008238 return 0;
8239}
8240
8241static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008242 .notifier_call = kvmclock_cpufreq_notifier
8243};
8244
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008245static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008246{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008247 tsc_khz_changed(NULL);
8248 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008249}
8250
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008251static void kvm_timer_init(void)
8252{
Zachary Amsdenc2855452010-09-18 14:38:15 -10008253 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308254
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008255 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10008256#ifdef CONFIG_CPU_FREQ
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008257 struct cpufreq_policy *policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02008258 int cpu;
8259
Avi Kivity3e26f232010-12-16 12:16:34 +02008260 cpu = get_cpu();
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008261 policy = cpufreq_cpu_get(cpu);
Wanpeng Li9a119972020-03-02 15:15:36 +08008262 if (policy) {
8263 if (policy->cpuinfo.max_freq)
8264 max_tsc_khz = policy->cpuinfo.max_freq;
8265 cpufreq_cpu_put(policy);
8266 }
Avi Kivity3e26f232010-12-16 12:16:34 +02008267 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10008268#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008269 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
8270 CPUFREQ_TRANSITION_NOTIFIER);
8271 }
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308272
Thomas Gleixner73c1b412016-12-21 20:19:54 +01008273 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008274 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008275}
8276
Andi Kleendd60d212017-07-25 17:20:32 -07008277DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
8278EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008279
Gleb Natapovf5132b02011-11-10 14:57:22 +02008280int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008281{
Alex,Shi086c9852011-10-20 15:34:01 +08008282 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008283}
8284
8285static int kvm_is_user_mode(void)
8286{
8287 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008288
Alex,Shi086c9852011-10-20 15:34:01 +08008289 if (__this_cpu_read(current_vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008290 user_mode = static_call(kvm_x86_get_cpl)(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008291
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008292 return user_mode != 0;
8293}
8294
8295static unsigned long kvm_get_guest_ip(void)
8296{
8297 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008298
Alex,Shi086c9852011-10-20 15:34:01 +08008299 if (__this_cpu_read(current_vcpu))
8300 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008301
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008302 return ip;
8303}
8304
Luwei Kang8479e042019-02-18 19:26:07 -05008305static void kvm_handle_intel_pt_intr(void)
8306{
8307 struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu);
8308
8309 kvm_make_request(KVM_REQ_PMI, vcpu);
8310 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
8311 (unsigned long *)&vcpu->arch.pmu.global_status);
8312}
8313
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008314static struct perf_guest_info_callbacks kvm_guest_cbs = {
8315 .is_in_guest = kvm_is_in_guest,
8316 .is_user_mode = kvm_is_user_mode,
8317 .get_guest_ip = kvm_get_guest_ip,
Luwei Kang8479e042019-02-18 19:26:07 -05008318 .handle_intel_pt_intr = kvm_handle_intel_pt_intr,
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008319};
8320
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008321#ifdef CONFIG_X86_64
8322static void pvclock_gtod_update_fn(struct work_struct *work)
8323{
Marcelo Tosattid8281992012-11-27 23:29:01 -02008324 struct kvm *kvm;
8325
8326 struct kvm_vcpu *vcpu;
8327 int i;
8328
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008329 mutex_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008330 list_for_each_entry(kvm, &vm_list, vm_list)
8331 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08008332 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008333 atomic_set(&kvm_guest_has_master_clock, 0);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008334 mutex_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008335}
8336
8337static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
8338
8339/*
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008340 * Indirection to move queue_work() out of the tk_core.seq write held
8341 * region to prevent possible deadlocks against time accessors which
8342 * are invoked with work related locks held.
8343 */
8344static void pvclock_irq_work_fn(struct irq_work *w)
8345{
8346 queue_work(system_long_wq, &pvclock_gtod_work);
8347}
8348
8349static DEFINE_IRQ_WORK(pvclock_irq_work, pvclock_irq_work_fn);
8350
8351/*
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008352 * Notification about pvclock gtod data update.
8353 */
8354static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
8355 void *priv)
8356{
8357 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
8358 struct timekeeper *tk = priv;
8359
8360 update_pvclock_gtod(tk);
8361
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008362 /*
8363 * Disable master clock if host does not trust, or does not use,
8364 * TSC based clocksource. Delegate queue_work() to irq_work as
8365 * this is invoked with tk_core.seq write held.
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008366 */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01008367 if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) &&
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008368 atomic_read(&kvm_guest_has_master_clock) != 0)
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008369 irq_work_queue(&pvclock_irq_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008370 return 0;
8371}
8372
8373static struct notifier_block pvclock_gtod_notifier = {
8374 .notifier_call = pvclock_gtod_notify,
8375};
8376#endif
8377
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008378int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02008379{
Sean Christophersond008dfd2020-03-21 13:25:56 -07008380 struct kvm_x86_init_ops *ops = opaque;
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008381 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008382
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008383 if (kvm_x86_ops.hardware_enable) {
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008384 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008385 r = -EEXIST;
8386 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008387 }
8388
8389 if (!ops->cpu_has_kvm_support()) {
Erwan Veluef935c252020-02-27 19:00:46 +01008390 pr_err_ratelimited("kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008391 r = -EOPNOTSUPP;
8392 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008393 }
8394 if (ops->disabled_by_bios()) {
Erwan Veluef935c252020-02-27 19:00:46 +01008395 pr_err_ratelimited("kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008396 r = -EOPNOTSUPP;
8397 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008398 }
8399
Marc Orrb666a4b2018-11-06 14:53:56 -08008400 /*
8401 * KVM explicitly assumes that the guest has an FPU and
8402 * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the
8403 * vCPU's FPU state as a fxregs_state struct.
8404 */
8405 if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) {
8406 printk(KERN_ERR "kvm: inadequate fpu\n");
8407 r = -EOPNOTSUPP;
8408 goto out;
8409 }
8410
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008411 r = -ENOMEM;
Paolo Bonzinied8e4812018-12-21 11:25:59 +01008412 x86_fpu_cache = kmem_cache_create("x86_fpu", sizeof(struct fpu),
Marc Orrb666a4b2018-11-06 14:53:56 -08008413 __alignof__(struct fpu), SLAB_ACCOUNT,
8414 NULL);
8415 if (!x86_fpu_cache) {
8416 printk(KERN_ERR "kvm: failed to allocate cache for x86 fpu\n");
8417 goto out;
8418 }
8419
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008420 x86_emulator_cache = kvm_alloc_emulator_cache();
8421 if (!x86_emulator_cache) {
8422 pr_err("kvm: failed to allocate cache for x86 emulator\n");
8423 goto out_free_x86_fpu_cache;
8424 }
8425
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008426 user_return_msrs = alloc_percpu(struct kvm_user_return_msrs);
8427 if (!user_return_msrs) {
8428 printk(KERN_ERR "kvm: failed to allocate percpu kvm_user_return_msrs\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008429 goto out_free_x86_emulator_cache;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008430 }
Sean Christophersone5fda4b2021-05-04 10:17:32 -07008431 kvm_nr_uret_msrs = 0;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008432
Avi Kivity97db56c2008-01-13 13:23:56 +02008433 r = kvm_mmu_module_init();
8434 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008435 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02008436
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008437 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008438
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008439 perf_register_guest_info_callbacks(&kvm_guest_cbs);
8440
Sean Christophersoncfc48182020-03-02 15:56:23 -08008441 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +08008442 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
Sean Christophersoncfc48182020-03-02 15:56:23 -08008443 supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0;
8444 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08008445
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08008446 if (pi_inject_timer == -1)
8447 pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008448#ifdef CONFIG_X86_64
8449 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008450
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008451 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008452 set_hv_tscchange_cb(kvm_hyperv_tsc_notifier);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008453#endif
8454
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008455 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008456
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008457out_free_percpu:
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008458 free_percpu(user_return_msrs);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008459out_free_x86_emulator_cache:
8460 kmem_cache_destroy(x86_emulator_cache);
Marc Orrb666a4b2018-11-06 14:53:56 -08008461out_free_x86_fpu_cache:
8462 kmem_cache_destroy(x86_fpu_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008463out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008464 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02008465}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008466
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008467void kvm_arch_exit(void)
8468{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008469#ifdef CONFIG_X86_64
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008470 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008471 clear_hv_tscchange_cb();
8472#endif
David Matlackcef84c32016-12-16 14:30:36 -08008473 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008474 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
8475
Jan Kiszka888d2562009-04-17 19:24:58 +02008476 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8477 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
8478 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008479 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008480#ifdef CONFIG_X86_64
8481 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008482 irq_work_sync(&pvclock_irq_work);
Thomas Gleixner594b27e2021-05-05 23:48:17 +02008483 cancel_work_sync(&pvclock_gtod_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008484#endif
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008485 kvm_x86_ops.hardware_enable = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008486 kvm_mmu_module_exit();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008487 free_percpu(user_return_msrs);
Wanpeng Lidfdc0a72021-06-10 21:59:33 -07008488 kmem_cache_destroy(x86_emulator_cache);
Marc Orrb666a4b2018-11-06 14:53:56 -08008489 kmem_cache_destroy(x86_fpu_cache);
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008490#ifdef CONFIG_KVM_XEN
Paolo Bonzinic462f852021-02-26 04:49:06 -05008491 static_key_deferred_flush(&kvm_xen_enabled);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +00008492 WARN_ON(static_branch_unlikely(&kvm_xen_enabled.key));
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008493#endif
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008494}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008495
Paolo Bonzini872f36e2021-01-08 05:54:44 -05008496static int __kvm_vcpu_halt(struct kvm_vcpu *vcpu, int state, int reason)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008497{
8498 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008499 if (lapic_in_kernel(vcpu)) {
Tom Lendacky647daca2021-01-04 14:20:01 -06008500 vcpu->arch.mp_state = state;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008501 return 1;
8502 } else {
Tom Lendacky647daca2021-01-04 14:20:01 -06008503 vcpu->run->exit_reason = reason;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008504 return 0;
8505 }
8506}
Tom Lendacky647daca2021-01-04 14:20:01 -06008507
8508int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
8509{
8510 return __kvm_vcpu_halt(vcpu, KVM_MP_STATE_HALTED, KVM_EXIT_HLT);
8511}
Joel Schopp5cb56052015-03-02 13:43:31 -06008512EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
8513
8514int kvm_emulate_halt(struct kvm_vcpu *vcpu)
8515{
Kyle Huey6affcbe2016-11-29 12:40:40 -08008516 int ret = kvm_skip_emulated_instruction(vcpu);
8517 /*
8518 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
8519 * KVM_EXIT_DEBUG here.
8520 */
8521 return kvm_vcpu_halt(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06008522}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008523EXPORT_SYMBOL_GPL(kvm_emulate_halt);
8524
Tom Lendacky647daca2021-01-04 14:20:01 -06008525int kvm_emulate_ap_reset_hold(struct kvm_vcpu *vcpu)
8526{
8527 int ret = kvm_skip_emulated_instruction(vcpu);
8528
8529 return __kvm_vcpu_halt(vcpu, KVM_MP_STATE_AP_RESET_HOLD, KVM_EXIT_AP_RESET_HOLD) && ret;
8530}
8531EXPORT_SYMBOL_GPL(kvm_emulate_ap_reset_hold);
8532
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008533#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008534static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
8535 unsigned long clock_type)
8536{
8537 struct kvm_clock_pairing clock_pairing;
Arnd Bergmann899a31f2018-04-23 10:04:26 +02008538 struct timespec64 ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01008539 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008540 int ret;
8541
8542 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
8543 return -KVM_EOPNOTSUPP;
8544
YANG LI7ca7f3b2021-01-11 17:32:58 +08008545 if (!kvm_get_walltime_and_clockread(&ts, &cycle))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008546 return -KVM_EOPNOTSUPP;
8547
8548 clock_pairing.sec = ts.tv_sec;
8549 clock_pairing.nsec = ts.tv_nsec;
8550 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
8551 clock_pairing.flags = 0;
Liran Alonbcbfbd82018-11-08 00:43:06 +02008552 memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008553
8554 ret = 0;
8555 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
8556 sizeof(struct kvm_clock_pairing)))
8557 ret = -KVM_EFAULT;
8558
8559 return ret;
8560}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008561#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008562
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308563/*
8564 * kvm_pv_kick_cpu_op: Kick a vcpu.
8565 *
8566 * @apicid - apicid of vcpu to be kicked.
8567 */
8568static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
8569{
Raghavendra K T24d21662013-08-26 14:18:35 +05308570 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308571
Peter Xu150a84f2019-12-04 20:07:21 +01008572 lapic_irq.shorthand = APIC_DEST_NOSHORT;
Peter Xuc96001c2019-12-04 20:07:18 +01008573 lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
Longpeng(Mike)ebd28fc2017-08-02 11:20:51 +08008574 lapic_irq.level = 0;
Raghavendra K T24d21662013-08-26 14:18:35 +05308575 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06008576 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308577
Raghavendra K T24d21662013-08-26 14:18:35 +05308578 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08008579 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308580}
8581
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008582bool kvm_apicv_activated(struct kvm *kvm)
8583{
8584 return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0);
8585}
8586EXPORT_SYMBOL_GPL(kvm_apicv_activated);
8587
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008588static void kvm_apicv_init(struct kvm *kvm)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008589{
Maxim Levitskyb0a16372021-08-10 23:52:44 +03008590 mutex_init(&kvm->arch.apicv_update_lock);
8591
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008592 if (enable_apicv)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008593 clear_bit(APICV_INHIBIT_REASON_DISABLE,
8594 &kvm->arch.apicv_inhibit_reasons);
8595 else
8596 set_bit(APICV_INHIBIT_REASON_DISABLE,
8597 &kvm->arch.apicv_inhibit_reasons);
8598}
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008599
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008600static void kvm_sched_yield(struct kvm_vcpu *vcpu, unsigned long dest_id)
Wanpeng Li71506292019-06-11 20:23:49 +08008601{
8602 struct kvm_vcpu *target = NULL;
8603 struct kvm_apic_map *map;
8604
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008605 vcpu->stat.directed_yield_attempted++;
8606
Wanpeng Li72b268a2021-05-18 05:00:32 -07008607 if (single_task_running())
8608 goto no_yield;
8609
Wanpeng Li71506292019-06-11 20:23:49 +08008610 rcu_read_lock();
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008611 map = rcu_dereference(vcpu->kvm->arch.apic_map);
Wanpeng Li71506292019-06-11 20:23:49 +08008612
8613 if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id])
8614 target = map->phys_map[dest_id]->vcpu;
8615
8616 rcu_read_unlock();
8617
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008618 if (!target || !READ_ONCE(target->ready))
8619 goto no_yield;
8620
Wanpeng Lia1fa4cb2021-04-09 12:18:31 +08008621 /* Ignore requests to yield to self */
8622 if (vcpu == target)
8623 goto no_yield;
8624
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008625 if (kvm_vcpu_yield_to(target) <= 0)
8626 goto no_yield;
8627
8628 vcpu->stat.directed_yield_successful++;
8629
8630no_yield:
8631 return;
Wanpeng Li71506292019-06-11 20:23:49 +08008632}
8633
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008634static int complete_hypercall_exit(struct kvm_vcpu *vcpu)
8635{
8636 u64 ret = vcpu->run->hypercall.ret;
8637
8638 if (!is_64_bit_mode(vcpu))
8639 ret = (u32)ret;
8640 kvm_rax_write(vcpu, ret);
8641 ++vcpu->stat.hypercalls;
8642 return kvm_skip_emulated_instruction(vcpu);
8643}
8644
Hollis Blanchard8776e512007-10-31 17:24:24 -05008645int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
8646{
8647 unsigned long nr, a0, a1, a2, a3, ret;
Marian Rotariu6356ee02018-04-30 12:23:01 +03008648 int op_64_bit;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008649
Joao Martins23200b72018-06-13 09:55:44 -04008650 if (kvm_xen_hypercall_enabled(vcpu->kvm))
8651 return kvm_xen_hypercall(vcpu);
8652
Vitaly Kuznetsov8f014552021-01-26 14:48:14 +01008653 if (kvm_hv_hypercall_enabled(vcpu))
Radim Krčmář696ca772018-05-24 17:50:56 +02008654 return kvm_hv_hypercall(vcpu);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02008655
Sean Christophersonde3cd112019-04-30 10:36:17 -07008656 nr = kvm_rax_read(vcpu);
8657 a0 = kvm_rbx_read(vcpu);
8658 a1 = kvm_rcx_read(vcpu);
8659 a2 = kvm_rdx_read(vcpu);
8660 a3 = kvm_rsi_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008661
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008662 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04008663
Nadav Amita449c7a2014-06-18 17:19:24 +03008664 op_64_bit = is_64_bit_mode(vcpu);
8665 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05008666 nr &= 0xFFFFFFFF;
8667 a0 &= 0xFFFFFFFF;
8668 a1 &= 0xFFFFFFFF;
8669 a2 &= 0xFFFFFFFF;
8670 a3 &= 0xFFFFFFFF;
8671 }
8672
Jason Baronb36464772021-01-14 22:27:56 -05008673 if (static_call(kvm_x86_get_cpl)(vcpu) != 0) {
Jan Kiszka07708c42009-08-03 18:43:28 +02008674 ret = -KVM_EPERM;
Radim Krčmář696ca772018-05-24 17:50:56 +02008675 goto out;
Jan Kiszka07708c42009-08-03 18:43:28 +02008676 }
8677
Oliver Upton66570e92020-08-18 15:24:28 +00008678 ret = -KVM_ENOSYS;
8679
Hollis Blanchard8776e512007-10-31 17:24:24 -05008680 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02008681 case KVM_HC_VAPIC_POLL_IRQ:
8682 ret = 0;
8683 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308684 case KVM_HC_KICK_CPU:
Oliver Upton66570e92020-08-18 15:24:28 +00008685 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT))
8686 break;
8687
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308688 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008689 kvm_sched_yield(vcpu, a1);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308690 ret = 0;
8691 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008692#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008693 case KVM_HC_CLOCK_PAIRING:
8694 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
8695 break;
Sean Christopherson1ed199a2019-01-23 09:22:39 -08008696#endif
Wanpeng Li4180bf12018-07-23 14:39:54 +08008697 case KVM_HC_SEND_IPI:
Oliver Upton66570e92020-08-18 15:24:28 +00008698 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SEND_IPI))
8699 break;
8700
Wanpeng Li4180bf12018-07-23 14:39:54 +08008701 ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit);
8702 break;
Wanpeng Li71506292019-06-11 20:23:49 +08008703 case KVM_HC_SCHED_YIELD:
Oliver Upton66570e92020-08-18 15:24:28 +00008704 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SCHED_YIELD))
8705 break;
8706
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008707 kvm_sched_yield(vcpu, a0);
Wanpeng Li71506292019-06-11 20:23:49 +08008708 ret = 0;
8709 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008710 case KVM_HC_MAP_GPA_RANGE: {
8711 u64 gpa = a0, npages = a1, attrs = a2;
8712
8713 ret = -KVM_ENOSYS;
8714 if (!(vcpu->kvm->arch.hypercall_exit_enabled & (1 << KVM_HC_MAP_GPA_RANGE)))
8715 break;
8716
8717 if (!PAGE_ALIGNED(gpa) || !npages ||
8718 gpa_to_gfn(gpa) + npages <= gpa_to_gfn(gpa)) {
8719 ret = -KVM_EINVAL;
8720 break;
8721 }
8722
8723 vcpu->run->exit_reason = KVM_EXIT_HYPERCALL;
8724 vcpu->run->hypercall.nr = KVM_HC_MAP_GPA_RANGE;
8725 vcpu->run->hypercall.args[0] = gpa;
8726 vcpu->run->hypercall.args[1] = npages;
8727 vcpu->run->hypercall.args[2] = attrs;
8728 vcpu->run->hypercall.longmode = op_64_bit;
8729 vcpu->arch.complete_userspace_io = complete_hypercall_exit;
8730 return 0;
8731 }
Hollis Blanchard8776e512007-10-31 17:24:24 -05008732 default:
8733 ret = -KVM_ENOSYS;
8734 break;
8735 }
Radim Krčmář696ca772018-05-24 17:50:56 +02008736out:
Nadav Amita449c7a2014-06-18 17:19:24 +03008737 if (!op_64_bit)
8738 ret = (u32)ret;
Sean Christophersonde3cd112019-04-30 10:36:17 -07008739 kvm_rax_write(vcpu, ret);
Marian Rotariu6356ee02018-04-30 12:23:01 +03008740
Amit Shahf11c3a82008-02-21 01:00:30 +05308741 ++vcpu->stat.hypercalls;
Marian Rotariu6356ee02018-04-30 12:23:01 +03008742 return kvm_skip_emulated_instruction(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008743}
8744EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
8745
Jan Kiszkab6785de2012-09-20 07:43:17 +02008746static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008747{
Avi Kivityd6aa1002011-04-20 15:47:13 +03008748 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008749 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008750 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008751
Jason Baronb36464772021-01-14 22:27:56 -05008752 static_call(kvm_x86_patch_hypercall)(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008753
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01008754 return emulator_write_emulated(ctxt, rip, instruction, 3,
8755 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008756}
8757
Avi Kivity851ba692009-08-24 11:10:17 +03008758static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008759{
Matt Gingell782d4222015-11-16 15:26:00 -08008760 return vcpu->run->request_interrupt_window &&
8761 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008762}
8763
Avi Kivity851ba692009-08-24 11:10:17 +03008764static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008765{
Avi Kivity851ba692009-08-24 11:10:17 +03008766 struct kvm_run *kvm_run = vcpu->run;
8767
Tom Lendackyf1c63662020-12-14 10:29:50 -05008768 /*
8769 * if_flag is obsolete and useless, so do not bother
8770 * setting it for SEV-ES guests. Userspace can just
8771 * use kvm_run->ready_for_interrupt_injection.
8772 */
8773 kvm_run->if_flag = !vcpu->arch.guest_state_protected
8774 && (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
8775
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02008776 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008777 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01008778 kvm_run->ready_for_interrupt_injection =
8779 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08008780 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08008781
8782 if (is_smm(vcpu))
8783 kvm_run->flags |= KVM_RUN_X86_SMM;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008784}
8785
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008786static void update_cr8_intercept(struct kvm_vcpu *vcpu)
8787{
8788 int max_irr, tpr;
8789
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008790 if (!kvm_x86_ops.update_cr8_intercept)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008791 return;
8792
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01008793 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03008794 return;
8795
Andrey Smetanind62caab2015-11-10 15:36:33 +03008796 if (vcpu->arch.apicv_active)
8797 return;
8798
Gleb Natapov8db3baa2009-05-11 13:35:54 +03008799 if (!vcpu->arch.apic->vapic_addr)
8800 max_irr = kvm_lapic_find_highest_irr(vcpu);
8801 else
8802 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008803
8804 if (max_irr != -1)
8805 max_irr >>= 4;
8806
8807 tpr = kvm_lapic_get_cr8(vcpu);
8808
Jason Baronb36464772021-01-14 22:27:56 -05008809 static_call(kvm_x86_update_cr8_intercept)(vcpu, tpr, max_irr);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008810}
8811
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008812
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08008813int kvm_check_nested_events(struct kvm_vcpu *vcpu)
8814{
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08008815 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
8816 kvm_x86_ops.nested_ops->triple_fault(vcpu);
8817 return 1;
8818 }
8819
8820 return kvm_x86_ops.nested_ops->check_events(vcpu);
8821}
8822
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008823static void kvm_inject_exception(struct kvm_vcpu *vcpu)
8824{
8825 if (vcpu->arch.exception.error_code && !is_protmode(vcpu))
8826 vcpu->arch.exception.error_code = false;
8827 static_call(kvm_x86_queue_exception)(vcpu);
8828}
8829
Jim Mattsona5f69092021-06-04 10:26:03 -07008830static int inject_pending_event(struct kvm_vcpu *vcpu, bool *req_immediate_exit)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008831{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01008832 int r;
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008833 bool can_inject = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +01008834
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008835 /* try to reinject previous events if any */
Wanpeng Li664f8e22017-08-24 03:35:09 -07008836
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008837 if (vcpu->arch.exception.injected) {
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008838 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008839 can_inject = false;
8840 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07008841 /*
Liran Alona042c262018-03-23 03:01:32 +03008842 * Do not inject an NMI or interrupt if there is a pending
8843 * exception. Exceptions and interrupts are recognized at
8844 * instruction boundaries, i.e. the start of an instruction.
8845 * Trap-like exceptions, e.g. #DB, have higher priority than
8846 * NMIs and interrupts, i.e. traps are recognized before an
8847 * NMI/interrupt that's pending on the same instruction.
8848 * Fault-like exceptions, e.g. #GP and #PF, are the lowest
8849 * priority, but are only generated (pended) during instruction
8850 * execution, i.e. a pending fault-like exception means the
8851 * fault occurred on the *previous* instruction and must be
8852 * serviced prior to recognizing any new events in order to
8853 * fully complete the previous instruction.
Wanpeng Li664f8e22017-08-24 03:35:09 -07008854 */
Liran Alon1a680e32018-03-23 03:01:33 +03008855 else if (!vcpu->arch.exception.pending) {
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008856 if (vcpu->arch.nmi_injected) {
Jason Baronb36464772021-01-14 22:27:56 -05008857 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008858 can_inject = false;
8859 } else if (vcpu->arch.interrupt.injected) {
Jason Baronb36464772021-01-14 22:27:56 -05008860 static_call(kvm_x86_set_irq)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008861 can_inject = false;
8862 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07008863 }
8864
Sean Christopherson3b82b8d2020-04-22 19:25:47 -07008865 WARN_ON_ONCE(vcpu->arch.exception.injected &&
8866 vcpu->arch.exception.pending);
8867
Liran Alon1a680e32018-03-23 03:01:33 +03008868 /*
8869 * Call check_nested_events() even if we reinjected a previous event
8870 * in order for caller to determine if it should require immediate-exit
8871 * from L2 to L1 due to pending L1 events which require exit
8872 * from L2 to L1.
8873 */
Paolo Bonzini56083bd2020-04-17 10:32:53 -04008874 if (is_guest_mode(vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08008875 r = kvm_check_nested_events(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008876 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008877 goto out;
Wanpeng Li664f8e22017-08-24 03:35:09 -07008878 }
8879
8880 /* try to inject new event if pending */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03008881 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02008882 trace_kvm_inj_exception(vcpu->arch.exception.nr,
8883 vcpu->arch.exception.has_error_code,
8884 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03008885
Wanpeng Li664f8e22017-08-24 03:35:09 -07008886 vcpu->arch.exception.pending = false;
8887 vcpu->arch.exception.injected = true;
8888
Nadav Amitd6e8c852014-07-24 14:51:24 +03008889 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
8890 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
8891 X86_EFLAGS_RF);
8892
Jim Mattsonf10c7292018-10-16 14:29:23 -07008893 if (vcpu->arch.exception.nr == DB_VECTOR) {
Jim Mattsonf10c7292018-10-16 14:29:23 -07008894 kvm_deliver_exception_payload(vcpu);
8895 if (vcpu->arch.dr7 & DR7_GD) {
8896 vcpu->arch.dr7 &= ~DR7_GD;
8897 kvm_update_dr7(vcpu);
8898 }
Nadav Amit6bdf0662014-09-30 20:49:14 +03008899 }
8900
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008901 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008902 can_inject = false;
Liran Alon1a680e32018-03-23 03:01:33 +03008903 }
8904
Maxim Levitsky61e5f692021-08-11 15:29:26 +03008905 /* Don't inject interrupts if the user asked to avoid doing so */
8906 if (vcpu->guest_debug & KVM_GUESTDBG_BLOCKIRQ)
8907 return 0;
8908
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008909 /*
8910 * Finally, inject interrupt events. If an event cannot be injected
8911 * due to architectural conditions (e.g. IF=0) a window-open exit
8912 * will re-request KVM_REQ_EVENT. Sometimes however an event is pending
8913 * and can architecturally be injected, but we cannot do it right now:
8914 * an interrupt could have arrived just now and we have to inject it
8915 * as a vmexit, or there could already an event in the queue, which is
8916 * indicated by can_inject. In that case we request an immediate exit
8917 * in order to make progress and get back here for another iteration.
8918 * The kvm_x86_ops hooks communicate this by returning -EBUSY.
8919 */
8920 if (vcpu->arch.smi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05008921 r = can_inject ? static_call(kvm_x86_smi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008922 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008923 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008924 if (r) {
8925 vcpu->arch.smi_pending = false;
8926 ++vcpu->arch.smi_count;
8927 enter_smm(vcpu);
8928 can_inject = false;
8929 } else
Jason Baronb36464772021-01-14 22:27:56 -05008930 static_call(kvm_x86_enable_smi_window)(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008931 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008932
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008933 if (vcpu->arch.nmi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05008934 r = can_inject ? static_call(kvm_x86_nmi_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 --vcpu->arch.nmi_pending;
8939 vcpu->arch.nmi_injected = true;
Jason Baronb36464772021-01-14 22:27:56 -05008940 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008941 can_inject = false;
Jason Baronb36464772021-01-14 22:27:56 -05008942 WARN_ON(static_call(kvm_x86_nmi_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008943 }
8944 if (vcpu->arch.nmi_pending)
Jason Baronb36464772021-01-14 22:27:56 -05008945 static_call(kvm_x86_enable_nmi_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008946 }
8947
8948 if (kvm_cpu_has_injectable_intr(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05008949 r = can_inject ? static_call(kvm_x86_interrupt_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008950 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008951 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008952 if (r) {
8953 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), false);
Jason Baronb36464772021-01-14 22:27:56 -05008954 static_call(kvm_x86_set_irq)(vcpu);
8955 WARN_ON(static_call(kvm_x86_interrupt_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008956 }
8957 if (kvm_cpu_has_injectable_intr(vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008958 static_call(kvm_x86_enable_irq_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008959 }
8960
8961 if (is_guest_mode(vcpu) &&
8962 kvm_x86_ops.nested_ops->hv_timer_pending &&
8963 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
8964 *req_immediate_exit = true;
8965
8966 WARN_ON(vcpu->arch.exception.pending);
Jim Mattsona5f69092021-06-04 10:26:03 -07008967 return 0;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008968
Jim Mattsona5f69092021-06-04 10:26:03 -07008969out:
8970 if (r == -EBUSY) {
8971 *req_immediate_exit = true;
8972 r = 0;
8973 }
8974 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008975}
8976
Avi Kivity7460fb4a2011-09-20 13:43:14 +03008977static void process_nmi(struct kvm_vcpu *vcpu)
8978{
8979 unsigned limit = 2;
8980
8981 /*
8982 * x86 is limited to one NMI running, and one NMI pending after it.
8983 * If an NMI is already in progress, limit further NMIs to just one.
8984 * Otherwise, allow two (and we'll inject the first one immediately).
8985 */
Jason Baronb36464772021-01-14 22:27:56 -05008986 if (static_call(kvm_x86_get_nmi_mask)(vcpu) || vcpu->arch.nmi_injected)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03008987 limit = 1;
8988
8989 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
8990 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
8991 kvm_make_request(KVM_REQ_EVENT, vcpu);
8992}
8993
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008994static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008995{
8996 u32 flags = 0;
8997 flags |= seg->g << 23;
8998 flags |= seg->db << 22;
8999 flags |= seg->l << 21;
9000 flags |= seg->avl << 20;
9001 flags |= seg->present << 15;
9002 flags |= seg->dpl << 13;
9003 flags |= seg->s << 12;
9004 flags |= seg->type << 8;
9005 return flags;
9006}
9007
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009008static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009009{
9010 struct kvm_segment seg;
9011 int offset;
9012
9013 kvm_get_segment(vcpu, &seg, n);
9014 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
9015
9016 if (n < 3)
9017 offset = 0x7f84 + n * 12;
9018 else
9019 offset = 0x7f2c + (n - 3) * 12;
9020
9021 put_smstate(u32, buf, offset + 8, seg.base);
9022 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009023 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009024}
9025
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009026#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009027static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009028{
9029 struct kvm_segment seg;
9030 int offset;
9031 u16 flags;
9032
9033 kvm_get_segment(vcpu, &seg, n);
9034 offset = 0x7e00 + n * 16;
9035
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009036 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009037 put_smstate(u16, buf, offset, seg.selector);
9038 put_smstate(u16, buf, offset + 2, flags);
9039 put_smstate(u32, buf, offset + 4, seg.limit);
9040 put_smstate(u64, buf, offset + 8, seg.base);
9041}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009042#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009043
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009044static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009045{
9046 struct desc_ptr dt;
9047 struct kvm_segment seg;
9048 unsigned long val;
9049 int i;
9050
9051 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
9052 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
9053 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
9054 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
9055
9056 for (i = 0; i < 8; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009057 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009058
9059 kvm_get_dr(vcpu, 6, &val);
9060 put_smstate(u32, buf, 0x7fcc, (u32)val);
9061 kvm_get_dr(vcpu, 7, &val);
9062 put_smstate(u32, buf, 0x7fc8, (u32)val);
9063
9064 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9065 put_smstate(u32, buf, 0x7fc4, seg.selector);
9066 put_smstate(u32, buf, 0x7f64, seg.base);
9067 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009068 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009069
9070 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9071 put_smstate(u32, buf, 0x7fc0, seg.selector);
9072 put_smstate(u32, buf, 0x7f80, seg.base);
9073 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009074 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009075
Jason Baronb36464772021-01-14 22:27:56 -05009076 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009077 put_smstate(u32, buf, 0x7f74, dt.address);
9078 put_smstate(u32, buf, 0x7f70, dt.size);
9079
Jason Baronb36464772021-01-14 22:27:56 -05009080 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009081 put_smstate(u32, buf, 0x7f58, dt.address);
9082 put_smstate(u32, buf, 0x7f54, dt.size);
9083
9084 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009085 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009086
9087 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
9088
9089 /* revision id */
9090 put_smstate(u32, buf, 0x7efc, 0x00020000);
9091 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
9092}
9093
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009094#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009095static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009096{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009097 struct desc_ptr dt;
9098 struct kvm_segment seg;
9099 unsigned long val;
9100 int i;
9101
9102 for (i = 0; i < 16; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009103 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009104
9105 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
9106 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
9107
9108 kvm_get_dr(vcpu, 6, &val);
9109 put_smstate(u64, buf, 0x7f68, val);
9110 kvm_get_dr(vcpu, 7, &val);
9111 put_smstate(u64, buf, 0x7f60, val);
9112
9113 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
9114 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
9115 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
9116
9117 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
9118
9119 /* revision id */
9120 put_smstate(u32, buf, 0x7efc, 0x00020064);
9121
9122 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
9123
9124 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9125 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009126 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009127 put_smstate(u32, buf, 0x7e94, seg.limit);
9128 put_smstate(u64, buf, 0x7e98, seg.base);
9129
Jason Baronb36464772021-01-14 22:27:56 -05009130 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009131 put_smstate(u32, buf, 0x7e84, dt.size);
9132 put_smstate(u64, buf, 0x7e88, dt.address);
9133
9134 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9135 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009136 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009137 put_smstate(u32, buf, 0x7e74, seg.limit);
9138 put_smstate(u64, buf, 0x7e78, seg.base);
9139
Jason Baronb36464772021-01-14 22:27:56 -05009140 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009141 put_smstate(u32, buf, 0x7e64, dt.size);
9142 put_smstate(u64, buf, 0x7e68, dt.address);
9143
9144 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009145 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009146}
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009147#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009148
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009149static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02009150{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009151 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02009152 struct desc_ptr dt;
Sean Christophersondbc47392021-06-22 10:56:59 -07009153 unsigned long cr0;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009154 char buf[512];
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009155
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009156 memset(buf, 0, 512);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009157#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009158 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009159 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009160 else
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009161#endif
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009162 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009163
Ladi Prosek0234bf82017-10-11 16:54:40 +02009164 /*
Sean Christophersonecc513e2021-06-09 11:56:19 -07009165 * Give enter_smm() a chance to make ISA-specific changes to the vCPU
9166 * state (e.g. leave guest mode) after we've saved the state into the
9167 * SMM state-save area.
Ladi Prosek0234bf82017-10-11 16:54:40 +02009168 */
Sean Christophersonecc513e2021-06-09 11:56:19 -07009169 static_call(kvm_x86_enter_smm)(vcpu, buf);
Ladi Prosek0234bf82017-10-11 16:54:40 +02009170
Sean Christophersondc872752021-06-09 11:56:15 -07009171 kvm_smm_changed(vcpu, true);
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009172 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009173
Jason Baronb36464772021-01-14 22:27:56 -05009174 if (static_call(kvm_x86_get_nmi_mask)(vcpu))
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009175 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
9176 else
Jason Baronb36464772021-01-14 22:27:56 -05009177 static_call(kvm_x86_set_nmi_mask)(vcpu, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009178
9179 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
9180 kvm_rip_write(vcpu, 0x8000);
9181
9182 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
Jason Baronb36464772021-01-14 22:27:56 -05009183 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009184 vcpu->arch.cr0 = cr0;
9185
Jason Baronb36464772021-01-14 22:27:56 -05009186 static_call(kvm_x86_set_cr4)(vcpu, 0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009187
Paolo Bonzini18c36262015-08-07 12:27:54 +02009188 /* Undocumented: IDT limit is set to zero on entry to SMM. */
9189 dt.address = dt.size = 0;
Jason Baronb36464772021-01-14 22:27:56 -05009190 static_call(kvm_x86_set_idt)(vcpu, &dt);
Paolo Bonzini18c36262015-08-07 12:27:54 +02009191
Paolo Bonzini996ff542020-12-14 07:49:54 -05009192 kvm_set_dr(vcpu, 7, DR7_FIXED_1);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009193
9194 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
9195 cs.base = vcpu->arch.smbase;
9196
9197 ds.selector = 0;
9198 ds.base = 0;
9199
9200 cs.limit = ds.limit = 0xffffffff;
9201 cs.type = ds.type = 0x3;
9202 cs.dpl = ds.dpl = 0;
9203 cs.db = ds.db = 0;
9204 cs.s = ds.s = 1;
9205 cs.l = ds.l = 0;
9206 cs.g = ds.g = 1;
9207 cs.avl = ds.avl = 0;
9208 cs.present = ds.present = 1;
9209 cs.unusable = ds.unusable = 0;
9210 cs.padding = ds.padding = 0;
9211
9212 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
9213 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
9214 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
9215 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
9216 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
9217 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
9218
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009219#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009220 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Jason Baronb36464772021-01-14 22:27:56 -05009221 static_call(kvm_x86_set_efer)(vcpu, 0);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009222#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009223
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08009224 kvm_update_cpuid_runtime(vcpu);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009225 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009226}
9227
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009228static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009229{
9230 vcpu->arch.smi_pending = true;
9231 kvm_make_request(KVM_REQ_EVENT, vcpu);
9232}
9233
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009234void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
9235 unsigned long *vcpu_bitmap)
9236{
Vitaly Kuznetsov620b2432021-09-03 09:51:41 +02009237 kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC, vcpu_bitmap);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009238}
9239
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01009240void kvm_make_scan_ioapic_request(struct kvm *kvm)
9241{
9242 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
9243}
9244
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009245void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
9246{
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009247 bool activate;
9248
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009249 if (!lapic_in_kernel(vcpu))
9250 return;
9251
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009252 mutex_lock(&vcpu->kvm->arch.apicv_update_lock);
9253
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009254 activate = kvm_apicv_activated(vcpu->kvm);
9255 if (vcpu->arch.apicv_active == activate)
9256 goto out;
9257
9258 vcpu->arch.apicv_active = activate;
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009259 kvm_apic_update_apicv(vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009260 static_call(kvm_x86_refresh_apicv_exec_ctrl)(vcpu);
Vitaly Kuznetsovbca66db2021-06-09 17:09:10 +02009261
9262 /*
9263 * When APICv gets disabled, we may still have injected interrupts
9264 * pending. At the same time, KVM_REQ_EVENT may not be set as APICv was
9265 * still active when the interrupt got accepted. Make sure
9266 * inject_pending_event() is called to check for that.
9267 */
9268 if (!vcpu->arch.apicv_active)
9269 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009270
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009271out:
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009272 mutex_unlock(&vcpu->kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009273}
9274EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv);
9275
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009276void __kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009277{
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009278 unsigned long old, new;
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009279
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009280 if (!kvm_x86_ops.check_apicv_inhibit_reasons ||
Jason Baronb36464772021-01-14 22:27:56 -05009281 !static_call(kvm_x86_check_apicv_inhibit_reasons)(bit))
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06009282 return;
9283
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009284 old = new = kvm->arch.apicv_inhibit_reasons;
9285
9286 if (activate)
9287 __clear_bit(bit, &new);
9288 else
9289 __set_bit(bit, &new);
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009290
Maxim Levitsky36222b12021-08-10 23:52:43 +03009291 if (!!old != !!new) {
9292 trace_kvm_apicv_update_request(activate, bit);
9293 kvm_make_all_cpus_request(kvm, KVM_REQ_APICV_UPDATE);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009294 kvm->arch.apicv_inhibit_reasons = new;
Maxim Levitsky36222b12021-08-10 23:52:43 +03009295 if (new) {
9296 unsigned long gfn = gpa_to_gfn(APIC_DEFAULT_PHYS_BASE);
Maxim Levitsky36222b12021-08-10 23:52:43 +03009297 kvm_zap_gfn_range(kvm, gfn, gfn+1);
9298 }
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009299 } else
9300 kvm->arch.apicv_inhibit_reasons = new;
9301}
9302EXPORT_SYMBOL_GPL(__kvm_request_apicv_update);
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05009303
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009304void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
9305{
9306 mutex_lock(&kvm->arch.apicv_update_lock);
9307 __kvm_request_apicv_update(kvm, activate, bit);
9308 mutex_unlock(&kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009309}
9310EXPORT_SYMBOL_GPL(kvm_request_apicv_update);
9311
Yang Zhang3d81bc72013-04-11 19:25:13 +08009312static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009313{
Wanpeng Lidcbd3e42018-12-17 10:43:23 +08009314 if (!kvm_apic_present(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08009315 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009316
Andrey Smetanin63086302015-11-10 15:36:32 +03009317 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009318
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07009319 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03009320 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009321 else {
Liran Alonfa59cc02017-12-24 18:12:53 +02009322 if (vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05009323 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Wanpeng Lie97f8522018-11-20 16:34:18 +08009324 if (ioapic_in_kernel(vcpu->kvm))
9325 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009326 }
Liran Alone40ff1d2018-03-21 02:50:31 +02009327
9328 if (is_guest_mode(vcpu))
9329 vcpu->arch.load_eoi_exitmap_pending = true;
9330 else
9331 kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu);
9332}
9333
9334static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
9335{
9336 u64 eoi_exit_bitmap[4];
9337
9338 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
9339 return;
9340
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009341 if (to_hv_vcpu(vcpu))
9342 bitmap_or((ulong *)eoi_exit_bitmap,
9343 vcpu->arch.ioapic_handled_vectors,
9344 to_hv_synic(vcpu)->vec_bitmap, 256);
9345
Jason Baronb36464772021-01-14 22:27:56 -05009346 static_call(kvm_x86_load_eoi_exitmap)(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009347}
9348
Eiichi Tsukatae649b3f2020-06-06 13:26:27 +09009349void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
9350 unsigned long start, unsigned long end)
Radim Krčmářb1394e72017-11-30 19:05:45 +01009351{
9352 unsigned long apic_address;
9353
9354 /*
9355 * The physical address of apic access page is stored in the VMCS.
9356 * Update it when it becomes invalid.
9357 */
9358 apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
9359 if (start <= apic_address && apic_address < end)
9360 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
9361}
9362
Tang Chen4256f432014-09-24 15:57:54 +08009363void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
9364{
Paolo Bonzini35754c92015-07-29 12:05:37 +02009365 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02009366 return;
9367
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009368 if (!kvm_x86_ops.set_apic_access_page_addr)
Tang Chen4256f432014-09-24 15:57:54 +08009369 return;
9370
Jason Baronb36464772021-01-14 22:27:56 -05009371 static_call(kvm_x86_set_apic_access_page_addr)(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009372}
Tang Chen4256f432014-09-24 15:57:54 +08009373
Sean Christophersond264ee02018-08-27 15:21:12 -07009374void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu)
9375{
9376 smp_send_reschedule(vcpu->cpu);
9377}
9378EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit);
9379
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009380/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01009381 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009382 * exiting to the userspace. Otherwise, the value will be returned to the
9383 * userspace.
9384 */
Avi Kivity851ba692009-08-24 11:10:17 +03009385static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009386{
9387 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08009388 bool req_int_win =
9389 dm_request_for_irq_injection(vcpu) &&
9390 kvm_cpu_accept_dm_intr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08009391 fastpath_t exit_fastpath;
Matt Gingell62a193e2015-11-16 15:26:07 -08009392
Jan Kiszka730dca42013-04-28 10:50:52 +02009393 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009394
Peter Xufb04a1e2020-09-30 21:22:22 -04009395 /* Forbid vmenter if vcpu dirty ring is soft-full */
9396 if (unlikely(vcpu->kvm->dirty_ring_size &&
9397 kvm_dirty_ring_soft_full(&vcpu->dirty_ring))) {
9398 vcpu->run->exit_reason = KVM_EXIT_DIRTY_RING_FULL;
9399 trace_kvm_dirty_ring_exit(vcpu);
9400 r = 0;
9401 goto out;
9402 }
9403
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02009404 if (kvm_request_pending(vcpu)) {
Sean Christopherson67369272021-07-02 15:04:25 -07009405 if (kvm_check_request(KVM_REQ_VM_BUGGED, vcpu)) {
9406 r = -EIO;
9407 goto out;
9408 }
Paolo Bonzini729c15c2020-09-22 06:53:57 -04009409 if (kvm_check_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu)) {
Paolo Bonzini9a78e152021-01-08 11:43:08 -05009410 if (unlikely(!kvm_x86_ops.nested_ops->get_nested_state_pages(vcpu))) {
Jim Mattson671ddc72019-10-15 10:44:05 -07009411 r = 0;
9412 goto out;
9413 }
9414 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009415 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05009416 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03009417 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03009418 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02009419 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00009420 kvm_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03009421 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
9422 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10009423 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
9424 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10009425 if (unlikely(r))
9426 goto out;
9427 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009428 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03009429 kvm_mmu_sync_roots(vcpu);
Paolo Bonzini727a7e22020-03-05 03:52:50 -05009430 if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu))
9431 kvm_mmu_load_pgd(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009432 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
Sean Christopherson77809382020-03-20 14:28:18 -07009433 kvm_vcpu_flush_tlb_all(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009434
9435 /* Flushing all ASIDs flushes the current ASID... */
9436 kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
9437 }
9438 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
9439 kvm_vcpu_flush_tlb_current(vcpu);
Sean Christopherson07ffaf32021-06-09 16:42:21 -07009440 if (kvm_check_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu))
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04009441 kvm_vcpu_flush_tlb_guest(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009442
Avi Kivitya8eeb042010-05-10 12:34:53 +03009443 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009444 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02009445 r = 0;
9446 goto out;
9447 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009448 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009449 if (is_guest_mode(vcpu)) {
9450 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9451 } else {
9452 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
9453 vcpu->mmio_needed = 0;
9454 r = 0;
9455 goto out;
9456 }
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01009457 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009458 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
9459 /* Page is swapped out. Do synthetic halt */
9460 vcpu->arch.apf.halted = true;
9461 r = 1;
9462 goto out;
9463 }
Glauber Costac9aaa892011-07-11 15:28:14 -04009464 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
9465 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009466 if (kvm_check_request(KVM_REQ_SMI, vcpu))
9467 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009468 if (kvm_check_request(KVM_REQ_NMI, vcpu))
9469 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009470 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009471 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009472 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009473 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07009474 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
9475 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
9476 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03009477 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07009478 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
9479 vcpu->run->eoi.vector =
9480 vcpu->arch.pending_ioapic_eoi;
9481 r = 0;
9482 goto out;
9483 }
9484 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08009485 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
9486 vcpu_scan_ioapic(vcpu);
Liran Alone40ff1d2018-03-21 02:50:31 +02009487 if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu))
9488 vcpu_load_eoi_exitmap(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009489 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
9490 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03009491 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
9492 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9493 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
9494 r = 0;
9495 goto out;
9496 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03009497 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
9498 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9499 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
9500 r = 0;
9501 goto out;
9502 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03009503 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009504 struct kvm_vcpu_hv *hv_vcpu = to_hv_vcpu(vcpu);
9505
Andrey Smetanindb3975712015-11-10 15:36:35 +03009506 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009507 vcpu->run->hyperv = hv_vcpu->exit;
Andrey Smetanindb3975712015-11-10 15:36:35 +03009508 r = 0;
9509 goto out;
9510 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03009511
9512 /*
9513 * KVM_REQ_HV_STIMER has to be processed after
9514 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
9515 * depend on the guest clock being up-to-date
9516 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03009517 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
9518 kvm_hv_process_stimers(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009519 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
9520 kvm_vcpu_update_apicv(vcpu);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02009521 if (kvm_check_request(KVM_REQ_APF_READY, vcpu))
9522 kvm_check_async_pf_completion(vcpu);
Alexander Graf1a1552542020-09-25 16:34:21 +02009523 if (kvm_check_request(KVM_REQ_MSR_FILTER_CHANGED, vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009524 static_call(kvm_x86_msr_filter_changed)(vcpu);
Makarand Sonarea85863c2021-02-12 16:50:12 -08009525
9526 if (kvm_check_request(KVM_REQ_UPDATE_CPU_DIRTY_LOGGING, vcpu))
9527 static_call(kvm_x86_update_cpu_dirty_logging)(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02009528 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009529
David Woodhouse40da8cc2020-12-09 20:08:30 +00009530 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win ||
9531 kvm_xen_has_interrupt(vcpu)) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01009532 ++vcpu->stat.req_event;
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009533 r = kvm_apic_accept_events(vcpu);
9534 if (r < 0) {
9535 r = 0;
9536 goto out;
9537 }
Jan Kiszka66450a22013-03-13 12:42:34 +01009538 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
9539 r = 1;
9540 goto out;
9541 }
9542
Jim Mattsona5f69092021-06-04 10:26:03 -07009543 r = inject_pending_event(vcpu, &req_immediate_exit);
9544 if (r < 0) {
9545 r = 0;
9546 goto out;
9547 }
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009548 if (req_int_win)
Jason Baronb36464772021-01-14 22:27:56 -05009549 static_call(kvm_x86_enable_irq_window)(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03009550
Avi Kivity3842d132010-07-27 12:30:24 +03009551 if (kvm_lapic_enabled(vcpu)) {
9552 update_cr8_intercept(vcpu);
9553 kvm_lapic_sync_to_vapic(vcpu);
9554 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009555 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009556
Avi Kivityd8368af2012-05-14 18:07:56 +03009557 r = kvm_mmu_reload(vcpu);
9558 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009559 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03009560 }
9561
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009562 preempt_disable();
9563
Jason Baronb36464772021-01-14 22:27:56 -05009564 static_call(kvm_x86_prepare_guest_switch)(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009565
9566 /*
9567 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
9568 * IPI are then delayed after guest entry, which ensures that they
9569 * result in virtual interrupt delivery.
9570 */
9571 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009572 vcpu->mode = IN_GUEST_MODE;
9573
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009574 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
9575
Lan Tianyu0f127d12016-03-13 11:10:29 +08009576 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009577 * 1) We should set ->mode before checking ->requests. Please see
Andrew Jonescde9af62017-04-26 22:32:24 +02009578 * the comment in kvm_vcpu_exiting_guest_mode().
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009579 *
Luwei Kang81b01662019-01-31 16:52:02 +08009580 * 2) For APICv, we should set ->mode before checking PID.ON. This
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009581 * pairs with the memory barrier implicit in pi_test_and_set_on
9582 * (see vmx_deliver_posted_interrupt).
9583 *
9584 * 3) This also orders the write to mode from any reads to the page
9585 * tables done while the VCPU is running. Please see the comment
9586 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009587 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009588 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009589
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009590 /*
9591 * This handles the case where a posted interrupt was
9592 * notified with kvm_vcpu_kick.
9593 */
Liran Alonfa59cc02017-12-24 18:12:53 +02009594 if (kvm_lapic_enabled(vcpu) && vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05009595 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009596
Wanpeng Li5a9f5442020-04-28 14:23:26 +08009597 if (kvm_vcpu_exit_request(vcpu)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009598 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009599 smp_wmb();
9600 local_irq_enable();
9601 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009602 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009603 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009604 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009605 }
9606
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009607 if (req_immediate_exit) {
9608 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009609 static_call(kvm_x86_request_immediate_exit)(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009610 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03009611
Sean Christopherson2620fe22020-01-17 11:30:51 -08009612 fpregs_assert_state_consistent();
9613 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9614 switch_fpu_return();
Rik van Riel5f409e22019-04-03 18:41:52 +02009615
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009616 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009617 set_debugreg(0, 7);
9618 set_debugreg(vcpu->arch.eff_db[0], 0);
9619 set_debugreg(vcpu->arch.eff_db[1], 1);
9620 set_debugreg(vcpu->arch.eff_db[2], 2);
9621 set_debugreg(vcpu->arch.eff_db[3], 3);
Lai Jiangshanf85d4012021-06-29 01:26:32 +08009622 } else if (unlikely(hw_breakpoint_active())) {
9623 set_debugreg(0, 7);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009624 }
9625
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05009626 for (;;) {
9627 exit_fastpath = static_call(kvm_x86_run)(vcpu);
9628 if (likely(exit_fastpath != EXIT_FASTPATH_REENTER_GUEST))
9629 break;
9630
9631 if (unlikely(kvm_vcpu_exit_request(vcpu))) {
9632 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
9633 break;
9634 }
9635
9636 if (vcpu->arch.apicv_active)
9637 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
9638 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009639
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009640 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009641 * Do this here before restoring debug registers on the host. And
9642 * since we do this before handling the vmexit, a DR access vmexit
9643 * can (a) read the correct value of the debug registers, (b) set
9644 * KVM_DEBUGREG_WONT_EXIT again.
9645 */
9646 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009647 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
Jason Baronb36464772021-01-14 22:27:56 -05009648 static_call(kvm_x86_sync_dirty_debug_regs)(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009649 kvm_update_dr0123(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009650 kvm_update_dr7(vcpu);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009651 }
9652
9653 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009654 * If the guest has used debug registers, at least dr7
9655 * will be disabled while returning to the host.
9656 * If we don't have active breakpoints in the host, we don't
9657 * care about the messed up debug address registers. But if
9658 * we have some of them active, restore the old state.
9659 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01009660 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009661 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009662
Jim Mattsonc9671182020-06-03 16:56:23 -07009663 vcpu->arch.last_vmentry_cpu = vcpu->cpu;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08009664 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10009665
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009666 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03009667 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08009668
Jason Baronb36464772021-01-14 22:27:56 -05009669 static_call(kvm_x86_handle_exit_irqoff)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009670
Sean Christophersond7a08882019-07-10 09:07:34 -07009671 /*
9672 * Consume any pending interrupts, including the possible source of
9673 * VM-Exit on SVM and any ticks that occur between VM-Exit and now.
9674 * An instruction is required after local_irq_enable() to fully unblock
9675 * interrupts on processors that implement an interrupt shadow, the
9676 * stat.exits increment will do nicely.
9677 */
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009678 kvm_before_interrupt(vcpu);
Sean Christophersond7a08882019-07-10 09:07:34 -07009679 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009680 ++vcpu->stat.exits;
Sean Christophersond7a08882019-07-10 09:07:34 -07009681 local_irq_disable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009682 kvm_after_interrupt(vcpu);
9683
Wanpeng Li16045712021-05-04 17:27:30 -07009684 /*
9685 * Wait until after servicing IRQs to account guest time so that any
9686 * ticks that occurred while running the guest are properly accounted
9687 * to the guest. Waiting until IRQs are enabled degrades the accuracy
9688 * of accounting via context tracking, but the loss of accuracy is
9689 * acceptable for all known use cases.
9690 */
9691 vtime_account_guest_exit();
9692
Wanpeng Liec0671d2019-05-20 16:18:08 +08009693 if (lapic_in_kernel(vcpu)) {
9694 s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta;
9695 if (delta != S64_MIN) {
9696 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta);
9697 vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN;
9698 }
9699 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009700
Paolo Bonzinif2485b32016-06-15 15:23:11 +02009701 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009702 preempt_enable();
9703
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009704 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03009705
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009706 /*
9707 * Profile KVM exit RIPs:
9708 */
9709 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009710 unsigned long rip = kvm_rip_read(vcpu);
9711 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009712 }
9713
Zachary Amsdencc578282012-02-03 15:43:50 -02009714 if (unlikely(vcpu->arch.tsc_always_catchup))
9715 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02009716
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03009717 if (vcpu->arch.apic_attention)
9718 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02009719
Jason Baronb36464772021-01-14 22:27:56 -05009720 r = static_call(kvm_x86_handle_exit)(vcpu, exit_fastpath);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009721 return r;
9722
9723cancel_injection:
Sean Christopherson8081ad02020-04-22 19:25:40 -07009724 if (req_immediate_exit)
9725 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009726 static_call(kvm_x86_cancel_injection)(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03009727 if (unlikely(vcpu->arch.apic_attention))
9728 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009729out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03009730 return r;
9731}
9732
Paolo Bonzini362c6982015-02-06 12:48:04 +01009733static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
9734{
Feng Wubf9f6ac2015-09-18 22:29:55 +08009735 if (!kvm_arch_vcpu_runnable(vcpu) &&
Jason Baronb36464772021-01-14 22:27:56 -05009736 (!kvm_x86_ops.pre_block || static_call(kvm_x86_pre_block)(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01009737 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
9738 kvm_vcpu_block(vcpu);
9739 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009740
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009741 if (kvm_x86_ops.post_block)
Jason Baronb36464772021-01-14 22:27:56 -05009742 static_call(kvm_x86_post_block)(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009743
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01009744 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
9745 return 1;
9746 }
Gleb Natapov09cec752009-03-23 15:11:44 +02009747
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009748 if (kvm_apic_accept_events(vcpu) < 0)
9749 return 0;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009750 switch(vcpu->arch.mp_state) {
9751 case KVM_MP_STATE_HALTED:
Tom Lendacky647daca2021-01-04 14:20:01 -06009752 case KVM_MP_STATE_AP_RESET_HOLD:
Paolo Bonzini362c6982015-02-06 12:48:04 +01009753 vcpu->arch.pv.pv_unhalted = false;
9754 vcpu->arch.mp_state =
9755 KVM_MP_STATE_RUNNABLE;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05009756 fallthrough;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009757 case KVM_MP_STATE_RUNNABLE:
9758 vcpu->arch.apf.halted = false;
9759 break;
9760 case KVM_MP_STATE_INIT_RECEIVED:
9761 break;
9762 default:
9763 return -EINTR;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009764 }
9765 return 1;
9766}
9767
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02009768static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
9769{
Paolo Bonzini56083bd2020-04-17 10:32:53 -04009770 if (is_guest_mode(vcpu))
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009771 kvm_check_nested_events(vcpu);
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +01009772
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02009773 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
9774 !vcpu->arch.apf.halted);
9775}
9776
Paolo Bonzini362c6982015-02-06 12:48:04 +01009777static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03009778{
9779 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009780 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03009781
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009782 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +02009783 vcpu->arch.l1tf_flush_l1d = true;
Marcelo Tosattid7690172008-09-08 15:23:48 -03009784
Paolo Bonzini362c6982015-02-06 12:48:04 +01009785 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +02009786 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009787 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009788 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +01009789 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009790 }
9791
Gleb Natapov09cec752009-03-23 15:11:44 +02009792 if (r <= 0)
9793 break;
9794
Marcelo Tosatti084071d2021-05-25 10:41:17 -03009795 kvm_clear_request(KVM_REQ_UNBLOCK, vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +02009796 if (kvm_cpu_has_pending_timer(vcpu))
9797 kvm_inject_pending_timer_irqs(vcpu);
9798
Matt Gingell782d4222015-11-16 15:26:00 -08009799 if (dm_request_for_irq_injection(vcpu) &&
9800 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +02009801 r = 0;
9802 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +02009803 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009804 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02009805 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009806
Thomas Gleixnerf3020b82020-07-30 09:19:01 +02009807 if (__xfer_to_guest_mode_work_pending()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009808 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02009809 r = xfer_to_guest_mode_handle_work(vcpu);
9810 if (r)
9811 return r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009812 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03009813 }
9814 }
9815
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009816 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009817
9818 return r;
9819}
9820
Gleb Natapov716d51a2012-09-03 15:24:26 +03009821static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
9822{
9823 int r;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07009824
Gleb Natapov716d51a2012-09-03 15:24:26 +03009825 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Sean Christopherson0ce97a22018-08-23 13:56:52 -07009826 r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
Gleb Natapov716d51a2012-09-03 15:24:26 +03009827 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07009828 return r;
Gleb Natapov716d51a2012-09-03 15:24:26 +03009829}
9830
9831static int complete_emulated_pio(struct kvm_vcpu *vcpu)
9832{
9833 BUG_ON(!vcpu->arch.pio.count);
9834
9835 return complete_emulated_io(vcpu);
9836}
9837
Avi Kivityf78146b2012-04-18 19:22:47 +03009838/*
9839 * Implements the following, as a state machine:
9840 *
9841 * read:
9842 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009843 * for each mmio piece in the fragment
9844 * write gpa, len
9845 * exit
9846 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03009847 * execute insn
9848 *
9849 * write:
9850 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009851 * for each mmio piece in the fragment
9852 * write gpa, len
9853 * copy data
9854 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03009855 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03009856static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02009857{
9858 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03009859 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009860 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02009861
Gleb Natapov716d51a2012-09-03 15:24:26 +03009862 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02009863
Gleb Natapov716d51a2012-09-03 15:24:26 +03009864 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009865 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
9866 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03009867 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009868 memcpy(frag->data, run->mmio.data, len);
9869
9870 if (frag->len <= 8) {
9871 /* Switch to the next fragment. */
9872 frag++;
9873 vcpu->mmio_cur_fragment++;
9874 } else {
9875 /* Go forward to the next mmio piece. */
9876 frag->data += len;
9877 frag->gpa += len;
9878 frag->len -= len;
9879 }
9880
Andrew Honiga08d3b32014-02-27 19:35:14 +01009881 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03009882 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02009883
9884 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02009885 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03009886 return 1;
9887 vcpu->mmio_read_completed = 1;
9888 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02009889 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009890
Gleb Natapov716d51a2012-09-03 15:24:26 +03009891 run->exit_reason = KVM_EXIT_MMIO;
9892 run->mmio.phys_addr = frag->gpa;
9893 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009894 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
9895 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03009896 run->mmio.is_write = vcpu->mmio_is_write;
9897 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
9898 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02009899}
9900
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009901static void kvm_save_current_fpu(struct fpu *fpu)
9902{
9903 /*
9904 * If the target FPU state is not resident in the CPU registers, just
9905 * memcpy() from current, else save CPU state directly to the target.
9906 */
9907 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9908 memcpy(&fpu->state, &current->thread.fpu.state,
9909 fpu_kernel_xstate_size);
9910 else
Thomas Gleixnerebe72342021-06-23 14:01:59 +02009911 save_fpregs_to_fpstate(fpu);
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009912}
9913
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02009914/* Swap (qemu) user FPU context for the guest FPU context. */
9915static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
9916{
Rik van Riel5f409e22019-04-03 18:41:52 +02009917 fpregs_lock();
9918
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009919 kvm_save_current_fpu(vcpu->arch.user_fpu);
9920
Tom Lendackyed02b212020-12-10 11:10:01 -06009921 /*
9922 * Guests with protected state can't have it set by the hypervisor,
9923 * so skip trying to set it.
9924 */
9925 if (vcpu->arch.guest_fpu)
9926 /* PKRU is separately restored in kvm_x86_ops.run. */
Thomas Gleixner1c61fad2021-06-23 14:02:01 +02009927 __restore_fpregs_from_fpstate(&vcpu->arch.guest_fpu->state,
Tom Lendackyed02b212020-12-10 11:10:01 -06009928 ~XFEATURE_MASK_PKRU);
Rik van Riel5f409e22019-04-03 18:41:52 +02009929
9930 fpregs_mark_activate();
9931 fpregs_unlock();
9932
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02009933 trace_kvm_fpu(1);
9934}
9935
9936/* When vcpu_run ends, restore user space FPU context. */
9937static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
9938{
Rik van Riel5f409e22019-04-03 18:41:52 +02009939 fpregs_lock();
9940
Tom Lendackyed02b212020-12-10 11:10:01 -06009941 /*
9942 * Guests with protected state can't have it read by the hypervisor,
9943 * so skip trying to save it.
9944 */
9945 if (vcpu->arch.guest_fpu)
9946 kvm_save_current_fpu(vcpu->arch.guest_fpu);
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009947
Thomas Gleixner1c61fad2021-06-23 14:02:01 +02009948 restore_fpregs_from_fpstate(&vcpu->arch.user_fpu->state);
Rik van Riel5f409e22019-04-03 18:41:52 +02009949
9950 fpregs_mark_activate();
9951 fpregs_unlock();
9952
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02009953 ++vcpu->stat.fpu_reload;
9954 trace_kvm_fpu(0);
9955}
9956
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009957int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009958{
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009959 struct kvm_run *kvm_run = vcpu->run;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009960 int r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009961
Christoffer Dallaccb7572017-12-04 21:35:25 +01009962 vcpu_load(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +01009963 kvm_sigset_activate(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08009964 kvm_run->flags = 0;
Peter Xu5663d8f2017-12-12 17:15:02 +01009965 kvm_load_guest_fpu(vcpu);
9966
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009967 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
Jan H. Schönherr2f173d22017-09-06 18:34:06 +02009968 if (kvm_run->immediate_exit) {
9969 r = -EINTR;
9970 goto out;
9971 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009972 kvm_vcpu_block(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009973 if (kvm_apic_accept_events(vcpu) < 0) {
9974 r = 0;
9975 goto out;
9976 }
Radim Krčmář72875d82017-04-26 22:32:19 +02009977 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009978 r = -EAGAIN;
Jan H. Schönherra0595002017-09-06 00:27:19 +02009979 if (signal_pending(current)) {
9980 r = -EINTR;
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009981 kvm_run->exit_reason = KVM_EXIT_INTR;
Jan H. Schönherra0595002017-09-06 00:27:19 +02009982 ++vcpu->stat.signal_exits;
9983 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009984 goto out;
9985 }
9986
Sean Christophersone489a4a2021-07-02 15:04:29 -07009987 if ((kvm_run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) ||
9988 (kvm_run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS)) {
Ken Hofsass01643c52018-01-31 16:03:36 -08009989 r = -EINVAL;
9990 goto out;
9991 }
9992
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009993 if (kvm_run->kvm_dirty_regs) {
Ken Hofsass01643c52018-01-31 16:03:36 -08009994 r = sync_regs(vcpu);
9995 if (r != 0)
9996 goto out;
9997 }
9998
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009999 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +020010000 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +010010001 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
10002 r = -EINVAL;
10003 goto out;
10004 }
10005 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010006
Gleb Natapov716d51a2012-09-03 15:24:26 +030010007 if (unlikely(vcpu->arch.complete_userspace_io)) {
10008 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
10009 vcpu->arch.complete_userspace_io = NULL;
10010 r = cui(vcpu);
10011 if (r <= 0)
Peter Xu5663d8f2017-12-12 17:15:02 +010010012 goto out;
Gleb Natapov716d51a2012-09-03 15:24:26 +030010013 } else
10014 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +020010015
Paolo Bonzini460df4c2017-02-08 11:50:15 +010010016 if (kvm_run->immediate_exit)
10017 r = -EINTR;
10018 else
10019 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010020
10021out:
Peter Xu5663d8f2017-12-12 17:15:02 +010010022 kvm_put_guest_fpu(vcpu);
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010023 if (kvm_run->kvm_valid_regs)
Ken Hofsass01643c52018-01-31 16:03:36 -080010024 store_regs(vcpu);
Marcelo Tosattif1d86e42010-05-03 23:04:27 -030010025 post_kvm_run_save(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010026 kvm_sigset_deactivate(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010027
Christoffer Dallaccb7572017-12-04 21:35:25 +010010028 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010029 return r;
10030}
10031
Ken Hofsass01643c52018-01-31 16:03:36 -080010032static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010033{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010034 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
10035 /*
10036 * We are here if userspace calls get_regs() in the middle of
10037 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +080010038 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010039 * that usually, but some bad designed PV devices (vmware
10040 * backdoor interface) need this to work
10041 */
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010042 emulator_writeback_register_cache(vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010043 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10044 }
Sean Christophersonde3cd112019-04-30 10:36:17 -070010045 regs->rax = kvm_rax_read(vcpu);
10046 regs->rbx = kvm_rbx_read(vcpu);
10047 regs->rcx = kvm_rcx_read(vcpu);
10048 regs->rdx = kvm_rdx_read(vcpu);
10049 regs->rsi = kvm_rsi_read(vcpu);
10050 regs->rdi = kvm_rdi_read(vcpu);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010051 regs->rsp = kvm_rsp_read(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010052 regs->rbp = kvm_rbp_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010053#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010054 regs->r8 = kvm_r8_read(vcpu);
10055 regs->r9 = kvm_r9_read(vcpu);
10056 regs->r10 = kvm_r10_read(vcpu);
10057 regs->r11 = kvm_r11_read(vcpu);
10058 regs->r12 = kvm_r12_read(vcpu);
10059 regs->r13 = kvm_r13_read(vcpu);
10060 regs->r14 = kvm_r14_read(vcpu);
10061 regs->r15 = kvm_r15_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010062#endif
10063
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010064 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +020010065 regs->rflags = kvm_get_rflags(vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010066}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010067
Ken Hofsass01643c52018-01-31 16:03:36 -080010068int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10069{
10070 vcpu_load(vcpu);
10071 __get_regs(vcpu, regs);
Christoffer Dall1fc9b762017-12-04 21:35:26 +010010072 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010073 return 0;
10074}
10075
Ken Hofsass01643c52018-01-31 16:03:36 -080010076static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010077{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010078 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
10079 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10080
Sean Christophersonde3cd112019-04-30 10:36:17 -070010081 kvm_rax_write(vcpu, regs->rax);
10082 kvm_rbx_write(vcpu, regs->rbx);
10083 kvm_rcx_write(vcpu, regs->rcx);
10084 kvm_rdx_write(vcpu, regs->rdx);
10085 kvm_rsi_write(vcpu, regs->rsi);
10086 kvm_rdi_write(vcpu, regs->rdi);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010087 kvm_rsp_write(vcpu, regs->rsp);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010088 kvm_rbp_write(vcpu, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010089#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010090 kvm_r8_write(vcpu, regs->r8);
10091 kvm_r9_write(vcpu, regs->r9);
10092 kvm_r10_write(vcpu, regs->r10);
10093 kvm_r11_write(vcpu, regs->r11);
10094 kvm_r12_write(vcpu, regs->r12);
10095 kvm_r13_write(vcpu, regs->r13);
10096 kvm_r14_write(vcpu, regs->r14);
10097 kvm_r15_write(vcpu, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010098#endif
10099
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010100 kvm_rip_write(vcpu, regs->rip);
Wanpeng Lid73235d2017-12-07 00:30:08 -080010101 kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010102
Jan Kiszkab4f14ab2008-04-30 17:59:04 +020010103 vcpu->arch.exception.pending = false;
10104
Avi Kivity3842d132010-07-27 12:30:24 +030010105 kvm_make_request(KVM_REQ_EVENT, vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010106}
Avi Kivity3842d132010-07-27 12:30:24 +030010107
Ken Hofsass01643c52018-01-31 16:03:36 -080010108int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10109{
10110 vcpu_load(vcpu);
10111 __set_regs(vcpu, regs);
Christoffer Dall875656f2017-12-04 21:35:27 +010010112 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010113 return 0;
10114}
10115
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010116void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
10117{
10118 struct kvm_segment cs;
10119
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010120 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010121 *db = cs.db;
10122 *l = cs.l;
10123}
10124EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
10125
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010126static void __get_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010127{
Gleb Natapov89a27f42010-02-16 10:51:48 +020010128 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010129
Tom Lendacky52657132020-12-10 11:09:59 -060010130 if (vcpu->arch.guest_state_protected)
10131 goto skip_protected_regs;
10132
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010133 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10134 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10135 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10136 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10137 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10138 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010139
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010140 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10141 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010142
Jason Baronb36464772021-01-14 22:27:56 -050010143 static_call(kvm_x86_get_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010144 sregs->idt.limit = dt.size;
10145 sregs->idt.base = dt.address;
Jason Baronb36464772021-01-14 22:27:56 -050010146 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010147 sregs->gdt.limit = dt.size;
10148 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010149
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010150 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +020010151 sregs->cr3 = kvm_read_cr3(vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010152
10153skip_protected_regs:
10154 sregs->cr0 = kvm_read_cr0(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +020010155 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010156 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +020010157 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010158 sregs->apic_base = kvm_get_apic_base(vcpu);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010159}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010160
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010161static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10162{
10163 __get_sregs_common(vcpu, sregs);
10164
10165 if (vcpu->arch.guest_state_protected)
10166 return;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010167
Liran Alon04140b42018-03-23 03:01:31 +030010168 if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +030010169 set_bit(vcpu->arch.interrupt.nr,
10170 (unsigned long *)sregs->interrupt_bitmap);
Ken Hofsass01643c52018-01-31 16:03:36 -080010171}
Gleb Natapov16d7a192009-04-21 17:45:10 +030010172
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010173static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10174{
10175 int i;
10176
10177 __get_sregs_common(vcpu, (struct kvm_sregs *)sregs2);
10178
10179 if (vcpu->arch.guest_state_protected)
10180 return;
10181
10182 if (is_pae_paging(vcpu)) {
10183 for (i = 0 ; i < 4 ; i++)
10184 sregs2->pdptrs[i] = kvm_pdptr_read(vcpu, i);
10185 sregs2->flags |= KVM_SREGS2_FLAGS_PDPTRS_VALID;
10186 }
10187}
10188
Ken Hofsass01643c52018-01-31 16:03:36 -080010189int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
10190 struct kvm_sregs *sregs)
10191{
10192 vcpu_load(vcpu);
10193 __get_sregs(vcpu, sregs);
Christoffer Dallbcdec412017-12-04 21:35:28 +010010194 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010195 return 0;
10196}
10197
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010198int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
10199 struct kvm_mp_state *mp_state)
10200{
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010201 int r;
10202
Christoffer Dallfd232562017-12-04 21:35:30 +010010203 vcpu_load(vcpu);
Sean Christophersonf958bd22019-12-09 12:19:31 -080010204 if (kvm_mpx_supported())
10205 kvm_load_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010206
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010207 r = kvm_apic_accept_events(vcpu);
10208 if (r < 0)
10209 goto out;
10210 r = 0;
10211
Tom Lendacky647daca2021-01-04 14:20:01 -060010212 if ((vcpu->arch.mp_state == KVM_MP_STATE_HALTED ||
10213 vcpu->arch.mp_state == KVM_MP_STATE_AP_RESET_HOLD) &&
10214 vcpu->arch.pv.pv_unhalted)
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +053010215 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
10216 else
10217 mp_state->mp_state = vcpu->arch.mp_state;
10218
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010219out:
Sean Christophersonf958bd22019-12-09 12:19:31 -080010220 if (kvm_mpx_supported())
10221 kvm_put_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010222 vcpu_put(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010223 return r;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010224}
10225
10226int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
10227 struct kvm_mp_state *mp_state)
10228{
Christoffer Dalle83dff52017-12-04 21:35:31 +010010229 int ret = -EINVAL;
10230
10231 vcpu_load(vcpu);
10232
Paolo Bonzinibce87cc2016-01-08 13:48:51 +010010233 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +010010234 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
Christoffer Dalle83dff52017-12-04 21:35:31 +010010235 goto out;
Jan Kiszka66450a22013-03-13 12:42:34 +010010236
Liran Alon27cbe7d2019-11-11 11:16:40 +020010237 /*
10238 * KVM_MP_STATE_INIT_RECEIVED means the processor is in
10239 * INIT state; latched init should be reported using
10240 * KVM_SET_VCPU_EVENTS, so reject it here.
10241 */
10242 if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) &&
David Hildenbrand28bf2882017-03-23 11:46:03 +010010243 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
10244 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
Christoffer Dalle83dff52017-12-04 21:35:31 +010010245 goto out;
David Hildenbrand28bf2882017-03-23 11:46:03 +010010246
Jan Kiszka66450a22013-03-13 12:42:34 +010010247 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
10248 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
10249 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
10250 } else
10251 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +030010252 kvm_make_request(KVM_REQ_EVENT, vcpu);
Christoffer Dalle83dff52017-12-04 21:35:31 +010010253
10254 ret = 0;
10255out:
10256 vcpu_put(vcpu);
10257 return ret;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010258}
10259
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010260int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
10261 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010262{
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010263 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010264 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010265
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010266 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +020010267
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010268 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010269 has_error_code, error_code);
Sean Christopherson10517782019-08-27 14:40:35 -070010270 if (ret) {
10271 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
10272 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
10273 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010274 return 0;
Sean Christopherson10517782019-08-27 14:40:35 -070010275 }
Gleb Natapovc6975182010-02-18 12:15:01 +020010276
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010277 kvm_rip_write(vcpu, ctxt->eip);
10278 kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010279 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +020010280}
10281EXPORT_SYMBOL_GPL(kvm_task_switch);
10282
Sean Christophersonee69c922020-10-06 18:44:16 -070010283static bool kvm_is_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Lan Tianyuf2981032017-12-14 03:01:52 -050010284{
Tianyu Lan37b95952018-01-16 17:34:07 +080010285 if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) {
Lan Tianyuf2981032017-12-14 03:01:52 -050010286 /*
10287 * When EFER.LME and CR0.PG are set, the processor is in
10288 * 64-bit mode (though maybe in a 32-bit code segment).
10289 * CR4.PAE and EFER.LMA must be set.
10290 */
Sean Christophersonee69c922020-10-06 18:44:16 -070010291 if (!(sregs->cr4 & X86_CR4_PAE) || !(sregs->efer & EFER_LMA))
10292 return false;
Sean Christophersonca29e142021-02-03 16:01:12 -080010293 if (kvm_vcpu_is_illegal_gpa(vcpu, sregs->cr3))
Paolo Bonzinic1c35cf2020-11-13 08:30:38 -050010294 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010295 } else {
10296 /*
10297 * Not in 64-bit mode: EFER.LMA is clear and the code
10298 * segment cannot be 64-bit.
10299 */
10300 if (sregs->efer & EFER_LMA || sregs->cs.l)
Sean Christophersonee69c922020-10-06 18:44:16 -070010301 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010302 }
10303
Sean Christophersonee69c922020-10-06 18:44:16 -070010304 return kvm_is_valid_cr4(vcpu, sregs->cr4);
Lan Tianyuf2981032017-12-14 03:01:52 -050010305}
10306
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010307static int __set_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs,
10308 int *mmu_reset_needed, bool update_pdptrs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010309{
Jan Kiszka58cb6282014-01-24 16:48:44 +010010310 struct msr_data apic_base_msr;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010311 int idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +020010312 struct desc_ptr dt;
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010313
Sean Christophersonee69c922020-10-06 18:44:16 -070010314 if (!kvm_is_valid_sregs(vcpu, sregs))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010315 return -EINVAL;
Lan Tianyuf2981032017-12-14 03:01:52 -050010316
Jim Mattsond3802282017-08-10 10:14:13 -070010317 apic_base_msr.data = sregs->apic_base;
10318 apic_base_msr.host_initiated = true;
10319 if (kvm_set_apic_base(vcpu, &apic_base_msr))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010320 return -EINVAL;
Petr Matousek6d1068b2012-11-06 19:24:07 +010010321
Tom Lendacky52657132020-12-10 11:09:59 -060010322 if (vcpu->arch.guest_state_protected)
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010323 return 0;
Tom Lendacky52657132020-12-10 11:09:59 -060010324
Gleb Natapov89a27f42010-02-16 10:51:48 +020010325 dt.size = sregs->idt.limit;
10326 dt.address = sregs->idt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010327 static_call(kvm_x86_set_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010328 dt.size = sregs->gdt.limit;
10329 dt.address = sregs->gdt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010330 static_call(kvm_x86_set_gdt)(vcpu, &dt);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010331
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010332 vcpu->arch.cr2 = sregs->cr2;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010333 *mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +020010334 vcpu->arch.cr3 = sregs->cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -070010335 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010336
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010337 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010338
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010339 *mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Jason Baronb36464772021-01-14 22:27:56 -050010340 static_call(kvm_x86_set_efer)(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010341
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010342 *mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Jason Baronb36464772021-01-14 22:27:56 -050010343 static_call(kvm_x86_set_cr0)(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +000010344 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010345
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010346 *mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Jason Baronb36464772021-01-14 22:27:56 -050010347 static_call(kvm_x86_set_cr4)(vcpu, sregs->cr4);
Xiao Guangrong63f42e02011-01-12 15:39:18 +080010348
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010349 if (update_pdptrs) {
10350 idx = srcu_read_lock(&vcpu->kvm->srcu);
10351 if (is_pae_paging(vcpu)) {
10352 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
10353 *mmu_reset_needed = 1;
10354 }
10355 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Marcelo Tosatti7c93be442009-10-26 16:48:33 -020010356 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010357
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010358 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10359 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10360 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10361 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10362 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10363 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010364
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010365 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10366 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010367
Mikhail Ershov5f0269f2009-08-03 14:58:25 +030010368 update_cr8_intercept(vcpu);
10369
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010370 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +030010371 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010372 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +020010373 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010374 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10375
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010376 return 0;
10377}
10378
10379static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10380{
10381 int pending_vec, max_bits;
10382 int mmu_reset_needed = 0;
10383 int ret = __set_sregs_common(vcpu, sregs, &mmu_reset_needed, true);
10384
10385 if (ret)
10386 return ret;
10387
10388 if (mmu_reset_needed)
10389 kvm_mmu_reset_context(vcpu);
10390
Tom Lendacky52657132020-12-10 11:09:59 -060010391 max_bits = KVM_NR_INTERRUPTS;
10392 pending_vec = find_first_bit(
10393 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010394
Tom Lendacky52657132020-12-10 11:09:59 -060010395 if (pending_vec < max_bits) {
10396 kvm_queue_interrupt(vcpu, pending_vec, false);
10397 pr_debug("Set back pending irq %d\n", pending_vec);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010398 kvm_make_request(KVM_REQ_EVENT, vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010399 }
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010400 return 0;
10401}
Tom Lendacky52657132020-12-10 11:09:59 -060010402
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010403static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10404{
10405 int mmu_reset_needed = 0;
10406 bool valid_pdptrs = sregs2->flags & KVM_SREGS2_FLAGS_PDPTRS_VALID;
10407 bool pae = (sregs2->cr0 & X86_CR0_PG) && (sregs2->cr4 & X86_CR4_PAE) &&
10408 !(sregs2->efer & EFER_LMA);
10409 int i, ret;
Avi Kivity3842d132010-07-27 12:30:24 +030010410
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010411 if (sregs2->flags & ~KVM_SREGS2_FLAGS_PDPTRS_VALID)
10412 return -EINVAL;
10413
10414 if (valid_pdptrs && (!pae || vcpu->arch.guest_state_protected))
10415 return -EINVAL;
10416
10417 ret = __set_sregs_common(vcpu, (struct kvm_sregs *)sregs2,
10418 &mmu_reset_needed, !valid_pdptrs);
10419 if (ret)
10420 return ret;
10421
10422 if (valid_pdptrs) {
10423 for (i = 0; i < 4 ; i++)
10424 kvm_pdptr_write(vcpu, i, sregs2->pdptrs[i]);
10425
10426 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
10427 mmu_reset_needed = 1;
Maxim Levitsky158a48e2021-06-07 12:02:03 +030010428 vcpu->arch.pdptrs_from_userspace = true;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010429 }
10430 if (mmu_reset_needed)
10431 kvm_mmu_reset_context(vcpu);
10432 return 0;
Ken Hofsass01643c52018-01-31 16:03:36 -080010433}
10434
10435int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
10436 struct kvm_sregs *sregs)
10437{
10438 int ret;
10439
10440 vcpu_load(vcpu);
10441 ret = __set_sregs(vcpu, sregs);
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010442 vcpu_put(vcpu);
10443 return ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010444}
10445
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010446int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
10447 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010448{
Jan Kiszka355be0b2009-10-03 00:31:21 +020010449 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010450 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010451
Tom Lendacky8d4846b2020-12-10 11:09:43 -060010452 if (vcpu->arch.guest_state_protected)
10453 return -EINVAL;
10454
Christoffer Dall66b56562017-12-04 21:35:33 +010010455 vcpu_load(vcpu);
10456
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010457 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
10458 r = -EBUSY;
10459 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +030010460 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010461 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
10462 kvm_queue_exception(vcpu, DB_VECTOR);
10463 else
10464 kvm_queue_exception(vcpu, BP_VECTOR);
10465 }
10466
Jan Kiszka91586a32009-10-05 13:07:21 +020010467 /*
10468 * Read rflags as long as potentially injected trace flags are still
10469 * filtered out.
10470 */
10471 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010472
10473 vcpu->guest_debug = dbg->control;
10474 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
10475 vcpu->guest_debug = 0;
10476
10477 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010478 for (i = 0; i < KVM_NR_DB_REGS; ++i)
10479 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +020010480 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010481 } else {
10482 for (i = 0; i < KVM_NR_DB_REGS; i++)
10483 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010484 }
Jan Kiszkac8639012012-09-21 05:42:55 +020010485 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010486
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010487 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Yuan Yaoe87e46d2021-05-26 14:38:28 +080010488 vcpu->arch.singlestep_rip = kvm_get_linear_rip(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010489
Jan Kiszka91586a32009-10-05 13:07:21 +020010490 /*
10491 * Trigger an rflags update that will inject or remove the trace
10492 * flags.
10493 */
10494 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010495
Jason Baronb36464772021-01-14 22:27:56 -050010496 static_call(kvm_x86_update_exception_bitmap)(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010497
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010498 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010499
Avi Kivity2122ff52010-05-13 11:25:04 +030010500out:
Christoffer Dall66b56562017-12-04 21:35:33 +010010501 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010502 return r;
10503}
10504
10505/*
Zhang Xiantao8b006792007-11-16 13:05:55 +080010506 * Translate a guest virtual address to a guest physical address.
10507 */
10508int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
10509 struct kvm_translation *tr)
10510{
10511 unsigned long vaddr = tr->linear_address;
10512 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010513 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010514
Christoffer Dall1da5b612017-12-04 21:35:32 +010010515 vcpu_load(vcpu);
10516
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010517 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +020010518 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010519 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010520 tr->physical_address = gpa;
10521 tr->valid = gpa != UNMAPPED_GVA;
10522 tr->writeable = 1;
10523 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010524
Christoffer Dall1da5b612017-12-04 21:35:32 +010010525 vcpu_put(vcpu);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010526 return 0;
10527}
10528
Hollis Blanchardd0752062007-10-31 17:24:25 -050010529int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10530{
Christoffer Dall13931232017-12-04 21:35:34 +010010531 struct fxregs_state *fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010532
Tom Lendackyed02b212020-12-10 11:10:01 -060010533 if (!vcpu->arch.guest_fpu)
10534 return 0;
10535
Christoffer Dall13931232017-12-04 21:35:34 +010010536 vcpu_load(vcpu);
10537
Marc Orrb666a4b2018-11-06 14:53:56 -080010538 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010539 memcpy(fpu->fpr, fxsave->st_space, 128);
10540 fpu->fcw = fxsave->cwd;
10541 fpu->fsw = fxsave->swd;
10542 fpu->ftwx = fxsave->twd;
10543 fpu->last_opcode = fxsave->fop;
10544 fpu->last_ip = fxsave->rip;
10545 fpu->last_dp = fxsave->rdp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010546 memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010547
Christoffer Dall13931232017-12-04 21:35:34 +010010548 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010549 return 0;
10550}
10551
10552int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10553{
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010554 struct fxregs_state *fxsave;
10555
Tom Lendackyed02b212020-12-10 11:10:01 -060010556 if (!vcpu->arch.guest_fpu)
10557 return 0;
10558
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010559 vcpu_load(vcpu);
10560
Marc Orrb666a4b2018-11-06 14:53:56 -080010561 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010562
Hollis Blanchardd0752062007-10-31 17:24:25 -050010563 memcpy(fxsave->st_space, fpu->fpr, 128);
10564 fxsave->cwd = fpu->fcw;
10565 fxsave->swd = fpu->fsw;
10566 fxsave->twd = fpu->ftwx;
10567 fxsave->fop = fpu->last_opcode;
10568 fxsave->rip = fpu->last_ip;
10569 fxsave->rdp = fpu->last_dp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010570 memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010571
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010572 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010573 return 0;
10574}
10575
Ken Hofsass01643c52018-01-31 16:03:36 -080010576static void store_regs(struct kvm_vcpu *vcpu)
10577{
10578 BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES);
10579
10580 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS)
10581 __get_regs(vcpu, &vcpu->run->s.regs.regs);
10582
10583 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS)
10584 __get_sregs(vcpu, &vcpu->run->s.regs.sregs);
10585
10586 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS)
10587 kvm_vcpu_ioctl_x86_get_vcpu_events(
10588 vcpu, &vcpu->run->s.regs.events);
10589}
10590
10591static int sync_regs(struct kvm_vcpu *vcpu)
10592{
Ken Hofsass01643c52018-01-31 16:03:36 -080010593 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) {
10594 __set_regs(vcpu, &vcpu->run->s.regs.regs);
10595 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS;
10596 }
10597 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) {
10598 if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs))
10599 return -EINVAL;
10600 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS;
10601 }
10602 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) {
10603 if (kvm_vcpu_ioctl_x86_set_vcpu_events(
10604 vcpu, &vcpu->run->s.regs.events))
10605 return -EINVAL;
10606 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS;
10607 }
10608
10609 return 0;
10610}
10611
Tom Lendackyed02b212020-12-10 11:10:01 -060010612void kvm_free_guest_fpu(struct kvm_vcpu *vcpu)
10613{
10614 if (vcpu->arch.guest_fpu) {
10615 kmem_cache_free(x86_fpu_cache, vcpu->arch.guest_fpu);
10616 vcpu->arch.guest_fpu = NULL;
10617 }
10618}
10619EXPORT_SYMBOL_GPL(kvm_free_guest_fpu);
10620
Sean Christopherson897cc382019-12-18 13:55:09 -080010621int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010622{
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010010623 if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
Sean Christopherson897cc382019-12-18 13:55:09 -080010624 pr_warn_once("kvm: SMP vm created on host with unstable TSC; "
10625 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +080010626
Sean Christopherson897cc382019-12-18 13:55:09 -080010627 return 0;
Avi Kivity26e52152007-11-20 15:30:24 +020010628}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010629
Sean Christophersone529ef62019-12-18 13:55:15 -080010630int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
Avi Kivity26e52152007-11-20 15:30:24 +020010631{
Sean Christopherson95a0d012019-12-18 13:55:23 -080010632 struct page *page;
10633 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010634
Sean Christopherson63f5a192021-06-22 10:56:52 -070010635 vcpu->arch.last_vmentry_cpu = -1;
Sean Christopherson71170032021-09-20 17:02:54 -070010636 vcpu->arch.regs_avail = ~0;
10637 vcpu->arch.regs_dirty = ~0;
Sean Christopherson63f5a192021-06-22 10:56:52 -070010638
Sean Christopherson95a0d012019-12-18 13:55:23 -080010639 if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu))
10640 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10641 else
10642 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
10643
Sean Christopherson95a0d012019-12-18 13:55:23 -080010644 r = kvm_mmu_create(vcpu);
10645 if (r < 0)
10646 return r;
10647
10648 if (irqchip_in_kernel(vcpu->kvm)) {
Sean Christopherson95a0d012019-12-18 13:55:23 -080010649 r = kvm_create_lapic(vcpu, lapic_timer_advance_ns);
10650 if (r < 0)
10651 goto fail_mmu_destroy;
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -060010652 if (kvm_apicv_activated(vcpu->kvm))
10653 vcpu->arch.apicv_active = true;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010654 } else
Cun Li6e4e3b42021-01-11 23:24:35 +080010655 static_branch_inc(&kvm_has_noapic_vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010656
10657 r = -ENOMEM;
10658
Shakeel Butt93bb59c2020-12-18 14:01:38 -080010659 page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010660 if (!page)
10661 goto fail_free_lapic;
10662 vcpu->arch.pio_data = page_address(page);
10663
10664 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
10665 GFP_KERNEL_ACCOUNT);
10666 if (!vcpu->arch.mce_banks)
10667 goto fail_free_pio_data;
10668 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
10669
10670 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask,
10671 GFP_KERNEL_ACCOUNT))
10672 goto fail_free_mce_banks;
10673
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010674 if (!alloc_emulate_ctxt(vcpu))
10675 goto free_wbinvd_dirty_mask;
10676
Sean Christopherson95a0d012019-12-18 13:55:23 -080010677 vcpu->arch.user_fpu = kmem_cache_zalloc(x86_fpu_cache,
10678 GFP_KERNEL_ACCOUNT);
10679 if (!vcpu->arch.user_fpu) {
10680 pr_err("kvm: failed to allocate userspace's fpu\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010681 goto free_emulate_ctxt;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010682 }
10683
10684 vcpu->arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
10685 GFP_KERNEL_ACCOUNT);
10686 if (!vcpu->arch.guest_fpu) {
10687 pr_err("kvm: failed to allocate vcpu's fpu\n");
10688 goto free_user_fpu;
10689 }
Sean Christopherson583d3692021-09-20 17:02:59 -070010690 fpstate_init(&vcpu->arch.guest_fpu->state);
10691 if (boot_cpu_has(X86_FEATURE_XSAVES))
10692 vcpu->arch.guest_fpu->state.xsave.header.xcomp_bv =
10693 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010694
Sean Christopherson95a0d012019-12-18 13:55:23 -080010695 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Sean Christophersona8ac8642021-02-03 16:01:15 -080010696 vcpu->arch.reserved_gpa_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010697
10698 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
10699
10700 kvm_async_pf_hash_reset(vcpu);
10701 kvm_pmu_init(vcpu);
10702
10703 vcpu->arch.pending_external_vector = -1;
10704 vcpu->arch.preempted_in_kernel = false;
10705
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000010706#if IS_ENABLED(CONFIG_HYPERV)
10707 vcpu->arch.hv_root_tdp = INVALID_PAGE;
10708#endif
10709
Jason Baronb36464772021-01-14 22:27:56 -050010710 r = static_call(kvm_x86_vcpu_create)(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010711 if (r)
10712 goto free_guest_fpu;
Sean Christopherson5f73db12019-12-18 13:55:18 -080010713
Sean Christopherson0cf91352019-03-07 15:43:02 -080010714 vcpu->arch.arch_capabilities = kvm_get_arch_capabilities();
Jim Mattsone53d88af2018-10-30 12:20:21 -070010715 vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT;
Xiao Guangrong19efffa2015-06-15 16:55:31 +080010716 kvm_vcpu_mtrr_init(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010010717 vcpu_load(vcpu);
Ilias Stamatis1ab92872021-06-07 11:54:38 +010010718 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010719 kvm_vcpu_reset(vcpu, false);
Sean Christophersonc9060662021-06-09 16:42:33 -070010720 kvm_init_mmu(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010721 vcpu_put(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010010722 return 0;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010723
10724free_guest_fpu:
Tom Lendackyed02b212020-12-10 11:10:01 -060010725 kvm_free_guest_fpu(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010726free_user_fpu:
10727 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010728free_emulate_ctxt:
10729 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010730free_wbinvd_dirty_mask:
10731 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
10732fail_free_mce_banks:
10733 kfree(vcpu->arch.mce_banks);
10734fail_free_pio_data:
10735 free_page((unsigned long)vcpu->arch.pio_data);
10736fail_free_lapic:
10737 kvm_free_lapic(vcpu);
10738fail_mmu_destroy:
10739 kvm_mmu_destroy(vcpu);
10740 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010741}
10742
Dominik Dingel31928aa2014-12-04 15:47:07 +010010743void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010744{
Andrew Jones332967a2014-02-28 12:52:55 +010010745 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010746
Christoffer Dallec7660c2017-12-04 21:35:23 +010010747 if (mutex_lock_killable(&vcpu->mutex))
Dominik Dingel31928aa2014-12-04 15:47:07 +010010748 return;
Christoffer Dallec7660c2017-12-04 21:35:23 +010010749 vcpu_load(vcpu);
Paolo Bonzini0c899c22020-09-24 14:45:27 +020010750 kvm_synchronize_tsc(vcpu, 0);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010751 vcpu_put(vcpu);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030010752
10753 /* poll control enabled by default */
10754 vcpu->arch.msr_kvm_poll_control = 1;
10755
Christoffer Dallec7660c2017-12-04 21:35:23 +010010756 mutex_unlock(&vcpu->mutex);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010757
Wanpeng Lib34de572020-02-28 11:18:41 +080010758 if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0)
10759 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
10760 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010761}
10762
Hollis Blanchardd40ccc62007-11-19 14:04:43 -060010763void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010764{
Paolo Bonzini4cbc4182020-01-30 18:47:38 +010010765 struct gfn_to_pfn_cache *cache = &vcpu->arch.st.cache;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010766 int idx;
Gleb Natapov344d9582010-10-14 11:22:50 +020010767
Paolo Bonzini4cbc4182020-01-30 18:47:38 +010010768 kvm_release_pfn(cache->pfn, cache->dirty, cache);
10769
Sean Christopherson50b143e2019-12-18 13:55:07 -080010770 kvmclock_reset(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010771
Jason Baronb36464772021-01-14 22:27:56 -050010772 static_call(kvm_x86_vcpu_free)(vcpu);
Sean Christopherson50b143e2019-12-18 13:55:07 -080010773
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010774 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson50b143e2019-12-18 13:55:07 -080010775 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
10776 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
Tom Lendackyed02b212020-12-10 11:10:01 -060010777 kvm_free_guest_fpu(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010778
10779 kvm_hv_vcpu_uninit(vcpu);
10780 kvm_pmu_destroy(vcpu);
10781 kfree(vcpu->arch.mce_banks);
10782 kvm_free_lapic(vcpu);
10783 idx = srcu_read_lock(&vcpu->kvm->srcu);
10784 kvm_mmu_destroy(vcpu);
10785 srcu_read_unlock(&vcpu->kvm->srcu, idx);
10786 free_page((unsigned long)vcpu->arch.pio_data);
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +020010787 kvfree(vcpu->arch.cpuid_entries);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010788 if (!lapic_in_kernel(vcpu))
Cun Li6e4e3b42021-01-11 23:24:35 +080010789 static_branch_dec(&kvm_has_noapic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010790}
10791
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010792void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010793{
Sean Christopherson25b97842021-09-29 15:24:26 -070010794 struct kvm_cpuid_entry2 *cpuid_0x1;
Sean Christopherson0aa18372021-06-22 10:56:48 -070010795 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Sean Christopherson4c72ab52021-07-13 09:33:24 -070010796 unsigned long new_cr0;
Sean Christopherson0aa18372021-06-22 10:56:48 -070010797
Sean Christopherson62dd57d2021-09-20 17:03:03 -070010798 /*
10799 * Several of the "set" flows, e.g. ->set_cr0(), read other registers
10800 * to handle side effects. RESET emulation hits those flows and relies
10801 * on emulated/virtualized registers, including those that are loaded
10802 * into hardware, to be zeroed at vCPU creation. Use CRs as a sentinel
10803 * to detect improper or missing initialization.
10804 */
10805 WARN_ON_ONCE(!init_event &&
10806 (old_cr0 || kvm_read_cr3(vcpu) || kvm_read_cr4(vcpu)));
10807
Radim Krčmářb7e31be2018-03-01 15:24:25 +010010808 kvm_lapic_reset(vcpu, init_event);
10809
Paolo Bonzinie69fab52015-06-04 10:44:44 +020010810 vcpu->arch.hflags = 0;
10811
Paolo Bonzinic43203c2016-06-01 22:26:00 +020010812 vcpu->arch.smi_pending = 0;
Liran Alon52797bf2017-11-15 13:43:14 +020010813 vcpu->arch.smi_count = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +030010814 atomic_set(&vcpu->arch.nmi_queued, 0);
10815 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +020010816 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +030010817 kvm_clear_interrupt_queue(vcpu);
10818 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +020010819
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010820 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +030010821 kvm_update_dr0123(vcpu);
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +080010822 vcpu->arch.dr6 = DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010823 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +020010824 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010825
Nadav Amit11190222015-04-02 03:10:38 +030010826 vcpu->arch.cr2 = 0;
10827
Avi Kivity3842d132010-07-27 12:30:24 +030010828 kvm_make_request(KVM_REQ_EVENT, vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020010829 vcpu->arch.apf.msr_en_val = 0;
10830 vcpu->arch.apf.msr_int_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -040010831 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +030010832
Glauber Costa12f9a482011-02-01 14:16:40 -050010833 kvmclock_reset(vcpu);
10834
Gleb Natapovaf585b92010-10-14 11:22:46 +020010835 kvm_clear_async_pf_completion_queue(vcpu);
10836 kvm_async_pf_hash_reset(vcpu);
10837 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010838
Tom Lendackyed02b212020-12-10 11:10:01 -060010839 if (vcpu->arch.guest_fpu && kvm_mpx_supported()) {
Wanpeng Lia554d202017-10-11 05:10:19 -070010840 void *mpx_state_buffer;
10841
10842 /*
10843 * To avoid have the INIT path from kvm_apic_has_events() that be
10844 * called with loaded FPU and does not let userspace fix the state.
10845 */
Rik van Rielf775b132017-11-14 16:54:23 -050010846 if (init_event)
10847 kvm_put_guest_fpu(vcpu);
Marc Orrb666a4b2018-11-06 14:53:56 -080010848 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +020010849 XFEATURE_BNDREGS);
Wanpeng Lia554d202017-10-11 05:10:19 -070010850 if (mpx_state_buffer)
10851 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndreg_state));
Marc Orrb666a4b2018-11-06 14:53:56 -080010852 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +020010853 XFEATURE_BNDCSR);
Wanpeng Lia554d202017-10-11 05:10:19 -070010854 if (mpx_state_buffer)
10855 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndcsr));
Rik van Rielf775b132017-11-14 16:54:23 -050010856 if (init_event)
10857 kvm_load_guest_fpu(vcpu);
Wanpeng Lia554d202017-10-11 05:10:19 -070010858 }
10859
Paolo Bonzini64d60672015-05-07 11:36:11 +020010860 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010861 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +020010862 vcpu->arch.smbase = 0x30000;
Kyle Hueydb2336a2017-03-20 01:16:28 -070010863
Kyle Hueydb2336a2017-03-20 01:16:28 -070010864 vcpu->arch.msr_misc_features_enables = 0;
Wanpeng Lia554d202017-10-11 05:10:19 -070010865
10866 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Paolo Bonzini64d60672015-05-07 11:36:11 +020010867 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020010868
Sean Christophersonff8828c2021-09-20 17:02:56 -070010869 /* All GPRs except RDX (handled below) are zeroed on RESET/INIT. */
Julian Stecklina66f7b722012-12-05 15:26:19 +010010870 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
Sean Christophersonff8828c2021-09-20 17:02:56 -070010871 kvm_register_mark_dirty(vcpu, VCPU_REGS_RSP);
Julian Stecklina66f7b722012-12-05 15:26:19 +010010872
Sean Christopherson49d86652021-07-13 09:32:57 -070010873 /*
10874 * Fall back to KVM's default Family/Model/Stepping of 0x600 (P6/Athlon)
10875 * if no CPUID match is found. Note, it's impossible to get a match at
10876 * RESET since KVM emulates RESET before exposing the vCPU to userspace,
Sean Christopherson25b97842021-09-29 15:24:26 -070010877 * i.e. it's impossible for kvm_find_cpuid_entry() to find a valid entry
10878 * on RESET. But, go through the motions in case that's ever remedied.
Sean Christopherson49d86652021-07-13 09:32:57 -070010879 */
Sean Christopherson25b97842021-09-29 15:24:26 -070010880 cpuid_0x1 = kvm_find_cpuid_entry(vcpu, 1, 0);
10881 kvm_rdx_write(vcpu, cpuid_0x1 ? cpuid_0x1->eax : 0x600);
Sean Christopherson49d86652021-07-13 09:32:57 -070010882
Wanpeng Lia554d202017-10-11 05:10:19 -070010883 vcpu->arch.ia32_xss = 0;
10884
Jason Baronb36464772021-01-14 22:27:56 -050010885 static_call(kvm_x86_vcpu_reset)(vcpu, init_event);
Sean Christopherson0aa18372021-06-22 10:56:48 -070010886
Sean Christophersonf39e8052021-07-13 09:33:14 -070010887 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
10888 kvm_rip_write(vcpu, 0xfff0);
10889
Sean Christopherson03a6e842021-09-20 17:02:55 -070010890 vcpu->arch.cr3 = 0;
10891 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
10892
Sean Christopherson4c72ab52021-07-13 09:33:24 -070010893 /*
10894 * CR0.CD/NW are set on RESET, preserved on INIT. Note, some versions
10895 * of Intel's SDM list CD/NW as being set on INIT, but they contradict
10896 * (or qualify) that with a footnote stating that CD/NW are preserved.
10897 */
10898 new_cr0 = X86_CR0_ET;
10899 if (init_event)
10900 new_cr0 |= (old_cr0 & (X86_CR0_NW | X86_CR0_CD));
10901 else
10902 new_cr0 |= X86_CR0_NW | X86_CR0_CD;
10903
10904 static_call(kvm_x86_set_cr0)(vcpu, new_cr0);
Sean Christophersonf39e8052021-07-13 09:33:14 -070010905 static_call(kvm_x86_set_cr4)(vcpu, 0);
10906 static_call(kvm_x86_set_efer)(vcpu, 0);
10907 static_call(kvm_x86_update_exception_bitmap)(vcpu);
10908
Sean Christopherson0aa18372021-06-22 10:56:48 -070010909 /*
10910 * Reset the MMU context if paging was enabled prior to INIT (which is
10911 * implied if CR0.PG=1 as CR0 will be '0' prior to RESET). Unlike the
10912 * standard CR0/CR4/EFER modification paths, only CR0.PG needs to be
10913 * checked because it is unconditionally cleared on INIT and all other
10914 * paging related bits are ignored if paging is disabled, i.e. CR0.WP,
10915 * CR4, and EFER changes are all irrelevant if CR0.PG was '0'.
10916 */
10917 if (old_cr0 & X86_CR0_PG)
10918 kvm_mmu_reset_context(vcpu);
Sean Christophersondf37ed32021-07-13 09:32:39 -070010919
10920 /*
10921 * Intel's SDM states that all TLB entries are flushed on INIT. AMD's
10922 * APM states the TLBs are untouched by INIT, but it also states that
10923 * the TLBs are flushed on "External initialization of the processor."
10924 * Flush the guest TLB regardless of vendor, there is no meaningful
10925 * benefit in relying on the guest to flush the TLB immediately after
10926 * INIT. A spurious TLB flush is benign and likely negligible from a
10927 * performance perspective.
10928 */
10929 if (init_event)
10930 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010931}
Sean Christopherson265e4352021-07-13 09:33:22 -070010932EXPORT_SYMBOL_GPL(kvm_vcpu_reset);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010933
Paolo Bonzini2b4a2732014-11-24 14:35:24 +010010934void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +010010935{
10936 struct kvm_segment cs;
10937
10938 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
10939 cs.selector = vector << 8;
10940 cs.base = vector << 12;
10941 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
10942 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010943}
Tom Lendacky647daca2021-01-04 14:20:01 -060010944EXPORT_SYMBOL_GPL(kvm_vcpu_deliver_sipi_vector);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010945
Radim Krčmář13a34e02014-08-28 15:13:03 +020010946int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010947{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -100010948 struct kvm *kvm;
10949 struct kvm_vcpu *vcpu;
10950 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010951 int ret;
10952 u64 local_tsc;
10953 u64 max_tsc = 0;
10954 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +030010955
Sean Christopherson7e34fbd2020-09-23 11:03:55 -070010956 kvm_user_return_msr_cpu_online();
Jason Baronb36464772021-01-14 22:27:56 -050010957 ret = static_call(kvm_x86_hardware_enable)();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010958 if (ret != 0)
10959 return ret;
10960
Andy Lutomirski4ea16362015-06-25 18:44:07 +020010961 local_tsc = rdtsc();
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010010962 stable = !kvm_check_tsc_unstable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010963 list_for_each_entry(kvm, &vm_list, vm_list) {
10964 kvm_for_each_vcpu(i, vcpu, kvm) {
10965 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +080010966 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010967 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
10968 backwards_tsc = true;
10969 if (vcpu->arch.last_host_tsc > max_tsc)
10970 max_tsc = vcpu->arch.last_host_tsc;
10971 }
10972 }
10973 }
10974
10975 /*
10976 * Sometimes, even reliable TSCs go backwards. This happens on
10977 * platforms that reset TSC during suspend or hibernate actions, but
10978 * maintain synchronization. We must compensate. Fortunately, we can
10979 * detect that condition here, which happens early in CPU bringup,
10980 * before any KVM threads can be running. Unfortunately, we can't
10981 * bring the TSCs fully up to date with real time, as we aren't yet far
10982 * enough into CPU bringup that we know how much real time has actually
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020010983 * elapsed; our helper function, ktime_get_boottime_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010984 * variables that haven't been updated yet.
10985 *
10986 * So we simply find the maximum observed TSC above, then record the
10987 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
10988 * the adjustment will be applied. Note that we accumulate
10989 * adjustments, in case multiple suspend cycles happen before some VCPU
10990 * gets a chance to run again. In the event that no KVM threads get a
10991 * chance to run, we will miss the entire elapsed period, as we'll have
10992 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
10993 * loose cycle time. This isn't too big a deal, since the loss will be
10994 * uniform across all VCPUs (not to mention the scenario is extremely
10995 * unlikely). It is possible that a second hibernate recovery happens
10996 * much faster than a first, causing the observed TSC here to be
10997 * smaller; this would require additional padding adjustment, which is
10998 * why we set last_host_tsc to the local tsc observed here.
10999 *
11000 * N.B. - this code below runs only on platforms with reliable TSC,
11001 * as that is the only way backwards_tsc is set above. Also note
11002 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
11003 * have the same delta_cyc adjustment applied if backwards_tsc
11004 * is detected. Note further, this adjustment is only done once,
11005 * as we reset last_host_tsc on all VCPUs to stop this from being
11006 * called multiple times (one for each physical CPU bringup).
11007 *
Guo Chao4a969982012-06-28 15:17:27 +080011008 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011009 * will be compensated by the logic in vcpu_load, which sets the TSC to
11010 * catchup mode. This will catchup all VCPUs to real time, but cannot
11011 * guarantee that they stay in perfect synchronization.
11012 */
11013 if (backwards_tsc) {
11014 u64 delta_cyc = max_tsc - local_tsc;
11015 list_for_each_entry(kvm, &vm_list, vm_list) {
Ladi Proseka826faf2017-06-26 09:56:43 +020011016 kvm->arch.backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011017 kvm_for_each_vcpu(i, vcpu, kvm) {
11018 vcpu->arch.tsc_offset_adjustment += delta_cyc;
11019 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +080011020 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011021 }
11022
11023 /*
11024 * We have to disable TSC offset matching.. if you were
11025 * booting a VM while issuing an S4 host suspend....
11026 * you may have some problem. Solving this issue is
11027 * left as an exercise to the reader.
11028 */
11029 kvm->arch.last_tsc_nsec = 0;
11030 kvm->arch.last_tsc_write = 0;
11031 }
11032
11033 }
11034 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011035}
11036
Radim Krčmář13a34e02014-08-28 15:13:03 +020011037void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011038{
Jason Baronb36464772021-01-14 22:27:56 -050011039 static_call(kvm_x86_hardware_disable)();
Radim Krčmář13a34e02014-08-28 15:13:03 +020011040 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011041}
11042
Sean Christophersonb9904082020-03-21 13:25:55 -070011043int kvm_arch_hardware_setup(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011044{
Sean Christophersond008dfd2020-03-21 13:25:56 -070011045 struct kvm_x86_init_ops *ops = opaque;
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011046 int r;
11047
Sean Christopherson91661982020-03-02 15:57:06 -080011048 rdmsrl_safe(MSR_EFER, &host_efer);
11049
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011050 if (boot_cpu_has(X86_FEATURE_XSAVES))
11051 rdmsrl(MSR_IA32_XSS, host_xss);
11052
Sean Christophersond008dfd2020-03-21 13:25:56 -070011053 r = ops->hardware_setup();
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011054 if (r != 0)
11055 return r;
11056
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011057 memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops));
Jason Baronb36464772021-01-14 22:27:56 -050011058 kvm_ops_static_call_update();
Sean Christopherson69c6f692020-03-21 13:25:59 -070011059
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011060 if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES))
11061 supported_xss = 0;
11062
Paolo Bonzini139f7422020-05-05 09:40:46 -040011063#define __kvm_cpu_cap_has(UNUSED_, f) kvm_cpu_cap_has(f)
11064 cr4_reserved_bits = __cr4_reserved_bits(__kvm_cpu_cap_has, UNUSED_);
11065#undef __kvm_cpu_cap_has
Sean Christophersonb11306b2019-12-10 14:44:13 -080011066
Haozhong Zhang35181e82015-10-20 15:39:03 +080011067 if (kvm_has_tsc_control) {
11068 /*
11069 * Make sure the user can only configure tsc_khz values that
11070 * fit into a signed integer.
Marcelo Tosatti273ba452018-06-11 14:12:10 -030011071 * A min value is not calculated because it will always
Haozhong Zhang35181e82015-10-20 15:39:03 +080011072 * be 1 on all machines.
11073 */
11074 u64 max = min(0x7fffffffULL,
11075 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
11076 kvm_max_guest_tsc_khz = max;
11077
Haozhong Zhangad7218832015-10-20 15:39:02 +080011078 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +080011079 }
Haozhong Zhangad7218832015-10-20 15:39:02 +080011080
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011081 kvm_init_msr_list();
11082 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011083}
11084
11085void kvm_arch_hardware_unsetup(void)
11086{
Jason Baronb36464772021-01-14 22:27:56 -050011087 static_call(kvm_x86_hardware_unsetup)();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011088}
11089
Sean Christophersonb9904082020-03-21 13:25:55 -070011090int kvm_arch_check_processor_compat(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011091{
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011092 struct cpuinfo_x86 *c = &cpu_data(smp_processor_id());
Sean Christophersond008dfd2020-03-21 13:25:56 -070011093 struct kvm_x86_init_ops *ops = opaque;
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011094
11095 WARN_ON(!irqs_disabled());
11096
Paolo Bonzini139f7422020-05-05 09:40:46 -040011097 if (__cr4_reserved_bits(cpu_has, c) !=
11098 __cr4_reserved_bits(cpu_has, &boot_cpu_data))
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011099 return -EIO;
11100
Sean Christophersond008dfd2020-03-21 13:25:56 -070011101 return ops->check_processor_compatibility();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011102}
11103
Paolo Bonzinid71ba782015-07-29 11:56:48 +020011104bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
11105{
11106 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
11107}
11108EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
11109
11110bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
11111{
11112 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
11113}
11114
Cun Li6e4e3b42021-01-11 23:24:35 +080011115__read_mostly DEFINE_STATIC_KEY_FALSE(kvm_has_noapic_vcpu);
11116EXPORT_SYMBOL_GPL(kvm_has_noapic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +030011117
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011118void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
11119{
Like Xub35e5542019-10-27 18:52:43 +080011120 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
11121
Paolo Bonzinic595cee2018-07-02 13:07:14 +020011122 vcpu->arch.l1tf_flush_l1d = true;
Like Xub35e5542019-10-27 18:52:43 +080011123 if (pmu->version && unlikely(pmu->event_count)) {
11124 pmu->need_cleanup = true;
11125 kvm_make_request(KVM_REQ_PMU, vcpu);
11126 }
Jason Baronb36464772021-01-14 22:27:56 -050011127 static_call(kvm_x86_sched_in)(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011128}
11129
Sean Christopherson562b6b02020-01-26 16:41:13 -080011130void kvm_arch_free_vm(struct kvm *kvm)
11131{
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +010011132 kfree(to_kvm_hv(kvm)->hv_pa_pg);
Juergen Gross78b497f2021-09-03 15:08:05 +020011133 __kvm_arch_free_vm(kvm);
Sean Christopherson562b6b02020-01-26 16:41:13 -080011134}
11135
11136
Carsten Ottee08b9632012-01-04 10:25:20 +010011137int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011138{
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011139 int ret;
11140
Carsten Ottee08b9632012-01-04 10:25:20 +010011141 if (type)
11142 return -EINVAL;
11143
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011144 ret = kvm_page_track_init(kvm);
11145 if (ret)
11146 return ret;
11147
Paolo Bonzini6ef768f2014-11-20 13:45:31 +010011148 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +080011149 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Sean Christopherson10605202019-09-12 19:46:10 -070011150 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011151 INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030011152 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060011153 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011154
Sheng Yang5550af42008-10-15 20:15:06 +080011155 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
11156 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -060011157 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
11158 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
11159 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +080011160
Jan Kiszka038f8c12011-02-04 10:49:11 +010011161 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +030011162 mutex_init(&kvm->arch.apic_map_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -020011163 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
11164
Paolo Bonzini8171cd62020-01-22 14:36:09 +010011165 kvm->arch.kvmclock_offset = -get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -020011166 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +010011167
Drew Schmitt6fbbde92018-08-20 10:32:15 -070011168 kvm->arch.guest_can_read_msr_platform_info = true;
11169
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000011170#if IS_ENABLED(CONFIG_HYPERV)
11171 spin_lock_init(&kvm->arch.hv_root_tdp_lock);
11172 kvm->arch.hv_root_tdp = INVALID_PAGE;
11173#endif
11174
Andrew Jones7e44e442014-02-28 12:52:54 +010011175 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +010011176 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +010011177
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +020011178 kvm_apicv_init(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011179 kvm_hv_init_vm(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011180 kvm_mmu_init_vm(kvm);
Paolo Bonzini319afe62021-08-04 12:48:41 -040011181 kvm_xen_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +080011182
Jason Baronb36464772021-01-14 22:27:56 -050011183 return static_call(kvm_x86_vm_init)(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011184}
11185
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011186int kvm_arch_post_init_vm(struct kvm *kvm)
11187{
11188 return kvm_mmu_post_init_vm(kvm);
11189}
11190
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011191static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
11192{
Christoffer Dallec7660c2017-12-04 21:35:23 +010011193 vcpu_load(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011194 kvm_mmu_unload(vcpu);
11195 vcpu_put(vcpu);
11196}
11197
11198static void kvm_free_vcpus(struct kvm *kvm)
11199{
11200 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011201 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011202
11203 /*
11204 * Unpin any mmu pages first.
11205 */
Gleb Natapovaf585b92010-10-14 11:22:46 +020011206 kvm_for_each_vcpu(i, vcpu, kvm) {
11207 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011208 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011209 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011210 kvm_for_each_vcpu(i, vcpu, kvm)
Sean Christopherson4543bdc2019-12-18 13:55:14 -080011211 kvm_vcpu_destroy(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011212
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011213 mutex_lock(&kvm->lock);
11214 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
11215 kvm->vcpus[i] = NULL;
11216
11217 atomic_set(&kvm->online_vcpus, 0);
11218 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011219}
11220
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011221void kvm_arch_sync_events(struct kvm *kvm)
11222{
Andrew Jones332967a2014-02-28 12:52:55 +010011223 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +010011224 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +080011225 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011226}
11227
Peter Xuff5a9832020-09-30 21:20:33 -040011228#define ERR_PTR_USR(e) ((void __user *)ERR_PTR(e))
11229
11230/**
11231 * __x86_set_memory_region: Setup KVM internal memory slot
11232 *
11233 * @kvm: the kvm pointer to the VM.
11234 * @id: the slot ID to setup.
11235 * @gpa: the GPA to install the slot (unused when @size == 0).
11236 * @size: the size of the slot. Set to zero to uninstall a slot.
11237 *
11238 * This function helps to setup a KVM internal memory slot. Specify
11239 * @size > 0 to install a new slot, while @size == 0 to uninstall a
11240 * slot. The return code can be one of the following:
11241 *
11242 * HVA: on success (uninstall will return a bogus HVA)
11243 * -errno: on error
11244 *
11245 * The caller should always use IS_ERR() to check the return value
11246 * before use. Note, the KVM internal memory slots are guaranteed to
11247 * remain valid and unchanged until the VM is destroyed, i.e., the
11248 * GPA->HVA translation will not change. However, the HVA is a user
11249 * address, i.e. its accessibility is not guaranteed, and must be
11250 * accessed via __copy_{to,from}_user().
11251 */
11252void __user * __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa,
11253 u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011254{
11255 int i, r;
Kees Cook3f649ab2020-06-03 13:09:38 -070011256 unsigned long hva, old_npages;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011257 struct kvm_memslots *slots = kvm_memslots(kvm);
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011258 struct kvm_memory_slot *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011259
11260 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011261 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
Peter Xuff5a9832020-09-30 21:20:33 -040011262 return ERR_PTR_USR(-EINVAL);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011263
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011264 slot = id_to_memslot(slots, id);
11265 if (size) {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011266 if (slot && slot->npages)
Peter Xuff5a9832020-09-30 21:20:33 -040011267 return ERR_PTR_USR(-EEXIST);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011268
11269 /*
11270 * MAP_SHARED to prevent internal slot pages from being moved
11271 * by fork()/COW.
11272 */
11273 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
11274 MAP_SHARED | MAP_ANONYMOUS, 0);
11275 if (IS_ERR((void *)hva))
Peter Xuff5a9832020-09-30 21:20:33 -040011276 return (void __user *)hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011277 } else {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011278 if (!slot || !slot->npages)
Muhammad Usama Anjum46914532021-03-05 23:08:16 +050011279 return NULL;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011280
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011281 old_npages = slot->npages;
Zheng Zhan Liangb66f9ba2021-02-01 13:53:10 +080011282 hva = slot->userspace_addr;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011283 }
11284
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011285 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011286 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011287
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011288 m.slot = id | (i << 16);
11289 m.flags = 0;
11290 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011291 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011292 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011293 r = __kvm_set_memory_region(kvm, &m);
11294 if (r < 0)
Peter Xuff5a9832020-09-30 21:20:33 -040011295 return ERR_PTR_USR(r);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011296 }
11297
Eric Biggers103c7632018-01-31 17:30:21 -080011298 if (!size)
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011299 vm_munmap(hva, old_npages * PAGE_SIZE);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011300
Peter Xuff5a9832020-09-30 21:20:33 -040011301 return (void __user *)hva;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011302}
11303EXPORT_SYMBOL_GPL(__x86_set_memory_region);
11304
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011305void kvm_arch_pre_destroy_vm(struct kvm *kvm)
11306{
11307 kvm_mmu_pre_destroy_vm(kvm);
11308}
11309
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011310void kvm_arch_destroy_vm(struct kvm *kvm)
11311{
Andrew Honig27469d22013-04-18 09:38:14 -070011312 if (current->mm == kvm->mm) {
11313 /*
11314 * Free memory regions allocated on behalf of userspace,
11315 * unless the the memory map has changed due to process exit
11316 * or fd copying.
11317 */
Peter Xu6a3c6232020-01-09 09:57:16 -050011318 mutex_lock(&kvm->slots_lock);
11319 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
11320 0, 0);
11321 __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
11322 0, 0);
11323 __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
11324 mutex_unlock(&kvm->slots_lock);
Andrew Honig27469d22013-04-18 09:38:14 -070011325 }
Jason Baronb36464772021-01-14 22:27:56 -050011326 static_call_cond(kvm_x86_vm_destroy)(kvm);
Sean Christophersonb318e8d2021-03-16 11:44:33 -070011327 kvm_free_msr_filter(srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1));
Peter Xuc7611592017-03-15 16:01:19 +080011328 kvm_pic_destroy(kvm);
11329 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011330 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +020011331 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Eric Hankland66bb8a02019-07-10 18:25:15 -070011332 kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011333 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +020011334 kvm_page_track_cleanup(kvm);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +000011335 kvm_xen_destroy_vm(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011336 kvm_hv_destroy_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011337}
Zhang Xiantao0de10342007-11-20 16:25:04 +080011338
Ben Gardonc9b929b2021-05-18 10:34:08 -070011339static void memslot_rmap_free(struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011340{
11341 int i;
11342
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011343 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011344 kvfree(slot->arch.rmap[i]);
11345 slot->arch.rmap[i] = NULL;
Ben Gardonc9b929b2021-05-18 10:34:08 -070011346 }
11347}
Sean Christophersone96c81e2020-02-18 13:07:27 -080011348
Ben Gardonc9b929b2021-05-18 10:34:08 -070011349void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
11350{
11351 int i;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011352
Ben Gardonc9b929b2021-05-18 10:34:08 -070011353 memslot_rmap_free(slot);
11354
11355 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011356 kvfree(slot->arch.lpage_info[i - 1]);
11357 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011358 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011359
Sean Christophersone96c81e2020-02-18 13:07:27 -080011360 kvm_page_track_free_memslot(slot);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011361}
11362
Ben Gardon56dd1012021-05-18 10:34:09 -070011363static int memslot_rmap_alloc(struct kvm_memory_slot *slot,
11364 unsigned long npages)
11365{
11366 const int sz = sizeof(*slot->arch.rmap[0]);
11367 int i;
11368
11369 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
11370 int level = i + 1;
Peter Xu4139b192021-07-30 18:04:51 -040011371 int lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Ben Gardon56dd1012021-05-18 10:34:09 -070011372
Ben Gardond501f742021-05-18 10:34:14 -070011373 WARN_ON(slot->arch.rmap[i]);
11374
Ben Gardon56dd1012021-05-18 10:34:09 -070011375 slot->arch.rmap[i] = kvcalloc(lpages, sz, GFP_KERNEL_ACCOUNT);
11376 if (!slot->arch.rmap[i]) {
11377 memslot_rmap_free(slot);
11378 return -ENOMEM;
11379 }
11380 }
11381
11382 return 0;
11383}
11384
Ben Gardond501f742021-05-18 10:34:14 -070011385int alloc_all_memslots_rmaps(struct kvm *kvm)
11386{
11387 struct kvm_memslots *slots;
11388 struct kvm_memory_slot *slot;
11389 int r, i;
11390
11391 /*
11392 * Check if memslots alreday have rmaps early before acquiring
11393 * the slots_arch_lock below.
11394 */
11395 if (kvm_memslots_have_rmaps(kvm))
11396 return 0;
11397
11398 mutex_lock(&kvm->slots_arch_lock);
11399
11400 /*
11401 * Read memslots_have_rmaps again, under the slots arch lock,
11402 * before allocating the rmaps
11403 */
11404 if (kvm_memslots_have_rmaps(kvm)) {
11405 mutex_unlock(&kvm->slots_arch_lock);
11406 return 0;
11407 }
11408
11409 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
11410 slots = __kvm_memslots(kvm, i);
11411 kvm_for_each_memslot(slot, slots) {
11412 r = memslot_rmap_alloc(slot, slot->npages);
11413 if (r) {
11414 mutex_unlock(&kvm->slots_arch_lock);
11415 return r;
11416 }
11417 }
11418 }
11419
11420 /*
11421 * Ensure that memslots_have_rmaps becomes true strictly after
11422 * all the rmap pointers are set.
11423 */
11424 smp_store_release(&kvm->arch.memslots_have_rmaps, true);
11425 mutex_unlock(&kvm->slots_arch_lock);
11426 return 0;
11427}
11428
Ben Gardona2557402021-05-18 10:34:12 -070011429static int kvm_alloc_memslot_metadata(struct kvm *kvm,
11430 struct kvm_memory_slot *slot,
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011431 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011432{
Ben Gardon56dd1012021-05-18 10:34:09 -070011433 int i, r;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011434
Sean Christophersonedd4fa32020-02-18 13:07:15 -080011435 /*
11436 * Clear out the previous array pointers for the KVM_MR_MOVE case. The
11437 * old arrays will be freed by __kvm_set_memory_region() if installing
11438 * the new memslot is successful.
11439 */
11440 memset(&slot->arch, 0, sizeof(slot->arch));
11441
Ben Gardone2209712021-05-18 10:34:13 -070011442 if (kvm_memslots_have_rmaps(kvm)) {
Ben Gardona2557402021-05-18 10:34:12 -070011443 r = memslot_rmap_alloc(slot, npages);
11444 if (r)
11445 return r;
11446 }
Ben Gardon56dd1012021-05-18 10:34:09 -070011447
11448 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011449 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011450 unsigned long ugfn;
11451 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011452 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011453
Peter Xu4139b192021-07-30 18:04:51 -040011454 lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011455
Ben Gardon254272c2019-02-11 11:02:50 -080011456 linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT);
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011457 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011458 goto out_free;
11459
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011460 slot->arch.lpage_info[i - 1] = linfo;
11461
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011462 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011463 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011464 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011465 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011466 ugfn = slot->userspace_addr >> PAGE_SHIFT;
11467 /*
11468 * If the gfn and userspace address are not aligned wrt each
Sean Christopherson600087b2020-03-02 15:57:05 -080011469 * other, disable large page support for this slot.
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011470 */
Sean Christopherson600087b2020-03-02 15:57:05 -080011471 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011472 unsigned long j;
11473
11474 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011475 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011476 }
11477 }
11478
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011479 if (kvm_page_track_create_memslot(slot, npages))
11480 goto out_free;
11481
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011482 return 0;
11483
11484out_free:
Ben Gardonc9b929b2021-05-18 10:34:08 -070011485 memslot_rmap_free(slot);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011486
Ben Gardonc9b929b2021-05-18 10:34:08 -070011487 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +010011488 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011489 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011490 }
11491 return -ENOMEM;
11492}
11493
Sean Christopherson15248252019-02-05 12:54:17 -080011494void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011495{
Boris Ostrovsky91724812019-12-05 01:30:51 +000011496 struct kvm_vcpu *vcpu;
11497 int i;
11498
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +090011499 /*
11500 * memslots->generation has been incremented.
11501 * mmio generation may have reached its maximum value.
11502 */
Sean Christopherson15248252019-02-05 12:54:17 -080011503 kvm_mmu_invalidate_mmio_sptes(kvm, gen);
Boris Ostrovsky91724812019-12-05 01:30:51 +000011504
11505 /* Force re-initialization of steal_time cache */
11506 kvm_for_each_vcpu(i, vcpu, kvm)
11507 kvm_vcpu_kick(vcpu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011508}
11509
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011510int kvm_arch_prepare_memory_region(struct kvm *kvm,
11511 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +020011512 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +090011513 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +080011514{
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011515 if (change == KVM_MR_CREATE || change == KVM_MR_MOVE)
Ben Gardona2557402021-05-18 10:34:12 -070011516 return kvm_alloc_memslot_metadata(kvm, memslot,
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011517 mem->memory_size >> PAGE_SHIFT);
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011518 return 0;
11519}
11520
Makarand Sonarea85863c2021-02-12 16:50:12 -080011521
11522static void kvm_mmu_update_cpu_dirty_logging(struct kvm *kvm, bool enable)
11523{
11524 struct kvm_arch *ka = &kvm->arch;
11525
11526 if (!kvm_x86_ops.cpu_dirty_log_size)
11527 return;
11528
11529 if ((enable && ++ka->cpu_dirty_logging_count == 1) ||
11530 (!enable && --ka->cpu_dirty_logging_count == 0))
11531 kvm_make_all_cpus_request(kvm, KVM_REQ_UPDATE_CPU_DIRTY_LOGGING);
11532
11533 WARN_ON_ONCE(ka->cpu_dirty_logging_count < 0);
11534}
11535
Kai Huang88178fd2015-01-28 10:54:27 +080011536static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
Anthony Yznaga37416792020-06-02 13:07:30 -070011537 struct kvm_memory_slot *old,
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011538 const struct kvm_memory_slot *new,
Anthony Yznaga37416792020-06-02 13:07:30 -070011539 enum kvm_mr_change change)
Kai Huang88178fd2015-01-28 10:54:27 +080011540{
Makarand Sonarea85863c2021-02-12 16:50:12 -080011541 bool log_dirty_pages = new->flags & KVM_MEM_LOG_DIRTY_PAGES;
11542
Anthony Yznaga37416792020-06-02 13:07:30 -070011543 /*
Makarand Sonarea85863c2021-02-12 16:50:12 -080011544 * Update CPU dirty logging if dirty logging is being toggled. This
11545 * applies to all operations.
11546 */
11547 if ((old->flags ^ new->flags) & KVM_MEM_LOG_DIRTY_PAGES)
11548 kvm_mmu_update_cpu_dirty_logging(kvm, log_dirty_pages);
11549
11550 /*
11551 * Nothing more to do for RO slots (which can't be dirtied and can't be
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011552 * made writable) or CREATE/MOVE/DELETE of a slot.
11553 *
11554 * For a memslot with dirty logging disabled:
11555 * CREATE: No dirty mappings will already exist.
11556 * MOVE/DELETE: The old mappings will already have been cleaned up by
11557 * kvm_arch_flush_shadow_memslot()
11558 *
11559 * For a memslot with dirty logging enabled:
11560 * CREATE: No shadow pages exist, thus nothing to write-protect
11561 * and no dirty bits to clear.
11562 * MOVE/DELETE: The old mappings will already have been cleaned up by
11563 * kvm_arch_flush_shadow_memslot().
Anthony Yznaga37416792020-06-02 13:07:30 -070011564 */
11565 if ((change != KVM_MR_FLAGS_ONLY) || (new->flags & KVM_MEM_READONLY))
Kai Huang88178fd2015-01-28 10:54:27 +080011566 return;
Kai Huang88178fd2015-01-28 10:54:27 +080011567
11568 /*
Sean Christopherson52f460792021-02-12 16:50:11 -080011569 * READONLY and non-flags changes were filtered out above, and the only
11570 * other flag is LOG_DIRTY_PAGES, i.e. something is wrong if dirty
11571 * logging isn't being toggled on or off.
Anthony Yznaga37416792020-06-02 13:07:30 -070011572 */
Sean Christopherson52f460792021-02-12 16:50:11 -080011573 if (WARN_ON_ONCE(!((old->flags ^ new->flags) & KVM_MEM_LOG_DIRTY_PAGES)))
11574 return;
11575
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011576 if (!log_dirty_pages) {
11577 /*
11578 * Dirty logging tracks sptes in 4k granularity, meaning that
11579 * large sptes have to be split. If live migration succeeds,
11580 * the guest in the source machine will be destroyed and large
11581 * sptes will be created in the destination. However, if the
11582 * guest continues to run in the source machine (for example if
11583 * live migration fails), small sptes will remain around and
11584 * cause bad performance.
11585 *
11586 * Scan sptes if dirty logging has been stopped, dropping those
11587 * which can be collapsed into a single large-page spte. Later
11588 * page faults will create the large-page sptes.
11589 */
Anthony Yznaga37416792020-06-02 13:07:30 -070011590 kvm_mmu_zap_collapsible_sptes(kvm, new);
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011591 } else {
Keqian Zhu89212912021-04-29 11:41:15 +080011592 /*
11593 * Initially-all-set does not require write protecting any page,
11594 * because they're all assumed to be dirty.
11595 */
11596 if (kvm_dirty_log_manual_protect_and_init_set(kvm))
11597 return;
Anthony Yznaga37416792020-06-02 13:07:30 -070011598
Sean Christophersona018eba2021-02-12 16:50:10 -080011599 if (kvm_x86_ops.cpu_dirty_log_size) {
Keqian Zhu89212912021-04-29 11:41:15 +080011600 kvm_mmu_slot_leaf_clear_dirty(kvm, new);
11601 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_2M);
11602 } else {
11603 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_4K);
Jay Zhou3c9bd402020-02-27 09:32:27 +080011604 }
Kai Huang88178fd2015-01-28 10:54:27 +080011605 }
11606}
11607
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011608void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +020011609 const struct kvm_userspace_memory_region *mem,
Sean Christopherson9d4c1972020-02-18 13:07:24 -080011610 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020011611 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +090011612 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011613{
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +080011614 if (!kvm->arch.n_requested_mmu_pages)
Wei Yang4d666232018-09-27 08:31:26 +080011615 kvm_mmu_change_mmu_pages(kvm,
11616 kvm_mmu_calculate_default_mmu_pages(kvm));
Kai Huang1c91cad42015-01-28 10:54:26 +080011617
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011618 kvm_mmu_slot_apply_flags(kvm, old, new, change);
Sean Christopherson21198842020-02-18 13:07:25 -080011619
11620 /* Free the arrays associated with the old memslot. */
11621 if (change == KVM_MR_MOVE)
Sean Christophersone96c81e2020-02-18 13:07:27 -080011622 kvm_arch_free_memslot(kvm, old);
Zhang Xiantao0de10342007-11-20 16:25:04 +080011623}
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011624
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011625void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011626{
Sean Christopherson7390de12019-02-05 13:01:31 -080011627 kvm_mmu_zap_all(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011628}
11629
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011630void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
11631 struct kvm_memory_slot *slot)
11632{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +080011633 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011634}
11635
Liran Alone6c67d82018-09-04 10:56:52 +030011636static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
11637{
11638 return (is_guest_mode(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011639 kvm_x86_ops.guest_apic_has_interrupt &&
Jason Baronb36464772021-01-14 22:27:56 -050011640 static_call(kvm_x86_guest_apic_has_interrupt)(vcpu));
Liran Alone6c67d82018-09-04 10:56:52 +030011641}
11642
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011643static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
11644{
11645 if (!list_empty_careful(&vcpu->async_pf.done))
11646 return true;
11647
11648 if (kvm_apic_has_events(vcpu))
11649 return true;
11650
11651 if (vcpu->arch.pv.pv_unhalted)
11652 return true;
11653
Wanpeng Lia5f01f82017-09-13 04:04:01 -070011654 if (vcpu->arch.exception.pending)
11655 return true;
11656
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011657 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11658 (vcpu->arch.nmi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011659 static_call(kvm_x86_nmi_allowed)(vcpu, false)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011660 return true;
11661
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011662 if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -040011663 (vcpu->arch.smi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011664 static_call(kvm_x86_smi_allowed)(vcpu, false)))
Paolo Bonzini73917732015-10-13 10:19:35 +020011665 return true;
11666
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011667 if (kvm_arch_interrupt_allowed(vcpu) &&
Liran Alone6c67d82018-09-04 10:56:52 +030011668 (kvm_cpu_has_interrupt(vcpu) ||
11669 kvm_guest_apic_has_interrupt(vcpu)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011670 return true;
11671
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +030011672 if (kvm_hv_has_stimer_pending(vcpu))
11673 return true;
11674
Sean Christophersond2060bd2020-04-22 19:25:39 -070011675 if (is_guest_mode(vcpu) &&
11676 kvm_x86_ops.nested_ops->hv_timer_pending &&
11677 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
11678 return true;
11679
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011680 return false;
11681}
11682
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011683int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
11684{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011685 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011686}
Zhang Xiantao57361992007-12-17 14:21:40 +080011687
Haiwei Li10dbdf92021-04-21 11:25:13 +080011688bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu)
11689{
11690 if (vcpu->arch.apicv_active && static_call(kvm_x86_dy_apicv_has_pending_interrupt)(vcpu))
11691 return true;
11692
11693 return false;
11694}
11695
Wanpeng Li17e433b2019-08-05 10:03:19 +080011696bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
11697{
11698 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
11699 return true;
11700
11701 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11702 kvm_test_request(KVM_REQ_SMI, vcpu) ||
11703 kvm_test_request(KVM_REQ_EVENT, vcpu))
11704 return true;
11705
Haiwei Li10dbdf92021-04-21 11:25:13 +080011706 return kvm_arch_dy_has_pending_interrupt(vcpu);
Wanpeng Li17e433b2019-08-05 10:03:19 +080011707}
11708
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011709bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
11710{
Wanpeng Lib86bb112021-04-22 16:34:19 +080011711 if (vcpu->arch.guest_state_protected)
11712 return true;
11713
Longpeng(Mike)de63ad42017-08-08 12:05:33 +080011714 return vcpu->arch.preempted_in_kernel;
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011715}
11716
Christoffer Dallb6d33832012-03-08 16:44:24 -050011717int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +080011718{
Christoffer Dallb6d33832012-03-08 16:44:24 -050011719 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +080011720}
Gleb Natapov78646122009-03-23 12:12:11 +020011721
11722int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
11723{
Jason Baronb36464772021-01-14 22:27:56 -050011724 return static_call(kvm_x86_interrupt_allowed)(vcpu, false);
Gleb Natapov78646122009-03-23 12:12:11 +020011725}
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011726
Nadav Amit82b32772014-11-02 11:54:45 +020011727unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
11728{
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060011729 /* Can't read the RIP when guest state is protected, just return 0 */
11730 if (vcpu->arch.guest_state_protected)
11731 return 0;
11732
Nadav Amit82b32772014-11-02 11:54:45 +020011733 if (is_64_bit_mode(vcpu))
11734 return kvm_rip_read(vcpu);
11735 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
11736 kvm_rip_read(vcpu));
11737}
11738EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
11739
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011740bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
11741{
Nadav Amit82b32772014-11-02 11:54:45 +020011742 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011743}
11744EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
11745
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011746unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
11747{
11748 unsigned long rflags;
11749
Jason Baronb36464772021-01-14 22:27:56 -050011750 rflags = static_call(kvm_x86_get_rflags)(vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011751 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +010011752 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011753 return rflags;
11754}
11755EXPORT_SYMBOL_GPL(kvm_get_rflags);
11756
Paolo Bonzini6addfc42014-03-27 11:29:28 +010011757static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011758{
11759 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011760 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +010011761 rflags |= X86_EFLAGS_TF;
Jason Baronb36464772021-01-14 22:27:56 -050011762 static_call(kvm_x86_set_rflags)(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010011763}
11764
11765void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
11766{
11767 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +030011768 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011769}
11770EXPORT_SYMBOL_GPL(kvm_set_rflags);
11771
Gleb Natapov56028d02010-10-17 18:13:42 +020011772void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
11773{
11774 int r;
11775
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020011776 if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +080011777 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +020011778 return;
11779
11780 r = kvm_mmu_reload(vcpu);
11781 if (unlikely(r))
11782 return;
11783
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020011784 if (!vcpu->arch.mmu->direct_map &&
Sean Christophersond8dd54e2020-03-02 18:02:39 -080011785 work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu))
Xiao Guangrongfb67e142010-12-07 10:35:25 +080011786 return;
11787
Sean Christopherson7a026742020-02-06 14:14:34 -080011788 kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true);
Gleb Natapov56028d02010-10-17 18:13:42 +020011789}
11790
Gleb Natapovaf585b92010-10-14 11:22:46 +020011791static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
11792{
Peter Xudd03bca2020-04-16 11:58:59 -040011793 BUILD_BUG_ON(!is_power_of_2(ASYNC_PF_PER_VCPU));
11794
Gleb Natapovaf585b92010-10-14 11:22:46 +020011795 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
11796}
11797
11798static inline u32 kvm_async_pf_next_probe(u32 key)
11799{
Peter Xudd03bca2020-04-16 11:58:59 -040011800 return (key + 1) & (ASYNC_PF_PER_VCPU - 1);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011801}
11802
11803static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11804{
11805 u32 key = kvm_async_pf_hash_fn(gfn);
11806
11807 while (vcpu->arch.apf.gfns[key] != ~0)
11808 key = kvm_async_pf_next_probe(key);
11809
11810 vcpu->arch.apf.gfns[key] = gfn;
11811}
11812
11813static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
11814{
11815 int i;
11816 u32 key = kvm_async_pf_hash_fn(gfn);
11817
Peter Xudd03bca2020-04-16 11:58:59 -040011818 for (i = 0; i < ASYNC_PF_PER_VCPU &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +080011819 (vcpu->arch.apf.gfns[key] != gfn &&
11820 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +020011821 key = kvm_async_pf_next_probe(key);
11822
11823 return key;
11824}
11825
11826bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11827{
11828 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
11829}
11830
11831static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11832{
11833 u32 i, j, k;
11834
11835 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
Peter Xu0fd46042020-04-16 11:59:10 -040011836
11837 if (WARN_ON_ONCE(vcpu->arch.apf.gfns[i] != gfn))
11838 return;
11839
Gleb Natapovaf585b92010-10-14 11:22:46 +020011840 while (true) {
11841 vcpu->arch.apf.gfns[i] = ~0;
11842 do {
11843 j = kvm_async_pf_next_probe(j);
11844 if (vcpu->arch.apf.gfns[j] == ~0)
11845 return;
11846 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
11847 /*
11848 * k lies cyclically in ]i,j]
11849 * | i.k.j |
11850 * |....j i.k.| or |.k..j i...|
11851 */
11852 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
11853 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
11854 i = j;
11855 }
11856}
11857
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020011858static inline int apf_put_user_notpresent(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020011859{
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020011860 u32 reason = KVM_PV_REASON_PAGE_NOT_PRESENT;
11861
11862 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &reason,
11863 sizeof(reason));
11864}
11865
11866static inline int apf_put_user_ready(struct kvm_vcpu *vcpu, u32 token)
11867{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011868 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
Paolo Bonzini4e335d92017-05-02 16:20:18 +020011869
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011870 return kvm_write_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
11871 &token, offset, sizeof(token));
11872}
11873
11874static inline bool apf_pageready_slot_free(struct kvm_vcpu *vcpu)
11875{
11876 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
11877 u32 val;
11878
11879 if (kvm_read_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
11880 &val, offset, sizeof(val)))
11881 return false;
11882
11883 return !val;
Gleb Natapov7c907052010-10-14 11:22:53 +020011884}
11885
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011886static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
11887{
11888 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
11889 return false;
11890
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011891 if (!kvm_pv_async_pf_enabled(vcpu) ||
Jason Baronb36464772021-01-14 22:27:56 -050011892 (vcpu->arch.apf.send_user_only && static_call(kvm_x86_get_cpl)(vcpu) == 0))
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011893 return false;
11894
11895 return true;
11896}
11897
11898bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
11899{
11900 if (unlikely(!lapic_in_kernel(vcpu) ||
11901 kvm_event_needs_reinjection(vcpu) ||
11902 vcpu->arch.exception.pending))
11903 return false;
11904
11905 if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu))
11906 return false;
11907
11908 /*
11909 * If interrupts are off we cannot even use an artificial
11910 * halt state.
11911 */
Paolo Bonzinic300ab92020-04-23 14:08:58 -040011912 return kvm_arch_interrupt_allowed(vcpu);
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011913}
11914
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011915bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
Gleb Natapovaf585b92010-10-14 11:22:46 +020011916 struct kvm_async_pf *work)
11917{
Avi Kivity6389ee92010-11-29 16:12:30 +020011918 struct x86_exception fault;
11919
Sean Christopherson736c2912019-12-06 15:57:14 -080011920 trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011921 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +020011922
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011923 if (kvm_can_deliver_async_pf(vcpu) &&
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020011924 !apf_put_user_notpresent(vcpu)) {
Avi Kivity6389ee92010-11-29 16:12:30 +020011925 fault.vector = PF_VECTOR;
11926 fault.error_code_valid = true;
11927 fault.error_code = 0;
11928 fault.nested_page_fault = false;
11929 fault.address = work->arch.token;
Wanpeng Liadfe20f2017-07-13 18:30:41 -070011930 fault.async_page_fault = true;
Avi Kivity6389ee92010-11-29 16:12:30 +020011931 kvm_inject_page_fault(vcpu, &fault);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011932 return true;
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011933 } else {
11934 /*
11935 * It is not possible to deliver a paravirtualized asynchronous
11936 * page fault, but putting the guest in an artificial halt state
11937 * can be beneficial nevertheless: if an interrupt arrives, we
11938 * can deliver it timely and perhaps the guest will schedule
11939 * another process. When the instruction that triggered a page
11940 * fault is retried, hopefully the page will be ready in the host.
11941 */
11942 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011943 return false;
Gleb Natapov7c907052010-10-14 11:22:53 +020011944 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020011945}
11946
11947void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
11948 struct kvm_async_pf *work)
11949{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011950 struct kvm_lapic_irq irq = {
11951 .delivery_mode = APIC_DM_FIXED,
11952 .vector = vcpu->arch.apf.vec
11953 };
Avi Kivity6389ee92010-11-29 16:12:30 +020011954
chai wenf2e10662013-10-14 22:22:33 +080011955 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +020011956 work->arch.token = ~0; /* broadcast wakeup */
11957 else
11958 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Sean Christopherson736c2912019-12-06 15:57:14 -080011959 trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa);
Gleb Natapov7c907052010-10-14 11:22:53 +020011960
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011961 if ((work->wakeup_all || work->notpresent_injected) &&
11962 kvm_pv_async_pf_enabled(vcpu) &&
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020011963 !apf_put_user_ready(vcpu, work->arch.token)) {
11964 vcpu->arch.apf.pageready_pending = true;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011965 kvm_apic_set_irq(vcpu, &irq, NULL);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020011966 }
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011967
Xiao Guangronge6d53e32010-11-01 17:01:28 +080011968 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +030011969 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +020011970}
11971
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020011972void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu)
11973{
11974 kvm_make_request(KVM_REQ_APF_READY, vcpu);
11975 if (!vcpu->arch.apf.pageready_pending)
11976 kvm_vcpu_kick(vcpu);
11977}
11978
Vitaly Kuznetsov7c0ade62020-05-25 16:41:18 +020011979bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020011980{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011981 if (!kvm_pv_async_pf_enabled(vcpu))
Gleb Natapov7c907052010-10-14 11:22:53 +020011982 return true;
11983 else
Vitaly Kuznetsov2f15d022021-04-22 11:29:48 +020011984 return kvm_lapic_enabled(vcpu) && apf_pageready_slot_free(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011985}
11986
Paolo Bonzini5544eb92015-07-07 15:41:58 +020011987void kvm_arch_start_assignment(struct kvm *kvm)
11988{
Marcelo Tosatti57ab8792021-05-25 10:41:16 -030011989 if (atomic_inc_return(&kvm->arch.assigned_device_count) == 1)
11990 static_call_cond(kvm_x86_start_assignment)(kvm);
Paolo Bonzini5544eb92015-07-07 15:41:58 +020011991}
11992EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
11993
11994void kvm_arch_end_assignment(struct kvm *kvm)
11995{
11996 atomic_dec(&kvm->arch.assigned_device_count);
11997}
11998EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
11999
12000bool kvm_arch_has_assigned_device(struct kvm *kvm)
12001{
12002 return atomic_read(&kvm->arch.assigned_device_count);
12003}
12004EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
12005
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060012006void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
12007{
12008 atomic_inc(&kvm->arch.noncoherent_dma_count);
12009}
12010EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
12011
12012void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
12013{
12014 atomic_dec(&kvm->arch.noncoherent_dma_count);
12015}
12016EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
12017
12018bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
12019{
12020 return atomic_read(&kvm->arch.noncoherent_dma_count);
12021}
12022EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
12023
Alex Williamson14717e22016-05-05 11:58:35 -060012024bool kvm_arch_has_irq_bypass(void)
12025{
Sean Christopherson92735b12019-08-02 15:06:17 -070012026 return true;
Alex Williamson14717e22016-05-05 11:58:35 -060012027}
12028
Feng Wu87276882015-09-18 22:29:40 +080012029int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
12030 struct irq_bypass_producer *prod)
12031{
12032 struct kvm_kernel_irqfd *irqfd =
12033 container_of(cons, struct kvm_kernel_irqfd, consumer);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012034 int ret;
Feng Wu87276882015-09-18 22:29:40 +080012035
Alex Williamson14717e22016-05-05 11:58:35 -060012036 irqfd->producer = prod;
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012037 kvm_arch_start_assignment(irqfd->kvm);
Jason Baronb36464772021-01-14 22:27:56 -050012038 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm,
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012039 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +080012040
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012041 if (ret)
12042 kvm_arch_end_assignment(irqfd->kvm);
12043
12044 return ret;
Feng Wu87276882015-09-18 22:29:40 +080012045}
12046
12047void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
12048 struct irq_bypass_producer *prod)
12049{
12050 int ret;
12051 struct kvm_kernel_irqfd *irqfd =
12052 container_of(cons, struct kvm_kernel_irqfd, consumer);
12053
Feng Wu87276882015-09-18 22:29:40 +080012054 WARN_ON(irqfd->producer != prod);
12055 irqfd->producer = NULL;
12056
12057 /*
12058 * When producer of consumer is unregistered, we change back to
12059 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +020012060 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +080012061 * int this case doesn't want to receive the interrupts.
12062 */
Jason Baronb36464772021-01-14 22:27:56 -050012063 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm, prod->irq, irqfd->gsi, 0);
Feng Wu87276882015-09-18 22:29:40 +080012064 if (ret)
12065 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
12066 " fails: %d\n", irqfd->consumer.token, ret);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012067
12068 kvm_arch_end_assignment(irqfd->kvm);
Feng Wu87276882015-09-18 22:29:40 +080012069}
12070
12071int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
12072 uint32_t guest_irq, bool set)
12073{
Jason Baronb36464772021-01-14 22:27:56 -050012074 return static_call(kvm_x86_update_pi_irte)(kvm, host_irq, guest_irq, set);
Feng Wu87276882015-09-18 22:29:40 +080012075}
12076
Longpeng(Mike)515a0c72021-08-27 16:00:03 +080012077bool kvm_arch_irqfd_route_changed(struct kvm_kernel_irq_routing_entry *old,
12078 struct kvm_kernel_irq_routing_entry *new)
12079{
12080 if (new->type != KVM_IRQ_ROUTING_MSI)
12081 return true;
12082
12083 return !!memcmp(&old->msi, &new->msi, sizeof(new->msi));
12084}
12085
Feng Wu520040142016-01-25 16:53:33 +080012086bool kvm_vector_hashing_enabled(void)
12087{
12088 return vector_hashing;
12089}
Feng Wu520040142016-01-25 16:53:33 +080012090
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012091bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
12092{
12093 return (vcpu->arch.msr_kvm_poll_control & 1) == 0;
12094}
12095EXPORT_SYMBOL_GPL(kvm_arch_no_poll);
12096
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012097
12098int kvm_spec_ctrl_test_value(u64 value)
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012099{
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012100 /*
12101 * test that setting IA32_SPEC_CTRL to given value
12102 * is allowed by the host processor
12103 */
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012104
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012105 u64 saved_value;
12106 unsigned long flags;
12107 int ret = 0;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012108
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012109 local_irq_save(flags);
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012110
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012111 if (rdmsrl_safe(MSR_IA32_SPEC_CTRL, &saved_value))
12112 ret = 1;
12113 else if (wrmsrl_safe(MSR_IA32_SPEC_CTRL, value))
12114 ret = 1;
12115 else
12116 wrmsrl(MSR_IA32_SPEC_CTRL, saved_value);
12117
12118 local_irq_restore(flags);
12119
12120 return ret;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012121}
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012122EXPORT_SYMBOL_GPL(kvm_spec_ctrl_test_value);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012123
Mohammed Gamal89786142020-07-10 17:48:03 +020012124void kvm_fixup_and_inject_pf_error(struct kvm_vcpu *vcpu, gva_t gva, u16 error_code)
12125{
12126 struct x86_exception fault;
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012127 u32 access = error_code &
12128 (PFERR_WRITE_MASK | PFERR_FETCH_MASK | PFERR_USER_MASK);
Mohammed Gamal89786142020-07-10 17:48:03 +020012129
12130 if (!(error_code & PFERR_PRESENT_MASK) ||
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012131 vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, &fault) != UNMAPPED_GVA) {
Mohammed Gamal89786142020-07-10 17:48:03 +020012132 /*
12133 * If vcpu->arch.walk_mmu->gva_to_gpa succeeded, the page
12134 * tables probably do not match the TLB. Just proceed
12135 * with the error code that the processor gave.
12136 */
12137 fault.vector = PF_VECTOR;
12138 fault.error_code_valid = true;
12139 fault.error_code = error_code;
12140 fault.nested_page_fault = false;
12141 fault.address = gva;
12142 }
12143 vcpu->arch.walk_mmu->inject_page_fault(vcpu, &fault);
12144}
12145EXPORT_SYMBOL_GPL(kvm_fixup_and_inject_pf_error);
Carsten Otte043405e2007-10-10 17:16:19 +020012146
Babu Moger3f3393b2020-09-11 14:29:05 -050012147/*
12148 * Handles kvm_read/write_guest_virt*() result and either injects #PF or returns
12149 * KVM_EXIT_INTERNAL_ERROR for cases not currently handled by KVM. Return value
12150 * indicates whether exit to userspace is needed.
12151 */
12152int kvm_handle_memory_failure(struct kvm_vcpu *vcpu, int r,
12153 struct x86_exception *e)
12154{
12155 if (r == X86EMUL_PROPAGATE_FAULT) {
12156 kvm_inject_emulated_page_fault(vcpu, e);
12157 return 1;
12158 }
12159
12160 /*
12161 * In case kvm_read/write_guest_virt*() failed with X86EMUL_IO_NEEDED
12162 * while handling a VMX instruction KVM could've handled the request
12163 * correctly by exiting to userspace and performing I/O but there
12164 * doesn't seem to be a real use-case behind such requests, just return
12165 * KVM_EXIT_INTERNAL_ERROR for now.
12166 */
12167 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
12168 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
12169 vcpu->run->internal.ndata = 0;
12170
12171 return 0;
12172}
12173EXPORT_SYMBOL_GPL(kvm_handle_memory_failure);
12174
Babu Moger97150922020-09-11 14:29:12 -050012175int kvm_handle_invpcid(struct kvm_vcpu *vcpu, unsigned long type, gva_t gva)
12176{
12177 bool pcid_enabled;
12178 struct x86_exception e;
Babu Moger97150922020-09-11 14:29:12 -050012179 struct {
12180 u64 pcid;
12181 u64 gla;
12182 } operand;
12183 int r;
12184
12185 r = kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e);
12186 if (r != X86EMUL_CONTINUE)
12187 return kvm_handle_memory_failure(vcpu, r, &e);
12188
12189 if (operand.pcid >> 12 != 0) {
12190 kvm_inject_gp(vcpu, 0);
12191 return 1;
12192 }
12193
12194 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
12195
12196 switch (type) {
12197 case INVPCID_TYPE_INDIV_ADDR:
12198 if ((!pcid_enabled && (operand.pcid != 0)) ||
12199 is_noncanonical_address(operand.gla, vcpu)) {
12200 kvm_inject_gp(vcpu, 0);
12201 return 1;
12202 }
12203 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
12204 return kvm_skip_emulated_instruction(vcpu);
12205
12206 case INVPCID_TYPE_SINGLE_CTXT:
12207 if (!pcid_enabled && (operand.pcid != 0)) {
12208 kvm_inject_gp(vcpu, 0);
12209 return 1;
12210 }
12211
Sean Christopherson21823fb2021-06-09 16:42:24 -070012212 kvm_invalidate_pcid(vcpu, operand.pcid);
Babu Moger97150922020-09-11 14:29:12 -050012213 return kvm_skip_emulated_instruction(vcpu);
12214
12215 case INVPCID_TYPE_ALL_NON_GLOBAL:
12216 /*
12217 * Currently, KVM doesn't mark global entries in the shadow
12218 * page tables, so a non-global flush just degenerates to a
12219 * global flush. If needed, we could optimize this later by
12220 * keeping track of global entries in shadow page tables.
12221 */
12222
12223 fallthrough;
12224 case INVPCID_TYPE_ALL_INCL_GLOBAL:
Sean Christopherson28f28d42021-06-09 16:42:30 -070012225 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Babu Moger97150922020-09-11 14:29:12 -050012226 return kvm_skip_emulated_instruction(vcpu);
12227
12228 default:
12229 BUG(); /* We have already checked above that type <= 3 */
12230 }
12231}
12232EXPORT_SYMBOL_GPL(kvm_handle_invpcid);
12233
Tom Lendacky8f423a82020-12-10 11:09:53 -060012234static int complete_sev_es_emulated_mmio(struct kvm_vcpu *vcpu)
12235{
12236 struct kvm_run *run = vcpu->run;
12237 struct kvm_mmio_fragment *frag;
12238 unsigned int len;
12239
12240 BUG_ON(!vcpu->mmio_needed);
12241
12242 /* Complete previous fragment */
12243 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
12244 len = min(8u, frag->len);
12245 if (!vcpu->mmio_is_write)
12246 memcpy(frag->data, run->mmio.data, len);
12247
12248 if (frag->len <= 8) {
12249 /* Switch to the next fragment. */
12250 frag++;
12251 vcpu->mmio_cur_fragment++;
12252 } else {
12253 /* Go forward to the next mmio piece. */
12254 frag->data += len;
12255 frag->gpa += len;
12256 frag->len -= len;
12257 }
12258
12259 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
12260 vcpu->mmio_needed = 0;
12261
12262 // VMG change, at this point, we're always done
12263 // RIP has already been advanced
12264 return 1;
12265 }
12266
12267 // More MMIO is needed
12268 run->mmio.phys_addr = frag->gpa;
12269 run->mmio.len = min(8u, frag->len);
12270 run->mmio.is_write = vcpu->mmio_is_write;
12271 if (run->mmio.is_write)
12272 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
12273 run->exit_reason = KVM_EXIT_MMIO;
12274
12275 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12276
12277 return 0;
12278}
12279
12280int kvm_sev_es_mmio_write(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12281 void *data)
12282{
12283 int handled;
12284 struct kvm_mmio_fragment *frag;
12285
12286 if (!data)
12287 return -EINVAL;
12288
12289 handled = write_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12290 if (handled == bytes)
12291 return 1;
12292
12293 bytes -= handled;
12294 gpa += handled;
12295 data += handled;
12296
12297 /*TODO: Check if need to increment number of frags */
12298 frag = vcpu->mmio_fragments;
12299 vcpu->mmio_nr_fragments = 1;
12300 frag->len = bytes;
12301 frag->gpa = gpa;
12302 frag->data = data;
12303
12304 vcpu->mmio_needed = 1;
12305 vcpu->mmio_cur_fragment = 0;
12306
12307 vcpu->run->mmio.phys_addr = gpa;
12308 vcpu->run->mmio.len = min(8u, frag->len);
12309 vcpu->run->mmio.is_write = 1;
12310 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
12311 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12312
12313 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12314
12315 return 0;
12316}
12317EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_write);
12318
12319int kvm_sev_es_mmio_read(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12320 void *data)
12321{
12322 int handled;
12323 struct kvm_mmio_fragment *frag;
12324
12325 if (!data)
12326 return -EINVAL;
12327
12328 handled = read_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12329 if (handled == bytes)
12330 return 1;
12331
12332 bytes -= handled;
12333 gpa += handled;
12334 data += handled;
12335
12336 /*TODO: Check if need to increment number of frags */
12337 frag = vcpu->mmio_fragments;
12338 vcpu->mmio_nr_fragments = 1;
12339 frag->len = bytes;
12340 frag->gpa = gpa;
12341 frag->data = data;
12342
12343 vcpu->mmio_needed = 1;
12344 vcpu->mmio_cur_fragment = 0;
12345
12346 vcpu->run->mmio.phys_addr = gpa;
12347 vcpu->run->mmio.len = min(8u, frag->len);
12348 vcpu->run->mmio.is_write = 0;
12349 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12350
12351 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12352
12353 return 0;
12354}
12355EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_read);
12356
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012357static int complete_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12358{
12359 memcpy(vcpu->arch.guest_ins_data, vcpu->arch.pio_data,
12360 vcpu->arch.pio.count * vcpu->arch.pio.size);
12361 vcpu->arch.pio.count = 0;
12362
12363 return 1;
12364}
12365
12366static int kvm_sev_es_outs(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_out_emulated(vcpu->arch.emulate_ctxt, size, port,
12372 data, count);
12373 if (ret)
12374 return ret;
12375
12376 vcpu->arch.pio.count = 0;
12377
12378 return 0;
12379}
12380
12381static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
12382 unsigned int port, void *data, unsigned int count)
12383{
12384 int ret;
12385
12386 ret = emulator_pio_in_emulated(vcpu->arch.emulate_ctxt, size, port,
12387 data, count);
12388 if (ret) {
12389 vcpu->arch.pio.count = 0;
12390 } else {
12391 vcpu->arch.guest_ins_data = data;
12392 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_ins;
12393 }
12394
12395 return 0;
12396}
12397
12398int kvm_sev_es_string_io(struct kvm_vcpu *vcpu, unsigned int size,
12399 unsigned int port, void *data, unsigned int count,
12400 int in)
12401{
12402 return in ? kvm_sev_es_ins(vcpu, size, port, data, count)
12403 : kvm_sev_es_outs(vcpu, size, port, data, count);
12404}
12405EXPORT_SYMBOL_GPL(kvm_sev_es_string_io);
12406
Lorenzo Bresciad95df952020-12-23 14:45:07 +000012407EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_entry);
Carsten Otte043405e2007-10-10 17:16:19 +020012408EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
12409EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
12410EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
12411EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
12412EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
12413EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
12414EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
12415EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
12416EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
12417EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Sean Christopherson5497b952019-07-11 08:58:29 -070012418EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed);
Carsten Otte043405e2007-10-10 17:16:19 +020012419EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
12420EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
12421EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
12422EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Peter Xu4f75bcc2019-09-06 10:17:22 +080012423EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update);
Carsten Otte043405e2007-10-10 17:16:19 +020012424EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
12425EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
12426EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
12427EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);
Suravee Suthikulpanitab56f8e2020-03-12 05:39:28 -050012428EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log);
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -060012429EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request);
Tom Lendackyd523ab6b2020-12-10 11:09:48 -060012430EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_enter);
12431EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_exit);
Tom Lendacky59e38b52020-12-10 11:09:52 -060012432EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_enter);
12433EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_exit);