blob: 50450ebe709fa41d7c3319489255ed1bd1332406 [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Carsten Otte043405e2007-10-10 17:16:19 +02002/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * derived from drivers/kvm/kvm_main.c
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03008 * Copyright (C) 2008 Qumranet, Inc.
9 * Copyright IBM Corporation, 2008
Nicolas Kaiser9611c182010-10-06 14:23:22 +020010 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Carsten Otte043405e2007-10-10 17:16:19 +020011 *
12 * Authors:
13 * Avi Kivity <avi@qumranet.com>
14 * Yaniv Kamay <yaniv@qumranet.com>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030015 * Amit Shah <amit.shah@qumranet.com>
16 * Ben-Ami Yassour <benami@il.ibm.com>
Carsten Otte043405e2007-10-10 17:16:19 +020017 */
18
Avi Kivityedf88412007-12-16 11:02:48 +020019#include <linux/kvm_host.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020020#include "irq.h"
彭浩(Richard)88197e62020-05-21 05:57:49 +000021#include "ioapic.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080022#include "mmu.h"
Sheng Yang78376992008-01-28 05:10:22 +080023#include "i8254.h"
Izik Eidus37817f22008-03-24 23:14:53 +020024#include "tss.h"
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030025#include "kvm_cache_regs.h"
Sean Christopherson2f728d62020-02-18 15:29:49 -080026#include "kvm_emulate.h"
Avi Kivity26eef702008-07-03 14:59:22 +030027#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020028#include "cpuid.h"
Wei Huang474a5bb2015-06-19 13:54:23 +020029#include "pmu.h"
Andrey Smetanine83d5882015-07-03 15:01:34 +030030#include "hyperv.h"
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -060031#include "lapic.h"
Joao Martins23200b72018-06-13 09:55:44 -040032#include "xen.h"
Carsten Otte313a3dc2007-10-11 19:16:52 +020033
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020034#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030035#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020036#include <linux/kvm.h>
37#include <linux/fs.h>
38#include <linux/vmalloc.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040039#include <linux/export.h>
40#include <linux/moduleparam.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080041#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050042#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010043#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030044#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010045#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030046#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020047#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080049#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080050#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020051#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020052#include <linux/pci.h>
Marcelo Tosatti16e8d742012-11-27 23:29:00 -020053#include <linux/timekeeper_internal.h>
54#include <linux/pvclock_gtod.h>
Feng Wu87276882015-09-18 22:29:40 +080055#include <linux/kvm_irqfd.h>
56#include <linux/irqbypass.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010057#include <linux/sched/stat.h>
Wanpeng Li0c5f81d2019-07-06 09:26:51 +080058#include <linux/sched/isolation.h>
Tom Lendackyd0ec49d2017-07-17 16:10:27 -050059#include <linux/mem_encrypt.h>
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020060#include <linux/entry-kvm.h>
Sergey Senozhatsky7d628742021-06-06 11:10:45 +090061#include <linux/suspend.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010062
Avi Kivityaec51dc2009-07-01 16:01:02 +030063#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080064
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020065#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080066#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020067#include <asm/desc.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080068#include <asm/mce.h>
Dave Hansen784a46612021-06-23 14:02:05 +020069#include <asm/pkru.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020070#include <linux/kernel_stat.h>
Thomas Gleixnera0ff0612021-10-15 03:16:12 +020071#include <asm/fpu/api.h>
72#include <asm/fpu/xcr.h>
73#include <asm/fpu/xstate.h>
Zachary Amsden1d5f0662010-08-19 22:07:30 -100074#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030075#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080076#include <asm/irq_remapping.h>
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010077#include <asm/mshyperv.h>
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +010078#include <asm/hypervisor.h>
Babu Moger97150922020-09-11 14:29:12 -050079#include <asm/tlbflush.h>
Chao Pengbf8c55d2018-10-24 16:05:14 +080080#include <asm/intel_pt.h>
Masami Hiramatsub3dc0692019-09-06 22:13:59 +090081#include <asm/emulate_prefix.h>
Sean Christophersonfe7e9482021-04-12 16:21:43 +120082#include <asm/sgx.h>
Michael Kelleydd2cb342019-07-01 04:26:06 +000083#include <clocksource/hyperv_timer.h>
Carsten Otte043405e2007-10-10 17:16:19 +020084
Dave Hansend1898b72016-06-01 10:42:20 -070085#define CREATE_TRACE_POINTS
86#include "trace.h"
87
Carsten Otte313a3dc2007-10-11 19:16:52 +020088#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080089#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080090u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
91EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080092
Avi Kivity0f65dd72011-04-20 13:37:53 +030093#define emul_to_vcpu(ctxt) \
Sean Christophersonc9b8b072020-02-18 15:29:48 -080094 ((struct kvm_vcpu *)(ctxt)->vcpu)
Avi Kivity0f65dd72011-04-20 13:37:53 +030095
Joerg Roedel50a37eb2008-01-31 14:57:38 +010096/* EFER defaults:
97 * - enable syscall per default because its emulated by KVM
98 * - enable LME and LMA per default on 64 bit KVM
99 */
100#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +0800101static
102u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100103#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +0800104static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100105#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +0200106
Sean Christophersonb11306b2019-12-10 14:44:13 -0800107static u64 __read_mostly cr4_reserved_bits = CR4_RESERVED_BITS;
108
Ashish Kalra0dbb1122021-06-08 18:05:43 +0000109#define KVM_EXIT_HYPERCALL_VALID_MASK (1 << KVM_HC_MAP_GPA_RANGE)
110
Radim Krčmářc5192652016-07-12 22:09:28 +0200111#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
112 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +0200113
Gleb Natapovcb142eb2009-08-09 15:17:40 +0300114static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300115static void process_nmi(struct kvm_vcpu *vcpu);
Jay Zhou1f7becf2021-01-18 16:47:20 +0800116static void process_smi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +0200117static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +0100118static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Ken Hofsass01643c52018-01-31 16:03:36 -0800119static void store_regs(struct kvm_vcpu *vcpu);
120static int sync_regs(struct kvm_vcpu *vcpu);
Avi Kivity674eea02008-02-11 18:37:23 +0200121
Maxim Levitsky6dba9402021-06-07 12:02:02 +0300122static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
123static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
124
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700125struct kvm_x86_ops kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300126EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800127
Jason Baron9af54712021-01-14 22:27:55 -0500128#define KVM_X86_OP(func) \
129 DEFINE_STATIC_CALL_NULL(kvm_x86_##func, \
130 *(((struct kvm_x86_ops *)0)->func));
131#define KVM_X86_OP_NULL KVM_X86_OP
132#include <asm/kvm-x86-ops.h>
133EXPORT_STATIC_CALL_GPL(kvm_x86_get_cs_db_l_bits);
134EXPORT_STATIC_CALL_GPL(kvm_x86_cache_reg);
135EXPORT_STATIC_CALL_GPL(kvm_x86_tlb_flush_current);
136
Paolo Bonzini893590c2015-11-06 11:46:24 +0100137static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030138module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200139
Like Xud8550662021-01-08 09:36:55 +0800140bool __read_mostly report_ignored_msrs = true;
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200141module_param(report_ignored_msrs, bool, S_IRUGO | S_IWUSR);
Like Xud8550662021-01-08 09:36:55 +0800142EXPORT_SYMBOL_GPL(report_ignored_msrs);
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200143
Wanpeng Li4c276252018-05-05 04:02:32 -0700144unsigned int min_timer_period_us = 200;
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200145module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
146
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300147static bool __read_mostly kvmclock_periodic_sync = true;
148module_param(kvmclock_periodic_sync, bool, S_IRUGO);
149
Paolo Bonzini893590c2015-11-06 11:46:24 +0100150bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100151EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100152u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100153EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800154u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
155EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
156u64 __read_mostly kvm_max_tsc_scaling_ratio;
157EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700158u64 __read_mostly kvm_default_tsc_scaling_ratio;
159EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +0800160bool __read_mostly kvm_has_bus_lock_exit;
161EXPORT_SYMBOL_GPL(kvm_has_bus_lock_exit);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100162
Zachary Amsdencc578282012-02-03 15:43:50 -0200163/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100164static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200165module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
166
Sean Christophersonc3941d92019-04-17 10:15:33 -0700167/*
168 * lapic timer advance (tscdeadline mode only) in nanoseconds. '-1' enables
Ingo Molnard9f6e122021-03-18 15:28:01 +0100169 * adaptive tuning starting from default advancement of 1000ns. '0' disables
Sean Christophersonc3941d92019-04-17 10:15:33 -0700170 * advancement entirely. Any other value is used as-is and disables adaptive
Ingo Molnard9f6e122021-03-18 15:28:01 +0100171 * tuning, i.e. allows privileged userspace to set an exact advancement time.
Sean Christophersonc3941d92019-04-17 10:15:33 -0700172 */
173static int __read_mostly lapic_timer_advance_ns = -1;
Wanpeng Li0e6edce2019-05-20 16:18:06 +0800174module_param(lapic_timer_advance_ns, int, S_IRUGO | S_IWUSR);
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500175
Feng Wu520040142016-01-25 16:53:33 +0800176static bool __read_mostly vector_hashing = true;
177module_param(vector_hashing, bool, S_IRUGO);
178
Liran Alonc4ae60e2018-03-12 13:12:47 +0200179bool __read_mostly enable_vmware_backdoor = false;
180module_param(enable_vmware_backdoor, bool, S_IRUGO);
181EXPORT_SYMBOL_GPL(enable_vmware_backdoor);
182
Wanpeng Li6c86eed2018-04-03 16:28:49 -0700183static bool __read_mostly force_emulation_prefix = false;
184module_param(force_emulation_prefix, bool, S_IRUGO);
185
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800186int __read_mostly pi_inject_timer = -1;
187module_param(pi_inject_timer, bint, S_IRUGO | S_IWUSR);
188
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700189/*
190 * Restoring the host value for MSRs that are only consumed when running in
191 * usermode, e.g. SYSCALL MSRs and TSC_AUX, can be deferred until the CPU
192 * returns to userspace, i.e. the kernel can run with the guest's value.
193 */
194#define KVM_MAX_NR_USER_RETURN_MSRS 16
Avi Kivity18863bd2009-09-07 11:12:18 +0300195
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700196struct kvm_user_return_msrs {
Avi Kivity18863bd2009-09-07 11:12:18 +0300197 struct user_return_notifier urn;
198 bool registered;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700199 struct kvm_user_return_msr_values {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800200 u64 host;
201 u64 curr;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700202 } values[KVM_MAX_NR_USER_RETURN_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300203};
204
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700205u32 __read_mostly kvm_nr_uret_msrs;
206EXPORT_SYMBOL_GPL(kvm_nr_uret_msrs);
207static u32 __read_mostly kvm_uret_msrs_list[KVM_MAX_NR_USER_RETURN_MSRS];
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700208static struct kvm_user_return_msrs __percpu *user_return_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300209
Sean Christophersoncfc48182020-03-02 15:56:23 -0800210#define KVM_SUPPORTED_XCR0 (XFEATURE_MASK_FP | XFEATURE_MASK_SSE \
211 | XFEATURE_MASK_YMM | XFEATURE_MASK_BNDREGS \
212 | XFEATURE_MASK_BNDCSR | XFEATURE_MASK_AVX512 \
213 | XFEATURE_MASK_PKRU)
214
Sean Christopherson91661982020-03-02 15:57:06 -0800215u64 __read_mostly host_efer;
216EXPORT_SYMBOL_GPL(host_efer);
217
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200218bool __read_mostly allow_smaller_maxphyaddr = 0;
Mohammed Gamal3edd6832020-07-10 17:48:11 +0200219EXPORT_SYMBOL_GPL(allow_smaller_maxphyaddr);
220
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +0200221bool __read_mostly enable_apicv = true;
222EXPORT_SYMBOL_GPL(enable_apicv);
223
Tom Lendacky86137772020-12-10 11:10:07 -0600224u64 __read_mostly host_xss;
225EXPORT_SYMBOL_GPL(host_xss);
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100226u64 __read_mostly supported_xss;
227EXPORT_SYMBOL_GPL(supported_xss);
Aaron Lewis139a12c2019-10-21 16:30:25 -0700228
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000229const struct _kvm_stats_desc kvm_vm_stats_desc[] = {
230 KVM_GENERIC_VM_STATS(),
231 STATS_DESC_COUNTER(VM, mmu_shadow_zapped),
232 STATS_DESC_COUNTER(VM, mmu_pte_write),
233 STATS_DESC_COUNTER(VM, mmu_pde_zapped),
234 STATS_DESC_COUNTER(VM, mmu_flooded),
235 STATS_DESC_COUNTER(VM, mmu_recycled),
236 STATS_DESC_COUNTER(VM, mmu_cache_miss),
237 STATS_DESC_ICOUNTER(VM, mmu_unsync),
Mingwei Zhang71f51d22021-08-02 21:46:07 -0700238 STATS_DESC_ICOUNTER(VM, pages_4k),
239 STATS_DESC_ICOUNTER(VM, pages_2m),
240 STATS_DESC_ICOUNTER(VM, pages_1g),
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000241 STATS_DESC_ICOUNTER(VM, nx_lpage_splits),
Peter Xuec1cf692021-06-25 11:32:06 -0400242 STATS_DESC_PCOUNTER(VM, max_mmu_rmap_size),
Jing Zhangbc9e9e62021-06-23 17:28:46 -0400243 STATS_DESC_PCOUNTER(VM, max_mmu_page_hash_collisions)
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000244};
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000245
246const struct kvm_stats_header kvm_vm_stats_header = {
247 .name_size = KVM_STATS_NAME_SIZE,
248 .num_desc = ARRAY_SIZE(kvm_vm_stats_desc),
249 .id_offset = sizeof(struct kvm_stats_header),
250 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
251 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
252 sizeof(kvm_vm_stats_desc),
253};
254
Jing Zhangce55c042021-06-18 22:27:06 +0000255const struct _kvm_stats_desc kvm_vcpu_stats_desc[] = {
256 KVM_GENERIC_VCPU_STATS(),
257 STATS_DESC_COUNTER(VCPU, pf_fixed),
258 STATS_DESC_COUNTER(VCPU, pf_guest),
259 STATS_DESC_COUNTER(VCPU, tlb_flush),
260 STATS_DESC_COUNTER(VCPU, invlpg),
261 STATS_DESC_COUNTER(VCPU, exits),
262 STATS_DESC_COUNTER(VCPU, io_exits),
263 STATS_DESC_COUNTER(VCPU, mmio_exits),
264 STATS_DESC_COUNTER(VCPU, signal_exits),
265 STATS_DESC_COUNTER(VCPU, irq_window_exits),
266 STATS_DESC_COUNTER(VCPU, nmi_window_exits),
267 STATS_DESC_COUNTER(VCPU, l1d_flush),
268 STATS_DESC_COUNTER(VCPU, halt_exits),
269 STATS_DESC_COUNTER(VCPU, request_irq_exits),
270 STATS_DESC_COUNTER(VCPU, irq_exits),
271 STATS_DESC_COUNTER(VCPU, host_state_reload),
272 STATS_DESC_COUNTER(VCPU, fpu_reload),
273 STATS_DESC_COUNTER(VCPU, insn_emulation),
274 STATS_DESC_COUNTER(VCPU, insn_emulation_fail),
275 STATS_DESC_COUNTER(VCPU, hypercalls),
276 STATS_DESC_COUNTER(VCPU, irq_injections),
277 STATS_DESC_COUNTER(VCPU, nmi_injections),
278 STATS_DESC_COUNTER(VCPU, req_event),
279 STATS_DESC_COUNTER(VCPU, nested_run),
280 STATS_DESC_COUNTER(VCPU, directed_yield_attempted),
281 STATS_DESC_COUNTER(VCPU, directed_yield_successful),
282 STATS_DESC_ICOUNTER(VCPU, guest_mode)
283};
Jing Zhangce55c042021-06-18 22:27:06 +0000284
285const struct kvm_stats_header kvm_vcpu_stats_header = {
286 .name_size = KVM_STATS_NAME_SIZE,
287 .num_desc = ARRAY_SIZE(kvm_vcpu_stats_desc),
288 .id_offset = sizeof(struct kvm_stats_header),
289 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
290 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
291 sizeof(kvm_vcpu_stats_desc),
292};
293
Dexuan Cui2acf9232010-06-10 11:27:12 +0800294u64 __read_mostly host_xcr0;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800295u64 __read_mostly supported_xcr0;
296EXPORT_SYMBOL_GPL(supported_xcr0);
Dexuan Cui2acf9232010-06-10 11:27:12 +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{
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001025 /*
1026 * If any role bit is changed, the MMU needs to be reset.
1027 *
1028 * If CR4.PCIDE is changed 1 -> 0, the guest TLB must be flushed.
1029 * If CR4.PCIDE is changed 0 -> 1, there is no need to flush the TLB
1030 * according to the SDM; however, stale prev_roots could be reused
1031 * incorrectly in the future after a MOV to CR3 with NOFLUSH=1, so we
1032 * free them all. KVM_REQ_MMU_RELOAD is fit for the both cases; it
1033 * is slow, but changing CR4.PCIDE is a rare case.
1034 *
1035 * If CR4.PGE is changed, the guest TLB must be flushed.
1036 *
1037 * Note: resetting MMU is a superset of KVM_REQ_MMU_RELOAD and
1038 * KVM_REQ_MMU_RELOAD is a superset of KVM_REQ_TLB_FLUSH_GUEST, hence
1039 * the usage of "else if".
1040 */
Lai Jiangshan55261732021-09-19 10:42:45 +08001041 if ((cr4 ^ old_cr4) & KVM_MMU_CR4_ROLE_BITS)
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001042 kvm_mmu_reset_context(vcpu);
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001043 else if ((cr4 ^ old_cr4) & X86_CR4_PCIDE)
1044 kvm_make_request(KVM_REQ_MMU_RELOAD, vcpu);
1045 else if ((cr4 ^ old_cr4) & X86_CR4_PGE)
Lai Jiangshan55261732021-09-19 10:42:45 +08001046 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001047}
1048EXPORT_SYMBOL_GPL(kvm_post_set_cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001049
Avi Kivitya83b29c2010-06-10 17:02:15 +03001050int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +01001051{
Avi Kivityfc78f512009-12-07 12:16:48 +02001052 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +08001053 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
Jim Mattsoncb957ad2020-08-17 11:16:54 -07001054 X86_CR4_SMEP;
Xiao Guangrong0be02262015-05-11 22:55:21 +08001055
Sean Christophersonee69c922020-10-06 18:44:16 -07001056 if (!kvm_is_valid_cr4(vcpu, cr4))
Paolo Bonziniae3e61e2016-07-12 10:36:41 +02001057 return 1;
1058
Carsten Ottea03490e2007-10-29 16:09:35 +01001059 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +03001060 if (!(cr4 & X86_CR4_PAE))
1061 return 1;
Sean Christophersond74fcfc2020-07-02 19:17:14 -07001062 if ((cr4 ^ old_cr4) & X86_CR4_LA57)
1063 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +03001064 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
1065 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +02001066 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
1067 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +03001068 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001069
Mao, Junjiead756a12012-07-02 01:18:48 +00001070 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
Radim Krčmářd6321d42017-08-05 00:12:49 +02001071 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
Mao, Junjiead756a12012-07-02 01:18:48 +00001072 return 1;
1073
1074 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
1075 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
1076 return 1;
1077 }
1078
Jason Baronb36464772021-01-14 22:27:56 -05001079 static_call(kvm_x86_set_cr4)(vcpu, cr4);
Gleb Natapov0f122442010-04-28 19:15:31 +03001080
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001081 kvm_post_set_cr4(vcpu, old_cr4, cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001082
Gleb Natapov0f122442010-04-28 19:15:31 +03001083 return 0;
1084}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001085EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +01001086
Sean Christopherson21823fb2021-06-09 16:42:24 -07001087static void kvm_invalidate_pcid(struct kvm_vcpu *vcpu, unsigned long pcid)
1088{
1089 struct kvm_mmu *mmu = vcpu->arch.mmu;
1090 unsigned long roots_to_free = 0;
1091 int i;
1092
1093 /*
Lai Jiangshane45e9e32021-10-19 19:01:51 +08001094 * MOV CR3 and INVPCID are usually not intercepted when using TDP, but
1095 * this is reachable when running EPT=1 and unrestricted_guest=0, and
1096 * also via the emulator. KVM's TDP page tables are not in the scope of
1097 * the invalidation, but the guest's TLB entries need to be flushed as
1098 * the CPU may have cached entries in its TLB for the target PCID.
1099 */
1100 if (unlikely(tdp_enabled)) {
1101 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
1102 return;
1103 }
1104
1105 /*
Sean Christopherson21823fb2021-06-09 16:42:24 -07001106 * If neither the current CR3 nor any of the prev_roots use the given
1107 * PCID, then nothing needs to be done here because a resync will
1108 * happen anyway before switching to any other CR3.
1109 */
1110 if (kvm_get_active_pcid(vcpu) == pcid) {
Sean Christophersone62f1aa2021-06-09 16:42:32 -07001111 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001112 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
1113 }
1114
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001115 /*
1116 * If PCID is disabled, there is no need to free prev_roots even if the
1117 * PCIDs for them are also 0, because MOV to CR3 always flushes the TLB
1118 * with PCIDE=0.
1119 */
1120 if (!kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
1121 return;
1122
Sean Christopherson21823fb2021-06-09 16:42:24 -07001123 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
1124 if (kvm_get_pcid(vcpu, mmu->prev_roots[i].pgd) == pcid)
1125 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
1126
1127 kvm_mmu_free_roots(vcpu, mmu, roots_to_free);
1128}
1129
Avi Kivity23902182010-06-10 17:02:16 +03001130int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +01001131{
Junaid Shahidade61e22018-06-27 14:59:15 -07001132 bool skip_tlb_flush = false;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001133 unsigned long pcid = 0;
Paolo Bonziniac146232014-11-10 13:53:25 +01001134#ifdef CONFIG_X86_64
Junaid Shahidc19986f2018-05-04 11:37:13 -07001135 bool pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
1136
Junaid Shahidade61e22018-06-27 14:59:15 -07001137 if (pcid_enabled) {
Junaid Shahid208320b2018-06-27 14:59:21 -07001138 skip_tlb_flush = cr3 & X86_CR3_PCID_NOFLUSH;
1139 cr3 &= ~X86_CR3_PCID_NOFLUSH;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001140 pcid = cr3 & X86_CR3_PCID_MASK;
Junaid Shahidade61e22018-06-27 14:59:15 -07001141 }
Paolo Bonziniac146232014-11-10 13:53:25 +01001142#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +02001143
Sean Christophersonc7313152021-06-07 12:01:58 +03001144 /* PDPTRs are always reloaded for PAE paging. */
Sean Christopherson21823fb2021-06-09 16:42:24 -07001145 if (cr3 == kvm_read_cr3(vcpu) && !is_pae_paging(vcpu))
1146 goto handle_tlb_flush;
Avi Kivityd835dfe2007-11-21 02:57:59 +02001147
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001148 /*
1149 * Do not condition the GPA check on long mode, this helper is used to
1150 * stuff CR3, e.g. for RSM emulation, and there is no guarantee that
1151 * the current vCPU mode is accurate.
1152 */
1153 if (kvm_vcpu_is_illegal_gpa(vcpu, cr3))
Yu Zhangd1cd3ce2017-08-24 20:27:53 +08001154 return 1;
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001155
1156 if (is_pae_paging(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +03001157 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001158
Sean Christopherson21823fb2021-06-09 16:42:24 -07001159 if (cr3 != kvm_read_cr3(vcpu))
Sean Christophersonb5129102021-06-09 16:42:27 -07001160 kvm_mmu_new_pgd(vcpu, cr3);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001161
Gleb Natapov0f122442010-04-28 19:15:31 +03001162 vcpu->arch.cr3 = cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001163 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Junaid Shahid7c390d32018-06-27 14:59:06 -07001164
Sean Christopherson21823fb2021-06-09 16:42:24 -07001165handle_tlb_flush:
1166 /*
1167 * A load of CR3 that flushes the TLB flushes only the current PCID,
1168 * even if PCID is disabled, in which case PCID=0 is flushed. It's a
1169 * moot point in the end because _disabling_ PCID will flush all PCIDs,
1170 * and it's impossible to use a non-zero PCID when PCID is disabled,
1171 * i.e. only PCID=0 can be relevant.
1172 */
1173 if (!skip_tlb_flush)
1174 kvm_invalidate_pcid(vcpu, pcid);
1175
Gleb Natapov0f122442010-04-28 19:15:31 +03001176 return 0;
1177}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001178EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +01001179
Andre Przywaraeea1cff2010-12-21 11:12:00 +01001180int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +01001181{
Gleb Natapov0f122442010-04-28 19:15:31 +03001182 if (cr8 & CR8_RESERVED_BITS)
1183 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +02001184 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001185 kvm_lapic_set_tpr(vcpu, cr8);
1186 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001187 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +03001188 return 0;
1189}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001190EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001191
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001192unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +01001193{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001194 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001195 return kvm_lapic_get_cr8(vcpu);
1196 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001197 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +01001198}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001199EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001200
Nadav Amitae561ed2015-04-02 03:10:37 +03001201static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
1202{
1203 int i;
1204
1205 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
1206 for (i = 0; i < KVM_NR_DB_REGS; i++)
1207 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Nadav Amitae561ed2015-04-02 03:10:37 +03001208 }
1209}
1210
Paolo Bonzini7c866632020-05-16 08:42:28 -04001211void kvm_update_dr7(struct kvm_vcpu *vcpu)
Jan Kiszkac8639012012-09-21 05:42:55 +02001212{
1213 unsigned long dr7;
1214
1215 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1216 dr7 = vcpu->arch.guest_debug_dr7;
1217 else
1218 dr7 = vcpu->arch.dr7;
Jason Baronb36464772021-01-14 22:27:56 -05001219 static_call(kvm_x86_set_dr7)(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +01001220 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
1221 if (dr7 & DR7_BP_EN_MASK)
1222 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +02001223}
Paolo Bonzini7c866632020-05-16 08:42:28 -04001224EXPORT_SYMBOL_GPL(kvm_update_dr7);
Jan Kiszkac8639012012-09-21 05:42:55 +02001225
Nadav Amit6f43ed02014-07-15 17:37:46 +03001226static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
1227{
1228 u64 fixed = DR6_FIXED_1;
1229
Radim Krčmářd6321d42017-08-05 00:12:49 +02001230 if (!guest_cpuid_has(vcpu, X86_FEATURE_RTM))
Nadav Amit6f43ed02014-07-15 17:37:46 +03001231 fixed |= DR6_RTM;
Chenyi Qiange8ea85f2021-02-02 17:04:32 +08001232
1233 if (!guest_cpuid_has(vcpu, X86_FEATURE_BUS_LOCK_DETECT))
1234 fixed |= DR6_BUS_LOCK;
Nadav Amit6f43ed02014-07-15 17:37:46 +03001235 return fixed;
1236}
1237
Paolo Bonzini996ff542020-12-14 07:49:54 -05001238int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +03001239{
Marios Pomonisea740052019-12-11 12:47:52 -08001240 size_t size = ARRAY_SIZE(vcpu->arch.db);
1241
Gleb Natapov020df072010-04-13 10:05:23 +03001242 switch (dr) {
1243 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001244 vcpu->arch.db[array_index_nospec(dr, size)] = val;
Gleb Natapov020df072010-04-13 10:05:23 +03001245 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
1246 vcpu->arch.eff_db[dr] = val;
1247 break;
1248 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001249 case 6:
Krish Sadhukhanf5f61452020-05-22 18:19:51 -04001250 if (!kvm_dr6_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001251 return 1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +03001252 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001253 break;
1254 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001255 default: /* 7 */
Krish Sadhukhanb91991b2020-01-15 19:54:32 -05001256 if (!kvm_dr7_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001257 return 1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +03001258 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02001259 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001260 break;
1261 }
1262
1263 return 0;
1264}
1265EXPORT_SYMBOL_GPL(kvm_set_dr);
1266
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05001267void kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +03001268{
Marios Pomonisea740052019-12-11 12:47:52 -08001269 size_t size = ARRAY_SIZE(vcpu->arch.db);
1270
Gleb Natapov020df072010-04-13 10:05:23 +03001271 switch (dr) {
1272 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001273 *val = vcpu->arch.db[array_index_nospec(dr, size)];
Gleb Natapov020df072010-04-13 10:05:23 +03001274 break;
1275 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001276 case 6:
Paolo Bonzini5679b802020-05-04 11:28:25 -04001277 *val = vcpu->arch.dr6;
Gleb Natapov020df072010-04-13 10:05:23 +03001278 break;
1279 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001280 default: /* 7 */
1281 *val = vcpu->arch.dr7;
1282 break;
1283 }
Gleb Natapov338dbc92010-04-28 19:15:32 +03001284}
Gleb Natapov020df072010-04-13 10:05:23 +03001285EXPORT_SYMBOL_GPL(kvm_get_dr);
1286
Sean Christophersonc483c452021-02-04 16:57:48 -08001287int kvm_emulate_rdpmc(struct kvm_vcpu *vcpu)
Avi Kivity022cd0e2011-11-10 14:57:23 +02001288{
Sean Christophersonde3cd112019-04-30 10:36:17 -07001289 u32 ecx = kvm_rcx_read(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001290 u64 data;
Avi Kivity022cd0e2011-11-10 14:57:23 +02001291
Sean Christophersonc483c452021-02-04 16:57:48 -08001292 if (kvm_pmu_rdpmc(vcpu, ecx, &data)) {
1293 kvm_inject_gp(vcpu, 0);
1294 return 1;
1295 }
1296
Sean Christophersonde3cd112019-04-30 10:36:17 -07001297 kvm_rax_write(vcpu, (u32)data);
1298 kvm_rdx_write(vcpu, data >> 32);
Sean Christophersonc483c452021-02-04 16:57:48 -08001299 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001300}
Sean Christophersonc483c452021-02-04 16:57:48 -08001301EXPORT_SYMBOL_GPL(kvm_emulate_rdpmc);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001302
Carsten Otte043405e2007-10-10 17:16:19 +02001303/*
1304 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
1305 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
1306 *
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001307 * The three MSR lists(msrs_to_save, emulated_msrs, msr_based_features)
1308 * extract the supported MSRs from the related const lists.
1309 * msrs_to_save is selected from the msrs_to_save_all to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -04001310 * capabilities of the host cpu. This capabilities test skips MSRs that are
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001311 * kvm-specific. Those are put in emulated_msrs_all; filtering of emulated_msrs
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001312 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +02001313 */
Glauber Costae3267cb2009-10-06 13:24:50 -04001314
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001315static const u32 msrs_to_save_all[] = {
Carsten Otte043405e2007-10-10 17:16:19 +02001316 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -04001317 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +02001318#ifdef CONFIG_X86_64
1319 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
1320#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +08001321 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001322 MSR_IA32_FEAT_CTL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001323 MSR_IA32_SPEC_CTRL,
Chao Pengbf8c55d2018-10-24 16:05:14 +08001324 MSR_IA32_RTIT_CTL, MSR_IA32_RTIT_STATUS, MSR_IA32_RTIT_CR3_MATCH,
1325 MSR_IA32_RTIT_OUTPUT_BASE, MSR_IA32_RTIT_OUTPUT_MASK,
1326 MSR_IA32_RTIT_ADDR0_A, MSR_IA32_RTIT_ADDR0_B,
1327 MSR_IA32_RTIT_ADDR1_A, MSR_IA32_RTIT_ADDR1_B,
1328 MSR_IA32_RTIT_ADDR2_A, MSR_IA32_RTIT_ADDR2_B,
1329 MSR_IA32_RTIT_ADDR3_A, MSR_IA32_RTIT_ADDR3_B,
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001330 MSR_IA32_UMWAIT_CONTROL,
1331
Jim Mattsone2ada662019-08-21 11:20:04 -07001332 MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1,
1333 MSR_ARCH_PERFMON_FIXED_CTR0 + 2, MSR_ARCH_PERFMON_FIXED_CTR0 + 3,
1334 MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS,
1335 MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL,
1336 MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1,
1337 MSR_ARCH_PERFMON_PERFCTR0 + 2, MSR_ARCH_PERFMON_PERFCTR0 + 3,
1338 MSR_ARCH_PERFMON_PERFCTR0 + 4, MSR_ARCH_PERFMON_PERFCTR0 + 5,
1339 MSR_ARCH_PERFMON_PERFCTR0 + 6, MSR_ARCH_PERFMON_PERFCTR0 + 7,
1340 MSR_ARCH_PERFMON_PERFCTR0 + 8, MSR_ARCH_PERFMON_PERFCTR0 + 9,
1341 MSR_ARCH_PERFMON_PERFCTR0 + 10, MSR_ARCH_PERFMON_PERFCTR0 + 11,
1342 MSR_ARCH_PERFMON_PERFCTR0 + 12, MSR_ARCH_PERFMON_PERFCTR0 + 13,
1343 MSR_ARCH_PERFMON_PERFCTR0 + 14, MSR_ARCH_PERFMON_PERFCTR0 + 15,
1344 MSR_ARCH_PERFMON_PERFCTR0 + 16, MSR_ARCH_PERFMON_PERFCTR0 + 17,
Jim Mattsone2ada662019-08-21 11:20:04 -07001345 MSR_ARCH_PERFMON_EVENTSEL0, MSR_ARCH_PERFMON_EVENTSEL1,
1346 MSR_ARCH_PERFMON_EVENTSEL0 + 2, MSR_ARCH_PERFMON_EVENTSEL0 + 3,
1347 MSR_ARCH_PERFMON_EVENTSEL0 + 4, MSR_ARCH_PERFMON_EVENTSEL0 + 5,
1348 MSR_ARCH_PERFMON_EVENTSEL0 + 6, MSR_ARCH_PERFMON_EVENTSEL0 + 7,
1349 MSR_ARCH_PERFMON_EVENTSEL0 + 8, MSR_ARCH_PERFMON_EVENTSEL0 + 9,
1350 MSR_ARCH_PERFMON_EVENTSEL0 + 10, MSR_ARCH_PERFMON_EVENTSEL0 + 11,
1351 MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13,
1352 MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15,
1353 MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17,
Fares Mehannae1fc1552021-09-15 13:39:50 +00001354
1355 MSR_K7_EVNTSEL0, MSR_K7_EVNTSEL1, MSR_K7_EVNTSEL2, MSR_K7_EVNTSEL3,
1356 MSR_K7_PERFCTR0, MSR_K7_PERFCTR1, MSR_K7_PERFCTR2, MSR_K7_PERFCTR3,
1357 MSR_F15H_PERF_CTL0, MSR_F15H_PERF_CTL1, MSR_F15H_PERF_CTL2,
1358 MSR_F15H_PERF_CTL3, MSR_F15H_PERF_CTL4, MSR_F15H_PERF_CTL5,
1359 MSR_F15H_PERF_CTR0, MSR_F15H_PERF_CTR1, MSR_F15H_PERF_CTR2,
1360 MSR_F15H_PERF_CTR3, MSR_F15H_PERF_CTR4, MSR_F15H_PERF_CTR5,
Carsten Otte043405e2007-10-10 17:16:19 +02001361};
1362
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001363static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)];
Carsten Otte043405e2007-10-10 17:16:19 +02001364static unsigned num_msrs_to_save;
1365
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001366static const u32 emulated_msrs_all[] = {
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001367 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
1368 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
1369 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
1370 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Ladi Prosek72c139b2017-07-26 13:32:59 +02001371 HV_X64_MSR_TSC_FREQUENCY, HV_X64_MSR_APIC_FREQUENCY,
Andrey Smetanine7d95132015-07-03 15:01:37 +03001372 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
1373 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +03001374 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +03001375 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +03001376 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001377 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03001378 HV_X64_MSR_STIMER0_CONFIG,
Ladi Prosekd4abc572018-03-20 15:02:07 +01001379 HV_X64_MSR_VP_ASSIST_PAGE,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001380 HV_X64_MSR_REENLIGHTENMENT_CONTROL, HV_X64_MSR_TSC_EMULATION_CONTROL,
1381 HV_X64_MSR_TSC_EMULATION_STATUS,
Jon Doronf97f5a52020-05-29 16:45:40 +03001382 HV_X64_MSR_SYNDBG_OPTIONS,
1383 HV_X64_MSR_SYNDBG_CONTROL, HV_X64_MSR_SYNDBG_STATUS,
1384 HV_X64_MSR_SYNDBG_SEND_BUFFER, HV_X64_MSR_SYNDBG_RECV_BUFFER,
1385 HV_X64_MSR_SYNDBG_PENDING_BUFFER,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001386
1387 MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02001388 MSR_KVM_PV_EOI_EN, MSR_KVM_ASYNC_PF_INT, MSR_KVM_ASYNC_PF_ACK,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001389
Will Auldba904632012-11-29 12:42:50 -08001390 MSR_IA32_TSC_ADJUST,
Dave Hansen09141ec2020-03-05 09:47:06 -08001391 MSR_IA32_TSC_DEADLINE,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001392 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001393 MSR_IA32_PERF_CAPABILITIES,
Carsten Otte043405e2007-10-10 17:16:19 +02001394 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001395 MSR_IA32_MCG_STATUS,
1396 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001397 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001398 MSR_IA32_SMBASE,
Liran Alon52797bf2017-11-15 13:43:14 +02001399 MSR_SMI_COUNT,
Kyle Hueydb2336a2017-03-20 01:16:28 -07001400 MSR_PLATFORM_INFO,
1401 MSR_MISC_FEATURES_ENABLES,
Tom Lendackybc226f02018-05-10 22:06:39 +02001402 MSR_AMD64_VIRT_SPEC_CTRL,
Maxim Levitsky5228eb92021-09-14 18:48:24 +03001403 MSR_AMD64_TSC_RATIO,
Liran Alon6c6a2ab2019-04-15 18:45:26 +03001404 MSR_IA32_POWER_CTL,
Paolo Bonzini99634e32020-01-20 14:22:55 +01001405 MSR_IA32_UCODE_REV,
Borislav Petkov191c8132019-04-18 18:32:50 +02001406
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001407 /*
1408 * The following list leaves out MSRs whose values are determined
1409 * by arch/x86/kvm/vmx/nested.c based on CPUID or other MSRs.
1410 * We always support the "true" VMX control MSRs, even if the host
1411 * processor does not, so I am putting these registers here rather
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001412 * than in msrs_to_save_all.
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001413 */
1414 MSR_IA32_VMX_BASIC,
1415 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1416 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1417 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1418 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1419 MSR_IA32_VMX_MISC,
1420 MSR_IA32_VMX_CR0_FIXED0,
1421 MSR_IA32_VMX_CR4_FIXED0,
1422 MSR_IA32_VMX_VMCS_ENUM,
1423 MSR_IA32_VMX_PROCBASED_CTLS2,
1424 MSR_IA32_VMX_EPT_VPID_CAP,
1425 MSR_IA32_VMX_VMFUNC,
1426
Borislav Petkov191c8132019-04-18 18:32:50 +02001427 MSR_K7_HWCR,
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03001428 MSR_KVM_POLL_CONTROL,
Carsten Otte043405e2007-10-10 17:16:19 +02001429};
1430
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001431static u32 emulated_msrs[ARRAY_SIZE(emulated_msrs_all)];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001432static unsigned num_emulated_msrs;
1433
Tom Lendacky801e4592018-02-21 13:39:51 -06001434/*
1435 * List of msr numbers which are used to expose MSR-based features that
1436 * can be used by a hypervisor to validate requested CPU features.
1437 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001438static const u32 msr_based_features_all[] = {
Paolo Bonzini13893092018-02-26 13:40:09 +01001439 MSR_IA32_VMX_BASIC,
1440 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1441 MSR_IA32_VMX_PINBASED_CTLS,
1442 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1443 MSR_IA32_VMX_PROCBASED_CTLS,
1444 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1445 MSR_IA32_VMX_EXIT_CTLS,
1446 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1447 MSR_IA32_VMX_ENTRY_CTLS,
1448 MSR_IA32_VMX_MISC,
1449 MSR_IA32_VMX_CR0_FIXED0,
1450 MSR_IA32_VMX_CR0_FIXED1,
1451 MSR_IA32_VMX_CR4_FIXED0,
1452 MSR_IA32_VMX_CR4_FIXED1,
1453 MSR_IA32_VMX_VMCS_ENUM,
1454 MSR_IA32_VMX_PROCBASED_CTLS2,
1455 MSR_IA32_VMX_EPT_VPID_CAP,
1456 MSR_IA32_VMX_VMFUNC,
1457
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01001458 MSR_F10H_DECFG,
Wanpeng Li518e7b92018-02-28 14:03:31 +08001459 MSR_IA32_UCODE_REV,
Paolo Bonzinicd283252018-06-25 14:04:37 +02001460 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001461 MSR_IA32_PERF_CAPABILITIES,
Tom Lendacky801e4592018-02-21 13:39:51 -06001462};
1463
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001464static u32 msr_based_features[ARRAY_SIZE(msr_based_features_all)];
Tom Lendacky801e4592018-02-21 13:39:51 -06001465static unsigned int num_msr_based_features;
1466
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001467static u64 kvm_get_arch_capabilities(void)
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001468{
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001469 u64 data = 0;
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001470
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001471 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
1472 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, data);
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001473
1474 /*
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001475 * If nx_huge_pages is enabled, KVM's shadow paging will ensure that
1476 * the nested hypervisor runs with NX huge pages. If it is not,
Ingo Molnard9f6e122021-03-18 15:28:01 +01001477 * L1 is anyway vulnerable to ITLB_MULTIHIT exploits from other
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001478 * L1 guests, so it need not worry about its own (L2) guests.
1479 */
1480 data |= ARCH_CAP_PSCHANGE_MC_NO;
1481
1482 /*
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001483 * If we're doing cache flushes (either "always" or "cond")
1484 * we will do one whenever the guest does a vmlaunch/vmresume.
1485 * If an outer hypervisor is doing the cache flush for us
1486 * (VMENTER_L1D_FLUSH_NESTED_VM), we can safely pass that
1487 * capability to the guest too, and if EPT is disabled we're not
1488 * vulnerable. Overall, only VMENTER_L1D_FLUSH_NEVER will
1489 * require a nested hypervisor to do a flush of its own.
1490 */
1491 if (l1tf_vmx_mitigation != VMENTER_L1D_FLUSH_NEVER)
1492 data |= ARCH_CAP_SKIP_VMENTRY_L1DFLUSH;
1493
Paolo Bonzini0c549142019-08-19 17:24:07 +02001494 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
1495 data |= ARCH_CAP_RDCL_NO;
1496 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1497 data |= ARCH_CAP_SSB_NO;
1498 if (!boot_cpu_has_bug(X86_BUG_MDS))
1499 data |= ARCH_CAP_MDS_NO;
1500
Paolo Bonzini71316362021-01-28 11:45:00 -05001501 if (!boot_cpu_has(X86_FEATURE_RTM)) {
1502 /*
1503 * If RTM=0 because the kernel has disabled TSX, the host might
1504 * have TAA_NO or TSX_CTRL. Clear TAA_NO (the guest sees RTM=0
1505 * and therefore knows that there cannot be TAA) but keep
1506 * TSX_CTRL: some buggy userspaces leave it set on tsx=on hosts,
1507 * and we want to allow migrating those guests to tsx=off hosts.
1508 */
1509 data &= ~ARCH_CAP_TAA_NO;
1510 } else if (!boot_cpu_has_bug(X86_BUG_TAA)) {
Paolo Bonzinicbbaa272019-11-18 18:58:26 +01001511 data |= ARCH_CAP_TAA_NO;
Paolo Bonzini71316362021-01-28 11:45:00 -05001512 } else {
1513 /*
1514 * Nothing to do here; we emulate TSX_CTRL if present on the
1515 * host so the guest can choose between disabling TSX or
1516 * using VERW to clear CPU buffers.
1517 */
1518 }
Pawan Guptae1d38b62019-10-23 12:23:33 +02001519
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001520 return data;
1521}
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001522
Wanpeng Li66421c12018-02-28 14:03:30 +08001523static int kvm_get_msr_feature(struct kvm_msr_entry *msr)
1524{
1525 switch (msr->index) {
Paolo Bonzinicd283252018-06-25 14:04:37 +02001526 case MSR_IA32_ARCH_CAPABILITIES:
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001527 msr->data = kvm_get_arch_capabilities();
1528 break;
1529 case MSR_IA32_UCODE_REV:
Paolo Bonzinicd283252018-06-25 14:04:37 +02001530 rdmsrl_safe(msr->index, &msr->data);
Wanpeng Li518e7b92018-02-28 14:03:31 +08001531 break;
Wanpeng Li66421c12018-02-28 14:03:30 +08001532 default:
Jason Baronb36464772021-01-14 22:27:56 -05001533 return static_call(kvm_x86_get_msr_feature)(msr);
Wanpeng Li66421c12018-02-28 14:03:30 +08001534 }
1535 return 0;
1536}
1537
Tom Lendacky801e4592018-02-21 13:39:51 -06001538static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1539{
1540 struct kvm_msr_entry msr;
Wanpeng Li66421c12018-02-28 14:03:30 +08001541 int r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001542
1543 msr.index = index;
Wanpeng Li66421c12018-02-28 14:03:30 +08001544 r = kvm_get_msr_feature(&msr);
Peter Xu12bc2132020-06-22 18:04:42 -04001545
1546 if (r == KVM_MSR_RET_INVALID) {
1547 /* Unconditionally clear the output for simplicity */
1548 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001549 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001550 r = 0;
Peter Xu12bc2132020-06-22 18:04:42 -04001551 }
1552
Wanpeng Li66421c12018-02-28 14:03:30 +08001553 if (r)
1554 return r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001555
1556 *data = msr.data;
1557
1558 return 0;
1559}
1560
Sean Christopherson11988492019-04-02 08:19:15 -07001561static bool __kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
1562{
1563 if (efer & EFER_FFXSR && !guest_cpuid_has(vcpu, X86_FEATURE_FXSR_OPT))
1564 return false;
1565
1566 if (efer & EFER_SVME && !guest_cpuid_has(vcpu, X86_FEATURE_SVM))
1567 return false;
1568
Sean Christopherson0a629562019-04-02 08:19:16 -07001569 if (efer & (EFER_LME | EFER_LMA) &&
1570 !guest_cpuid_has(vcpu, X86_FEATURE_LM))
1571 return false;
1572
1573 if (efer & EFER_NX && !guest_cpuid_has(vcpu, X86_FEATURE_NX))
1574 return false;
1575
Sean Christopherson11988492019-04-02 08:19:15 -07001576 return true;
1577
1578}
Jan Kiszka384bb782013-04-20 10:52:36 +02001579bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001580{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001581 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001582 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001583
Sean Christopherson11988492019-04-02 08:19:15 -07001584 return __kvm_valid_efer(vcpu, efer);
Jan Kiszka384bb782013-04-20 10:52:36 +02001585}
1586EXPORT_SYMBOL_GPL(kvm_valid_efer);
1587
Sean Christopherson11988492019-04-02 08:19:15 -07001588static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Jan Kiszka384bb782013-04-20 10:52:36 +02001589{
1590 u64 old_efer = vcpu->arch.efer;
Sean Christopherson11988492019-04-02 08:19:15 -07001591 u64 efer = msr_info->data;
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001592 int r;
Jan Kiszka384bb782013-04-20 10:52:36 +02001593
Sean Christopherson11988492019-04-02 08:19:15 -07001594 if (efer & efer_reserved_bits)
Paolo Bonzini66f61c92019-05-24 21:52:46 +02001595 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +02001596
Sean Christopherson11988492019-04-02 08:19:15 -07001597 if (!msr_info->host_initiated) {
1598 if (!__kvm_valid_efer(vcpu, efer))
1599 return 1;
1600
1601 if (is_paging(vcpu) &&
1602 (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1603 return 1;
1604 }
Jan Kiszka384bb782013-04-20 10:52:36 +02001605
Carsten Otte15c4a642007-10-30 18:44:17 +01001606 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001607 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001608
Jason Baronb36464772021-01-14 22:27:56 -05001609 r = static_call(kvm_x86_set_efer)(vcpu, efer);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001610 if (r) {
1611 WARN_ON(r > 0);
1612 return r;
1613 }
Sheng Yanga3d204e2010-05-12 16:40:40 +08001614
Sheng Yangaad82702010-05-12 16:40:42 +08001615 /* Update reserved bits */
1616 if ((efer ^ old_efer) & EFER_NX)
1617 kvm_mmu_reset_context(vcpu);
1618
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001619 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001620}
1621
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001622void kvm_enable_efer_bits(u64 mask)
1623{
1624 efer_reserved_bits &= ~mask;
1625}
1626EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1627
Alexander Graf51de8152020-09-25 16:34:17 +02001628bool kvm_msr_allowed(struct kvm_vcpu *vcpu, u32 index, u32 type)
1629{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001630 struct kvm_x86_msr_filter *msr_filter;
1631 struct msr_bitmap_range *ranges;
Alexander Graf1a1552542020-09-25 16:34:21 +02001632 struct kvm *kvm = vcpu->kvm;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001633 bool allowed;
Alexander Graf1a1552542020-09-25 16:34:21 +02001634 int idx;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001635 u32 i;
Alexander Graf1a1552542020-09-25 16:34:21 +02001636
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001637 /* x2APIC MSRs do not support filtering. */
1638 if (index >= 0x800 && index <= 0x8ff)
Alexander Graf1a1552542020-09-25 16:34:21 +02001639 return true;
1640
Alexander Graf1a1552542020-09-25 16:34:21 +02001641 idx = srcu_read_lock(&kvm->srcu);
1642
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001643 msr_filter = srcu_dereference(kvm->arch.msr_filter, &kvm->srcu);
1644 if (!msr_filter) {
1645 allowed = true;
1646 goto out;
1647 }
1648
1649 allowed = msr_filter->default_allow;
1650 ranges = msr_filter->ranges;
1651
1652 for (i = 0; i < msr_filter->count; i++) {
Alexander Graf1a1552542020-09-25 16:34:21 +02001653 u32 start = ranges[i].base;
1654 u32 end = start + ranges[i].nmsrs;
1655 u32 flags = ranges[i].flags;
1656 unsigned long *bitmap = ranges[i].bitmap;
1657
1658 if ((index >= start) && (index < end) && (flags & type)) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001659 allowed = !!test_bit(index - start, bitmap);
Alexander Graf1a1552542020-09-25 16:34:21 +02001660 break;
1661 }
1662 }
1663
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001664out:
Alexander Graf1a1552542020-09-25 16:34:21 +02001665 srcu_read_unlock(&kvm->srcu, idx);
1666
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001667 return allowed;
Alexander Graf51de8152020-09-25 16:34:17 +02001668}
1669EXPORT_SYMBOL_GPL(kvm_msr_allowed);
1670
Carsten Otte15c4a642007-10-30 18:44:17 +01001671/*
Sean Christophersonf20935d2019-09-05 14:22:54 -07001672 * Write @data into the MSR specified by @index. Select MSR specific fault
1673 * checks are bypassed if @host_initiated is %true.
Carsten Otte15c4a642007-10-30 18:44:17 +01001674 * Returns 0 on success, non-0 otherwise.
1675 * Assumes vcpu_load() was already called.
1676 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001677static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data,
1678 bool host_initiated)
Carsten Otte15c4a642007-10-30 18:44:17 +01001679{
Sean Christophersonf20935d2019-09-05 14:22:54 -07001680 struct msr_data msr;
1681
Alexander Graf1a1552542020-09-25 16:34:21 +02001682 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_WRITE))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001683 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001684
Sean Christophersonf20935d2019-09-05 14:22:54 -07001685 switch (index) {
Nadav Amit854e8bb2014-09-16 03:24:05 +03001686 case MSR_FS_BASE:
1687 case MSR_GS_BASE:
1688 case MSR_KERNEL_GS_BASE:
1689 case MSR_CSTAR:
1690 case MSR_LSTAR:
Sean Christophersonf20935d2019-09-05 14:22:54 -07001691 if (is_noncanonical_address(data, vcpu))
Nadav Amit854e8bb2014-09-16 03:24:05 +03001692 return 1;
1693 break;
1694 case MSR_IA32_SYSENTER_EIP:
1695 case MSR_IA32_SYSENTER_ESP:
1696 /*
1697 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1698 * non-canonical address is written on Intel but not on
1699 * AMD (which ignores the top 32-bits, because it does
1700 * not implement 64-bit SYSENTER).
1701 *
1702 * 64-bit code should hence be able to write a non-canonical
1703 * value on AMD. Making the address canonical ensures that
1704 * vmentry does not fail on Intel after writing a non-canonical
1705 * value, and that something deterministic happens if the guest
1706 * invokes 64-bit SYSENTER.
1707 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001708 data = get_canonical(data, vcpu_virt_addr_bits(vcpu));
Sean Christopherson61a05d42021-05-04 10:17:33 -07001709 break;
1710 case MSR_TSC_AUX:
1711 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1712 return 1;
1713
1714 if (!host_initiated &&
1715 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1716 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1717 return 1;
1718
1719 /*
1720 * Per Intel's SDM, bits 63:32 are reserved, but AMD's APM has
1721 * incomplete and conflicting architectural behavior. Current
1722 * AMD CPUs completely ignore bits 63:32, i.e. they aren't
1723 * reserved and always read as zeros. Enforce Intel's reserved
1724 * bits check if and only if the guest CPU is Intel, and clear
1725 * the bits in all other cases. This ensures cross-vendor
1726 * migration will provide consistent behavior for the guest.
1727 */
1728 if (guest_cpuid_is_intel(vcpu) && (data >> 32) != 0)
1729 return 1;
1730
1731 data = (u32)data;
1732 break;
Nadav Amit854e8bb2014-09-16 03:24:05 +03001733 }
Sean Christophersonf20935d2019-09-05 14:22:54 -07001734
1735 msr.data = data;
1736 msr.index = index;
1737 msr.host_initiated = host_initiated;
1738
Jason Baronb36464772021-01-14 22:27:56 -05001739 return static_call(kvm_x86_set_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001740}
1741
Peter Xu6abe9c12020-06-22 18:04:41 -04001742static int kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu,
1743 u32 index, u64 data, bool host_initiated)
1744{
1745 int ret = __kvm_set_msr(vcpu, index, data, host_initiated);
1746
1747 if (ret == KVM_MSR_RET_INVALID)
Haiwei Lid6328262021-03-13 13:10:32 +08001748 if (kvm_msr_ignored_check(index, data, true))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001749 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001750
1751 return ret;
1752}
1753
Sean Christophersonf20935d2019-09-05 14:22:54 -07001754/*
1755 * Read the MSR specified by @index into @data. Select MSR specific fault
1756 * checks are bypassed if @host_initiated is %true.
1757 * Returns 0 on success, non-0 otherwise.
1758 * Assumes vcpu_load() was already called.
1759 */
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001760int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data,
1761 bool host_initiated)
Sean Christophersonf20935d2019-09-05 14:22:54 -07001762{
1763 struct msr_data msr;
1764 int ret;
1765
Alexander Graf1a1552542020-09-25 16:34:21 +02001766 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_READ))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001767 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001768
Sean Christopherson61a05d42021-05-04 10:17:33 -07001769 switch (index) {
1770 case MSR_TSC_AUX:
1771 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1772 return 1;
1773
1774 if (!host_initiated &&
1775 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1776 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1777 return 1;
1778 break;
1779 }
1780
Sean Christophersonf20935d2019-09-05 14:22:54 -07001781 msr.index = index;
1782 msr.host_initiated = host_initiated;
1783
Jason Baronb36464772021-01-14 22:27:56 -05001784 ret = static_call(kvm_x86_get_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001785 if (!ret)
1786 *data = msr.data;
1787 return ret;
1788}
1789
Peter Xu6abe9c12020-06-22 18:04:41 -04001790static int kvm_get_msr_ignored_check(struct kvm_vcpu *vcpu,
1791 u32 index, u64 *data, bool host_initiated)
1792{
1793 int ret = __kvm_get_msr(vcpu, index, data, host_initiated);
1794
1795 if (ret == KVM_MSR_RET_INVALID) {
1796 /* Unconditionally clear *data for simplicity */
1797 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001798 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001799 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001800 }
1801
1802 return ret;
1803}
1804
Sean Christophersonf20935d2019-09-05 14:22:54 -07001805int kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data)
1806{
Peter Xu6abe9c12020-06-22 18:04:41 -04001807 return kvm_get_msr_ignored_check(vcpu, index, data, false);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001808}
1809EXPORT_SYMBOL_GPL(kvm_get_msr);
1810
1811int kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data)
1812{
Peter Xu6abe9c12020-06-22 18:04:41 -04001813 return kvm_set_msr_ignored_check(vcpu, index, data, false);
Carsten Otte15c4a642007-10-30 18:44:17 +01001814}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001815EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001816
Paolo Bonzini8b474422020-12-14 07:44:46 -05001817static int complete_emulated_rdmsr(struct kvm_vcpu *vcpu)
Alexander Graf1ae09952020-09-25 16:34:16 +02001818{
Paolo Bonzini8b474422020-12-14 07:44:46 -05001819 int err = vcpu->run->msr.error;
1820 if (!err) {
Alexander Graf1ae09952020-09-25 16:34:16 +02001821 kvm_rax_write(vcpu, (u32)vcpu->run->msr.data);
1822 kvm_rdx_write(vcpu, vcpu->run->msr.data >> 32);
1823 }
1824
Jason Baronb36464772021-01-14 22:27:56 -05001825 return static_call(kvm_x86_complete_emulated_msr)(vcpu, err);
Alexander Graf1ae09952020-09-25 16:34:16 +02001826}
1827
1828static int complete_emulated_wrmsr(struct kvm_vcpu *vcpu)
1829{
Jason Baronb36464772021-01-14 22:27:56 -05001830 return static_call(kvm_x86_complete_emulated_msr)(vcpu, vcpu->run->msr.error);
Alexander Graf1ae09952020-09-25 16:34:16 +02001831}
1832
1833static u64 kvm_msr_reason(int r)
1834{
1835 switch (r) {
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001836 case KVM_MSR_RET_INVALID:
Alexander Graf1ae09952020-09-25 16:34:16 +02001837 return KVM_MSR_EXIT_REASON_UNKNOWN;
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001838 case KVM_MSR_RET_FILTERED:
Alexander Graf1a1552542020-09-25 16:34:21 +02001839 return KVM_MSR_EXIT_REASON_FILTER;
Alexander Graf1ae09952020-09-25 16:34:16 +02001840 default:
1841 return KVM_MSR_EXIT_REASON_INVAL;
1842 }
1843}
1844
1845static int kvm_msr_user_space(struct kvm_vcpu *vcpu, u32 index,
1846 u32 exit_reason, u64 data,
1847 int (*completion)(struct kvm_vcpu *vcpu),
1848 int r)
1849{
1850 u64 msr_reason = kvm_msr_reason(r);
1851
1852 /* Check if the user wanted to know about this MSR fault */
1853 if (!(vcpu->kvm->arch.user_space_msr_mask & msr_reason))
1854 return 0;
1855
1856 vcpu->run->exit_reason = exit_reason;
1857 vcpu->run->msr.error = 0;
1858 memset(vcpu->run->msr.pad, 0, sizeof(vcpu->run->msr.pad));
1859 vcpu->run->msr.reason = msr_reason;
1860 vcpu->run->msr.index = index;
1861 vcpu->run->msr.data = data;
1862 vcpu->arch.complete_userspace_io = completion;
1863
1864 return 1;
1865}
1866
1867static int kvm_get_msr_user_space(struct kvm_vcpu *vcpu, u32 index, int r)
1868{
1869 return kvm_msr_user_space(vcpu, index, KVM_EXIT_X86_RDMSR, 0,
1870 complete_emulated_rdmsr, r);
1871}
1872
1873static int kvm_set_msr_user_space(struct kvm_vcpu *vcpu, u32 index, u64 data, int r)
1874{
1875 return kvm_msr_user_space(vcpu, index, KVM_EXIT_X86_WRMSR, data,
1876 complete_emulated_wrmsr, r);
1877}
1878
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001879int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu)
1880{
1881 u32 ecx = kvm_rcx_read(vcpu);
1882 u64 data;
Alexander Graf1ae09952020-09-25 16:34:16 +02001883 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001884
Alexander Graf1ae09952020-09-25 16:34:16 +02001885 r = kvm_get_msr(vcpu, ecx, &data);
1886
1887 /* MSR read failed? See if we should ask user space */
1888 if (r && kvm_get_msr_user_space(vcpu, ecx, r)) {
1889 /* Bounce to user space */
1890 return 0;
1891 }
1892
Paolo Bonzini8b474422020-12-14 07:44:46 -05001893 if (!r) {
1894 trace_kvm_msr_read(ecx, data);
1895
1896 kvm_rax_write(vcpu, data & -1u);
1897 kvm_rdx_write(vcpu, (data >> 32) & -1u);
1898 } else {
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001899 trace_kvm_msr_read_ex(ecx);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001900 }
1901
Jason Baronb36464772021-01-14 22:27:56 -05001902 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001903}
1904EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr);
1905
1906int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu)
1907{
1908 u32 ecx = kvm_rcx_read(vcpu);
1909 u64 data = kvm_read_edx_eax(vcpu);
Alexander Graf1ae09952020-09-25 16:34:16 +02001910 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001911
Alexander Graf1ae09952020-09-25 16:34:16 +02001912 r = kvm_set_msr(vcpu, ecx, data);
1913
1914 /* MSR write failed? See if we should ask user space */
Maxim Levitsky7dffeca2020-10-01 14:29:52 +03001915 if (r && kvm_set_msr_user_space(vcpu, ecx, data, r))
Alexander Graf1ae09952020-09-25 16:34:16 +02001916 /* Bounce to user space */
1917 return 0;
Maxim Levitsky7dffeca2020-10-01 14:29:52 +03001918
1919 /* Signal all other negative errors to userspace */
1920 if (r < 0)
1921 return r;
Alexander Graf1ae09952020-09-25 16:34:16 +02001922
Paolo Bonzini8b474422020-12-14 07:44:46 -05001923 if (!r)
1924 trace_kvm_msr_write(ecx, data);
1925 else
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001926 trace_kvm_msr_write_ex(ecx, data);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001927
Jason Baronb36464772021-01-14 22:27:56 -05001928 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001929}
1930EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr);
1931
Sean Christopherson5ff3a352021-02-04 16:57:47 -08001932int kvm_emulate_as_nop(struct kvm_vcpu *vcpu)
1933{
1934 return kvm_skip_emulated_instruction(vcpu);
1935}
1936EXPORT_SYMBOL_GPL(kvm_emulate_as_nop);
1937
1938int kvm_emulate_invd(struct kvm_vcpu *vcpu)
1939{
1940 /* Treat an INVD instruction as a NOP and just skip it. */
1941 return kvm_emulate_as_nop(vcpu);
1942}
1943EXPORT_SYMBOL_GPL(kvm_emulate_invd);
1944
1945int kvm_emulate_mwait(struct kvm_vcpu *vcpu)
1946{
1947 pr_warn_once("kvm: MWAIT instruction emulated as NOP!\n");
1948 return kvm_emulate_as_nop(vcpu);
1949}
1950EXPORT_SYMBOL_GPL(kvm_emulate_mwait);
1951
1952int kvm_handle_invalid_op(struct kvm_vcpu *vcpu)
1953{
1954 kvm_queue_exception(vcpu, UD_VECTOR);
1955 return 1;
1956}
1957EXPORT_SYMBOL_GPL(kvm_handle_invalid_op);
1958
1959int kvm_emulate_monitor(struct kvm_vcpu *vcpu)
1960{
1961 pr_warn_once("kvm: MONITOR instruction emulated as NOP!\n");
1962 return kvm_emulate_as_nop(vcpu);
1963}
1964EXPORT_SYMBOL_GPL(kvm_emulate_monitor);
1965
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05001966static inline bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu)
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001967{
Frederic Weisbecker4ae7dc92021-02-01 00:05:48 +01001968 xfer_to_guest_mode_prepare();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001969 return vcpu->mode == EXITING_GUEST_MODE || kvm_request_pending(vcpu) ||
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02001970 xfer_to_guest_mode_work_pending();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001971}
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001972
Carsten Otte313a3dc2007-10-11 19:16:52 +02001973/*
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001974 * The fast path for frequent and performance sensitive wrmsr emulation,
1975 * i.e. the sending of IPI, sending IPI early in the VM-Exit flow reduces
1976 * the latency of virtual IPI by avoiding the expensive bits of transitioning
1977 * from guest to host, e.g. reacquiring KVM's SRCU lock. In contrast to the
1978 * other cases which must be called after interrupts are enabled on the host.
1979 */
1980static int handle_fastpath_set_x2apic_icr_irqoff(struct kvm_vcpu *vcpu, u64 data)
1981{
Wanpeng Lie1be9ac2020-03-26 10:20:01 +08001982 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(vcpu->arch.apic))
1983 return 1;
1984
1985 if (((data & APIC_SHORT_MASK) == APIC_DEST_NOSHORT) &&
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001986 ((data & APIC_DEST_MASK) == APIC_DEST_PHYSICAL) &&
Wanpeng Li4064a4c2020-04-02 16:20:26 +08001987 ((data & APIC_MODE_MASK) == APIC_DM_FIXED) &&
1988 ((u32)(data >> 32) != X2APIC_BROADCAST)) {
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001989
Wanpeng Lid5361672020-03-26 10:20:02 +08001990 data &= ~(1 << 12);
1991 kvm_apic_send_ipi(vcpu->arch.apic, (u32)data, (u32)(data >> 32));
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001992 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR2, (u32)(data >> 32));
Wanpeng Lid5361672020-03-26 10:20:02 +08001993 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR, (u32)data);
1994 trace_kvm_apic_write(APIC_ICR, (u32)data);
1995 return 0;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001996 }
1997
1998 return 1;
1999}
2000
Wanpeng Liae95f562020-04-28 14:23:28 +08002001static int handle_fastpath_set_tscdeadline(struct kvm_vcpu *vcpu, u64 data)
2002{
2003 if (!kvm_can_use_hv_timer(vcpu))
2004 return 1;
2005
2006 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2007 return 0;
2008}
2009
Wanpeng Li404d5d72020-04-28 14:23:25 +08002010fastpath_t handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002011{
2012 u32 msr = kvm_rcx_read(vcpu);
Wanpeng Li8a1038d2020-03-26 10:20:00 +08002013 u64 data;
Wanpeng Li404d5d72020-04-28 14:23:25 +08002014 fastpath_t ret = EXIT_FASTPATH_NONE;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002015
2016 switch (msr) {
2017 case APIC_BASE_MSR + (APIC_ICR >> 4):
Wanpeng Li8a1038d2020-03-26 10:20:00 +08002018 data = kvm_read_edx_eax(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08002019 if (!handle_fastpath_set_x2apic_icr_irqoff(vcpu, data)) {
2020 kvm_skip_emulated_instruction(vcpu);
2021 ret = EXIT_FASTPATH_EXIT_HANDLED;
Haiwei Li80bc97f2020-05-18 09:31:38 +08002022 }
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002023 break;
Dave Hansen09141ec2020-03-05 09:47:06 -08002024 case MSR_IA32_TSC_DEADLINE:
Wanpeng Liae95f562020-04-28 14:23:28 +08002025 data = kvm_read_edx_eax(vcpu);
2026 if (!handle_fastpath_set_tscdeadline(vcpu, data)) {
2027 kvm_skip_emulated_instruction(vcpu);
2028 ret = EXIT_FASTPATH_REENTER_GUEST;
2029 }
2030 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002031 default:
Wanpeng Li404d5d72020-04-28 14:23:25 +08002032 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002033 }
2034
Wanpeng Li404d5d72020-04-28 14:23:25 +08002035 if (ret != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002036 trace_kvm_msr_write(msr, data);
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002037
Wanpeng Li404d5d72020-04-28 14:23:25 +08002038 return ret;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002039}
2040EXPORT_SYMBOL_GPL(handle_fastpath_set_msr_irqoff);
2041
2042/*
Carsten Otte313a3dc2007-10-11 19:16:52 +02002043 * Adapt set_msr() to msr_io()'s calling convention
2044 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002045static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2046{
Peter Xu6abe9c12020-06-22 18:04:41 -04002047 return kvm_get_msr_ignored_check(vcpu, index, data, true);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002048}
2049
Carsten Otte313a3dc2007-10-11 19:16:52 +02002050static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2051{
Peter Xu6abe9c12020-06-22 18:04:41 -04002052 return kvm_set_msr_ignored_check(vcpu, index, *data, true);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002053}
2054
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002055#ifdef CONFIG_X86_64
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002056struct pvclock_clock {
2057 int vclock_mode;
2058 u64 cycle_last;
2059 u64 mask;
2060 u32 mult;
2061 u32 shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002062 u64 base_cycles;
2063 u64 offset;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002064};
2065
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002066struct pvclock_gtod_data {
2067 seqcount_t seq;
2068
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002069 struct pvclock_clock clock; /* extract of a clocksource struct */
2070 struct pvclock_clock raw_clock; /* extract of a clocksource struct */
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002071
Paolo Bonzini917f9472020-01-22 14:32:20 +01002072 ktime_t offs_boot;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002073 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002074};
2075
2076static struct pvclock_gtod_data pvclock_gtod_data;
2077
2078static void update_pvclock_gtod(struct timekeeper *tk)
2079{
2080 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
2081
2082 write_seqcount_begin(&vdata->seq);
2083
2084 /* copy pvclock gtod data */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002085 vdata->clock.vclock_mode = tk->tkr_mono.clock->vdso_clock_mode;
Peter Zijlstra876e7882015-03-19 10:09:06 +01002086 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
2087 vdata->clock.mask = tk->tkr_mono.mask;
2088 vdata->clock.mult = tk->tkr_mono.mult;
2089 vdata->clock.shift = tk->tkr_mono.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002090 vdata->clock.base_cycles = tk->tkr_mono.xtime_nsec;
2091 vdata->clock.offset = tk->tkr_mono.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002092
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002093 vdata->raw_clock.vclock_mode = tk->tkr_raw.clock->vdso_clock_mode;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002094 vdata->raw_clock.cycle_last = tk->tkr_raw.cycle_last;
2095 vdata->raw_clock.mask = tk->tkr_raw.mask;
2096 vdata->raw_clock.mult = tk->tkr_raw.mult;
2097 vdata->raw_clock.shift = tk->tkr_raw.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002098 vdata->raw_clock.base_cycles = tk->tkr_raw.xtime_nsec;
2099 vdata->raw_clock.offset = tk->tkr_raw.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002100
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002101 vdata->wall_time_sec = tk->xtime_sec;
2102
Paolo Bonzini917f9472020-01-22 14:32:20 +01002103 vdata->offs_boot = tk->offs_boot;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002104
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002105 write_seqcount_end(&vdata->seq);
2106}
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002107
2108static s64 get_kvmclock_base_ns(void)
2109{
2110 /* Count up from boot time, but with the frequency of the raw clock. */
2111 return ktime_to_ns(ktime_add(ktime_get_raw(), pvclock_gtod_data.offs_boot));
2112}
2113#else
2114static s64 get_kvmclock_base_ns(void)
2115{
2116 /* Master clock not used, so we can just use CLOCK_BOOTTIME. */
2117 return ktime_get_boottime_ns();
2118}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002119#endif
2120
Joao Martins629b5342018-06-28 15:06:43 -04002121void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock, int sec_hi_ofs)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002122{
Avi Kivity9ed3c442010-05-04 15:00:37 +03002123 int version;
2124 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002125 struct pvclock_wall_clock wc;
Joao Martins629b5342018-06-28 15:06:43 -04002126 u32 wc_sec_hi;
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002127 u64 wall_nsec;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002128
2129 if (!wall_clock)
2130 return;
2131
Avi Kivity9ed3c442010-05-04 15:00:37 +03002132 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
2133 if (r)
2134 return;
2135
2136 if (version & 1)
2137 ++version; /* first time write, random junk */
2138
2139 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002140
Nicholas Krause1dab1342015-12-30 13:08:46 -05002141 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
2142 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002143
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002144 /*
2145 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10002146 * system time (updated by kvm_guest_time_update below) to the
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002147 * wall clock specified here. We do the reverse here.
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002148 */
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002149 wall_nsec = ktime_get_real_ns() - get_kvmclock_ns(kvm);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002150
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002151 wc.nsec = do_div(wall_nsec, 1000000000);
2152 wc.sec = (u32)wall_nsec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002153 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002154
2155 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
2156
Joao Martins629b5342018-06-28 15:06:43 -04002157 if (sec_hi_ofs) {
2158 wc_sec_hi = wall_nsec >> 32;
2159 kvm_write_guest(kvm, wall_clock + sec_hi_ofs,
2160 &wc_sec_hi, sizeof(wc_sec_hi));
2161 }
2162
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002163 version++;
2164 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002165}
2166
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002167static void kvm_write_system_time(struct kvm_vcpu *vcpu, gpa_t system_time,
2168 bool old_msr, bool host_initiated)
2169{
2170 struct kvm_arch *ka = &vcpu->kvm->arch;
2171
2172 if (vcpu->vcpu_id == 0 && !host_initiated) {
Oliver Upton1e293d12020-10-27 16:10:43 -07002173 if (ka->boot_vcpu_runs_old_kvmclock != old_msr)
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002174 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2175
2176 ka->boot_vcpu_runs_old_kvmclock = old_msr;
2177 }
2178
2179 vcpu->arch.time = system_time;
2180 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
2181
2182 /* we verify if the enable bit is set... */
2183 vcpu->arch.pv_time_enabled = false;
2184 if (!(system_time & 1))
2185 return;
2186
2187 if (!kvm_gfn_to_hva_cache_init(vcpu->kvm,
2188 &vcpu->arch.pv_time, system_time & ~1ULL,
2189 sizeof(struct pvclock_vcpu_time_info)))
2190 vcpu->arch.pv_time_enabled = true;
2191
2192 return;
2193}
2194
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002195static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
2196{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01002197 do_shl32_div32(dividend, divisor);
2198 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002199}
2200
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002201static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002202 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002203{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002204 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002205 int32_t shift = 0;
2206 uint64_t tps64;
2207 uint32_t tps32;
2208
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002209 tps64 = base_hz;
2210 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02002211 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002212 tps64 >>= 1;
2213 shift--;
2214 }
2215
2216 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02002217 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
2218 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002219 scaled64 >>= 1;
2220 else
2221 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002222 shift++;
2223 }
2224
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002225 *pshift = shift;
2226 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002227}
2228
Marcelo Tosattid8281992012-11-27 23:29:01 -02002229#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002230static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002231#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002232
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002233static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08002234static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002235
Zachary Amsdencc578282012-02-03 15:43:50 -02002236static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10002237{
Zachary Amsdencc578282012-02-03 15:43:50 -02002238 u64 v = (u64)khz * (1000000 + ppm);
2239 do_div(v, 1000000);
2240 return v;
2241}
2242
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002243static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier);
2244
Haozhong Zhang381d5852015-10-20 15:39:04 +08002245static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
2246{
2247 u64 ratio;
2248
2249 /* Guest TSC same frequency as host TSC? */
2250 if (!scale) {
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002251 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002252 return 0;
2253 }
2254
2255 /* TSC scaling supported? */
2256 if (!kvm_has_tsc_control) {
2257 if (user_tsc_khz > tsc_khz) {
2258 vcpu->arch.tsc_catchup = 1;
2259 vcpu->arch.tsc_always_catchup = 1;
2260 return 0;
2261 } else {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002262 pr_warn_ratelimited("user requested TSC rate below hardware speed\n");
Haozhong Zhang381d5852015-10-20 15:39:04 +08002263 return -1;
2264 }
2265 }
2266
2267 /* TSC scaling required - calculate ratio */
2268 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
2269 user_tsc_khz, tsc_khz);
2270
2271 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002272 pr_warn_ratelimited("Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
2273 user_tsc_khz);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002274 return -1;
2275 }
2276
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002277 kvm_vcpu_write_tsc_multiplier(vcpu, ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002278 return 0;
2279}
2280
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002281static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02002282{
2283 u32 thresh_lo, thresh_hi;
2284 int use_scaling = 0;
2285
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002286 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002287 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08002288 /* set tsc_scaling_ratio to a safe value */
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002289 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002290 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08002291 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002292
Zachary Amsdenc2855452010-09-18 14:38:15 -10002293 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002294 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02002295 &vcpu->arch.virtual_tsc_shift,
2296 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002297 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02002298
2299 /*
2300 * Compute the variation in TSC rate which is acceptable
2301 * within the range of tolerance and decide if the
2302 * rate being applied is within that bounds of the hardware
2303 * rate. If so, no scaling or compensation need be done.
2304 */
2305 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
2306 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002307 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
2308 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 -02002309 use_scaling = 1;
2310 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002311 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002312}
2313
2314static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
2315{
Zachary Amsdene26101b2012-02-03 15:43:57 -02002316 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02002317 vcpu->arch.virtual_tsc_mult,
2318 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002319 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002320 return tsc;
2321}
2322
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002323static inline int gtod_is_based_on_tsc(int mode)
2324{
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002325 return mode == VDSO_CLOCKMODE_TSC || mode == VDSO_CLOCKMODE_HVCLOCK;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002326}
2327
Fengguang Wu69b00492015-01-19 22:33:39 +08002328static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002329{
2330#ifdef CONFIG_X86_64
2331 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002332 struct kvm_arch *ka = &vcpu->kvm->arch;
2333 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2334
2335 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2336 atomic_read(&vcpu->kvm->online_vcpus));
2337
Marcelo Tosatti7f187922014-11-04 21:30:44 -02002338 /*
2339 * Once the masterclock is enabled, always perform request in
2340 * order to update it.
2341 *
2342 * In order to enable masterclock, the host clocksource must be TSC
2343 * and the vcpus need to have matched TSCs. When that happens,
2344 * perform request to enable masterclock.
2345 */
2346 if (ka->use_master_clock ||
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002347 (gtod_is_based_on_tsc(gtod->clock.vclock_mode) && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002348 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2349
2350 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
2351 atomic_read(&vcpu->kvm->online_vcpus),
2352 ka->use_master_clock, gtod->clock.vclock_mode);
2353#endif
2354}
2355
Haozhong Zhang35181e82015-10-20 15:39:03 +08002356/*
2357 * Multiply tsc by a fixed point number represented by ratio.
2358 *
2359 * The most significant 64-N bits (mult) of ratio represent the
2360 * integral part of the fixed point number; the remaining N bits
2361 * (frac) represent the fractional part, ie. ratio represents a fixed
2362 * point number (mult + frac * 2^(-N)).
2363 *
2364 * N equals to kvm_tsc_scaling_ratio_frac_bits.
2365 */
2366static inline u64 __scale_tsc(u64 ratio, u64 tsc)
2367{
2368 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
2369}
2370
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002371u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc, u64 ratio)
Haozhong Zhang35181e82015-10-20 15:39:03 +08002372{
2373 u64 _tsc = tsc;
Haozhong Zhang35181e82015-10-20 15:39:03 +08002374
2375 if (ratio != kvm_default_tsc_scaling_ratio)
2376 _tsc = __scale_tsc(ratio, tsc);
2377
2378 return _tsc;
2379}
2380EXPORT_SYMBOL_GPL(kvm_scale_tsc);
2381
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002382static u64 kvm_compute_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
Haozhong Zhang07c14192015-10-20 15:39:05 +08002383{
2384 u64 tsc;
2385
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002386 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang07c14192015-10-20 15:39:05 +08002387
2388 return target_tsc - tsc;
2389}
2390
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002391u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
2392{
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002393 return vcpu->arch.l1_tsc_offset +
2394 kvm_scale_tsc(vcpu, host_tsc, vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002395}
2396EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
2397
Ilias Stamatis83150f22021-05-26 19:44:14 +01002398u64 kvm_calc_nested_tsc_offset(u64 l1_offset, u64 l2_offset, u64 l2_multiplier)
2399{
2400 u64 nested_offset;
2401
2402 if (l2_multiplier == kvm_default_tsc_scaling_ratio)
2403 nested_offset = l1_offset;
2404 else
2405 nested_offset = mul_s64_u64_shr((s64) l1_offset, l2_multiplier,
2406 kvm_tsc_scaling_ratio_frac_bits);
2407
2408 nested_offset += l2_offset;
2409 return nested_offset;
2410}
2411EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_offset);
2412
2413u64 kvm_calc_nested_tsc_multiplier(u64 l1_multiplier, u64 l2_multiplier)
2414{
2415 if (l2_multiplier != kvm_default_tsc_scaling_ratio)
2416 return mul_u64_u64_shr(l1_multiplier, l2_multiplier,
2417 kvm_tsc_scaling_ratio_frac_bits);
2418
2419 return l1_multiplier;
2420}
2421EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_multiplier);
2422
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002423static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 l1_offset)
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002424{
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002425 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2426 vcpu->arch.l1_tsc_offset,
2427 l1_offset);
2428
2429 vcpu->arch.l1_tsc_offset = l1_offset;
2430
2431 /*
2432 * If we are here because L1 chose not to trap WRMSR to TSC then
2433 * according to the spec this should set L1's TSC (as opposed to
2434 * setting L1's offset for L2).
2435 */
2436 if (is_guest_mode(vcpu))
2437 vcpu->arch.tsc_offset = kvm_calc_nested_tsc_offset(
2438 l1_offset,
2439 static_call(kvm_x86_get_l2_tsc_offset)(vcpu),
2440 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2441 else
2442 vcpu->arch.tsc_offset = l1_offset;
2443
2444 static_call(kvm_x86_write_tsc_offset)(vcpu, vcpu->arch.tsc_offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002445}
2446
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002447static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier)
2448{
2449 vcpu->arch.l1_tsc_scaling_ratio = l1_multiplier;
2450
2451 /* Userspace is changing the multiplier while L2 is active */
2452 if (is_guest_mode(vcpu))
2453 vcpu->arch.tsc_scaling_ratio = kvm_calc_nested_tsc_multiplier(
2454 l1_multiplier,
2455 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2456 else
2457 vcpu->arch.tsc_scaling_ratio = l1_multiplier;
2458
2459 if (kvm_has_tsc_control)
2460 static_call(kvm_x86_write_tsc_multiplier)(
2461 vcpu, vcpu->arch.tsc_scaling_ratio);
2462}
2463
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002464static inline bool kvm_check_tsc_unstable(void)
2465{
2466#ifdef CONFIG_X86_64
2467 /*
2468 * TSC is marked unstable when we're running on Hyper-V,
2469 * 'TSC page' clocksource is good.
2470 */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002471 if (pvclock_gtod_data.clock.vclock_mode == VDSO_CLOCKMODE_HVCLOCK)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002472 return false;
2473#endif
2474 return check_tsc_unstable();
2475}
2476
Oliver Upton58d42772021-09-16 18:15:37 +00002477/*
2478 * Infers attempts to synchronize the guest's tsc from host writes. Sets the
2479 * offset for the vcpu and tracks the TSC matching generation that the vcpu
2480 * participates in.
2481 */
2482static void __kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 offset, u64 tsc,
2483 u64 ns, bool matched)
2484{
2485 struct kvm *kvm = vcpu->kvm;
2486
2487 lockdep_assert_held(&kvm->arch.tsc_write_lock);
2488
2489 /*
2490 * We also track th most recent recorded KHZ, write and time to
2491 * allow the matching interval to be extended at each write.
2492 */
2493 kvm->arch.last_tsc_nsec = ns;
2494 kvm->arch.last_tsc_write = tsc;
2495 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Oliver Upton828ca892021-09-16 18:15:38 +00002496 kvm->arch.last_tsc_offset = offset;
Oliver Upton58d42772021-09-16 18:15:37 +00002497
2498 vcpu->arch.last_guest_tsc = tsc;
2499
2500 kvm_vcpu_write_tsc_offset(vcpu, offset);
2501
2502 if (!matched) {
2503 /*
2504 * We split periods of matched TSC writes into generations.
2505 * For each generation, we track the original measured
2506 * nanosecond time, offset, and write, so if TSCs are in
2507 * sync, we can match exact offset, and if not, we can match
2508 * exact software computation in compute_guest_tsc()
2509 *
2510 * These values are tracked in kvm->arch.cur_xxx variables.
2511 */
2512 kvm->arch.cur_tsc_generation++;
2513 kvm->arch.cur_tsc_nsec = ns;
2514 kvm->arch.cur_tsc_write = tsc;
2515 kvm->arch.cur_tsc_offset = offset;
2516 kvm->arch.nr_vcpus_matched_tsc = 0;
2517 } else if (vcpu->arch.this_tsc_generation != kvm->arch.cur_tsc_generation) {
2518 kvm->arch.nr_vcpus_matched_tsc++;
2519 }
2520
2521 /* Keep track of which generation this VCPU has synchronized to */
2522 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
2523 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
2524 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
2525
2526 kvm_track_tsc_matching(vcpu);
2527}
2528
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002529static void kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 data)
Zachary Amsden99e3e302010-08-19 22:07:17 -10002530{
2531 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002532 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002533 unsigned long flags;
Oliver Upton58d42772021-09-16 18:15:37 +00002534 bool matched = false;
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002535 bool synchronizing = false;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002536
Jan Kiszka038f8c12011-02-04 10:49:11 +01002537 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002538 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002539 ns = get_kvmclock_base_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002540 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002541
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002542 if (vcpu->arch.virtual_tsc_khz) {
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002543 if (data == 0) {
Denis Plotnikovbd8fab32017-04-07 12:09:53 +03002544 /*
2545 * detection of vcpu initialization -- need to sync
2546 * with other vCPUs. This particularly helps to keep
2547 * kvm_clock stable after CPU hotplug
2548 */
2549 synchronizing = true;
2550 } else {
2551 u64 tsc_exp = kvm->arch.last_tsc_write +
2552 nsec_to_cycles(vcpu, elapsed);
2553 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
2554 /*
2555 * Special case: TSC write with a small delta (1 second)
2556 * of virtual cycle time against real time is
2557 * interpreted as an attempt to synchronize the CPU.
2558 */
2559 synchronizing = data < tsc_exp + tsc_hz &&
2560 data + tsc_hz > tsc_exp;
2561 }
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002562 }
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002563
2564 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002565 * For a reliable TSC, we can match TSC offsets, and for an unstable
2566 * TSC, we add elapsed time in this computation. We could let the
2567 * compensation code attempt to catch up if we fall behind, but
2568 * it's better to try to match offsets from the beginning.
2569 */
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002570 if (synchronizing &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002571 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002572 if (!kvm_check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02002573 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002574 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01002575 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002576 data += delta;
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002577 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002578 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002579 matched = true;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002580 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02002581
Oliver Upton58d42772021-09-16 18:15:37 +00002582 __kvm_synchronize_tsc(vcpu, offset, data, ns, matched);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002583 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002584}
Zachary Amsdene26101b2012-02-03 15:43:57 -02002585
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002586static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
2587 s64 adjustment)
2588{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07002589 u64 tsc_offset = vcpu->arch.l1_tsc_offset;
Leonid Shatz326e7422018-11-06 12:14:25 +02002590 kvm_vcpu_write_tsc_offset(vcpu, tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002591}
2592
2593static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
2594{
Ilias Stamatis805d7052021-05-26 19:44:09 +01002595 if (vcpu->arch.l1_tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002596 WARN_ON(adjustment < 0);
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002597 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment,
2598 vcpu->arch.l1_tsc_scaling_ratio);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01002599 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002600}
2601
Marcelo Tosattid8281992012-11-27 23:29:01 -02002602#ifdef CONFIG_X86_64
2603
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002604static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002605{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002606 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02002607 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002608
2609 if (likely(ret >= last))
2610 return ret;
2611
2612 /*
2613 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08002614 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02002615 * very likely) and there's a data dependence, so force GCC
2616 * to generate a branch instead. I don't barrier() because
2617 * we don't actually need a barrier, and if this function
2618 * ever gets inlined it will generate worse code.
2619 */
2620 asm volatile ("");
2621 return last;
2622}
2623
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002624static inline u64 vgettsc(struct pvclock_clock *clock, u64 *tsc_timestamp,
2625 int *mode)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002626{
2627 long v;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002628 u64 tsc_pg_val;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002629
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002630 switch (clock->vclock_mode) {
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002631 case VDSO_CLOCKMODE_HVCLOCK:
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002632 tsc_pg_val = hv_read_tsc_page_tsc(hv_get_tsc_page(),
2633 tsc_timestamp);
2634 if (tsc_pg_val != U64_MAX) {
2635 /* TSC page valid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002636 *mode = VDSO_CLOCKMODE_HVCLOCK;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002637 v = (tsc_pg_val - clock->cycle_last) &
2638 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002639 } else {
2640 /* TSC page invalid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002641 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002642 }
2643 break;
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002644 case VDSO_CLOCKMODE_TSC:
2645 *mode = VDSO_CLOCKMODE_TSC;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002646 *tsc_timestamp = read_tsc();
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002647 v = (*tsc_timestamp - clock->cycle_last) &
2648 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002649 break;
2650 default:
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002651 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002652 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002653
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002654 if (*mode == VDSO_CLOCKMODE_NONE)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002655 *tsc_timestamp = v = 0;
2656
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002657 return v * clock->mult;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002658}
2659
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002660static int do_monotonic_raw(s64 *t, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002661{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002662 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002663 unsigned long seq;
2664 int mode;
2665 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002666
Marcelo Tosattid8281992012-11-27 23:29:01 -02002667 do {
2668 seq = read_seqcount_begin(&gtod->seq);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002669 ns = gtod->raw_clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002670 ns += vgettsc(&gtod->raw_clock, tsc_timestamp, &mode);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002671 ns >>= gtod->raw_clock.shift;
2672 ns += ktime_to_ns(ktime_add(gtod->raw_clock.offset, gtod->offs_boot));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002673 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002674 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002675
2676 return mode;
2677}
2678
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002679static int do_realtime(struct timespec64 *ts, u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002680{
2681 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2682 unsigned long seq;
2683 int mode;
2684 u64 ns;
2685
2686 do {
2687 seq = read_seqcount_begin(&gtod->seq);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002688 ts->tv_sec = gtod->wall_time_sec;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002689 ns = gtod->clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002690 ns += vgettsc(&gtod->clock, tsc_timestamp, &mode);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002691 ns >>= gtod->clock.shift;
2692 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
2693
2694 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
2695 ts->tv_nsec = ns;
2696
2697 return mode;
2698}
2699
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002700/* returns true if host is using TSC based clocksource */
2701static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002702{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002703 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002704 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosattid8281992012-11-27 23:29:01 -02002705 return false;
2706
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002707 return gtod_is_based_on_tsc(do_monotonic_raw(kernel_ns,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002708 tsc_timestamp));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002709}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002710
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002711/* returns true if host is using TSC based clocksource */
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002712static bool kvm_get_walltime_and_clockread(struct timespec64 *ts,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002713 u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002714{
2715 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002716 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002717 return false;
2718
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002719 return gtod_is_based_on_tsc(do_realtime(ts, tsc_timestamp));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002720}
Marcelo Tosattid8281992012-11-27 23:29:01 -02002721#endif
2722
2723/*
2724 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002725 * Assuming a stable TSC across physical CPUS, and a stable TSC
2726 * across virtual CPUs, the following condition is possible.
2727 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02002728 * CPUs at the next numbered event.
2729 *
2730 * "timespecX" represents host monotonic time. "tscX" represents
2731 * RDTSC value.
2732 *
2733 * VCPU0 on CPU0 | VCPU1 on CPU1
2734 *
2735 * 1. read timespec0,tsc0
2736 * 2. | timespec1 = timespec0 + N
2737 * | tsc1 = tsc0 + M
2738 * 3. transition to guest | transition to guest
2739 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
2740 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
2741 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
2742 *
2743 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
2744 *
2745 * - ret0 < ret1
2746 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
2747 * ...
2748 * - 0 < N - M => M < N
2749 *
2750 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
2751 * always the case (the difference between two distinct xtime instances
2752 * might be smaller then the difference between corresponding TSC reads,
2753 * when updating guest vcpus pvclock areas).
2754 *
2755 * To avoid that problem, do not allow visibility of distinct
2756 * system_timestamp/tsc_timestamp values simultaneously: use a master
2757 * copy of host monotonic time values. Update that master copy
2758 * in lockstep.
2759 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002760 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02002761 *
2762 */
2763
2764static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
2765{
2766#ifdef CONFIG_X86_64
2767 struct kvm_arch *ka = &kvm->arch;
2768 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002769 bool host_tsc_clocksource, vcpus_matched;
2770
Paolo Bonzini869b4422021-09-16 18:15:36 +00002771 lockdep_assert_held(&kvm->arch.tsc_write_lock);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002772 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2773 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002774
2775 /*
2776 * If the host uses TSC clock, then passthrough TSC as stable
2777 * to the guest.
2778 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002779 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02002780 &ka->master_kernel_ns,
2781 &ka->master_cycle_now);
2782
Marcelo Tosatti16a96022014-05-14 12:43:24 -03002783 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Ladi Proseka826faf2017-06-26 09:56:43 +02002784 && !ka->backwards_tsc_observed
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002785 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002786
Marcelo Tosattid8281992012-11-27 23:29:01 -02002787 if (ka->use_master_clock)
2788 atomic_set(&kvm_guest_has_master_clock, 1);
2789
2790 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002791 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
2792 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002793#endif
2794}
2795
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002796static void kvm_make_mclock_inprogress_request(struct kvm *kvm)
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002797{
2798 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
2799}
2800
Paolo Bonzini869b4422021-09-16 18:15:36 +00002801static void __kvm_start_pvclock_update(struct kvm *kvm)
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002802{
Paolo Bonzini869b4422021-09-16 18:15:36 +00002803 raw_spin_lock_irq(&kvm->arch.tsc_write_lock);
2804 write_seqcount_begin(&kvm->arch.pvclock_sc);
2805}
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002806
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002807static void kvm_start_pvclock_update(struct kvm *kvm)
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002808{
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002809 kvm_make_mclock_inprogress_request(kvm);
Paolo Bonzinic2c647f2021-03-25 14:05:11 -04002810
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002811 /* no guest entries from this point */
Paolo Bonzini869b4422021-09-16 18:15:36 +00002812 __kvm_start_pvclock_update(kvm);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002813}
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002814
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002815static void kvm_end_pvclock_update(struct kvm *kvm)
2816{
2817 struct kvm_arch *ka = &kvm->arch;
2818 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00002819 unsigned long i;
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002820
Paolo Bonzini869b4422021-09-16 18:15:36 +00002821 write_seqcount_end(&ka->pvclock_sc);
2822 raw_spin_unlock_irq(&ka->tsc_write_lock);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002823 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002824 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002825
2826 /* guest entries allowed */
2827 kvm_for_each_vcpu(i, vcpu, kvm)
Radim Krčmář72875d82017-04-26 22:32:19 +02002828 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002829}
2830
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002831static void kvm_update_masterclock(struct kvm *kvm)
2832{
2833 kvm_hv_invalidate_tsc_page(kvm);
2834 kvm_start_pvclock_update(kvm);
2835 pvclock_update_vm_gtod_copy(kvm);
2836 kvm_end_pvclock_update(kvm);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002837}
2838
Paolo Bonzini869b4422021-09-16 18:15:36 +00002839/* Called within read_seqcount_begin/retry for kvm->pvclock_sc. */
2840static void __get_kvmclock(struct kvm *kvm, struct kvm_clock_data *data)
Paolo Bonzini108b2492016-09-01 14:21:03 +02002841{
Paolo Bonzini108b2492016-09-01 14:21:03 +02002842 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002843 struct pvclock_vcpu_time_info hv_clock;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002844
Wanpeng Lie2c22062017-05-11 18:12:05 -07002845 /* both __this_cpu_read() and rdtsc() should be on the same cpu */
2846 get_cpu();
2847
Paolo Bonzini869b4422021-09-16 18:15:36 +00002848 data->flags = 0;
2849 if (ka->use_master_clock && __this_cpu_read(cpu_tsc_khz)) {
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00002850#ifdef CONFIG_X86_64
2851 struct timespec64 ts;
2852
2853 if (kvm_get_walltime_and_clockread(&ts, &data->host_tsc)) {
2854 data->realtime = ts.tv_nsec + NSEC_PER_SEC * ts.tv_sec;
2855 data->flags |= KVM_CLOCK_REALTIME | KVM_CLOCK_HOST_TSC;
2856 } else
2857#endif
2858 data->host_tsc = rdtsc();
2859
Paolo Bonzini869b4422021-09-16 18:15:36 +00002860 data->flags |= KVM_CLOCK_TSC_STABLE;
2861 hv_clock.tsc_timestamp = ka->master_cycle_now;
2862 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
Wanpeng Lie70b57a2017-11-20 14:55:05 -08002863 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
2864 &hv_clock.tsc_shift,
2865 &hv_clock.tsc_to_system_mul);
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00002866 data->clock = __pvclock_read_cycles(&hv_clock, data->host_tsc);
Oliver Upton55c0cef2021-09-16 18:15:34 +00002867 } else {
2868 data->clock = get_kvmclock_base_ns() + ka->kvmclock_offset;
2869 }
Wanpeng Lie2c22062017-05-11 18:12:05 -07002870
2871 put_cpu();
Oliver Upton55c0cef2021-09-16 18:15:34 +00002872}
Wanpeng Lie2c22062017-05-11 18:12:05 -07002873
Paolo Bonzini869b4422021-09-16 18:15:36 +00002874static void get_kvmclock(struct kvm *kvm, struct kvm_clock_data *data)
2875{
2876 struct kvm_arch *ka = &kvm->arch;
2877 unsigned seq;
2878
2879 do {
2880 seq = read_seqcount_begin(&ka->pvclock_sc);
2881 __get_kvmclock(kvm, data);
2882 } while (read_seqcount_retry(&ka->pvclock_sc, seq));
2883}
2884
Oliver Upton55c0cef2021-09-16 18:15:34 +00002885u64 get_kvmclock_ns(struct kvm *kvm)
2886{
2887 struct kvm_clock_data data;
2888
Oliver Upton55c0cef2021-09-16 18:15:34 +00002889 get_kvmclock(kvm, &data);
2890 return data.clock;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002891}
2892
Joao Martinsaa096aa2019-02-01 13:01:45 -05002893static void kvm_setup_pvclock_page(struct kvm_vcpu *v,
2894 struct gfn_to_hva_cache *cache,
2895 unsigned int offset)
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002896{
2897 struct kvm_vcpu_arch *vcpu = &v->arch;
2898 struct pvclock_vcpu_time_info guest_hv_clock;
2899
Joao Martinsaa096aa2019-02-01 13:01:45 -05002900 if (unlikely(kvm_read_guest_offset_cached(v->kvm, cache,
2901 &guest_hv_clock, offset, sizeof(guest_hv_clock))))
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002902 return;
2903
2904 /* This VCPU is paused, but it's legal for a guest to read another
2905 * VCPU's kvmclock, so we really have to follow the specification where
2906 * it says that version is odd if data is being modified, and even after
2907 * it is consistent.
2908 *
2909 * Version field updates must be kept separate. This is because
2910 * kvm_write_guest_cached might use a "rep movs" instruction, and
2911 * writes within a string instruction are weakly ordered. So there
2912 * are three writes overall.
2913 *
2914 * As a small optimization, only write the version field in the first
2915 * and third write. The vcpu->pv_time cache is still valid, because the
2916 * version field is the first in the struct.
2917 */
2918 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
2919
Liran Alon51c4b8b2017-11-05 16:11:30 +02002920 if (guest_hv_clock.version & 1)
2921 ++guest_hv_clock.version; /* first time write, random junk */
2922
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002923 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002924 kvm_write_guest_offset_cached(v->kvm, cache,
2925 &vcpu->hv_clock, offset,
2926 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002927
2928 smp_wmb();
2929
2930 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
2931 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
2932
2933 if (vcpu->pvclock_set_guest_stopped_request) {
2934 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
2935 vcpu->pvclock_set_guest_stopped_request = false;
2936 }
2937
2938 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
2939
Joao Martinsaa096aa2019-02-01 13:01:45 -05002940 kvm_write_guest_offset_cached(v->kvm, cache,
2941 &vcpu->hv_clock, offset,
2942 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002943
2944 smp_wmb();
2945
2946 vcpu->hv_clock.version++;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002947 kvm_write_guest_offset_cached(v->kvm, cache,
2948 &vcpu->hv_clock, offset,
2949 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002950}
2951
Zachary Amsden34c238a2010-09-18 14:38:14 -10002952static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002953{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002954 unsigned long flags, tgt_tsc_khz;
Paolo Bonzini869b4422021-09-16 18:15:36 +00002955 unsigned seq;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002956 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002957 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02002958 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002959 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002960 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002961 bool use_master_clock;
2962
2963 kernel_ns = 0;
2964 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002965
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002966 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02002967 * If the host uses TSC clock, then passthrough TSC as stable
2968 * to the guest.
2969 */
Paolo Bonzini869b4422021-09-16 18:15:36 +00002970 do {
2971 seq = read_seqcount_begin(&ka->pvclock_sc);
2972 use_master_clock = ka->use_master_clock;
2973 if (use_master_clock) {
2974 host_tsc = ka->master_cycle_now;
2975 kernel_ns = ka->master_kernel_ns;
2976 }
2977 } while (read_seqcount_retry(&ka->pvclock_sc, seq));
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002978
2979 /* Keep irq disabled to prevent changes to the clock */
2980 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002981 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
2982 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002983 local_irq_restore(flags);
2984 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
2985 return 1;
2986 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002987 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002988 host_tsc = rdtsc();
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002989 kernel_ns = get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02002990 }
2991
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002992 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002993
2994 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10002995 * We may have to catch up the TSC to match elapsed wall clock
2996 * time for two reasons, even if kvmclock is used.
2997 * 1) CPU could have been running below the maximum TSC rate
2998 * 2) Broken TSC compensation resets the base at each VCPU
2999 * entry to avoid unknown leaps of TSC even when running
3000 * again on the same CPU. This may cause apparent elapsed
3001 * time to disappear, and the guest to stand still or run
3002 * very slowly.
3003 */
3004 if (vcpu->tsc_catchup) {
3005 u64 tsc = compute_guest_tsc(v, kernel_ns);
3006 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02003007 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10003008 tsc_timestamp = tsc;
3009 }
3010 }
3011
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003012 local_irq_restore(flags);
3013
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02003014 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10003015
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003016 if (kvm_has_tsc_control)
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003017 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz,
3018 v->arch.l1_tsc_scaling_ratio);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003019
3020 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01003021 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10003022 &vcpu->hv_clock.tsc_shift,
3023 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003024 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10003025 }
3026
Zachary Amsden1d5f0662010-08-19 22:07:30 -10003027 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10003028 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10003029 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003030
Marcelo Tosattid8281992012-11-27 23:29:01 -02003031 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02003032 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02003033 if (use_master_clock)
3034 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
3035
Marcelo Tosatti78c03372012-11-27 23:28:47 -02003036 vcpu->hv_clock.flags = pvclock_flags;
3037
Paolo Bonzini095cf552016-02-08 12:54:12 +01003038 if (vcpu->pv_time_enabled)
Joao Martinsaa096aa2019-02-01 13:01:45 -05003039 kvm_setup_pvclock_page(v, &vcpu->pv_time, 0);
3040 if (vcpu->xen.vcpu_info_set)
3041 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_info_cache,
3042 offsetof(struct compat_vcpu_info, time));
Joao Martinsf2340cd2018-07-23 11:20:57 -04003043 if (vcpu->xen.vcpu_time_info_set)
3044 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_time_info_cache, 0);
Sean Christopherson94c245a2021-09-10 11:32:20 -07003045 if (!v->vcpu_idx)
Paolo Bonzini095cf552016-02-08 12:54:12 +01003046 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10003047 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01003048}
3049
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003050/*
3051 * kvmclock updates which are isolated to a given vcpu, such as
3052 * vcpu->cpu migration, should not allow system_timestamp from
3053 * the rest of the vcpus to remain static. Otherwise ntp frequency
3054 * correction applies to one vcpu's system_timestamp but not
3055 * the others.
3056 *
3057 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01003058 * We need to rate-limit these requests though, as they can
3059 * considerably slow guests that have a large number of vcpus.
3060 * The time for a remote vcpu to update its kvmclock is bound
3061 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003062 */
3063
Andrew Jones7e44e442014-02-28 12:52:54 +01003064#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
3065
3066static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003067{
Marc Zyngier46808a42021-11-16 16:04:02 +00003068 unsigned long i;
Andrew Jones7e44e442014-02-28 12:52:54 +01003069 struct delayed_work *dwork = to_delayed_work(work);
3070 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3071 kvmclock_update_work);
3072 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003073 struct kvm_vcpu *vcpu;
3074
3075 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003076 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003077 kvm_vcpu_kick(vcpu);
3078 }
3079}
3080
Andrew Jones7e44e442014-02-28 12:52:54 +01003081static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
3082{
3083 struct kvm *kvm = v->kvm;
3084
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003085 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01003086 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
3087 KVMCLOCK_UPDATE_DELAY);
3088}
3089
Andrew Jones332967a2014-02-28 12:52:55 +01003090#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
3091
3092static void kvmclock_sync_fn(struct work_struct *work)
3093{
3094 struct delayed_work *dwork = to_delayed_work(work);
3095 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3096 kvmclock_sync_work);
3097 struct kvm *kvm = container_of(ka, struct kvm, arch);
3098
Marcelo Tosatti630994b2015-05-12 22:42:04 -03003099 if (!kvmclock_periodic_sync)
3100 return;
3101
Andrew Jones332967a2014-02-28 12:52:55 +01003102 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
3103 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
3104 KVMCLOCK_SYNC_PERIOD);
3105}
3106
Borislav Petkov191c8132019-04-18 18:32:50 +02003107/*
3108 * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP.
3109 */
3110static bool can_set_mci_status(struct kvm_vcpu *vcpu)
3111{
3112 /* McStatusWrEn enabled? */
Sean Christopherson23493d02020-03-04 17:34:33 -08003113 if (guest_cpuid_is_amd_or_hygon(vcpu))
Borislav Petkov191c8132019-04-18 18:32:50 +02003114 return !!(vcpu->arch.msr_hwcr & BIT_ULL(18));
3115
3116 return false;
3117}
3118
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003119static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Huang Ying890ca9a2009-05-11 16:48:15 +08003120{
3121 u64 mcg_cap = vcpu->arch.mcg_cap;
3122 unsigned bank_num = mcg_cap & 0xff;
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003123 u32 msr = msr_info->index;
3124 u64 data = msr_info->data;
Huang Ying890ca9a2009-05-11 16:48:15 +08003125
3126 switch (msr) {
3127 case MSR_IA32_MCG_STATUS:
3128 vcpu->arch.mcg_status = data;
3129 break;
3130 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003131 if (!(mcg_cap & MCG_CTL_P) &&
3132 (data || !msr_info->host_initiated))
Huang Ying890ca9a2009-05-11 16:48:15 +08003133 return 1;
3134 if (data != 0 && data != ~(u64)0)
Paolo Bonzini44883f02018-07-26 13:01:52 +02003135 return 1;
Huang Ying890ca9a2009-05-11 16:48:15 +08003136 vcpu->arch.mcg_ctl = data;
3137 break;
3138 default:
3139 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003140 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003141 u32 offset = array_index_nospec(
3142 msr - MSR_IA32_MC0_CTL,
3143 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3144
Andre Przywara114be422010-03-24 17:46:42 +01003145 /* only 0 or all 1s can be written to IA32_MCi_CTL
3146 * some Linux kernels though clear bit 10 in bank 4 to
3147 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
3148 * this to avoid an uncatched #GP in the guest
3149 */
Huang Ying890ca9a2009-05-11 16:48:15 +08003150 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01003151 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08003152 return -1;
Borislav Petkov191c8132019-04-18 18:32:50 +02003153
3154 /* MCi_STATUS */
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003155 if (!msr_info->host_initiated &&
Borislav Petkov191c8132019-04-18 18:32:50 +02003156 (offset & 0x3) == 1 && data != 0) {
3157 if (!can_set_mci_status(vcpu))
3158 return -1;
3159 }
3160
Huang Ying890ca9a2009-05-11 16:48:15 +08003161 vcpu->arch.mce_banks[offset] = data;
3162 break;
3163 }
3164 return 1;
3165 }
3166 return 0;
3167}
3168
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003169static inline bool kvm_pv_async_pf_enabled(struct kvm_vcpu *vcpu)
3170{
3171 u64 mask = KVM_ASYNC_PF_ENABLED | KVM_ASYNC_PF_DELIVERY_AS_INT;
3172
3173 return (vcpu->arch.apf.msr_en_val & mask) == mask;
3174}
3175
Gleb Natapov344d9582010-10-14 11:22:50 +02003176static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
3177{
3178 gpa_t gpa = data & ~0x3f;
3179
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003180 /* Bits 4:5 are reserved, Should be zero */
3181 if (data & 0x30)
Gleb Natapov344d9582010-10-14 11:22:50 +02003182 return 1;
3183
Oliver Upton66570e92020-08-18 15:24:28 +00003184 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_VMEXIT) &&
3185 (data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT))
3186 return 1;
3187
3188 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT) &&
3189 (data & KVM_ASYNC_PF_DELIVERY_AS_INT))
3190 return 1;
3191
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003192 if (!lapic_in_kernel(vcpu))
Vitaly Kuznetsovd831de12020-09-11 11:31:47 +02003193 return data ? 1 : 0;
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003194
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003195 vcpu->arch.apf.msr_en_val = data;
Gleb Natapov344d9582010-10-14 11:22:50 +02003196
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003197 if (!kvm_pv_async_pf_enabled(vcpu)) {
Gleb Natapov344d9582010-10-14 11:22:50 +02003198 kvm_clear_async_pf_completion_queue(vcpu);
3199 kvm_async_pf_hash_reset(vcpu);
3200 return 0;
3201 }
3202
Paolo Bonzini4e335d92017-05-02 16:20:18 +02003203 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003204 sizeof(u64)))
Gleb Natapov344d9582010-10-14 11:22:50 +02003205 return 1;
3206
Gleb Natapov6adba522010-10-14 11:22:55 +02003207 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Wanpeng Li52a5c152017-07-13 18:30:42 -07003208 vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003209
Gleb Natapov344d9582010-10-14 11:22:50 +02003210 kvm_async_pf_wakeup_all(vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003211
3212 return 0;
3213}
3214
3215static int kvm_pv_enable_async_pf_int(struct kvm_vcpu *vcpu, u64 data)
3216{
3217 /* Bits 8-63 are reserved */
3218 if (data >> 8)
3219 return 1;
3220
3221 if (!lapic_in_kernel(vcpu))
3222 return 1;
3223
3224 vcpu->arch.apf.msr_int_val = data;
3225
3226 vcpu->arch.apf.vec = data & KVM_ASYNC_PF_VEC_MASK;
3227
Gleb Natapov344d9582010-10-14 11:22:50 +02003228 return 0;
3229}
3230
Glauber Costa12f9a482011-02-01 14:16:40 -05003231static void kvmclock_reset(struct kvm_vcpu *vcpu)
3232{
Andy Honig0b794592013-02-20 14:48:10 -08003233 vcpu->arch.pv_time_enabled = false;
Paolo Bonzini49dedf02019-10-10 12:49:22 +02003234 vcpu->arch.time = 0;
Glauber Costa12f9a482011-02-01 14:16:40 -05003235}
3236
Sean Christopherson77809382020-03-20 14:28:18 -07003237static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003238{
3239 ++vcpu->stat.tlb_flush;
Jason Baronb36464772021-01-14 22:27:56 -05003240 static_call(kvm_x86_tlb_flush_all)(vcpu);
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003241}
3242
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003243static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
3244{
3245 ++vcpu->stat.tlb_flush;
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003246
3247 if (!tdp_enabled) {
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003248 /*
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003249 * A TLB flush on behalf of the guest is equivalent to
3250 * INVPCID(all), toggling CR4.PGE, etc., which requires
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003251 * a forced sync of the shadow page tables. Ensure all the
3252 * roots are synced and the guest TLB in hardware is clean.
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003253 */
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003254 kvm_mmu_sync_roots(vcpu);
3255 kvm_mmu_sync_prev_roots(vcpu);
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003256 }
3257
Jason Baronb36464772021-01-14 22:27:56 -05003258 static_call(kvm_x86_tlb_flush_guest)(vcpu);
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003259}
3260
Sean Christopherson40e5f9082021-11-25 01:49:43 +00003261
3262static inline void kvm_vcpu_flush_tlb_current(struct kvm_vcpu *vcpu)
3263{
3264 ++vcpu->stat.tlb_flush;
3265 static_call(kvm_x86_tlb_flush_current)(vcpu);
3266}
3267
3268/*
3269 * Service "local" TLB flush requests, which are specific to the current MMU
3270 * context. In addition to the generic event handling in vcpu_enter_guest(),
3271 * TLB flushes that are targeted at an MMU context also need to be serviced
3272 * prior before nested VM-Enter/VM-Exit.
3273 */
3274void kvm_service_local_tlb_flush_requests(struct kvm_vcpu *vcpu)
3275{
3276 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
3277 kvm_vcpu_flush_tlb_current(vcpu);
3278
3279 if (kvm_check_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu))
3280 kvm_vcpu_flush_tlb_guest(vcpu);
3281}
3282EXPORT_SYMBOL_GPL(kvm_service_local_tlb_flush_requests);
3283
Glauber Costac9aaa892011-07-11 15:28:14 -04003284static void record_steal_time(struct kvm_vcpu *vcpu)
3285{
David Woodhouse7e2175e2021-11-02 17:36:39 +00003286 struct gfn_to_hva_cache *ghc = &vcpu->arch.st.cache;
3287 struct kvm_steal_time __user *st;
3288 struct kvm_memslots *slots;
3289 u64 steal;
3290 u32 version;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003291
David Woodhouse30b5c852021-03-01 12:53:09 +00003292 if (kvm_xen_msr_enabled(vcpu->kvm)) {
3293 kvm_xen_runstate_set_running(vcpu);
3294 return;
3295 }
3296
Glauber Costac9aaa892011-07-11 15:28:14 -04003297 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
3298 return;
3299
David Woodhouse7e2175e2021-11-02 17:36:39 +00003300 if (WARN_ON_ONCE(current->mm != vcpu->kvm->mm))
Glauber Costac9aaa892011-07-11 15:28:14 -04003301 return;
3302
David Woodhouse7e2175e2021-11-02 17:36:39 +00003303 slots = kvm_memslots(vcpu->kvm);
3304
3305 if (unlikely(slots->generation != ghc->generation ||
3306 kvm_is_error_hva(ghc->hva) || !ghc->memslot)) {
3307 gfn_t gfn = vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS;
3308
3309 /* We rely on the fact that it fits in a single page. */
3310 BUILD_BUG_ON((sizeof(*st) - 1) & KVM_STEAL_VALID_BITS);
3311
3312 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, gfn, sizeof(*st)) ||
3313 kvm_is_error_hva(ghc->hva) || !ghc->memslot)
3314 return;
3315 }
3316
3317 st = (struct kvm_steal_time __user *)ghc->hva;
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003318 /*
3319 * Doing a TLB flush here, on the guest's behalf, can avoid
3320 * expensive IPIs.
3321 */
Oliver Upton66570e92020-08-18 15:24:28 +00003322 if (guest_pv_has(vcpu, KVM_FEATURE_PV_TLB_FLUSH)) {
David Woodhouse7e2175e2021-11-02 17:36:39 +00003323 u8 st_preempted = 0;
3324 int err = -EFAULT;
3325
Paolo Bonzini3e067fd2021-11-12 02:53:41 -05003326 if (!user_access_begin(st, sizeof(*st)))
3327 return;
3328
David Woodhouse7e2175e2021-11-02 17:36:39 +00003329 asm volatile("1: xchgb %0, %2\n"
3330 "xor %1, %1\n"
3331 "2:\n"
3332 _ASM_EXTABLE_UA(1b, 2b)
David Woodhouse964b7aa2021-11-14 08:59:02 +00003333 : "+q" (st_preempted),
3334 "+&r" (err),
3335 "+m" (st->preempted));
David Woodhouse7e2175e2021-11-02 17:36:39 +00003336 if (err)
3337 goto out;
3338
3339 user_access_end();
3340
3341 vcpu->arch.st.preempted = 0;
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003342
Oliver Upton66570e92020-08-18 15:24:28 +00003343 trace_kvm_pv_tlb_flush(vcpu->vcpu_id,
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003344 st_preempted & KVM_VCPU_FLUSH_TLB);
3345 if (st_preempted & KVM_VCPU_FLUSH_TLB)
Oliver Upton66570e92020-08-18 15:24:28 +00003346 kvm_vcpu_flush_tlb_guest(vcpu);
David Woodhouse7e2175e2021-11-02 17:36:39 +00003347
3348 if (!user_access_begin(st, sizeof(*st)))
3349 goto dirty;
Wanpeng Li1eff0ad2021-05-18 05:00:33 -07003350 } else {
Paolo Bonzini3e067fd2021-11-12 02:53:41 -05003351 if (!user_access_begin(st, sizeof(*st)))
3352 return;
3353
David Woodhouse7e2175e2021-11-02 17:36:39 +00003354 unsafe_put_user(0, &st->preempted, out);
3355 vcpu->arch.st.preempted = 0;
Oliver Upton66570e92020-08-18 15:24:28 +00003356 }
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003357
David Woodhouse7e2175e2021-11-02 17:36:39 +00003358 unsafe_get_user(version, &st->version, out);
3359 if (version & 1)
3360 version += 1; /* first time write, random junk */
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003361
David Woodhouse7e2175e2021-11-02 17:36:39 +00003362 version += 1;
3363 unsafe_put_user(version, &st->version, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003364
3365 smp_wmb();
3366
David Woodhouse7e2175e2021-11-02 17:36:39 +00003367 unsafe_get_user(steal, &st->steal, out);
3368 steal += current->sched_info.run_delay -
Liang Chenc54cdf12016-03-16 19:33:16 +08003369 vcpu->arch.st.last_steal;
3370 vcpu->arch.st.last_steal = current->sched_info.run_delay;
David Woodhouse7e2175e2021-11-02 17:36:39 +00003371 unsafe_put_user(steal, &st->steal, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003372
David Woodhouse7e2175e2021-11-02 17:36:39 +00003373 version += 1;
3374 unsafe_put_user(version, &st->version, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003375
David Woodhouse7e2175e2021-11-02 17:36:39 +00003376 out:
3377 user_access_end();
3378 dirty:
3379 mark_page_dirty_in_slot(vcpu->kvm, ghc->memslot, gpa_to_gfn(ghc->gpa));
Glauber Costac9aaa892011-07-11 15:28:14 -04003380}
3381
Will Auld8fe8ab42012-11-29 12:42:12 -08003382int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003383{
Gleb Natapov57537852012-01-15 14:17:22 +02003384 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08003385 u32 msr = msr_info->index;
3386 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02003387
Joao Martins1232f8e2018-06-13 06:10:37 -04003388 if (msr && msr == vcpu->kvm->arch.xen_hvm_config.msr)
Joao Martins23200b72018-06-13 09:55:44 -04003389 return kvm_xen_write_hypercall_page(vcpu, data);
Joao Martins1232f8e2018-06-13 06:10:37 -04003390
Carsten Otte15c4a642007-10-30 18:44:17 +01003391 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01003392 case MSR_AMD64_NB_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003393 case MSR_IA32_UCODE_WRITE:
3394 case MSR_VM_HSAVE_PA:
3395 case MSR_AMD64_PATCH_LOADER:
3396 case MSR_AMD64_BU_CFG2:
Ladi Prosek405a3532017-04-06 15:22:20 +02003397 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003398 case MSR_F15H_EX_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003399 break;
3400
Wanpeng Li518e7b92018-02-28 14:03:31 +08003401 case MSR_IA32_UCODE_REV:
3402 if (msr_info->host_initiated)
3403 vcpu->arch.microcode_version = data;
3404 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003405 case MSR_IA32_ARCH_CAPABILITIES:
3406 if (!msr_info->host_initiated)
3407 return 1;
3408 vcpu->arch.arch_capabilities = data;
3409 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003410 case MSR_IA32_PERF_CAPABILITIES: {
3411 struct kvm_msr_entry msr_ent = {.index = msr, .data = 0};
3412
3413 if (!msr_info->host_initiated)
3414 return 1;
3415 if (guest_cpuid_has(vcpu, X86_FEATURE_PDCM) && kvm_get_msr_feature(&msr_ent))
3416 return 1;
3417 if (data & ~msr_ent.data)
3418 return 1;
3419
3420 vcpu->arch.perf_capabilities = data;
3421
3422 return 0;
3423 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003424 case MSR_EFER:
Sean Christopherson11988492019-04-02 08:19:15 -07003425 return set_efer(vcpu, msr_info);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003426 case MSR_K7_HWCR:
3427 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01003428 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08003429 data &= ~(u64)0x8; /* ignore TLB cache disable */
Borislav Petkov191c8132019-04-18 18:32:50 +02003430
3431 /* Handle McStatusWrEn */
3432 if (data == BIT_ULL(18)) {
3433 vcpu->arch.msr_hwcr = data;
3434 } else if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003435 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
3436 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003437 return 1;
3438 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003439 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003440 case MSR_FAM10H_MMIO_CONF_BASE:
3441 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003442 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
3443 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003444 return 1;
3445 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003446 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03003447 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003448 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003449 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01003450 return kvm_set_apic_base(vcpu, msr_info);
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003451 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03003452 return kvm_x2apic_msr_write(vcpu, msr, data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003453 case MSR_IA32_TSC_DEADLINE:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003454 kvm_set_lapic_tscdeadline_msr(vcpu, data);
3455 break;
Will Auldba904632012-11-29 12:42:50 -08003456 case MSR_IA32_TSC_ADJUST:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003457 if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) {
Will Auldba904632012-11-29 12:42:50 -08003458 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06003459 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08003460 adjust_tsc_offset_guest(vcpu, adj);
Zelin Dengd9130a22021-04-28 10:22:01 +08003461 /* Before back to guest, tsc_timestamp must be adjusted
3462 * as well, otherwise guest's percpu pvclock time could jump.
3463 */
3464 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Will Auldba904632012-11-29 12:42:50 -08003465 }
3466 vcpu->arch.ia32_tsc_adjust_msr = data;
3467 }
3468 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003469 case MSR_IA32_MISC_ENABLE:
Wanpeng Li511a85562019-05-21 14:06:54 +08003470 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) &&
3471 ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) {
3472 if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3))
3473 return 1;
3474 vcpu->arch.ia32_misc_enable_msr = data;
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08003475 kvm_update_cpuid_runtime(vcpu);
Wanpeng Li511a85562019-05-21 14:06:54 +08003476 } else {
3477 vcpu->arch.ia32_misc_enable_msr = data;
3478 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003479 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003480 case MSR_IA32_SMBASE:
3481 if (!msr_info->host_initiated)
3482 return 1;
3483 vcpu->arch.smbase = data;
3484 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003485 case MSR_IA32_POWER_CTL:
3486 vcpu->arch.msr_ia32_power_ctl = data;
3487 break;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003488 case MSR_IA32_TSC:
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003489 if (msr_info->host_initiated) {
3490 kvm_synchronize_tsc(vcpu, data);
3491 } else {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01003492 u64 adj = kvm_compute_l1_tsc_offset(vcpu, data) - vcpu->arch.l1_tsc_offset;
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003493 adjust_tsc_offset_guest(vcpu, adj);
3494 vcpu->arch.ia32_tsc_adjust_msr += adj;
3495 }
Paolo Bonzinidd259932018-04-13 11:38:35 +02003496 break;
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003497 case MSR_IA32_XSS:
3498 if (!msr_info->host_initiated &&
3499 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3500 return 1;
3501 /*
Sean Christophersona1bead22020-03-02 15:57:00 -08003502 * KVM supports exposing PT to the guest, but does not support
3503 * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than
3504 * XSAVES/XRSTORS to save/restore PT MSRs.
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003505 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01003506 if (data & ~supported_xss)
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003507 return 1;
3508 vcpu->arch.ia32_xss = data;
3509 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003510 case MSR_SMI_COUNT:
3511 if (!msr_info->host_initiated)
3512 return 1;
3513 vcpu->arch.smi_count = data;
3514 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003515 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003516 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3517 return 1;
3518
Joao Martins629b5342018-06-28 15:06:43 -04003519 vcpu->kvm->arch.wall_clock = data;
3520 kvm_write_wall_clock(vcpu->kvm, data, 0);
Oliver Upton66570e92020-08-18 15:24:28 +00003521 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003522 case MSR_KVM_WALL_CLOCK:
Oliver Upton66570e92020-08-18 15:24:28 +00003523 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3524 return 1;
3525
Joao Martins629b5342018-06-28 15:06:43 -04003526 vcpu->kvm->arch.wall_clock = data;
3527 kvm_write_wall_clock(vcpu->kvm, data, 0);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003528 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003529 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003530 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3531 return 1;
3532
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003533 kvm_write_system_time(vcpu, data, false, msr_info->host_initiated);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003534 break;
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003535 case MSR_KVM_SYSTEM_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003536 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3537 return 1;
3538
3539 kvm_write_system_time(vcpu, data, true, msr_info->host_initiated);
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003540 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003541 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003542 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3543 return 1;
3544
Gleb Natapov344d9582010-10-14 11:22:50 +02003545 if (kvm_pv_enable_async_pf(vcpu, data))
3546 return 1;
3547 break;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003548 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton66570e92020-08-18 15:24:28 +00003549 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3550 return 1;
3551
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003552 if (kvm_pv_enable_async_pf_int(vcpu, data))
3553 return 1;
3554 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003555 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003556 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton66570e92020-08-18 15:24:28 +00003557 return 1;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003558 if (data & 0x1) {
3559 vcpu->arch.apf.pageready_pending = false;
3560 kvm_check_async_pf_completion(vcpu);
3561 }
3562 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003563 case MSR_KVM_STEAL_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003564 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3565 return 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003566
3567 if (unlikely(!sched_info_on()))
3568 return 1;
3569
3570 if (data & KVM_STEAL_RESERVED_MASK)
3571 return 1;
3572
Glauber Costac9aaa892011-07-11 15:28:14 -04003573 vcpu->arch.st.msr_val = data;
3574
3575 if (!(data & KVM_MSR_ENABLED))
3576 break;
3577
Glauber Costac9aaa892011-07-11 15:28:14 -04003578 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
3579
3580 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003581 case MSR_KVM_PV_EOI_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003582 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3583 return 1;
3584
Vitaly Kuznetsov77c33232021-11-08 16:28:18 +01003585 if (kvm_lapic_set_pv_eoi(vcpu, data, sizeof(u8)))
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003586 return 1;
3587 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003588
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003589 case MSR_KVM_POLL_CONTROL:
Oliver Upton66570e92020-08-18 15:24:28 +00003590 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3591 return 1;
3592
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003593 /* only enable bit supported */
3594 if (data & (-1ULL << 1))
3595 return 1;
3596
3597 vcpu->arch.msr_kvm_poll_control = data;
3598 break;
3599
Huang Ying890ca9a2009-05-11 16:48:15 +08003600 case MSR_IA32_MCG_CTL:
3601 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003602 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003603 return set_msr_mce(vcpu, msr_info);
Andre Przywara71db6022009-06-12 22:01:29 +02003604
Wei Huang6912ac32015-06-12 01:34:56 -04003605 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3606 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003607 pr = true;
3608 fallthrough;
Wei Huang6912ac32015-06-12 01:34:56 -04003609 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3610 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003611 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003612 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02003613
3614 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03003615 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
3616 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02003617 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003618 case MSR_K7_CLK_CTL:
3619 /*
3620 * Ignore all writes to this no longer documented MSR.
3621 * Writes are only relevant for old K7 processors,
3622 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08003623 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003624 * affected processor models on the command line, hence
3625 * the need to ignore the workaround.
3626 */
3627 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003628 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003629 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3630 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003631 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3632 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003633 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003634 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3635 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3636 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003637 return kvm_hv_set_msr_common(vcpu, msr, data,
3638 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003639 case MSR_IA32_BBL_CR_CTL3:
3640 /* Drop writes to this legacy MSR -- see rdmsr
3641 * counterpart for further detail.
3642 */
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02003643 if (report_ignored_msrs)
3644 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
3645 msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05003646 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003647 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003648 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003649 return 1;
3650 vcpu->arch.osvw.length = data;
3651 break;
3652 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003653 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003654 return 1;
3655 vcpu->arch.osvw.status = data;
3656 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003657 case MSR_PLATFORM_INFO:
3658 if (!msr_info->host_initiated ||
Kyle Hueydb2336a2017-03-20 01:16:28 -07003659 (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) &&
3660 cpuid_fault_enabled(vcpu)))
3661 return 1;
3662 vcpu->arch.msr_platform_info = data;
3663 break;
3664 case MSR_MISC_FEATURES_ENABLES:
3665 if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT ||
3666 (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT &&
3667 !supports_cpuid_fault(vcpu)))
3668 return 1;
3669 vcpu->arch.msr_misc_features_enables = data;
3670 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003671 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003672 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003673 return kvm_pmu_set_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003674 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003675 }
3676 return 0;
3677}
3678EXPORT_SYMBOL_GPL(kvm_set_msr_common);
3679
Paolo Bonzini44883f02018-07-26 13:01:52 +02003680static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003681{
3682 u64 data;
3683 u64 mcg_cap = vcpu->arch.mcg_cap;
3684 unsigned bank_num = mcg_cap & 0xff;
3685
3686 switch (msr) {
3687 case MSR_IA32_P5_MC_ADDR:
3688 case MSR_IA32_P5_MC_TYPE:
3689 data = 0;
3690 break;
3691 case MSR_IA32_MCG_CAP:
3692 data = vcpu->arch.mcg_cap;
3693 break;
3694 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003695 if (!(mcg_cap & MCG_CTL_P) && !host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003696 return 1;
3697 data = vcpu->arch.mcg_ctl;
3698 break;
3699 case MSR_IA32_MCG_STATUS:
3700 data = vcpu->arch.mcg_status;
3701 break;
3702 default:
3703 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003704 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003705 u32 offset = array_index_nospec(
3706 msr - MSR_IA32_MC0_CTL,
3707 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3708
Huang Ying890ca9a2009-05-11 16:48:15 +08003709 data = vcpu->arch.mce_banks[offset];
3710 break;
3711 }
3712 return 1;
3713 }
3714 *pdata = data;
3715 return 0;
3716}
3717
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003718int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003719{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003720 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01003721 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01003722 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02003723 case MSR_IA32_LASTBRANCHFROMIP:
3724 case MSR_IA32_LASTBRANCHTOIP:
3725 case MSR_IA32_LASTINTFROMIP:
3726 case MSR_IA32_LASTINTTOIP:
Brijesh Singh059e5c32021-04-27 06:16:36 -05003727 case MSR_AMD64_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02003728 case MSR_K8_TSEG_ADDR:
3729 case MSR_K8_TSEG_MASK:
Avi Kivity61a6bd62008-12-29 17:32:28 +02003730 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02003731 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02003732 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003733 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003734 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03003735 case MSR_IA32_PERF_CTL:
Ladi Prosek405a3532017-04-06 15:22:20 +02003736 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003737 case MSR_F15H_EX_CFG:
Venkatesh Srinivas2ca1a062020-04-16 11:42:54 -07003738 /*
3739 * Intel Sandy Bridge CPUs must support the RAPL (running average power
3740 * limit) MSRs. Just return 0, as we do not want to expose the host
3741 * data here. Do not conditionalize this on CPUID, as KVM does not do
3742 * so for existing CPU-specific MSRs.
3743 */
3744 case MSR_RAPL_POWER_UNIT:
3745 case MSR_PP0_ENERGY_STATUS: /* Power plane 0 (core) */
3746 case MSR_PP1_ENERGY_STATUS: /* Power plane 1 (graphics uncore) */
3747 case MSR_PKG_ENERGY_STATUS: /* Total package */
3748 case MSR_DRAM_ENERGY_STATUS: /* DRAM controller */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003749 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01003750 break;
Janakarajan Natarajanc51eb522018-02-05 13:24:52 -06003751 case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5:
Vitaly Kuznetsovc28fa562021-03-29 14:48:04 +02003752 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
3753 return kvm_pmu_get_msr(vcpu, msr_info);
3754 if (!msr_info->host_initiated)
3755 return 1;
3756 msr_info->data = 0;
3757 break;
Wei Huang6912ac32015-06-12 01:34:56 -04003758 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3759 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3760 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
3761 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003762 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003763 return kvm_pmu_get_msr(vcpu, msr_info);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003764 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02003765 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003766 case MSR_IA32_UCODE_REV:
Wanpeng Li518e7b92018-02-28 14:03:31 +08003767 msr_info->data = vcpu->arch.microcode_version;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003768 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003769 case MSR_IA32_ARCH_CAPABILITIES:
3770 if (!msr_info->host_initiated &&
3771 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3772 return 1;
3773 msr_info->data = vcpu->arch.arch_capabilities;
3774 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003775 case MSR_IA32_PERF_CAPABILITIES:
3776 if (!msr_info->host_initiated &&
3777 !guest_cpuid_has(vcpu, X86_FEATURE_PDCM))
3778 return 1;
3779 msr_info->data = vcpu->arch.perf_capabilities;
3780 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003781 case MSR_IA32_POWER_CTL:
3782 msr_info->data = vcpu->arch.msr_ia32_power_ctl;
3783 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003784 case MSR_IA32_TSC: {
3785 /*
3786 * Intel SDM states that MSR_IA32_TSC read adds the TSC offset
3787 * even when not intercepted. AMD manual doesn't explicitly
3788 * state this but appears to behave the same.
3789 *
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003790 * On userspace reads and writes, however, we unconditionally
Paolo Bonzinic0623f52020-10-21 18:05:58 -04003791 * return L1's TSC value to ensure backwards-compatible
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003792 * behavior for migration.
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003793 */
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003794 u64 offset, ratio;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003795
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003796 if (msr_info->host_initiated) {
3797 offset = vcpu->arch.l1_tsc_offset;
3798 ratio = vcpu->arch.l1_tsc_scaling_ratio;
3799 } else {
3800 offset = vcpu->arch.tsc_offset;
3801 ratio = vcpu->arch.tsc_scaling_ratio;
3802 }
3803
3804 msr_info->data = kvm_scale_tsc(vcpu, rdtsc(), ratio) + offset;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003805 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003806 }
Avi Kivity9ba075a2008-05-26 20:06:35 +03003807 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03003808 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003809 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003810 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003811 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01003812 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02003813 /*
3814 * MSR_EBC_FREQUENCY_ID
3815 * Conservative value valid for even the basic CPU models.
3816 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
3817 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
3818 * and 266MHz for model 3, or 4. Set Core Clock
3819 * Frequency to System Bus Frequency Ratio to 1 (bits
3820 * 31:24) even though these are only valid for CPU
3821 * models > 2, however guests may end up dividing or
3822 * multiplying by zero otherwise.
3823 */
3824 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003825 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02003826 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003827 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003828 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01003829 break;
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003830 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003831 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003832 case MSR_IA32_TSC_DEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003833 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003834 break;
Will Auldba904632012-11-29 12:42:50 -08003835 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003836 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08003837 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003838 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003839 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01003840 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003841 case MSR_IA32_SMBASE:
3842 if (!msr_info->host_initiated)
3843 return 1;
3844 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01003845 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003846 case MSR_SMI_COUNT:
3847 msr_info->data = vcpu->arch.smi_count;
3848 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003849 case MSR_IA32_PERF_STATUS:
3850 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003851 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003852 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08003853 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01003854 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003855 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003856 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01003857 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003858 case MSR_KVM_WALL_CLOCK:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003859 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3860 return 1;
3861
3862 msr_info->data = vcpu->kvm->arch.wall_clock;
3863 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003864 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003865 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3866 return 1;
3867
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003868 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003869 break;
3870 case MSR_KVM_SYSTEM_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003871 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3872 return 1;
3873
3874 msr_info->data = vcpu->arch.time;
3875 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003876 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003877 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3878 return 1;
3879
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003880 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003881 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003882 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003883 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3884 return 1;
3885
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003886 msr_info->data = vcpu->arch.apf.msr_en_val;
3887 break;
3888 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003889 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3890 return 1;
3891
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003892 msr_info->data = vcpu->arch.apf.msr_int_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02003893 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003894 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003895 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton1930e5d2020-10-27 16:10:41 -07003896 return 1;
3897
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003898 msr_info->data = 0;
3899 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003900 case MSR_KVM_STEAL_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003901 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3902 return 1;
3903
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003904 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04003905 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003906 case MSR_KVM_PV_EOI_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003907 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3908 return 1;
3909
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003910 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003911 break;
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003912 case MSR_KVM_POLL_CONTROL:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003913 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3914 return 1;
3915
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003916 msr_info->data = vcpu->arch.msr_kvm_poll_control;
3917 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003918 case MSR_IA32_P5_MC_ADDR:
3919 case MSR_IA32_P5_MC_TYPE:
3920 case MSR_IA32_MCG_CAP:
3921 case MSR_IA32_MCG_CTL:
3922 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003923 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003924 return get_msr_mce(vcpu, msr_info->index, &msr_info->data,
3925 msr_info->host_initiated);
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003926 case MSR_IA32_XSS:
3927 if (!msr_info->host_initiated &&
3928 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3929 return 1;
3930 msr_info->data = vcpu->arch.ia32_xss;
3931 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003932 case MSR_K7_CLK_CTL:
3933 /*
3934 * Provide expected ramp-up count for K7. All other
3935 * are set to zero, indicating minimum divisors for
3936 * every field.
3937 *
3938 * This prevents guest kernels on AMD host with CPU
3939 * type 6, model 8 and higher from exploding due to
3940 * the rdmsr failing.
3941 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003942 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003943 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003944 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003945 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3946 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003947 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3948 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003949 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003950 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3951 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3952 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine83d5882015-07-03 15:01:34 +03003953 return kvm_hv_get_msr_common(vcpu,
Paolo Bonzini44883f02018-07-26 13:01:52 +02003954 msr_info->index, &msr_info->data,
3955 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003956 case MSR_IA32_BBL_CR_CTL3:
3957 /* This legacy MSR exists but isn't fully documented in current
3958 * silicon. It is however accessed by winxp in very narrow
3959 * scenarios where it sets bit #19, itself documented as
3960 * a "reserved" bit. Best effort attempt to source coherent
3961 * read data here should the balance of the register be
3962 * interpreted by the guest:
3963 *
3964 * L2 cache control register 3: 64GB range, 256KB size,
3965 * enabled, latency 0x1, configured
3966 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003967 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05003968 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003969 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003970 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003971 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003972 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003973 break;
3974 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003975 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003976 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003977 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003978 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003979 case MSR_PLATFORM_INFO:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07003980 if (!msr_info->host_initiated &&
3981 !vcpu->kvm->arch.guest_can_read_msr_platform_info)
3982 return 1;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003983 msr_info->data = vcpu->arch.msr_platform_info;
3984 break;
3985 case MSR_MISC_FEATURES_ENABLES:
3986 msr_info->data = vcpu->arch.msr_misc_features_enables;
3987 break;
Borislav Petkov191c8132019-04-18 18:32:50 +02003988 case MSR_K7_HWCR:
3989 msr_info->data = vcpu->arch.msr_hwcr;
3990 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003991 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003992 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003993 return kvm_pmu_get_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003994 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003995 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003996 return 0;
3997}
3998EXPORT_SYMBOL_GPL(kvm_get_msr_common);
3999
Carsten Otte313a3dc2007-10-11 19:16:52 +02004000/*
4001 * Read or write a bunch of msrs. All parameters are kernel addresses.
4002 *
4003 * @return number of msrs set successfully.
4004 */
4005static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
4006 struct kvm_msr_entry *entries,
4007 int (*do_msr)(struct kvm_vcpu *vcpu,
4008 unsigned index, u64 *data))
4009{
Tom Lendacky801e4592018-02-21 13:39:51 -06004010 int i;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004011
Carsten Otte313a3dc2007-10-11 19:16:52 +02004012 for (i = 0; i < msrs->nmsrs; ++i)
4013 if (do_msr(vcpu, entries[i].index, &entries[i].data))
4014 break;
4015
Carsten Otte313a3dc2007-10-11 19:16:52 +02004016 return i;
4017}
4018
4019/*
4020 * Read or write a bunch of msrs. Parameters are user addresses.
4021 *
4022 * @return number of msrs set successfully.
4023 */
4024static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
4025 int (*do_msr)(struct kvm_vcpu *vcpu,
4026 unsigned index, u64 *data),
4027 int writeback)
4028{
4029 struct kvm_msrs msrs;
4030 struct kvm_msr_entry *entries;
4031 int r, n;
4032 unsigned size;
4033
4034 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004035 if (copy_from_user(&msrs, user_msrs, sizeof(msrs)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02004036 goto out;
4037
4038 r = -E2BIG;
4039 if (msrs.nmsrs >= MAX_IO_MSRS)
4040 goto out;
4041
Carsten Otte313a3dc2007-10-11 19:16:52 +02004042 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004043 entries = memdup_user(user_msrs->entries, size);
4044 if (IS_ERR(entries)) {
4045 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004046 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004047 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02004048
4049 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
4050 if (r < 0)
4051 goto out_free;
4052
4053 r = -EFAULT;
4054 if (writeback && copy_to_user(user_msrs->entries, entries, size))
4055 goto out_free;
4056
4057 r = n;
4058
4059out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03004060 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004061out:
4062 return r;
4063}
4064
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004065static inline bool kvm_can_mwait_in_guest(void)
4066{
4067 return boot_cpu_has(X86_FEATURE_MWAIT) &&
KarimAllah Ahmed8e9b29b2018-04-11 11:16:03 +02004068 !boot_cpu_has_bug(X86_BUG_MONITOR) &&
4069 boot_cpu_has(X86_FEATURE_ARAT);
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004070}
4071
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004072static int kvm_ioctl_get_supported_hv_cpuid(struct kvm_vcpu *vcpu,
4073 struct kvm_cpuid2 __user *cpuid_arg)
4074{
4075 struct kvm_cpuid2 cpuid;
4076 int r;
4077
4078 r = -EFAULT;
4079 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
4080 return r;
4081
4082 r = kvm_get_hv_cpuid(vcpu, &cpuid, cpuid_arg->entries);
4083 if (r)
4084 return r;
4085
4086 r = -EFAULT;
4087 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
4088 return r;
4089
4090 return 0;
4091}
4092
Alexander Graf784aa3d2014-07-14 18:27:35 +02004093int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004094{
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004095 int r = 0;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004096
4097 switch (ext) {
4098 case KVM_CAP_IRQCHIP:
4099 case KVM_CAP_HLT:
4100 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004101 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02004102 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004103 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01004104 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08004105 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05004106 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03004107 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03004108 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08004109 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004110 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02004111 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04004112 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03004113 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02004114 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04004115 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08004116 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004117 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02004118 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02004119 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02004120 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004121 case KVM_CAP_HYPERV_SYNIC:
Roman Kaganefc479e2017-06-22 16:51:01 +03004122 case KVM_CAP_HYPERV_SYNIC2:
Roman Kagand3457c82017-07-14 17:13:20 +03004123 case KVM_CAP_HYPERV_VP_INDEX:
Roman Kaganfaeb7832018-02-01 16:48:32 +03004124 case KVM_CAP_HYPERV_EVENTFD:
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02004125 case KVM_CAP_HYPERV_TLBFLUSH:
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02004126 case KVM_CAP_HYPERV_SEND_IPI:
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004127 case KVM_CAP_HYPERV_CPUID:
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02004128 case KVM_CAP_HYPERV_ENFORCE_CPUID:
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004129 case KVM_CAP_SYS_HYPERV_CPUID:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08004130 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004131 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01004132 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004133 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02004134 case KVM_CAP_ASYNC_PF:
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +02004135 case KVM_CAP_ASYNC_PF_INT:
Joerg Roedel92a1f122011-03-25 09:44:51 +01004136 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004137 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08004138 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01004139 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05004140 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01004141 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03004142 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004143 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07004144 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004145 case KVM_CAP_IMMEDIATE_EXIT:
Eric Hankland66bb8a02019-07-10 18:25:15 -07004146 case KVM_CAP_PMU_EVENT_FILTER:
Tom Lendacky801e4592018-02-21 13:39:51 -06004147 case KVM_CAP_GET_MSR_FEATURES:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07004148 case KVM_CAP_MSR_PLATFORM_INFO:
Jim Mattsonc4f55192018-10-16 14:29:24 -07004149 case KVM_CAP_EXCEPTION_PAYLOAD:
Peter Xub9b27822020-05-05 11:47:50 -04004150 case KVM_CAP_SET_GUEST_DEBUG:
Jim Mattson1aa561b2020-06-03 16:56:21 -07004151 case KVM_CAP_LAST_CPU:
Alexander Graf1ae09952020-09-25 16:34:16 +02004152 case KVM_CAP_X86_USER_SPACE_MSR:
Alexander Graf1a1552542020-09-25 16:34:21 +02004153 case KVM_CAP_X86_MSR_FILTER:
Oliver Upton66570e92020-08-18 15:24:28 +00004154 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
Sean Christophersonfe7e9482021-04-12 16:21:43 +12004155#ifdef CONFIG_X86_SGX_KVM
4156 case KVM_CAP_SGX_ATTRIBUTE:
4157#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00004158 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
Paolo Bonzini30d7c5d2021-11-18 04:41:34 -05004159 case KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM:
Maxim Levitsky6dba9402021-06-07 12:02:02 +03004160 case KVM_CAP_SREGS2:
Aaron Lewis19238e72021-05-10 07:48:33 -07004161 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
Oliver Upton828ca892021-09-16 18:15:38 +00004162 case KVM_CAP_VCPU_ATTRIBUTES:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004163 r = 1;
4164 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00004165 case KVM_CAP_EXIT_HYPERCALL:
4166 r = KVM_EXIT_HYPERCALL_VALID_MASK;
4167 break;
Maxim Levitsky7e582cc2021-04-01 16:54:45 +03004168 case KVM_CAP_SET_GUEST_DEBUG2:
4169 return KVM_GUESTDBG_VALID_MASK;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004170#ifdef CONFIG_KVM_XEN
Joao Martins23200b72018-06-13 09:55:44 -04004171 case KVM_CAP_XEN_HVM:
4172 r = KVM_XEN_HVM_CONFIG_HYPERCALL_MSR |
David Woodhouse8d4e7e82020-12-04 01:02:04 +00004173 KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL |
4174 KVM_XEN_HVM_CONFIG_SHARED_INFO;
David Woodhouse30b5c852021-03-01 12:53:09 +00004175 if (sched_info_on())
4176 r |= KVM_XEN_HVM_CONFIG_RUNSTATE;
Joao Martins23200b72018-06-13 09:55:44 -04004177 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004178#endif
Ken Hofsass01643c52018-01-31 16:03:36 -08004179 case KVM_CAP_SYNC_REGS:
4180 r = KVM_SYNC_X86_VALID_FIELDS;
4181 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004182 case KVM_CAP_ADJUST_CLOCK:
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00004183 r = KVM_CLOCK_VALID_FLAGS;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004184 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004185 case KVM_CAP_X86_DISABLE_EXITS:
Wanpeng Lib5170062019-05-21 14:06:53 +08004186 r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE |
4187 KVM_X86_DISABLE_EXITS_CSTATE;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004188 if(kvm_can_mwait_in_guest())
4189 r |= KVM_X86_DISABLE_EXITS_MWAIT;
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02004190 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004191 case KVM_CAP_X86_SMM:
4192 /* SMBASE is usually relocated above 1M on modern chipsets,
4193 * and SMM handlers might indeed rely on 4G segment limits,
4194 * so do not report SMM to be available if real mode is
4195 * emulated via vm86 mode. Still, do not go to great lengths
4196 * to avoid userspace's usage of the feature, because it is a
4197 * fringe case that is not enabled except via specific settings
4198 * of the module parameters.
4199 */
Jason Baronb36464772021-01-14 22:27:56 -05004200 r = static_call(kvm_x86_has_emulated_msr)(kvm, MSR_IA32_SMBASE);
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004201 break;
Avi Kivity774ead32007-12-26 13:57:04 +02004202 case KVM_CAP_VAPIC:
Jason Baronb36464772021-01-14 22:27:56 -05004203 r = !static_call(kvm_x86_cpu_has_accelerated_tpr)();
Avi Kivity774ead32007-12-26 13:57:04 +02004204 break;
Avi Kivityf7252302008-02-20 11:53:16 +02004205 case KVM_CAP_NR_VCPUS:
Vitaly Kuznetsov2845e732021-11-16 17:34:43 +01004206 r = min_t(unsigned int, num_online_cpus(), KVM_MAX_VCPUS);
Sasha Levin8c3ba332011-07-18 17:17:15 +03004207 break;
4208 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02004209 r = KVM_MAX_VCPUS;
4210 break;
Thomas Hutha86cb412019-05-23 18:43:08 +02004211 case KVM_CAP_MAX_VCPU_ID:
Juergen Grossa1c42dd2021-09-13 15:57:44 +02004212 r = KVM_MAX_VCPU_IDS;
Thomas Hutha86cb412019-05-23 18:43:08 +02004213 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03004214 case KVM_CAP_PV_MMU: /* obsolete */
4215 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05004216 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08004217 case KVM_CAP_MCE:
4218 r = KVM_MAX_MCE_BANKS;
4219 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004220 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02004221 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004222 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004223 case KVM_CAP_TSC_CONTROL:
4224 r = kvm_has_tsc_control;
4225 break;
Radim Krčmář371313132016-07-12 22:09:27 +02004226 case KVM_CAP_X2APIC_API:
4227 r = KVM_X2APIC_API_VALID_FLAGS;
4228 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004229 case KVM_CAP_NESTED_STATE:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004230 r = kvm_x86_ops.nested_ops->get_state ?
4231 kvm_x86_ops.nested_ops->get_state(NULL, NULL, 0) : 0;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004232 break;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004233 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004234 r = kvm_x86_ops.enable_direct_tlbflush != NULL;
Vitaly Kuznetsov5a0165f2019-08-28 09:59:05 +02004235 break;
4236 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004237 r = kvm_x86_ops.nested_ops->enable_evmcs != NULL;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004238 break;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02004239 case KVM_CAP_SMALLER_MAXPHYADDR:
4240 r = (int) allow_smaller_maxphyaddr;
4241 break;
Andrew Jones004a0122020-08-04 19:06:04 +02004242 case KVM_CAP_STEAL_TIME:
4243 r = sched_info_on();
4244 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004245 case KVM_CAP_X86_BUS_LOCK_EXIT:
4246 if (kvm_has_bus_lock_exit)
4247 r = KVM_BUS_LOCK_DETECTION_OFF |
4248 KVM_BUS_LOCK_DETECTION_EXIT;
4249 else
4250 r = 0;
4251 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004252 default:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004253 break;
4254 }
4255 return r;
4256
4257}
4258
Carsten Otte043405e2007-10-10 17:16:19 +02004259long kvm_arch_dev_ioctl(struct file *filp,
4260 unsigned int ioctl, unsigned long arg)
4261{
4262 void __user *argp = (void __user *)arg;
4263 long r;
4264
4265 switch (ioctl) {
4266 case KVM_GET_MSR_INDEX_LIST: {
4267 struct kvm_msr_list __user *user_msr_list = argp;
4268 struct kvm_msr_list msr_list;
4269 unsigned n;
4270
4271 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004272 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004273 goto out;
4274 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004275 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004276 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004277 goto out;
4278 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004279 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02004280 goto out;
4281 r = -EFAULT;
4282 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
4283 num_msrs_to_save * sizeof(u32)))
4284 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004285 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02004286 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004287 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02004288 goto out;
4289 r = 0;
4290 break;
4291 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004292 case KVM_GET_SUPPORTED_CPUID:
4293 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02004294 struct kvm_cpuid2 __user *cpuid_arg = argp;
4295 struct kvm_cpuid2 cpuid;
4296
4297 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004298 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004299 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004300
4301 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
4302 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02004303 if (r)
4304 goto out;
4305
4306 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004307 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004308 goto out;
4309 r = 0;
4310 break;
4311 }
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004312 case KVM_X86_GET_MCE_CAP_SUPPORTED:
Huang Ying890ca9a2009-05-11 16:48:15 +08004313 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004314 if (copy_to_user(argp, &kvm_mce_cap_supported,
4315 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004316 goto out;
4317 r = 0;
4318 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004319 case KVM_GET_MSR_FEATURE_INDEX_LIST: {
4320 struct kvm_msr_list __user *user_msr_list = argp;
4321 struct kvm_msr_list msr_list;
4322 unsigned int n;
4323
4324 r = -EFAULT;
4325 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
4326 goto out;
4327 n = msr_list.nmsrs;
4328 msr_list.nmsrs = num_msr_based_features;
4329 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
4330 goto out;
4331 r = -E2BIG;
4332 if (n < msr_list.nmsrs)
4333 goto out;
4334 r = -EFAULT;
4335 if (copy_to_user(user_msr_list->indices, &msr_based_features,
4336 num_msr_based_features * sizeof(u32)))
4337 goto out;
4338 r = 0;
4339 break;
4340 }
4341 case KVM_GET_MSRS:
4342 r = msr_io(NULL, argp, do_get_msr_feature, 1);
4343 break;
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004344 case KVM_GET_SUPPORTED_HV_CPUID:
4345 r = kvm_ioctl_get_supported_hv_cpuid(NULL, argp);
4346 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004347 default:
4348 r = -EINVAL;
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004349 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004350 }
4351out:
4352 return r;
4353}
4354
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004355static void wbinvd_ipi(void *garbage)
4356{
4357 wbinvd();
4358}
4359
4360static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
4361{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06004362 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004363}
4364
Carsten Otte313a3dc2007-10-11 19:16:52 +02004365void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
4366{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004367 /* Address WBINVD may be executed by guest */
4368 if (need_emulate_wbinvd(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05004369 if (static_call(kvm_x86_has_wbinvd_exit)())
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004370 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
4371 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
4372 smp_call_function_single(vcpu->cpu,
4373 wbinvd_ipi, NULL, 1);
4374 }
4375
Jason Baronb36464772021-01-14 22:27:56 -05004376 static_call(kvm_x86_vcpu_load)(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004377
Babu Moger37486132020-05-12 18:59:06 -05004378 /* Save host pkru register if supported */
4379 vcpu->arch.host_pkru = read_pkru();
4380
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004381 /* Apply any externally detected TSC adjustments (due to suspend) */
4382 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
4383 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
4384 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08004385 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004386 }
4387
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004388 if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02004389 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004390 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10004391 if (tsc_delta < 0)
4392 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07004393
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004394 if (kvm_check_tsc_unstable()) {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01004395 u64 offset = kvm_compute_l1_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02004396 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04004397 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004398 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10004399 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02004400
4401 if (kvm_lapic_hv_timer_in_use(vcpu))
4402 kvm_lapic_restart_hv_timer(vcpu);
4403
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02004404 /*
4405 * On a host with synchronized TSC, there is no need to update
4406 * kvmclock on vcpu->cpu migration
4407 */
4408 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03004409 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004410 if (vcpu->cpu != cpu)
Radim Krčmář1bd20092017-04-26 22:32:20 +02004411 kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10004412 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10004413 }
Glauber Costac9aaa892011-07-11 15:28:14 -04004414
Glauber Costac9aaa892011-07-11 15:28:14 -04004415 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004416}
4417
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004418static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
4419{
David Woodhouse7e2175e2021-11-02 17:36:39 +00004420 struct gfn_to_hva_cache *ghc = &vcpu->arch.st.cache;
4421 struct kvm_steal_time __user *st;
4422 struct kvm_memslots *slots;
4423 static const u8 preempted = KVM_VCPU_PREEMPTED;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004424
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004425 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
4426 return;
4427
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004428 if (vcpu->arch.st.preempted)
Boris Ostrovsky8c6de562019-10-30 19:01:31 +00004429 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004430
David Woodhouse7e2175e2021-11-02 17:36:39 +00004431 /* This happens on process exit */
4432 if (unlikely(current->mm != vcpu->kvm->mm))
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004433 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004434
David Woodhouse7e2175e2021-11-02 17:36:39 +00004435 slots = kvm_memslots(vcpu->kvm);
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004436
David Woodhouse7e2175e2021-11-02 17:36:39 +00004437 if (unlikely(slots->generation != ghc->generation ||
4438 kvm_is_error_hva(ghc->hva) || !ghc->memslot))
4439 return;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004440
David Woodhouse7e2175e2021-11-02 17:36:39 +00004441 st = (struct kvm_steal_time __user *)ghc->hva;
4442 BUILD_BUG_ON(sizeof(st->preempted) != sizeof(preempted));
4443
4444 if (!copy_to_user_nofault(&st->preempted, &preempted, sizeof(preempted)))
4445 vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED;
4446
4447 mark_page_dirty_in_slot(vcpu->kvm, ghc->memslot, gpa_to_gfn(ghc->gpa));
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004448}
4449
Carsten Otte313a3dc2007-10-11 19:16:52 +02004450void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
4451{
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004452 int idx;
4453
Tom Lendackyf1c63662020-12-14 10:29:50 -05004454 if (vcpu->preempted && !vcpu->arch.guest_state_protected)
Jason Baronb36464772021-01-14 22:27:56 -05004455 vcpu->arch.preempted_in_kernel = !static_call(kvm_x86_get_cpl)(vcpu);
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004456
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004457 /*
4458 * Take the srcu lock as memslots will be accessed to check the gfn
4459 * cache generation against the memslots generation.
4460 */
4461 idx = srcu_read_lock(&vcpu->kvm->srcu);
David Woodhouse30b5c852021-03-01 12:53:09 +00004462 if (kvm_xen_msr_enabled(vcpu->kvm))
4463 kvm_xen_runstate_set_preempted(vcpu);
4464 else
4465 kvm_steal_time_set_preempted(vcpu);
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004466 srcu_read_unlock(&vcpu->kvm->srcu, idx);
David Woodhouse30b5c852021-03-01 12:53:09 +00004467
Jason Baronb36464772021-01-14 22:27:56 -05004468 static_call(kvm_x86_vcpu_put)(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004469 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02004470}
4471
Carsten Otte313a3dc2007-10-11 19:16:52 +02004472static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
4473 struct kvm_lapic_state *s)
4474{
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05004475 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004476
Radim Krčmářa92e2542016-07-12 22:09:22 +02004477 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004478}
4479
4480static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
4481 struct kvm_lapic_state *s)
4482{
Radim Krčmářa92e2542016-07-12 22:09:22 +02004483 int r;
4484
4485 r = kvm_apic_set_state(vcpu, s);
4486 if (r)
4487 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03004488 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004489
4490 return 0;
4491}
4492
Matt Gingell127a4572015-11-17 17:32:05 +01004493static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
4494{
Paolo Bonzini71cc8492020-11-27 09:18:20 +01004495 /*
4496 * We can accept userspace's request for interrupt injection
4497 * as long as we have a place to store the interrupt number.
4498 * The actual injection will happen when the CPU is able to
4499 * deliver the interrupt.
4500 */
4501 if (kvm_cpu_has_extint(vcpu))
4502 return false;
4503
4504 /* Acknowledging ExtINT does not happen if LINT0 is masked. */
Matt Gingell127a4572015-11-17 17:32:05 +01004505 return (!lapic_in_kernel(vcpu) ||
4506 kvm_apic_accept_pic_intr(vcpu));
4507}
4508
Matt Gingell782d4222015-11-16 15:26:00 -08004509static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
4510{
Paolo Bonzinifa7a5492021-07-14 17:37:49 -04004511 /*
4512 * Do not cause an interrupt window exit if an exception
4513 * is pending or an event needs reinjection; userspace
4514 * might want to inject the interrupt manually using KVM_SET_REGS
4515 * or KVM_SET_SREGS. For that to work, we must be at an
4516 * instruction boundary and with no events half-injected.
4517 */
4518 return (kvm_arch_interrupt_allowed(vcpu) &&
4519 kvm_cpu_accept_dm_intr(vcpu) &&
4520 !kvm_event_needs_reinjection(vcpu) &&
4521 !vcpu->arch.exception.pending);
Matt Gingell782d4222015-11-16 15:26:00 -08004522}
4523
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004524static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
4525 struct kvm_interrupt *irq)
4526{
Chen Gang02cdb502013-02-27 11:33:25 +08004527 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004528 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004529
4530 if (!irqchip_in_kernel(vcpu->kvm)) {
4531 kvm_queue_interrupt(vcpu, irq->irq, false);
4532 kvm_make_request(KVM_REQ_EVENT, vcpu);
4533 return 0;
4534 }
4535
4536 /*
4537 * With in-kernel LAPIC, we only use this to inject EXTINT, so
4538 * fail for in-kernel 8259.
4539 */
4540 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004541 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004542
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004543 if (vcpu->arch.pending_external_vector != -1)
4544 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004545
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004546 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08004547 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004548 return 0;
4549}
4550
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004551static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
4552{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004553 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004554
4555 return 0;
4556}
4557
Paolo Bonzinif0778252015-04-01 15:06:40 +02004558static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
4559{
Paolo Bonzini64d60672015-05-07 11:36:11 +02004560 kvm_make_request(KVM_REQ_SMI, vcpu);
4561
Paolo Bonzinif0778252015-04-01 15:06:40 +02004562 return 0;
4563}
4564
Avi Kivityb209749f2007-10-22 16:50:39 +02004565static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
4566 struct kvm_tpr_access_ctl *tac)
4567{
4568 if (tac->flags)
4569 return -EINVAL;
4570 vcpu->arch.tpr_access_reporting = !!tac->enabled;
4571 return 0;
4572}
4573
Huang Ying890ca9a2009-05-11 16:48:15 +08004574static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
4575 u64 mcg_cap)
4576{
4577 int r;
4578 unsigned bank_num = mcg_cap & 0xff, bank;
4579
4580 r = -EINVAL;
Jim Mattsonc4e0e4ab2020-05-11 15:56:16 -07004581 if (!bank_num || bank_num > KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08004582 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004583 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08004584 goto out;
4585 r = 0;
4586 vcpu->arch.mcg_cap = mcg_cap;
4587 /* Init IA32_MCG_CTL to all 1s */
4588 if (mcg_cap & MCG_CTL_P)
4589 vcpu->arch.mcg_ctl = ~(u64)0;
4590 /* Init IA32_MCi_CTL to all 1s */
4591 for (bank = 0; bank < bank_num; bank++)
4592 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004593
Jason Baronb36464772021-01-14 22:27:56 -05004594 static_call(kvm_x86_setup_mce)(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004595out:
4596 return r;
4597}
4598
4599static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
4600 struct kvm_x86_mce *mce)
4601{
4602 u64 mcg_cap = vcpu->arch.mcg_cap;
4603 unsigned bank_num = mcg_cap & 0xff;
4604 u64 *banks = vcpu->arch.mce_banks;
4605
4606 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
4607 return -EINVAL;
4608 /*
4609 * if IA32_MCG_CTL is not all 1s, the uncorrected error
4610 * reporting is disabled
4611 */
4612 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
4613 vcpu->arch.mcg_ctl != ~(u64)0)
4614 return 0;
4615 banks += 4 * mce->bank;
4616 /*
4617 * if IA32_MCi_CTL is not all 1s, the uncorrected error
4618 * reporting is disabled for the bank
4619 */
4620 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
4621 return 0;
4622 if (mce->status & MCI_STATUS_UC) {
4623 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02004624 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03004625 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004626 return 0;
4627 }
4628 if (banks[1] & MCI_STATUS_VAL)
4629 mce->status |= MCI_STATUS_OVER;
4630 banks[2] = mce->addr;
4631 banks[3] = mce->misc;
4632 vcpu->arch.mcg_status = mce->mcg_status;
4633 banks[1] = mce->status;
4634 kvm_queue_exception(vcpu, MC_VECTOR);
4635 } else if (!(banks[1] & MCI_STATUS_VAL)
4636 || !(banks[1] & MCI_STATUS_UC)) {
4637 if (banks[1] & MCI_STATUS_VAL)
4638 mce->status |= MCI_STATUS_OVER;
4639 banks[2] = mce->addr;
4640 banks[3] = mce->misc;
4641 banks[1] = mce->status;
4642 } else
4643 banks[1] |= MCI_STATUS_OVER;
4644 return 0;
4645}
4646
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004647static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
4648 struct kvm_vcpu_events *events)
4649{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004650 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004651
Jay Zhou1f7becf2021-01-18 16:47:20 +08004652 if (kvm_check_request(KVM_REQ_SMI, vcpu))
4653 process_smi(vcpu);
4654
Wanpeng Li664f8e22017-08-24 03:35:09 -07004655 /*
Oliver Uptona06230b2020-02-07 02:36:06 -08004656 * In guest mode, payload delivery should be deferred,
4657 * so that the L1 hypervisor can intercept #PF before
4658 * CR2 is modified (or intercept #DB before DR6 is
4659 * modified under nVMX). Unless the per-VM capability,
4660 * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of
4661 * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we
4662 * opportunistically defer the exception payload, deliver it if the
4663 * capability hasn't been requested before processing a
4664 * KVM_GET_VCPU_EVENTS.
4665 */
4666 if (!vcpu->kvm->arch.exception_payload_enabled &&
4667 vcpu->arch.exception.pending && vcpu->arch.exception.has_payload)
4668 kvm_deliver_exception_payload(vcpu);
4669
4670 /*
Jim Mattson59073aa2018-10-16 14:29:20 -07004671 * The API doesn't provide the instruction length for software
4672 * exceptions, so don't report them. As long as the guest RIP
4673 * isn't advanced, we should expect to encounter the exception
4674 * again.
Wanpeng Li664f8e22017-08-24 03:35:09 -07004675 */
Jim Mattson59073aa2018-10-16 14:29:20 -07004676 if (kvm_exception_is_soft(vcpu->arch.exception.nr)) {
4677 events->exception.injected = 0;
4678 events->exception.pending = 0;
4679 } else {
4680 events->exception.injected = vcpu->arch.exception.injected;
4681 events->exception.pending = vcpu->arch.exception.pending;
4682 /*
4683 * For ABI compatibility, deliberately conflate
4684 * pending and injected exceptions when
4685 * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled.
4686 */
4687 if (!vcpu->kvm->arch.exception_payload_enabled)
4688 events->exception.injected |=
4689 vcpu->arch.exception.pending;
4690 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004691 events->exception.nr = vcpu->arch.exception.nr;
4692 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
4693 events->exception.error_code = vcpu->arch.exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004694 events->exception_has_payload = vcpu->arch.exception.has_payload;
4695 events->exception_payload = vcpu->arch.exception.payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004696
Jan Kiszka03b82a32010-02-15 10:45:41 +01004697 events->interrupt.injected =
Liran Alon04140b42018-03-23 03:01:31 +03004698 vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004699 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01004700 events->interrupt.soft = 0;
Jason Baronb36464772021-01-14 22:27:56 -05004701 events->interrupt.shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004702
4703 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004704 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jason Baronb36464772021-01-14 22:27:56 -05004705 events->nmi.masked = static_call(kvm_x86_get_nmi_mask)(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004706 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004707
Jan Kiszka66450a22013-03-13 12:42:34 +01004708 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004709
Paolo Bonzinif0778252015-04-01 15:06:40 +02004710 events->smi.smm = is_smm(vcpu);
4711 events->smi.pending = vcpu->arch.smi_pending;
4712 events->smi.smm_inside_nmi =
4713 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
4714 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
4715
Jan Kiszkadab4b912009-12-06 18:24:15 +01004716 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02004717 | KVM_VCPUEVENT_VALID_SHADOW
4718 | KVM_VCPUEVENT_VALID_SMM);
Jim Mattson59073aa2018-10-16 14:29:20 -07004719 if (vcpu->kvm->arch.exception_payload_enabled)
4720 events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD;
4721
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004722 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004723}
4724
Sean Christophersondc872752021-06-09 11:56:15 -07004725static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004726
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004727static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
4728 struct kvm_vcpu_events *events)
4729{
Jan Kiszkadab4b912009-12-06 18:24:15 +01004730 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01004731 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02004732 | KVM_VCPUEVENT_VALID_SHADOW
Jim Mattson59073aa2018-10-16 14:29:20 -07004733 | KVM_VCPUEVENT_VALID_SMM
4734 | KVM_VCPUEVENT_VALID_PAYLOAD))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004735 return -EINVAL;
4736
Jim Mattson59073aa2018-10-16 14:29:20 -07004737 if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) {
4738 if (!vcpu->kvm->arch.exception_payload_enabled)
4739 return -EINVAL;
4740 if (events->exception.pending)
4741 events->exception.injected = 0;
4742 else
4743 events->exception_has_payload = 0;
4744 } else {
4745 events->exception.pending = 0;
4746 events->exception_has_payload = 0;
4747 }
4748
4749 if ((events->exception.injected || events->exception.pending) &&
4750 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02004751 return -EINVAL;
4752
David Hildenbrand28bf2882017-03-23 11:46:03 +01004753 /* INITs are latched while in SMM */
4754 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
4755 (events->smi.smm || events->smi.pending) &&
4756 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
4757 return -EINVAL;
4758
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004759 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004760 vcpu->arch.exception.injected = events->exception.injected;
4761 vcpu->arch.exception.pending = events->exception.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004762 vcpu->arch.exception.nr = events->exception.nr;
4763 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
4764 vcpu->arch.exception.error_code = events->exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004765 vcpu->arch.exception.has_payload = events->exception_has_payload;
4766 vcpu->arch.exception.payload = events->exception_payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004767
Liran Alon04140b42018-03-23 03:01:31 +03004768 vcpu->arch.interrupt.injected = events->interrupt.injected;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004769 vcpu->arch.interrupt.nr = events->interrupt.nr;
4770 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01004771 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
Jason Baronb36464772021-01-14 22:27:56 -05004772 static_call(kvm_x86_set_interrupt_shadow)(vcpu,
4773 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004774
4775 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01004776 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
4777 vcpu->arch.nmi_pending = events->nmi.pending;
Jason Baronb36464772021-01-14 22:27:56 -05004778 static_call(kvm_x86_set_nmi_mask)(vcpu, events->nmi.masked);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004779
Jan Kiszka66450a22013-03-13 12:42:34 +01004780 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004781 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01004782 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004783
Paolo Bonzinif0778252015-04-01 15:06:40 +02004784 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Sean Christophersondc872752021-06-09 11:56:15 -07004785 if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm)
4786 kvm_smm_changed(vcpu, events->smi.smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004787
Paolo Bonzinif0778252015-04-01 15:06:40 +02004788 vcpu->arch.smi_pending = events->smi.pending;
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004789
4790 if (events->smi.smm) {
4791 if (events->smi.smm_inside_nmi)
4792 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02004793 else
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004794 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Liran Alonff90afa2019-11-11 11:16:39 +02004795 }
4796
4797 if (lapic_in_kernel(vcpu)) {
4798 if (events->smi.latched_init)
4799 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
4800 else
4801 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
Paolo Bonzinif0778252015-04-01 15:06:40 +02004802 }
4803 }
4804
Avi Kivity3842d132010-07-27 12:30:24 +03004805 kvm_make_request(KVM_REQ_EVENT, vcpu);
4806
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004807 return 0;
4808}
4809
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004810static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
4811 struct kvm_debugregs *dbgregs)
4812{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004813 unsigned long val;
4814
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004815 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004816 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004817 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004818 dbgregs->dr7 = vcpu->arch.dr7;
4819 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004820 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004821}
4822
4823static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
4824 struct kvm_debugregs *dbgregs)
4825{
4826 if (dbgregs->flags)
4827 return -EINVAL;
4828
Paolo Bonzinifd238002020-11-13 08:31:09 -05004829 if (!kvm_dr6_valid(dbgregs->dr6))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004830 return -EINVAL;
Paolo Bonzinifd238002020-11-13 08:31:09 -05004831 if (!kvm_dr7_valid(dbgregs->dr7))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004832 return -EINVAL;
4833
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004834 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03004835 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004836 vcpu->arch.dr6 = dbgregs->dr6;
4837 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01004838 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004839
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004840 return 0;
4841}
4842
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004843static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
4844 struct kvm_xsave *guest_xsave)
4845{
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004846 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -06004847 return;
4848
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004849 fpu_copy_guest_fpstate_to_uabi(&vcpu->arch.guest_fpu,
4850 guest_xsave->region,
4851 sizeof(guest_xsave->region),
4852 vcpu->arch.pkru);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004853}
4854
4855static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
4856 struct kvm_xsave *guest_xsave)
4857{
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004858 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -06004859 return 0;
4860
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02004861 return fpu_copy_uabi_to_guest_fpstate(&vcpu->arch.guest_fpu,
4862 guest_xsave->region,
4863 supported_xcr0, &vcpu->arch.pkru);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004864}
4865
4866static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
4867 struct kvm_xcrs *guest_xcrs)
4868{
Borislav Petkovd366bf72016-04-04 22:25:02 +02004869 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004870 guest_xcrs->nr_xcrs = 0;
4871 return;
4872 }
4873
4874 guest_xcrs->nr_xcrs = 1;
4875 guest_xcrs->flags = 0;
4876 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
4877 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
4878}
4879
4880static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
4881 struct kvm_xcrs *guest_xcrs)
4882{
4883 int i, r = 0;
4884
Borislav Petkovd366bf72016-04-04 22:25:02 +02004885 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004886 return -EINVAL;
4887
4888 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
4889 return -EINVAL;
4890
4891 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
4892 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004893 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004894 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004895 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004896 break;
4897 }
4898 if (r)
4899 r = -EINVAL;
4900 return r;
4901}
4902
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004903/*
4904 * kvm_set_guest_paused() indicates to the guest kernel that it has been
4905 * stopped by the hypervisor. This function will be called from the host only.
4906 * EINVAL is returned when the host attempts to set the flag for a guest that
4907 * does not support pv clocks.
4908 */
4909static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
4910{
Andy Honig0b794592013-02-20 14:48:10 -08004911 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004912 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03004913 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004914 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
4915 return 0;
4916}
4917
Oliver Upton828ca892021-09-16 18:15:38 +00004918static int kvm_arch_tsc_has_attr(struct kvm_vcpu *vcpu,
4919 struct kvm_device_attr *attr)
4920{
4921 int r;
4922
4923 switch (attr->attr) {
4924 case KVM_VCPU_TSC_OFFSET:
4925 r = 0;
4926 break;
4927 default:
4928 r = -ENXIO;
4929 }
4930
4931 return r;
4932}
4933
4934static int kvm_arch_tsc_get_attr(struct kvm_vcpu *vcpu,
4935 struct kvm_device_attr *attr)
4936{
4937 u64 __user *uaddr = (u64 __user *)(unsigned long)attr->addr;
4938 int r;
4939
4940 if ((u64)(unsigned long)uaddr != attr->addr)
4941 return -EFAULT;
4942
4943 switch (attr->attr) {
4944 case KVM_VCPU_TSC_OFFSET:
4945 r = -EFAULT;
4946 if (put_user(vcpu->arch.l1_tsc_offset, uaddr))
4947 break;
4948 r = 0;
4949 break;
4950 default:
4951 r = -ENXIO;
4952 }
4953
4954 return r;
4955}
4956
4957static int kvm_arch_tsc_set_attr(struct kvm_vcpu *vcpu,
4958 struct kvm_device_attr *attr)
4959{
4960 u64 __user *uaddr = (u64 __user *)(unsigned long)attr->addr;
4961 struct kvm *kvm = vcpu->kvm;
4962 int r;
4963
4964 if ((u64)(unsigned long)uaddr != attr->addr)
4965 return -EFAULT;
4966
4967 switch (attr->attr) {
4968 case KVM_VCPU_TSC_OFFSET: {
4969 u64 offset, tsc, ns;
4970 unsigned long flags;
4971 bool matched;
4972
4973 r = -EFAULT;
4974 if (get_user(offset, uaddr))
4975 break;
4976
4977 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
4978
4979 matched = (vcpu->arch.virtual_tsc_khz &&
4980 kvm->arch.last_tsc_khz == vcpu->arch.virtual_tsc_khz &&
4981 kvm->arch.last_tsc_offset == offset);
4982
4983 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio) + offset;
4984 ns = get_kvmclock_base_ns();
4985
4986 __kvm_synchronize_tsc(vcpu, offset, tsc, ns, matched);
4987 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
4988
4989 r = 0;
4990 break;
4991 }
4992 default:
4993 r = -ENXIO;
4994 }
4995
4996 return r;
4997}
4998
4999static int kvm_vcpu_ioctl_device_attr(struct kvm_vcpu *vcpu,
5000 unsigned int ioctl,
5001 void __user *argp)
5002{
5003 struct kvm_device_attr attr;
5004 int r;
5005
5006 if (copy_from_user(&attr, argp, sizeof(attr)))
5007 return -EFAULT;
5008
5009 if (attr.group != KVM_VCPU_TSC_CTRL)
5010 return -ENXIO;
5011
5012 switch (ioctl) {
5013 case KVM_HAS_DEVICE_ATTR:
5014 r = kvm_arch_tsc_has_attr(vcpu, &attr);
5015 break;
5016 case KVM_GET_DEVICE_ATTR:
5017 r = kvm_arch_tsc_get_attr(vcpu, &attr);
5018 break;
5019 case KVM_SET_DEVICE_ATTR:
5020 r = kvm_arch_tsc_set_attr(vcpu, &attr);
5021 break;
5022 }
5023
5024 return r;
5025}
5026
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005027static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
5028 struct kvm_enable_cap *cap)
5029{
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005030 int r;
5031 uint16_t vmcs_version;
5032 void __user *user_ptr;
5033
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005034 if (cap->flags)
5035 return -EINVAL;
5036
5037 switch (cap->cap) {
Roman Kaganefc479e2017-06-22 16:51:01 +03005038 case KVM_CAP_HYPERV_SYNIC2:
5039 if (cap->args[0])
5040 return -EINVAL;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005041 fallthrough;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06005042
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005043 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08005044 if (!irqchip_in_kernel(vcpu->kvm))
5045 return -EINVAL;
Roman Kaganefc479e2017-06-22 16:51:01 +03005046 return kvm_hv_activate_synic(vcpu, cap->cap ==
5047 KVM_CAP_HYPERV_SYNIC2);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005048 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04005049 if (!kvm_x86_ops.nested_ops->enable_evmcs)
Sean Christopherson51589172018-12-03 13:53:10 -08005050 return -ENOTTY;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005051 r = kvm_x86_ops.nested_ops->enable_evmcs(vcpu, &vmcs_version);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005052 if (!r) {
5053 user_ptr = (void __user *)(uintptr_t)cap->args[0];
5054 if (copy_to_user(user_ptr, &vmcs_version,
5055 sizeof(vmcs_version)))
5056 r = -EFAULT;
5057 }
5058 return r;
Tianyu Lan344c6c82019-08-22 22:30:20 +08005059 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005060 if (!kvm_x86_ops.enable_direct_tlbflush)
Tianyu Lan344c6c82019-08-22 22:30:20 +08005061 return -ENOTTY;
5062
Jason Baronb36464772021-01-14 22:27:56 -05005063 return static_call(kvm_x86_enable_direct_tlbflush)(vcpu);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005064
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02005065 case KVM_CAP_HYPERV_ENFORCE_CPUID:
5066 return kvm_hv_set_enforce_cpuid(vcpu, cap->args[0]);
5067
Oliver Upton66570e92020-08-18 15:24:28 +00005068 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
5069 vcpu->arch.pv_cpuid.enforce = cap->args[0];
Oliver Upton01b4f512020-10-27 16:10:42 -07005070 if (vcpu->arch.pv_cpuid.enforce)
5071 kvm_update_pv_runtime(vcpu);
Oliver Upton66570e92020-08-18 15:24:28 +00005072
5073 return 0;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005074 default:
5075 return -EINVAL;
5076 }
5077}
5078
Carsten Otte313a3dc2007-10-11 19:16:52 +02005079long kvm_arch_vcpu_ioctl(struct file *filp,
5080 unsigned int ioctl, unsigned long arg)
5081{
5082 struct kvm_vcpu *vcpu = filp->private_data;
5083 void __user *argp = (void __user *)arg;
5084 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005085 union {
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005086 struct kvm_sregs2 *sregs2;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005087 struct kvm_lapic_state *lapic;
5088 struct kvm_xsave *xsave;
5089 struct kvm_xcrs *xcrs;
5090 void *buffer;
5091 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005092
Christoffer Dall9b0624712017-12-04 21:35:36 +01005093 vcpu_load(vcpu);
5094
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005095 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005096 switch (ioctl) {
5097 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005098 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005099 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005100 goto out;
Ben Gardon254272c2019-02-11 11:02:50 -08005101 u.lapic = kzalloc(sizeof(struct kvm_lapic_state),
5102 GFP_KERNEL_ACCOUNT);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005103
Dave Hansenb772ff32008-08-11 10:01:47 -07005104 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005105 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07005106 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005107 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005108 if (r)
5109 goto out;
5110 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005111 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005112 goto out;
5113 r = 0;
5114 break;
5115 }
5116 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005117 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005118 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005119 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005120 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005121 if (IS_ERR(u.lapic)) {
5122 r = PTR_ERR(u.lapic);
5123 goto out_nofree;
5124 }
Sasha Levinff5c2c02011-12-04 19:36:29 +02005125
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005126 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005127 break;
5128 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005129 case KVM_INTERRUPT: {
5130 struct kvm_interrupt irq;
5131
5132 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005133 if (copy_from_user(&irq, argp, sizeof(irq)))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005134 goto out;
5135 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005136 break;
5137 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02005138 case KVM_NMI: {
5139 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02005140 break;
5141 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02005142 case KVM_SMI: {
5143 r = kvm_vcpu_ioctl_smi(vcpu);
5144 break;
5145 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02005146 case KVM_SET_CPUID: {
5147 struct kvm_cpuid __user *cpuid_arg = argp;
5148 struct kvm_cpuid cpuid;
5149
Vitaly Kuznetsovfeb627e2021-11-22 18:58:18 +01005150 /*
5151 * KVM does not correctly handle changing guest CPUID after KVM_RUN, as
5152 * MAXPHYADDR, GBPAGES support, AMD reserved bit behavior, etc.. aren't
5153 * tracked in kvm_mmu_page_role. As a result, KVM may miss guest page
5154 * faults due to reusing SPs/SPTEs. In practice no sane VMM mucks with
5155 * the core vCPU model on the fly, so fail.
5156 */
5157 r = -EINVAL;
5158 if (vcpu->arch.last_vmentry_cpu != -1)
5159 goto out;
5160
Carsten Otte313a3dc2007-10-11 19:16:52 +02005161 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005162 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005163 goto out;
5164 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005165 break;
5166 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02005167 case KVM_SET_CPUID2: {
5168 struct kvm_cpuid2 __user *cpuid_arg = argp;
5169 struct kvm_cpuid2 cpuid;
5170
Vitaly Kuznetsovfeb627e2021-11-22 18:58:18 +01005171 /*
5172 * KVM_SET_CPUID{,2} after KVM_RUN is forbidded, see the comment in
5173 * KVM_SET_CPUID case above.
5174 */
5175 r = -EINVAL;
5176 if (vcpu->arch.last_vmentry_cpu != -1)
5177 goto out;
5178
Dan Kenigsberg07716712007-11-21 17:10:04 +02005179 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005180 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005181 goto out;
5182 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005183 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005184 break;
5185 }
5186 case KVM_GET_CPUID2: {
5187 struct kvm_cpuid2 __user *cpuid_arg = argp;
5188 struct kvm_cpuid2 cpuid;
5189
5190 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005191 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005192 goto out;
5193 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005194 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005195 if (r)
5196 goto out;
5197 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005198 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005199 goto out;
5200 r = 0;
5201 break;
5202 }
Tom Lendacky801e4592018-02-21 13:39:51 -06005203 case KVM_GET_MSRS: {
5204 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005205 r = msr_io(vcpu, argp, do_get_msr, 1);
Tom Lendacky801e4592018-02-21 13:39:51 -06005206 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005207 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005208 }
5209 case KVM_SET_MSRS: {
5210 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005211 r = msr_io(vcpu, argp, do_set_msr, 0);
Tom Lendacky801e4592018-02-21 13:39:51 -06005212 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005213 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005214 }
Avi Kivityb209749f2007-10-22 16:50:39 +02005215 case KVM_TPR_ACCESS_REPORTING: {
5216 struct kvm_tpr_access_ctl tac;
5217
5218 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005219 if (copy_from_user(&tac, argp, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005220 goto out;
5221 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
5222 if (r)
5223 goto out;
5224 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005225 if (copy_to_user(argp, &tac, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005226 goto out;
5227 r = 0;
5228 break;
5229 };
Avi Kivityb93463a2007-10-25 16:52:32 +02005230 case KVM_SET_VAPIC_ADDR: {
5231 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005232 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02005233
5234 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005235 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02005236 goto out;
5237 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005238 if (copy_from_user(&va, argp, sizeof(va)))
Avi Kivityb93463a2007-10-25 16:52:32 +02005239 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005240 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08005241 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005242 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02005243 break;
5244 }
Huang Ying890ca9a2009-05-11 16:48:15 +08005245 case KVM_X86_SETUP_MCE: {
5246 u64 mcg_cap;
5247
5248 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005249 if (copy_from_user(&mcg_cap, argp, sizeof(mcg_cap)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005250 goto out;
5251 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
5252 break;
5253 }
5254 case KVM_X86_SET_MCE: {
5255 struct kvm_x86_mce mce;
5256
5257 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005258 if (copy_from_user(&mce, argp, sizeof(mce)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005259 goto out;
5260 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
5261 break;
5262 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005263 case KVM_GET_VCPU_EVENTS: {
5264 struct kvm_vcpu_events events;
5265
5266 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
5267
5268 r = -EFAULT;
5269 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
5270 break;
5271 r = 0;
5272 break;
5273 }
5274 case KVM_SET_VCPU_EVENTS: {
5275 struct kvm_vcpu_events events;
5276
5277 r = -EFAULT;
5278 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
5279 break;
5280
5281 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
5282 break;
5283 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01005284 case KVM_GET_DEBUGREGS: {
5285 struct kvm_debugregs dbgregs;
5286
5287 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
5288
5289 r = -EFAULT;
5290 if (copy_to_user(argp, &dbgregs,
5291 sizeof(struct kvm_debugregs)))
5292 break;
5293 r = 0;
5294 break;
5295 }
5296 case KVM_SET_DEBUGREGS: {
5297 struct kvm_debugregs dbgregs;
5298
5299 r = -EFAULT;
5300 if (copy_from_user(&dbgregs, argp,
5301 sizeof(struct kvm_debugregs)))
5302 break;
5303
5304 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
5305 break;
5306 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005307 case KVM_GET_XSAVE: {
Ben Gardon254272c2019-02-11 11:02:50 -08005308 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005309 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005310 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005311 break;
5312
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005313 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005314
5315 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005316 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005317 break;
5318 r = 0;
5319 break;
5320 }
5321 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005322 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005323 if (IS_ERR(u.xsave)) {
5324 r = PTR_ERR(u.xsave);
5325 goto out_nofree;
5326 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005327
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005328 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005329 break;
5330 }
5331 case KVM_GET_XCRS: {
Ben Gardon254272c2019-02-11 11:02:50 -08005332 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005333 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005334 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005335 break;
5336
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005337 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005338
5339 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005340 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005341 sizeof(struct kvm_xcrs)))
5342 break;
5343 r = 0;
5344 break;
5345 }
5346 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005347 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005348 if (IS_ERR(u.xcrs)) {
5349 r = PTR_ERR(u.xcrs);
5350 goto out_nofree;
5351 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005352
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005353 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005354 break;
5355 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01005356 case KVM_SET_TSC_KHZ: {
5357 u32 user_tsc_khz;
5358
5359 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005360 user_tsc_khz = (u32)arg;
5361
Marcelo Tosatti26769f92020-06-16 08:47:41 -03005362 if (kvm_has_tsc_control &&
5363 user_tsc_khz >= kvm_max_guest_tsc_khz)
Joerg Roedel92a1f122011-03-25 09:44:51 +01005364 goto out;
5365
Zachary Amsdencc578282012-02-03 15:43:50 -02005366 if (user_tsc_khz == 0)
5367 user_tsc_khz = tsc_khz;
5368
Haozhong Zhang381d5852015-10-20 15:39:04 +08005369 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
5370 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005371
Joerg Roedel92a1f122011-03-25 09:44:51 +01005372 goto out;
5373 }
5374 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02005375 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005376 goto out;
5377 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005378 case KVM_KVMCLOCK_CTRL: {
5379 r = kvm_set_guest_paused(vcpu);
5380 goto out;
5381 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005382 case KVM_ENABLE_CAP: {
5383 struct kvm_enable_cap cap;
5384
5385 r = -EFAULT;
5386 if (copy_from_user(&cap, argp, sizeof(cap)))
5387 goto out;
5388 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
5389 break;
5390 }
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005391 case KVM_GET_NESTED_STATE: {
5392 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5393 u32 user_data_size;
5394
5395 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005396 if (!kvm_x86_ops.nested_ops->get_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005397 break;
5398
5399 BUILD_BUG_ON(sizeof(user_data_size) != sizeof(user_kvm_nested_state->size));
Liran Alon26b471c2018-09-16 14:28:20 +03005400 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005401 if (get_user(user_data_size, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005402 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005403
Paolo Bonzini33b22172020-04-17 10:24:18 -04005404 r = kvm_x86_ops.nested_ops->get_state(vcpu, user_kvm_nested_state,
5405 user_data_size);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005406 if (r < 0)
Liran Alon26b471c2018-09-16 14:28:20 +03005407 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005408
5409 if (r > user_data_size) {
5410 if (put_user(r, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005411 r = -EFAULT;
5412 else
5413 r = -E2BIG;
5414 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005415 }
Liran Alon26b471c2018-09-16 14:28:20 +03005416
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005417 r = 0;
5418 break;
5419 }
5420 case KVM_SET_NESTED_STATE: {
5421 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5422 struct kvm_nested_state kvm_state;
Sean Christophersonad5996d2019-11-22 08:58:18 -08005423 int idx;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005424
5425 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005426 if (!kvm_x86_ops.nested_ops->set_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005427 break;
5428
Liran Alon26b471c2018-09-16 14:28:20 +03005429 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005430 if (copy_from_user(&kvm_state, user_kvm_nested_state, sizeof(kvm_state)))
Liran Alon26b471c2018-09-16 14:28:20 +03005431 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005432
Liran Alon26b471c2018-09-16 14:28:20 +03005433 r = -EINVAL;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005434 if (kvm_state.size < sizeof(kvm_state))
Liran Alon26b471c2018-09-16 14:28:20 +03005435 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005436
5437 if (kvm_state.flags &
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005438 ~(KVM_STATE_NESTED_RUN_PENDING | KVM_STATE_NESTED_GUEST_MODE
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04005439 | KVM_STATE_NESTED_EVMCS | KVM_STATE_NESTED_MTF_PENDING
5440 | KVM_STATE_NESTED_GIF_SET))
Liran Alon26b471c2018-09-16 14:28:20 +03005441 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005442
5443 /* nested_run_pending implies guest_mode. */
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005444 if ((kvm_state.flags & KVM_STATE_NESTED_RUN_PENDING)
5445 && !(kvm_state.flags & KVM_STATE_NESTED_GUEST_MODE))
Liran Alon26b471c2018-09-16 14:28:20 +03005446 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005447
Sean Christophersonad5996d2019-11-22 08:58:18 -08005448 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini33b22172020-04-17 10:24:18 -04005449 r = kvm_x86_ops.nested_ops->set_state(vcpu, user_kvm_nested_state, &kvm_state);
Sean Christophersonad5996d2019-11-22 08:58:18 -08005450 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005451 break;
5452 }
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02005453 case KVM_GET_SUPPORTED_HV_CPUID:
5454 r = kvm_ioctl_get_supported_hv_cpuid(vcpu, argp);
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01005455 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005456#ifdef CONFIG_KVM_XEN
David Woodhouse3e324612021-02-02 16:53:25 +00005457 case KVM_XEN_VCPU_GET_ATTR: {
5458 struct kvm_xen_vcpu_attr xva;
5459
5460 r = -EFAULT;
5461 if (copy_from_user(&xva, argp, sizeof(xva)))
5462 goto out;
5463 r = kvm_xen_vcpu_get_attr(vcpu, &xva);
5464 if (!r && copy_to_user(argp, &xva, sizeof(xva)))
5465 r = -EFAULT;
5466 break;
5467 }
5468 case KVM_XEN_VCPU_SET_ATTR: {
5469 struct kvm_xen_vcpu_attr xva;
5470
5471 r = -EFAULT;
5472 if (copy_from_user(&xva, argp, sizeof(xva)))
5473 goto out;
5474 r = kvm_xen_vcpu_set_attr(vcpu, &xva);
5475 break;
5476 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005477#endif
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005478 case KVM_GET_SREGS2: {
5479 u.sregs2 = kzalloc(sizeof(struct kvm_sregs2), GFP_KERNEL);
5480 r = -ENOMEM;
5481 if (!u.sregs2)
5482 goto out;
5483 __get_sregs2(vcpu, u.sregs2);
5484 r = -EFAULT;
5485 if (copy_to_user(argp, u.sregs2, sizeof(struct kvm_sregs2)))
5486 goto out;
5487 r = 0;
5488 break;
5489 }
5490 case KVM_SET_SREGS2: {
5491 u.sregs2 = memdup_user(argp, sizeof(struct kvm_sregs2));
5492 if (IS_ERR(u.sregs2)) {
5493 r = PTR_ERR(u.sregs2);
5494 u.sregs2 = NULL;
5495 goto out;
5496 }
5497 r = __set_sregs2(vcpu, u.sregs2);
5498 break;
5499 }
Oliver Upton828ca892021-09-16 18:15:38 +00005500 case KVM_HAS_DEVICE_ATTR:
5501 case KVM_GET_DEVICE_ATTR:
5502 case KVM_SET_DEVICE_ATTR:
5503 r = kvm_vcpu_ioctl_device_attr(vcpu, ioctl, argp);
5504 break;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005505 default:
5506 r = -EINVAL;
5507 }
5508out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005509 kfree(u.buffer);
Christoffer Dall9b0624712017-12-04 21:35:36 +01005510out_nofree:
5511 vcpu_put(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005512 return r;
5513}
5514
Souptick Joarder1499fa82018-04-19 00:49:58 +05305515vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
Carsten Otte5b1c1492012-01-04 10:25:23 +01005516{
5517 return VM_FAULT_SIGBUS;
5518}
5519
Carsten Otte1fe779f2007-10-29 16:08:35 +01005520static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
5521{
5522 int ret;
5523
5524 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08005525 return -EINVAL;
Jason Baronb36464772021-01-14 22:27:56 -05005526 ret = static_call(kvm_x86_set_tss_addr)(kvm, addr);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005527 return ret;
5528}
5529
Sheng Yangb927a3c2009-07-21 10:42:48 +08005530static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
5531 u64 ident_addr)
5532{
Jason Baronb36464772021-01-14 22:27:56 -05005533 return static_call(kvm_x86_set_identity_map_addr)(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005534}
5535
Carsten Otte1fe779f2007-10-29 16:08:35 +01005536static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005537 unsigned long kvm_nr_mmu_pages)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005538{
5539 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
5540 return -EINVAL;
5541
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005542 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005543
5544 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08005545 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005546
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005547 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005548 return 0;
5549}
5550
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005551static unsigned long kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005552{
Dave Hansen39de71e2010-08-19 18:11:14 -07005553 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005554}
5555
Carsten Otte1fe779f2007-10-29 16:08:35 +01005556static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5557{
David Hildenbrand90bca052017-04-07 10:50:23 +02005558 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005559 int r;
5560
5561 r = 0;
5562 switch (chip->chip_id) {
5563 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005564 memcpy(&chip->chip.pic, &pic->pics[0],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005565 sizeof(struct kvm_pic_state));
5566 break;
5567 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005568 memcpy(&chip->chip.pic, &pic->pics[1],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005569 sizeof(struct kvm_pic_state));
5570 break;
5571 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005572 kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005573 break;
5574 default:
5575 r = -EINVAL;
5576 break;
5577 }
5578 return r;
5579}
5580
5581static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5582{
David Hildenbrand90bca052017-04-07 10:50:23 +02005583 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005584 int r;
5585
5586 r = 0;
5587 switch (chip->chip_id) {
5588 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005589 spin_lock(&pic->lock);
5590 memcpy(&pic->pics[0], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005591 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005592 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005593 break;
5594 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005595 spin_lock(&pic->lock);
5596 memcpy(&pic->pics[1], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005597 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005598 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005599 break;
5600 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005601 kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005602 break;
5603 default:
5604 r = -EINVAL;
5605 break;
5606 }
David Hildenbrand90bca052017-04-07 10:50:23 +02005607 kvm_pic_update_irq(pic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005608 return r;
5609}
5610
Sheng Yange0f63cb2008-03-04 00:50:59 +08005611static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5612{
Radim Krčmář34f39412016-03-02 22:56:50 +01005613 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
5614
5615 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
5616
5617 mutex_lock(&kps->lock);
5618 memcpy(ps, &kps->channels, sizeof(*ps));
5619 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305620 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005621}
5622
5623static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5624{
Andrew Honig01856042015-11-18 14:50:23 -08005625 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01005626 struct kvm_pit *pit = kvm->arch.vpit;
5627
5628 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01005629 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08005630 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005631 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
5632 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305633 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005634}
5635
5636static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5637{
Beth Kone9f42752009-07-07 11:50:38 -04005638 mutex_lock(&kvm->arch.vpit->pit_state.lock);
5639 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
5640 sizeof(ps->channels));
5641 ps->flags = kvm->arch.vpit->pit_state.flags;
5642 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04005643 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305644 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005645}
5646
5647static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5648{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305649 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08005650 int i;
Beth Kone9f42752009-07-07 11:50:38 -04005651 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01005652 struct kvm_pit *pit = kvm->arch.vpit;
5653
5654 mutex_lock(&pit->pit_state.lock);
5655 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04005656 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
5657 if (!prev_legacy && cur_legacy)
5658 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01005659 memcpy(&pit->pit_state.channels, &ps->channels,
5660 sizeof(pit->pit_state.channels));
5661 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08005662 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005663 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01005664 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01005665 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305666 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005667}
5668
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005669static int kvm_vm_ioctl_reinject(struct kvm *kvm,
5670 struct kvm_reinject_control *control)
5671{
Radim Krčmář71474e22016-03-02 22:56:45 +01005672 struct kvm_pit *pit = kvm->arch.vpit;
5673
Radim Krčmář71474e22016-03-02 22:56:45 +01005674 /* pit->pit_state.lock was overloaded to prevent userspace from getting
5675 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
5676 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
5677 */
5678 mutex_lock(&pit->pit_state.lock);
5679 kvm_pit_set_reinject(pit, control->pit_reinject);
5680 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01005681
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005682 return 0;
5683}
5684
Sean Christopherson0dff0842020-02-18 13:07:29 -08005685void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005686{
Sean Christophersona018eba2021-02-12 16:50:10 -08005687
Kai Huang88178fd2015-01-28 10:54:27 +08005688 /*
Sean Christophersona018eba2021-02-12 16:50:10 -08005689 * Flush all CPUs' dirty log buffers to the dirty_bitmap. Called
5690 * before reporting dirty_bitmap to userspace. KVM flushes the buffers
5691 * on all VM-Exits, thus we only need to kick running vCPUs to force a
5692 * VM-Exit.
Kai Huang88178fd2015-01-28 10:54:27 +08005693 */
Sean Christophersona018eba2021-02-12 16:50:10 -08005694 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00005695 unsigned long i;
Sean Christophersona018eba2021-02-12 16:50:10 -08005696
5697 kvm_for_each_vcpu(i, vcpu, kvm)
5698 kvm_vcpu_kick(vcpu);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005699}
5700
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005701int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
5702 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005703{
5704 if (!irqchip_in_kernel(kvm))
5705 return -ENXIO;
5706
5707 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005708 irq_event->irq, irq_event->level,
5709 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005710 return 0;
5711}
5712
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01005713int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
5714 struct kvm_enable_cap *cap)
Nadav Amit90de4a12015-04-13 01:53:41 +03005715{
5716 int r;
5717
5718 if (cap->flags)
5719 return -EINVAL;
5720
5721 switch (cap->cap) {
5722 case KVM_CAP_DISABLE_QUIRKS:
5723 kvm->arch.disabled_quirks = cap->args[0];
5724 r = 0;
5725 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07005726 case KVM_CAP_SPLIT_IRQCHIP: {
5727 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005728 r = -EINVAL;
5729 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
5730 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07005731 r = -EEXIST;
5732 if (irqchip_in_kernel(kvm))
5733 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005734 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07005735 goto split_irqchip_unlock;
5736 r = kvm_setup_empty_irq_routing(kvm);
David Hildenbrand5c0aea02017-04-28 17:06:20 +02005737 if (r)
Steve Rutherford49df6392015-07-29 23:21:40 -07005738 goto split_irqchip_unlock;
5739 /* Pairs with irqchip_in_kernel. */
5740 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005741 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005742 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05005743 kvm_request_apicv_update(kvm, true, APICV_INHIBIT_REASON_ABSENT);
Steve Rutherford49df6392015-07-29 23:21:40 -07005744 r = 0;
5745split_irqchip_unlock:
5746 mutex_unlock(&kvm->lock);
5747 break;
5748 }
Radim Krčmář371313132016-07-12 22:09:27 +02005749 case KVM_CAP_X2APIC_API:
5750 r = -EINVAL;
5751 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
5752 break;
5753
5754 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
5755 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02005756 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
5757 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02005758
5759 r = 0;
5760 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005761 case KVM_CAP_X86_DISABLE_EXITS:
5762 r = -EINVAL;
5763 if (cap->args[0] & ~KVM_X86_DISABLE_VALID_EXITS)
5764 break;
5765
5766 if ((cap->args[0] & KVM_X86_DISABLE_EXITS_MWAIT) &&
5767 kvm_can_mwait_in_guest())
5768 kvm->arch.mwait_in_guest = true;
Michael S. Tsirkin766d3572018-06-08 02:19:53 +03005769 if (cap->args[0] & KVM_X86_DISABLE_EXITS_HLT)
Wanpeng Licaa057a2018-03-12 04:53:03 -07005770 kvm->arch.hlt_in_guest = true;
Wanpeng Lib31c1142018-03-12 04:53:04 -07005771 if (cap->args[0] & KVM_X86_DISABLE_EXITS_PAUSE)
5772 kvm->arch.pause_in_guest = true;
Wanpeng Lib5170062019-05-21 14:06:53 +08005773 if (cap->args[0] & KVM_X86_DISABLE_EXITS_CSTATE)
5774 kvm->arch.cstate_in_guest = true;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005775 r = 0;
5776 break;
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005777 case KVM_CAP_MSR_PLATFORM_INFO:
5778 kvm->arch.guest_can_read_msr_platform_info = cap->args[0];
5779 r = 0;
5780 break;
Jim Mattsonc4f55192018-10-16 14:29:24 -07005781 case KVM_CAP_EXCEPTION_PAYLOAD:
5782 kvm->arch.exception_payload_enabled = cap->args[0];
5783 r = 0;
5784 break;
Alexander Graf1ae09952020-09-25 16:34:16 +02005785 case KVM_CAP_X86_USER_SPACE_MSR:
5786 kvm->arch.user_space_msr_mask = cap->args[0];
5787 r = 0;
5788 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005789 case KVM_CAP_X86_BUS_LOCK_EXIT:
5790 r = -EINVAL;
5791 if (cap->args[0] & ~KVM_BUS_LOCK_DETECTION_VALID_MODE)
5792 break;
5793
5794 if ((cap->args[0] & KVM_BUS_LOCK_DETECTION_OFF) &&
5795 (cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT))
5796 break;
5797
5798 if (kvm_has_bus_lock_exit &&
5799 cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT)
5800 kvm->arch.bus_lock_detection_enabled = true;
5801 r = 0;
5802 break;
Sean Christophersonfe7e9482021-04-12 16:21:43 +12005803#ifdef CONFIG_X86_SGX_KVM
5804 case KVM_CAP_SGX_ATTRIBUTE: {
5805 unsigned long allowed_attributes = 0;
5806
5807 r = sgx_set_attribute(&allowed_attributes, cap->args[0]);
5808 if (r)
5809 break;
5810
5811 /* KVM only supports the PROVISIONKEY privileged attribute. */
5812 if ((allowed_attributes & SGX_ATTR_PROVISIONKEY) &&
5813 !(allowed_attributes & ~SGX_ATTR_PROVISIONKEY))
5814 kvm->arch.sgx_provisioning_allowed = true;
5815 else
5816 r = -EINVAL;
5817 break;
5818 }
5819#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00005820 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
5821 r = -EINVAL;
5822 if (kvm_x86_ops.vm_copy_enc_context_from)
5823 r = kvm_x86_ops.vm_copy_enc_context_from(kvm, cap->args[0]);
5824 return r;
Peter Gondab5663932021-10-21 10:43:00 -07005825 case KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM:
5826 r = -EINVAL;
5827 if (kvm_x86_ops.vm_move_enc_context_from)
5828 r = kvm_x86_ops.vm_move_enc_context_from(
5829 kvm, cap->args[0]);
5830 return r;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00005831 case KVM_CAP_EXIT_HYPERCALL:
5832 if (cap->args[0] & ~KVM_EXIT_HYPERCALL_VALID_MASK) {
5833 r = -EINVAL;
5834 break;
5835 }
5836 kvm->arch.hypercall_exit_enabled = cap->args[0];
5837 r = 0;
5838 break;
Aaron Lewis19238e72021-05-10 07:48:33 -07005839 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
5840 r = -EINVAL;
5841 if (cap->args[0] & ~1)
5842 break;
5843 kvm->arch.exit_on_emulation_error = cap->args[0];
5844 r = 0;
5845 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03005846 default:
5847 r = -EINVAL;
5848 break;
5849 }
5850 return r;
5851}
5852
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005853static struct kvm_x86_msr_filter *kvm_alloc_msr_filter(bool default_allow)
Alexander Graf1a1552542020-09-25 16:34:21 +02005854{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005855 struct kvm_x86_msr_filter *msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005856
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005857 msr_filter = kzalloc(sizeof(*msr_filter), GFP_KERNEL_ACCOUNT);
5858 if (!msr_filter)
5859 return NULL;
Alexander Graf1a1552542020-09-25 16:34:21 +02005860
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005861 msr_filter->default_allow = default_allow;
5862 return msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005863}
5864
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005865static void kvm_free_msr_filter(struct kvm_x86_msr_filter *msr_filter)
Alexander Graf1a1552542020-09-25 16:34:21 +02005866{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005867 u32 i;
5868
5869 if (!msr_filter)
5870 return;
5871
5872 for (i = 0; i < msr_filter->count; i++)
5873 kfree(msr_filter->ranges[i].bitmap);
5874
5875 kfree(msr_filter);
5876}
5877
5878static int kvm_add_msr_filter(struct kvm_x86_msr_filter *msr_filter,
5879 struct kvm_msr_filter_range *user_range)
5880{
Alexander Graf1a1552542020-09-25 16:34:21 +02005881 unsigned long *bitmap = NULL;
5882 size_t bitmap_size;
Alexander Graf1a1552542020-09-25 16:34:21 +02005883
5884 if (!user_range->nmsrs)
5885 return 0;
5886
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005887 if (user_range->flags & ~(KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE))
5888 return -EINVAL;
5889
5890 if (!user_range->flags)
5891 return -EINVAL;
5892
Alexander Graf1a1552542020-09-25 16:34:21 +02005893 bitmap_size = BITS_TO_LONGS(user_range->nmsrs) * sizeof(long);
5894 if (!bitmap_size || bitmap_size > KVM_MSR_FILTER_MAX_BITMAP_SIZE)
5895 return -EINVAL;
5896
5897 bitmap = memdup_user((__user u8*)user_range->bitmap, bitmap_size);
5898 if (IS_ERR(bitmap))
5899 return PTR_ERR(bitmap);
5900
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005901 msr_filter->ranges[msr_filter->count] = (struct msr_bitmap_range) {
Alexander Graf1a1552542020-09-25 16:34:21 +02005902 .flags = user_range->flags,
5903 .base = user_range->base,
5904 .nmsrs = user_range->nmsrs,
5905 .bitmap = bitmap,
5906 };
5907
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005908 msr_filter->count++;
Alexander Graf1a1552542020-09-25 16:34:21 +02005909 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005910}
5911
5912static int kvm_vm_ioctl_set_msr_filter(struct kvm *kvm, void __user *argp)
5913{
5914 struct kvm_msr_filter __user *user_msr_filter = argp;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005915 struct kvm_x86_msr_filter *new_filter, *old_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005916 struct kvm_msr_filter filter;
5917 bool default_allow;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005918 bool empty = true;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005919 int r = 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005920 u32 i;
5921
5922 if (copy_from_user(&filter, user_msr_filter, sizeof(filter)))
5923 return -EFAULT;
5924
Paolo Bonzini043248b2020-10-20 10:57:01 -04005925 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++)
5926 empty &= !filter.ranges[i].nmsrs;
Alexander Graf1a1552542020-09-25 16:34:21 +02005927
5928 default_allow = !(filter.flags & KVM_MSR_FILTER_DEFAULT_DENY);
Paolo Bonzini043248b2020-10-20 10:57:01 -04005929 if (empty && !default_allow)
5930 return -EINVAL;
5931
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005932 new_filter = kvm_alloc_msr_filter(default_allow);
5933 if (!new_filter)
5934 return -ENOMEM;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005935
Alexander Graf1a1552542020-09-25 16:34:21 +02005936 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005937 r = kvm_add_msr_filter(new_filter, &filter.ranges[i]);
5938 if (r) {
5939 kvm_free_msr_filter(new_filter);
5940 return r;
5941 }
Alexander Graf1a1552542020-09-25 16:34:21 +02005942 }
5943
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005944 mutex_lock(&kvm->lock);
5945
5946 /* The per-VM filter is protected by kvm->lock... */
5947 old_filter = srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1);
5948
5949 rcu_assign_pointer(kvm->arch.msr_filter, new_filter);
5950 synchronize_srcu(&kvm->srcu);
5951
5952 kvm_free_msr_filter(old_filter);
5953
Alexander Graf1a1552542020-09-25 16:34:21 +02005954 kvm_make_all_cpus_request(kvm, KVM_REQ_MSR_FILTER_CHANGED);
5955 mutex_unlock(&kvm->lock);
5956
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005957 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005958}
5959
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09005960#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
5961static int kvm_arch_suspend_notifier(struct kvm *kvm)
5962{
5963 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00005964 unsigned long i;
5965 int ret = 0;
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09005966
5967 mutex_lock(&kvm->lock);
5968 kvm_for_each_vcpu(i, vcpu, kvm) {
5969 if (!vcpu->arch.pv_time_enabled)
5970 continue;
5971
5972 ret = kvm_set_guest_paused(vcpu);
5973 if (ret) {
5974 kvm_err("Failed to pause guest VCPU%d: %d\n",
5975 vcpu->vcpu_id, ret);
5976 break;
5977 }
5978 }
5979 mutex_unlock(&kvm->lock);
5980
5981 return ret ? NOTIFY_BAD : NOTIFY_DONE;
5982}
5983
5984int kvm_arch_pm_notifier(struct kvm *kvm, unsigned long state)
5985{
5986 switch (state) {
5987 case PM_HIBERNATION_PREPARE:
5988 case PM_SUSPEND_PREPARE:
5989 return kvm_arch_suspend_notifier(kvm);
5990 }
5991
5992 return NOTIFY_DONE;
5993}
5994#endif /* CONFIG_HAVE_KVM_PM_NOTIFIER */
5995
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00005996static int kvm_vm_ioctl_get_clock(struct kvm *kvm, void __user *argp)
5997{
Paolo Bonzini869b4422021-09-16 18:15:36 +00005998 struct kvm_clock_data data = { 0 };
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00005999
Oliver Upton55c0cef2021-09-16 18:15:34 +00006000 get_kvmclock(kvm, &data);
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006001 if (copy_to_user(argp, &data, sizeof(data)))
6002 return -EFAULT;
6003
6004 return 0;
6005}
6006
6007static int kvm_vm_ioctl_set_clock(struct kvm *kvm, void __user *argp)
6008{
6009 struct kvm_arch *ka = &kvm->arch;
6010 struct kvm_clock_data data;
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006011 u64 now_raw_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006012
6013 if (copy_from_user(&data, argp, sizeof(data)))
6014 return -EFAULT;
6015
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006016 /*
6017 * Only KVM_CLOCK_REALTIME is used, but allow passing the
6018 * result of KVM_GET_CLOCK back to KVM_SET_CLOCK.
6019 */
6020 if (data.flags & ~KVM_CLOCK_VALID_FLAGS)
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006021 return -EINVAL;
6022
6023 kvm_hv_invalidate_tsc_page(kvm);
6024 kvm_start_pvclock_update(kvm);
6025 pvclock_update_vm_gtod_copy(kvm);
6026
6027 /*
6028 * This pairs with kvm_guest_time_update(): when masterclock is
6029 * in use, we use master_kernel_ns + kvmclock_offset to set
6030 * unsigned 'system_time' so if we use get_kvmclock_ns() (which
6031 * is slightly ahead) here we risk going negative on unsigned
6032 * 'system_time' when 'data.clock' is very small.
6033 */
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006034 if (data.flags & KVM_CLOCK_REALTIME) {
6035 u64 now_real_ns = ktime_get_real_ns();
6036
6037 /*
6038 * Avoid stepping the kvmclock backwards.
6039 */
6040 if (now_real_ns > data.realtime)
6041 data.clock += now_real_ns - data.realtime;
6042 }
6043
6044 if (ka->use_master_clock)
6045 now_raw_ns = ka->master_kernel_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006046 else
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006047 now_raw_ns = get_kvmclock_base_ns();
6048 ka->kvmclock_offset = data.clock - now_raw_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006049 kvm_end_pvclock_update(kvm);
6050 return 0;
6051}
6052
Carsten Otte1fe779f2007-10-29 16:08:35 +01006053long kvm_arch_vm_ioctl(struct file *filp,
6054 unsigned int ioctl, unsigned long arg)
6055{
6056 struct kvm *kvm = filp->private_data;
6057 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03006058 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07006059 /*
6060 * This union makes it completely explicit to gcc-3.x
6061 * that these two variables' stack usage should be
6062 * combined, not added together.
6063 */
6064 union {
6065 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04006066 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006067 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07006068 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006069
6070 switch (ioctl) {
6071 case KVM_SET_TSS_ADDR:
6072 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006073 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006074 case KVM_SET_IDENTITY_MAP_ADDR: {
6075 u64 ident_addr;
6076
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006077 mutex_lock(&kvm->lock);
6078 r = -EINVAL;
6079 if (kvm->created_vcpus)
6080 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006081 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006082 if (copy_from_user(&ident_addr, argp, sizeof(ident_addr)))
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006083 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006084 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006085set_identity_unlock:
6086 mutex_unlock(&kvm->lock);
Sheng Yangb927a3c2009-07-21 10:42:48 +08006087 break;
6088 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01006089 case KVM_SET_NR_MMU_PAGES:
6090 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006091 break;
6092 case KVM_GET_NR_MMU_PAGES:
6093 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
6094 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006095 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006096 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01006097
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006098 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01006099 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006100 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006101
Avi Kivity3e515702012-03-05 14:23:29 +02006102 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02006103 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02006104 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006105
6106 r = kvm_pic_init(kvm);
6107 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006108 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006109
6110 r = kvm_ioapic_init(kvm);
6111 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01006112 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01006113 goto create_irqchip_unlock;
6114 }
6115
Avi Kivity399ec802008-11-19 13:58:46 +02006116 r = kvm_setup_default_irq_routing(kvm);
6117 if (r) {
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08006118 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01006119 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02006120 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02006121 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01006122 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02006123 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01006124 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05006125 kvm_request_apicv_update(kvm, true, APICV_INHIBIT_REASON_ABSENT);
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006126 create_irqchip_unlock:
6127 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006128 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006129 }
Sheng Yang78376992008-01-28 05:10:22 +08006130 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006131 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
6132 goto create_pit;
6133 case KVM_CREATE_PIT2:
6134 r = -EFAULT;
6135 if (copy_from_user(&u.pit_config, argp,
6136 sizeof(struct kvm_pit_config)))
6137 goto out;
6138 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02006139 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02006140 r = -EEXIST;
6141 if (kvm->arch.vpit)
6142 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08006143 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006144 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08006145 if (kvm->arch.vpit)
6146 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02006147 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02006148 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08006149 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006150 case KVM_GET_IRQCHIP: {
6151 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02006152 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006153
Sasha Levinff5c2c02011-12-04 19:36:29 +02006154 chip = memdup_user(argp, sizeof(*chip));
6155 if (IS_ERR(chip)) {
6156 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006157 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02006158 }
6159
Carsten Otte1fe779f2007-10-29 16:08:35 +01006160 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01006161 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07006162 goto get_irqchip_out;
6163 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
6164 if (r)
6165 goto get_irqchip_out;
6166 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006167 if (copy_to_user(argp, chip, sizeof(*chip)))
Dave Hansenf0d66272008-08-11 10:01:45 -07006168 goto get_irqchip_out;
6169 r = 0;
6170 get_irqchip_out:
6171 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006172 break;
6173 }
6174 case KVM_SET_IRQCHIP: {
6175 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02006176 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006177
Sasha Levinff5c2c02011-12-04 19:36:29 +02006178 chip = memdup_user(argp, sizeof(*chip));
6179 if (IS_ERR(chip)) {
6180 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006181 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02006182 }
6183
Carsten Otte1fe779f2007-10-29 16:08:35 +01006184 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01006185 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07006186 goto set_irqchip_out;
6187 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
Dave Hansenf0d66272008-08-11 10:01:45 -07006188 set_irqchip_out:
6189 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006190 break;
6191 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08006192 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08006193 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07006194 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006195 goto out;
6196 r = -ENXIO;
6197 if (!kvm->arch.vpit)
6198 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07006199 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006200 if (r)
6201 goto out;
6202 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07006203 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006204 goto out;
6205 r = 0;
6206 break;
6207 }
6208 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08006209 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006210 if (copy_from_user(&u.ps, argp, sizeof(u.ps)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006211 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006212 mutex_lock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006213 r = -ENXIO;
6214 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006215 goto set_pit_out;
Dave Hansenf0d66272008-08-11 10:01:45 -07006216 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006217set_pit_out:
6218 mutex_unlock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006219 break;
6220 }
Beth Kone9f42752009-07-07 11:50:38 -04006221 case KVM_GET_PIT2: {
6222 r = -ENXIO;
6223 if (!kvm->arch.vpit)
6224 goto out;
6225 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
6226 if (r)
6227 goto out;
6228 r = -EFAULT;
6229 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
6230 goto out;
6231 r = 0;
6232 break;
6233 }
6234 case KVM_SET_PIT2: {
6235 r = -EFAULT;
6236 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
6237 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006238 mutex_lock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006239 r = -ENXIO;
6240 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006241 goto set_pit2_out;
Beth Kone9f42752009-07-07 11:50:38 -04006242 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006243set_pit2_out:
6244 mutex_unlock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006245 break;
6246 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006247 case KVM_REINJECT_CONTROL: {
6248 struct kvm_reinject_control control;
6249 r = -EFAULT;
6250 if (copy_from_user(&control, argp, sizeof(control)))
6251 goto out;
Miaohe Lincad23e72019-12-07 17:25:22 +08006252 r = -ENXIO;
6253 if (!kvm->arch.vpit)
6254 goto out;
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006255 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006256 break;
6257 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006258 case KVM_SET_BOOT_CPU_ID:
6259 r = 0;
6260 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02006261 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006262 r = -EBUSY;
6263 else
6264 kvm->arch.bsp_vcpu_id = arg;
6265 mutex_unlock(&kvm->lock);
6266 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006267#ifdef CONFIG_KVM_XEN
Ed Swierkffde22a2009-10-15 15:21:43 -07006268 case KVM_XEN_HVM_CONFIG: {
Paolo Bonzini51776042017-10-26 15:45:47 +02006269 struct kvm_xen_hvm_config xhc;
Ed Swierkffde22a2009-10-15 15:21:43 -07006270 r = -EFAULT;
Paolo Bonzini51776042017-10-26 15:45:47 +02006271 if (copy_from_user(&xhc, argp, sizeof(xhc)))
Ed Swierkffde22a2009-10-15 15:21:43 -07006272 goto out;
David Woodhouse78e98782021-02-02 13:19:35 +00006273 r = kvm_xen_hvm_config(kvm, &xhc);
Ed Swierkffde22a2009-10-15 15:21:43 -07006274 break;
6275 }
Joao Martinsa76b9642020-12-03 15:52:25 +00006276 case KVM_XEN_HVM_GET_ATTR: {
6277 struct kvm_xen_hvm_attr xha;
6278
6279 r = -EFAULT;
6280 if (copy_from_user(&xha, argp, sizeof(xha)))
Hannes Edercded19f2009-02-21 02:19:13 +01006281 goto out;
Joao Martinsa76b9642020-12-03 15:52:25 +00006282 r = kvm_xen_hvm_get_attr(kvm, &xha);
6283 if (!r && copy_to_user(argp, &xha, sizeof(xha)))
6284 r = -EFAULT;
6285 break;
6286 }
6287 case KVM_XEN_HVM_SET_ATTR: {
6288 struct kvm_xen_hvm_attr xha;
6289
6290 r = -EFAULT;
6291 if (copy_from_user(&xha, argp, sizeof(xha)))
6292 goto out;
6293 r = kvm_xen_hvm_set_attr(kvm, &xha);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006294 break;
6295 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006296#endif
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006297 case KVM_SET_CLOCK:
6298 r = kvm_vm_ioctl_set_clock(kvm, argp);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006299 break;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006300 case KVM_GET_CLOCK:
6301 r = kvm_vm_ioctl_get_clock(kvm, argp);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006302 break;
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006303 case KVM_MEMORY_ENCRYPT_OP: {
6304 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006305 if (kvm_x86_ops.mem_enc_op)
Jason Baronb36464772021-01-14 22:27:56 -05006306 r = static_call(kvm_x86_mem_enc_op)(kvm, argp);
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006307 break;
6308 }
Brijesh Singh69eaede2017-12-04 10:57:26 -06006309 case KVM_MEMORY_ENCRYPT_REG_REGION: {
6310 struct kvm_enc_region region;
6311
6312 r = -EFAULT;
6313 if (copy_from_user(&region, argp, sizeof(region)))
6314 goto out;
6315
6316 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006317 if (kvm_x86_ops.mem_enc_reg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006318 r = static_call(kvm_x86_mem_enc_reg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006319 break;
6320 }
6321 case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
6322 struct kvm_enc_region region;
6323
6324 r = -EFAULT;
6325 if (copy_from_user(&region, argp, sizeof(region)))
6326 goto out;
6327
6328 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006329 if (kvm_x86_ops.mem_enc_unreg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006330 r = static_call(kvm_x86_mem_enc_unreg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006331 break;
6332 }
Roman Kaganfaeb7832018-02-01 16:48:32 +03006333 case KVM_HYPERV_EVENTFD: {
6334 struct kvm_hyperv_eventfd hvevfd;
6335
6336 r = -EFAULT;
6337 if (copy_from_user(&hvevfd, argp, sizeof(hvevfd)))
6338 goto out;
6339 r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd);
6340 break;
6341 }
Eric Hankland66bb8a02019-07-10 18:25:15 -07006342 case KVM_SET_PMU_EVENT_FILTER:
6343 r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp);
6344 break;
Alexander Graf1a1552542020-09-25 16:34:21 +02006345 case KVM_X86_SET_MSR_FILTER:
6346 r = kvm_vm_ioctl_set_msr_filter(kvm, argp);
6347 break;
Carsten Otte043405e2007-10-10 17:16:19 +02006348 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02006349 r = -ENOTTY;
Carsten Otte043405e2007-10-10 17:16:19 +02006350 }
6351out:
6352 return r;
6353}
6354
6355static void kvm_init_msr_list(void)
6356{
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006357 struct x86_pmu_capability x86_pmu;
Carsten Otte043405e2007-10-10 17:16:19 +02006358 u32 dummy[2];
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006359 unsigned i;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006360
Jim Mattsone2ada662019-08-21 11:20:04 -07006361 BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4,
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006362 "Please update the fixed PMCs in msrs_to_saved_all[]");
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006363
6364 perf_get_x86_pmu_capability(&x86_pmu);
Jim Mattsone2ada662019-08-21 11:20:04 -07006365
Xiaoyao Li6cbee2b2019-11-13 09:15:21 +08006366 num_msrs_to_save = 0;
6367 num_emulated_msrs = 0;
6368 num_msr_based_features = 0;
6369
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006370 for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) {
6371 if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006372 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006373
6374 /*
6375 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006376 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006377 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006378 switch (msrs_to_save_all[i]) {
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006379 case MSR_IA32_BNDCFGS:
Liran Alon503234b2018-09-14 03:25:53 +03006380 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006381 continue;
6382 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006383 case MSR_TSC_AUX:
Sean Christopherson36fa06f2021-05-04 10:17:26 -07006384 if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP) &&
6385 !kvm_cpu_cap_has(X86_FEATURE_RDPID))
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006386 continue;
6387 break;
Maxim Levitskyf4cfcd22020-05-23 19:14:55 +03006388 case MSR_IA32_UMWAIT_CONTROL:
6389 if (!kvm_cpu_cap_has(X86_FEATURE_WAITPKG))
6390 continue;
6391 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08006392 case MSR_IA32_RTIT_CTL:
6393 case MSR_IA32_RTIT_STATUS:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006394 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT))
Chao Pengbf8c55d2018-10-24 16:05:14 +08006395 continue;
6396 break;
6397 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006398 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006399 !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering))
6400 continue;
6401 break;
6402 case MSR_IA32_RTIT_OUTPUT_BASE:
6403 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006404 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006405 (!intel_pt_validate_hw_cap(PT_CAP_topa_output) &&
6406 !intel_pt_validate_hw_cap(PT_CAP_single_range_output)))
6407 continue;
6408 break;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006409 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006410 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006411 msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >=
Chao Pengbf8c55d2018-10-24 16:05:14 +08006412 intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2)
6413 continue;
6414 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006415 case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006416 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006417 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6418 continue;
6419 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006420 case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006421 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006422 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6423 continue;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006424 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006425 default:
6426 break;
6427 }
6428
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006429 msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i];
Carsten Ottebbd9b642007-10-30 18:44:21 +01006430 }
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006431
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006432 for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
Jason Baronb36464772021-01-14 22:27:56 -05006433 if (!static_call(kvm_x86_has_emulated_msr)(NULL, emulated_msrs_all[i]))
Tom Lendackybc226f02018-05-10 22:06:39 +02006434 continue;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006435
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006436 emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006437 }
Tom Lendacky801e4592018-02-21 13:39:51 -06006438
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006439 for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) {
Tom Lendacky801e4592018-02-21 13:39:51 -06006440 struct kvm_msr_entry msr;
6441
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006442 msr.index = msr_based_features_all[i];
Wanpeng Li66421c12018-02-28 14:03:30 +08006443 if (kvm_get_msr_feature(&msr))
Tom Lendacky801e4592018-02-21 13:39:51 -06006444 continue;
6445
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006446 msr_based_features[num_msr_based_features++] = msr_based_features_all[i];
Tom Lendacky801e4592018-02-21 13:39:51 -06006447 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006448}
6449
6450static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
6451 const void *v)
6452{
Avi Kivity70252a12010-01-19 12:51:22 +02006453 int handled = 0;
6454 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006455
Avi Kivity70252a12010-01-19 12:51:22 +02006456 do {
6457 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006458 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006459 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
6460 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006461 break;
6462 handled += n;
6463 addr += n;
6464 len -= n;
6465 v += n;
6466 } while (len);
6467
6468 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006469}
6470
6471static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
6472{
Avi Kivity70252a12010-01-19 12:51:22 +02006473 int handled = 0;
6474 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006475
Avi Kivity70252a12010-01-19 12:51:22 +02006476 do {
6477 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006478 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006479 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
6480 addr, n, v))
6481 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006482 break;
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006483 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v);
Avi Kivity70252a12010-01-19 12:51:22 +02006484 handled += n;
6485 addr += n;
6486 len -= n;
6487 v += n;
6488 } while (len);
6489
6490 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006491}
6492
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006493static void kvm_set_segment(struct kvm_vcpu *vcpu,
6494 struct kvm_segment *var, int seg)
6495{
Jason Baronb36464772021-01-14 22:27:56 -05006496 static_call(kvm_x86_set_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006497}
6498
6499void kvm_get_segment(struct kvm_vcpu *vcpu,
6500 struct kvm_segment *var, int seg)
6501{
Jason Baronb36464772021-01-14 22:27:56 -05006502 static_call(kvm_x86_get_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006503}
6504
Paolo Bonzini54987b72014-09-02 13:23:06 +02006505gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
6506 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006507{
6508 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006509
6510 BUG_ON(!mmu_is_nested(vcpu));
6511
6512 /* NPT walks are always user-walks */
6513 access |= PFERR_USER_MASK;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02006514 t_gpa = vcpu->arch.mmu->gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006515
6516 return t_gpa;
6517}
6518
Avi Kivityab9ae312010-11-22 17:53:26 +02006519gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
6520 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006521{
Jason Baronb36464772021-01-14 22:27:56 -05006522 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02006523 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006524}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006525EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_read);
Gleb Natapov1871c602010-02-10 14:21:32 +02006526
Avi Kivityab9ae312010-11-22 17:53:26 +02006527 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
6528 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006529{
Jason Baronb36464772021-01-14 22:27:56 -05006530 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006531 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02006532 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006533}
6534
Avi Kivityab9ae312010-11-22 17:53:26 +02006535gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
6536 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006537{
Jason Baronb36464772021-01-14 22:27:56 -05006538 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006539 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02006540 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006541}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006542EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_write);
Gleb Natapov1871c602010-02-10 14:21:32 +02006543
6544/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02006545gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
6546 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006547{
Avi Kivityab9ae312010-11-22 17:53:26 +02006548 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006549}
6550
6551static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6552 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006553 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006554{
6555 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006556 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006557
6558 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02006559 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02006560 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006561 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02006562 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006563 int ret;
6564
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006565 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006566 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006567 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
6568 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006569 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006570 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006571 goto out;
6572 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006573
Izik Eidus77c20022008-12-29 01:42:19 +02006574 bytes -= toread;
6575 data += toread;
6576 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006577 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006578out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006579 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006580}
Izik Eidus77c20022008-12-29 01:42:19 +02006581
Gleb Natapov1871c602010-02-10 14:21:32 +02006582/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03006583static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
6584 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006585 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006586{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006587 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Jason Baronb36464772021-01-14 22:27:56 -05006588 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006589 unsigned offset;
6590 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006591
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006592 /* Inline kvm_read_guest_virt_helper for speed. */
6593 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
6594 exception);
6595 if (unlikely(gpa == UNMAPPED_GVA))
6596 return X86EMUL_PROPAGATE_FAULT;
6597
6598 offset = addr & (PAGE_SIZE-1);
6599 if (WARN_ON(offset + bytes > PAGE_SIZE))
6600 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006601 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
6602 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006603 if (unlikely(ret < 0))
6604 return X86EMUL_IO_NEEDED;
6605
6606 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02006607}
6608
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006609int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006610 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006611 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006612{
Jason Baronb36464772021-01-14 22:27:56 -05006613 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006614
Paolo Bonzini353c0952019-01-29 18:41:16 +01006615 /*
6616 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
6617 * is returned, but our callers are not ready for that and they blindly
6618 * call kvm_inject_page_fault. Ensure that they at least do not leak
6619 * uninitialized kernel stack memory into cr2 and error code.
6620 */
6621 memset(exception, 0, sizeof(*exception));
Gleb Natapov1871c602010-02-10 14:21:32 +02006622 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006623 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006624}
Nadav Har'El064aea72011-05-25 23:04:56 +03006625EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02006626
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006627static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
6628 gva_t addr, void *val, unsigned int bytes,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006629 struct x86_exception *exception, bool system)
Gleb Natapov1871c602010-02-10 14:21:32 +02006630{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006631 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006632 u32 access = 0;
6633
Jason Baronb36464772021-01-14 22:27:56 -05006634 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006635 access |= PFERR_USER_MASK;
6636
6637 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006638}
6639
Radim Krčmář7a036a62015-10-30 16:36:24 +01006640static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
6641 unsigned long addr, void *val, unsigned int bytes)
6642{
6643 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6644 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
6645
6646 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
6647}
6648
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006649static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6650 struct kvm_vcpu *vcpu, u32 access,
6651 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02006652{
6653 void *data = val;
6654 int r = X86EMUL_CONTINUE;
6655
6656 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02006657 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006658 access,
Avi Kivityab9ae312010-11-22 17:53:26 +02006659 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02006660 unsigned offset = addr & (PAGE_SIZE-1);
6661 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
6662 int ret;
6663
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006664 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006665 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006666 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02006667 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006668 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02006669 goto out;
6670 }
6671
6672 bytes -= towrite;
6673 data += towrite;
6674 addr += towrite;
6675 }
6676out:
6677 return r;
6678}
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006679
6680static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006681 unsigned int bytes, struct x86_exception *exception,
6682 bool system)
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006683{
6684 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006685 u32 access = PFERR_WRITE_MASK;
6686
Jason Baronb36464772021-01-14 22:27:56 -05006687 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006688 access |= PFERR_USER_MASK;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006689
6690 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006691 access, exception);
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006692}
6693
6694int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val,
6695 unsigned int bytes, struct x86_exception *exception)
6696{
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006697 /* kvm_write_guest_virt_system can pull in tons of pages. */
6698 vcpu->arch.l1tf_flush_l1d = true;
6699
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006700 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
6701 PFERR_WRITE_MASK, exception);
6702}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03006703EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02006704
Wanpeng Li082d06e2018-04-03 16:28:48 -07006705int handle_ud(struct kvm_vcpu *vcpu)
6706{
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006707 static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX };
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006708 int emul_type = EMULTYPE_TRAP_UD;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006709 char sig[5]; /* ud2; .ascii "kvm" */
6710 struct x86_exception e;
Wanpeng Li082d06e2018-04-03 16:28:48 -07006711
Jason Baronb36464772021-01-14 22:27:56 -05006712 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, NULL, 0)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07006713 return 1;
6714
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006715 if (force_emulation_prefix &&
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006716 kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu),
6717 sig, sizeof(sig), &e) == 0 &&
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006718 memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) {
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006719 kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig));
Sean Christophersonb4000602019-08-27 14:40:32 -07006720 emul_type = EMULTYPE_TRAP_UD_FORCED;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006721 }
6722
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006723 return kvm_emulate_instruction(vcpu, emul_type);
Wanpeng Li082d06e2018-04-03 16:28:48 -07006724}
6725EXPORT_SYMBOL_GPL(handle_ud);
6726
Tom Lendacky0f89b202016-12-14 14:59:23 -05006727static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6728 gpa_t gpa, bool write)
6729{
6730 /* For APIC access vmexit */
6731 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6732 return 1;
6733
6734 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
6735 trace_vcpu_match_mmio(gva, gpa, write, true);
6736 return 1;
6737 }
6738
6739 return 0;
6740}
6741
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006742static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6743 gpa_t *gpa, struct x86_exception *exception,
6744 bool write)
6745{
Jason Baronb36464772021-01-14 22:27:56 -05006746 u32 access = ((static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0)
Avi Kivity97d64b72012-09-12 14:52:00 +03006747 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006748
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08006749 /*
6750 * currently PKRU is only applied to ept enabled guest so
6751 * there is no pkey in EPT page table for L1 guest or EPT
6752 * shadow page table for L2 guest.
6753 */
Sean Christopherson908b7d42021-07-13 09:33:04 -07006754 if (vcpu_match_mmio_gva(vcpu, gva) && (!is_paging(vcpu) ||
6755 !permission_fault(vcpu, vcpu->arch.walk_mmu,
6756 vcpu->arch.mmio_access, 0, access))) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006757 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
6758 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08006759 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006760 return 1;
6761 }
6762
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006763 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
6764
6765 if (*gpa == UNMAPPED_GVA)
6766 return -1;
6767
Tom Lendacky0f89b202016-12-14 14:59:23 -05006768 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006769}
6770
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006771int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006772 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02006773{
6774 int ret;
6775
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006776 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006777 if (ret < 0)
6778 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006779 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006780 return 1;
6781}
6782
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006783struct read_write_emulator_ops {
6784 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
6785 int bytes);
6786 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
6787 void *val, int bytes);
6788 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6789 int bytes, void *val);
6790 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6791 void *val, int bytes);
6792 bool write;
6793};
6794
6795static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
6796{
6797 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006798 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006799 vcpu->mmio_fragments[0].gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006800 vcpu->mmio_read_completed = 0;
6801 return 1;
6802 }
6803
6804 return 0;
6805}
6806
6807static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6808 void *val, int bytes)
6809{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006810 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006811}
6812
6813static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6814 void *val, int bytes)
6815{
6816 return emulator_write_phys(vcpu, gpa, val, bytes);
6817}
6818
6819static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
6820{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006821 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006822 return vcpu_mmio_write(vcpu, gpa, bytes, val);
6823}
6824
6825static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6826 void *val, int bytes)
6827{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006828 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006829 return X86EMUL_IO_NEEDED;
6830}
6831
6832static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6833 void *val, int bytes)
6834{
Avi Kivityf78146b2012-04-18 19:22:47 +03006835 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
6836
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006837 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006838 return X86EMUL_CONTINUE;
6839}
6840
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006841static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006842 .read_write_prepare = read_prepare,
6843 .read_write_emulate = read_emulate,
6844 .read_write_mmio = vcpu_mmio_read,
6845 .read_write_exit_mmio = read_exit_mmio,
6846};
6847
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006848static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006849 .read_write_emulate = write_emulate,
6850 .read_write_mmio = write_mmio,
6851 .read_write_exit_mmio = write_exit_mmio,
6852 .write = true,
6853};
6854
Xiao Guangrong22388a32011-07-13 14:32:31 +08006855static int emulator_read_write_onepage(unsigned long addr, void *val,
6856 unsigned int bytes,
6857 struct x86_exception *exception,
6858 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006859 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006860{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006861 gpa_t gpa;
6862 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006863 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03006864 struct kvm_mmio_fragment *frag;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006865 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006866
6867 /*
6868 * If the exit was due to a NPF we may already have a GPA.
6869 * If the GPA is present, use it to avoid the GVA to GPA table walk.
6870 * Note, this cannot be used on string operations since string
6871 * operation using rep will only have the initial GPA from the NPF
6872 * occurred.
6873 */
Sean Christopherson744e6992020-02-18 15:03:09 -08006874 if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) &&
6875 (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) {
6876 gpa = ctxt->gpa_val;
Brijesh Singh618232e2017-08-17 18:36:57 +02006877 ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write);
6878 } else {
6879 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
6880 if (ret < 0)
6881 return X86EMUL_PROPAGATE_FAULT;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006882 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006883
Brijesh Singh618232e2017-08-17 18:36:57 +02006884 if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01006885 return X86EMUL_CONTINUE;
6886
Carsten Ottebbd9b642007-10-30 18:44:21 +01006887 /*
6888 * Is this MMIO handled locally?
6889 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08006890 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02006891 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006892 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006893
Avi Kivity70252a12010-01-19 12:51:22 +02006894 gpa += handled;
6895 bytes -= handled;
6896 val += handled;
6897
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006898 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
6899 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
6900 frag->gpa = gpa;
6901 frag->data = val;
6902 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03006903 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006904}
6905
Xiubo Li52eb5a62015-03-13 17:39:45 +08006906static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
6907 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006908 void *val, unsigned int bytes,
6909 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006910 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006911{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006912 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03006913 gpa_t gpa;
6914 int rc;
6915
6916 if (ops->read_write_prepare &&
6917 ops->read_write_prepare(vcpu, val, bytes))
6918 return X86EMUL_CONTINUE;
6919
6920 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006921
Carsten Ottebbd9b642007-10-30 18:44:21 +01006922 /* Crossing a page boundary? */
6923 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03006924 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006925
6926 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006927 rc = emulator_read_write_onepage(addr, val, now, exception,
6928 vcpu, ops);
6929
Carsten Ottebbd9b642007-10-30 18:44:21 +01006930 if (rc != X86EMUL_CONTINUE)
6931 return rc;
6932 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02006933 if (ctxt->mode != X86EMUL_MODE_PROT64)
6934 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006935 val += now;
6936 bytes -= now;
6937 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006938
Avi Kivityf78146b2012-04-18 19:22:47 +03006939 rc = emulator_read_write_onepage(addr, val, bytes, exception,
6940 vcpu, ops);
6941 if (rc != X86EMUL_CONTINUE)
6942 return rc;
6943
6944 if (!vcpu->mmio_nr_fragments)
6945 return rc;
6946
6947 gpa = vcpu->mmio_fragments[0].gpa;
6948
6949 vcpu->mmio_needed = 1;
6950 vcpu->mmio_cur_fragment = 0;
6951
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006952 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03006953 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
6954 vcpu->run->exit_reason = KVM_EXIT_MMIO;
6955 vcpu->run->mmio.phys_addr = gpa;
6956
6957 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08006958}
6959
6960static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
6961 unsigned long addr,
6962 void *val,
6963 unsigned int bytes,
6964 struct x86_exception *exception)
6965{
6966 return emulator_read_write(ctxt, addr, val, bytes,
6967 exception, &read_emultor);
6968}
6969
Xiubo Li52eb5a62015-03-13 17:39:45 +08006970static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006971 unsigned long addr,
6972 const void *val,
6973 unsigned int bytes,
6974 struct x86_exception *exception)
6975{
6976 return emulator_read_write(ctxt, addr, (void *)val, bytes,
6977 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006978}
Carsten Ottebbd9b642007-10-30 18:44:21 +01006979
Avi Kivitydaea3e72010-03-15 13:59:54 +02006980#define CMPXCHG_TYPE(t, ptr, old, new) \
6981 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
6982
6983#ifdef CONFIG_X86_64
6984# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
6985#else
6986# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01006987 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02006988#endif
6989
Avi Kivity0f65dd72011-04-20 13:37:53 +03006990static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
6991 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01006992 const void *old,
6993 const void *new,
6994 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006995 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006996{
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006997 struct kvm_host_map map;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006998 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02006999 u64 page_line_mask;
Avi Kivitydaea3e72010-03-15 13:59:54 +02007000 gpa_t gpa;
Avi Kivitydaea3e72010-03-15 13:59:54 +02007001 char *kaddr;
7002 bool exchanged;
7003
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007004 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02007005 if (bytes > 8 || (bytes & (bytes - 1)))
7006 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007007
Avi Kivitydaea3e72010-03-15 13:59:54 +02007008 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05007009
Avi Kivitydaea3e72010-03-15 13:59:54 +02007010 if (gpa == UNMAPPED_GVA ||
7011 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
7012 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007013
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02007014 /*
7015 * Emulate the atomic as a straight write to avoid #AC if SLD is
7016 * enabled in the host and the access splits a cache line.
7017 */
7018 if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
7019 page_line_mask = ~(cache_line_size() - 1);
7020 else
7021 page_line_mask = PAGE_MASK;
7022
7023 if (((gpa + bytes - 1) & page_line_mask) != (gpa & page_line_mask))
Avi Kivitydaea3e72010-03-15 13:59:54 +02007024 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007025
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007026 if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08007027 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02007028
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007029 kaddr = map.hva + offset_in_page(gpa);
7030
Avi Kivitydaea3e72010-03-15 13:59:54 +02007031 switch (bytes) {
7032 case 1:
7033 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
7034 break;
7035 case 2:
7036 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
7037 break;
7038 case 4:
7039 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
7040 break;
7041 case 8:
7042 exchanged = CMPXCHG64(kaddr, old, new);
7043 break;
7044 default:
7045 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007046 }
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007047
7048 kvm_vcpu_unmap(vcpu, &map, true);
Avi Kivitydaea3e72010-03-15 13:59:54 +02007049
7050 if (!exchanged)
7051 return X86EMUL_CMPXCHG_FAILED;
7052
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08007053 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03007054
7055 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02007056
Marcelo Tosatti3200f402008-03-29 20:17:59 -03007057emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02007058 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007059
Avi Kivity0f65dd72011-04-20 13:37:53 +03007060 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007061}
7062
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007063static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
7064{
Wanpeng Licbfc6c92017-05-19 02:46:56 -07007065 int r = 0, i;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007066
Wanpeng Licbfc6c92017-05-19 02:46:56 -07007067 for (i = 0; i < vcpu->arch.pio.count; i++) {
7068 if (vcpu->arch.pio.in)
7069 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
7070 vcpu->arch.pio.size, pd);
7071 else
7072 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
7073 vcpu->arch.pio.port, vcpu->arch.pio.size,
7074 pd);
7075 if (r)
7076 break;
7077 pd += vcpu->arch.pio.size;
7078 }
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007079 return r;
7080}
7081
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007082static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007083 unsigned short port,
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007084 unsigned int count, bool in)
7085{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007086 vcpu->arch.pio.port = port;
7087 vcpu->arch.pio.in = in;
7088 vcpu->arch.pio.count = count;
7089 vcpu->arch.pio.size = size;
7090
Paolo Bonzini0d33b1b2021-10-13 12:29:42 -04007091 if (!kernel_pio(vcpu, vcpu->arch.pio_data))
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007092 return 1;
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007093
7094 vcpu->run->exit_reason = KVM_EXIT_IO;
7095 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
7096 vcpu->run->io.size = size;
7097 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
7098 vcpu->run->io.count = count;
7099 vcpu->run->io.port = port;
7100
7101 return 0;
7102}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007103
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007104static int __emulator_pio_in(struct kvm_vcpu *vcpu, int size,
7105 unsigned short port, unsigned int count)
7106{
7107 WARN_ON(vcpu->arch.pio.count);
7108 memset(vcpu->arch.pio_data, 0, size * count);
7109 return emulator_pio_in_out(vcpu, size, port, count, true);
7110}
7111
Paolo Bonzini6b5efc92021-10-12 12:35:20 -04007112static void complete_emulator_pio_in(struct kvm_vcpu *vcpu, void *val)
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007113{
Paolo Bonzini6b5efc92021-10-12 12:35:20 -04007114 int size = vcpu->arch.pio.size;
7115 unsigned count = vcpu->arch.pio.count;
7116 memcpy(val, vcpu->arch.pio_data, size * count);
7117 trace_kvm_pio(KVM_PIO_IN, vcpu->arch.pio.port, size, count, vcpu->arch.pio_data);
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007118 vcpu->arch.pio.count = 0;
7119}
7120
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007121static int emulator_pio_in(struct kvm_vcpu *vcpu, int size,
7122 unsigned short port, void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007123{
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007124 if (vcpu->arch.pio.count) {
7125 /* Complete previous iteration. */
7126 } else {
7127 int r = __emulator_pio_in(vcpu, size, port, count);
7128 if (!r)
7129 return r;
Avi Kivityca1d4a92011-04-20 13:37:53 +03007130
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007131 /* Results already available, fall through. */
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007132 }
7133
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007134 WARN_ON(count != vcpu->arch.pio.count);
Paolo Bonzini6b5efc92021-10-12 12:35:20 -04007135 complete_emulator_pio_in(vcpu, val);
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007136 return 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007137}
7138
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007139static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
7140 int size, unsigned short port, void *val,
7141 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007142{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007143 return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count);
Avi Kivityca1d4a92011-04-20 13:37:53 +03007144
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007145}
7146
7147static int emulator_pio_out(struct kvm_vcpu *vcpu, int size,
7148 unsigned short port, const void *val,
7149 unsigned int count)
7150{
Paolo Bonzini0d33b1b2021-10-13 12:29:42 -04007151 int ret;
7152
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007153 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02007154 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Paolo Bonzini3b27de22021-10-13 12:32:02 -04007155 ret = emulator_pio_in_out(vcpu, size, port, count, false);
Paolo Bonzini0d33b1b2021-10-13 12:29:42 -04007156 if (ret)
7157 vcpu->arch.pio.count = 0;
7158
7159 return ret;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007160}
7161
Carsten Ottebbd9b642007-10-30 18:44:21 +01007162static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
7163 int size, unsigned short port,
7164 const void *val, unsigned int count)
7165{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007166 return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007167}
7168
7169static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
7170{
Jason Baronb36464772021-01-14 22:27:56 -05007171 return static_call(kvm_x86_get_segment_base)(vcpu, seg);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007172}
7173
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007174static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007175{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007176 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007177}
7178
Jiang Biaoae6a2372016-11-07 08:54:51 +08007179static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007180{
7181 if (!need_emulate_wbinvd(vcpu))
7182 return X86EMUL_CONTINUE;
7183
Jason Baronb36464772021-01-14 22:27:56 -05007184 if (static_call(kvm_x86_has_wbinvd_exit)()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01007185 int cpu = get_cpu();
7186
7187 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Wanpeng Lic2162e12021-03-12 10:45:51 +08007188 on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007189 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01007190 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007191 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01007192 } else
7193 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007194 return X86EMUL_CONTINUE;
7195}
Joel Schopp5cb56052015-03-02 13:43:31 -06007196
7197int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
7198{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007199 kvm_emulate_wbinvd_noskip(vcpu);
7200 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06007201}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007202EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
7203
Joel Schopp5cb56052015-03-02 13:43:31 -06007204
7205
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007206static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
7207{
Joel Schopp5cb56052015-03-02 13:43:31 -06007208 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007209}
7210
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007211static void emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
7212 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007213{
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007214 kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007215}
7216
Xiubo Li52eb5a62015-03-13 17:39:45 +08007217static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
7218 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007219{
Gleb Natapov338dbc92010-04-28 19:15:32 +03007220
Paolo Bonzini996ff542020-12-14 07:49:54 -05007221 return kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007222}
7223
Gleb Natapov52a46612010-03-18 15:20:03 +02007224static u64 mk_cr_64(u64 curr_cr, u32 new_val)
7225{
7226 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
7227}
7228
Avi Kivity717746e2011-04-20 13:37:53 +03007229static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02007230{
Avi Kivity717746e2011-04-20 13:37:53 +03007231 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02007232 unsigned long value;
7233
7234 switch (cr) {
7235 case 0:
7236 value = kvm_read_cr0(vcpu);
7237 break;
7238 case 2:
7239 value = vcpu->arch.cr2;
7240 break;
7241 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02007242 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02007243 break;
7244 case 4:
7245 value = kvm_read_cr4(vcpu);
7246 break;
7247 case 8:
7248 value = kvm_get_cr8(vcpu);
7249 break;
7250 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007251 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02007252 return 0;
7253 }
7254
7255 return value;
7256}
7257
Avi Kivity717746e2011-04-20 13:37:53 +03007258static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02007259{
Avi Kivity717746e2011-04-20 13:37:53 +03007260 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03007261 int res = 0;
7262
Gleb Natapov52a46612010-03-18 15:20:03 +02007263 switch (cr) {
7264 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03007265 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007266 break;
7267 case 2:
7268 vcpu->arch.cr2 = val;
7269 break;
7270 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03007271 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007272 break;
7273 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03007274 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007275 break;
7276 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007277 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007278 break;
7279 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007280 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03007281 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02007282 }
Gleb Natapov0f122442010-04-28 19:15:31 +03007283
7284 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02007285}
7286
Avi Kivity717746e2011-04-20 13:37:53 +03007287static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02007288{
Jason Baronb36464772021-01-14 22:27:56 -05007289 return static_call(kvm_x86_get_cpl)(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02007290}
7291
Avi Kivity4bff1e862011-04-20 13:37:53 +03007292static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007293{
Jason Baronb36464772021-01-14 22:27:56 -05007294 static_call(kvm_x86_get_gdt)(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007295}
7296
Avi Kivity4bff1e862011-04-20 13:37:53 +03007297static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007298{
Jason Baronb36464772021-01-14 22:27:56 -05007299 static_call(kvm_x86_get_idt)(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007300}
7301
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007302static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7303{
Jason Baronb36464772021-01-14 22:27:56 -05007304 static_call(kvm_x86_set_gdt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007305}
7306
7307static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7308{
Jason Baronb36464772021-01-14 22:27:56 -05007309 static_call(kvm_x86_set_idt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007310}
7311
Avi Kivity4bff1e862011-04-20 13:37:53 +03007312static unsigned long emulator_get_cached_segment_base(
7313 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03007314{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007315 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03007316}
7317
Avi Kivity1aa36612011-04-27 13:20:30 +03007318static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
7319 struct desc_struct *desc, u32 *base3,
7320 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007321{
7322 struct kvm_segment var;
7323
Avi Kivity4bff1e862011-04-20 13:37:53 +03007324 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03007325 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007326
Gleb Natapov378a8b02013-01-21 15:36:48 +02007327 if (var.unusable) {
7328 memset(desc, 0, sizeof(*desc));
Radim Krčmářf0367ee2017-05-18 19:37:30 +02007329 if (base3)
7330 *base3 = 0;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007331 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02007332 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007333
7334 if (var.g)
7335 var.limit >>= 12;
7336 set_desc_limit(desc, var.limit);
7337 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02007338#ifdef CONFIG_X86_64
7339 if (base3)
7340 *base3 = var.base >> 32;
7341#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007342 desc->type = var.type;
7343 desc->s = var.s;
7344 desc->dpl = var.dpl;
7345 desc->p = var.present;
7346 desc->avl = var.avl;
7347 desc->l = var.l;
7348 desc->d = var.db;
7349 desc->g = var.g;
7350
7351 return true;
7352}
7353
Avi Kivity1aa36612011-04-27 13:20:30 +03007354static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
7355 struct desc_struct *desc, u32 base3,
7356 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007357{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007358 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007359 struct kvm_segment var;
7360
Avi Kivity1aa36612011-04-27 13:20:30 +03007361 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007362 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02007363#ifdef CONFIG_X86_64
7364 var.base |= ((u64)base3) << 32;
7365#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007366 var.limit = get_desc_limit(desc);
7367 if (desc->g)
7368 var.limit = (var.limit << 12) | 0xfff;
7369 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007370 var.dpl = desc->dpl;
7371 var.db = desc->d;
7372 var.s = desc->s;
7373 var.l = desc->l;
7374 var.g = desc->g;
7375 var.avl = desc->avl;
7376 var.present = desc->p;
7377 var.unusable = !var.present;
7378 var.padding = 0;
7379
7380 kvm_set_segment(vcpu, &var, seg);
7381 return;
7382}
7383
Avi Kivity717746e2011-04-20 13:37:53 +03007384static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
7385 u32 msr_index, u64 *pdata)
7386{
Alexander Graf1ae09952020-09-25 16:34:16 +02007387 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7388 int r;
7389
7390 r = kvm_get_msr(vcpu, msr_index, pdata);
7391
7392 if (r && kvm_get_msr_user_space(vcpu, msr_index, r)) {
7393 /* Bounce to user space */
7394 return X86EMUL_IO_NEEDED;
7395 }
7396
7397 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007398}
7399
7400static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
7401 u32 msr_index, u64 data)
7402{
Alexander Graf1ae09952020-09-25 16:34:16 +02007403 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7404 int r;
7405
7406 r = kvm_set_msr(vcpu, msr_index, data);
7407
7408 if (r && kvm_set_msr_user_space(vcpu, msr_index, data, r)) {
7409 /* Bounce to user space */
7410 return X86EMUL_IO_NEEDED;
7411 }
7412
7413 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007414}
7415
Paolo Bonzini64d60672015-05-07 11:36:11 +02007416static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
7417{
7418 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7419
7420 return vcpu->arch.smbase;
7421}
7422
7423static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
7424{
7425 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7426
7427 vcpu->arch.smbase = smbase;
7428}
7429
Nadav Amit67f4d422014-06-02 18:34:09 +03007430static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
7431 u32 pmc)
7432{
Jim Mattsone6cd31f2021-11-05 13:20:58 -07007433 if (kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc))
7434 return 0;
7435 return -EINVAL;
Nadav Amit67f4d422014-06-02 18:34:09 +03007436}
7437
Avi Kivity222d21a2011-11-10 14:57:30 +02007438static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
7439 u32 pmc, u64 *pdata)
7440{
Wei Huangc6702c92015-06-19 13:44:45 +02007441 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02007442}
7443
Avi Kivity6c3287f2011-04-20 15:43:05 +03007444static void emulator_halt(struct x86_emulate_ctxt *ctxt)
7445{
7446 emul_to_vcpu(ctxt)->arch.halt_request = 1;
7447}
7448
Avi Kivity29535382011-04-20 13:37:53 +03007449static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007450 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007451 enum x86_intercept_stage stage)
7452{
Jason Baronb36464772021-01-14 22:27:56 -05007453 return static_call(kvm_x86_check_intercept)(emul_to_vcpu(ctxt), info, stage,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007454 &ctxt->exception);
Avi Kivityc4f035c2011-04-04 12:39:22 +02007455}
7456
Yu Zhange911eb32017-08-24 20:27:52 +08007457static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Sean Christophersonf91af512020-03-04 17:34:37 -08007458 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx,
7459 bool exact_only)
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007460{
Sean Christophersonf91af512020-03-04 17:34:37 -08007461 return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007462}
7463
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007464static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt)
7465{
7466 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM);
7467}
7468
7469static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt)
7470{
7471 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE);
7472}
7473
7474static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt)
7475{
7476 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR);
7477}
7478
Avi Kivitydd856ef2012-08-27 23:46:17 +03007479static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
7480{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007481 return kvm_register_read_raw(emul_to_vcpu(ctxt), reg);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007482}
7483
7484static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
7485{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007486 kvm_register_write_raw(emul_to_vcpu(ctxt), reg, val);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007487}
7488
Nadav Amit801806d2015-01-26 09:32:23 +02007489static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
7490{
Jason Baronb36464772021-01-14 22:27:56 -05007491 static_call(kvm_x86_set_nmi_mask)(emul_to_vcpu(ctxt), masked);
Nadav Amit801806d2015-01-26 09:32:23 +02007492}
7493
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007494static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt)
7495{
7496 return emul_to_vcpu(ctxt)->arch.hflags;
7497}
7498
Sean Christophersonedce4652021-06-09 11:56:13 -07007499static void emulator_exiting_smm(struct x86_emulate_ctxt *ctxt)
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007500{
Sean Christopherson78fcb2c2021-06-09 11:56:11 -07007501 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7502
Sean Christophersondc872752021-06-09 11:56:15 -07007503 kvm_smm_changed(vcpu, false);
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007504}
7505
Sean Christophersonecc513e2021-06-09 11:56:19 -07007506static int emulator_leave_smm(struct x86_emulate_ctxt *ctxt,
Sean Christophersoned193212019-04-02 08:03:09 -07007507 const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007508{
Sean Christophersonecc513e2021-06-09 11:56:19 -07007509 return static_call(kvm_x86_leave_smm)(emul_to_vcpu(ctxt), smstate);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007510}
7511
Sean Christopherson25b17222021-06-09 11:56:12 -07007512static void emulator_triple_fault(struct x86_emulate_ctxt *ctxt)
7513{
7514 kvm_make_request(KVM_REQ_TRIPLE_FAULT, emul_to_vcpu(ctxt));
7515}
7516
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007517static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr)
7518{
7519 return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr);
7520}
7521
Mathias Krause0225fb52012-08-30 01:30:16 +02007522static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03007523 .read_gpr = emulator_read_gpr,
7524 .write_gpr = emulator_write_gpr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02007525 .read_std = emulator_read_std,
7526 .write_std = emulator_write_std,
Radim Krčmář7a036a62015-10-30 16:36:24 +01007527 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02007528 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007529 .read_emulated = emulator_read_emulated,
7530 .write_emulated = emulator_write_emulated,
7531 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007532 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007533 .pio_in_emulated = emulator_pio_in_emulated,
7534 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03007535 .get_segment = emulator_get_segment,
7536 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03007537 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007538 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007539 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007540 .set_gdt = emulator_set_gdt,
7541 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02007542 .get_cr = emulator_get_cr,
7543 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02007544 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03007545 .get_dr = emulator_get_dr,
7546 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02007547 .get_smbase = emulator_get_smbase,
7548 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03007549 .set_msr = emulator_set_msr,
7550 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03007551 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02007552 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03007553 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007554 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03007555 .fix_hypercall = emulator_fix_hypercall,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007556 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007557 .get_cpuid = emulator_get_cpuid,
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007558 .guest_has_long_mode = emulator_guest_has_long_mode,
7559 .guest_has_movbe = emulator_guest_has_movbe,
7560 .guest_has_fxsr = emulator_guest_has_fxsr,
Nadav Amit801806d2015-01-26 09:32:23 +02007561 .set_nmi_mask = emulator_set_nmi_mask,
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007562 .get_hflags = emulator_get_hflags,
Sean Christophersonedce4652021-06-09 11:56:13 -07007563 .exiting_smm = emulator_exiting_smm,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007564 .leave_smm = emulator_leave_smm,
Sean Christopherson25b17222021-06-09 11:56:12 -07007565 .triple_fault = emulator_triple_fault,
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007566 .set_xcr = emulator_set_xcr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007567};
7568
Gleb Natapov95cb2292010-04-28 19:15:43 +03007569static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
7570{
Jason Baronb36464772021-01-14 22:27:56 -05007571 u32 int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03007572 /*
7573 * an sti; sti; sequence only disable interrupts for the first
7574 * instruction. So, if the last instruction, be it emulated or
7575 * not, left the system with the INT_STI flag enabled, it
7576 * means that the last instruction is an sti. We should not
7577 * leave the flag on in this case. The same goes for mov ss
7578 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02007579 if (int_shadow & mask)
7580 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007581 if (unlikely(int_shadow || mask)) {
Jason Baronb36464772021-01-14 22:27:56 -05007582 static_call(kvm_x86_set_interrupt_shadow)(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007583 if (!mask)
7584 kvm_make_request(KVM_REQ_EVENT, vcpu);
7585 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03007586}
7587
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007588static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03007589{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007590 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02007591 if (ctxt->exception.vector == PF_VECTOR)
Sean Christopherson53b3d8e2020-03-20 14:28:01 -07007592 return kvm_inject_emulated_page_fault(vcpu, &ctxt->exception);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007593
7594 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02007595 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
7596 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03007597 else
Avi Kivityda9cb572010-11-22 17:53:21 +02007598 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007599 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03007600}
7601
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007602static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu)
7603{
7604 struct x86_emulate_ctxt *ctxt;
7605
7606 ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT);
7607 if (!ctxt) {
7608 pr_err("kvm: failed to allocate vcpu's emulator\n");
7609 return NULL;
7610 }
7611
7612 ctxt->vcpu = vcpu;
7613 ctxt->ops = &emulate_ops;
7614 vcpu->arch.emulate_ctxt = ctxt;
7615
7616 return ctxt;
7617}
7618
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007619static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
7620{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007621 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007622 int cs_db, cs_l;
7623
Jason Baronb36464772021-01-14 22:27:56 -05007624 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007625
Sean Christopherson744e6992020-02-18 15:03:09 -08007626 ctxt->gpa_available = false;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007627 ctxt->eflags = kvm_get_rflags(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007628 ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0;
7629
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007630 ctxt->eip = kvm_rip_read(vcpu);
7631 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
7632 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03007633 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007634 cs_db ? X86EMUL_MODE_PROT32 :
7635 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02007636 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007637 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
7638 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007639
Wanpeng Lida6393c2021-05-27 17:01:36 -07007640 ctxt->interruptibility = 0;
7641 ctxt->have_exception = false;
7642 ctxt->exception.vector = -1;
7643 ctxt->perm_ok = false;
7644
Avi Kivitydd856ef2012-08-27 23:46:17 +03007645 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007646 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007647}
7648
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007649void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02007650{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007651 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02007652 int ret;
7653
7654 init_emulate_ctxt(vcpu);
7655
Avi Kivity9dac77f2011-06-01 15:34:25 +03007656 ctxt->op_bytes = 2;
7657 ctxt->ad_bytes = 2;
7658 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007659 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02007660
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007661 if (ret != X86EMUL_CONTINUE) {
7662 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7663 } else {
7664 ctxt->eip = ctxt->_eip;
7665 kvm_rip_write(vcpu, ctxt->eip);
7666 kvm_set_rflags(vcpu, ctxt->eflags);
7667 }
Mohammed Gamal63995652010-09-19 14:34:06 +02007668}
7669EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
7670
David Edmondsone615e352021-09-20 11:37:36 +01007671static void prepare_emulation_failure_exit(struct kvm_vcpu *vcpu, u64 *data,
7672 u8 ndata, u8 *insn_bytes, u8 insn_size)
Aaron Lewis19238e72021-05-10 07:48:33 -07007673{
Aaron Lewis19238e72021-05-10 07:48:33 -07007674 struct kvm_run *run = vcpu->run;
David Edmondsone615e352021-09-20 11:37:36 +01007675 u64 info[5];
7676 u8 info_start;
7677
7678 /*
7679 * Zero the whole array used to retrieve the exit info, as casting to
7680 * u32 for select entries will leave some chunks uninitialized.
7681 */
7682 memset(&info, 0, sizeof(info));
7683
7684 static_call(kvm_x86_get_exit_info)(vcpu, (u32 *)&info[0], &info[1],
7685 &info[2], (u32 *)&info[3],
7686 (u32 *)&info[4]);
Aaron Lewis19238e72021-05-10 07:48:33 -07007687
7688 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7689 run->emulation_failure.suberror = KVM_INTERNAL_ERROR_EMULATION;
David Edmondsone615e352021-09-20 11:37:36 +01007690
7691 /*
7692 * There's currently space for 13 entries, but 5 are used for the exit
7693 * reason and info. Restrict to 4 to reduce the maintenance burden
7694 * when expanding kvm_run.emulation_failure in the future.
7695 */
7696 if (WARN_ON_ONCE(ndata > 4))
7697 ndata = 4;
7698
7699 /* Always include the flags as a 'data' entry. */
7700 info_start = 1;
Aaron Lewis19238e72021-05-10 07:48:33 -07007701 run->emulation_failure.flags = 0;
7702
7703 if (insn_size) {
David Edmondsone615e352021-09-20 11:37:36 +01007704 BUILD_BUG_ON((sizeof(run->emulation_failure.insn_size) +
7705 sizeof(run->emulation_failure.insn_bytes) != 16));
7706 info_start += 2;
Aaron Lewis19238e72021-05-10 07:48:33 -07007707 run->emulation_failure.flags |=
7708 KVM_INTERNAL_ERROR_EMULATION_FLAG_INSTRUCTION_BYTES;
7709 run->emulation_failure.insn_size = insn_size;
7710 memset(run->emulation_failure.insn_bytes, 0x90,
7711 sizeof(run->emulation_failure.insn_bytes));
David Edmondsone615e352021-09-20 11:37:36 +01007712 memcpy(run->emulation_failure.insn_bytes, insn_bytes, insn_size);
Aaron Lewis19238e72021-05-10 07:48:33 -07007713 }
David Edmondsone615e352021-09-20 11:37:36 +01007714
7715 memcpy(&run->internal.data[info_start], info, sizeof(info));
7716 memcpy(&run->internal.data[info_start + ARRAY_SIZE(info)], data,
7717 ndata * sizeof(data[0]));
7718
7719 run->emulation_failure.ndata = info_start + ARRAY_SIZE(info) + ndata;
Aaron Lewis19238e72021-05-10 07:48:33 -07007720}
7721
David Edmondsone615e352021-09-20 11:37:36 +01007722static void prepare_emulation_ctxt_failure_exit(struct kvm_vcpu *vcpu)
7723{
7724 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7725
7726 prepare_emulation_failure_exit(vcpu, NULL, 0, ctxt->fetch.data,
7727 ctxt->fetch.end - ctxt->fetch.data);
7728}
7729
7730void __kvm_prepare_emulation_failure_exit(struct kvm_vcpu *vcpu, u64 *data,
7731 u8 ndata)
7732{
7733 prepare_emulation_failure_exit(vcpu, data, ndata, NULL, 0);
7734}
7735EXPORT_SYMBOL_GPL(__kvm_prepare_emulation_failure_exit);
7736
7737void kvm_prepare_emulation_failure_exit(struct kvm_vcpu *vcpu)
7738{
7739 __kvm_prepare_emulation_failure_exit(vcpu, NULL, 0);
7740}
7741EXPORT_SYMBOL_GPL(kvm_prepare_emulation_failure_exit);
7742
Liran Alone2366172018-03-12 13:12:49 +02007743static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007744{
Aaron Lewis19238e72021-05-10 07:48:33 -07007745 struct kvm *kvm = vcpu->kvm;
7746
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007747 ++vcpu->stat.insn_emulation_fail;
7748 trace_kvm_emulate_insn_failed(vcpu);
Liran Alone2366172018-03-12 13:12:49 +02007749
Sean Christopherson42cbf062019-08-27 14:40:31 -07007750 if (emulation_type & EMULTYPE_VMWARE_GP) {
7751 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007752 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007753 }
Liran Alone2366172018-03-12 13:12:49 +02007754
Aaron Lewis19238e72021-05-10 07:48:33 -07007755 if (kvm->arch.exit_on_emulation_error ||
7756 (emulation_type & EMULTYPE_SKIP)) {
David Edmondsone615e352021-09-20 11:37:36 +01007757 prepare_emulation_ctxt_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007758 return 0;
Sean Christopherson738fece2019-08-27 14:40:34 -07007759 }
7760
Sean Christopherson22da61c2019-08-27 14:40:28 -07007761 kvm_queue_exception(vcpu, UD_VECTOR);
7762
Jason Baronb36464772021-01-14 22:27:56 -05007763 if (!is_guest_mode(vcpu) && static_call(kvm_x86_get_cpl)(vcpu) == 0) {
David Edmondsone615e352021-09-20 11:37:36 +01007764 prepare_emulation_ctxt_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007765 return 0;
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007766 }
Liran Alone2366172018-03-12 13:12:49 +02007767
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007768 return 1;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007769}
7770
Sean Christopherson736c2912019-12-06 15:57:14 -08007771static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007772 bool write_fault_to_shadow_pgtable,
7773 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03007774{
Sean Christopherson736c2912019-12-06 15:57:14 -08007775 gpa_t gpa = cr2_or_gpa;
Dan Williamsba049e92016-01-15 16:56:11 -08007776 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007777
Sean Christopherson92daa482020-02-18 15:03:08 -08007778 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Gleb Natapov991eebf2013-04-11 12:10:51 +03007779 return false;
7780
Sean Christopherson92daa482020-02-18 15:03:08 -08007781 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7782 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007783 return false;
7784
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007785 if (!vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007786 /*
7787 * Write permission should be allowed since only
7788 * write access need to be emulated.
7789 */
Sean Christopherson736c2912019-12-06 15:57:14 -08007790 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03007791
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007792 /*
7793 * If the mapping is invalid in guest, let cpu retry
7794 * it to generate fault.
7795 */
7796 if (gpa == UNMAPPED_GVA)
7797 return true;
7798 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007799
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007800 /*
7801 * Do not retry the unhandleable instruction if it faults on the
7802 * readonly host memory, otherwise it will goto a infinite loop:
7803 * retry instruction -> write #PF -> emulation fail -> retry
7804 * instruction -> ...
7805 */
7806 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007807
7808 /*
7809 * If the instruction failed on the error pfn, it can not be fixed,
7810 * report the error to userspace.
7811 */
7812 if (is_error_noslot_pfn(pfn))
7813 return false;
7814
7815 kvm_release_pfn_clean(pfn);
7816
7817 /* The instructions are well-emulated on direct mmu. */
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007818 if (vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007819 unsigned int indirect_shadow_pages;
7820
Ben Gardon531810c2021-02-02 10:57:24 -08007821 write_lock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007822 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
Ben Gardon531810c2021-02-02 10:57:24 -08007823 write_unlock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007824
7825 if (indirect_shadow_pages)
7826 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
7827
Gleb Natapova6f177e2010-07-08 12:41:12 +03007828 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007829 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007830
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007831 /*
7832 * if emulation was due to access to shadowed page table
7833 * and it failed try to unshadow page and re-enter the
7834 * guest to let CPU execute the instruction.
7835 */
7836 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007837
7838 /*
7839 * If the access faults on its page table, it can not
7840 * be fixed by unprotecting shadow page and it should
7841 * be reported to userspace.
7842 */
7843 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007844}
7845
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007846static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
Sean Christopherson736c2912019-12-06 15:57:14 -08007847 gpa_t cr2_or_gpa, int emulation_type)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007848{
7849 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christopherson736c2912019-12-06 15:57:14 -08007850 unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007851
7852 last_retry_eip = vcpu->arch.last_retry_eip;
7853 last_retry_addr = vcpu->arch.last_retry_addr;
7854
7855 /*
7856 * If the emulation is caused by #PF and it is non-page_table
7857 * writing instruction, it means the VM-EXIT is caused by shadow
7858 * page protected, we can zap the shadow page and retry this
7859 * instruction directly.
7860 *
7861 * Note: if the guest uses a non-page-table modifying instruction
7862 * on the PDE that points to the instruction, then we will unmap
7863 * the instruction and go to an infinite loop. So, we cache the
7864 * last retried eip and the last fault address, if we meet the eip
7865 * and the address again, we can break out of the potential infinite
7866 * loop.
7867 */
7868 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
7869
Sean Christopherson92daa482020-02-18 15:03:08 -08007870 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007871 return false;
7872
Sean Christopherson92daa482020-02-18 15:03:08 -08007873 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7874 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007875 return false;
7876
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007877 if (x86_page_table_writing_insn(ctxt))
7878 return false;
7879
Sean Christopherson736c2912019-12-06 15:57:14 -08007880 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007881 return false;
7882
7883 vcpu->arch.last_retry_eip = ctxt->eip;
Sean Christopherson736c2912019-12-06 15:57:14 -08007884 vcpu->arch.last_retry_addr = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007885
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007886 if (!vcpu->arch.mmu->direct_map)
Sean Christopherson736c2912019-12-06 15:57:14 -08007887 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007888
Xiao Guangrong22368022013-01-13 23:44:12 +08007889 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007890
7891 return true;
7892}
7893
Gleb Natapov716d51a2012-09-03 15:24:26 +03007894static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
7895static int complete_emulated_pio(struct kvm_vcpu *vcpu);
7896
Sean Christophersondc872752021-06-09 11:56:15 -07007897static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm)
Paolo Bonzinia5845392015-04-01 18:18:53 +02007898{
Sean Christopherson1270e642021-06-09 11:56:17 -07007899 trace_kvm_smm_transition(vcpu->vcpu_id, vcpu->arch.smbase, entering_smm);
Sean Christopherson0d7ee6f2021-06-09 11:56:16 -07007900
Sean Christophersondc872752021-06-09 11:56:15 -07007901 if (entering_smm) {
7902 vcpu->arch.hflags |= HF_SMM_MASK;
7903 } else {
7904 vcpu->arch.hflags &= ~(HF_SMM_MASK | HF_SMM_INSIDE_NMI_MASK);
7905
Paolo Bonzinic43203c2016-06-01 22:26:00 +02007906 /* Process a latched INIT or SMI, if any. */
7907 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitsky37687c42021-09-13 17:09:50 +03007908
7909 /*
7910 * Even if KVM_SET_SREGS2 loaded PDPTRs out of band,
7911 * on SMM exit we still need to reload them from
7912 * guest memory
7913 */
7914 vcpu->arch.pdptrs_from_userspace = false;
Paolo Bonzini64d60672015-05-07 11:36:11 +02007915 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02007916
7917 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007918}
7919
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007920static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
7921 unsigned long *db)
7922{
7923 u32 dr6 = 0;
7924 int i;
7925 u32 enable, rwlen;
7926
7927 enable = dr7;
7928 rwlen = dr7 >> 16;
7929 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
7930 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
7931 dr6 |= (1 << i);
7932 return dr6;
7933}
7934
Sean Christopherson120c2c42019-08-27 14:40:29 -07007935static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007936{
7937 struct kvm_run *kvm_run = vcpu->run;
7938
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007939 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08007940 kvm_run->debug.arch.dr6 = DR6_BS | DR6_ACTIVE_LOW;
Peter Xud5d260c2020-05-05 16:49:59 -04007941 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007942 kvm_run->debug.arch.exception = DB_VECTOR;
7943 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007944 return 0;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007945 }
Sean Christopherson120c2c42019-08-27 14:40:29 -07007946 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007947 return 1;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007948}
7949
Kyle Huey6affcbe2016-11-29 12:40:40 -08007950int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
7951{
Jason Baronb36464772021-01-14 22:27:56 -05007952 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007953 int r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007954
Jason Baronb36464772021-01-14 22:27:56 -05007955 r = static_call(kvm_x86_skip_emulated_instruction)(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007956 if (unlikely(!r))
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007957 return 0;
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007958
7959 /*
7960 * rflags is the old, "raw" value of the flags. The new value has
7961 * not been saved yet.
7962 *
7963 * This is correct even for TF set by the guest, because "the
7964 * processor will not generate this exception after the instruction
7965 * that sets the TF flag".
7966 */
7967 if (unlikely(rflags & X86_EFLAGS_TF))
Sean Christopherson120c2c42019-08-27 14:40:29 -07007968 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007969 return r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007970}
7971EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
7972
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007973static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
7974{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007975 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
7976 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02007977 struct kvm_run *kvm_run = vcpu->run;
7978 unsigned long eip = kvm_get_linear_rip(vcpu);
7979 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007980 vcpu->arch.guest_debug_dr7,
7981 vcpu->arch.eff_db);
7982
7983 if (dr6 != 0) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08007984 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Nadav Amit82b32772014-11-02 11:54:45 +02007985 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007986 kvm_run->debug.arch.exception = DB_VECTOR;
7987 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007988 *r = 0;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007989 return true;
7990 }
7991 }
7992
Nadav Amit4161a562014-07-17 01:19:31 +03007993 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
7994 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02007995 unsigned long eip = kvm_get_linear_rip(vcpu);
7996 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007997 vcpu->arch.dr7,
7998 vcpu->arch.db);
7999
8000 if (dr6 != 0) {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04008001 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008002 *r = 1;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008003 return true;
8004 }
8005 }
8006
8007 return false;
8008}
8009
Liran Alon04789b62018-03-12 13:12:50 +02008010static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt)
8011{
Arbel Moshe2d7921c2018-03-12 13:12:53 +02008012 switch (ctxt->opcode_len) {
8013 case 1:
8014 switch (ctxt->b) {
8015 case 0xe4: /* IN */
8016 case 0xe5:
8017 case 0xec:
8018 case 0xed:
8019 case 0xe6: /* OUT */
8020 case 0xe7:
8021 case 0xee:
8022 case 0xef:
8023 case 0x6c: /* INS */
8024 case 0x6d:
8025 case 0x6e: /* OUTS */
8026 case 0x6f:
8027 return true;
8028 }
8029 break;
8030 case 2:
8031 switch (ctxt->b) {
8032 case 0x33: /* RDPMC */
8033 return true;
8034 }
8035 break;
Liran Alon04789b62018-03-12 13:12:50 +02008036 }
8037
8038 return false;
8039}
8040
Wei Huang4aa26912021-01-26 03:18:28 -05008041/*
8042 * Decode to be emulated instruction. Return EMULATION_OK if success.
8043 */
8044int x86_decode_emulated_instruction(struct kvm_vcpu *vcpu, int emulation_type,
8045 void *insn, int insn_len)
8046{
8047 int r = EMULATION_OK;
8048 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
8049
8050 init_emulate_ctxt(vcpu);
8051
8052 /*
8053 * We will reenter on the same instruction since we do not set
8054 * complete_userspace_io. This does not handle watchpoints yet,
8055 * those would be handled in the emulate_ops.
8056 */
8057 if (!(emulation_type & EMULTYPE_SKIP) &&
8058 kvm_vcpu_check_breakpoint(vcpu, &r))
8059 return r;
8060
Wanpeng Lib35491e2021-05-27 17:01:37 -07008061 r = x86_decode_insn(ctxt, insn, insn_len, emulation_type);
Wei Huang4aa26912021-01-26 03:18:28 -05008062
8063 trace_kvm_emulate_insn_start(vcpu);
8064 ++vcpu->stat.insn_emulation;
8065
8066 return r;
8067}
8068EXPORT_SYMBOL_GPL(x86_decode_emulated_instruction);
8069
Sean Christopherson736c2912019-12-06 15:57:14 -08008070int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
8071 int emulation_type, void *insn, int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01008072{
Gleb Natapov95cb2292010-04-28 19:15:43 +03008073 int r;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008074 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008075 bool writeback = true;
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008076 bool write_fault_to_spt;
8077
Jason Baronb36464772021-01-14 22:27:56 -05008078 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, insn, insn_len)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008079 return 1;
Carsten Ottebbd9b642007-10-30 18:44:21 +01008080
Paolo Bonzinic595cee2018-07-02 13:07:14 +02008081 vcpu->arch.l1tf_flush_l1d = true;
8082
Xiao Guangrong93c05d32013-01-13 23:49:07 +08008083 /*
8084 * Clear write_fault_to_shadow_pgtable here to ensure it is
8085 * never reused.
8086 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008087 write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08008088 vcpu->arch.write_fault_to_shadow_pgtable = false;
Gleb Natapov8d7d81022011-04-12 12:36:21 +03008089
Sheng Yang571008d2008-01-02 14:49:22 +08008090 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Wei Huang4aa26912021-01-26 03:18:28 -05008091 kvm_clear_exception_queue(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008092
Wei Huang4aa26912021-01-26 03:18:28 -05008093 r = x86_decode_emulated_instruction(vcpu, emulation_type,
8094 insn, insn_len);
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09008095 if (r != EMULATION_OK) {
Sean Christophersonb4000602019-08-27 14:40:32 -07008096 if ((emulation_type & EMULTYPE_TRAP_UD) ||
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07008097 (emulation_type & EMULTYPE_TRAP_UD_FORCED)) {
8098 kvm_queue_exception(vcpu, UD_VECTOR);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008099 return 1;
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07008100 }
Sean Christopherson736c2912019-12-06 15:57:14 -08008101 if (reexecute_instruction(vcpu, cr2_or_gpa,
8102 write_fault_to_spt,
8103 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008104 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00008105 if (ctxt->have_exception) {
Jan Dakinevichc8848ce2019-08-27 13:07:08 +00008106 /*
8107 * #UD should result in just EMULATION_FAILED, and trap-like
8108 * exception should not be encountered during decode.
8109 */
8110 WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR ||
8111 exception_type(ctxt->exception.vector) == EXCPT_TRAP);
Jan Dakinevich8530a792019-08-27 13:07:09 +00008112 inject_emulated_exception(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008113 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00008114 }
Liran Alone2366172018-03-12 13:12:49 +02008115 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008116 }
8117 }
8118
Sean Christopherson42cbf062019-08-27 14:40:31 -07008119 if ((emulation_type & EMULTYPE_VMWARE_GP) &&
8120 !is_vmware_backdoor_opcode(ctxt)) {
8121 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008122 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07008123 }
Liran Alon04789b62018-03-12 13:12:50 +02008124
Sean Christopherson1957aa62019-08-27 14:40:39 -07008125 /*
8126 * Note, EMULTYPE_SKIP is intended for use *only* by vendor callbacks
8127 * for kvm_skip_emulated_instruction(). The caller is responsible for
8128 * updating interruptibility state and injecting single-step #DBs.
8129 */
Gleb Natapovba8afb62009-04-12 13:36:57 +03008130 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03008131 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03008132 if (ctxt->eflags & X86_EFLAGS_RF)
8133 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008134 return 1;
Gleb Natapovba8afb62009-04-12 13:36:57 +03008135 }
8136
Sean Christopherson736c2912019-12-06 15:57:14 -08008137 if (retry_instruction(ctxt, cr2_or_gpa, emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008138 return 1;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008139
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008140 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03008141 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008142 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
8143 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03008144 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008145 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03008146
Gleb Natapov5cd21912010-03-18 15:20:26 +02008147restart:
Sean Christopherson92daa482020-02-18 15:03:08 -08008148 if (emulation_type & EMULTYPE_PF) {
8149 /* Save the faulting GPA (cr2) in the address field */
8150 ctxt->exception.address = cr2_or_gpa;
8151
8152 /* With shadow page tables, cr2 contains a GVA or nGPA. */
8153 if (vcpu->arch.mmu->direct_map) {
Sean Christopherson744e6992020-02-18 15:03:09 -08008154 ctxt->gpa_available = true;
8155 ctxt->gpa_val = cr2_or_gpa;
Sean Christopherson92daa482020-02-18 15:03:08 -08008156 }
8157 } else {
8158 /* Sanitize the address out of an abundance of paranoia. */
8159 ctxt->exception.address = 0;
8160 }
Tom Lendacky0f89b202016-12-14 14:59:23 -05008161
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008162 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03008163
Joerg Roedel775fde82011-04-04 12:39:24 +02008164 if (r == EMULATION_INTERCEPTED)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008165 return 1;
Joerg Roedel775fde82011-04-04 12:39:24 +02008166
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008167 if (r == EMULATION_FAILED) {
Sean Christopherson736c2912019-12-06 15:57:14 -08008168 if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt,
Gleb Natapov991eebf2013-04-11 12:10:51 +03008169 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008170 return 1;
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03008171
Liran Alone2366172018-03-12 13:12:49 +02008172 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008173 }
8174
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008175 if (ctxt->have_exception) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008176 r = 1;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02008177 if (inject_emulated_exception(vcpu))
8178 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008179 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02008180 if (!vcpu->arch.pio.in) {
8181 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03008182 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02008183 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008184 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008185 vcpu->arch.complete_userspace_io = complete_emulated_pio;
8186 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008187 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008188 } else if (vcpu->mmio_needed) {
Sean Christophersonbc8a0aa2019-08-27 14:40:27 -07008189 ++vcpu->stat.mmio_exits;
8190
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008191 if (!vcpu->mmio_is_write)
8192 writeback = false;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008193 r = 0;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008194 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008195 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03008196 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008197 else
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008198 r = 1;
Gleb Natapove85d28f2010-07-29 15:11:52 +03008199
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008200 if (writeback) {
Jason Baronb36464772021-01-14 22:27:56 -05008201 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008202 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008203 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Nadav Amit38827db2014-11-02 11:54:53 +02008204 if (!ctxt->have_exception ||
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008205 exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
8206 kvm_rip_write(vcpu, ctxt->eip);
Felipe Franciosi384dea12020-05-19 08:11:22 +00008207 if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)))
Sean Christopherson120c2c42019-08-27 14:40:29 -07008208 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008209 if (kvm_x86_ops.update_emulated_instruction)
Jason Baronb36464772021-01-14 22:27:56 -05008210 static_call(kvm_x86_update_emulated_instruction)(vcpu);
Nadav Amit38827db2014-11-02 11:54:53 +02008211 __kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008212 }
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008213
8214 /*
8215 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
8216 * do nothing, and it will be requested again as soon as
8217 * the shadow expires. But we still need to check here,
8218 * because POPF has no interrupt shadow.
8219 */
8220 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
8221 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008222 } else
8223 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03008224
Gleb Natapove85d28f2010-07-29 15:11:52 +03008225 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01008226}
Sean Christophersonc60658d2018-08-23 13:56:53 -07008227
8228int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type)
8229{
8230 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
8231}
8232EXPORT_SYMBOL_GPL(kvm_emulate_instruction);
8233
8234int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
8235 void *insn, int insn_len)
8236{
8237 return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len);
8238}
8239EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008240
Sean Christopherson8764ed52019-04-29 07:04:15 -07008241static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu)
8242{
8243 vcpu->arch.pio.count = 0;
8244 return 1;
8245}
8246
Sean Christopherson45def772019-03-11 20:01:05 -07008247static int complete_fast_pio_out(struct kvm_vcpu *vcpu)
8248{
8249 vcpu->arch.pio.count = 0;
8250
8251 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip)))
8252 return 1;
8253
8254 return kvm_skip_emulated_instruction(vcpu);
8255}
8256
Sean Christophersondca7f122018-03-08 08:57:27 -08008257static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size,
8258 unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01008259{
Sean Christophersonde3cd112019-04-30 10:36:17 -07008260 unsigned long val = kvm_rax_read(vcpu);
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008261 int ret = emulator_pio_out(vcpu, size, port, &val, 1);
8262
Sean Christopherson8764ed52019-04-29 07:04:15 -07008263 if (ret)
8264 return ret;
Sean Christopherson45def772019-03-11 20:01:05 -07008265
Sean Christopherson8764ed52019-04-29 07:04:15 -07008266 /*
8267 * Workaround userspace that relies on old KVM behavior of %rip being
8268 * incremented prior to exiting to userspace to handle "OUT 0x7e".
8269 */
8270 if (port == 0x7e &&
8271 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) {
8272 vcpu->arch.complete_userspace_io =
8273 complete_fast_pio_out_port_0x7e;
8274 kvm_skip_emulated_instruction(vcpu);
8275 } else {
Sean Christopherson45def772019-03-11 20:01:05 -07008276 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
8277 vcpu->arch.complete_userspace_io = complete_fast_pio_out;
8278 }
Sean Christopherson8764ed52019-04-29 07:04:15 -07008279 return 0;
Carsten Ottede7d7892007-10-30 18:44:25 +01008280}
Carsten Ottede7d7892007-10-30 18:44:25 +01008281
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008282static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
8283{
8284 unsigned long val;
8285
8286 /* We should only ever be called with arch.pio.count equal to 1 */
8287 BUG_ON(vcpu->arch.pio.count != 1);
8288
Sean Christopherson45def772019-03-11 20:01:05 -07008289 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) {
8290 vcpu->arch.pio.count = 0;
8291 return 1;
8292 }
8293
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008294 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008295 val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008296
8297 /*
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008298 * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008299 * the copy and tracing
8300 */
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008301 emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1);
Sean Christophersonde3cd112019-04-30 10:36:17 -07008302 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008303
Sean Christopherson45def772019-03-11 20:01:05 -07008304 return kvm_skip_emulated_instruction(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008305}
8306
Sean Christophersondca7f122018-03-08 08:57:27 -08008307static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size,
8308 unsigned short port)
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008309{
8310 unsigned long val;
8311 int ret;
8312
8313 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008314 val = (size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008315
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008316 ret = emulator_pio_in(vcpu, size, port, &val, 1);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008317 if (ret) {
Sean Christophersonde3cd112019-04-30 10:36:17 -07008318 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008319 return ret;
8320 }
8321
Sean Christopherson45def772019-03-11 20:01:05 -07008322 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008323 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
8324
8325 return 0;
8326}
Sean Christophersondca7f122018-03-08 08:57:27 -08008327
8328int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in)
8329{
Sean Christopherson45def772019-03-11 20:01:05 -07008330 int ret;
Sean Christophersondca7f122018-03-08 08:57:27 -08008331
Sean Christophersondca7f122018-03-08 08:57:27 -08008332 if (in)
Sean Christopherson45def772019-03-11 20:01:05 -07008333 ret = kvm_fast_pio_in(vcpu, size, port);
Sean Christophersondca7f122018-03-08 08:57:27 -08008334 else
Sean Christopherson45def772019-03-11 20:01:05 -07008335 ret = kvm_fast_pio_out(vcpu, size, port);
8336 return ret && kvm_skip_emulated_instruction(vcpu);
Sean Christophersondca7f122018-03-08 08:57:27 -08008337}
8338EXPORT_SYMBOL_GPL(kvm_fast_pio);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008339
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008340static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008341{
Tejun Heo0a3aee02010-12-18 16:28:55 +01008342 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008343 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008344}
8345
8346static void tsc_khz_changed(void *data)
8347{
8348 struct cpufreq_freqs *freq = data;
8349 unsigned long khz = 0;
8350
8351 if (data)
8352 khz = freq->new;
8353 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8354 khz = cpufreq_quick_get(raw_smp_processor_id());
8355 if (!khz)
8356 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01008357 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008358}
8359
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008360#ifdef CONFIG_X86_64
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008361static void kvm_hyperv_tsc_notifier(void)
8362{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008363 struct kvm *kvm;
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008364 int cpu;
8365
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008366 mutex_lock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008367 list_for_each_entry(kvm, &vm_list, vm_list)
8368 kvm_make_mclock_inprogress_request(kvm);
8369
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008370 /* no guest entries from this point */
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008371 hyperv_stop_tsc_emulation();
8372
8373 /* TSC frequency always matches when on Hyper-V */
8374 for_each_present_cpu(cpu)
8375 per_cpu(cpu_tsc_khz, cpu) = tsc_khz;
8376 kvm_max_guest_tsc_khz = tsc_khz;
8377
8378 list_for_each_entry(kvm, &vm_list, vm_list) {
Paolo Bonzini869b4422021-09-16 18:15:36 +00008379 __kvm_start_pvclock_update(kvm);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008380 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008381 kvm_end_pvclock_update(kvm);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008382 }
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008383
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008384 mutex_unlock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008385}
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008386#endif
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008387
Viresh Kumardf240142019-04-29 15:03:58 +05308388static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008389{
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008390 struct kvm *kvm;
8391 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00008392 int send_ipi = 0;
8393 unsigned long i;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008394
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008395 /*
8396 * We allow guests to temporarily run on slowing clocks,
8397 * provided we notify them after, or to run on accelerating
8398 * clocks, provided we notify them before. Thus time never
8399 * goes backwards.
8400 *
8401 * However, we have a problem. We can't atomically update
8402 * the frequency of a given CPU from this function; it is
8403 * merely a notifier, which can be called from any CPU.
8404 * Changing the TSC frequency at arbitrary points in time
8405 * requires a recomputation of local variables related to
8406 * the TSC for each VCPU. We must flag these local variables
8407 * to be updated and be sure the update takes place with the
8408 * new frequency before any guests proceed.
8409 *
8410 * Unfortunately, the combination of hotplug CPU and frequency
8411 * change creates an intractable locking scenario; the order
8412 * of when these callouts happen is undefined with respect to
8413 * CPU hotplug, and they can race with each other. As such,
8414 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
8415 * undefined; you can actually have a CPU frequency change take
8416 * place in between the computation of X and the setting of the
8417 * variable. To protect against this problem, all updates of
8418 * the per_cpu tsc_khz variable are done in an interrupt
8419 * protected IPI, and all callers wishing to update the value
8420 * must wait for a synchronous IPI to complete (which is trivial
8421 * if the caller is on the CPU already). This establishes the
8422 * necessary total order on variable updates.
8423 *
8424 * Note that because a guest time update may take place
8425 * anytime after the setting of the VCPU's request bit, the
8426 * correct TSC value must be set before the request. However,
8427 * to ensure the update actually makes it to any guest which
8428 * starts running in hardware virtualization between the set
8429 * and the acquisition of the spinlock, we must also ping the
8430 * CPU after setting the request bit.
8431 *
8432 */
8433
Viresh Kumardf240142019-04-29 15:03:58 +05308434 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008435
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008436 mutex_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008437 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008438 kvm_for_each_vcpu(i, vcpu, kvm) {
Viresh Kumardf240142019-04-29 15:03:58 +05308439 if (vcpu->cpu != cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008440 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10008441 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008442 if (vcpu->cpu != raw_smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008443 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008444 }
8445 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008446 mutex_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008447
8448 if (freq->old < freq->new && send_ipi) {
8449 /*
8450 * We upscale the frequency. Must make the guest
8451 * doesn't see old kvmclock values while running with
8452 * the new frequency, otherwise we risk the guest sees
8453 * time go backwards.
8454 *
8455 * In case we update the frequency for another cpu
8456 * (which might be in guest context) send an interrupt
8457 * to kick the cpu out of guest context. Next time
8458 * guest context is entered kvmclock will be updated,
8459 * so the guest will not see stale values.
8460 */
Viresh Kumardf240142019-04-29 15:03:58 +05308461 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008462 }
Viresh Kumardf240142019-04-29 15:03:58 +05308463}
8464
8465static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
8466 void *data)
8467{
8468 struct cpufreq_freqs *freq = data;
8469 int cpu;
8470
8471 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
8472 return 0;
8473 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
8474 return 0;
8475
8476 for_each_cpu(cpu, freq->policy->cpus)
8477 __kvmclock_cpufreq_notifier(freq, cpu);
8478
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008479 return 0;
8480}
8481
8482static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008483 .notifier_call = kvmclock_cpufreq_notifier
8484};
8485
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008486static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008487{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008488 tsc_khz_changed(NULL);
8489 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008490}
8491
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008492static void kvm_timer_init(void)
8493{
Zachary Amsdenc2855452010-09-18 14:38:15 -10008494 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308495
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008496 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10008497#ifdef CONFIG_CPU_FREQ
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008498 struct cpufreq_policy *policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02008499 int cpu;
8500
Avi Kivity3e26f232010-12-16 12:16:34 +02008501 cpu = get_cpu();
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008502 policy = cpufreq_cpu_get(cpu);
Wanpeng Li9a119972020-03-02 15:15:36 +08008503 if (policy) {
8504 if (policy->cpuinfo.max_freq)
8505 max_tsc_khz = policy->cpuinfo.max_freq;
8506 cpufreq_cpu_put(policy);
8507 }
Avi Kivity3e26f232010-12-16 12:16:34 +02008508 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10008509#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008510 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
8511 CPUFREQ_TRANSITION_NOTIFIER);
8512 }
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308513
Thomas Gleixner73c1b412016-12-21 20:19:54 +01008514 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008515 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008516}
8517
Andi Kleendd60d212017-07-25 17:20:32 -07008518DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
8519EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008520
Gleb Natapovf5132b02011-11-10 14:57:22 +02008521int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008522{
Alex,Shi086c9852011-10-20 15:34:01 +08008523 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008524}
8525
8526static int kvm_is_user_mode(void)
8527{
8528 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008529
Alex,Shi086c9852011-10-20 15:34:01 +08008530 if (__this_cpu_read(current_vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008531 user_mode = static_call(kvm_x86_get_cpl)(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008532
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008533 return user_mode != 0;
8534}
8535
8536static unsigned long kvm_get_guest_ip(void)
8537{
8538 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008539
Alex,Shi086c9852011-10-20 15:34:01 +08008540 if (__this_cpu_read(current_vcpu))
8541 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008542
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008543 return ip;
8544}
8545
Luwei Kang8479e042019-02-18 19:26:07 -05008546static void kvm_handle_intel_pt_intr(void)
8547{
8548 struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu);
8549
8550 kvm_make_request(KVM_REQ_PMI, vcpu);
8551 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
8552 (unsigned long *)&vcpu->arch.pmu.global_status);
8553}
8554
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008555static struct perf_guest_info_callbacks kvm_guest_cbs = {
8556 .is_in_guest = kvm_is_in_guest,
8557 .is_user_mode = kvm_is_user_mode,
8558 .get_guest_ip = kvm_get_guest_ip,
Luwei Kang8479e042019-02-18 19:26:07 -05008559 .handle_intel_pt_intr = kvm_handle_intel_pt_intr,
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008560};
8561
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008562#ifdef CONFIG_X86_64
8563static void pvclock_gtod_update_fn(struct work_struct *work)
8564{
Marcelo Tosattid8281992012-11-27 23:29:01 -02008565 struct kvm *kvm;
Marcelo Tosattid8281992012-11-27 23:29:01 -02008566 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +00008567 unsigned long i;
Marcelo Tosattid8281992012-11-27 23:29:01 -02008568
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008569 mutex_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008570 list_for_each_entry(kvm, &vm_list, vm_list)
8571 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08008572 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008573 atomic_set(&kvm_guest_has_master_clock, 0);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008574 mutex_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008575}
8576
8577static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
8578
8579/*
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008580 * Indirection to move queue_work() out of the tk_core.seq write held
8581 * region to prevent possible deadlocks against time accessors which
8582 * are invoked with work related locks held.
8583 */
8584static void pvclock_irq_work_fn(struct irq_work *w)
8585{
8586 queue_work(system_long_wq, &pvclock_gtod_work);
8587}
8588
8589static DEFINE_IRQ_WORK(pvclock_irq_work, pvclock_irq_work_fn);
8590
8591/*
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008592 * Notification about pvclock gtod data update.
8593 */
8594static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
8595 void *priv)
8596{
8597 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
8598 struct timekeeper *tk = priv;
8599
8600 update_pvclock_gtod(tk);
8601
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008602 /*
8603 * Disable master clock if host does not trust, or does not use,
8604 * TSC based clocksource. Delegate queue_work() to irq_work as
8605 * this is invoked with tk_core.seq write held.
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008606 */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01008607 if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) &&
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008608 atomic_read(&kvm_guest_has_master_clock) != 0)
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008609 irq_work_queue(&pvclock_irq_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008610 return 0;
8611}
8612
8613static struct notifier_block pvclock_gtod_notifier = {
8614 .notifier_call = pvclock_gtod_notify,
8615};
8616#endif
8617
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008618int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02008619{
Sean Christophersond008dfd2020-03-21 13:25:56 -07008620 struct kvm_x86_init_ops *ops = opaque;
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008621 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008622
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008623 if (kvm_x86_ops.hardware_enable) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008624 pr_err("kvm: already loaded vendor module '%s'\n", kvm_x86_ops.name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008625 r = -EEXIST;
8626 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008627 }
8628
8629 if (!ops->cpu_has_kvm_support()) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008630 pr_err_ratelimited("kvm: no hardware support for '%s'\n",
8631 ops->runtime_ops->name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008632 r = -EOPNOTSUPP;
8633 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008634 }
8635 if (ops->disabled_by_bios()) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008636 pr_err_ratelimited("kvm: support for '%s' disabled by bios\n",
8637 ops->runtime_ops->name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008638 r = -EOPNOTSUPP;
8639 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008640 }
8641
Marc Orrb666a4b2018-11-06 14:53:56 -08008642 /*
8643 * KVM explicitly assumes that the guest has an FPU and
8644 * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the
8645 * vCPU's FPU state as a fxregs_state struct.
8646 */
8647 if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) {
8648 printk(KERN_ERR "kvm: inadequate fpu\n");
8649 r = -EOPNOTSUPP;
8650 goto out;
8651 }
8652
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008653 r = -ENOMEM;
Marc Orrb666a4b2018-11-06 14:53:56 -08008654
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008655 x86_emulator_cache = kvm_alloc_emulator_cache();
8656 if (!x86_emulator_cache) {
8657 pr_err("kvm: failed to allocate cache for x86 emulator\n");
Thomas Gleixnerd69c1382021-10-22 20:55:53 +02008658 goto out;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008659 }
8660
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008661 user_return_msrs = alloc_percpu(struct kvm_user_return_msrs);
8662 if (!user_return_msrs) {
8663 printk(KERN_ERR "kvm: failed to allocate percpu kvm_user_return_msrs\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008664 goto out_free_x86_emulator_cache;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008665 }
Sean Christophersone5fda4b2021-05-04 10:17:32 -07008666 kvm_nr_uret_msrs = 0;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008667
Avi Kivity97db56c2008-01-13 13:23:56 +02008668 r = kvm_mmu_module_init();
8669 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008670 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02008671
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008672 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008673
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008674 perf_register_guest_info_callbacks(&kvm_guest_cbs);
8675
Sean Christophersoncfc48182020-03-02 15:56:23 -08008676 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +08008677 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
Sean Christophersoncfc48182020-03-02 15:56:23 -08008678 supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0;
8679 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08008680
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08008681 if (pi_inject_timer == -1)
8682 pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008683#ifdef CONFIG_X86_64
8684 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008685
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008686 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008687 set_hv_tscchange_cb(kvm_hyperv_tsc_notifier);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008688#endif
8689
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008690 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008691
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008692out_free_percpu:
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008693 free_percpu(user_return_msrs);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008694out_free_x86_emulator_cache:
8695 kmem_cache_destroy(x86_emulator_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008696out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008697 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02008698}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008699
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008700void kvm_arch_exit(void)
8701{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008702#ifdef CONFIG_X86_64
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008703 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008704 clear_hv_tscchange_cb();
8705#endif
David Matlackcef84c32016-12-16 14:30:36 -08008706 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008707 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
8708
Jan Kiszka888d2562009-04-17 19:24:58 +02008709 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8710 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
8711 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008712 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008713#ifdef CONFIG_X86_64
8714 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008715 irq_work_sync(&pvclock_irq_work);
Thomas Gleixner594b27e2021-05-05 23:48:17 +02008716 cancel_work_sync(&pvclock_gtod_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008717#endif
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008718 kvm_x86_ops.hardware_enable = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008719 kvm_mmu_module_exit();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008720 free_percpu(user_return_msrs);
Wanpeng Lidfdc0a72021-06-10 21:59:33 -07008721 kmem_cache_destroy(x86_emulator_cache);
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008722#ifdef CONFIG_KVM_XEN
Paolo Bonzinic462f852021-02-26 04:49:06 -05008723 static_key_deferred_flush(&kvm_xen_enabled);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +00008724 WARN_ON(static_branch_unlikely(&kvm_xen_enabled.key));
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008725#endif
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008726}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008727
Sean Christopherson14601792021-10-08 19:12:05 -07008728static int __kvm_emulate_halt(struct kvm_vcpu *vcpu, int state, int reason)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008729{
Sean Christopherson91b99ea2021-10-08 19:12:06 -07008730 /*
8731 * The vCPU has halted, e.g. executed HLT. Update the run state if the
8732 * local APIC is in-kernel, the run loop will detect the non-runnable
8733 * state and halt the vCPU. Exit to userspace if the local APIC is
8734 * managed by userspace, in which case userspace is responsible for
8735 * handling wake events.
8736 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05008737 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008738 if (lapic_in_kernel(vcpu)) {
Tom Lendacky647daca2021-01-04 14:20:01 -06008739 vcpu->arch.mp_state = state;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008740 return 1;
8741 } else {
Tom Lendacky647daca2021-01-04 14:20:01 -06008742 vcpu->run->exit_reason = reason;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008743 return 0;
8744 }
8745}
Tom Lendacky647daca2021-01-04 14:20:01 -06008746
Sean Christopherson14601792021-10-08 19:12:05 -07008747int kvm_emulate_halt_noskip(struct kvm_vcpu *vcpu)
Tom Lendacky647daca2021-01-04 14:20:01 -06008748{
Sean Christopherson14601792021-10-08 19:12:05 -07008749 return __kvm_emulate_halt(vcpu, KVM_MP_STATE_HALTED, KVM_EXIT_HLT);
Tom Lendacky647daca2021-01-04 14:20:01 -06008750}
Sean Christopherson14601792021-10-08 19:12:05 -07008751EXPORT_SYMBOL_GPL(kvm_emulate_halt_noskip);
Joel Schopp5cb56052015-03-02 13:43:31 -06008752
8753int kvm_emulate_halt(struct kvm_vcpu *vcpu)
8754{
Kyle Huey6affcbe2016-11-29 12:40:40 -08008755 int ret = kvm_skip_emulated_instruction(vcpu);
8756 /*
8757 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
8758 * KVM_EXIT_DEBUG here.
8759 */
Sean Christopherson14601792021-10-08 19:12:05 -07008760 return kvm_emulate_halt_noskip(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06008761}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008762EXPORT_SYMBOL_GPL(kvm_emulate_halt);
8763
Tom Lendacky647daca2021-01-04 14:20:01 -06008764int kvm_emulate_ap_reset_hold(struct kvm_vcpu *vcpu)
8765{
8766 int ret = kvm_skip_emulated_instruction(vcpu);
8767
Sean Christopherson14601792021-10-08 19:12:05 -07008768 return __kvm_emulate_halt(vcpu, KVM_MP_STATE_AP_RESET_HOLD,
8769 KVM_EXIT_AP_RESET_HOLD) && ret;
Tom Lendacky647daca2021-01-04 14:20:01 -06008770}
8771EXPORT_SYMBOL_GPL(kvm_emulate_ap_reset_hold);
8772
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008773#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008774static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
8775 unsigned long clock_type)
8776{
8777 struct kvm_clock_pairing clock_pairing;
Arnd Bergmann899a31f2018-04-23 10:04:26 +02008778 struct timespec64 ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01008779 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008780 int ret;
8781
8782 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
8783 return -KVM_EOPNOTSUPP;
8784
YANG LI7ca7f3b2021-01-11 17:32:58 +08008785 if (!kvm_get_walltime_and_clockread(&ts, &cycle))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008786 return -KVM_EOPNOTSUPP;
8787
8788 clock_pairing.sec = ts.tv_sec;
8789 clock_pairing.nsec = ts.tv_nsec;
8790 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
8791 clock_pairing.flags = 0;
Liran Alonbcbfbd82018-11-08 00:43:06 +02008792 memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008793
8794 ret = 0;
8795 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
8796 sizeof(struct kvm_clock_pairing)))
8797 ret = -KVM_EFAULT;
8798
8799 return ret;
8800}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008801#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008802
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308803/*
8804 * kvm_pv_kick_cpu_op: Kick a vcpu.
8805 *
8806 * @apicid - apicid of vcpu to be kicked.
8807 */
8808static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
8809{
Raghavendra K T24d21662013-08-26 14:18:35 +05308810 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308811
Peter Xu150a84f2019-12-04 20:07:21 +01008812 lapic_irq.shorthand = APIC_DEST_NOSHORT;
Peter Xuc96001c2019-12-04 20:07:18 +01008813 lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
Longpeng(Mike)ebd28fc2017-08-02 11:20:51 +08008814 lapic_irq.level = 0;
Raghavendra K T24d21662013-08-26 14:18:35 +05308815 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06008816 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308817
Raghavendra K T24d21662013-08-26 14:18:35 +05308818 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08008819 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308820}
8821
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008822bool kvm_apicv_activated(struct kvm *kvm)
8823{
8824 return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0);
8825}
8826EXPORT_SYMBOL_GPL(kvm_apicv_activated);
8827
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008828static void kvm_apicv_init(struct kvm *kvm)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008829{
Sean Christopherson187c8832021-10-21 17:49:27 -07008830 init_rwsem(&kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03008831
Paolo Bonzinief8b4b72021-11-30 07:37:45 -05008832 set_bit(APICV_INHIBIT_REASON_ABSENT,
8833 &kvm->arch.apicv_inhibit_reasons);
8834 if (!enable_apicv)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008835 set_bit(APICV_INHIBIT_REASON_DISABLE,
8836 &kvm->arch.apicv_inhibit_reasons);
8837}
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008838
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008839static void kvm_sched_yield(struct kvm_vcpu *vcpu, unsigned long dest_id)
Wanpeng Li71506292019-06-11 20:23:49 +08008840{
8841 struct kvm_vcpu *target = NULL;
8842 struct kvm_apic_map *map;
8843
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008844 vcpu->stat.directed_yield_attempted++;
8845
Wanpeng Li72b268a2021-05-18 05:00:32 -07008846 if (single_task_running())
8847 goto no_yield;
8848
Wanpeng Li71506292019-06-11 20:23:49 +08008849 rcu_read_lock();
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008850 map = rcu_dereference(vcpu->kvm->arch.apic_map);
Wanpeng Li71506292019-06-11 20:23:49 +08008851
8852 if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id])
8853 target = map->phys_map[dest_id]->vcpu;
8854
8855 rcu_read_unlock();
8856
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008857 if (!target || !READ_ONCE(target->ready))
8858 goto no_yield;
8859
Wanpeng Lia1fa4cb2021-04-09 12:18:31 +08008860 /* Ignore requests to yield to self */
8861 if (vcpu == target)
8862 goto no_yield;
8863
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008864 if (kvm_vcpu_yield_to(target) <= 0)
8865 goto no_yield;
8866
8867 vcpu->stat.directed_yield_successful++;
8868
8869no_yield:
8870 return;
Wanpeng Li71506292019-06-11 20:23:49 +08008871}
8872
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008873static int complete_hypercall_exit(struct kvm_vcpu *vcpu)
8874{
8875 u64 ret = vcpu->run->hypercall.ret;
8876
8877 if (!is_64_bit_mode(vcpu))
8878 ret = (u32)ret;
8879 kvm_rax_write(vcpu, ret);
8880 ++vcpu->stat.hypercalls;
8881 return kvm_skip_emulated_instruction(vcpu);
8882}
8883
Hollis Blanchard8776e512007-10-31 17:24:24 -05008884int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
8885{
8886 unsigned long nr, a0, a1, a2, a3, ret;
Marian Rotariu6356ee02018-04-30 12:23:01 +03008887 int op_64_bit;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008888
Joao Martins23200b72018-06-13 09:55:44 -04008889 if (kvm_xen_hypercall_enabled(vcpu->kvm))
8890 return kvm_xen_hypercall(vcpu);
8891
Vitaly Kuznetsov8f014552021-01-26 14:48:14 +01008892 if (kvm_hv_hypercall_enabled(vcpu))
Radim Krčmář696ca772018-05-24 17:50:56 +02008893 return kvm_hv_hypercall(vcpu);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02008894
Sean Christophersonde3cd112019-04-30 10:36:17 -07008895 nr = kvm_rax_read(vcpu);
8896 a0 = kvm_rbx_read(vcpu);
8897 a1 = kvm_rcx_read(vcpu);
8898 a2 = kvm_rdx_read(vcpu);
8899 a3 = kvm_rsi_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008900
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008901 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04008902
Tom Lendackyb5aead02021-05-24 12:48:57 -05008903 op_64_bit = is_64_bit_hypercall(vcpu);
Nadav Amita449c7a2014-06-18 17:19:24 +03008904 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05008905 nr &= 0xFFFFFFFF;
8906 a0 &= 0xFFFFFFFF;
8907 a1 &= 0xFFFFFFFF;
8908 a2 &= 0xFFFFFFFF;
8909 a3 &= 0xFFFFFFFF;
8910 }
8911
Jason Baronb36464772021-01-14 22:27:56 -05008912 if (static_call(kvm_x86_get_cpl)(vcpu) != 0) {
Jan Kiszka07708c42009-08-03 18:43:28 +02008913 ret = -KVM_EPERM;
Radim Krčmář696ca772018-05-24 17:50:56 +02008914 goto out;
Jan Kiszka07708c42009-08-03 18:43:28 +02008915 }
8916
Oliver Upton66570e92020-08-18 15:24:28 +00008917 ret = -KVM_ENOSYS;
8918
Hollis Blanchard8776e512007-10-31 17:24:24 -05008919 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02008920 case KVM_HC_VAPIC_POLL_IRQ:
8921 ret = 0;
8922 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308923 case KVM_HC_KICK_CPU:
Oliver Upton66570e92020-08-18 15:24:28 +00008924 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT))
8925 break;
8926
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308927 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008928 kvm_sched_yield(vcpu, a1);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308929 ret = 0;
8930 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008931#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008932 case KVM_HC_CLOCK_PAIRING:
8933 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
8934 break;
Sean Christopherson1ed199a2019-01-23 09:22:39 -08008935#endif
Wanpeng Li4180bf12018-07-23 14:39:54 +08008936 case KVM_HC_SEND_IPI:
Oliver Upton66570e92020-08-18 15:24:28 +00008937 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SEND_IPI))
8938 break;
8939
Wanpeng Li4180bf12018-07-23 14:39:54 +08008940 ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit);
8941 break;
Wanpeng Li71506292019-06-11 20:23:49 +08008942 case KVM_HC_SCHED_YIELD:
Oliver Upton66570e92020-08-18 15:24:28 +00008943 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SCHED_YIELD))
8944 break;
8945
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008946 kvm_sched_yield(vcpu, a0);
Wanpeng Li71506292019-06-11 20:23:49 +08008947 ret = 0;
8948 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008949 case KVM_HC_MAP_GPA_RANGE: {
8950 u64 gpa = a0, npages = a1, attrs = a2;
8951
8952 ret = -KVM_ENOSYS;
8953 if (!(vcpu->kvm->arch.hypercall_exit_enabled & (1 << KVM_HC_MAP_GPA_RANGE)))
8954 break;
8955
8956 if (!PAGE_ALIGNED(gpa) || !npages ||
8957 gpa_to_gfn(gpa) + npages <= gpa_to_gfn(gpa)) {
8958 ret = -KVM_EINVAL;
8959 break;
8960 }
8961
8962 vcpu->run->exit_reason = KVM_EXIT_HYPERCALL;
8963 vcpu->run->hypercall.nr = KVM_HC_MAP_GPA_RANGE;
8964 vcpu->run->hypercall.args[0] = gpa;
8965 vcpu->run->hypercall.args[1] = npages;
8966 vcpu->run->hypercall.args[2] = attrs;
8967 vcpu->run->hypercall.longmode = op_64_bit;
8968 vcpu->arch.complete_userspace_io = complete_hypercall_exit;
8969 return 0;
8970 }
Hollis Blanchard8776e512007-10-31 17:24:24 -05008971 default:
8972 ret = -KVM_ENOSYS;
8973 break;
8974 }
Radim Krčmář696ca772018-05-24 17:50:56 +02008975out:
Nadav Amita449c7a2014-06-18 17:19:24 +03008976 if (!op_64_bit)
8977 ret = (u32)ret;
Sean Christophersonde3cd112019-04-30 10:36:17 -07008978 kvm_rax_write(vcpu, ret);
Marian Rotariu6356ee02018-04-30 12:23:01 +03008979
Amit Shahf11c3a82008-02-21 01:00:30 +05308980 ++vcpu->stat.hypercalls;
Marian Rotariu6356ee02018-04-30 12:23:01 +03008981 return kvm_skip_emulated_instruction(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008982}
8983EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
8984
Jan Kiszkab6785de2012-09-20 07:43:17 +02008985static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008986{
Avi Kivityd6aa1002011-04-20 15:47:13 +03008987 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008988 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008989 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008990
Jason Baronb36464772021-01-14 22:27:56 -05008991 static_call(kvm_x86_patch_hypercall)(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008992
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01008993 return emulator_write_emulated(ctxt, rip, instruction, 3,
8994 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008995}
8996
Avi Kivity851ba692009-08-24 11:10:17 +03008997static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008998{
Matt Gingell782d4222015-11-16 15:26:00 -08008999 return vcpu->run->request_interrupt_window &&
9000 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009001}
9002
Avi Kivity851ba692009-08-24 11:10:17 +03009003static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009004{
Avi Kivity851ba692009-08-24 11:10:17 +03009005 struct kvm_run *kvm_run = vcpu->run;
9006
Tom Lendackyf1c63662020-12-14 10:29:50 -05009007 /*
9008 * if_flag is obsolete and useless, so do not bother
9009 * setting it for SEV-ES guests. Userspace can just
9010 * use kvm_run->ready_for_interrupt_injection.
9011 */
9012 kvm_run->if_flag = !vcpu->arch.guest_state_protected
9013 && (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
9014
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02009015 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009016 kvm_run->apic_base = kvm_get_apic_base(vcpu);
David Woodhousef3d14362021-10-26 04:12:38 +01009017
9018 /*
9019 * The call to kvm_ready_for_interrupt_injection() may end up in
9020 * kvm_xen_has_interrupt() which may require the srcu lock to be
9021 * held, to protect against changes in the vcpu_info address.
9022 */
9023 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Matt Gingell127a4572015-11-17 17:32:05 +01009024 kvm_run->ready_for_interrupt_injection =
9025 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08009026 kvm_vcpu_ready_for_interrupt_injection(vcpu);
David Woodhousef3d14362021-10-26 04:12:38 +01009027 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08009028
9029 if (is_smm(vcpu))
9030 kvm_run->flags |= KVM_RUN_X86_SMM;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009031}
9032
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009033static void update_cr8_intercept(struct kvm_vcpu *vcpu)
9034{
9035 int max_irr, tpr;
9036
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009037 if (!kvm_x86_ops.update_cr8_intercept)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009038 return;
9039
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01009040 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03009041 return;
9042
Andrey Smetanind62caab2015-11-10 15:36:33 +03009043 if (vcpu->arch.apicv_active)
9044 return;
9045
Gleb Natapov8db3baa2009-05-11 13:35:54 +03009046 if (!vcpu->arch.apic->vapic_addr)
9047 max_irr = kvm_lapic_find_highest_irr(vcpu);
9048 else
9049 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009050
9051 if (max_irr != -1)
9052 max_irr >>= 4;
9053
9054 tpr = kvm_lapic_get_cr8(vcpu);
9055
Jason Baronb36464772021-01-14 22:27:56 -05009056 static_call(kvm_x86_update_cr8_intercept)(vcpu, tpr, max_irr);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009057}
9058
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009059
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009060int kvm_check_nested_events(struct kvm_vcpu *vcpu)
9061{
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009062 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
9063 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9064 return 1;
9065 }
9066
9067 return kvm_x86_ops.nested_ops->check_events(vcpu);
9068}
9069
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009070static void kvm_inject_exception(struct kvm_vcpu *vcpu)
9071{
9072 if (vcpu->arch.exception.error_code && !is_protmode(vcpu))
9073 vcpu->arch.exception.error_code = false;
9074 static_call(kvm_x86_queue_exception)(vcpu);
9075}
9076
Jim Mattsona5f69092021-06-04 10:26:03 -07009077static int inject_pending_event(struct kvm_vcpu *vcpu, bool *req_immediate_exit)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009078{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01009079 int r;
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009080 bool can_inject = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +01009081
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009082 /* try to reinject previous events if any */
Wanpeng Li664f8e22017-08-24 03:35:09 -07009083
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009084 if (vcpu->arch.exception.injected) {
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009085 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009086 can_inject = false;
9087 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07009088 /*
Liran Alona042c262018-03-23 03:01:32 +03009089 * Do not inject an NMI or interrupt if there is a pending
9090 * exception. Exceptions and interrupts are recognized at
9091 * instruction boundaries, i.e. the start of an instruction.
9092 * Trap-like exceptions, e.g. #DB, have higher priority than
9093 * NMIs and interrupts, i.e. traps are recognized before an
9094 * NMI/interrupt that's pending on the same instruction.
9095 * Fault-like exceptions, e.g. #GP and #PF, are the lowest
9096 * priority, but are only generated (pended) during instruction
9097 * execution, i.e. a pending fault-like exception means the
9098 * fault occurred on the *previous* instruction and must be
9099 * serviced prior to recognizing any new events in order to
9100 * fully complete the previous instruction.
Wanpeng Li664f8e22017-08-24 03:35:09 -07009101 */
Liran Alon1a680e32018-03-23 03:01:33 +03009102 else if (!vcpu->arch.exception.pending) {
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009103 if (vcpu->arch.nmi_injected) {
Jason Baronb36464772021-01-14 22:27:56 -05009104 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009105 can_inject = false;
9106 } else if (vcpu->arch.interrupt.injected) {
Jason Baronb36464772021-01-14 22:27:56 -05009107 static_call(kvm_x86_set_irq)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009108 can_inject = false;
9109 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07009110 }
9111
Sean Christopherson3b82b8d2020-04-22 19:25:47 -07009112 WARN_ON_ONCE(vcpu->arch.exception.injected &&
9113 vcpu->arch.exception.pending);
9114
Liran Alon1a680e32018-03-23 03:01:33 +03009115 /*
9116 * Call check_nested_events() even if we reinjected a previous event
9117 * in order for caller to determine if it should require immediate-exit
9118 * from L2 to L1 due to pending L1 events which require exit
9119 * from L2 to L1.
9120 */
Paolo Bonzini56083bd2020-04-17 10:32:53 -04009121 if (is_guest_mode(vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009122 r = kvm_check_nested_events(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009123 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009124 goto out;
Wanpeng Li664f8e22017-08-24 03:35:09 -07009125 }
9126
9127 /* try to inject new event if pending */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03009128 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02009129 trace_kvm_inj_exception(vcpu->arch.exception.nr,
9130 vcpu->arch.exception.has_error_code,
9131 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03009132
Wanpeng Li664f8e22017-08-24 03:35:09 -07009133 vcpu->arch.exception.pending = false;
9134 vcpu->arch.exception.injected = true;
9135
Nadav Amitd6e8c852014-07-24 14:51:24 +03009136 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
9137 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
9138 X86_EFLAGS_RF);
9139
Jim Mattsonf10c7292018-10-16 14:29:23 -07009140 if (vcpu->arch.exception.nr == DB_VECTOR) {
Jim Mattsonf10c7292018-10-16 14:29:23 -07009141 kvm_deliver_exception_payload(vcpu);
9142 if (vcpu->arch.dr7 & DR7_GD) {
9143 vcpu->arch.dr7 &= ~DR7_GD;
9144 kvm_update_dr7(vcpu);
9145 }
Nadav Amit6bdf0662014-09-30 20:49:14 +03009146 }
9147
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009148 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009149 can_inject = false;
Liran Alon1a680e32018-03-23 03:01:33 +03009150 }
9151
Maxim Levitsky61e5f692021-08-11 15:29:26 +03009152 /* Don't inject interrupts if the user asked to avoid doing so */
9153 if (vcpu->guest_debug & KVM_GUESTDBG_BLOCKIRQ)
9154 return 0;
9155
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009156 /*
9157 * Finally, inject interrupt events. If an event cannot be injected
9158 * due to architectural conditions (e.g. IF=0) a window-open exit
9159 * will re-request KVM_REQ_EVENT. Sometimes however an event is pending
9160 * and can architecturally be injected, but we cannot do it right now:
9161 * an interrupt could have arrived just now and we have to inject it
9162 * as a vmexit, or there could already an event in the queue, which is
9163 * indicated by can_inject. In that case we request an immediate exit
9164 * in order to make progress and get back here for another iteration.
9165 * The kvm_x86_ops hooks communicate this by returning -EBUSY.
9166 */
9167 if (vcpu->arch.smi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05009168 r = can_inject ? static_call(kvm_x86_smi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009169 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009170 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009171 if (r) {
9172 vcpu->arch.smi_pending = false;
9173 ++vcpu->arch.smi_count;
9174 enter_smm(vcpu);
9175 can_inject = false;
9176 } else
Jason Baronb36464772021-01-14 22:27:56 -05009177 static_call(kvm_x86_enable_smi_window)(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009178 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009179
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009180 if (vcpu->arch.nmi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05009181 r = can_inject ? static_call(kvm_x86_nmi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009182 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009183 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009184 if (r) {
9185 --vcpu->arch.nmi_pending;
9186 vcpu->arch.nmi_injected = true;
Jason Baronb36464772021-01-14 22:27:56 -05009187 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009188 can_inject = false;
Jason Baronb36464772021-01-14 22:27:56 -05009189 WARN_ON(static_call(kvm_x86_nmi_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009190 }
9191 if (vcpu->arch.nmi_pending)
Jason Baronb36464772021-01-14 22:27:56 -05009192 static_call(kvm_x86_enable_nmi_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009193 }
9194
9195 if (kvm_cpu_has_injectable_intr(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05009196 r = can_inject ? static_call(kvm_x86_interrupt_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009197 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009198 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009199 if (r) {
9200 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), false);
Jason Baronb36464772021-01-14 22:27:56 -05009201 static_call(kvm_x86_set_irq)(vcpu);
9202 WARN_ON(static_call(kvm_x86_interrupt_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009203 }
9204 if (kvm_cpu_has_injectable_intr(vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009205 static_call(kvm_x86_enable_irq_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009206 }
9207
9208 if (is_guest_mode(vcpu) &&
9209 kvm_x86_ops.nested_ops->hv_timer_pending &&
9210 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
9211 *req_immediate_exit = true;
9212
9213 WARN_ON(vcpu->arch.exception.pending);
Jim Mattsona5f69092021-06-04 10:26:03 -07009214 return 0;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009215
Jim Mattsona5f69092021-06-04 10:26:03 -07009216out:
9217 if (r == -EBUSY) {
9218 *req_immediate_exit = true;
9219 r = 0;
9220 }
9221 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009222}
9223
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009224static void process_nmi(struct kvm_vcpu *vcpu)
9225{
9226 unsigned limit = 2;
9227
9228 /*
9229 * x86 is limited to one NMI running, and one NMI pending after it.
9230 * If an NMI is already in progress, limit further NMIs to just one.
9231 * Otherwise, allow two (and we'll inject the first one immediately).
9232 */
Jason Baronb36464772021-01-14 22:27:56 -05009233 if (static_call(kvm_x86_get_nmi_mask)(vcpu) || vcpu->arch.nmi_injected)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009234 limit = 1;
9235
9236 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
9237 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
9238 kvm_make_request(KVM_REQ_EVENT, vcpu);
9239}
9240
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009241static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009242{
9243 u32 flags = 0;
9244 flags |= seg->g << 23;
9245 flags |= seg->db << 22;
9246 flags |= seg->l << 21;
9247 flags |= seg->avl << 20;
9248 flags |= seg->present << 15;
9249 flags |= seg->dpl << 13;
9250 flags |= seg->s << 12;
9251 flags |= seg->type << 8;
9252 return flags;
9253}
9254
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009255static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009256{
9257 struct kvm_segment seg;
9258 int offset;
9259
9260 kvm_get_segment(vcpu, &seg, n);
9261 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
9262
9263 if (n < 3)
9264 offset = 0x7f84 + n * 12;
9265 else
9266 offset = 0x7f2c + (n - 3) * 12;
9267
9268 put_smstate(u32, buf, offset + 8, seg.base);
9269 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009270 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009271}
9272
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009273#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009274static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009275{
9276 struct kvm_segment seg;
9277 int offset;
9278 u16 flags;
9279
9280 kvm_get_segment(vcpu, &seg, n);
9281 offset = 0x7e00 + n * 16;
9282
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009283 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009284 put_smstate(u16, buf, offset, seg.selector);
9285 put_smstate(u16, buf, offset + 2, flags);
9286 put_smstate(u32, buf, offset + 4, seg.limit);
9287 put_smstate(u64, buf, offset + 8, seg.base);
9288}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009289#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009290
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009291static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009292{
9293 struct desc_ptr dt;
9294 struct kvm_segment seg;
9295 unsigned long val;
9296 int i;
9297
9298 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
9299 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
9300 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
9301 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
9302
9303 for (i = 0; i < 8; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009304 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009305
9306 kvm_get_dr(vcpu, 6, &val);
9307 put_smstate(u32, buf, 0x7fcc, (u32)val);
9308 kvm_get_dr(vcpu, 7, &val);
9309 put_smstate(u32, buf, 0x7fc8, (u32)val);
9310
9311 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9312 put_smstate(u32, buf, 0x7fc4, seg.selector);
9313 put_smstate(u32, buf, 0x7f64, seg.base);
9314 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009315 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009316
9317 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9318 put_smstate(u32, buf, 0x7fc0, seg.selector);
9319 put_smstate(u32, buf, 0x7f80, seg.base);
9320 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009321 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009322
Jason Baronb36464772021-01-14 22:27:56 -05009323 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009324 put_smstate(u32, buf, 0x7f74, dt.address);
9325 put_smstate(u32, buf, 0x7f70, dt.size);
9326
Jason Baronb36464772021-01-14 22:27:56 -05009327 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009328 put_smstate(u32, buf, 0x7f58, dt.address);
9329 put_smstate(u32, buf, 0x7f54, dt.size);
9330
9331 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009332 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009333
9334 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
9335
9336 /* revision id */
9337 put_smstate(u32, buf, 0x7efc, 0x00020000);
9338 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
9339}
9340
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009341#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009342static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009343{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009344 struct desc_ptr dt;
9345 struct kvm_segment seg;
9346 unsigned long val;
9347 int i;
9348
9349 for (i = 0; i < 16; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009350 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009351
9352 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
9353 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
9354
9355 kvm_get_dr(vcpu, 6, &val);
9356 put_smstate(u64, buf, 0x7f68, val);
9357 kvm_get_dr(vcpu, 7, &val);
9358 put_smstate(u64, buf, 0x7f60, val);
9359
9360 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
9361 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
9362 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
9363
9364 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
9365
9366 /* revision id */
9367 put_smstate(u32, buf, 0x7efc, 0x00020064);
9368
9369 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
9370
9371 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9372 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009373 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009374 put_smstate(u32, buf, 0x7e94, seg.limit);
9375 put_smstate(u64, buf, 0x7e98, seg.base);
9376
Jason Baronb36464772021-01-14 22:27:56 -05009377 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009378 put_smstate(u32, buf, 0x7e84, dt.size);
9379 put_smstate(u64, buf, 0x7e88, dt.address);
9380
9381 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9382 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009383 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009384 put_smstate(u32, buf, 0x7e74, seg.limit);
9385 put_smstate(u64, buf, 0x7e78, seg.base);
9386
Jason Baronb36464772021-01-14 22:27:56 -05009387 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009388 put_smstate(u32, buf, 0x7e64, dt.size);
9389 put_smstate(u64, buf, 0x7e68, dt.address);
9390
9391 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009392 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009393}
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009394#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009395
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009396static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02009397{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009398 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02009399 struct desc_ptr dt;
Sean Christophersondbc47392021-06-22 10:56:59 -07009400 unsigned long cr0;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009401 char buf[512];
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009402
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009403 memset(buf, 0, 512);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009404#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009405 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009406 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009407 else
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009408#endif
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009409 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009410
Ladi Prosek0234bf82017-10-11 16:54:40 +02009411 /*
Sean Christophersonecc513e2021-06-09 11:56:19 -07009412 * Give enter_smm() a chance to make ISA-specific changes to the vCPU
9413 * state (e.g. leave guest mode) after we've saved the state into the
9414 * SMM state-save area.
Ladi Prosek0234bf82017-10-11 16:54:40 +02009415 */
Sean Christophersonecc513e2021-06-09 11:56:19 -07009416 static_call(kvm_x86_enter_smm)(vcpu, buf);
Ladi Prosek0234bf82017-10-11 16:54:40 +02009417
Sean Christophersondc872752021-06-09 11:56:15 -07009418 kvm_smm_changed(vcpu, true);
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009419 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009420
Jason Baronb36464772021-01-14 22:27:56 -05009421 if (static_call(kvm_x86_get_nmi_mask)(vcpu))
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009422 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
9423 else
Jason Baronb36464772021-01-14 22:27:56 -05009424 static_call(kvm_x86_set_nmi_mask)(vcpu, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009425
9426 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
9427 kvm_rip_write(vcpu, 0x8000);
9428
9429 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
Jason Baronb36464772021-01-14 22:27:56 -05009430 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009431 vcpu->arch.cr0 = cr0;
9432
Jason Baronb36464772021-01-14 22:27:56 -05009433 static_call(kvm_x86_set_cr4)(vcpu, 0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009434
Paolo Bonzini18c36262015-08-07 12:27:54 +02009435 /* Undocumented: IDT limit is set to zero on entry to SMM. */
9436 dt.address = dt.size = 0;
Jason Baronb36464772021-01-14 22:27:56 -05009437 static_call(kvm_x86_set_idt)(vcpu, &dt);
Paolo Bonzini18c36262015-08-07 12:27:54 +02009438
Paolo Bonzini996ff542020-12-14 07:49:54 -05009439 kvm_set_dr(vcpu, 7, DR7_FIXED_1);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009440
9441 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
9442 cs.base = vcpu->arch.smbase;
9443
9444 ds.selector = 0;
9445 ds.base = 0;
9446
9447 cs.limit = ds.limit = 0xffffffff;
9448 cs.type = ds.type = 0x3;
9449 cs.dpl = ds.dpl = 0;
9450 cs.db = ds.db = 0;
9451 cs.s = ds.s = 1;
9452 cs.l = ds.l = 0;
9453 cs.g = ds.g = 1;
9454 cs.avl = ds.avl = 0;
9455 cs.present = ds.present = 1;
9456 cs.unusable = ds.unusable = 0;
9457 cs.padding = ds.padding = 0;
9458
9459 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
9460 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
9461 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
9462 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
9463 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
9464 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
9465
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009466#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009467 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Jason Baronb36464772021-01-14 22:27:56 -05009468 static_call(kvm_x86_set_efer)(vcpu, 0);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009469#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009470
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08009471 kvm_update_cpuid_runtime(vcpu);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009472 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009473}
9474
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009475static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009476{
9477 vcpu->arch.smi_pending = true;
9478 kvm_make_request(KVM_REQ_EVENT, vcpu);
9479}
9480
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009481void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
9482 unsigned long *vcpu_bitmap)
9483{
Vitaly Kuznetsov620b2432021-09-03 09:51:41 +02009484 kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC, vcpu_bitmap);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009485}
9486
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01009487void kvm_make_scan_ioapic_request(struct kvm *kvm)
9488{
9489 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
9490}
9491
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009492void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
9493{
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009494 bool activate;
9495
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009496 if (!lapic_in_kernel(vcpu))
9497 return;
9498
Sean Christopherson187c8832021-10-21 17:49:27 -07009499 down_read(&vcpu->kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009500
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009501 activate = kvm_apicv_activated(vcpu->kvm);
9502 if (vcpu->arch.apicv_active == activate)
9503 goto out;
9504
9505 vcpu->arch.apicv_active = activate;
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009506 kvm_apic_update_apicv(vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009507 static_call(kvm_x86_refresh_apicv_exec_ctrl)(vcpu);
Vitaly Kuznetsovbca66db2021-06-09 17:09:10 +02009508
9509 /*
9510 * When APICv gets disabled, we may still have injected interrupts
9511 * pending. At the same time, KVM_REQ_EVENT may not be set as APICv was
9512 * still active when the interrupt got accepted. Make sure
9513 * inject_pending_event() is called to check for that.
9514 */
9515 if (!vcpu->arch.apicv_active)
9516 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009517
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009518out:
Sean Christopherson187c8832021-10-21 17:49:27 -07009519 up_read(&vcpu->kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009520}
9521EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv);
9522
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009523void __kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009524{
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009525 unsigned long old, new;
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009526
Sean Christopherson187c8832021-10-21 17:49:27 -07009527 lockdep_assert_held_write(&kvm->arch.apicv_update_lock);
9528
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009529 if (!kvm_x86_ops.check_apicv_inhibit_reasons ||
Jason Baronb36464772021-01-14 22:27:56 -05009530 !static_call(kvm_x86_check_apicv_inhibit_reasons)(bit))
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06009531 return;
9532
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009533 old = new = kvm->arch.apicv_inhibit_reasons;
9534
9535 if (activate)
9536 __clear_bit(bit, &new);
9537 else
9538 __set_bit(bit, &new);
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009539
Maxim Levitsky36222b12021-08-10 23:52:43 +03009540 if (!!old != !!new) {
9541 trace_kvm_apicv_update_request(activate, bit);
Sean Christophersonee49a892021-10-21 17:49:25 -07009542 /*
9543 * Kick all vCPUs before setting apicv_inhibit_reasons to avoid
9544 * false positives in the sanity check WARN in svm_vcpu_run().
9545 * This task will wait for all vCPUs to ack the kick IRQ before
9546 * updating apicv_inhibit_reasons, and all other vCPUs will
9547 * block on acquiring apicv_update_lock so that vCPUs can't
9548 * redo svm_vcpu_run() without seeing the new inhibit state.
9549 *
9550 * Note, holding apicv_update_lock and taking it in the read
9551 * side (handling the request) also prevents other vCPUs from
9552 * servicing the request with a stale apicv_inhibit_reasons.
9553 */
Maxim Levitsky36222b12021-08-10 23:52:43 +03009554 kvm_make_all_cpus_request(kvm, KVM_REQ_APICV_UPDATE);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009555 kvm->arch.apicv_inhibit_reasons = new;
Maxim Levitsky36222b12021-08-10 23:52:43 +03009556 if (new) {
9557 unsigned long gfn = gpa_to_gfn(APIC_DEFAULT_PHYS_BASE);
Maxim Levitsky36222b12021-08-10 23:52:43 +03009558 kvm_zap_gfn_range(kvm, gfn, gfn+1);
9559 }
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009560 } else
9561 kvm->arch.apicv_inhibit_reasons = new;
9562}
9563EXPORT_SYMBOL_GPL(__kvm_request_apicv_update);
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05009564
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009565void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
9566{
Sean Christopherson187c8832021-10-21 17:49:27 -07009567 down_write(&kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009568 __kvm_request_apicv_update(kvm, activate, bit);
Sean Christopherson187c8832021-10-21 17:49:27 -07009569 up_write(&kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009570}
9571EXPORT_SYMBOL_GPL(kvm_request_apicv_update);
9572
Yang Zhang3d81bc72013-04-11 19:25:13 +08009573static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009574{
Wanpeng Lidcbd3e42018-12-17 10:43:23 +08009575 if (!kvm_apic_present(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08009576 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009577
Andrey Smetanin63086302015-11-10 15:36:32 +03009578 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009579
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07009580 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03009581 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009582 else {
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05009583 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Wanpeng Lie97f8522018-11-20 16:34:18 +08009584 if (ioapic_in_kernel(vcpu->kvm))
9585 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009586 }
Liran Alone40ff1d2018-03-21 02:50:31 +02009587
9588 if (is_guest_mode(vcpu))
9589 vcpu->arch.load_eoi_exitmap_pending = true;
9590 else
9591 kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu);
9592}
9593
9594static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
9595{
9596 u64 eoi_exit_bitmap[4];
9597
9598 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
9599 return;
9600
黄乐c5adbb3a2021-11-15 14:08:29 +00009601 if (to_hv_vcpu(vcpu)) {
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009602 bitmap_or((ulong *)eoi_exit_bitmap,
9603 vcpu->arch.ioapic_handled_vectors,
9604 to_hv_synic(vcpu)->vec_bitmap, 256);
黄乐c5adbb3a2021-11-15 14:08:29 +00009605 static_call(kvm_x86_load_eoi_exitmap)(vcpu, eoi_exit_bitmap);
9606 return;
9607 }
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009608
黄乐c5adbb3a2021-11-15 14:08:29 +00009609 static_call(kvm_x86_load_eoi_exitmap)(
9610 vcpu, (u64 *)vcpu->arch.ioapic_handled_vectors);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009611}
9612
Eiichi Tsukatae649b3f2020-06-06 13:26:27 +09009613void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
9614 unsigned long start, unsigned long end)
Radim Krčmářb1394e72017-11-30 19:05:45 +01009615{
9616 unsigned long apic_address;
9617
9618 /*
9619 * The physical address of apic access page is stored in the VMCS.
9620 * Update it when it becomes invalid.
9621 */
9622 apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
9623 if (start <= apic_address && apic_address < end)
9624 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
9625}
9626
Tang Chen4256f432014-09-24 15:57:54 +08009627void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
9628{
Paolo Bonzini35754c92015-07-29 12:05:37 +02009629 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02009630 return;
9631
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009632 if (!kvm_x86_ops.set_apic_access_page_addr)
Tang Chen4256f432014-09-24 15:57:54 +08009633 return;
9634
Jason Baronb36464772021-01-14 22:27:56 -05009635 static_call(kvm_x86_set_apic_access_page_addr)(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009636}
Tang Chen4256f432014-09-24 15:57:54 +08009637
Sean Christophersond264ee02018-08-27 15:21:12 -07009638void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu)
9639{
9640 smp_send_reschedule(vcpu->cpu);
9641}
9642EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit);
9643
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009644/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01009645 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009646 * exiting to the userspace. Otherwise, the value will be returned to the
9647 * userspace.
9648 */
Avi Kivity851ba692009-08-24 11:10:17 +03009649static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009650{
9651 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08009652 bool req_int_win =
9653 dm_request_for_irq_injection(vcpu) &&
9654 kvm_cpu_accept_dm_intr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08009655 fastpath_t exit_fastpath;
Matt Gingell62a193e2015-11-16 15:26:07 -08009656
Jan Kiszka730dca42013-04-28 10:50:52 +02009657 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009658
Peter Xufb04a1e2020-09-30 21:22:22 -04009659 /* Forbid vmenter if vcpu dirty ring is soft-full */
9660 if (unlikely(vcpu->kvm->dirty_ring_size &&
9661 kvm_dirty_ring_soft_full(&vcpu->dirty_ring))) {
9662 vcpu->run->exit_reason = KVM_EXIT_DIRTY_RING_FULL;
9663 trace_kvm_dirty_ring_exit(vcpu);
9664 r = 0;
9665 goto out;
9666 }
9667
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02009668 if (kvm_request_pending(vcpu)) {
Paolo Bonzinif4d31652021-11-11 10:13:38 -05009669 if (kvm_check_request(KVM_REQ_VM_DEAD, vcpu)) {
Sean Christopherson67369272021-07-02 15:04:25 -07009670 r = -EIO;
9671 goto out;
9672 }
Paolo Bonzini729c15c2020-09-22 06:53:57 -04009673 if (kvm_check_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu)) {
Paolo Bonzini9a78e152021-01-08 11:43:08 -05009674 if (unlikely(!kvm_x86_ops.nested_ops->get_nested_state_pages(vcpu))) {
Jim Mattson671ddc72019-10-15 10:44:05 -07009675 r = 0;
9676 goto out;
9677 }
9678 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009679 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05009680 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03009681 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03009682 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02009683 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00009684 kvm_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03009685 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
9686 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10009687 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
9688 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10009689 if (unlikely(r))
9690 goto out;
9691 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009692 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03009693 kvm_mmu_sync_roots(vcpu);
Paolo Bonzini727a7e22020-03-05 03:52:50 -05009694 if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu))
9695 kvm_mmu_load_pgd(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009696 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
Sean Christopherson77809382020-03-20 14:28:18 -07009697 kvm_vcpu_flush_tlb_all(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009698
9699 /* Flushing all ASIDs flushes the current ASID... */
9700 kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
9701 }
Sean Christopherson40e5f9082021-11-25 01:49:43 +00009702 kvm_service_local_tlb_flush_requests(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009703
Avi Kivitya8eeb042010-05-10 12:34:53 +03009704 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009705 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02009706 r = 0;
9707 goto out;
9708 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009709 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009710 if (is_guest_mode(vcpu)) {
9711 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9712 } else {
9713 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
9714 vcpu->mmio_needed = 0;
9715 r = 0;
9716 goto out;
9717 }
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01009718 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009719 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
9720 /* Page is swapped out. Do synthetic halt */
9721 vcpu->arch.apf.halted = true;
9722 r = 1;
9723 goto out;
9724 }
Glauber Costac9aaa892011-07-11 15:28:14 -04009725 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
9726 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009727 if (kvm_check_request(KVM_REQ_SMI, vcpu))
9728 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009729 if (kvm_check_request(KVM_REQ_NMI, vcpu))
9730 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009731 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009732 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009733 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009734 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07009735 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
9736 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
9737 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03009738 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07009739 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
9740 vcpu->run->eoi.vector =
9741 vcpu->arch.pending_ioapic_eoi;
9742 r = 0;
9743 goto out;
9744 }
9745 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08009746 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
9747 vcpu_scan_ioapic(vcpu);
Liran Alone40ff1d2018-03-21 02:50:31 +02009748 if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu))
9749 vcpu_load_eoi_exitmap(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009750 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
9751 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03009752 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
9753 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9754 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
9755 r = 0;
9756 goto out;
9757 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03009758 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
9759 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9760 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
9761 r = 0;
9762 goto out;
9763 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03009764 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009765 struct kvm_vcpu_hv *hv_vcpu = to_hv_vcpu(vcpu);
9766
Andrey Smetanindb3975712015-11-10 15:36:35 +03009767 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009768 vcpu->run->hyperv = hv_vcpu->exit;
Andrey Smetanindb3975712015-11-10 15:36:35 +03009769 r = 0;
9770 goto out;
9771 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03009772
9773 /*
9774 * KVM_REQ_HV_STIMER has to be processed after
9775 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
9776 * depend on the guest clock being up-to-date
9777 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03009778 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
9779 kvm_hv_process_stimers(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009780 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
9781 kvm_vcpu_update_apicv(vcpu);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02009782 if (kvm_check_request(KVM_REQ_APF_READY, vcpu))
9783 kvm_check_async_pf_completion(vcpu);
Alexander Graf1a1552542020-09-25 16:34:21 +02009784 if (kvm_check_request(KVM_REQ_MSR_FILTER_CHANGED, vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009785 static_call(kvm_x86_msr_filter_changed)(vcpu);
Makarand Sonarea85863c2021-02-12 16:50:12 -08009786
9787 if (kvm_check_request(KVM_REQ_UPDATE_CPU_DIRTY_LOGGING, vcpu))
9788 static_call(kvm_x86_update_cpu_dirty_logging)(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02009789 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009790
David Woodhouse40da8cc2020-12-09 20:08:30 +00009791 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win ||
9792 kvm_xen_has_interrupt(vcpu)) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01009793 ++vcpu->stat.req_event;
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009794 r = kvm_apic_accept_events(vcpu);
9795 if (r < 0) {
9796 r = 0;
9797 goto out;
9798 }
Jan Kiszka66450a22013-03-13 12:42:34 +01009799 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
9800 r = 1;
9801 goto out;
9802 }
9803
Jim Mattsona5f69092021-06-04 10:26:03 -07009804 r = inject_pending_event(vcpu, &req_immediate_exit);
9805 if (r < 0) {
9806 r = 0;
9807 goto out;
9808 }
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009809 if (req_int_win)
Jason Baronb36464772021-01-14 22:27:56 -05009810 static_call(kvm_x86_enable_irq_window)(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03009811
Avi Kivity3842d132010-07-27 12:30:24 +03009812 if (kvm_lapic_enabled(vcpu)) {
9813 update_cr8_intercept(vcpu);
9814 kvm_lapic_sync_to_vapic(vcpu);
9815 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009816 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009817
Avi Kivityd8368af2012-05-14 18:07:56 +03009818 r = kvm_mmu_reload(vcpu);
9819 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009820 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03009821 }
9822
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009823 preempt_disable();
9824
Jason Baronb36464772021-01-14 22:27:56 -05009825 static_call(kvm_x86_prepare_guest_switch)(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009826
9827 /*
9828 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
9829 * IPI are then delayed after guest entry, which ensures that they
9830 * result in virtual interrupt delivery.
9831 */
9832 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009833 vcpu->mode = IN_GUEST_MODE;
9834
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009835 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
9836
Lan Tianyu0f127d12016-03-13 11:10:29 +08009837 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009838 * 1) We should set ->mode before checking ->requests. Please see
Andrew Jonescde9af62017-04-26 22:32:24 +02009839 * the comment in kvm_vcpu_exiting_guest_mode().
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009840 *
Luwei Kang81b01662019-01-31 16:52:02 +08009841 * 2) For APICv, we should set ->mode before checking PID.ON. This
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009842 * pairs with the memory barrier implicit in pi_test_and_set_on
9843 * (see vmx_deliver_posted_interrupt).
9844 *
9845 * 3) This also orders the write to mode from any reads to the page
9846 * tables done while the VCPU is running. Please see the comment
9847 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009848 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009849 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009850
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009851 /*
9852 * This handles the case where a posted interrupt was
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05009853 * notified with kvm_vcpu_kick. Assigned devices can
9854 * use the POSTED_INTR_VECTOR even if APICv is disabled,
9855 * so do it even if APICv is disabled on this vCPU.
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009856 */
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05009857 if (kvm_lapic_enabled(vcpu))
9858 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009859
Wanpeng Li5a9f5442020-04-28 14:23:26 +08009860 if (kvm_vcpu_exit_request(vcpu)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009861 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009862 smp_wmb();
9863 local_irq_enable();
9864 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009865 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009866 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009867 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009868 }
9869
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009870 if (req_immediate_exit) {
9871 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009872 static_call(kvm_x86_request_immediate_exit)(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009873 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03009874
Sean Christopherson2620fe22020-01-17 11:30:51 -08009875 fpregs_assert_state_consistent();
9876 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9877 switch_fpu_return();
Rik van Riel5f409e22019-04-03 18:41:52 +02009878
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009879 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009880 set_debugreg(0, 7);
9881 set_debugreg(vcpu->arch.eff_db[0], 0);
9882 set_debugreg(vcpu->arch.eff_db[1], 1);
9883 set_debugreg(vcpu->arch.eff_db[2], 2);
9884 set_debugreg(vcpu->arch.eff_db[3], 3);
Lai Jiangshanf85d4012021-06-29 01:26:32 +08009885 } else if (unlikely(hw_breakpoint_active())) {
9886 set_debugreg(0, 7);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009887 }
9888
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05009889 for (;;) {
Sean Christophersonee49a892021-10-21 17:49:25 -07009890 /*
9891 * Assert that vCPU vs. VM APICv state is consistent. An APICv
9892 * update must kick and wait for all vCPUs before toggling the
9893 * per-VM state, and responsing vCPUs must wait for the update
9894 * to complete before servicing KVM_REQ_APICV_UPDATE.
9895 */
9896 WARN_ON_ONCE(kvm_apicv_activated(vcpu->kvm) != kvm_vcpu_apicv_active(vcpu));
9897
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05009898 exit_fastpath = static_call(kvm_x86_run)(vcpu);
9899 if (likely(exit_fastpath != EXIT_FASTPATH_REENTER_GUEST))
9900 break;
9901
Paolo Bonzini37c4dbf2021-11-22 19:43:10 -05009902 if (kvm_lapic_enabled(vcpu))
9903 static_call_cond(kvm_x86_sync_pir_to_irr)(vcpu);
Paolo Bonzinide7cd3f2021-10-20 06:27:36 -04009904
9905 if (unlikely(kvm_vcpu_exit_request(vcpu))) {
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05009906 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
9907 break;
9908 }
Paolo Bonzinide7cd3f2021-10-20 06:27:36 -04009909 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009910
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009911 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009912 * Do this here before restoring debug registers on the host. And
9913 * since we do this before handling the vmexit, a DR access vmexit
9914 * can (a) read the correct value of the debug registers, (b) set
9915 * KVM_DEBUGREG_WONT_EXIT again.
9916 */
9917 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009918 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
Jason Baronb36464772021-01-14 22:27:56 -05009919 static_call(kvm_x86_sync_dirty_debug_regs)(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009920 kvm_update_dr0123(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009921 kvm_update_dr7(vcpu);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009922 }
9923
9924 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009925 * If the guest has used debug registers, at least dr7
9926 * will be disabled while returning to the host.
9927 * If we don't have active breakpoints in the host, we don't
9928 * care about the messed up debug address registers. But if
9929 * we have some of them active, restore the old state.
9930 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01009931 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009932 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009933
Jim Mattsonc9671182020-06-03 16:56:23 -07009934 vcpu->arch.last_vmentry_cpu = vcpu->cpu;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08009935 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10009936
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009937 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03009938 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08009939
Jason Baronb36464772021-01-14 22:27:56 -05009940 static_call(kvm_x86_handle_exit_irqoff)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009941
Sean Christophersond7a08882019-07-10 09:07:34 -07009942 /*
9943 * Consume any pending interrupts, including the possible source of
9944 * VM-Exit on SVM and any ticks that occur between VM-Exit and now.
9945 * An instruction is required after local_irq_enable() to fully unblock
9946 * interrupts on processors that implement an interrupt shadow, the
9947 * stat.exits increment will do nicely.
9948 */
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009949 kvm_before_interrupt(vcpu);
Sean Christophersond7a08882019-07-10 09:07:34 -07009950 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009951 ++vcpu->stat.exits;
Sean Christophersond7a08882019-07-10 09:07:34 -07009952 local_irq_disable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009953 kvm_after_interrupt(vcpu);
9954
Wanpeng Li16045712021-05-04 17:27:30 -07009955 /*
9956 * Wait until after servicing IRQs to account guest time so that any
9957 * ticks that occurred while running the guest are properly accounted
9958 * to the guest. Waiting until IRQs are enabled degrades the accuracy
9959 * of accounting via context tracking, but the loss of accuracy is
9960 * acceptable for all known use cases.
9961 */
9962 vtime_account_guest_exit();
9963
Wanpeng Liec0671d2019-05-20 16:18:08 +08009964 if (lapic_in_kernel(vcpu)) {
9965 s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta;
9966 if (delta != S64_MIN) {
9967 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta);
9968 vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN;
9969 }
9970 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009971
Paolo Bonzinif2485b32016-06-15 15:23:11 +02009972 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009973 preempt_enable();
9974
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009975 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03009976
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009977 /*
9978 * Profile KVM exit RIPs:
9979 */
9980 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009981 unsigned long rip = kvm_rip_read(vcpu);
9982 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009983 }
9984
Zachary Amsdencc578282012-02-03 15:43:50 -02009985 if (unlikely(vcpu->arch.tsc_always_catchup))
9986 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02009987
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03009988 if (vcpu->arch.apic_attention)
9989 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02009990
Jason Baronb36464772021-01-14 22:27:56 -05009991 r = static_call(kvm_x86_handle_exit)(vcpu, exit_fastpath);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009992 return r;
9993
9994cancel_injection:
Sean Christopherson8081ad02020-04-22 19:25:40 -07009995 if (req_immediate_exit)
9996 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009997 static_call(kvm_x86_cancel_injection)(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03009998 if (unlikely(vcpu->arch.apic_attention))
9999 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010000out:
Marcelo Tosattid7690172008-09-08 15:23:48 -030010001 return r;
10002}
10003
Paolo Bonzini362c6982015-02-06 12:48:04 +010010004static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
10005{
Feng Wubf9f6ac2015-09-18 22:29:55 +080010006 if (!kvm_arch_vcpu_runnable(vcpu) &&
Jason Baronb36464772021-01-14 22:27:56 -050010007 (!kvm_x86_ops.pre_block || static_call(kvm_x86_pre_block)(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010008 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Sean Christophersoncdafece2021-10-08 19:12:11 -070010009 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
10010 kvm_vcpu_halt(vcpu);
10011 else
10012 kvm_vcpu_block(vcpu);
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010013 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010014
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010015 if (kvm_x86_ops.post_block)
Jason Baronb36464772021-01-14 22:27:56 -050010016 static_call(kvm_x86_post_block)(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010017
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010018 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
10019 return 1;
10020 }
Gleb Natapov09cec752009-03-23 15:11:44 +020010021
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010022 if (kvm_apic_accept_events(vcpu) < 0)
10023 return 0;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010024 switch(vcpu->arch.mp_state) {
10025 case KVM_MP_STATE_HALTED:
Tom Lendacky647daca2021-01-04 14:20:01 -060010026 case KVM_MP_STATE_AP_RESET_HOLD:
Paolo Bonzini362c6982015-02-06 12:48:04 +010010027 vcpu->arch.pv.pv_unhalted = false;
10028 vcpu->arch.mp_state =
10029 KVM_MP_STATE_RUNNABLE;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050010030 fallthrough;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010031 case KVM_MP_STATE_RUNNABLE:
10032 vcpu->arch.apf.halted = false;
10033 break;
10034 case KVM_MP_STATE_INIT_RECEIVED:
10035 break;
10036 default:
10037 return -EINTR;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010038 }
10039 return 1;
10040}
10041
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010042static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
10043{
Paolo Bonzini56083bd2020-04-17 10:32:53 -040010044 if (is_guest_mode(vcpu))
Sean Christophersoncb6a32c2021-03-02 09:45:14 -080010045 kvm_check_nested_events(vcpu);
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +010010046
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010047 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
10048 !vcpu->arch.apf.halted);
10049}
10050
Paolo Bonzini362c6982015-02-06 12:48:04 +010010051static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -030010052{
10053 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010054 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -030010055
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010056 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010057 vcpu->arch.l1tf_flush_l1d = true;
Marcelo Tosattid7690172008-09-08 15:23:48 -030010058
Paolo Bonzini362c6982015-02-06 12:48:04 +010010059 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +020010060 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +030010061 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010062 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +010010063 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010064 }
10065
Gleb Natapov09cec752009-03-23 15:11:44 +020010066 if (r <= 0)
10067 break;
10068
Marcelo Tosatti084071d2021-05-25 10:41:17 -030010069 kvm_clear_request(KVM_REQ_UNBLOCK, vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +020010070 if (kvm_cpu_has_pending_timer(vcpu))
10071 kvm_inject_pending_timer_irqs(vcpu);
10072
Matt Gingell782d4222015-11-16 15:26:00 -080010073 if (dm_request_for_irq_injection(vcpu) &&
10074 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +020010075 r = 0;
10076 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +020010077 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010078 break;
Gleb Natapov09cec752009-03-23 15:11:44 +020010079 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020010080
Thomas Gleixnerf3020b82020-07-30 09:19:01 +020010081 if (__xfer_to_guest_mode_work_pending()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010082 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020010083 r = xfer_to_guest_mode_handle_work(vcpu);
10084 if (r)
10085 return r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010086 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -030010087 }
10088 }
10089
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010090 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010091
10092 return r;
10093}
10094
Gleb Natapov716d51a2012-09-03 15:24:26 +030010095static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
10096{
10097 int r;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010098
Gleb Natapov716d51a2012-09-03 15:24:26 +030010099 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Sean Christopherson0ce97a22018-08-23 13:56:52 -070010100 r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010101 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010102 return r;
Gleb Natapov716d51a2012-09-03 15:24:26 +030010103}
10104
10105static int complete_emulated_pio(struct kvm_vcpu *vcpu)
10106{
10107 BUG_ON(!vcpu->arch.pio.count);
10108
10109 return complete_emulated_io(vcpu);
10110}
10111
Avi Kivityf78146b2012-04-18 19:22:47 +030010112/*
10113 * Implements the following, as a state machine:
10114 *
10115 * read:
10116 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010117 * for each mmio piece in the fragment
10118 * write gpa, len
10119 * exit
10120 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +030010121 * execute insn
10122 *
10123 * write:
10124 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010125 * for each mmio piece in the fragment
10126 * write gpa, len
10127 * copy data
10128 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +030010129 */
Gleb Natapov716d51a2012-09-03 15:24:26 +030010130static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +020010131{
10132 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +030010133 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010134 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +020010135
Gleb Natapov716d51a2012-09-03 15:24:26 +030010136 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +020010137
Gleb Natapov716d51a2012-09-03 15:24:26 +030010138 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010139 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
10140 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010141 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010142 memcpy(frag->data, run->mmio.data, len);
10143
10144 if (frag->len <= 8) {
10145 /* Switch to the next fragment. */
10146 frag++;
10147 vcpu->mmio_cur_fragment++;
10148 } else {
10149 /* Go forward to the next mmio piece. */
10150 frag->data += len;
10151 frag->gpa += len;
10152 frag->len -= len;
10153 }
10154
Andrew Honiga08d3b32014-02-27 19:35:14 +010010155 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +030010156 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +020010157
10158 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +020010159 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +030010160 return 1;
10161 vcpu->mmio_read_completed = 1;
10162 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +020010163 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010164
Gleb Natapov716d51a2012-09-03 15:24:26 +030010165 run->exit_reason = KVM_EXIT_MMIO;
10166 run->mmio.phys_addr = frag->gpa;
10167 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010168 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
10169 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010170 run->mmio.is_write = vcpu->mmio_is_write;
10171 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
10172 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +020010173}
10174
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010175/* Swap (qemu) user FPU context for the guest FPU context. */
10176static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
10177{
Tom Lendackyed02b212020-12-10 11:10:01 -060010178 /*
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010179 * Exclude PKRU from restore as restored separately in
10180 * kvm_x86_ops.run().
Tom Lendackyed02b212020-12-10 11:10:01 -060010181 */
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010182 fpu_swap_kvm_fpstate(&vcpu->arch.guest_fpu, true);
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010183 trace_kvm_fpu(1);
10184}
10185
10186/* When vcpu_run ends, restore user space FPU context. */
10187static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
10188{
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010189 fpu_swap_kvm_fpstate(&vcpu->arch.guest_fpu, false);
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010190 ++vcpu->stat.fpu_reload;
10191 trace_kvm_fpu(0);
10192}
10193
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010194int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010195{
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010196 struct kvm_run *kvm_run = vcpu->run;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010197 int r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010198
Christoffer Dallaccb7572017-12-04 21:35:25 +010010199 vcpu_load(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010200 kvm_sigset_activate(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +080010201 kvm_run->flags = 0;
Peter Xu5663d8f2017-12-12 17:15:02 +010010202 kvm_load_guest_fpu(vcpu);
10203
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010204 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
Jan H. Schönherr2f173d22017-09-06 18:34:06 +020010205 if (kvm_run->immediate_exit) {
10206 r = -EINTR;
10207 goto out;
10208 }
Sean Christophersonc91d4492021-10-08 19:12:10 -070010209 kvm_vcpu_block(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010210 if (kvm_apic_accept_events(vcpu) < 0) {
10211 r = 0;
10212 goto out;
10213 }
Radim Krčmář72875d82017-04-26 22:32:19 +020010214 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010215 r = -EAGAIN;
Jan H. Schönherra0595002017-09-06 00:27:19 +020010216 if (signal_pending(current)) {
10217 r = -EINTR;
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010218 kvm_run->exit_reason = KVM_EXIT_INTR;
Jan H. Schönherra0595002017-09-06 00:27:19 +020010219 ++vcpu->stat.signal_exits;
10220 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010221 goto out;
10222 }
10223
Sean Christophersone489a4a2021-07-02 15:04:29 -070010224 if ((kvm_run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) ||
10225 (kvm_run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS)) {
Ken Hofsass01643c52018-01-31 16:03:36 -080010226 r = -EINVAL;
10227 goto out;
10228 }
10229
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010230 if (kvm_run->kvm_dirty_regs) {
Ken Hofsass01643c52018-01-31 16:03:36 -080010231 r = sync_regs(vcpu);
10232 if (r != 0)
10233 goto out;
10234 }
10235
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010236 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +020010237 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +010010238 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
10239 r = -EINVAL;
10240 goto out;
10241 }
10242 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010243
Gleb Natapov716d51a2012-09-03 15:24:26 +030010244 if (unlikely(vcpu->arch.complete_userspace_io)) {
10245 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
10246 vcpu->arch.complete_userspace_io = NULL;
10247 r = cui(vcpu);
10248 if (r <= 0)
Peter Xu5663d8f2017-12-12 17:15:02 +010010249 goto out;
Gleb Natapov716d51a2012-09-03 15:24:26 +030010250 } else
10251 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +020010252
Paolo Bonzini460df4c2017-02-08 11:50:15 +010010253 if (kvm_run->immediate_exit)
10254 r = -EINTR;
10255 else
10256 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010257
10258out:
Peter Xu5663d8f2017-12-12 17:15:02 +010010259 kvm_put_guest_fpu(vcpu);
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010260 if (kvm_run->kvm_valid_regs)
Ken Hofsass01643c52018-01-31 16:03:36 -080010261 store_regs(vcpu);
Marcelo Tosattif1d86e42010-05-03 23:04:27 -030010262 post_kvm_run_save(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010263 kvm_sigset_deactivate(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010264
Christoffer Dallaccb7572017-12-04 21:35:25 +010010265 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010266 return r;
10267}
10268
Ken Hofsass01643c52018-01-31 16:03:36 -080010269static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010270{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010271 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
10272 /*
10273 * We are here if userspace calls get_regs() in the middle of
10274 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +080010275 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010276 * that usually, but some bad designed PV devices (vmware
10277 * backdoor interface) need this to work
10278 */
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010279 emulator_writeback_register_cache(vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010280 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10281 }
Sean Christophersonde3cd112019-04-30 10:36:17 -070010282 regs->rax = kvm_rax_read(vcpu);
10283 regs->rbx = kvm_rbx_read(vcpu);
10284 regs->rcx = kvm_rcx_read(vcpu);
10285 regs->rdx = kvm_rdx_read(vcpu);
10286 regs->rsi = kvm_rsi_read(vcpu);
10287 regs->rdi = kvm_rdi_read(vcpu);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010288 regs->rsp = kvm_rsp_read(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010289 regs->rbp = kvm_rbp_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010290#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010291 regs->r8 = kvm_r8_read(vcpu);
10292 regs->r9 = kvm_r9_read(vcpu);
10293 regs->r10 = kvm_r10_read(vcpu);
10294 regs->r11 = kvm_r11_read(vcpu);
10295 regs->r12 = kvm_r12_read(vcpu);
10296 regs->r13 = kvm_r13_read(vcpu);
10297 regs->r14 = kvm_r14_read(vcpu);
10298 regs->r15 = kvm_r15_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010299#endif
10300
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010301 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +020010302 regs->rflags = kvm_get_rflags(vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010303}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010304
Ken Hofsass01643c52018-01-31 16:03:36 -080010305int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10306{
10307 vcpu_load(vcpu);
10308 __get_regs(vcpu, regs);
Christoffer Dall1fc9b762017-12-04 21:35:26 +010010309 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010310 return 0;
10311}
10312
Ken Hofsass01643c52018-01-31 16:03:36 -080010313static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010314{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010315 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
10316 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10317
Sean Christophersonde3cd112019-04-30 10:36:17 -070010318 kvm_rax_write(vcpu, regs->rax);
10319 kvm_rbx_write(vcpu, regs->rbx);
10320 kvm_rcx_write(vcpu, regs->rcx);
10321 kvm_rdx_write(vcpu, regs->rdx);
10322 kvm_rsi_write(vcpu, regs->rsi);
10323 kvm_rdi_write(vcpu, regs->rdi);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010324 kvm_rsp_write(vcpu, regs->rsp);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010325 kvm_rbp_write(vcpu, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010326#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010327 kvm_r8_write(vcpu, regs->r8);
10328 kvm_r9_write(vcpu, regs->r9);
10329 kvm_r10_write(vcpu, regs->r10);
10330 kvm_r11_write(vcpu, regs->r11);
10331 kvm_r12_write(vcpu, regs->r12);
10332 kvm_r13_write(vcpu, regs->r13);
10333 kvm_r14_write(vcpu, regs->r14);
10334 kvm_r15_write(vcpu, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010335#endif
10336
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010337 kvm_rip_write(vcpu, regs->rip);
Wanpeng Lid73235d2017-12-07 00:30:08 -080010338 kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010339
Jan Kiszkab4f14ab2008-04-30 17:59:04 +020010340 vcpu->arch.exception.pending = false;
10341
Avi Kivity3842d132010-07-27 12:30:24 +030010342 kvm_make_request(KVM_REQ_EVENT, vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010343}
Avi Kivity3842d132010-07-27 12:30:24 +030010344
Ken Hofsass01643c52018-01-31 16:03:36 -080010345int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10346{
10347 vcpu_load(vcpu);
10348 __set_regs(vcpu, regs);
Christoffer Dall875656f2017-12-04 21:35:27 +010010349 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010350 return 0;
10351}
10352
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010353void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
10354{
10355 struct kvm_segment cs;
10356
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010357 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010358 *db = cs.db;
10359 *l = cs.l;
10360}
10361EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
10362
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010363static void __get_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010364{
Gleb Natapov89a27f42010-02-16 10:51:48 +020010365 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010366
Tom Lendacky52657132020-12-10 11:09:59 -060010367 if (vcpu->arch.guest_state_protected)
10368 goto skip_protected_regs;
10369
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010370 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10371 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10372 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10373 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10374 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10375 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010376
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010377 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10378 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010379
Jason Baronb36464772021-01-14 22:27:56 -050010380 static_call(kvm_x86_get_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010381 sregs->idt.limit = dt.size;
10382 sregs->idt.base = dt.address;
Jason Baronb36464772021-01-14 22:27:56 -050010383 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010384 sregs->gdt.limit = dt.size;
10385 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010386
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010387 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +020010388 sregs->cr3 = kvm_read_cr3(vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010389
10390skip_protected_regs:
10391 sregs->cr0 = kvm_read_cr0(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +020010392 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010393 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +020010394 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010395 sregs->apic_base = kvm_get_apic_base(vcpu);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010396}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010397
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010398static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10399{
10400 __get_sregs_common(vcpu, sregs);
10401
10402 if (vcpu->arch.guest_state_protected)
10403 return;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010404
Liran Alon04140b42018-03-23 03:01:31 +030010405 if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +030010406 set_bit(vcpu->arch.interrupt.nr,
10407 (unsigned long *)sregs->interrupt_bitmap);
Ken Hofsass01643c52018-01-31 16:03:36 -080010408}
Gleb Natapov16d7a192009-04-21 17:45:10 +030010409
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010410static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10411{
10412 int i;
10413
10414 __get_sregs_common(vcpu, (struct kvm_sregs *)sregs2);
10415
10416 if (vcpu->arch.guest_state_protected)
10417 return;
10418
10419 if (is_pae_paging(vcpu)) {
10420 for (i = 0 ; i < 4 ; i++)
10421 sregs2->pdptrs[i] = kvm_pdptr_read(vcpu, i);
10422 sregs2->flags |= KVM_SREGS2_FLAGS_PDPTRS_VALID;
10423 }
10424}
10425
Ken Hofsass01643c52018-01-31 16:03:36 -080010426int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
10427 struct kvm_sregs *sregs)
10428{
10429 vcpu_load(vcpu);
10430 __get_sregs(vcpu, sregs);
Christoffer Dallbcdec412017-12-04 21:35:28 +010010431 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010432 return 0;
10433}
10434
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010435int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
10436 struct kvm_mp_state *mp_state)
10437{
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010438 int r;
10439
Christoffer Dallfd232562017-12-04 21:35:30 +010010440 vcpu_load(vcpu);
Sean Christophersonf958bd22019-12-09 12:19:31 -080010441 if (kvm_mpx_supported())
10442 kvm_load_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010443
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010444 r = kvm_apic_accept_events(vcpu);
10445 if (r < 0)
10446 goto out;
10447 r = 0;
10448
Tom Lendacky647daca2021-01-04 14:20:01 -060010449 if ((vcpu->arch.mp_state == KVM_MP_STATE_HALTED ||
10450 vcpu->arch.mp_state == KVM_MP_STATE_AP_RESET_HOLD) &&
10451 vcpu->arch.pv.pv_unhalted)
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +053010452 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
10453 else
10454 mp_state->mp_state = vcpu->arch.mp_state;
10455
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010456out:
Sean Christophersonf958bd22019-12-09 12:19:31 -080010457 if (kvm_mpx_supported())
10458 kvm_put_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010459 vcpu_put(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010460 return r;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010461}
10462
10463int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
10464 struct kvm_mp_state *mp_state)
10465{
Christoffer Dalle83dff52017-12-04 21:35:31 +010010466 int ret = -EINVAL;
10467
10468 vcpu_load(vcpu);
10469
Paolo Bonzinibce87cc2016-01-08 13:48:51 +010010470 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +010010471 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
Christoffer Dalle83dff52017-12-04 21:35:31 +010010472 goto out;
Jan Kiszka66450a22013-03-13 12:42:34 +010010473
Liran Alon27cbe7d2019-11-11 11:16:40 +020010474 /*
10475 * KVM_MP_STATE_INIT_RECEIVED means the processor is in
10476 * INIT state; latched init should be reported using
10477 * KVM_SET_VCPU_EVENTS, so reject it here.
10478 */
10479 if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) &&
David Hildenbrand28bf2882017-03-23 11:46:03 +010010480 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
10481 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
Christoffer Dalle83dff52017-12-04 21:35:31 +010010482 goto out;
David Hildenbrand28bf2882017-03-23 11:46:03 +010010483
Jan Kiszka66450a22013-03-13 12:42:34 +010010484 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
10485 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
10486 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
10487 } else
10488 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +030010489 kvm_make_request(KVM_REQ_EVENT, vcpu);
Christoffer Dalle83dff52017-12-04 21:35:31 +010010490
10491 ret = 0;
10492out:
10493 vcpu_put(vcpu);
10494 return ret;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010495}
10496
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010497int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
10498 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010499{
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010500 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010501 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010502
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010503 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +020010504
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010505 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010506 has_error_code, error_code);
Sean Christopherson10517782019-08-27 14:40:35 -070010507 if (ret) {
10508 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
10509 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
10510 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010511 return 0;
Sean Christopherson10517782019-08-27 14:40:35 -070010512 }
Gleb Natapovc6975182010-02-18 12:15:01 +020010513
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010514 kvm_rip_write(vcpu, ctxt->eip);
10515 kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010516 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +020010517}
10518EXPORT_SYMBOL_GPL(kvm_task_switch);
10519
Sean Christophersonee69c922020-10-06 18:44:16 -070010520static bool kvm_is_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Lan Tianyuf2981032017-12-14 03:01:52 -050010521{
Tianyu Lan37b95952018-01-16 17:34:07 +080010522 if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) {
Lan Tianyuf2981032017-12-14 03:01:52 -050010523 /*
10524 * When EFER.LME and CR0.PG are set, the processor is in
10525 * 64-bit mode (though maybe in a 32-bit code segment).
10526 * CR4.PAE and EFER.LMA must be set.
10527 */
Sean Christophersonee69c922020-10-06 18:44:16 -070010528 if (!(sregs->cr4 & X86_CR4_PAE) || !(sregs->efer & EFER_LMA))
10529 return false;
Sean Christophersonca29e142021-02-03 16:01:12 -080010530 if (kvm_vcpu_is_illegal_gpa(vcpu, sregs->cr3))
Paolo Bonzinic1c35cf2020-11-13 08:30:38 -050010531 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010532 } else {
10533 /*
10534 * Not in 64-bit mode: EFER.LMA is clear and the code
10535 * segment cannot be 64-bit.
10536 */
10537 if (sregs->efer & EFER_LMA || sregs->cs.l)
Sean Christophersonee69c922020-10-06 18:44:16 -070010538 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010539 }
10540
Sean Christophersonee69c922020-10-06 18:44:16 -070010541 return kvm_is_valid_cr4(vcpu, sregs->cr4);
Lan Tianyuf2981032017-12-14 03:01:52 -050010542}
10543
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010544static int __set_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs,
10545 int *mmu_reset_needed, bool update_pdptrs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010546{
Jan Kiszka58cb6282014-01-24 16:48:44 +010010547 struct msr_data apic_base_msr;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010548 int idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +020010549 struct desc_ptr dt;
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010550
Sean Christophersonee69c922020-10-06 18:44:16 -070010551 if (!kvm_is_valid_sregs(vcpu, sregs))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010552 return -EINVAL;
Lan Tianyuf2981032017-12-14 03:01:52 -050010553
Jim Mattsond3802282017-08-10 10:14:13 -070010554 apic_base_msr.data = sregs->apic_base;
10555 apic_base_msr.host_initiated = true;
10556 if (kvm_set_apic_base(vcpu, &apic_base_msr))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010557 return -EINVAL;
Petr Matousek6d1068b2012-11-06 19:24:07 +010010558
Tom Lendacky52657132020-12-10 11:09:59 -060010559 if (vcpu->arch.guest_state_protected)
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010560 return 0;
Tom Lendacky52657132020-12-10 11:09:59 -060010561
Gleb Natapov89a27f42010-02-16 10:51:48 +020010562 dt.size = sregs->idt.limit;
10563 dt.address = sregs->idt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010564 static_call(kvm_x86_set_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010565 dt.size = sregs->gdt.limit;
10566 dt.address = sregs->gdt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010567 static_call(kvm_x86_set_gdt)(vcpu, &dt);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010568
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010569 vcpu->arch.cr2 = sregs->cr2;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010570 *mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +020010571 vcpu->arch.cr3 = sregs->cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -070010572 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010573
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010574 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010575
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010576 *mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Jason Baronb36464772021-01-14 22:27:56 -050010577 static_call(kvm_x86_set_efer)(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010578
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010579 *mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Jason Baronb36464772021-01-14 22:27:56 -050010580 static_call(kvm_x86_set_cr0)(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +000010581 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010582
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010583 *mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Jason Baronb36464772021-01-14 22:27:56 -050010584 static_call(kvm_x86_set_cr4)(vcpu, sregs->cr4);
Xiao Guangrong63f42e02011-01-12 15:39:18 +080010585
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010586 if (update_pdptrs) {
10587 idx = srcu_read_lock(&vcpu->kvm->srcu);
10588 if (is_pae_paging(vcpu)) {
10589 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
10590 *mmu_reset_needed = 1;
10591 }
10592 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Marcelo Tosatti7c93be442009-10-26 16:48:33 -020010593 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010594
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010595 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10596 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10597 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10598 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10599 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10600 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010601
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010602 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10603 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010604
Mikhail Ershov5f0269f2009-08-03 14:58:25 +030010605 update_cr8_intercept(vcpu);
10606
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010607 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +030010608 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010609 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +020010610 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010611 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10612
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010613 return 0;
10614}
10615
10616static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10617{
10618 int pending_vec, max_bits;
10619 int mmu_reset_needed = 0;
10620 int ret = __set_sregs_common(vcpu, sregs, &mmu_reset_needed, true);
10621
10622 if (ret)
10623 return ret;
10624
10625 if (mmu_reset_needed)
10626 kvm_mmu_reset_context(vcpu);
10627
Tom Lendacky52657132020-12-10 11:09:59 -060010628 max_bits = KVM_NR_INTERRUPTS;
10629 pending_vec = find_first_bit(
10630 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010631
Tom Lendacky52657132020-12-10 11:09:59 -060010632 if (pending_vec < max_bits) {
10633 kvm_queue_interrupt(vcpu, pending_vec, false);
10634 pr_debug("Set back pending irq %d\n", pending_vec);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010635 kvm_make_request(KVM_REQ_EVENT, vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010636 }
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010637 return 0;
10638}
Tom Lendacky52657132020-12-10 11:09:59 -060010639
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010640static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10641{
10642 int mmu_reset_needed = 0;
10643 bool valid_pdptrs = sregs2->flags & KVM_SREGS2_FLAGS_PDPTRS_VALID;
10644 bool pae = (sregs2->cr0 & X86_CR0_PG) && (sregs2->cr4 & X86_CR4_PAE) &&
10645 !(sregs2->efer & EFER_LMA);
10646 int i, ret;
Avi Kivity3842d132010-07-27 12:30:24 +030010647
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010648 if (sregs2->flags & ~KVM_SREGS2_FLAGS_PDPTRS_VALID)
10649 return -EINVAL;
10650
10651 if (valid_pdptrs && (!pae || vcpu->arch.guest_state_protected))
10652 return -EINVAL;
10653
10654 ret = __set_sregs_common(vcpu, (struct kvm_sregs *)sregs2,
10655 &mmu_reset_needed, !valid_pdptrs);
10656 if (ret)
10657 return ret;
10658
10659 if (valid_pdptrs) {
10660 for (i = 0; i < 4 ; i++)
10661 kvm_pdptr_write(vcpu, i, sregs2->pdptrs[i]);
10662
10663 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
10664 mmu_reset_needed = 1;
Maxim Levitsky158a48e2021-06-07 12:02:03 +030010665 vcpu->arch.pdptrs_from_userspace = true;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010666 }
10667 if (mmu_reset_needed)
10668 kvm_mmu_reset_context(vcpu);
10669 return 0;
Ken Hofsass01643c52018-01-31 16:03:36 -080010670}
10671
10672int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
10673 struct kvm_sregs *sregs)
10674{
10675 int ret;
10676
10677 vcpu_load(vcpu);
10678 ret = __set_sregs(vcpu, sregs);
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010679 vcpu_put(vcpu);
10680 return ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010681}
10682
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010683static void kvm_arch_vcpu_guestdbg_update_apicv_inhibit(struct kvm *kvm)
10684{
10685 bool inhibit = false;
10686 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +000010687 unsigned long i;
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010688
10689 down_write(&kvm->arch.apicv_update_lock);
10690
10691 kvm_for_each_vcpu(i, vcpu, kvm) {
10692 if (vcpu->guest_debug & KVM_GUESTDBG_BLOCKIRQ) {
10693 inhibit = true;
10694 break;
10695 }
10696 }
10697 __kvm_request_apicv_update(kvm, !inhibit, APICV_INHIBIT_REASON_BLOCKIRQ);
10698 up_write(&kvm->arch.apicv_update_lock);
10699}
10700
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010701int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
10702 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010703{
Jan Kiszka355be0b2009-10-03 00:31:21 +020010704 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010705 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010706
Tom Lendacky8d4846b2020-12-10 11:09:43 -060010707 if (vcpu->arch.guest_state_protected)
10708 return -EINVAL;
10709
Christoffer Dall66b56562017-12-04 21:35:33 +010010710 vcpu_load(vcpu);
10711
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010712 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
10713 r = -EBUSY;
10714 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +030010715 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010716 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
10717 kvm_queue_exception(vcpu, DB_VECTOR);
10718 else
10719 kvm_queue_exception(vcpu, BP_VECTOR);
10720 }
10721
Jan Kiszka91586a32009-10-05 13:07:21 +020010722 /*
10723 * Read rflags as long as potentially injected trace flags are still
10724 * filtered out.
10725 */
10726 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010727
10728 vcpu->guest_debug = dbg->control;
10729 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
10730 vcpu->guest_debug = 0;
10731
10732 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010733 for (i = 0; i < KVM_NR_DB_REGS; ++i)
10734 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +020010735 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010736 } else {
10737 for (i = 0; i < KVM_NR_DB_REGS; i++)
10738 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010739 }
Jan Kiszkac8639012012-09-21 05:42:55 +020010740 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010741
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010742 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Yuan Yaoe87e46d2021-05-26 14:38:28 +080010743 vcpu->arch.singlestep_rip = kvm_get_linear_rip(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010744
Jan Kiszka91586a32009-10-05 13:07:21 +020010745 /*
10746 * Trigger an rflags update that will inject or remove the trace
10747 * flags.
10748 */
10749 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010750
Jason Baronb36464772021-01-14 22:27:56 -050010751 static_call(kvm_x86_update_exception_bitmap)(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010752
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010753 kvm_arch_vcpu_guestdbg_update_apicv_inhibit(vcpu->kvm);
10754
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010755 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010756
Avi Kivity2122ff52010-05-13 11:25:04 +030010757out:
Christoffer Dall66b56562017-12-04 21:35:33 +010010758 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010759 return r;
10760}
10761
10762/*
Zhang Xiantao8b006792007-11-16 13:05:55 +080010763 * Translate a guest virtual address to a guest physical address.
10764 */
10765int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
10766 struct kvm_translation *tr)
10767{
10768 unsigned long vaddr = tr->linear_address;
10769 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010770 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010771
Christoffer Dall1da5b612017-12-04 21:35:32 +010010772 vcpu_load(vcpu);
10773
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010774 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +020010775 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010776 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010777 tr->physical_address = gpa;
10778 tr->valid = gpa != UNMAPPED_GVA;
10779 tr->writeable = 1;
10780 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010781
Christoffer Dall1da5b612017-12-04 21:35:32 +010010782 vcpu_put(vcpu);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010783 return 0;
10784}
10785
Hollis Blanchardd0752062007-10-31 17:24:25 -050010786int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10787{
Christoffer Dall13931232017-12-04 21:35:34 +010010788 struct fxregs_state *fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010789
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010790 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -060010791 return 0;
10792
Christoffer Dall13931232017-12-04 21:35:34 +010010793 vcpu_load(vcpu);
10794
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010795 fxsave = &vcpu->arch.guest_fpu.fpstate->regs.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010796 memcpy(fpu->fpr, fxsave->st_space, 128);
10797 fpu->fcw = fxsave->cwd;
10798 fpu->fsw = fxsave->swd;
10799 fpu->ftwx = fxsave->twd;
10800 fpu->last_opcode = fxsave->fop;
10801 fpu->last_ip = fxsave->rip;
10802 fpu->last_dp = fxsave->rdp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010803 memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010804
Christoffer Dall13931232017-12-04 21:35:34 +010010805 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010806 return 0;
10807}
10808
10809int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10810{
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010811 struct fxregs_state *fxsave;
10812
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010813 if (fpstate_is_confidential(&vcpu->arch.guest_fpu))
Tom Lendackyed02b212020-12-10 11:10:01 -060010814 return 0;
10815
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010816 vcpu_load(vcpu);
10817
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010818 fxsave = &vcpu->arch.guest_fpu.fpstate->regs.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010819
Hollis Blanchardd0752062007-10-31 17:24:25 -050010820 memcpy(fxsave->st_space, fpu->fpr, 128);
10821 fxsave->cwd = fpu->fcw;
10822 fxsave->swd = fpu->fsw;
10823 fxsave->twd = fpu->ftwx;
10824 fxsave->fop = fpu->last_opcode;
10825 fxsave->rip = fpu->last_ip;
10826 fxsave->rdp = fpu->last_dp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010827 memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010828
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010829 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010830 return 0;
10831}
10832
Ken Hofsass01643c52018-01-31 16:03:36 -080010833static void store_regs(struct kvm_vcpu *vcpu)
10834{
10835 BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES);
10836
10837 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS)
10838 __get_regs(vcpu, &vcpu->run->s.regs.regs);
10839
10840 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS)
10841 __get_sregs(vcpu, &vcpu->run->s.regs.sregs);
10842
10843 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS)
10844 kvm_vcpu_ioctl_x86_get_vcpu_events(
10845 vcpu, &vcpu->run->s.regs.events);
10846}
10847
10848static int sync_regs(struct kvm_vcpu *vcpu)
10849{
Ken Hofsass01643c52018-01-31 16:03:36 -080010850 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) {
10851 __set_regs(vcpu, &vcpu->run->s.regs.regs);
10852 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS;
10853 }
10854 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) {
10855 if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs))
10856 return -EINVAL;
10857 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS;
10858 }
10859 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) {
10860 if (kvm_vcpu_ioctl_x86_set_vcpu_events(
10861 vcpu, &vcpu->run->s.regs.events))
10862 return -EINVAL;
10863 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS;
10864 }
10865
10866 return 0;
10867}
10868
Sean Christopherson897cc382019-12-18 13:55:09 -080010869int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010870{
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010010871 if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
Sean Christopherson897cc382019-12-18 13:55:09 -080010872 pr_warn_once("kvm: SMP vm created on host with unstable TSC; "
10873 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +080010874
Sean Christopherson897cc382019-12-18 13:55:09 -080010875 return 0;
Avi Kivity26e52152007-11-20 15:30:24 +020010876}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010877
Sean Christophersone529ef62019-12-18 13:55:15 -080010878int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
Avi Kivity26e52152007-11-20 15:30:24 +020010879{
Sean Christopherson95a0d012019-12-18 13:55:23 -080010880 struct page *page;
10881 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010882
Sean Christopherson63f5a192021-06-22 10:56:52 -070010883 vcpu->arch.last_vmentry_cpu = -1;
Sean Christopherson71170032021-09-20 17:02:54 -070010884 vcpu->arch.regs_avail = ~0;
10885 vcpu->arch.regs_dirty = ~0;
Sean Christopherson63f5a192021-06-22 10:56:52 -070010886
Sean Christopherson95a0d012019-12-18 13:55:23 -080010887 if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu))
10888 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10889 else
10890 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
10891
Sean Christopherson95a0d012019-12-18 13:55:23 -080010892 r = kvm_mmu_create(vcpu);
10893 if (r < 0)
10894 return r;
10895
10896 if (irqchip_in_kernel(vcpu->kvm)) {
Sean Christopherson95a0d012019-12-18 13:55:23 -080010897 r = kvm_create_lapic(vcpu, lapic_timer_advance_ns);
10898 if (r < 0)
10899 goto fail_mmu_destroy;
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -060010900 if (kvm_apicv_activated(vcpu->kvm))
10901 vcpu->arch.apicv_active = true;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010902 } else
Cun Li6e4e3b42021-01-11 23:24:35 +080010903 static_branch_inc(&kvm_has_noapic_vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010904
10905 r = -ENOMEM;
10906
Shakeel Butt93bb59c2020-12-18 14:01:38 -080010907 page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010908 if (!page)
10909 goto fail_free_lapic;
10910 vcpu->arch.pio_data = page_address(page);
10911
10912 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
10913 GFP_KERNEL_ACCOUNT);
10914 if (!vcpu->arch.mce_banks)
10915 goto fail_free_pio_data;
10916 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
10917
10918 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask,
10919 GFP_KERNEL_ACCOUNT))
10920 goto fail_free_mce_banks;
10921
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010922 if (!alloc_emulate_ctxt(vcpu))
10923 goto free_wbinvd_dirty_mask;
10924
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010925 if (!fpu_alloc_guest_fpstate(&vcpu->arch.guest_fpu)) {
10926 pr_err("kvm: failed to allocate vcpu's fpu\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010927 goto free_emulate_ctxt;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010928 }
10929
Sean Christopherson95a0d012019-12-18 13:55:23 -080010930 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Sean Christophersona8ac8642021-02-03 16:01:15 -080010931 vcpu->arch.reserved_gpa_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010932
10933 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
10934
10935 kvm_async_pf_hash_reset(vcpu);
10936 kvm_pmu_init(vcpu);
10937
10938 vcpu->arch.pending_external_vector = -1;
10939 vcpu->arch.preempted_in_kernel = false;
10940
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000010941#if IS_ENABLED(CONFIG_HYPERV)
10942 vcpu->arch.hv_root_tdp = INVALID_PAGE;
10943#endif
10944
Jason Baronb36464772021-01-14 22:27:56 -050010945 r = static_call(kvm_x86_vcpu_create)(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010946 if (r)
10947 goto free_guest_fpu;
Sean Christopherson5f73db12019-12-18 13:55:18 -080010948
Sean Christopherson0cf91352019-03-07 15:43:02 -080010949 vcpu->arch.arch_capabilities = kvm_get_arch_capabilities();
Jim Mattsone53d88af2018-10-30 12:20:21 -070010950 vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT;
Xiao Guangrong19efffa2015-06-15 16:55:31 +080010951 kvm_vcpu_mtrr_init(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010010952 vcpu_load(vcpu);
Ilias Stamatis1ab92872021-06-07 11:54:38 +010010953 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010954 kvm_vcpu_reset(vcpu, false);
Sean Christophersonc9060662021-06-09 16:42:33 -070010955 kvm_init_mmu(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010956 vcpu_put(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010010957 return 0;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010958
10959free_guest_fpu:
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020010960 fpu_free_guest_fpstate(&vcpu->arch.guest_fpu);
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010961free_emulate_ctxt:
10962 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010963free_wbinvd_dirty_mask:
10964 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
10965fail_free_mce_banks:
10966 kfree(vcpu->arch.mce_banks);
10967fail_free_pio_data:
10968 free_page((unsigned long)vcpu->arch.pio_data);
10969fail_free_lapic:
10970 kvm_free_lapic(vcpu);
10971fail_mmu_destroy:
10972 kvm_mmu_destroy(vcpu);
10973 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010974}
10975
Dominik Dingel31928aa2014-12-04 15:47:07 +010010976void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010977{
Andrew Jones332967a2014-02-28 12:52:55 +010010978 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010979
Christoffer Dallec7660c2017-12-04 21:35:23 +010010980 if (mutex_lock_killable(&vcpu->mutex))
Dominik Dingel31928aa2014-12-04 15:47:07 +010010981 return;
Christoffer Dallec7660c2017-12-04 21:35:23 +010010982 vcpu_load(vcpu);
Paolo Bonzini0c899c22020-09-24 14:45:27 +020010983 kvm_synchronize_tsc(vcpu, 0);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010984 vcpu_put(vcpu);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030010985
10986 /* poll control enabled by default */
10987 vcpu->arch.msr_kvm_poll_control = 1;
10988
Christoffer Dallec7660c2017-12-04 21:35:23 +010010989 mutex_unlock(&vcpu->mutex);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010990
Wanpeng Lib34de572020-02-28 11:18:41 +080010991 if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0)
10992 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
10993 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010994}
10995
Hollis Blanchardd40ccc62007-11-19 14:04:43 -060010996void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010997{
Sean Christopherson95a0d012019-12-18 13:55:23 -080010998 int idx;
Gleb Natapov344d9582010-10-14 11:22:50 +020010999
Sean Christopherson50b143e2019-12-18 13:55:07 -080011000 kvmclock_reset(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011001
Jason Baronb36464772021-01-14 22:27:56 -050011002 static_call(kvm_x86_vcpu_free)(vcpu);
Sean Christopherson50b143e2019-12-18 13:55:07 -080011003
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011004 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson50b143e2019-12-18 13:55:07 -080011005 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011006 fpu_free_guest_fpstate(&vcpu->arch.guest_fpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011007
11008 kvm_hv_vcpu_uninit(vcpu);
11009 kvm_pmu_destroy(vcpu);
11010 kfree(vcpu->arch.mce_banks);
11011 kvm_free_lapic(vcpu);
11012 idx = srcu_read_lock(&vcpu->kvm->srcu);
11013 kvm_mmu_destroy(vcpu);
11014 srcu_read_unlock(&vcpu->kvm->srcu, idx);
11015 free_page((unsigned long)vcpu->arch.pio_data);
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +020011016 kvfree(vcpu->arch.cpuid_entries);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011017 if (!lapic_in_kernel(vcpu))
Cun Li6e4e3b42021-01-11 23:24:35 +080011018 static_branch_dec(&kvm_has_noapic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011019}
11020
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011021void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011022{
Sean Christopherson25b97842021-09-29 15:24:26 -070011023 struct kvm_cpuid_entry2 *cpuid_0x1;
Sean Christopherson0aa18372021-06-22 10:56:48 -070011024 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Sean Christopherson4c72ab52021-07-13 09:33:24 -070011025 unsigned long new_cr0;
Sean Christopherson0aa18372021-06-22 10:56:48 -070011026
Sean Christopherson62dd57d2021-09-20 17:03:03 -070011027 /*
11028 * Several of the "set" flows, e.g. ->set_cr0(), read other registers
11029 * to handle side effects. RESET emulation hits those flows and relies
11030 * on emulated/virtualized registers, including those that are loaded
11031 * into hardware, to be zeroed at vCPU creation. Use CRs as a sentinel
11032 * to detect improper or missing initialization.
11033 */
11034 WARN_ON_ONCE(!init_event &&
11035 (old_cr0 || kvm_read_cr3(vcpu) || kvm_read_cr4(vcpu)));
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011036
Radim Krčmářb7e31be2018-03-01 15:24:25 +010011037 kvm_lapic_reset(vcpu, init_event);
11038
Paolo Bonzinie69fab52015-06-04 10:44:44 +020011039 vcpu->arch.hflags = 0;
11040
Paolo Bonzinic43203c2016-06-01 22:26:00 +020011041 vcpu->arch.smi_pending = 0;
Liran Alon52797bf2017-11-15 13:43:14 +020011042 vcpu->arch.smi_count = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +030011043 atomic_set(&vcpu->arch.nmi_queued, 0);
11044 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +020011045 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +030011046 kvm_clear_interrupt_queue(vcpu);
11047 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +020011048
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011049 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +030011050 kvm_update_dr0123(vcpu);
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +080011051 vcpu->arch.dr6 = DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011052 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +020011053 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011054
Nadav Amit11190222015-04-02 03:10:38 +030011055 vcpu->arch.cr2 = 0;
11056
Avi Kivity3842d132010-07-27 12:30:24 +030011057 kvm_make_request(KVM_REQ_EVENT, vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011058 vcpu->arch.apf.msr_en_val = 0;
11059 vcpu->arch.apf.msr_int_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -040011060 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +030011061
Glauber Costa12f9a482011-02-01 14:16:40 -050011062 kvmclock_reset(vcpu);
11063
Gleb Natapovaf585b92010-10-14 11:22:46 +020011064 kvm_clear_async_pf_completion_queue(vcpu);
11065 kvm_async_pf_hash_reset(vcpu);
11066 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011067
Thomas Gleixnerd69c1382021-10-22 20:55:53 +020011068 if (vcpu->arch.guest_fpu.fpstate && kvm_mpx_supported()) {
11069 struct fpstate *fpstate = vcpu->arch.guest_fpu.fpstate;
Wanpeng Lia554d202017-10-11 05:10:19 -070011070
11071 /*
11072 * To avoid have the INIT path from kvm_apic_has_events() that be
11073 * called with loaded FPU and does not let userspace fix the state.
11074 */
Rik van Rielf775b132017-11-14 16:54:23 -050011075 if (init_event)
11076 kvm_put_guest_fpu(vcpu);
Thomas Gleixner087df482021-10-13 16:55:31 +020011077
11078 fpstate_clear_xstate_component(fpstate, XFEATURE_BNDREGS);
11079 fpstate_clear_xstate_component(fpstate, XFEATURE_BNDCSR);
11080
Rik van Rielf775b132017-11-14 16:54:23 -050011081 if (init_event)
11082 kvm_load_guest_fpu(vcpu);
Wanpeng Lia554d202017-10-11 05:10:19 -070011083 }
11084
Paolo Bonzini64d60672015-05-07 11:36:11 +020011085 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011086 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +020011087 vcpu->arch.smbase = 0x30000;
Kyle Hueydb2336a2017-03-20 01:16:28 -070011088
Kyle Hueydb2336a2017-03-20 01:16:28 -070011089 vcpu->arch.msr_misc_features_enables = 0;
Wanpeng Lia554d202017-10-11 05:10:19 -070011090
11091 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Paolo Bonzini64d60672015-05-07 11:36:11 +020011092 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020011093
Sean Christophersonff8828c2021-09-20 17:02:56 -070011094 /* All GPRs except RDX (handled below) are zeroed on RESET/INIT. */
Julian Stecklina66f7b722012-12-05 15:26:19 +010011095 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
Sean Christophersonff8828c2021-09-20 17:02:56 -070011096 kvm_register_mark_dirty(vcpu, VCPU_REGS_RSP);
Julian Stecklina66f7b722012-12-05 15:26:19 +010011097
Sean Christopherson49d86652021-07-13 09:32:57 -070011098 /*
11099 * Fall back to KVM's default Family/Model/Stepping of 0x600 (P6/Athlon)
11100 * if no CPUID match is found. Note, it's impossible to get a match at
11101 * RESET since KVM emulates RESET before exposing the vCPU to userspace,
Sean Christopherson25b97842021-09-29 15:24:26 -070011102 * i.e. it's impossible for kvm_find_cpuid_entry() to find a valid entry
11103 * on RESET. But, go through the motions in case that's ever remedied.
Sean Christopherson49d86652021-07-13 09:32:57 -070011104 */
Sean Christopherson25b97842021-09-29 15:24:26 -070011105 cpuid_0x1 = kvm_find_cpuid_entry(vcpu, 1, 0);
11106 kvm_rdx_write(vcpu, cpuid_0x1 ? cpuid_0x1->eax : 0x600);
Sean Christopherson49d86652021-07-13 09:32:57 -070011107
Wanpeng Lia554d202017-10-11 05:10:19 -070011108 vcpu->arch.ia32_xss = 0;
11109
Jason Baronb36464772021-01-14 22:27:56 -050011110 static_call(kvm_x86_vcpu_reset)(vcpu, init_event);
Sean Christopherson0aa18372021-06-22 10:56:48 -070011111
Sean Christophersonf39e8052021-07-13 09:33:14 -070011112 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
11113 kvm_rip_write(vcpu, 0xfff0);
11114
Sean Christopherson03a6e842021-09-20 17:02:55 -070011115 vcpu->arch.cr3 = 0;
11116 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
11117
Sean Christopherson4c72ab52021-07-13 09:33:24 -070011118 /*
11119 * CR0.CD/NW are set on RESET, preserved on INIT. Note, some versions
11120 * of Intel's SDM list CD/NW as being set on INIT, but they contradict
11121 * (or qualify) that with a footnote stating that CD/NW are preserved.
11122 */
11123 new_cr0 = X86_CR0_ET;
11124 if (init_event)
11125 new_cr0 |= (old_cr0 & (X86_CR0_NW | X86_CR0_CD));
11126 else
11127 new_cr0 |= X86_CR0_NW | X86_CR0_CD;
11128
11129 static_call(kvm_x86_set_cr0)(vcpu, new_cr0);
Sean Christophersonf39e8052021-07-13 09:33:14 -070011130 static_call(kvm_x86_set_cr4)(vcpu, 0);
11131 static_call(kvm_x86_set_efer)(vcpu, 0);
11132 static_call(kvm_x86_update_exception_bitmap)(vcpu);
11133
Sean Christopherson0aa18372021-06-22 10:56:48 -070011134 /*
11135 * Reset the MMU context if paging was enabled prior to INIT (which is
11136 * implied if CR0.PG=1 as CR0 will be '0' prior to RESET). Unlike the
11137 * standard CR0/CR4/EFER modification paths, only CR0.PG needs to be
11138 * checked because it is unconditionally cleared on INIT and all other
11139 * paging related bits are ignored if paging is disabled, i.e. CR0.WP,
11140 * CR4, and EFER changes are all irrelevant if CR0.PG was '0'.
11141 */
11142 if (old_cr0 & X86_CR0_PG)
11143 kvm_mmu_reset_context(vcpu);
Sean Christophersondf37ed32021-07-13 09:32:39 -070011144
11145 /*
11146 * Intel's SDM states that all TLB entries are flushed on INIT. AMD's
11147 * APM states the TLBs are untouched by INIT, but it also states that
11148 * the TLBs are flushed on "External initialization of the processor."
11149 * Flush the guest TLB regardless of vendor, there is no meaningful
11150 * benefit in relying on the guest to flush the TLB immediately after
11151 * INIT. A spurious TLB flush is benign and likely negligible from a
11152 * performance perspective.
11153 */
11154 if (init_event)
11155 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011156}
Sean Christopherson265e4352021-07-13 09:33:22 -070011157EXPORT_SYMBOL_GPL(kvm_vcpu_reset);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011158
Paolo Bonzini2b4a2732014-11-24 14:35:24 +010011159void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +010011160{
11161 struct kvm_segment cs;
11162
11163 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
11164 cs.selector = vector << 8;
11165 cs.base = vector << 12;
11166 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
11167 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011168}
Tom Lendacky647daca2021-01-04 14:20:01 -060011169EXPORT_SYMBOL_GPL(kvm_vcpu_deliver_sipi_vector);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011170
Radim Krčmář13a34e02014-08-28 15:13:03 +020011171int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011172{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -100011173 struct kvm *kvm;
11174 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +000011175 unsigned long i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011176 int ret;
11177 u64 local_tsc;
11178 u64 max_tsc = 0;
11179 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +030011180
Sean Christopherson7e34fbd2020-09-23 11:03:55 -070011181 kvm_user_return_msr_cpu_online();
Jason Baronb36464772021-01-14 22:27:56 -050011182 ret = static_call(kvm_x86_hardware_enable)();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011183 if (ret != 0)
11184 return ret;
11185
Andy Lutomirski4ea16362015-06-25 18:44:07 +020011186 local_tsc = rdtsc();
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010011187 stable = !kvm_check_tsc_unstable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011188 list_for_each_entry(kvm, &vm_list, vm_list) {
11189 kvm_for_each_vcpu(i, vcpu, kvm) {
11190 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +080011191 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011192 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
11193 backwards_tsc = true;
11194 if (vcpu->arch.last_host_tsc > max_tsc)
11195 max_tsc = vcpu->arch.last_host_tsc;
11196 }
11197 }
11198 }
11199
11200 /*
11201 * Sometimes, even reliable TSCs go backwards. This happens on
11202 * platforms that reset TSC during suspend or hibernate actions, but
11203 * maintain synchronization. We must compensate. Fortunately, we can
11204 * detect that condition here, which happens early in CPU bringup,
11205 * before any KVM threads can be running. Unfortunately, we can't
11206 * bring the TSCs fully up to date with real time, as we aren't yet far
11207 * enough into CPU bringup that we know how much real time has actually
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011208 * elapsed; our helper function, ktime_get_boottime_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011209 * variables that haven't been updated yet.
11210 *
11211 * So we simply find the maximum observed TSC above, then record the
11212 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
11213 * the adjustment will be applied. Note that we accumulate
11214 * adjustments, in case multiple suspend cycles happen before some VCPU
11215 * gets a chance to run again. In the event that no KVM threads get a
11216 * chance to run, we will miss the entire elapsed period, as we'll have
11217 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
11218 * loose cycle time. This isn't too big a deal, since the loss will be
11219 * uniform across all VCPUs (not to mention the scenario is extremely
11220 * unlikely). It is possible that a second hibernate recovery happens
11221 * much faster than a first, causing the observed TSC here to be
11222 * smaller; this would require additional padding adjustment, which is
11223 * why we set last_host_tsc to the local tsc observed here.
11224 *
11225 * N.B. - this code below runs only on platforms with reliable TSC,
11226 * as that is the only way backwards_tsc is set above. Also note
11227 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
11228 * have the same delta_cyc adjustment applied if backwards_tsc
11229 * is detected. Note further, this adjustment is only done once,
11230 * as we reset last_host_tsc on all VCPUs to stop this from being
11231 * called multiple times (one for each physical CPU bringup).
11232 *
Guo Chao4a969982012-06-28 15:17:27 +080011233 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011234 * will be compensated by the logic in vcpu_load, which sets the TSC to
11235 * catchup mode. This will catchup all VCPUs to real time, but cannot
11236 * guarantee that they stay in perfect synchronization.
11237 */
11238 if (backwards_tsc) {
11239 u64 delta_cyc = max_tsc - local_tsc;
11240 list_for_each_entry(kvm, &vm_list, vm_list) {
Ladi Proseka826faf2017-06-26 09:56:43 +020011241 kvm->arch.backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011242 kvm_for_each_vcpu(i, vcpu, kvm) {
11243 vcpu->arch.tsc_offset_adjustment += delta_cyc;
11244 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +080011245 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011246 }
11247
11248 /*
11249 * We have to disable TSC offset matching.. if you were
11250 * booting a VM while issuing an S4 host suspend....
11251 * you may have some problem. Solving this issue is
11252 * left as an exercise to the reader.
11253 */
11254 kvm->arch.last_tsc_nsec = 0;
11255 kvm->arch.last_tsc_write = 0;
11256 }
11257
11258 }
11259 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011260}
11261
Radim Krčmář13a34e02014-08-28 15:13:03 +020011262void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011263{
Jason Baronb36464772021-01-14 22:27:56 -050011264 static_call(kvm_x86_hardware_disable)();
Radim Krčmář13a34e02014-08-28 15:13:03 +020011265 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011266}
11267
Sean Christophersonb9904082020-03-21 13:25:55 -070011268int kvm_arch_hardware_setup(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011269{
Sean Christophersond008dfd2020-03-21 13:25:56 -070011270 struct kvm_x86_init_ops *ops = opaque;
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011271 int r;
11272
Sean Christopherson91661982020-03-02 15:57:06 -080011273 rdmsrl_safe(MSR_EFER, &host_efer);
11274
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011275 if (boot_cpu_has(X86_FEATURE_XSAVES))
11276 rdmsrl(MSR_IA32_XSS, host_xss);
11277
Sean Christophersond008dfd2020-03-21 13:25:56 -070011278 r = ops->hardware_setup();
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011279 if (r != 0)
11280 return r;
11281
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011282 memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops));
Jason Baronb36464772021-01-14 22:27:56 -050011283 kvm_ops_static_call_update();
Sean Christopherson69c6f692020-03-21 13:25:59 -070011284
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011285 if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES))
11286 supported_xss = 0;
11287
Paolo Bonzini139f7422020-05-05 09:40:46 -040011288#define __kvm_cpu_cap_has(UNUSED_, f) kvm_cpu_cap_has(f)
11289 cr4_reserved_bits = __cr4_reserved_bits(__kvm_cpu_cap_has, UNUSED_);
11290#undef __kvm_cpu_cap_has
Sean Christophersonb11306b2019-12-10 14:44:13 -080011291
Haozhong Zhang35181e82015-10-20 15:39:03 +080011292 if (kvm_has_tsc_control) {
11293 /*
11294 * Make sure the user can only configure tsc_khz values that
11295 * fit into a signed integer.
Marcelo Tosatti273ba452018-06-11 14:12:10 -030011296 * A min value is not calculated because it will always
Haozhong Zhang35181e82015-10-20 15:39:03 +080011297 * be 1 on all machines.
11298 */
11299 u64 max = min(0x7fffffffULL,
11300 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
11301 kvm_max_guest_tsc_khz = max;
11302
Haozhong Zhangad7218832015-10-20 15:39:02 +080011303 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +080011304 }
Haozhong Zhangad7218832015-10-20 15:39:02 +080011305
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011306 kvm_init_msr_list();
11307 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011308}
11309
11310void kvm_arch_hardware_unsetup(void)
11311{
Jason Baronb36464772021-01-14 22:27:56 -050011312 static_call(kvm_x86_hardware_unsetup)();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011313}
11314
Sean Christophersonb9904082020-03-21 13:25:55 -070011315int kvm_arch_check_processor_compat(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011316{
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011317 struct cpuinfo_x86 *c = &cpu_data(smp_processor_id());
Sean Christophersond008dfd2020-03-21 13:25:56 -070011318 struct kvm_x86_init_ops *ops = opaque;
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011319
11320 WARN_ON(!irqs_disabled());
11321
Paolo Bonzini139f7422020-05-05 09:40:46 -040011322 if (__cr4_reserved_bits(cpu_has, c) !=
11323 __cr4_reserved_bits(cpu_has, &boot_cpu_data))
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011324 return -EIO;
11325
Sean Christophersond008dfd2020-03-21 13:25:56 -070011326 return ops->check_processor_compatibility();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011327}
11328
Paolo Bonzinid71ba782015-07-29 11:56:48 +020011329bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
11330{
11331 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
11332}
11333EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
11334
11335bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
11336{
11337 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
11338}
11339
Cun Li6e4e3b42021-01-11 23:24:35 +080011340__read_mostly DEFINE_STATIC_KEY_FALSE(kvm_has_noapic_vcpu);
11341EXPORT_SYMBOL_GPL(kvm_has_noapic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +030011342
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011343void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
11344{
Like Xub35e5542019-10-27 18:52:43 +080011345 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
11346
Paolo Bonzinic595cee2018-07-02 13:07:14 +020011347 vcpu->arch.l1tf_flush_l1d = true;
Like Xub35e5542019-10-27 18:52:43 +080011348 if (pmu->version && unlikely(pmu->event_count)) {
11349 pmu->need_cleanup = true;
11350 kvm_make_request(KVM_REQ_PMU, vcpu);
11351 }
Jason Baronb36464772021-01-14 22:27:56 -050011352 static_call(kvm_x86_sched_in)(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011353}
11354
Sean Christopherson562b6b02020-01-26 16:41:13 -080011355void kvm_arch_free_vm(struct kvm *kvm)
11356{
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +010011357 kfree(to_kvm_hv(kvm)->hv_pa_pg);
Juergen Gross78b497f2021-09-03 15:08:05 +020011358 __kvm_arch_free_vm(kvm);
Sean Christopherson562b6b02020-01-26 16:41:13 -080011359}
11360
11361
Carsten Ottee08b9632012-01-04 10:25:20 +010011362int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011363{
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011364 int ret;
Paolo Bonzini869b4422021-09-16 18:15:36 +000011365 unsigned long flags;
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011366
Carsten Ottee08b9632012-01-04 10:25:20 +010011367 if (type)
11368 return -EINVAL;
11369
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011370 ret = kvm_page_track_init(kvm);
11371 if (ret)
11372 return ret;
11373
Paolo Bonzini6ef768f2014-11-20 13:45:31 +010011374 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +080011375 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Sean Christopherson10605202019-09-12 19:46:10 -070011376 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011377 INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030011378 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060011379 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011380
Sheng Yang5550af42008-10-15 20:15:06 +080011381 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
11382 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -060011383 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
11384 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
11385 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +080011386
Jan Kiszka038f8c12011-02-04 10:49:11 +010011387 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +030011388 mutex_init(&kvm->arch.apic_map_lock);
Paolo Bonzini869b4422021-09-16 18:15:36 +000011389 seqcount_raw_spinlock_init(&kvm->arch.pvclock_sc, &kvm->arch.tsc_write_lock);
Paolo Bonzini8171cd62020-01-22 14:36:09 +010011390 kvm->arch.kvmclock_offset = -get_kvmclock_base_ns();
Paolo Bonzini869b4422021-09-16 18:15:36 +000011391
11392 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattid8281992012-11-27 23:29:01 -020011393 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzini869b4422021-09-16 18:15:36 +000011394 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +010011395
Drew Schmitt6fbbde92018-08-20 10:32:15 -070011396 kvm->arch.guest_can_read_msr_platform_info = true;
11397
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000011398#if IS_ENABLED(CONFIG_HYPERV)
11399 spin_lock_init(&kvm->arch.hv_root_tdp_lock);
11400 kvm->arch.hv_root_tdp = INVALID_PAGE;
11401#endif
11402
Andrew Jones7e44e442014-02-28 12:52:54 +010011403 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +010011404 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +010011405
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +020011406 kvm_apicv_init(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011407 kvm_hv_init_vm(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011408 kvm_mmu_init_vm(kvm);
Paolo Bonzini319afe62021-08-04 12:48:41 -040011409 kvm_xen_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +080011410
Jason Baronb36464772021-01-14 22:27:56 -050011411 return static_call(kvm_x86_vm_init)(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011412}
11413
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011414int kvm_arch_post_init_vm(struct kvm *kvm)
11415{
11416 return kvm_mmu_post_init_vm(kvm);
11417}
11418
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011419static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
11420{
Christoffer Dallec7660c2017-12-04 21:35:23 +010011421 vcpu_load(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011422 kvm_mmu_unload(vcpu);
11423 vcpu_put(vcpu);
11424}
11425
11426static void kvm_free_vcpus(struct kvm *kvm)
11427{
Marc Zyngier46808a42021-11-16 16:04:02 +000011428 unsigned long i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011429 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011430
11431 /*
11432 * Unpin any mmu pages first.
11433 */
Gleb Natapovaf585b92010-10-14 11:22:46 +020011434 kvm_for_each_vcpu(i, vcpu, kvm) {
11435 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011436 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011437 }
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011438
Marc Zyngier27592ae2021-11-16 16:03:57 +000011439 kvm_destroy_vcpus(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011440}
11441
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011442void kvm_arch_sync_events(struct kvm *kvm)
11443{
Andrew Jones332967a2014-02-28 12:52:55 +010011444 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +010011445 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +080011446 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011447}
11448
Peter Xuff5a9832020-09-30 21:20:33 -040011449#define ERR_PTR_USR(e) ((void __user *)ERR_PTR(e))
11450
11451/**
11452 * __x86_set_memory_region: Setup KVM internal memory slot
11453 *
11454 * @kvm: the kvm pointer to the VM.
11455 * @id: the slot ID to setup.
11456 * @gpa: the GPA to install the slot (unused when @size == 0).
11457 * @size: the size of the slot. Set to zero to uninstall a slot.
11458 *
11459 * This function helps to setup a KVM internal memory slot. Specify
11460 * @size > 0 to install a new slot, while @size == 0 to uninstall a
11461 * slot. The return code can be one of the following:
11462 *
11463 * HVA: on success (uninstall will return a bogus HVA)
11464 * -errno: on error
11465 *
11466 * The caller should always use IS_ERR() to check the return value
11467 * before use. Note, the KVM internal memory slots are guaranteed to
11468 * remain valid and unchanged until the VM is destroyed, i.e., the
11469 * GPA->HVA translation will not change. However, the HVA is a user
11470 * address, i.e. its accessibility is not guaranteed, and must be
11471 * accessed via __copy_{to,from}_user().
11472 */
11473void __user * __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa,
11474 u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011475{
11476 int i, r;
Kees Cook3f649ab2020-06-03 13:09:38 -070011477 unsigned long hva, old_npages;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011478 struct kvm_memslots *slots = kvm_memslots(kvm);
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011479 struct kvm_memory_slot *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011480
11481 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011482 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
Peter Xuff5a9832020-09-30 21:20:33 -040011483 return ERR_PTR_USR(-EINVAL);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011484
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011485 slot = id_to_memslot(slots, id);
11486 if (size) {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011487 if (slot && slot->npages)
Peter Xuff5a9832020-09-30 21:20:33 -040011488 return ERR_PTR_USR(-EEXIST);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011489
11490 /*
11491 * MAP_SHARED to prevent internal slot pages from being moved
11492 * by fork()/COW.
11493 */
11494 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
11495 MAP_SHARED | MAP_ANONYMOUS, 0);
11496 if (IS_ERR((void *)hva))
Peter Xuff5a9832020-09-30 21:20:33 -040011497 return (void __user *)hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011498 } else {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011499 if (!slot || !slot->npages)
Muhammad Usama Anjum46914532021-03-05 23:08:16 +050011500 return NULL;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011501
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011502 old_npages = slot->npages;
Zheng Zhan Liangb66f9ba2021-02-01 13:53:10 +080011503 hva = slot->userspace_addr;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011504 }
11505
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011506 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011507 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011508
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011509 m.slot = id | (i << 16);
11510 m.flags = 0;
11511 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011512 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011513 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011514 r = __kvm_set_memory_region(kvm, &m);
11515 if (r < 0)
Peter Xuff5a9832020-09-30 21:20:33 -040011516 return ERR_PTR_USR(r);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011517 }
11518
Eric Biggers103c7632018-01-31 17:30:21 -080011519 if (!size)
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011520 vm_munmap(hva, old_npages * PAGE_SIZE);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011521
Peter Xuff5a9832020-09-30 21:20:33 -040011522 return (void __user *)hva;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011523}
11524EXPORT_SYMBOL_GPL(__x86_set_memory_region);
11525
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011526void kvm_arch_pre_destroy_vm(struct kvm *kvm)
11527{
11528 kvm_mmu_pre_destroy_vm(kvm);
11529}
11530
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011531void kvm_arch_destroy_vm(struct kvm *kvm)
11532{
Andrew Honig27469d22013-04-18 09:38:14 -070011533 if (current->mm == kvm->mm) {
11534 /*
11535 * Free memory regions allocated on behalf of userspace,
11536 * unless the the memory map has changed due to process exit
11537 * or fd copying.
11538 */
Peter Xu6a3c6232020-01-09 09:57:16 -050011539 mutex_lock(&kvm->slots_lock);
11540 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
11541 0, 0);
11542 __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
11543 0, 0);
11544 __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
11545 mutex_unlock(&kvm->slots_lock);
Andrew Honig27469d22013-04-18 09:38:14 -070011546 }
Jason Baronb36464772021-01-14 22:27:56 -050011547 static_call_cond(kvm_x86_vm_destroy)(kvm);
Sean Christophersonb318e8d2021-03-16 11:44:33 -070011548 kvm_free_msr_filter(srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1));
Peter Xuc7611592017-03-15 16:01:19 +080011549 kvm_pic_destroy(kvm);
11550 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011551 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +020011552 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Eric Hankland66bb8a02019-07-10 18:25:15 -070011553 kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011554 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +020011555 kvm_page_track_cleanup(kvm);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +000011556 kvm_xen_destroy_vm(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011557 kvm_hv_destroy_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011558}
Zhang Xiantao0de10342007-11-20 16:25:04 +080011559
Ben Gardonc9b929b2021-05-18 10:34:08 -070011560static void memslot_rmap_free(struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011561{
11562 int i;
11563
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011564 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011565 kvfree(slot->arch.rmap[i]);
11566 slot->arch.rmap[i] = NULL;
Ben Gardonc9b929b2021-05-18 10:34:08 -070011567 }
11568}
Sean Christophersone96c81e2020-02-18 13:07:27 -080011569
Ben Gardonc9b929b2021-05-18 10:34:08 -070011570void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
11571{
11572 int i;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011573
Ben Gardonc9b929b2021-05-18 10:34:08 -070011574 memslot_rmap_free(slot);
11575
11576 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011577 kvfree(slot->arch.lpage_info[i - 1]);
11578 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011579 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011580
Sean Christophersone96c81e2020-02-18 13:07:27 -080011581 kvm_page_track_free_memslot(slot);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011582}
11583
David Stevens1e76a3c2021-10-15 12:30:21 -040011584int memslot_rmap_alloc(struct kvm_memory_slot *slot, unsigned long npages)
Ben Gardon56dd1012021-05-18 10:34:09 -070011585{
11586 const int sz = sizeof(*slot->arch.rmap[0]);
11587 int i;
11588
11589 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
11590 int level = i + 1;
Peter Xu4139b192021-07-30 18:04:51 -040011591 int lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Ben Gardon56dd1012021-05-18 10:34:09 -070011592
Paolo Bonzinifa138432021-10-15 13:05:00 -040011593 if (slot->arch.rmap[i])
11594 continue;
Ben Gardond501f742021-05-18 10:34:14 -070011595
Ben Gardon56dd1012021-05-18 10:34:09 -070011596 slot->arch.rmap[i] = kvcalloc(lpages, sz, GFP_KERNEL_ACCOUNT);
11597 if (!slot->arch.rmap[i]) {
11598 memslot_rmap_free(slot);
11599 return -ENOMEM;
11600 }
11601 }
11602
11603 return 0;
11604}
11605
Ben Gardona2557402021-05-18 10:34:12 -070011606static int kvm_alloc_memslot_metadata(struct kvm *kvm,
Sean Christopherson9d7d18e2021-12-06 20:54:16 +010011607 struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011608{
Sean Christopherson9d7d18e2021-12-06 20:54:16 +010011609 unsigned long npages = slot->npages;
Ben Gardon56dd1012021-05-18 10:34:09 -070011610 int i, r;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011611
Sean Christophersonedd4fa32020-02-18 13:07:15 -080011612 /*
11613 * Clear out the previous array pointers for the KVM_MR_MOVE case. The
11614 * old arrays will be freed by __kvm_set_memory_region() if installing
11615 * the new memslot is successful.
11616 */
11617 memset(&slot->arch, 0, sizeof(slot->arch));
11618
Ben Gardone2209712021-05-18 10:34:13 -070011619 if (kvm_memslots_have_rmaps(kvm)) {
Ben Gardona2557402021-05-18 10:34:12 -070011620 r = memslot_rmap_alloc(slot, npages);
11621 if (r)
11622 return r;
11623 }
Ben Gardon56dd1012021-05-18 10:34:09 -070011624
11625 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011626 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011627 unsigned long ugfn;
11628 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011629 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011630
Peter Xu4139b192021-07-30 18:04:51 -040011631 lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011632
Ben Gardon254272c2019-02-11 11:02:50 -080011633 linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT);
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011634 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011635 goto out_free;
11636
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011637 slot->arch.lpage_info[i - 1] = linfo;
11638
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011639 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011640 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011641 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011642 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011643 ugfn = slot->userspace_addr >> PAGE_SHIFT;
11644 /*
11645 * If the gfn and userspace address are not aligned wrt each
Sean Christopherson600087b2020-03-02 15:57:05 -080011646 * other, disable large page support for this slot.
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011647 */
Sean Christopherson600087b2020-03-02 15:57:05 -080011648 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011649 unsigned long j;
11650
11651 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011652 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011653 }
11654 }
11655
David Stevensdeae4a12021-09-22 13:58:59 +090011656 if (kvm_page_track_create_memslot(kvm, slot, npages))
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011657 goto out_free;
11658
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011659 return 0;
11660
11661out_free:
Ben Gardonc9b929b2021-05-18 10:34:08 -070011662 memslot_rmap_free(slot);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011663
Ben Gardonc9b929b2021-05-18 10:34:08 -070011664 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +010011665 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011666 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011667 }
11668 return -ENOMEM;
11669}
11670
Sean Christopherson15248252019-02-05 12:54:17 -080011671void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011672{
Boris Ostrovsky91724812019-12-05 01:30:51 +000011673 struct kvm_vcpu *vcpu;
Marc Zyngier46808a42021-11-16 16:04:02 +000011674 unsigned long i;
Boris Ostrovsky91724812019-12-05 01:30:51 +000011675
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +090011676 /*
11677 * memslots->generation has been incremented.
11678 * mmio generation may have reached its maximum value.
11679 */
Sean Christopherson15248252019-02-05 12:54:17 -080011680 kvm_mmu_invalidate_mmio_sptes(kvm, gen);
Boris Ostrovsky91724812019-12-05 01:30:51 +000011681
11682 /* Force re-initialization of steal_time cache */
11683 kvm_for_each_vcpu(i, vcpu, kvm)
11684 kvm_vcpu_kick(vcpu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011685}
11686
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011687int kvm_arch_prepare_memory_region(struct kvm *kvm,
Sean Christopherson537a17b2021-12-06 20:54:11 +010011688 const struct kvm_memory_slot *old,
11689 struct kvm_memory_slot *new,
11690 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +080011691{
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011692 if (change == KVM_MR_CREATE || change == KVM_MR_MOVE)
Sean Christopherson9d7d18e2021-12-06 20:54:16 +010011693 return kvm_alloc_memslot_metadata(kvm, new);
Sean Christopherson537a17b2021-12-06 20:54:11 +010011694
11695 if (change == KVM_MR_FLAGS_ONLY)
11696 memcpy(&new->arch, &old->arch, sizeof(old->arch));
11697 else if (WARN_ON_ONCE(change != KVM_MR_DELETE))
11698 return -EIO;
11699
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011700 return 0;
11701}
11702
Makarand Sonarea85863c2021-02-12 16:50:12 -080011703
11704static void kvm_mmu_update_cpu_dirty_logging(struct kvm *kvm, bool enable)
11705{
11706 struct kvm_arch *ka = &kvm->arch;
11707
11708 if (!kvm_x86_ops.cpu_dirty_log_size)
11709 return;
11710
11711 if ((enable && ++ka->cpu_dirty_logging_count == 1) ||
11712 (!enable && --ka->cpu_dirty_logging_count == 0))
11713 kvm_make_all_cpus_request(kvm, KVM_REQ_UPDATE_CPU_DIRTY_LOGGING);
11714
11715 WARN_ON_ONCE(ka->cpu_dirty_logging_count < 0);
11716}
11717
Kai Huang88178fd2015-01-28 10:54:27 +080011718static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
Anthony Yznaga37416792020-06-02 13:07:30 -070011719 struct kvm_memory_slot *old,
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011720 const struct kvm_memory_slot *new,
Anthony Yznaga37416792020-06-02 13:07:30 -070011721 enum kvm_mr_change change)
Kai Huang88178fd2015-01-28 10:54:27 +080011722{
Sean Christopherson77aedf22021-12-06 20:54:20 +010011723 u32 old_flags = old ? old->flags : 0;
11724 u32 new_flags = new ? new->flags : 0;
11725 bool log_dirty_pages = new_flags & KVM_MEM_LOG_DIRTY_PAGES;
Makarand Sonarea85863c2021-02-12 16:50:12 -080011726
Anthony Yznaga37416792020-06-02 13:07:30 -070011727 /*
Makarand Sonarea85863c2021-02-12 16:50:12 -080011728 * Update CPU dirty logging if dirty logging is being toggled. This
11729 * applies to all operations.
11730 */
Sean Christopherson77aedf22021-12-06 20:54:20 +010011731 if ((old_flags ^ new_flags) & KVM_MEM_LOG_DIRTY_PAGES)
Makarand Sonarea85863c2021-02-12 16:50:12 -080011732 kvm_mmu_update_cpu_dirty_logging(kvm, log_dirty_pages);
11733
11734 /*
11735 * Nothing more to do for RO slots (which can't be dirtied and can't be
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011736 * made writable) or CREATE/MOVE/DELETE of a slot.
11737 *
11738 * For a memslot with dirty logging disabled:
11739 * CREATE: No dirty mappings will already exist.
11740 * MOVE/DELETE: The old mappings will already have been cleaned up by
11741 * kvm_arch_flush_shadow_memslot()
11742 *
11743 * For a memslot with dirty logging enabled:
11744 * CREATE: No shadow pages exist, thus nothing to write-protect
11745 * and no dirty bits to clear.
11746 * MOVE/DELETE: The old mappings will already have been cleaned up by
11747 * kvm_arch_flush_shadow_memslot().
Anthony Yznaga37416792020-06-02 13:07:30 -070011748 */
Sean Christopherson77aedf22021-12-06 20:54:20 +010011749 if ((change != KVM_MR_FLAGS_ONLY) || (new_flags & KVM_MEM_READONLY))
Kai Huang88178fd2015-01-28 10:54:27 +080011750 return;
Kai Huang88178fd2015-01-28 10:54:27 +080011751
11752 /*
Sean Christopherson52f460792021-02-12 16:50:11 -080011753 * READONLY and non-flags changes were filtered out above, and the only
11754 * other flag is LOG_DIRTY_PAGES, i.e. something is wrong if dirty
11755 * logging isn't being toggled on or off.
Anthony Yznaga37416792020-06-02 13:07:30 -070011756 */
Sean Christopherson77aedf22021-12-06 20:54:20 +010011757 if (WARN_ON_ONCE(!((old_flags ^ new_flags) & KVM_MEM_LOG_DIRTY_PAGES)))
Sean Christopherson52f460792021-02-12 16:50:11 -080011758 return;
11759
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011760 if (!log_dirty_pages) {
11761 /*
11762 * Dirty logging tracks sptes in 4k granularity, meaning that
11763 * large sptes have to be split. If live migration succeeds,
11764 * the guest in the source machine will be destroyed and large
11765 * sptes will be created in the destination. However, if the
11766 * guest continues to run in the source machine (for example if
11767 * live migration fails), small sptes will remain around and
11768 * cause bad performance.
11769 *
11770 * Scan sptes if dirty logging has been stopped, dropping those
11771 * which can be collapsed into a single large-page spte. Later
11772 * page faults will create the large-page sptes.
11773 */
Anthony Yznaga37416792020-06-02 13:07:30 -070011774 kvm_mmu_zap_collapsible_sptes(kvm, new);
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011775 } else {
Keqian Zhu89212912021-04-29 11:41:15 +080011776 /*
11777 * Initially-all-set does not require write protecting any page,
11778 * because they're all assumed to be dirty.
11779 */
11780 if (kvm_dirty_log_manual_protect_and_init_set(kvm))
11781 return;
Anthony Yznaga37416792020-06-02 13:07:30 -070011782
Sean Christophersona018eba2021-02-12 16:50:10 -080011783 if (kvm_x86_ops.cpu_dirty_log_size) {
Keqian Zhu89212912021-04-29 11:41:15 +080011784 kvm_mmu_slot_leaf_clear_dirty(kvm, new);
11785 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_2M);
11786 } else {
11787 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_4K);
Jay Zhou3c9bd402020-02-27 09:32:27 +080011788 }
Kai Huang88178fd2015-01-28 10:54:27 +080011789 }
11790}
11791
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011792void kvm_arch_commit_memory_region(struct kvm *kvm,
Sean Christopherson9d4c1972020-02-18 13:07:24 -080011793 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020011794 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +090011795 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011796{
Maciej S. Szmigieroe0c2b632021-12-06 20:54:23 +010011797 if (!kvm->arch.n_requested_mmu_pages &&
Maciej S. Szmigierof5756022021-12-06 20:54:24 +010011798 (change == KVM_MR_CREATE || change == KVM_MR_DELETE)) {
11799 unsigned long nr_mmu_pages;
11800
11801 nr_mmu_pages = kvm->nr_memslot_pages / KVM_MEMSLOT_PAGES_TO_MMU_PAGES_RATIO;
11802 nr_mmu_pages = max(nr_mmu_pages, KVM_MIN_ALLOC_MMU_PAGES);
11803 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
11804 }
Kai Huang1c91cad42015-01-28 10:54:26 +080011805
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011806 kvm_mmu_slot_apply_flags(kvm, old, new, change);
Sean Christopherson21198842020-02-18 13:07:25 -080011807
11808 /* Free the arrays associated with the old memslot. */
11809 if (change == KVM_MR_MOVE)
Sean Christophersone96c81e2020-02-18 13:07:27 -080011810 kvm_arch_free_memslot(kvm, old);
Zhang Xiantao0de10342007-11-20 16:25:04 +080011811}
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011812
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011813void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011814{
Sean Christopherson7390de12019-02-05 13:01:31 -080011815 kvm_mmu_zap_all(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011816}
11817
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011818void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
11819 struct kvm_memory_slot *slot)
11820{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +080011821 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011822}
11823
Liran Alone6c67d82018-09-04 10:56:52 +030011824static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
11825{
11826 return (is_guest_mode(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011827 kvm_x86_ops.guest_apic_has_interrupt &&
Jason Baronb36464772021-01-14 22:27:56 -050011828 static_call(kvm_x86_guest_apic_has_interrupt)(vcpu));
Liran Alone6c67d82018-09-04 10:56:52 +030011829}
11830
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011831static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
11832{
11833 if (!list_empty_careful(&vcpu->async_pf.done))
11834 return true;
11835
11836 if (kvm_apic_has_events(vcpu))
11837 return true;
11838
11839 if (vcpu->arch.pv.pv_unhalted)
11840 return true;
11841
Wanpeng Lia5f01f82017-09-13 04:04:01 -070011842 if (vcpu->arch.exception.pending)
11843 return true;
11844
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011845 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11846 (vcpu->arch.nmi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011847 static_call(kvm_x86_nmi_allowed)(vcpu, false)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011848 return true;
11849
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011850 if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -040011851 (vcpu->arch.smi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011852 static_call(kvm_x86_smi_allowed)(vcpu, false)))
Paolo Bonzini73917732015-10-13 10:19:35 +020011853 return true;
11854
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011855 if (kvm_arch_interrupt_allowed(vcpu) &&
Liran Alone6c67d82018-09-04 10:56:52 +030011856 (kvm_cpu_has_interrupt(vcpu) ||
11857 kvm_guest_apic_has_interrupt(vcpu)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011858 return true;
11859
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +030011860 if (kvm_hv_has_stimer_pending(vcpu))
11861 return true;
11862
Sean Christophersond2060bd2020-04-22 19:25:39 -070011863 if (is_guest_mode(vcpu) &&
11864 kvm_x86_ops.nested_ops->hv_timer_pending &&
11865 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
11866 return true;
11867
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011868 return false;
11869}
11870
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011871int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
11872{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011873 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011874}
Zhang Xiantao57361992007-12-17 14:21:40 +080011875
Haiwei Li10dbdf92021-04-21 11:25:13 +080011876bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu)
11877{
11878 if (vcpu->arch.apicv_active && static_call(kvm_x86_dy_apicv_has_pending_interrupt)(vcpu))
11879 return true;
11880
11881 return false;
11882}
11883
Wanpeng Li17e433b2019-08-05 10:03:19 +080011884bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
11885{
11886 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
11887 return true;
11888
11889 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11890 kvm_test_request(KVM_REQ_SMI, vcpu) ||
11891 kvm_test_request(KVM_REQ_EVENT, vcpu))
11892 return true;
11893
Haiwei Li10dbdf92021-04-21 11:25:13 +080011894 return kvm_arch_dy_has_pending_interrupt(vcpu);
Wanpeng Li17e433b2019-08-05 10:03:19 +080011895}
11896
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011897bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
11898{
Wanpeng Lib86bb112021-04-22 16:34:19 +080011899 if (vcpu->arch.guest_state_protected)
11900 return true;
11901
Longpeng(Mike)de63ad42017-08-08 12:05:33 +080011902 return vcpu->arch.preempted_in_kernel;
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011903}
11904
Christoffer Dallb6d33832012-03-08 16:44:24 -050011905int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +080011906{
Christoffer Dallb6d33832012-03-08 16:44:24 -050011907 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +080011908}
Gleb Natapov78646122009-03-23 12:12:11 +020011909
11910int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
11911{
Jason Baronb36464772021-01-14 22:27:56 -050011912 return static_call(kvm_x86_interrupt_allowed)(vcpu, false);
Gleb Natapov78646122009-03-23 12:12:11 +020011913}
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011914
Nadav Amit82b32772014-11-02 11:54:45 +020011915unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
11916{
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060011917 /* Can't read the RIP when guest state is protected, just return 0 */
11918 if (vcpu->arch.guest_state_protected)
11919 return 0;
11920
Nadav Amit82b32772014-11-02 11:54:45 +020011921 if (is_64_bit_mode(vcpu))
11922 return kvm_rip_read(vcpu);
11923 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
11924 kvm_rip_read(vcpu));
11925}
11926EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
11927
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011928bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
11929{
Nadav Amit82b32772014-11-02 11:54:45 +020011930 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011931}
11932EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
11933
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011934unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
11935{
11936 unsigned long rflags;
11937
Jason Baronb36464772021-01-14 22:27:56 -050011938 rflags = static_call(kvm_x86_get_rflags)(vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011939 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +010011940 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011941 return rflags;
11942}
11943EXPORT_SYMBOL_GPL(kvm_get_rflags);
11944
Paolo Bonzini6addfc42014-03-27 11:29:28 +010011945static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011946{
11947 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011948 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +010011949 rflags |= X86_EFLAGS_TF;
Jason Baronb36464772021-01-14 22:27:56 -050011950 static_call(kvm_x86_set_rflags)(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010011951}
11952
11953void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
11954{
11955 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +030011956 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011957}
11958EXPORT_SYMBOL_GPL(kvm_set_rflags);
11959
Gleb Natapov56028d02010-10-17 18:13:42 +020011960void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
11961{
11962 int r;
11963
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020011964 if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +080011965 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +020011966 return;
11967
11968 r = kvm_mmu_reload(vcpu);
11969 if (unlikely(r))
11970 return;
11971
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020011972 if (!vcpu->arch.mmu->direct_map &&
Sean Christophersond8dd54e2020-03-02 18:02:39 -080011973 work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu))
Xiao Guangrongfb67e142010-12-07 10:35:25 +080011974 return;
11975
Sean Christopherson7a026742020-02-06 14:14:34 -080011976 kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true);
Gleb Natapov56028d02010-10-17 18:13:42 +020011977}
11978
Gleb Natapovaf585b92010-10-14 11:22:46 +020011979static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
11980{
Peter Xudd03bca2020-04-16 11:58:59 -040011981 BUILD_BUG_ON(!is_power_of_2(ASYNC_PF_PER_VCPU));
11982
Gleb Natapovaf585b92010-10-14 11:22:46 +020011983 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
11984}
11985
11986static inline u32 kvm_async_pf_next_probe(u32 key)
11987{
Peter Xudd03bca2020-04-16 11:58:59 -040011988 return (key + 1) & (ASYNC_PF_PER_VCPU - 1);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011989}
11990
11991static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11992{
11993 u32 key = kvm_async_pf_hash_fn(gfn);
11994
11995 while (vcpu->arch.apf.gfns[key] != ~0)
11996 key = kvm_async_pf_next_probe(key);
11997
11998 vcpu->arch.apf.gfns[key] = gfn;
11999}
12000
12001static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
12002{
12003 int i;
12004 u32 key = kvm_async_pf_hash_fn(gfn);
12005
Peter Xudd03bca2020-04-16 11:58:59 -040012006 for (i = 0; i < ASYNC_PF_PER_VCPU &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +080012007 (vcpu->arch.apf.gfns[key] != gfn &&
12008 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +020012009 key = kvm_async_pf_next_probe(key);
12010
12011 return key;
12012}
12013
12014bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12015{
12016 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
12017}
12018
12019static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12020{
12021 u32 i, j, k;
12022
12023 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
Peter Xu0fd46042020-04-16 11:59:10 -040012024
12025 if (WARN_ON_ONCE(vcpu->arch.apf.gfns[i] != gfn))
12026 return;
12027
Gleb Natapovaf585b92010-10-14 11:22:46 +020012028 while (true) {
12029 vcpu->arch.apf.gfns[i] = ~0;
12030 do {
12031 j = kvm_async_pf_next_probe(j);
12032 if (vcpu->arch.apf.gfns[j] == ~0)
12033 return;
12034 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
12035 /*
12036 * k lies cyclically in ]i,j]
12037 * | i.k.j |
12038 * |....j i.k.| or |.k..j i...|
12039 */
12040 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
12041 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
12042 i = j;
12043 }
12044}
12045
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012046static inline int apf_put_user_notpresent(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020012047{
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012048 u32 reason = KVM_PV_REASON_PAGE_NOT_PRESENT;
12049
12050 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &reason,
12051 sizeof(reason));
12052}
12053
12054static inline int apf_put_user_ready(struct kvm_vcpu *vcpu, u32 token)
12055{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012056 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
Paolo Bonzini4e335d92017-05-02 16:20:18 +020012057
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012058 return kvm_write_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
12059 &token, offset, sizeof(token));
12060}
12061
12062static inline bool apf_pageready_slot_free(struct kvm_vcpu *vcpu)
12063{
12064 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
12065 u32 val;
12066
12067 if (kvm_read_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
12068 &val, offset, sizeof(val)))
12069 return false;
12070
12071 return !val;
Gleb Natapov7c907052010-10-14 11:22:53 +020012072}
12073
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012074static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
12075{
12076 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
12077 return false;
12078
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012079 if (!kvm_pv_async_pf_enabled(vcpu) ||
Jason Baronb36464772021-01-14 22:27:56 -050012080 (vcpu->arch.apf.send_user_only && static_call(kvm_x86_get_cpl)(vcpu) == 0))
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012081 return false;
12082
12083 return true;
12084}
12085
12086bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
12087{
12088 if (unlikely(!lapic_in_kernel(vcpu) ||
12089 kvm_event_needs_reinjection(vcpu) ||
12090 vcpu->arch.exception.pending))
12091 return false;
12092
12093 if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu))
12094 return false;
12095
12096 /*
12097 * If interrupts are off we cannot even use an artificial
12098 * halt state.
12099 */
Paolo Bonzinic300ab92020-04-23 14:08:58 -040012100 return kvm_arch_interrupt_allowed(vcpu);
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012101}
12102
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012103bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
Gleb Natapovaf585b92010-10-14 11:22:46 +020012104 struct kvm_async_pf *work)
12105{
Avi Kivity6389ee92010-11-29 16:12:30 +020012106 struct x86_exception fault;
12107
Sean Christopherson736c2912019-12-06 15:57:14 -080012108 trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012109 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +020012110
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012111 if (kvm_can_deliver_async_pf(vcpu) &&
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012112 !apf_put_user_notpresent(vcpu)) {
Avi Kivity6389ee92010-11-29 16:12:30 +020012113 fault.vector = PF_VECTOR;
12114 fault.error_code_valid = true;
12115 fault.error_code = 0;
12116 fault.nested_page_fault = false;
12117 fault.address = work->arch.token;
Wanpeng Liadfe20f2017-07-13 18:30:41 -070012118 fault.async_page_fault = true;
Avi Kivity6389ee92010-11-29 16:12:30 +020012119 kvm_inject_page_fault(vcpu, &fault);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012120 return true;
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012121 } else {
12122 /*
12123 * It is not possible to deliver a paravirtualized asynchronous
12124 * page fault, but putting the guest in an artificial halt state
12125 * can be beneficial nevertheless: if an interrupt arrives, we
12126 * can deliver it timely and perhaps the guest will schedule
12127 * another process. When the instruction that triggered a page
12128 * fault is retried, hopefully the page will be ready in the host.
12129 */
12130 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012131 return false;
Gleb Natapov7c907052010-10-14 11:22:53 +020012132 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020012133}
12134
12135void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
12136 struct kvm_async_pf *work)
12137{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012138 struct kvm_lapic_irq irq = {
12139 .delivery_mode = APIC_DM_FIXED,
12140 .vector = vcpu->arch.apf.vec
12141 };
Avi Kivity6389ee92010-11-29 16:12:30 +020012142
chai wenf2e10662013-10-14 22:22:33 +080012143 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +020012144 work->arch.token = ~0; /* broadcast wakeup */
12145 else
12146 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Sean Christopherson736c2912019-12-06 15:57:14 -080012147 trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa);
Gleb Natapov7c907052010-10-14 11:22:53 +020012148
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012149 if ((work->wakeup_all || work->notpresent_injected) &&
12150 kvm_pv_async_pf_enabled(vcpu) &&
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012151 !apf_put_user_ready(vcpu, work->arch.token)) {
12152 vcpu->arch.apf.pageready_pending = true;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012153 kvm_apic_set_irq(vcpu, &irq, NULL);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012154 }
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012155
Xiao Guangronge6d53e32010-11-01 17:01:28 +080012156 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +030012157 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +020012158}
12159
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012160void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu)
12161{
12162 kvm_make_request(KVM_REQ_APF_READY, vcpu);
12163 if (!vcpu->arch.apf.pageready_pending)
12164 kvm_vcpu_kick(vcpu);
12165}
12166
Vitaly Kuznetsov7c0ade62020-05-25 16:41:18 +020012167bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020012168{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012169 if (!kvm_pv_async_pf_enabled(vcpu))
Gleb Natapov7c907052010-10-14 11:22:53 +020012170 return true;
12171 else
Vitaly Kuznetsov2f15d022021-04-22 11:29:48 +020012172 return kvm_lapic_enabled(vcpu) && apf_pageready_slot_free(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012173}
12174
Paolo Bonzini5544eb92015-07-07 15:41:58 +020012175void kvm_arch_start_assignment(struct kvm *kvm)
12176{
Marcelo Tosatti57ab8792021-05-25 10:41:16 -030012177 if (atomic_inc_return(&kvm->arch.assigned_device_count) == 1)
12178 static_call_cond(kvm_x86_start_assignment)(kvm);
Paolo Bonzini5544eb92015-07-07 15:41:58 +020012179}
12180EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
12181
12182void kvm_arch_end_assignment(struct kvm *kvm)
12183{
12184 atomic_dec(&kvm->arch.assigned_device_count);
12185}
12186EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
12187
12188bool kvm_arch_has_assigned_device(struct kvm *kvm)
12189{
12190 return atomic_read(&kvm->arch.assigned_device_count);
12191}
12192EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
12193
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060012194void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
12195{
12196 atomic_inc(&kvm->arch.noncoherent_dma_count);
12197}
12198EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
12199
12200void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
12201{
12202 atomic_dec(&kvm->arch.noncoherent_dma_count);
12203}
12204EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
12205
12206bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
12207{
12208 return atomic_read(&kvm->arch.noncoherent_dma_count);
12209}
12210EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
12211
Alex Williamson14717e22016-05-05 11:58:35 -060012212bool kvm_arch_has_irq_bypass(void)
12213{
Sean Christopherson92735b12019-08-02 15:06:17 -070012214 return true;
Alex Williamson14717e22016-05-05 11:58:35 -060012215}
12216
Feng Wu87276882015-09-18 22:29:40 +080012217int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
12218 struct irq_bypass_producer *prod)
12219{
12220 struct kvm_kernel_irqfd *irqfd =
12221 container_of(cons, struct kvm_kernel_irqfd, consumer);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012222 int ret;
Feng Wu87276882015-09-18 22:29:40 +080012223
Alex Williamson14717e22016-05-05 11:58:35 -060012224 irqfd->producer = prod;
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012225 kvm_arch_start_assignment(irqfd->kvm);
Jason Baronb36464772021-01-14 22:27:56 -050012226 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm,
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012227 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +080012228
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012229 if (ret)
12230 kvm_arch_end_assignment(irqfd->kvm);
12231
12232 return ret;
Feng Wu87276882015-09-18 22:29:40 +080012233}
12234
12235void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
12236 struct irq_bypass_producer *prod)
12237{
12238 int ret;
12239 struct kvm_kernel_irqfd *irqfd =
12240 container_of(cons, struct kvm_kernel_irqfd, consumer);
12241
Feng Wu87276882015-09-18 22:29:40 +080012242 WARN_ON(irqfd->producer != prod);
12243 irqfd->producer = NULL;
12244
12245 /*
12246 * When producer of consumer is unregistered, we change back to
12247 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +020012248 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +080012249 * int this case doesn't want to receive the interrupts.
12250 */
Jason Baronb36464772021-01-14 22:27:56 -050012251 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm, prod->irq, irqfd->gsi, 0);
Feng Wu87276882015-09-18 22:29:40 +080012252 if (ret)
12253 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
12254 " fails: %d\n", irqfd->consumer.token, ret);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012255
12256 kvm_arch_end_assignment(irqfd->kvm);
Feng Wu87276882015-09-18 22:29:40 +080012257}
12258
12259int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
12260 uint32_t guest_irq, bool set)
12261{
Jason Baronb36464772021-01-14 22:27:56 -050012262 return static_call(kvm_x86_update_pi_irte)(kvm, host_irq, guest_irq, set);
Feng Wu87276882015-09-18 22:29:40 +080012263}
12264
Longpeng(Mike)515a0c72021-08-27 16:00:03 +080012265bool kvm_arch_irqfd_route_changed(struct kvm_kernel_irq_routing_entry *old,
12266 struct kvm_kernel_irq_routing_entry *new)
12267{
12268 if (new->type != KVM_IRQ_ROUTING_MSI)
12269 return true;
12270
12271 return !!memcmp(&old->msi, &new->msi, sizeof(new->msi));
12272}
12273
Feng Wu520040142016-01-25 16:53:33 +080012274bool kvm_vector_hashing_enabled(void)
12275{
12276 return vector_hashing;
12277}
Feng Wu520040142016-01-25 16:53:33 +080012278
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012279bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
12280{
12281 return (vcpu->arch.msr_kvm_poll_control & 1) == 0;
12282}
12283EXPORT_SYMBOL_GPL(kvm_arch_no_poll);
12284
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012285
12286int kvm_spec_ctrl_test_value(u64 value)
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012287{
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012288 /*
12289 * test that setting IA32_SPEC_CTRL to given value
12290 * is allowed by the host processor
12291 */
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012292
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012293 u64 saved_value;
12294 unsigned long flags;
12295 int ret = 0;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012296
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012297 local_irq_save(flags);
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012298
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012299 if (rdmsrl_safe(MSR_IA32_SPEC_CTRL, &saved_value))
12300 ret = 1;
12301 else if (wrmsrl_safe(MSR_IA32_SPEC_CTRL, value))
12302 ret = 1;
12303 else
12304 wrmsrl(MSR_IA32_SPEC_CTRL, saved_value);
12305
12306 local_irq_restore(flags);
12307
12308 return ret;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012309}
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012310EXPORT_SYMBOL_GPL(kvm_spec_ctrl_test_value);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012311
Mohammed Gamal89786142020-07-10 17:48:03 +020012312void kvm_fixup_and_inject_pf_error(struct kvm_vcpu *vcpu, gva_t gva, u16 error_code)
12313{
12314 struct x86_exception fault;
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012315 u32 access = error_code &
12316 (PFERR_WRITE_MASK | PFERR_FETCH_MASK | PFERR_USER_MASK);
Mohammed Gamal89786142020-07-10 17:48:03 +020012317
12318 if (!(error_code & PFERR_PRESENT_MASK) ||
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012319 vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, &fault) != UNMAPPED_GVA) {
Mohammed Gamal89786142020-07-10 17:48:03 +020012320 /*
12321 * If vcpu->arch.walk_mmu->gva_to_gpa succeeded, the page
12322 * tables probably do not match the TLB. Just proceed
12323 * with the error code that the processor gave.
12324 */
12325 fault.vector = PF_VECTOR;
12326 fault.error_code_valid = true;
12327 fault.error_code = error_code;
12328 fault.nested_page_fault = false;
12329 fault.address = gva;
12330 }
12331 vcpu->arch.walk_mmu->inject_page_fault(vcpu, &fault);
12332}
12333EXPORT_SYMBOL_GPL(kvm_fixup_and_inject_pf_error);
Carsten Otte043405e2007-10-10 17:16:19 +020012334
Babu Moger3f3393b2020-09-11 14:29:05 -050012335/*
12336 * Handles kvm_read/write_guest_virt*() result and either injects #PF or returns
12337 * KVM_EXIT_INTERNAL_ERROR for cases not currently handled by KVM. Return value
12338 * indicates whether exit to userspace is needed.
12339 */
12340int kvm_handle_memory_failure(struct kvm_vcpu *vcpu, int r,
12341 struct x86_exception *e)
12342{
12343 if (r == X86EMUL_PROPAGATE_FAULT) {
12344 kvm_inject_emulated_page_fault(vcpu, e);
12345 return 1;
12346 }
12347
12348 /*
12349 * In case kvm_read/write_guest_virt*() failed with X86EMUL_IO_NEEDED
12350 * while handling a VMX instruction KVM could've handled the request
12351 * correctly by exiting to userspace and performing I/O but there
12352 * doesn't seem to be a real use-case behind such requests, just return
12353 * KVM_EXIT_INTERNAL_ERROR for now.
12354 */
David Edmondsone615e352021-09-20 11:37:36 +010012355 kvm_prepare_emulation_failure_exit(vcpu);
Babu Moger3f3393b2020-09-11 14:29:05 -050012356
12357 return 0;
12358}
12359EXPORT_SYMBOL_GPL(kvm_handle_memory_failure);
12360
Babu Moger97150922020-09-11 14:29:12 -050012361int kvm_handle_invpcid(struct kvm_vcpu *vcpu, unsigned long type, gva_t gva)
12362{
12363 bool pcid_enabled;
12364 struct x86_exception e;
Babu Moger97150922020-09-11 14:29:12 -050012365 struct {
12366 u64 pcid;
12367 u64 gla;
12368 } operand;
12369 int r;
12370
12371 r = kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e);
12372 if (r != X86EMUL_CONTINUE)
12373 return kvm_handle_memory_failure(vcpu, r, &e);
12374
12375 if (operand.pcid >> 12 != 0) {
12376 kvm_inject_gp(vcpu, 0);
12377 return 1;
12378 }
12379
12380 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
12381
12382 switch (type) {
12383 case INVPCID_TYPE_INDIV_ADDR:
12384 if ((!pcid_enabled && (operand.pcid != 0)) ||
12385 is_noncanonical_address(operand.gla, vcpu)) {
12386 kvm_inject_gp(vcpu, 0);
12387 return 1;
12388 }
12389 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
12390 return kvm_skip_emulated_instruction(vcpu);
12391
12392 case INVPCID_TYPE_SINGLE_CTXT:
12393 if (!pcid_enabled && (operand.pcid != 0)) {
12394 kvm_inject_gp(vcpu, 0);
12395 return 1;
12396 }
12397
Sean Christopherson21823fb2021-06-09 16:42:24 -070012398 kvm_invalidate_pcid(vcpu, operand.pcid);
Babu Moger97150922020-09-11 14:29:12 -050012399 return kvm_skip_emulated_instruction(vcpu);
12400
12401 case INVPCID_TYPE_ALL_NON_GLOBAL:
12402 /*
12403 * Currently, KVM doesn't mark global entries in the shadow
12404 * page tables, so a non-global flush just degenerates to a
12405 * global flush. If needed, we could optimize this later by
12406 * keeping track of global entries in shadow page tables.
12407 */
12408
12409 fallthrough;
12410 case INVPCID_TYPE_ALL_INCL_GLOBAL:
Sean Christopherson28f28d42021-06-09 16:42:30 -070012411 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Babu Moger97150922020-09-11 14:29:12 -050012412 return kvm_skip_emulated_instruction(vcpu);
12413
12414 default:
Vipin Sharma796c83c2021-11-09 17:44:26 +000012415 kvm_inject_gp(vcpu, 0);
12416 return 1;
Babu Moger97150922020-09-11 14:29:12 -050012417 }
12418}
12419EXPORT_SYMBOL_GPL(kvm_handle_invpcid);
12420
Tom Lendacky8f423a82020-12-10 11:09:53 -060012421static int complete_sev_es_emulated_mmio(struct kvm_vcpu *vcpu)
12422{
12423 struct kvm_run *run = vcpu->run;
12424 struct kvm_mmio_fragment *frag;
12425 unsigned int len;
12426
12427 BUG_ON(!vcpu->mmio_needed);
12428
12429 /* Complete previous fragment */
12430 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
12431 len = min(8u, frag->len);
12432 if (!vcpu->mmio_is_write)
12433 memcpy(frag->data, run->mmio.data, len);
12434
12435 if (frag->len <= 8) {
12436 /* Switch to the next fragment. */
12437 frag++;
12438 vcpu->mmio_cur_fragment++;
12439 } else {
12440 /* Go forward to the next mmio piece. */
12441 frag->data += len;
12442 frag->gpa += len;
12443 frag->len -= len;
12444 }
12445
12446 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
12447 vcpu->mmio_needed = 0;
12448
12449 // VMG change, at this point, we're always done
12450 // RIP has already been advanced
12451 return 1;
12452 }
12453
12454 // More MMIO is needed
12455 run->mmio.phys_addr = frag->gpa;
12456 run->mmio.len = min(8u, frag->len);
12457 run->mmio.is_write = vcpu->mmio_is_write;
12458 if (run->mmio.is_write)
12459 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
12460 run->exit_reason = KVM_EXIT_MMIO;
12461
12462 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12463
12464 return 0;
12465}
12466
12467int kvm_sev_es_mmio_write(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12468 void *data)
12469{
12470 int handled;
12471 struct kvm_mmio_fragment *frag;
12472
12473 if (!data)
12474 return -EINVAL;
12475
12476 handled = write_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12477 if (handled == bytes)
12478 return 1;
12479
12480 bytes -= handled;
12481 gpa += handled;
12482 data += handled;
12483
12484 /*TODO: Check if need to increment number of frags */
12485 frag = vcpu->mmio_fragments;
12486 vcpu->mmio_nr_fragments = 1;
12487 frag->len = bytes;
12488 frag->gpa = gpa;
12489 frag->data = data;
12490
12491 vcpu->mmio_needed = 1;
12492 vcpu->mmio_cur_fragment = 0;
12493
12494 vcpu->run->mmio.phys_addr = gpa;
12495 vcpu->run->mmio.len = min(8u, frag->len);
12496 vcpu->run->mmio.is_write = 1;
12497 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
12498 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12499
12500 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12501
12502 return 0;
12503}
12504EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_write);
12505
12506int kvm_sev_es_mmio_read(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12507 void *data)
12508{
12509 int handled;
12510 struct kvm_mmio_fragment *frag;
12511
12512 if (!data)
12513 return -EINVAL;
12514
12515 handled = read_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12516 if (handled == bytes)
12517 return 1;
12518
12519 bytes -= handled;
12520 gpa += handled;
12521 data += handled;
12522
12523 /*TODO: Check if need to increment number of frags */
12524 frag = vcpu->mmio_fragments;
12525 vcpu->mmio_nr_fragments = 1;
12526 frag->len = bytes;
12527 frag->gpa = gpa;
12528 frag->data = data;
12529
12530 vcpu->mmio_needed = 1;
12531 vcpu->mmio_cur_fragment = 0;
12532
12533 vcpu->run->mmio.phys_addr = gpa;
12534 vcpu->run->mmio.len = min(8u, frag->len);
12535 vcpu->run->mmio.is_write = 0;
12536 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12537
12538 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12539
12540 return 0;
12541}
12542EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_read);
12543
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012544static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012545 unsigned int port);
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012546
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012547static int complete_sev_es_emulated_outs(struct kvm_vcpu *vcpu)
12548{
12549 int size = vcpu->arch.pio.size;
12550 int port = vcpu->arch.pio.port;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012551
12552 vcpu->arch.pio.count = 0;
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012553 if (vcpu->arch.sev_pio_count)
12554 return kvm_sev_es_outs(vcpu, size, port);
12555 return 1;
12556}
12557
12558static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
12559 unsigned int port)
12560{
12561 for (;;) {
12562 unsigned int count =
12563 min_t(unsigned int, PAGE_SIZE / size, vcpu->arch.sev_pio_count);
12564 int ret = emulator_pio_out(vcpu, size, port, vcpu->arch.sev_pio_data, count);
12565
12566 /* memcpy done already by emulator_pio_out. */
12567 vcpu->arch.sev_pio_count -= count;
12568 vcpu->arch.sev_pio_data += count * vcpu->arch.pio.size;
12569 if (!ret)
12570 break;
12571
12572 /* Emulation done by the kernel. */
12573 if (!vcpu->arch.sev_pio_count)
12574 return 1;
12575 }
12576
12577 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_outs;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012578 return 0;
12579}
12580
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012581static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
12582 unsigned int port);
12583
12584static void advance_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12585{
12586 unsigned count = vcpu->arch.pio.count;
12587 complete_emulator_pio_in(vcpu, vcpu->arch.sev_pio_data);
12588 vcpu->arch.sev_pio_count -= count;
12589 vcpu->arch.sev_pio_data += count * vcpu->arch.pio.size;
12590}
12591
Paolo Bonzini4fa4b382021-10-12 11:25:45 -040012592static int complete_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12593{
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012594 int size = vcpu->arch.pio.size;
12595 int port = vcpu->arch.pio.port;
Paolo Bonzini4fa4b382021-10-12 11:25:45 -040012596
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012597 advance_sev_es_emulated_ins(vcpu);
12598 if (vcpu->arch.sev_pio_count)
12599 return kvm_sev_es_ins(vcpu, size, port);
Paolo Bonzini4fa4b382021-10-12 11:25:45 -040012600 return 1;
12601}
12602
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012603static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012604 unsigned int port)
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012605{
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012606 for (;;) {
12607 unsigned int count =
12608 min_t(unsigned int, PAGE_SIZE / size, vcpu->arch.sev_pio_count);
12609 if (!__emulator_pio_in(vcpu, size, port, count))
12610 break;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012611
Paolo Bonziniea724ea2021-10-12 10:51:55 -040012612 /* Emulation done by the kernel. */
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012613 advance_sev_es_emulated_ins(vcpu);
12614 if (!vcpu->arch.sev_pio_count)
12615 return 1;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012616 }
12617
Paolo Bonziniea724ea2021-10-12 10:51:55 -040012618 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_ins;
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012619 return 0;
12620}
12621
12622int kvm_sev_es_string_io(struct kvm_vcpu *vcpu, unsigned int size,
12623 unsigned int port, void *data, unsigned int count,
12624 int in)
12625{
Paolo Bonziniea724ea2021-10-12 10:51:55 -040012626 vcpu->arch.sev_pio_data = data;
Paolo Bonzini95e16b42021-10-12 11:33:03 -040012627 vcpu->arch.sev_pio_count = count;
12628 return in ? kvm_sev_es_ins(vcpu, size, port)
12629 : kvm_sev_es_outs(vcpu, size, port);
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012630}
12631EXPORT_SYMBOL_GPL(kvm_sev_es_string_io);
12632
Lorenzo Bresciad95df952020-12-23 14:45:07 +000012633EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_entry);
Carsten Otte043405e2007-10-10 17:16:19 +020012634EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
12635EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
12636EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
12637EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
12638EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
12639EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
12640EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
12641EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
12642EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
12643EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Sean Christopherson5497b952019-07-11 08:58:29 -070012644EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed);
Carsten Otte043405e2007-10-10 17:16:19 +020012645EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
12646EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
12647EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
12648EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Peter Xu4f75bcc2019-09-06 10:17:22 +080012649EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update);
Carsten Otte043405e2007-10-10 17:16:19 +020012650EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
12651EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
12652EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
12653EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);
Suravee Suthikulpanitab56f8e2020-03-12 05:39:28 -050012654EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log);
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -060012655EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request);
Tom Lendackyd523ab6b2020-12-10 11:09:48 -060012656EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_enter);
12657EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_exit);
Tom Lendacky59e38b52020-12-10 11:09:52 -060012658EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_enter);
12659EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_exit);