blob: 5833b8780808f7ac714cbc0dff518cfc11c025b8 [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>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020069#include <linux/kernel_stat.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020070#include <asm/fpu/internal.h> /* Ugh! */
Zachary Amsden1d5f0662010-08-19 22:07:30 -100071#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030072#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080073#include <asm/irq_remapping.h>
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010074#include <asm/mshyperv.h>
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +010075#include <asm/hypervisor.h>
Babu Moger97150922020-09-11 14:29:12 -050076#include <asm/tlbflush.h>
Chao Pengbf8c55d2018-10-24 16:05:14 +080077#include <asm/intel_pt.h>
Masami Hiramatsub3dc0692019-09-06 22:13:59 +090078#include <asm/emulate_prefix.h>
Sean Christophersonfe7e9482021-04-12 16:21:43 +120079#include <asm/sgx.h>
Michael Kelleydd2cb342019-07-01 04:26:06 +000080#include <clocksource/hyperv_timer.h>
Carsten Otte043405e2007-10-10 17:16:19 +020081
Dave Hansend1898b72016-06-01 10:42:20 -070082#define CREATE_TRACE_POINTS
83#include "trace.h"
84
Carsten Otte313a3dc2007-10-11 19:16:52 +020085#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080086#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080087u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
88EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080089
Avi Kivity0f65dd72011-04-20 13:37:53 +030090#define emul_to_vcpu(ctxt) \
Sean Christophersonc9b8b072020-02-18 15:29:48 -080091 ((struct kvm_vcpu *)(ctxt)->vcpu)
Avi Kivity0f65dd72011-04-20 13:37:53 +030092
Joerg Roedel50a37eb2008-01-31 14:57:38 +010093/* EFER defaults:
94 * - enable syscall per default because its emulated by KVM
95 * - enable LME and LMA per default on 64 bit KVM
96 */
97#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080098static
99u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100100#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +0800101static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100102#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +0200103
Sean Christophersonb11306b2019-12-10 14:44:13 -0800104static u64 __read_mostly cr4_reserved_bits = CR4_RESERVED_BITS;
105
Ashish Kalra0dbb1122021-06-08 18:05:43 +0000106#define KVM_EXIT_HYPERCALL_VALID_MASK (1 << KVM_HC_MAP_GPA_RANGE)
107
Radim Krčmářc5192652016-07-12 22:09:28 +0200108#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
109 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +0200110
Gleb Natapovcb142eb2009-08-09 15:17:40 +0300111static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300112static void process_nmi(struct kvm_vcpu *vcpu);
Jay Zhou1f7becf2021-01-18 16:47:20 +0800113static void process_smi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +0200114static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +0100115static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Ken Hofsass01643c52018-01-31 16:03:36 -0800116static void store_regs(struct kvm_vcpu *vcpu);
117static int sync_regs(struct kvm_vcpu *vcpu);
Avi Kivity674eea02008-02-11 18:37:23 +0200118
Maxim Levitsky6dba9402021-06-07 12:02:02 +0300119static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
120static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
121
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700122struct kvm_x86_ops kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300123EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800124
Jason Baron9af54712021-01-14 22:27:55 -0500125#define KVM_X86_OP(func) \
126 DEFINE_STATIC_CALL_NULL(kvm_x86_##func, \
127 *(((struct kvm_x86_ops *)0)->func));
128#define KVM_X86_OP_NULL KVM_X86_OP
129#include <asm/kvm-x86-ops.h>
130EXPORT_STATIC_CALL_GPL(kvm_x86_get_cs_db_l_bits);
131EXPORT_STATIC_CALL_GPL(kvm_x86_cache_reg);
132EXPORT_STATIC_CALL_GPL(kvm_x86_tlb_flush_current);
133
Paolo Bonzini893590c2015-11-06 11:46:24 +0100134static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030135module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200136
Like Xud8550662021-01-08 09:36:55 +0800137bool __read_mostly report_ignored_msrs = true;
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200138module_param(report_ignored_msrs, bool, S_IRUGO | S_IWUSR);
Like Xud8550662021-01-08 09:36:55 +0800139EXPORT_SYMBOL_GPL(report_ignored_msrs);
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200140
Wanpeng Li4c276252018-05-05 04:02:32 -0700141unsigned int min_timer_period_us = 200;
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200142module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
143
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300144static bool __read_mostly kvmclock_periodic_sync = true;
145module_param(kvmclock_periodic_sync, bool, S_IRUGO);
146
Paolo Bonzini893590c2015-11-06 11:46:24 +0100147bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100148EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100149u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100150EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800151u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
152EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
153u64 __read_mostly kvm_max_tsc_scaling_ratio;
154EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700155u64 __read_mostly kvm_default_tsc_scaling_ratio;
156EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +0800157bool __read_mostly kvm_has_bus_lock_exit;
158EXPORT_SYMBOL_GPL(kvm_has_bus_lock_exit);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100159
Zachary Amsdencc578282012-02-03 15:43:50 -0200160/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100161static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200162module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
163
Sean Christophersonc3941d92019-04-17 10:15:33 -0700164/*
165 * lapic timer advance (tscdeadline mode only) in nanoseconds. '-1' enables
Ingo Molnard9f6e122021-03-18 15:28:01 +0100166 * adaptive tuning starting from default advancement of 1000ns. '0' disables
Sean Christophersonc3941d92019-04-17 10:15:33 -0700167 * advancement entirely. Any other value is used as-is and disables adaptive
Ingo Molnard9f6e122021-03-18 15:28:01 +0100168 * tuning, i.e. allows privileged userspace to set an exact advancement time.
Sean Christophersonc3941d92019-04-17 10:15:33 -0700169 */
170static int __read_mostly lapic_timer_advance_ns = -1;
Wanpeng Li0e6edce2019-05-20 16:18:06 +0800171module_param(lapic_timer_advance_ns, int, S_IRUGO | S_IWUSR);
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500172
Feng Wu520040142016-01-25 16:53:33 +0800173static bool __read_mostly vector_hashing = true;
174module_param(vector_hashing, bool, S_IRUGO);
175
Liran Alonc4ae60e2018-03-12 13:12:47 +0200176bool __read_mostly enable_vmware_backdoor = false;
177module_param(enable_vmware_backdoor, bool, S_IRUGO);
178EXPORT_SYMBOL_GPL(enable_vmware_backdoor);
179
Wanpeng Li6c86eed2018-04-03 16:28:49 -0700180static bool __read_mostly force_emulation_prefix = false;
181module_param(force_emulation_prefix, bool, S_IRUGO);
182
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800183int __read_mostly pi_inject_timer = -1;
184module_param(pi_inject_timer, bint, S_IRUGO | S_IWUSR);
185
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700186/*
187 * Restoring the host value for MSRs that are only consumed when running in
188 * usermode, e.g. SYSCALL MSRs and TSC_AUX, can be deferred until the CPU
189 * returns to userspace, i.e. the kernel can run with the guest's value.
190 */
191#define KVM_MAX_NR_USER_RETURN_MSRS 16
Avi Kivity18863bd2009-09-07 11:12:18 +0300192
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700193struct kvm_user_return_msrs {
Avi Kivity18863bd2009-09-07 11:12:18 +0300194 struct user_return_notifier urn;
195 bool registered;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700196 struct kvm_user_return_msr_values {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800197 u64 host;
198 u64 curr;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700199 } values[KVM_MAX_NR_USER_RETURN_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300200};
201
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700202u32 __read_mostly kvm_nr_uret_msrs;
203EXPORT_SYMBOL_GPL(kvm_nr_uret_msrs);
204static u32 __read_mostly kvm_uret_msrs_list[KVM_MAX_NR_USER_RETURN_MSRS];
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700205static struct kvm_user_return_msrs __percpu *user_return_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300206
Sean Christophersoncfc48182020-03-02 15:56:23 -0800207#define KVM_SUPPORTED_XCR0 (XFEATURE_MASK_FP | XFEATURE_MASK_SSE \
208 | XFEATURE_MASK_YMM | XFEATURE_MASK_BNDREGS \
209 | XFEATURE_MASK_BNDCSR | XFEATURE_MASK_AVX512 \
210 | XFEATURE_MASK_PKRU)
211
Sean Christopherson91661982020-03-02 15:57:06 -0800212u64 __read_mostly host_efer;
213EXPORT_SYMBOL_GPL(host_efer);
214
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200215bool __read_mostly allow_smaller_maxphyaddr = 0;
Mohammed Gamal3edd6832020-07-10 17:48:11 +0200216EXPORT_SYMBOL_GPL(allow_smaller_maxphyaddr);
217
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +0200218bool __read_mostly enable_apicv = true;
219EXPORT_SYMBOL_GPL(enable_apicv);
220
Tom Lendacky86137772020-12-10 11:10:07 -0600221u64 __read_mostly host_xss;
222EXPORT_SYMBOL_GPL(host_xss);
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100223u64 __read_mostly supported_xss;
224EXPORT_SYMBOL_GPL(supported_xss);
Aaron Lewis139a12c2019-10-21 16:30:25 -0700225
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000226const struct _kvm_stats_desc kvm_vm_stats_desc[] = {
227 KVM_GENERIC_VM_STATS(),
228 STATS_DESC_COUNTER(VM, mmu_shadow_zapped),
229 STATS_DESC_COUNTER(VM, mmu_pte_write),
230 STATS_DESC_COUNTER(VM, mmu_pde_zapped),
231 STATS_DESC_COUNTER(VM, mmu_flooded),
232 STATS_DESC_COUNTER(VM, mmu_recycled),
233 STATS_DESC_COUNTER(VM, mmu_cache_miss),
234 STATS_DESC_ICOUNTER(VM, mmu_unsync),
235 STATS_DESC_ICOUNTER(VM, lpages),
236 STATS_DESC_ICOUNTER(VM, nx_lpage_splits),
Jing Zhangbc9e9e62021-06-23 17:28:46 -0400237 STATS_DESC_PCOUNTER(VM, max_mmu_page_hash_collisions)
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000238};
239static_assert(ARRAY_SIZE(kvm_vm_stats_desc) ==
240 sizeof(struct kvm_vm_stat) / sizeof(u64));
241
242const struct kvm_stats_header kvm_vm_stats_header = {
243 .name_size = KVM_STATS_NAME_SIZE,
244 .num_desc = ARRAY_SIZE(kvm_vm_stats_desc),
245 .id_offset = sizeof(struct kvm_stats_header),
246 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
247 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
248 sizeof(kvm_vm_stats_desc),
249};
250
Jing Zhangce55c042021-06-18 22:27:06 +0000251const struct _kvm_stats_desc kvm_vcpu_stats_desc[] = {
252 KVM_GENERIC_VCPU_STATS(),
253 STATS_DESC_COUNTER(VCPU, pf_fixed),
254 STATS_DESC_COUNTER(VCPU, pf_guest),
255 STATS_DESC_COUNTER(VCPU, tlb_flush),
256 STATS_DESC_COUNTER(VCPU, invlpg),
257 STATS_DESC_COUNTER(VCPU, exits),
258 STATS_DESC_COUNTER(VCPU, io_exits),
259 STATS_DESC_COUNTER(VCPU, mmio_exits),
260 STATS_DESC_COUNTER(VCPU, signal_exits),
261 STATS_DESC_COUNTER(VCPU, irq_window_exits),
262 STATS_DESC_COUNTER(VCPU, nmi_window_exits),
263 STATS_DESC_COUNTER(VCPU, l1d_flush),
264 STATS_DESC_COUNTER(VCPU, halt_exits),
265 STATS_DESC_COUNTER(VCPU, request_irq_exits),
266 STATS_DESC_COUNTER(VCPU, irq_exits),
267 STATS_DESC_COUNTER(VCPU, host_state_reload),
268 STATS_DESC_COUNTER(VCPU, fpu_reload),
269 STATS_DESC_COUNTER(VCPU, insn_emulation),
270 STATS_DESC_COUNTER(VCPU, insn_emulation_fail),
271 STATS_DESC_COUNTER(VCPU, hypercalls),
272 STATS_DESC_COUNTER(VCPU, irq_injections),
273 STATS_DESC_COUNTER(VCPU, nmi_injections),
274 STATS_DESC_COUNTER(VCPU, req_event),
275 STATS_DESC_COUNTER(VCPU, nested_run),
276 STATS_DESC_COUNTER(VCPU, directed_yield_attempted),
277 STATS_DESC_COUNTER(VCPU, directed_yield_successful),
278 STATS_DESC_ICOUNTER(VCPU, guest_mode)
279};
280static_assert(ARRAY_SIZE(kvm_vcpu_stats_desc) ==
281 sizeof(struct kvm_vcpu_stat) / sizeof(u64));
282
283const struct kvm_stats_header kvm_vcpu_stats_header = {
284 .name_size = KVM_STATS_NAME_SIZE,
285 .num_desc = ARRAY_SIZE(kvm_vcpu_stats_desc),
286 .id_offset = sizeof(struct kvm_stats_header),
287 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
288 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
289 sizeof(kvm_vcpu_stats_desc),
290};
291
Dexuan Cui2acf9232010-06-10 11:27:12 +0800292u64 __read_mostly host_xcr0;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800293u64 __read_mostly supported_xcr0;
294EXPORT_SYMBOL_GPL(supported_xcr0);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800295
Sean Christopherson80fbd282020-06-08 11:02:18 -0700296static struct kmem_cache *x86_fpu_cache;
Marc Orrb666a4b2018-11-06 14:53:56 -0800297
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800298static struct kmem_cache *x86_emulator_cache;
299
Peter Xu6abe9c12020-06-22 18:04:41 -0400300/*
301 * When called, it means the previous get/set msr reached an invalid msr.
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200302 * Return true if we want to ignore/silent this failed msr access.
Peter Xu6abe9c12020-06-22 18:04:41 -0400303 */
Haiwei Lid6328262021-03-13 13:10:32 +0800304static bool kvm_msr_ignored_check(u32 msr, u64 data, bool write)
Peter Xu6abe9c12020-06-22 18:04:41 -0400305{
306 const char *op = write ? "wrmsr" : "rdmsr";
307
308 if (ignore_msrs) {
309 if (report_ignored_msrs)
Takashi Iwaid383b312020-10-30 16:14:14 +0100310 kvm_pr_unimpl("ignored %s: 0x%x data 0x%llx\n",
311 op, msr, data);
Peter Xu6abe9c12020-06-22 18:04:41 -0400312 /* Mask the error */
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200313 return true;
Peter Xu6abe9c12020-06-22 18:04:41 -0400314 } else {
Takashi Iwaid383b312020-10-30 16:14:14 +0100315 kvm_debug_ratelimited("unhandled %s: 0x%x data 0x%llx\n",
316 op, msr, data);
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200317 return false;
Peter Xu6abe9c12020-06-22 18:04:41 -0400318 }
319}
320
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800321static struct kmem_cache *kvm_alloc_emulator_cache(void)
322{
Sean Christopherson06add252020-02-18 15:29:50 -0800323 unsigned int useroffset = offsetof(struct x86_emulate_ctxt, src);
324 unsigned int size = sizeof(struct x86_emulate_ctxt);
325
326 return kmem_cache_create_usercopy("x86_emulator", size,
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800327 __alignof__(struct x86_emulate_ctxt),
Sean Christopherson06add252020-02-18 15:29:50 -0800328 SLAB_ACCOUNT, useroffset,
329 size - useroffset, NULL);
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800330}
331
Jan Kiszkab6785de2012-09-20 07:43:17 +0200332static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300333
Gleb Natapovaf585b92010-10-14 11:22:46 +0200334static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
335{
336 int i;
Peter Xudd03bca2020-04-16 11:58:59 -0400337 for (i = 0; i < ASYNC_PF_PER_VCPU; i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +0200338 vcpu->arch.apf.gfns[i] = ~0;
339}
340
Avi Kivity18863bd2009-09-07 11:12:18 +0300341static void kvm_on_user_return(struct user_return_notifier *urn)
342{
343 unsigned slot;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700344 struct kvm_user_return_msrs *msrs
345 = container_of(urn, struct kvm_user_return_msrs, urn);
346 struct kvm_user_return_msr_values *values;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700347 unsigned long flags;
Avi Kivity18863bd2009-09-07 11:12:18 +0300348
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700349 /*
350 * Disabling irqs at this point since the following code could be
351 * interrupted and executed through kvm_arch_hardware_disable()
352 */
353 local_irq_save(flags);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700354 if (msrs->registered) {
355 msrs->registered = false;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700356 user_return_notifier_unregister(urn);
357 }
358 local_irq_restore(flags);
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700359 for (slot = 0; slot < kvm_nr_uret_msrs; ++slot) {
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700360 values = &msrs->values[slot];
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800361 if (values->host != values->curr) {
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700362 wrmsrl(kvm_uret_msrs_list[slot], values->host);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800363 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300364 }
365 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300366}
367
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700368static int kvm_probe_user_return_msr(u32 msr)
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700369{
370 u64 val;
371 int ret;
372
373 preempt_disable();
374 ret = rdmsrl_safe(msr, &val);
375 if (ret)
376 goto out;
377 ret = wrmsrl_safe(msr, val);
378out:
379 preempt_enable();
380 return ret;
381}
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700382
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700383int kvm_add_user_return_msr(u32 msr)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800384{
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700385 BUG_ON(kvm_nr_uret_msrs >= KVM_MAX_NR_USER_RETURN_MSRS);
386
387 if (kvm_probe_user_return_msr(msr))
388 return -1;
389
390 kvm_uret_msrs_list[kvm_nr_uret_msrs] = msr;
391 return kvm_nr_uret_msrs++;
Avi Kivity18863bd2009-09-07 11:12:18 +0300392}
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700393EXPORT_SYMBOL_GPL(kvm_add_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300394
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700395int kvm_find_user_return_msr(u32 msr)
396{
397 int i;
398
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700399 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
400 if (kvm_uret_msrs_list[i] == msr)
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700401 return i;
402 }
403 return -1;
404}
405EXPORT_SYMBOL_GPL(kvm_find_user_return_msr);
406
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700407static void kvm_user_return_msr_cpu_online(void)
Avi Kivity18863bd2009-09-07 11:12:18 +0300408{
Sean Christopherson05c19c22019-11-22 12:04:50 -0800409 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700410 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Sean Christopherson05c19c22019-11-22 12:04:50 -0800411 u64 value;
412 int i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300413
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700414 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
415 rdmsrl_safe(kvm_uret_msrs_list[i], &value);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700416 msrs->values[i].host = value;
417 msrs->values[i].curr = value;
Sean Christopherson05c19c22019-11-22 12:04:50 -0800418 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300419}
420
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700421int kvm_set_user_return_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300422{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200423 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700424 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700425 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300426
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700427 value = (value & mask) | (msrs->values[slot].host & ~mask);
428 if (value == msrs->values[slot].curr)
Andy Honig8b3c3102014-08-27 11:16:44 -0700429 return 0;
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700430 err = wrmsrl_safe(kvm_uret_msrs_list[slot], value);
Andy Honig8b3c3102014-08-27 11:16:44 -0700431 if (err)
432 return 1;
433
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700434 msrs->values[slot].curr = value;
435 if (!msrs->registered) {
436 msrs->urn.on_user_return = kvm_on_user_return;
437 user_return_notifier_register(&msrs->urn);
438 msrs->registered = true;
Avi Kivity18863bd2009-09-07 11:12:18 +0300439 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700440 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300441}
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700442EXPORT_SYMBOL_GPL(kvm_set_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300443
Radim Krčmář13a34e02014-08-28 15:13:03 +0200444static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200445{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200446 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700447 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200448
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700449 if (msrs->registered)
450 kvm_on_user_return(&msrs->urn);
Avi Kivity3548bab2009-11-28 14:18:47 +0200451}
452
Carsten Otte6866b832007-10-29 16:09:10 +0100453u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
454{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300455 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100456}
457EXPORT_SYMBOL_GPL(kvm_get_apic_base);
458
Jim Mattson58871642018-05-09 16:56:04 -0400459enum lapic_mode kvm_get_apic_mode(struct kvm_vcpu *vcpu)
460{
461 return kvm_apic_mode(kvm_get_apic_base(vcpu));
462}
463EXPORT_SYMBOL_GPL(kvm_get_apic_mode);
464
Jan Kiszka58cb6282014-01-24 16:48:44 +0100465int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100466{
Jim Mattson58871642018-05-09 16:56:04 -0400467 enum lapic_mode old_mode = kvm_get_apic_mode(vcpu);
468 enum lapic_mode new_mode = kvm_apic_mode(msr_info->data);
Sean Christophersona8ac8642021-02-03 16:01:15 -0800469 u64 reserved_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu) | 0x2ff |
Radim Krčmářd6321d42017-08-05 00:12:49 +0200470 (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) ? 0 : X2APIC_ENABLE);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100471
Jim Mattson58871642018-05-09 16:56:04 -0400472 if ((msr_info->data & reserved_bits) != 0 || new_mode == LAPIC_MODE_INVALID)
Jim Mattsond3802282017-08-10 10:14:13 -0700473 return 1;
Jim Mattson58871642018-05-09 16:56:04 -0400474 if (!msr_info->host_initiated) {
475 if (old_mode == LAPIC_MODE_X2APIC && new_mode == LAPIC_MODE_XAPIC)
476 return 1;
477 if (old_mode == LAPIC_MODE_DISABLED && new_mode == LAPIC_MODE_X2APIC)
478 return 1;
479 }
Jan Kiszka58cb6282014-01-24 16:48:44 +0100480
481 kvm_lapic_set_base(vcpu, msr_info->data);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800482 kvm_recalculate_apic_map(vcpu->kvm);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100483 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100484}
485EXPORT_SYMBOL_GPL(kvm_set_apic_base);
486
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +0200487asmlinkage __visible noinstr void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000488{
489 /* Fault while not rebooting. We want the trace. */
kbuild test robotb4fdcf62019-09-29 18:43:28 +0200490 BUG_ON(!kvm_rebooting);
Geoff Levande3ba45b2013-04-05 19:20:30 +0000491}
492EXPORT_SYMBOL_GPL(kvm_spurious_fault);
493
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200494#define EXCPT_BENIGN 0
495#define EXCPT_CONTRIBUTORY 1
496#define EXCPT_PF 2
497
498static int exception_class(int vector)
499{
500 switch (vector) {
501 case PF_VECTOR:
502 return EXCPT_PF;
503 case DE_VECTOR:
504 case TS_VECTOR:
505 case NP_VECTOR:
506 case SS_VECTOR:
507 case GP_VECTOR:
508 return EXCPT_CONTRIBUTORY;
509 default:
510 break;
511 }
512 return EXCPT_BENIGN;
513}
514
Nadav Amitd6e8c852014-07-24 14:51:24 +0300515#define EXCPT_FAULT 0
516#define EXCPT_TRAP 1
517#define EXCPT_ABORT 2
518#define EXCPT_INTERRUPT 3
519
520static int exception_type(int vector)
521{
522 unsigned int mask;
523
524 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
525 return EXCPT_INTERRUPT;
526
527 mask = 1 << vector;
528
529 /* #DB is trap, as instruction watchpoints are handled elsewhere */
530 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
531 return EXCPT_TRAP;
532
533 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
534 return EXCPT_ABORT;
535
536 /* Reserved exceptions will result in fault */
537 return EXCPT_FAULT;
538}
539
Jim Mattsonda998b42018-10-16 14:29:22 -0700540void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu)
541{
542 unsigned nr = vcpu->arch.exception.nr;
543 bool has_payload = vcpu->arch.exception.has_payload;
544 unsigned long payload = vcpu->arch.exception.payload;
545
546 if (!has_payload)
547 return;
548
549 switch (nr) {
Jim Mattsonf10c7292018-10-16 14:29:23 -0700550 case DB_VECTOR:
551 /*
552 * "Certain debug exceptions may clear bit 0-3. The
553 * remaining contents of the DR6 register are never
554 * cleared by the processor".
555 */
556 vcpu->arch.dr6 &= ~DR_TRAP_BITS;
557 /*
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800558 * In order to reflect the #DB exception payload in guest
559 * dr6, three components need to be considered: active low
560 * bit, FIXED_1 bits and active high bits (e.g. DR6_BD,
561 * DR6_BS and DR6_BT)
562 * DR6_ACTIVE_LOW contains the FIXED_1 and active low bits.
563 * In the target guest dr6:
564 * FIXED_1 bits should always be set.
565 * Active low bits should be cleared if 1-setting in payload.
566 * Active high bits should be set if 1-setting in payload.
567 *
568 * Note, the payload is compatible with the pending debug
569 * exceptions/exit qualification under VMX, that active_low bits
570 * are active high in payload.
571 * So they need to be flipped for DR6.
Jim Mattsonf10c7292018-10-16 14:29:23 -0700572 */
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800573 vcpu->arch.dr6 |= DR6_ACTIVE_LOW;
Jim Mattsonf10c7292018-10-16 14:29:23 -0700574 vcpu->arch.dr6 |= payload;
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800575 vcpu->arch.dr6 ^= payload & DR6_ACTIVE_LOW;
Oliver Upton307f1cf2020-02-07 02:36:04 -0800576
577 /*
578 * The #DB payload is defined as compatible with the 'pending
579 * debug exceptions' field under VMX, not DR6. While bit 12 is
580 * defined in the 'pending debug exceptions' field (enabled
581 * breakpoint), it is reserved and must be zero in DR6.
582 */
583 vcpu->arch.dr6 &= ~BIT(12);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700584 break;
Jim Mattsonda998b42018-10-16 14:29:22 -0700585 case PF_VECTOR:
586 vcpu->arch.cr2 = payload;
587 break;
588 }
589
590 vcpu->arch.exception.has_payload = false;
591 vcpu->arch.exception.payload = 0;
592}
593EXPORT_SYMBOL_GPL(kvm_deliver_exception_payload);
594
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200595static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200596 unsigned nr, bool has_error, u32 error_code,
Jim Mattson91e86d22018-10-16 14:29:21 -0700597 bool has_payload, unsigned long payload, bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200598{
599 u32 prev_nr;
600 int class1, class2;
601
Avi Kivity3842d132010-07-27 12:30:24 +0300602 kvm_make_request(KVM_REQ_EVENT, vcpu);
603
Wanpeng Li664f8e22017-08-24 03:35:09 -0700604 if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) {
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200605 queue:
Wanpeng Li664f8e22017-08-24 03:35:09 -0700606 if (reinject) {
607 /*
608 * On vmentry, vcpu->arch.exception.pending is only
609 * true if an event injection was blocked by
610 * nested_run_pending. In that case, however,
611 * vcpu_enter_guest requests an immediate exit,
612 * and the guest shouldn't proceed far enough to
613 * need reinjection.
614 */
615 WARN_ON_ONCE(vcpu->arch.exception.pending);
616 vcpu->arch.exception.injected = true;
Jim Mattson91e86d22018-10-16 14:29:21 -0700617 if (WARN_ON_ONCE(has_payload)) {
618 /*
619 * A reinjected event has already
620 * delivered its payload.
621 */
622 has_payload = false;
623 payload = 0;
624 }
Wanpeng Li664f8e22017-08-24 03:35:09 -0700625 } else {
626 vcpu->arch.exception.pending = true;
627 vcpu->arch.exception.injected = false;
628 }
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200629 vcpu->arch.exception.has_error_code = has_error;
630 vcpu->arch.exception.nr = nr;
631 vcpu->arch.exception.error_code = error_code;
Jim Mattson91e86d22018-10-16 14:29:21 -0700632 vcpu->arch.exception.has_payload = has_payload;
633 vcpu->arch.exception.payload = payload;
Oliver Uptona06230b2020-02-07 02:36:06 -0800634 if (!is_guest_mode(vcpu))
Jim Mattsonda998b42018-10-16 14:29:22 -0700635 kvm_deliver_exception_payload(vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200636 return;
637 }
638
639 /* to check exception */
640 prev_nr = vcpu->arch.exception.nr;
641 if (prev_nr == DF_VECTOR) {
642 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300643 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200644 return;
645 }
646 class1 = exception_class(prev_nr);
647 class2 = exception_class(nr);
648 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
649 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
Wanpeng Li664f8e22017-08-24 03:35:09 -0700650 /*
651 * Generate double fault per SDM Table 5-5. Set
652 * exception.pending = true so that the double fault
653 * can trigger a nested vmexit.
654 */
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200655 vcpu->arch.exception.pending = true;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700656 vcpu->arch.exception.injected = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200657 vcpu->arch.exception.has_error_code = true;
658 vcpu->arch.exception.nr = DF_VECTOR;
659 vcpu->arch.exception.error_code = 0;
Jim Mattsonc8514362018-10-16 14:29:19 -0700660 vcpu->arch.exception.has_payload = false;
661 vcpu->arch.exception.payload = 0;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200662 } else
663 /* replace previous exception with a new one in a hope
664 that instruction re-execution will regenerate lost
665 exception */
666 goto queue;
667}
668
Avi Kivity298101d2007-11-25 13:41:11 +0200669void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
670{
Jim Mattson91e86d22018-10-16 14:29:21 -0700671 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200672}
673EXPORT_SYMBOL_GPL(kvm_queue_exception);
674
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200675void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
676{
Jim Mattson91e86d22018-10-16 14:29:21 -0700677 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200678}
679EXPORT_SYMBOL_GPL(kvm_requeue_exception);
680
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400681void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr,
682 unsigned long payload)
Jim Mattsonf10c7292018-10-16 14:29:23 -0700683{
684 kvm_multiple_exception(vcpu, nr, false, 0, true, payload, false);
685}
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400686EXPORT_SYMBOL_GPL(kvm_queue_exception_p);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700687
Jim Mattsonda998b42018-10-16 14:29:22 -0700688static void kvm_queue_exception_e_p(struct kvm_vcpu *vcpu, unsigned nr,
689 u32 error_code, unsigned long payload)
690{
691 kvm_multiple_exception(vcpu, nr, true, error_code,
692 true, payload, false);
693}
694
Kyle Huey6affcbe2016-11-29 12:40:40 -0800695int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200696{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100697 if (err)
698 kvm_inject_gp(vcpu, 0);
699 else
Kyle Huey6affcbe2016-11-29 12:40:40 -0800700 return kvm_skip_emulated_instruction(vcpu);
701
702 return 1;
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100703}
704EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200705
Avi Kivity6389ee92010-11-29 16:12:30 +0200706void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200707{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200708 ++vcpu->stat.pf_guest;
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700709 vcpu->arch.exception.nested_apf =
710 is_guest_mode(vcpu) && fault->async_page_fault;
Jim Mattsonda998b42018-10-16 14:29:22 -0700711 if (vcpu->arch.exception.nested_apf) {
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700712 vcpu->arch.apf.nested_apf_token = fault->address;
Jim Mattsonda998b42018-10-16 14:29:22 -0700713 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
714 } else {
715 kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code,
716 fault->address);
717 }
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200718}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300719EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200720
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700721bool kvm_inject_emulated_page_fault(struct kvm_vcpu *vcpu,
722 struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200723{
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400724 struct kvm_mmu *fault_mmu;
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700725 WARN_ON_ONCE(fault->vector != PF_VECTOR);
726
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400727 fault_mmu = fault->nested_page_fault ? vcpu->arch.mmu :
728 vcpu->arch.walk_mmu;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200729
Junaid Shahidee1fa202020-03-20 14:28:03 -0700730 /*
731 * Invalidate the TLB entry for the faulting address, if it exists,
732 * else the access will fault indefinitely (and to emulate hardware).
733 */
734 if ((fault->error_code & PFERR_PRESENT_MASK) &&
735 !(fault->error_code & PFERR_RSVD_MASK))
736 kvm_mmu_invalidate_gva(vcpu, fault_mmu, fault->address,
737 fault_mmu->root_hpa);
738
739 fault_mmu->inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200740 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200741}
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700742EXPORT_SYMBOL_GPL(kvm_inject_emulated_page_fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200743
Sheng Yang3419ffc2008-05-15 09:52:48 +0800744void kvm_inject_nmi(struct kvm_vcpu *vcpu)
745{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300746 atomic_inc(&vcpu->arch.nmi_queued);
747 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800748}
749EXPORT_SYMBOL_GPL(kvm_inject_nmi);
750
Avi Kivity298101d2007-11-25 13:41:11 +0200751void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
752{
Jim Mattson91e86d22018-10-16 14:29:21 -0700753 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200754}
755EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
756
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200757void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
758{
Jim Mattson91e86d22018-10-16 14:29:21 -0700759 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200760}
761EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
762
Carsten Ottea03490e2007-10-29 16:09:35 +0100763/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300764 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
765 * a #GP and return false.
766 */
767bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200768{
Jason Baronb36464772021-01-14 22:27:56 -0500769 if (static_call(kvm_x86_get_cpl)(vcpu) <= required_cpl)
Avi Kivity0a79b002009-09-01 12:03:25 +0300770 return true;
771 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
772 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100773}
Avi Kivity0a79b002009-09-01 12:03:25 +0300774EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100775
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300776bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
777{
778 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
779 return true;
780
781 kvm_queue_exception(vcpu, UD_VECTOR);
782 return false;
783}
784EXPORT_SYMBOL_GPL(kvm_require_dr);
785
Carsten Ottea03490e2007-10-29 16:09:35 +0100786/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200787 * This function will be used to read from the physical memory of the currently
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200788 * running guest. The difference to kvm_vcpu_read_guest_page is that this function
Joerg Roedelec92fe42010-09-10 17:30:51 +0200789 * can read from guest physical or from the guest's guest physical memory.
790 */
791int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
792 gfn_t ngfn, void *data, int offset, int len,
793 u32 access)
794{
Paolo Bonzini54987b72014-09-02 13:23:06 +0200795 struct x86_exception exception;
Joerg Roedelec92fe42010-09-10 17:30:51 +0200796 gfn_t real_gfn;
797 gpa_t ngpa;
798
799 ngpa = gfn_to_gpa(ngfn);
Paolo Bonzini54987b72014-09-02 13:23:06 +0200800 real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200801 if (real_gfn == UNMAPPED_GVA)
802 return -EFAULT;
803
804 real_gfn = gpa_to_gfn(real_gfn);
805
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200806 return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200807}
808EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
809
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700810static inline u64 pdptr_rsvd_bits(struct kvm_vcpu *vcpu)
811{
Sean Christopherson5b7f5752021-02-03 16:01:13 -0800812 return vcpu->arch.reserved_gpa_bits | rsvd_bits(5, 8) | rsvd_bits(1, 2);
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700813}
814
Joerg Roedelec92fe42010-09-10 17:30:51 +0200815/*
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700816 * Load the pae pdptrs. Return 1 if they are all valid, 0 otherwise.
Carsten Ottea03490e2007-10-29 16:09:35 +0100817 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200818int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100819{
820 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
821 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
822 int i;
823 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200824 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100825
Joerg Roedelff03a072010-09-10 17:30:57 +0200826 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
827 offset * sizeof(u64), sizeof(pdpte),
828 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100829 if (ret < 0) {
830 ret = 0;
831 goto out;
832 }
833 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400834 if ((pdpte[i] & PT_PRESENT_MASK) &&
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700835 (pdpte[i] & pdptr_rsvd_bits(vcpu))) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100836 ret = 0;
837 goto out;
838 }
839 }
840 ret = 1;
841
Joerg Roedelff03a072010-09-10 17:30:57 +0200842 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700843 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
Maxim Levitsky158a48e2021-06-07 12:02:03 +0300844 vcpu->arch.pdptrs_from_userspace = false;
845
Carsten Ottea03490e2007-10-29 16:09:35 +0100846out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100847
848 return ret;
849}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100850EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100851
Tom Lendackyf27ad382020-12-10 11:09:56 -0600852void kvm_post_set_cr0(struct kvm_vcpu *vcpu, unsigned long old_cr0, unsigned long cr0)
853{
854 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP;
855
856 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
857 kvm_clear_async_pf_completion_queue(vcpu);
858 kvm_async_pf_hash_reset(vcpu);
859 }
860
861 if ((cr0 ^ old_cr0) & update_bits)
862 kvm_mmu_reset_context(vcpu);
863
864 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
865 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
866 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
867 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
868}
869EXPORT_SYMBOL_GPL(kvm_post_set_cr0);
870
Avi Kivity49a9b072010-06-10 17:02:14 +0300871int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100872{
Sheng Yangaad82702010-05-12 16:40:42 +0800873 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Jim Mattsond42e3fa2020-07-07 15:36:30 -0700874 unsigned long pdptr_bits = X86_CR0_CD | X86_CR0_NW | X86_CR0_PG;
Sheng Yangaad82702010-05-12 16:40:42 +0800875
Avi Kivityf9a48e62010-01-06 19:10:22 +0200876 cr0 |= X86_CR0_ET;
877
Gleb Natapovab344822010-01-21 15:28:46 +0200878#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300879 if (cr0 & 0xffffffff00000000UL)
880 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200881#endif
882
883 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100884
Gleb Natapov0f122442010-04-28 19:15:31 +0300885 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
886 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100887
Gleb Natapov0f122442010-04-28 19:15:31 +0300888 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
889 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100890
Carsten Ottea03490e2007-10-29 16:09:35 +0100891#ifdef CONFIG_X86_64
Sean Christopherson05487212020-07-13 18:57:32 -0700892 if ((vcpu->arch.efer & EFER_LME) && !is_paging(vcpu) &&
893 (cr0 & X86_CR0_PG)) {
894 int cs_db, cs_l;
Carsten Ottea03490e2007-10-29 16:09:35 +0100895
Sean Christopherson05487212020-07-13 18:57:32 -0700896 if (!is_pae(vcpu))
897 return 1;
Jason Baronb36464772021-01-14 22:27:56 -0500898 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Sean Christopherson05487212020-07-13 18:57:32 -0700899 if (cs_l)
Gleb Natapov0f122442010-04-28 19:15:31 +0300900 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100901 }
Sean Christopherson05487212020-07-13 18:57:32 -0700902#endif
903 if (!(vcpu->arch.efer & EFER_LME) && (cr0 & X86_CR0_PG) &&
904 is_pae(vcpu) && ((cr0 ^ old_cr0) & pdptr_bits) &&
905 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu)))
906 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100907
Mao, Junjiead756a12012-07-02 01:18:48 +0000908 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
909 return 1;
910
Jason Baronb36464772021-01-14 22:27:56 -0500911 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100912
Tom Lendackyf27ad382020-12-10 11:09:56 -0600913 kvm_post_set_cr0(vcpu, old_cr0, cr0);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800914
Gleb Natapov0f122442010-04-28 19:15:31 +0300915 return 0;
916}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200917EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100918
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200919void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100920{
Avi Kivity49a9b072010-06-10 17:02:14 +0300921 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100922}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200923EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100924
Aaron Lewis139a12c2019-10-21 16:30:25 -0700925void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu)
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300926{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600927 if (vcpu->arch.guest_state_protected)
928 return;
929
Aaron Lewis139a12c2019-10-21 16:30:25 -0700930 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300931
Aaron Lewis139a12c2019-10-21 16:30:25 -0700932 if (vcpu->arch.xcr0 != host_xcr0)
933 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
934
935 if (vcpu->arch.xsaves_enabled &&
936 vcpu->arch.ia32_xss != host_xss)
937 wrmsrl(MSR_IA32_XSS, vcpu->arch.ia32_xss);
938 }
Babu Moger37486132020-05-12 18:59:06 -0500939
940 if (static_cpu_has(X86_FEATURE_PKU) &&
941 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
942 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU)) &&
943 vcpu->arch.pkru != vcpu->arch.host_pkru)
944 __write_pkru(vcpu->arch.pkru);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300945}
Aaron Lewis139a12c2019-10-21 16:30:25 -0700946EXPORT_SYMBOL_GPL(kvm_load_guest_xsave_state);
947
948void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu)
949{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600950 if (vcpu->arch.guest_state_protected)
951 return;
952
Babu Moger37486132020-05-12 18:59:06 -0500953 if (static_cpu_has(X86_FEATURE_PKU) &&
954 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
955 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU))) {
956 vcpu->arch.pkru = rdpkru();
957 if (vcpu->arch.pkru != vcpu->arch.host_pkru)
958 __write_pkru(vcpu->arch.host_pkru);
959 }
960
Aaron Lewis139a12c2019-10-21 16:30:25 -0700961 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
962
963 if (vcpu->arch.xcr0 != host_xcr0)
964 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
965
966 if (vcpu->arch.xsaves_enabled &&
967 vcpu->arch.ia32_xss != host_xss)
968 wrmsrl(MSR_IA32_XSS, host_xss);
969 }
970
971}
972EXPORT_SYMBOL_GPL(kvm_load_host_xsave_state);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300973
Fengguang Wu69b00492015-01-19 22:33:39 +0800974static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800975{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000976 u64 xcr0 = xcr;
977 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200978 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800979
980 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
981 if (index != XCR_XFEATURE_ENABLED_MASK)
982 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700983 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800984 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700985 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800986 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200987
988 /*
989 * Do not allow the guest to set bits that we do not support
990 * saving. However, xcr0 bit 0 is always set, even if the
991 * emulated CPU does not support XSAVE (see fx_init).
992 */
Dave Hansend91cab72015-09-02 16:31:26 -0700993 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200994 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800995 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200996
Dave Hansend91cab72015-09-02 16:31:26 -0700997 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
998 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +0000999 return 1;
1000
Dave Hansend91cab72015-09-02 16:31:26 -07001001 if (xcr0 & XFEATURE_MASK_AVX512) {
1002 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +08001003 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -07001004 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +08001005 return 1;
1006 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08001007 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +00001008
Dave Hansend91cab72015-09-02 16:31:26 -07001009 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08001010 kvm_update_cpuid_runtime(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001011 return 0;
1012}
1013
Sean Christopherson92f98952021-02-04 16:57:46 -08001014int kvm_emulate_xsetbv(struct kvm_vcpu *vcpu)
Dexuan Cui2acf9232010-06-10 11:27:12 +08001015{
Sean Christopherson92f98952021-02-04 16:57:46 -08001016 if (static_call(kvm_x86_get_cpl)(vcpu) != 0 ||
1017 __kvm_set_xcr(vcpu, kvm_rcx_read(vcpu), kvm_read_edx_eax(vcpu))) {
1018 kvm_inject_gp(vcpu, 0);
1019 return 1;
1020 }
Paolo Bonzinibbefd4f2020-12-14 07:49:54 -05001021
Sean Christopherson92f98952021-02-04 16:57:46 -08001022 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001023}
Sean Christopherson92f98952021-02-04 16:57:46 -08001024EXPORT_SYMBOL_GPL(kvm_emulate_xsetbv);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001025
Sean Christophersonee69c922020-10-06 18:44:16 -07001026bool kvm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Wanpeng Li3ca94192019-09-18 17:50:10 +08001027{
Sean Christophersonb11306b2019-12-10 14:44:13 -08001028 if (cr4 & cr4_reserved_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001029 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001030
Krish Sadhukhanb899c132020-07-08 00:39:55 +00001031 if (cr4 & vcpu->arch.cr4_guest_rsvd_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001032 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001033
Jason Baronb36464772021-01-14 22:27:56 -05001034 return static_call(kvm_x86_is_valid_cr4)(vcpu, cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001035}
Sean Christophersonee69c922020-10-06 18:44:16 -07001036EXPORT_SYMBOL_GPL(kvm_is_valid_cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001037
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001038void kvm_post_set_cr4(struct kvm_vcpu *vcpu, unsigned long old_cr4, unsigned long cr4)
1039{
1040 unsigned long mmu_role_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
1041 X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE;
1042
1043 if (((cr4 ^ old_cr4) & mmu_role_bits) ||
1044 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
1045 kvm_mmu_reset_context(vcpu);
1046}
1047EXPORT_SYMBOL_GPL(kvm_post_set_cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001048
Avi Kivitya83b29c2010-06-10 17:02:15 +03001049int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +01001050{
Avi Kivityfc78f512009-12-07 12:16:48 +02001051 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +08001052 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
Jim Mattsoncb957ad2020-08-17 11:16:54 -07001053 X86_CR4_SMEP;
Xiao Guangrong0be02262015-05-11 22:55:21 +08001054
Sean Christophersonee69c922020-10-06 18:44:16 -07001055 if (!kvm_is_valid_cr4(vcpu, cr4))
Paolo Bonziniae3e61e2016-07-12 10:36:41 +02001056 return 1;
1057
Carsten Ottea03490e2007-10-29 16:09:35 +01001058 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +03001059 if (!(cr4 & X86_CR4_PAE))
1060 return 1;
Sean Christophersond74fcfc2020-07-02 19:17:14 -07001061 if ((cr4 ^ old_cr4) & X86_CR4_LA57)
1062 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +03001063 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
1064 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +02001065 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
1066 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +03001067 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001068
Mao, Junjiead756a12012-07-02 01:18:48 +00001069 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
Radim Krčmářd6321d42017-08-05 00:12:49 +02001070 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
Mao, Junjiead756a12012-07-02 01:18:48 +00001071 return 1;
1072
1073 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
1074 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
1075 return 1;
1076 }
1077
Jason Baronb36464772021-01-14 22:27:56 -05001078 static_call(kvm_x86_set_cr4)(vcpu, cr4);
Gleb Natapov0f122442010-04-28 19:15:31 +03001079
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001080 kvm_post_set_cr4(vcpu, old_cr4, cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001081
Gleb Natapov0f122442010-04-28 19:15:31 +03001082 return 0;
1083}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001084EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +01001085
Sean Christopherson21823fb2021-06-09 16:42:24 -07001086static void kvm_invalidate_pcid(struct kvm_vcpu *vcpu, unsigned long pcid)
1087{
1088 struct kvm_mmu *mmu = vcpu->arch.mmu;
1089 unsigned long roots_to_free = 0;
1090 int i;
1091
1092 /*
1093 * If neither the current CR3 nor any of the prev_roots use the given
1094 * PCID, then nothing needs to be done here because a resync will
1095 * happen anyway before switching to any other CR3.
1096 */
1097 if (kvm_get_active_pcid(vcpu) == pcid) {
Sean Christophersone62f1aa2021-06-09 16:42:32 -07001098 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001099 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
1100 }
1101
1102 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
1103 if (kvm_get_pcid(vcpu, mmu->prev_roots[i].pgd) == pcid)
1104 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
1105
1106 kvm_mmu_free_roots(vcpu, mmu, roots_to_free);
1107}
1108
Avi Kivity23902182010-06-10 17:02:16 +03001109int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +01001110{
Junaid Shahidade61e22018-06-27 14:59:15 -07001111 bool skip_tlb_flush = false;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001112 unsigned long pcid = 0;
Paolo Bonziniac146232014-11-10 13:53:25 +01001113#ifdef CONFIG_X86_64
Junaid Shahidc19986f2018-05-04 11:37:13 -07001114 bool pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
1115
Junaid Shahidade61e22018-06-27 14:59:15 -07001116 if (pcid_enabled) {
Junaid Shahid208320b2018-06-27 14:59:21 -07001117 skip_tlb_flush = cr3 & X86_CR3_PCID_NOFLUSH;
1118 cr3 &= ~X86_CR3_PCID_NOFLUSH;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001119 pcid = cr3 & X86_CR3_PCID_MASK;
Junaid Shahidade61e22018-06-27 14:59:15 -07001120 }
Paolo Bonziniac146232014-11-10 13:53:25 +01001121#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +02001122
Sean Christophersonc7313152021-06-07 12:01:58 +03001123 /* PDPTRs are always reloaded for PAE paging. */
Sean Christopherson21823fb2021-06-09 16:42:24 -07001124 if (cr3 == kvm_read_cr3(vcpu) && !is_pae_paging(vcpu))
1125 goto handle_tlb_flush;
Avi Kivityd835dfe2007-11-21 02:57:59 +02001126
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001127 /*
1128 * Do not condition the GPA check on long mode, this helper is used to
1129 * stuff CR3, e.g. for RSM emulation, and there is no guarantee that
1130 * the current vCPU mode is accurate.
1131 */
1132 if (kvm_vcpu_is_illegal_gpa(vcpu, cr3))
Yu Zhangd1cd3ce2017-08-24 20:27:53 +08001133 return 1;
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001134
1135 if (is_pae_paging(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +03001136 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001137
Sean Christopherson21823fb2021-06-09 16:42:24 -07001138 if (cr3 != kvm_read_cr3(vcpu))
Sean Christophersonb5129102021-06-09 16:42:27 -07001139 kvm_mmu_new_pgd(vcpu, cr3);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001140
Gleb Natapov0f122442010-04-28 19:15:31 +03001141 vcpu->arch.cr3 = cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001142 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Junaid Shahid7c390d32018-06-27 14:59:06 -07001143
Sean Christopherson21823fb2021-06-09 16:42:24 -07001144handle_tlb_flush:
1145 /*
1146 * A load of CR3 that flushes the TLB flushes only the current PCID,
1147 * even if PCID is disabled, in which case PCID=0 is flushed. It's a
1148 * moot point in the end because _disabling_ PCID will flush all PCIDs,
1149 * and it's impossible to use a non-zero PCID when PCID is disabled,
1150 * i.e. only PCID=0 can be relevant.
1151 */
1152 if (!skip_tlb_flush)
1153 kvm_invalidate_pcid(vcpu, pcid);
1154
Gleb Natapov0f122442010-04-28 19:15:31 +03001155 return 0;
1156}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001157EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +01001158
Andre Przywaraeea1cff2010-12-21 11:12:00 +01001159int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +01001160{
Gleb Natapov0f122442010-04-28 19:15:31 +03001161 if (cr8 & CR8_RESERVED_BITS)
1162 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +02001163 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001164 kvm_lapic_set_tpr(vcpu, cr8);
1165 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001166 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +03001167 return 0;
1168}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001169EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001170
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001171unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +01001172{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001173 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001174 return kvm_lapic_get_cr8(vcpu);
1175 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001176 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +01001177}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001178EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001179
Nadav Amitae561ed2015-04-02 03:10:37 +03001180static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
1181{
1182 int i;
1183
1184 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
1185 for (i = 0; i < KVM_NR_DB_REGS; i++)
1186 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
1187 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
1188 }
1189}
1190
Paolo Bonzini7c866632020-05-16 08:42:28 -04001191void kvm_update_dr7(struct kvm_vcpu *vcpu)
Jan Kiszkac8639012012-09-21 05:42:55 +02001192{
1193 unsigned long dr7;
1194
1195 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1196 dr7 = vcpu->arch.guest_debug_dr7;
1197 else
1198 dr7 = vcpu->arch.dr7;
Jason Baronb36464772021-01-14 22:27:56 -05001199 static_call(kvm_x86_set_dr7)(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +01001200 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
1201 if (dr7 & DR7_BP_EN_MASK)
1202 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +02001203}
Paolo Bonzini7c866632020-05-16 08:42:28 -04001204EXPORT_SYMBOL_GPL(kvm_update_dr7);
Jan Kiszkac8639012012-09-21 05:42:55 +02001205
Nadav Amit6f43ed02014-07-15 17:37:46 +03001206static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
1207{
1208 u64 fixed = DR6_FIXED_1;
1209
Radim Krčmářd6321d42017-08-05 00:12:49 +02001210 if (!guest_cpuid_has(vcpu, X86_FEATURE_RTM))
Nadav Amit6f43ed02014-07-15 17:37:46 +03001211 fixed |= DR6_RTM;
Chenyi Qiange8ea85f2021-02-02 17:04:32 +08001212
1213 if (!guest_cpuid_has(vcpu, X86_FEATURE_BUS_LOCK_DETECT))
1214 fixed |= DR6_BUS_LOCK;
Nadav Amit6f43ed02014-07-15 17:37:46 +03001215 return fixed;
1216}
1217
Paolo Bonzini996ff542020-12-14 07:49:54 -05001218int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +03001219{
Marios Pomonisea740052019-12-11 12:47:52 -08001220 size_t size = ARRAY_SIZE(vcpu->arch.db);
1221
Gleb Natapov020df072010-04-13 10:05:23 +03001222 switch (dr) {
1223 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001224 vcpu->arch.db[array_index_nospec(dr, size)] = val;
Gleb Natapov020df072010-04-13 10:05:23 +03001225 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
1226 vcpu->arch.eff_db[dr] = val;
1227 break;
1228 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001229 case 6:
Krish Sadhukhanf5f61452020-05-22 18:19:51 -04001230 if (!kvm_dr6_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001231 return 1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +03001232 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001233 break;
1234 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001235 default: /* 7 */
Krish Sadhukhanb91991b2020-01-15 19:54:32 -05001236 if (!kvm_dr7_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001237 return 1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +03001238 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02001239 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001240 break;
1241 }
1242
1243 return 0;
1244}
1245EXPORT_SYMBOL_GPL(kvm_set_dr);
1246
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05001247void kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +03001248{
Marios Pomonisea740052019-12-11 12:47:52 -08001249 size_t size = ARRAY_SIZE(vcpu->arch.db);
1250
Gleb Natapov020df072010-04-13 10:05:23 +03001251 switch (dr) {
1252 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001253 *val = vcpu->arch.db[array_index_nospec(dr, size)];
Gleb Natapov020df072010-04-13 10:05:23 +03001254 break;
1255 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001256 case 6:
Paolo Bonzini5679b802020-05-04 11:28:25 -04001257 *val = vcpu->arch.dr6;
Gleb Natapov020df072010-04-13 10:05:23 +03001258 break;
1259 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001260 default: /* 7 */
1261 *val = vcpu->arch.dr7;
1262 break;
1263 }
Gleb Natapov338dbc92010-04-28 19:15:32 +03001264}
Gleb Natapov020df072010-04-13 10:05:23 +03001265EXPORT_SYMBOL_GPL(kvm_get_dr);
1266
Sean Christophersonc483c452021-02-04 16:57:48 -08001267int kvm_emulate_rdpmc(struct kvm_vcpu *vcpu)
Avi Kivity022cd0e2011-11-10 14:57:23 +02001268{
Sean Christophersonde3cd112019-04-30 10:36:17 -07001269 u32 ecx = kvm_rcx_read(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001270 u64 data;
Avi Kivity022cd0e2011-11-10 14:57:23 +02001271
Sean Christophersonc483c452021-02-04 16:57:48 -08001272 if (kvm_pmu_rdpmc(vcpu, ecx, &data)) {
1273 kvm_inject_gp(vcpu, 0);
1274 return 1;
1275 }
1276
Sean Christophersonde3cd112019-04-30 10:36:17 -07001277 kvm_rax_write(vcpu, (u32)data);
1278 kvm_rdx_write(vcpu, data >> 32);
Sean Christophersonc483c452021-02-04 16:57:48 -08001279 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001280}
Sean Christophersonc483c452021-02-04 16:57:48 -08001281EXPORT_SYMBOL_GPL(kvm_emulate_rdpmc);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001282
Carsten Otte043405e2007-10-10 17:16:19 +02001283/*
1284 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
1285 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
1286 *
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001287 * The three MSR lists(msrs_to_save, emulated_msrs, msr_based_features)
1288 * extract the supported MSRs from the related const lists.
1289 * msrs_to_save is selected from the msrs_to_save_all to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -04001290 * capabilities of the host cpu. This capabilities test skips MSRs that are
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001291 * kvm-specific. Those are put in emulated_msrs_all; filtering of emulated_msrs
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001292 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +02001293 */
Glauber Costae3267cb2009-10-06 13:24:50 -04001294
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001295static const u32 msrs_to_save_all[] = {
Carsten Otte043405e2007-10-10 17:16:19 +02001296 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -04001297 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +02001298#ifdef CONFIG_X86_64
1299 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
1300#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +08001301 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001302 MSR_IA32_FEAT_CTL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001303 MSR_IA32_SPEC_CTRL,
Chao Pengbf8c55d2018-10-24 16:05:14 +08001304 MSR_IA32_RTIT_CTL, MSR_IA32_RTIT_STATUS, MSR_IA32_RTIT_CR3_MATCH,
1305 MSR_IA32_RTIT_OUTPUT_BASE, MSR_IA32_RTIT_OUTPUT_MASK,
1306 MSR_IA32_RTIT_ADDR0_A, MSR_IA32_RTIT_ADDR0_B,
1307 MSR_IA32_RTIT_ADDR1_A, MSR_IA32_RTIT_ADDR1_B,
1308 MSR_IA32_RTIT_ADDR2_A, MSR_IA32_RTIT_ADDR2_B,
1309 MSR_IA32_RTIT_ADDR3_A, MSR_IA32_RTIT_ADDR3_B,
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001310 MSR_IA32_UMWAIT_CONTROL,
1311
Jim Mattsone2ada662019-08-21 11:20:04 -07001312 MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1,
1313 MSR_ARCH_PERFMON_FIXED_CTR0 + 2, MSR_ARCH_PERFMON_FIXED_CTR0 + 3,
1314 MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS,
1315 MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL,
1316 MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1,
1317 MSR_ARCH_PERFMON_PERFCTR0 + 2, MSR_ARCH_PERFMON_PERFCTR0 + 3,
1318 MSR_ARCH_PERFMON_PERFCTR0 + 4, MSR_ARCH_PERFMON_PERFCTR0 + 5,
1319 MSR_ARCH_PERFMON_PERFCTR0 + 6, MSR_ARCH_PERFMON_PERFCTR0 + 7,
1320 MSR_ARCH_PERFMON_PERFCTR0 + 8, MSR_ARCH_PERFMON_PERFCTR0 + 9,
1321 MSR_ARCH_PERFMON_PERFCTR0 + 10, MSR_ARCH_PERFMON_PERFCTR0 + 11,
1322 MSR_ARCH_PERFMON_PERFCTR0 + 12, MSR_ARCH_PERFMON_PERFCTR0 + 13,
1323 MSR_ARCH_PERFMON_PERFCTR0 + 14, MSR_ARCH_PERFMON_PERFCTR0 + 15,
1324 MSR_ARCH_PERFMON_PERFCTR0 + 16, MSR_ARCH_PERFMON_PERFCTR0 + 17,
Jim Mattsone2ada662019-08-21 11:20:04 -07001325 MSR_ARCH_PERFMON_EVENTSEL0, MSR_ARCH_PERFMON_EVENTSEL1,
1326 MSR_ARCH_PERFMON_EVENTSEL0 + 2, MSR_ARCH_PERFMON_EVENTSEL0 + 3,
1327 MSR_ARCH_PERFMON_EVENTSEL0 + 4, MSR_ARCH_PERFMON_EVENTSEL0 + 5,
1328 MSR_ARCH_PERFMON_EVENTSEL0 + 6, MSR_ARCH_PERFMON_EVENTSEL0 + 7,
1329 MSR_ARCH_PERFMON_EVENTSEL0 + 8, MSR_ARCH_PERFMON_EVENTSEL0 + 9,
1330 MSR_ARCH_PERFMON_EVENTSEL0 + 10, MSR_ARCH_PERFMON_EVENTSEL0 + 11,
1331 MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13,
1332 MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15,
1333 MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17,
Carsten Otte043405e2007-10-10 17:16:19 +02001334};
1335
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001336static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)];
Carsten Otte043405e2007-10-10 17:16:19 +02001337static unsigned num_msrs_to_save;
1338
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001339static const u32 emulated_msrs_all[] = {
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001340 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
1341 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
1342 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
1343 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Ladi Prosek72c139b2017-07-26 13:32:59 +02001344 HV_X64_MSR_TSC_FREQUENCY, HV_X64_MSR_APIC_FREQUENCY,
Andrey Smetanine7d95132015-07-03 15:01:37 +03001345 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
1346 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +03001347 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +03001348 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +03001349 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001350 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03001351 HV_X64_MSR_STIMER0_CONFIG,
Ladi Prosekd4abc572018-03-20 15:02:07 +01001352 HV_X64_MSR_VP_ASSIST_PAGE,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001353 HV_X64_MSR_REENLIGHTENMENT_CONTROL, HV_X64_MSR_TSC_EMULATION_CONTROL,
1354 HV_X64_MSR_TSC_EMULATION_STATUS,
Jon Doronf97f5a52020-05-29 16:45:40 +03001355 HV_X64_MSR_SYNDBG_OPTIONS,
1356 HV_X64_MSR_SYNDBG_CONTROL, HV_X64_MSR_SYNDBG_STATUS,
1357 HV_X64_MSR_SYNDBG_SEND_BUFFER, HV_X64_MSR_SYNDBG_RECV_BUFFER,
1358 HV_X64_MSR_SYNDBG_PENDING_BUFFER,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001359
1360 MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02001361 MSR_KVM_PV_EOI_EN, MSR_KVM_ASYNC_PF_INT, MSR_KVM_ASYNC_PF_ACK,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001362
Will Auldba904632012-11-29 12:42:50 -08001363 MSR_IA32_TSC_ADJUST,
Dave Hansen09141ec2020-03-05 09:47:06 -08001364 MSR_IA32_TSC_DEADLINE,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001365 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001366 MSR_IA32_PERF_CAPABILITIES,
Carsten Otte043405e2007-10-10 17:16:19 +02001367 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001368 MSR_IA32_MCG_STATUS,
1369 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001370 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001371 MSR_IA32_SMBASE,
Liran Alon52797bf2017-11-15 13:43:14 +02001372 MSR_SMI_COUNT,
Kyle Hueydb2336a2017-03-20 01:16:28 -07001373 MSR_PLATFORM_INFO,
1374 MSR_MISC_FEATURES_ENABLES,
Tom Lendackybc226f02018-05-10 22:06:39 +02001375 MSR_AMD64_VIRT_SPEC_CTRL,
Liran Alon6c6a2ab2019-04-15 18:45:26 +03001376 MSR_IA32_POWER_CTL,
Paolo Bonzini99634e32020-01-20 14:22:55 +01001377 MSR_IA32_UCODE_REV,
Borislav Petkov191c8132019-04-18 18:32:50 +02001378
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001379 /*
1380 * The following list leaves out MSRs whose values are determined
1381 * by arch/x86/kvm/vmx/nested.c based on CPUID or other MSRs.
1382 * We always support the "true" VMX control MSRs, even if the host
1383 * processor does not, so I am putting these registers here rather
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001384 * than in msrs_to_save_all.
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001385 */
1386 MSR_IA32_VMX_BASIC,
1387 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1388 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1389 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1390 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1391 MSR_IA32_VMX_MISC,
1392 MSR_IA32_VMX_CR0_FIXED0,
1393 MSR_IA32_VMX_CR4_FIXED0,
1394 MSR_IA32_VMX_VMCS_ENUM,
1395 MSR_IA32_VMX_PROCBASED_CTLS2,
1396 MSR_IA32_VMX_EPT_VPID_CAP,
1397 MSR_IA32_VMX_VMFUNC,
1398
Borislav Petkov191c8132019-04-18 18:32:50 +02001399 MSR_K7_HWCR,
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03001400 MSR_KVM_POLL_CONTROL,
Carsten Otte043405e2007-10-10 17:16:19 +02001401};
1402
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001403static u32 emulated_msrs[ARRAY_SIZE(emulated_msrs_all)];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001404static unsigned num_emulated_msrs;
1405
Tom Lendacky801e4592018-02-21 13:39:51 -06001406/*
1407 * List of msr numbers which are used to expose MSR-based features that
1408 * can be used by a hypervisor to validate requested CPU features.
1409 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001410static const u32 msr_based_features_all[] = {
Paolo Bonzini13893092018-02-26 13:40:09 +01001411 MSR_IA32_VMX_BASIC,
1412 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1413 MSR_IA32_VMX_PINBASED_CTLS,
1414 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1415 MSR_IA32_VMX_PROCBASED_CTLS,
1416 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1417 MSR_IA32_VMX_EXIT_CTLS,
1418 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1419 MSR_IA32_VMX_ENTRY_CTLS,
1420 MSR_IA32_VMX_MISC,
1421 MSR_IA32_VMX_CR0_FIXED0,
1422 MSR_IA32_VMX_CR0_FIXED1,
1423 MSR_IA32_VMX_CR4_FIXED0,
1424 MSR_IA32_VMX_CR4_FIXED1,
1425 MSR_IA32_VMX_VMCS_ENUM,
1426 MSR_IA32_VMX_PROCBASED_CTLS2,
1427 MSR_IA32_VMX_EPT_VPID_CAP,
1428 MSR_IA32_VMX_VMFUNC,
1429
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01001430 MSR_F10H_DECFG,
Wanpeng Li518e7b92018-02-28 14:03:31 +08001431 MSR_IA32_UCODE_REV,
Paolo Bonzinicd283252018-06-25 14:04:37 +02001432 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001433 MSR_IA32_PERF_CAPABILITIES,
Tom Lendacky801e4592018-02-21 13:39:51 -06001434};
1435
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001436static u32 msr_based_features[ARRAY_SIZE(msr_based_features_all)];
Tom Lendacky801e4592018-02-21 13:39:51 -06001437static unsigned int num_msr_based_features;
1438
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001439static u64 kvm_get_arch_capabilities(void)
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001440{
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001441 u64 data = 0;
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001442
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001443 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
1444 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, data);
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001445
1446 /*
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001447 * If nx_huge_pages is enabled, KVM's shadow paging will ensure that
1448 * the nested hypervisor runs with NX huge pages. If it is not,
Ingo Molnard9f6e122021-03-18 15:28:01 +01001449 * L1 is anyway vulnerable to ITLB_MULTIHIT exploits from other
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001450 * L1 guests, so it need not worry about its own (L2) guests.
1451 */
1452 data |= ARCH_CAP_PSCHANGE_MC_NO;
1453
1454 /*
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001455 * If we're doing cache flushes (either "always" or "cond")
1456 * we will do one whenever the guest does a vmlaunch/vmresume.
1457 * If an outer hypervisor is doing the cache flush for us
1458 * (VMENTER_L1D_FLUSH_NESTED_VM), we can safely pass that
1459 * capability to the guest too, and if EPT is disabled we're not
1460 * vulnerable. Overall, only VMENTER_L1D_FLUSH_NEVER will
1461 * require a nested hypervisor to do a flush of its own.
1462 */
1463 if (l1tf_vmx_mitigation != VMENTER_L1D_FLUSH_NEVER)
1464 data |= ARCH_CAP_SKIP_VMENTRY_L1DFLUSH;
1465
Paolo Bonzini0c549142019-08-19 17:24:07 +02001466 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
1467 data |= ARCH_CAP_RDCL_NO;
1468 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1469 data |= ARCH_CAP_SSB_NO;
1470 if (!boot_cpu_has_bug(X86_BUG_MDS))
1471 data |= ARCH_CAP_MDS_NO;
1472
Paolo Bonzini71316362021-01-28 11:45:00 -05001473 if (!boot_cpu_has(X86_FEATURE_RTM)) {
1474 /*
1475 * If RTM=0 because the kernel has disabled TSX, the host might
1476 * have TAA_NO or TSX_CTRL. Clear TAA_NO (the guest sees RTM=0
1477 * and therefore knows that there cannot be TAA) but keep
1478 * TSX_CTRL: some buggy userspaces leave it set on tsx=on hosts,
1479 * and we want to allow migrating those guests to tsx=off hosts.
1480 */
1481 data &= ~ARCH_CAP_TAA_NO;
1482 } else if (!boot_cpu_has_bug(X86_BUG_TAA)) {
Paolo Bonzinicbbaa272019-11-18 18:58:26 +01001483 data |= ARCH_CAP_TAA_NO;
Paolo Bonzini71316362021-01-28 11:45:00 -05001484 } else {
1485 /*
1486 * Nothing to do here; we emulate TSX_CTRL if present on the
1487 * host so the guest can choose between disabling TSX or
1488 * using VERW to clear CPU buffers.
1489 */
1490 }
Pawan Guptae1d38b62019-10-23 12:23:33 +02001491
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001492 return data;
1493}
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001494
Wanpeng Li66421c12018-02-28 14:03:30 +08001495static int kvm_get_msr_feature(struct kvm_msr_entry *msr)
1496{
1497 switch (msr->index) {
Paolo Bonzinicd283252018-06-25 14:04:37 +02001498 case MSR_IA32_ARCH_CAPABILITIES:
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001499 msr->data = kvm_get_arch_capabilities();
1500 break;
1501 case MSR_IA32_UCODE_REV:
Paolo Bonzinicd283252018-06-25 14:04:37 +02001502 rdmsrl_safe(msr->index, &msr->data);
Wanpeng Li518e7b92018-02-28 14:03:31 +08001503 break;
Wanpeng Li66421c12018-02-28 14:03:30 +08001504 default:
Jason Baronb36464772021-01-14 22:27:56 -05001505 return static_call(kvm_x86_get_msr_feature)(msr);
Wanpeng Li66421c12018-02-28 14:03:30 +08001506 }
1507 return 0;
1508}
1509
Tom Lendacky801e4592018-02-21 13:39:51 -06001510static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1511{
1512 struct kvm_msr_entry msr;
Wanpeng Li66421c12018-02-28 14:03:30 +08001513 int r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001514
1515 msr.index = index;
Wanpeng Li66421c12018-02-28 14:03:30 +08001516 r = kvm_get_msr_feature(&msr);
Peter Xu12bc2132020-06-22 18:04:42 -04001517
1518 if (r == KVM_MSR_RET_INVALID) {
1519 /* Unconditionally clear the output for simplicity */
1520 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001521 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001522 r = 0;
Peter Xu12bc2132020-06-22 18:04:42 -04001523 }
1524
Wanpeng Li66421c12018-02-28 14:03:30 +08001525 if (r)
1526 return r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001527
1528 *data = msr.data;
1529
1530 return 0;
1531}
1532
Sean Christopherson11988492019-04-02 08:19:15 -07001533static bool __kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
1534{
1535 if (efer & EFER_FFXSR && !guest_cpuid_has(vcpu, X86_FEATURE_FXSR_OPT))
1536 return false;
1537
1538 if (efer & EFER_SVME && !guest_cpuid_has(vcpu, X86_FEATURE_SVM))
1539 return false;
1540
Sean Christopherson0a629562019-04-02 08:19:16 -07001541 if (efer & (EFER_LME | EFER_LMA) &&
1542 !guest_cpuid_has(vcpu, X86_FEATURE_LM))
1543 return false;
1544
1545 if (efer & EFER_NX && !guest_cpuid_has(vcpu, X86_FEATURE_NX))
1546 return false;
1547
Sean Christopherson11988492019-04-02 08:19:15 -07001548 return true;
1549
1550}
Jan Kiszka384bb782013-04-20 10:52:36 +02001551bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001552{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001553 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001554 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001555
Sean Christopherson11988492019-04-02 08:19:15 -07001556 return __kvm_valid_efer(vcpu, efer);
Jan Kiszka384bb782013-04-20 10:52:36 +02001557}
1558EXPORT_SYMBOL_GPL(kvm_valid_efer);
1559
Sean Christopherson11988492019-04-02 08:19:15 -07001560static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Jan Kiszka384bb782013-04-20 10:52:36 +02001561{
1562 u64 old_efer = vcpu->arch.efer;
Sean Christopherson11988492019-04-02 08:19:15 -07001563 u64 efer = msr_info->data;
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001564 int r;
Jan Kiszka384bb782013-04-20 10:52:36 +02001565
Sean Christopherson11988492019-04-02 08:19:15 -07001566 if (efer & efer_reserved_bits)
Paolo Bonzini66f61c92019-05-24 21:52:46 +02001567 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +02001568
Sean Christopherson11988492019-04-02 08:19:15 -07001569 if (!msr_info->host_initiated) {
1570 if (!__kvm_valid_efer(vcpu, efer))
1571 return 1;
1572
1573 if (is_paging(vcpu) &&
1574 (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1575 return 1;
1576 }
Jan Kiszka384bb782013-04-20 10:52:36 +02001577
Carsten Otte15c4a642007-10-30 18:44:17 +01001578 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001579 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001580
Jason Baronb36464772021-01-14 22:27:56 -05001581 r = static_call(kvm_x86_set_efer)(vcpu, efer);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001582 if (r) {
1583 WARN_ON(r > 0);
1584 return r;
1585 }
Sheng Yanga3d204e2010-05-12 16:40:40 +08001586
Sheng Yangaad82702010-05-12 16:40:42 +08001587 /* Update reserved bits */
1588 if ((efer ^ old_efer) & EFER_NX)
1589 kvm_mmu_reset_context(vcpu);
1590
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001591 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001592}
1593
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001594void kvm_enable_efer_bits(u64 mask)
1595{
1596 efer_reserved_bits &= ~mask;
1597}
1598EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1599
Alexander Graf51de8152020-09-25 16:34:17 +02001600bool kvm_msr_allowed(struct kvm_vcpu *vcpu, u32 index, u32 type)
1601{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001602 struct kvm_x86_msr_filter *msr_filter;
1603 struct msr_bitmap_range *ranges;
Alexander Graf1a1552542020-09-25 16:34:21 +02001604 struct kvm *kvm = vcpu->kvm;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001605 bool allowed;
Alexander Graf1a1552542020-09-25 16:34:21 +02001606 int idx;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001607 u32 i;
Alexander Graf1a1552542020-09-25 16:34:21 +02001608
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001609 /* x2APIC MSRs do not support filtering. */
1610 if (index >= 0x800 && index <= 0x8ff)
Alexander Graf1a1552542020-09-25 16:34:21 +02001611 return true;
1612
Alexander Graf1a1552542020-09-25 16:34:21 +02001613 idx = srcu_read_lock(&kvm->srcu);
1614
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001615 msr_filter = srcu_dereference(kvm->arch.msr_filter, &kvm->srcu);
1616 if (!msr_filter) {
1617 allowed = true;
1618 goto out;
1619 }
1620
1621 allowed = msr_filter->default_allow;
1622 ranges = msr_filter->ranges;
1623
1624 for (i = 0; i < msr_filter->count; i++) {
Alexander Graf1a1552542020-09-25 16:34:21 +02001625 u32 start = ranges[i].base;
1626 u32 end = start + ranges[i].nmsrs;
1627 u32 flags = ranges[i].flags;
1628 unsigned long *bitmap = ranges[i].bitmap;
1629
1630 if ((index >= start) && (index < end) && (flags & type)) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001631 allowed = !!test_bit(index - start, bitmap);
Alexander Graf1a1552542020-09-25 16:34:21 +02001632 break;
1633 }
1634 }
1635
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001636out:
Alexander Graf1a1552542020-09-25 16:34:21 +02001637 srcu_read_unlock(&kvm->srcu, idx);
1638
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001639 return allowed;
Alexander Graf51de8152020-09-25 16:34:17 +02001640}
1641EXPORT_SYMBOL_GPL(kvm_msr_allowed);
1642
Carsten Otte15c4a642007-10-30 18:44:17 +01001643/*
Sean Christophersonf20935d2019-09-05 14:22:54 -07001644 * Write @data into the MSR specified by @index. Select MSR specific fault
1645 * checks are bypassed if @host_initiated is %true.
Carsten Otte15c4a642007-10-30 18:44:17 +01001646 * Returns 0 on success, non-0 otherwise.
1647 * Assumes vcpu_load() was already called.
1648 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001649static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data,
1650 bool host_initiated)
Carsten Otte15c4a642007-10-30 18:44:17 +01001651{
Sean Christophersonf20935d2019-09-05 14:22:54 -07001652 struct msr_data msr;
1653
Alexander Graf1a1552542020-09-25 16:34:21 +02001654 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_WRITE))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001655 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001656
Sean Christophersonf20935d2019-09-05 14:22:54 -07001657 switch (index) {
Nadav Amit854e8bb2014-09-16 03:24:05 +03001658 case MSR_FS_BASE:
1659 case MSR_GS_BASE:
1660 case MSR_KERNEL_GS_BASE:
1661 case MSR_CSTAR:
1662 case MSR_LSTAR:
Sean Christophersonf20935d2019-09-05 14:22:54 -07001663 if (is_noncanonical_address(data, vcpu))
Nadav Amit854e8bb2014-09-16 03:24:05 +03001664 return 1;
1665 break;
1666 case MSR_IA32_SYSENTER_EIP:
1667 case MSR_IA32_SYSENTER_ESP:
1668 /*
1669 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1670 * non-canonical address is written on Intel but not on
1671 * AMD (which ignores the top 32-bits, because it does
1672 * not implement 64-bit SYSENTER).
1673 *
1674 * 64-bit code should hence be able to write a non-canonical
1675 * value on AMD. Making the address canonical ensures that
1676 * vmentry does not fail on Intel after writing a non-canonical
1677 * value, and that something deterministic happens if the guest
1678 * invokes 64-bit SYSENTER.
1679 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001680 data = get_canonical(data, vcpu_virt_addr_bits(vcpu));
Sean Christopherson61a05d42021-05-04 10:17:33 -07001681 break;
1682 case MSR_TSC_AUX:
1683 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1684 return 1;
1685
1686 if (!host_initiated &&
1687 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1688 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1689 return 1;
1690
1691 /*
1692 * Per Intel's SDM, bits 63:32 are reserved, but AMD's APM has
1693 * incomplete and conflicting architectural behavior. Current
1694 * AMD CPUs completely ignore bits 63:32, i.e. they aren't
1695 * reserved and always read as zeros. Enforce Intel's reserved
1696 * bits check if and only if the guest CPU is Intel, and clear
1697 * the bits in all other cases. This ensures cross-vendor
1698 * migration will provide consistent behavior for the guest.
1699 */
1700 if (guest_cpuid_is_intel(vcpu) && (data >> 32) != 0)
1701 return 1;
1702
1703 data = (u32)data;
1704 break;
Nadav Amit854e8bb2014-09-16 03:24:05 +03001705 }
Sean Christophersonf20935d2019-09-05 14:22:54 -07001706
1707 msr.data = data;
1708 msr.index = index;
1709 msr.host_initiated = host_initiated;
1710
Jason Baronb36464772021-01-14 22:27:56 -05001711 return static_call(kvm_x86_set_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001712}
1713
Peter Xu6abe9c12020-06-22 18:04:41 -04001714static int kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu,
1715 u32 index, u64 data, bool host_initiated)
1716{
1717 int ret = __kvm_set_msr(vcpu, index, data, host_initiated);
1718
1719 if (ret == KVM_MSR_RET_INVALID)
Haiwei Lid6328262021-03-13 13:10:32 +08001720 if (kvm_msr_ignored_check(index, data, true))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001721 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001722
1723 return ret;
1724}
1725
Sean Christophersonf20935d2019-09-05 14:22:54 -07001726/*
1727 * Read the MSR specified by @index into @data. Select MSR specific fault
1728 * checks are bypassed if @host_initiated is %true.
1729 * Returns 0 on success, non-0 otherwise.
1730 * Assumes vcpu_load() was already called.
1731 */
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001732int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data,
1733 bool host_initiated)
Sean Christophersonf20935d2019-09-05 14:22:54 -07001734{
1735 struct msr_data msr;
1736 int ret;
1737
Alexander Graf1a1552542020-09-25 16:34:21 +02001738 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_READ))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001739 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001740
Sean Christopherson61a05d42021-05-04 10:17:33 -07001741 switch (index) {
1742 case MSR_TSC_AUX:
1743 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1744 return 1;
1745
1746 if (!host_initiated &&
1747 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1748 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1749 return 1;
1750 break;
1751 }
1752
Sean Christophersonf20935d2019-09-05 14:22:54 -07001753 msr.index = index;
1754 msr.host_initiated = host_initiated;
1755
Jason Baronb36464772021-01-14 22:27:56 -05001756 ret = static_call(kvm_x86_get_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001757 if (!ret)
1758 *data = msr.data;
1759 return ret;
1760}
1761
Peter Xu6abe9c12020-06-22 18:04:41 -04001762static int kvm_get_msr_ignored_check(struct kvm_vcpu *vcpu,
1763 u32 index, u64 *data, bool host_initiated)
1764{
1765 int ret = __kvm_get_msr(vcpu, index, data, host_initiated);
1766
1767 if (ret == KVM_MSR_RET_INVALID) {
1768 /* Unconditionally clear *data for simplicity */
1769 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001770 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001771 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001772 }
1773
1774 return ret;
1775}
1776
Sean Christophersonf20935d2019-09-05 14:22:54 -07001777int kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data)
1778{
Peter Xu6abe9c12020-06-22 18:04:41 -04001779 return kvm_get_msr_ignored_check(vcpu, index, data, false);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001780}
1781EXPORT_SYMBOL_GPL(kvm_get_msr);
1782
1783int kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data)
1784{
Peter Xu6abe9c12020-06-22 18:04:41 -04001785 return kvm_set_msr_ignored_check(vcpu, index, data, false);
Carsten Otte15c4a642007-10-30 18:44:17 +01001786}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001787EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001788
Paolo Bonzini8b474422020-12-14 07:44:46 -05001789static int complete_emulated_rdmsr(struct kvm_vcpu *vcpu)
Alexander Graf1ae09952020-09-25 16:34:16 +02001790{
Paolo Bonzini8b474422020-12-14 07:44:46 -05001791 int err = vcpu->run->msr.error;
1792 if (!err) {
Alexander Graf1ae09952020-09-25 16:34:16 +02001793 kvm_rax_write(vcpu, (u32)vcpu->run->msr.data);
1794 kvm_rdx_write(vcpu, vcpu->run->msr.data >> 32);
1795 }
1796
Jason Baronb36464772021-01-14 22:27:56 -05001797 return static_call(kvm_x86_complete_emulated_msr)(vcpu, err);
Alexander Graf1ae09952020-09-25 16:34:16 +02001798}
1799
1800static int complete_emulated_wrmsr(struct kvm_vcpu *vcpu)
1801{
Jason Baronb36464772021-01-14 22:27:56 -05001802 return static_call(kvm_x86_complete_emulated_msr)(vcpu, vcpu->run->msr.error);
Alexander Graf1ae09952020-09-25 16:34:16 +02001803}
1804
1805static u64 kvm_msr_reason(int r)
1806{
1807 switch (r) {
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001808 case KVM_MSR_RET_INVALID:
Alexander Graf1ae09952020-09-25 16:34:16 +02001809 return KVM_MSR_EXIT_REASON_UNKNOWN;
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001810 case KVM_MSR_RET_FILTERED:
Alexander Graf1a1552542020-09-25 16:34:21 +02001811 return KVM_MSR_EXIT_REASON_FILTER;
Alexander Graf1ae09952020-09-25 16:34:16 +02001812 default:
1813 return KVM_MSR_EXIT_REASON_INVAL;
1814 }
1815}
1816
1817static int kvm_msr_user_space(struct kvm_vcpu *vcpu, u32 index,
1818 u32 exit_reason, u64 data,
1819 int (*completion)(struct kvm_vcpu *vcpu),
1820 int r)
1821{
1822 u64 msr_reason = kvm_msr_reason(r);
1823
1824 /* Check if the user wanted to know about this MSR fault */
1825 if (!(vcpu->kvm->arch.user_space_msr_mask & msr_reason))
1826 return 0;
1827
1828 vcpu->run->exit_reason = exit_reason;
1829 vcpu->run->msr.error = 0;
1830 memset(vcpu->run->msr.pad, 0, sizeof(vcpu->run->msr.pad));
1831 vcpu->run->msr.reason = msr_reason;
1832 vcpu->run->msr.index = index;
1833 vcpu->run->msr.data = data;
1834 vcpu->arch.complete_userspace_io = completion;
1835
1836 return 1;
1837}
1838
1839static int kvm_get_msr_user_space(struct kvm_vcpu *vcpu, u32 index, int r)
1840{
1841 return kvm_msr_user_space(vcpu, index, KVM_EXIT_X86_RDMSR, 0,
1842 complete_emulated_rdmsr, r);
1843}
1844
1845static int kvm_set_msr_user_space(struct kvm_vcpu *vcpu, u32 index, u64 data, int r)
1846{
1847 return kvm_msr_user_space(vcpu, index, KVM_EXIT_X86_WRMSR, data,
1848 complete_emulated_wrmsr, r);
1849}
1850
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001851int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu)
1852{
1853 u32 ecx = kvm_rcx_read(vcpu);
1854 u64 data;
Alexander Graf1ae09952020-09-25 16:34:16 +02001855 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001856
Alexander Graf1ae09952020-09-25 16:34:16 +02001857 r = kvm_get_msr(vcpu, ecx, &data);
1858
1859 /* MSR read failed? See if we should ask user space */
1860 if (r && kvm_get_msr_user_space(vcpu, ecx, r)) {
1861 /* Bounce to user space */
1862 return 0;
1863 }
1864
Paolo Bonzini8b474422020-12-14 07:44:46 -05001865 if (!r) {
1866 trace_kvm_msr_read(ecx, data);
1867
1868 kvm_rax_write(vcpu, data & -1u);
1869 kvm_rdx_write(vcpu, (data >> 32) & -1u);
1870 } else {
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001871 trace_kvm_msr_read_ex(ecx);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001872 }
1873
Jason Baronb36464772021-01-14 22:27:56 -05001874 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001875}
1876EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr);
1877
1878int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu)
1879{
1880 u32 ecx = kvm_rcx_read(vcpu);
1881 u64 data = kvm_read_edx_eax(vcpu);
Alexander Graf1ae09952020-09-25 16:34:16 +02001882 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001883
Alexander Graf1ae09952020-09-25 16:34:16 +02001884 r = kvm_set_msr(vcpu, ecx, data);
1885
1886 /* MSR write failed? See if we should ask user space */
Maxim Levitsky7dffeca2020-10-01 14:29:52 +03001887 if (r && kvm_set_msr_user_space(vcpu, ecx, data, r))
Alexander Graf1ae09952020-09-25 16:34:16 +02001888 /* Bounce to user space */
1889 return 0;
Maxim Levitsky7dffeca2020-10-01 14:29:52 +03001890
1891 /* Signal all other negative errors to userspace */
1892 if (r < 0)
1893 return r;
Alexander Graf1ae09952020-09-25 16:34:16 +02001894
Paolo Bonzini8b474422020-12-14 07:44:46 -05001895 if (!r)
1896 trace_kvm_msr_write(ecx, data);
1897 else
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001898 trace_kvm_msr_write_ex(ecx, data);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001899
Jason Baronb36464772021-01-14 22:27:56 -05001900 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001901}
1902EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr);
1903
Sean Christopherson5ff3a352021-02-04 16:57:47 -08001904int kvm_emulate_as_nop(struct kvm_vcpu *vcpu)
1905{
1906 return kvm_skip_emulated_instruction(vcpu);
1907}
1908EXPORT_SYMBOL_GPL(kvm_emulate_as_nop);
1909
1910int kvm_emulate_invd(struct kvm_vcpu *vcpu)
1911{
1912 /* Treat an INVD instruction as a NOP and just skip it. */
1913 return kvm_emulate_as_nop(vcpu);
1914}
1915EXPORT_SYMBOL_GPL(kvm_emulate_invd);
1916
1917int kvm_emulate_mwait(struct kvm_vcpu *vcpu)
1918{
1919 pr_warn_once("kvm: MWAIT instruction emulated as NOP!\n");
1920 return kvm_emulate_as_nop(vcpu);
1921}
1922EXPORT_SYMBOL_GPL(kvm_emulate_mwait);
1923
1924int kvm_handle_invalid_op(struct kvm_vcpu *vcpu)
1925{
1926 kvm_queue_exception(vcpu, UD_VECTOR);
1927 return 1;
1928}
1929EXPORT_SYMBOL_GPL(kvm_handle_invalid_op);
1930
1931int kvm_emulate_monitor(struct kvm_vcpu *vcpu)
1932{
1933 pr_warn_once("kvm: MONITOR instruction emulated as NOP!\n");
1934 return kvm_emulate_as_nop(vcpu);
1935}
1936EXPORT_SYMBOL_GPL(kvm_emulate_monitor);
1937
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05001938static inline bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu)
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001939{
Frederic Weisbecker4ae7dc92021-02-01 00:05:48 +01001940 xfer_to_guest_mode_prepare();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001941 return vcpu->mode == EXITING_GUEST_MODE || kvm_request_pending(vcpu) ||
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02001942 xfer_to_guest_mode_work_pending();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001943}
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001944
Carsten Otte313a3dc2007-10-11 19:16:52 +02001945/*
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001946 * The fast path for frequent and performance sensitive wrmsr emulation,
1947 * i.e. the sending of IPI, sending IPI early in the VM-Exit flow reduces
1948 * the latency of virtual IPI by avoiding the expensive bits of transitioning
1949 * from guest to host, e.g. reacquiring KVM's SRCU lock. In contrast to the
1950 * other cases which must be called after interrupts are enabled on the host.
1951 */
1952static int handle_fastpath_set_x2apic_icr_irqoff(struct kvm_vcpu *vcpu, u64 data)
1953{
Wanpeng Lie1be9ac2020-03-26 10:20:01 +08001954 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(vcpu->arch.apic))
1955 return 1;
1956
1957 if (((data & APIC_SHORT_MASK) == APIC_DEST_NOSHORT) &&
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001958 ((data & APIC_DEST_MASK) == APIC_DEST_PHYSICAL) &&
Wanpeng Li4064a4c2020-04-02 16:20:26 +08001959 ((data & APIC_MODE_MASK) == APIC_DM_FIXED) &&
1960 ((u32)(data >> 32) != X2APIC_BROADCAST)) {
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001961
Wanpeng Lid5361672020-03-26 10:20:02 +08001962 data &= ~(1 << 12);
1963 kvm_apic_send_ipi(vcpu->arch.apic, (u32)data, (u32)(data >> 32));
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001964 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR2, (u32)(data >> 32));
Wanpeng Lid5361672020-03-26 10:20:02 +08001965 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR, (u32)data);
1966 trace_kvm_apic_write(APIC_ICR, (u32)data);
1967 return 0;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001968 }
1969
1970 return 1;
1971}
1972
Wanpeng Liae95f562020-04-28 14:23:28 +08001973static int handle_fastpath_set_tscdeadline(struct kvm_vcpu *vcpu, u64 data)
1974{
1975 if (!kvm_can_use_hv_timer(vcpu))
1976 return 1;
1977
1978 kvm_set_lapic_tscdeadline_msr(vcpu, data);
1979 return 0;
1980}
1981
Wanpeng Li404d5d72020-04-28 14:23:25 +08001982fastpath_t handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001983{
1984 u32 msr = kvm_rcx_read(vcpu);
Wanpeng Li8a1038d2020-03-26 10:20:00 +08001985 u64 data;
Wanpeng Li404d5d72020-04-28 14:23:25 +08001986 fastpath_t ret = EXIT_FASTPATH_NONE;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001987
1988 switch (msr) {
1989 case APIC_BASE_MSR + (APIC_ICR >> 4):
Wanpeng Li8a1038d2020-03-26 10:20:00 +08001990 data = kvm_read_edx_eax(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08001991 if (!handle_fastpath_set_x2apic_icr_irqoff(vcpu, data)) {
1992 kvm_skip_emulated_instruction(vcpu);
1993 ret = EXIT_FASTPATH_EXIT_HANDLED;
Haiwei Li80bc97f2020-05-18 09:31:38 +08001994 }
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001995 break;
Dave Hansen09141ec2020-03-05 09:47:06 -08001996 case MSR_IA32_TSC_DEADLINE:
Wanpeng Liae95f562020-04-28 14:23:28 +08001997 data = kvm_read_edx_eax(vcpu);
1998 if (!handle_fastpath_set_tscdeadline(vcpu, data)) {
1999 kvm_skip_emulated_instruction(vcpu);
2000 ret = EXIT_FASTPATH_REENTER_GUEST;
2001 }
2002 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002003 default:
Wanpeng Li404d5d72020-04-28 14:23:25 +08002004 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002005 }
2006
Wanpeng Li404d5d72020-04-28 14:23:25 +08002007 if (ret != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002008 trace_kvm_msr_write(msr, data);
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002009
Wanpeng Li404d5d72020-04-28 14:23:25 +08002010 return ret;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002011}
2012EXPORT_SYMBOL_GPL(handle_fastpath_set_msr_irqoff);
2013
2014/*
Carsten Otte313a3dc2007-10-11 19:16:52 +02002015 * Adapt set_msr() to msr_io()'s calling convention
2016 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002017static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2018{
Peter Xu6abe9c12020-06-22 18:04:41 -04002019 return kvm_get_msr_ignored_check(vcpu, index, data, true);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002020}
2021
Carsten Otte313a3dc2007-10-11 19:16:52 +02002022static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2023{
Peter Xu6abe9c12020-06-22 18:04:41 -04002024 return kvm_set_msr_ignored_check(vcpu, index, *data, true);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002025}
2026
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002027#ifdef CONFIG_X86_64
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002028struct pvclock_clock {
2029 int vclock_mode;
2030 u64 cycle_last;
2031 u64 mask;
2032 u32 mult;
2033 u32 shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002034 u64 base_cycles;
2035 u64 offset;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002036};
2037
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002038struct pvclock_gtod_data {
2039 seqcount_t seq;
2040
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002041 struct pvclock_clock clock; /* extract of a clocksource struct */
2042 struct pvclock_clock raw_clock; /* extract of a clocksource struct */
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002043
Paolo Bonzini917f9472020-01-22 14:32:20 +01002044 ktime_t offs_boot;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002045 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002046};
2047
2048static struct pvclock_gtod_data pvclock_gtod_data;
2049
2050static void update_pvclock_gtod(struct timekeeper *tk)
2051{
2052 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
2053
2054 write_seqcount_begin(&vdata->seq);
2055
2056 /* copy pvclock gtod data */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002057 vdata->clock.vclock_mode = tk->tkr_mono.clock->vdso_clock_mode;
Peter Zijlstra876e7882015-03-19 10:09:06 +01002058 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
2059 vdata->clock.mask = tk->tkr_mono.mask;
2060 vdata->clock.mult = tk->tkr_mono.mult;
2061 vdata->clock.shift = tk->tkr_mono.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002062 vdata->clock.base_cycles = tk->tkr_mono.xtime_nsec;
2063 vdata->clock.offset = tk->tkr_mono.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002064
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002065 vdata->raw_clock.vclock_mode = tk->tkr_raw.clock->vdso_clock_mode;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002066 vdata->raw_clock.cycle_last = tk->tkr_raw.cycle_last;
2067 vdata->raw_clock.mask = tk->tkr_raw.mask;
2068 vdata->raw_clock.mult = tk->tkr_raw.mult;
2069 vdata->raw_clock.shift = tk->tkr_raw.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002070 vdata->raw_clock.base_cycles = tk->tkr_raw.xtime_nsec;
2071 vdata->raw_clock.offset = tk->tkr_raw.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002072
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002073 vdata->wall_time_sec = tk->xtime_sec;
2074
Paolo Bonzini917f9472020-01-22 14:32:20 +01002075 vdata->offs_boot = tk->offs_boot;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002076
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002077 write_seqcount_end(&vdata->seq);
2078}
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002079
2080static s64 get_kvmclock_base_ns(void)
2081{
2082 /* Count up from boot time, but with the frequency of the raw clock. */
2083 return ktime_to_ns(ktime_add(ktime_get_raw(), pvclock_gtod_data.offs_boot));
2084}
2085#else
2086static s64 get_kvmclock_base_ns(void)
2087{
2088 /* Master clock not used, so we can just use CLOCK_BOOTTIME. */
2089 return ktime_get_boottime_ns();
2090}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002091#endif
2092
Joao Martins629b5342018-06-28 15:06:43 -04002093void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock, int sec_hi_ofs)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002094{
Avi Kivity9ed3c442010-05-04 15:00:37 +03002095 int version;
2096 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002097 struct pvclock_wall_clock wc;
Joao Martins629b5342018-06-28 15:06:43 -04002098 u32 wc_sec_hi;
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002099 u64 wall_nsec;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002100
2101 if (!wall_clock)
2102 return;
2103
Avi Kivity9ed3c442010-05-04 15:00:37 +03002104 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
2105 if (r)
2106 return;
2107
2108 if (version & 1)
2109 ++version; /* first time write, random junk */
2110
2111 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002112
Nicholas Krause1dab1342015-12-30 13:08:46 -05002113 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
2114 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002115
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002116 /*
2117 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10002118 * system time (updated by kvm_guest_time_update below) to the
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002119 * wall clock specified here. We do the reverse here.
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002120 */
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002121 wall_nsec = ktime_get_real_ns() - get_kvmclock_ns(kvm);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002122
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002123 wc.nsec = do_div(wall_nsec, 1000000000);
2124 wc.sec = (u32)wall_nsec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002125 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002126
2127 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
2128
Joao Martins629b5342018-06-28 15:06:43 -04002129 if (sec_hi_ofs) {
2130 wc_sec_hi = wall_nsec >> 32;
2131 kvm_write_guest(kvm, wall_clock + sec_hi_ofs,
2132 &wc_sec_hi, sizeof(wc_sec_hi));
2133 }
2134
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002135 version++;
2136 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002137}
2138
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002139static void kvm_write_system_time(struct kvm_vcpu *vcpu, gpa_t system_time,
2140 bool old_msr, bool host_initiated)
2141{
2142 struct kvm_arch *ka = &vcpu->kvm->arch;
2143
2144 if (vcpu->vcpu_id == 0 && !host_initiated) {
Oliver Upton1e293d12020-10-27 16:10:43 -07002145 if (ka->boot_vcpu_runs_old_kvmclock != old_msr)
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002146 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2147
2148 ka->boot_vcpu_runs_old_kvmclock = old_msr;
2149 }
2150
2151 vcpu->arch.time = system_time;
2152 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
2153
2154 /* we verify if the enable bit is set... */
2155 vcpu->arch.pv_time_enabled = false;
2156 if (!(system_time & 1))
2157 return;
2158
2159 if (!kvm_gfn_to_hva_cache_init(vcpu->kvm,
2160 &vcpu->arch.pv_time, system_time & ~1ULL,
2161 sizeof(struct pvclock_vcpu_time_info)))
2162 vcpu->arch.pv_time_enabled = true;
2163
2164 return;
2165}
2166
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002167static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
2168{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01002169 do_shl32_div32(dividend, divisor);
2170 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002171}
2172
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002173static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002174 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002175{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002176 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002177 int32_t shift = 0;
2178 uint64_t tps64;
2179 uint32_t tps32;
2180
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002181 tps64 = base_hz;
2182 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02002183 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002184 tps64 >>= 1;
2185 shift--;
2186 }
2187
2188 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02002189 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
2190 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002191 scaled64 >>= 1;
2192 else
2193 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002194 shift++;
2195 }
2196
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002197 *pshift = shift;
2198 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002199}
2200
Marcelo Tosattid8281992012-11-27 23:29:01 -02002201#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002202static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002203#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002204
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002205static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08002206static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002207
Zachary Amsdencc578282012-02-03 15:43:50 -02002208static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10002209{
Zachary Amsdencc578282012-02-03 15:43:50 -02002210 u64 v = (u64)khz * (1000000 + ppm);
2211 do_div(v, 1000000);
2212 return v;
2213}
2214
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002215static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier);
2216
Haozhong Zhang381d5852015-10-20 15:39:04 +08002217static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
2218{
2219 u64 ratio;
2220
2221 /* Guest TSC same frequency as host TSC? */
2222 if (!scale) {
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002223 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002224 return 0;
2225 }
2226
2227 /* TSC scaling supported? */
2228 if (!kvm_has_tsc_control) {
2229 if (user_tsc_khz > tsc_khz) {
2230 vcpu->arch.tsc_catchup = 1;
2231 vcpu->arch.tsc_always_catchup = 1;
2232 return 0;
2233 } else {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002234 pr_warn_ratelimited("user requested TSC rate below hardware speed\n");
Haozhong Zhang381d5852015-10-20 15:39:04 +08002235 return -1;
2236 }
2237 }
2238
2239 /* TSC scaling required - calculate ratio */
2240 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
2241 user_tsc_khz, tsc_khz);
2242
2243 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002244 pr_warn_ratelimited("Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
2245 user_tsc_khz);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002246 return -1;
2247 }
2248
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002249 kvm_vcpu_write_tsc_multiplier(vcpu, ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002250 return 0;
2251}
2252
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002253static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02002254{
2255 u32 thresh_lo, thresh_hi;
2256 int use_scaling = 0;
2257
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002258 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002259 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08002260 /* set tsc_scaling_ratio to a safe value */
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002261 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002262 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08002263 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002264
Zachary Amsdenc2855452010-09-18 14:38:15 -10002265 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002266 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02002267 &vcpu->arch.virtual_tsc_shift,
2268 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002269 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02002270
2271 /*
2272 * Compute the variation in TSC rate which is acceptable
2273 * within the range of tolerance and decide if the
2274 * rate being applied is within that bounds of the hardware
2275 * rate. If so, no scaling or compensation need be done.
2276 */
2277 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
2278 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002279 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
2280 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 -02002281 use_scaling = 1;
2282 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002283 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002284}
2285
2286static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
2287{
Zachary Amsdene26101b2012-02-03 15:43:57 -02002288 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02002289 vcpu->arch.virtual_tsc_mult,
2290 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002291 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002292 return tsc;
2293}
2294
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002295static inline int gtod_is_based_on_tsc(int mode)
2296{
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002297 return mode == VDSO_CLOCKMODE_TSC || mode == VDSO_CLOCKMODE_HVCLOCK;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002298}
2299
Fengguang Wu69b00492015-01-19 22:33:39 +08002300static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002301{
2302#ifdef CONFIG_X86_64
2303 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002304 struct kvm_arch *ka = &vcpu->kvm->arch;
2305 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2306
2307 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2308 atomic_read(&vcpu->kvm->online_vcpus));
2309
Marcelo Tosatti7f187922014-11-04 21:30:44 -02002310 /*
2311 * Once the masterclock is enabled, always perform request in
2312 * order to update it.
2313 *
2314 * In order to enable masterclock, the host clocksource must be TSC
2315 * and the vcpus need to have matched TSCs. When that happens,
2316 * perform request to enable masterclock.
2317 */
2318 if (ka->use_master_clock ||
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002319 (gtod_is_based_on_tsc(gtod->clock.vclock_mode) && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002320 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2321
2322 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
2323 atomic_read(&vcpu->kvm->online_vcpus),
2324 ka->use_master_clock, gtod->clock.vclock_mode);
2325#endif
2326}
2327
Haozhong Zhang35181e82015-10-20 15:39:03 +08002328/*
2329 * Multiply tsc by a fixed point number represented by ratio.
2330 *
2331 * The most significant 64-N bits (mult) of ratio represent the
2332 * integral part of the fixed point number; the remaining N bits
2333 * (frac) represent the fractional part, ie. ratio represents a fixed
2334 * point number (mult + frac * 2^(-N)).
2335 *
2336 * N equals to kvm_tsc_scaling_ratio_frac_bits.
2337 */
2338static inline u64 __scale_tsc(u64 ratio, u64 tsc)
2339{
2340 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
2341}
2342
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002343u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc, u64 ratio)
Haozhong Zhang35181e82015-10-20 15:39:03 +08002344{
2345 u64 _tsc = tsc;
Haozhong Zhang35181e82015-10-20 15:39:03 +08002346
2347 if (ratio != kvm_default_tsc_scaling_ratio)
2348 _tsc = __scale_tsc(ratio, tsc);
2349
2350 return _tsc;
2351}
2352EXPORT_SYMBOL_GPL(kvm_scale_tsc);
2353
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002354static u64 kvm_compute_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
Haozhong Zhang07c14192015-10-20 15:39:05 +08002355{
2356 u64 tsc;
2357
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002358 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang07c14192015-10-20 15:39:05 +08002359
2360 return target_tsc - tsc;
2361}
2362
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002363u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
2364{
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002365 return vcpu->arch.l1_tsc_offset +
2366 kvm_scale_tsc(vcpu, host_tsc, vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002367}
2368EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
2369
Ilias Stamatis83150f22021-05-26 19:44:14 +01002370u64 kvm_calc_nested_tsc_offset(u64 l1_offset, u64 l2_offset, u64 l2_multiplier)
2371{
2372 u64 nested_offset;
2373
2374 if (l2_multiplier == kvm_default_tsc_scaling_ratio)
2375 nested_offset = l1_offset;
2376 else
2377 nested_offset = mul_s64_u64_shr((s64) l1_offset, l2_multiplier,
2378 kvm_tsc_scaling_ratio_frac_bits);
2379
2380 nested_offset += l2_offset;
2381 return nested_offset;
2382}
2383EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_offset);
2384
2385u64 kvm_calc_nested_tsc_multiplier(u64 l1_multiplier, u64 l2_multiplier)
2386{
2387 if (l2_multiplier != kvm_default_tsc_scaling_ratio)
2388 return mul_u64_u64_shr(l1_multiplier, l2_multiplier,
2389 kvm_tsc_scaling_ratio_frac_bits);
2390
2391 return l1_multiplier;
2392}
2393EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_multiplier);
2394
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002395static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 l1_offset)
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002396{
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002397 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2398 vcpu->arch.l1_tsc_offset,
2399 l1_offset);
2400
2401 vcpu->arch.l1_tsc_offset = l1_offset;
2402
2403 /*
2404 * If we are here because L1 chose not to trap WRMSR to TSC then
2405 * according to the spec this should set L1's TSC (as opposed to
2406 * setting L1's offset for L2).
2407 */
2408 if (is_guest_mode(vcpu))
2409 vcpu->arch.tsc_offset = kvm_calc_nested_tsc_offset(
2410 l1_offset,
2411 static_call(kvm_x86_get_l2_tsc_offset)(vcpu),
2412 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2413 else
2414 vcpu->arch.tsc_offset = l1_offset;
2415
2416 static_call(kvm_x86_write_tsc_offset)(vcpu, vcpu->arch.tsc_offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002417}
2418
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002419static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier)
2420{
2421 vcpu->arch.l1_tsc_scaling_ratio = l1_multiplier;
2422
2423 /* Userspace is changing the multiplier while L2 is active */
2424 if (is_guest_mode(vcpu))
2425 vcpu->arch.tsc_scaling_ratio = kvm_calc_nested_tsc_multiplier(
2426 l1_multiplier,
2427 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2428 else
2429 vcpu->arch.tsc_scaling_ratio = l1_multiplier;
2430
2431 if (kvm_has_tsc_control)
2432 static_call(kvm_x86_write_tsc_multiplier)(
2433 vcpu, vcpu->arch.tsc_scaling_ratio);
2434}
2435
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002436static inline bool kvm_check_tsc_unstable(void)
2437{
2438#ifdef CONFIG_X86_64
2439 /*
2440 * TSC is marked unstable when we're running on Hyper-V,
2441 * 'TSC page' clocksource is good.
2442 */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002443 if (pvclock_gtod_data.clock.vclock_mode == VDSO_CLOCKMODE_HVCLOCK)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002444 return false;
2445#endif
2446 return check_tsc_unstable();
2447}
2448
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002449static void kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 data)
Zachary Amsden99e3e302010-08-19 22:07:17 -10002450{
2451 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002452 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002453 unsigned long flags;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002454 bool matched;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002455 bool already_matched;
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002456 bool synchronizing = false;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002457
Jan Kiszka038f8c12011-02-04 10:49:11 +01002458 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002459 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002460 ns = get_kvmclock_base_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002461 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002462
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002463 if (vcpu->arch.virtual_tsc_khz) {
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002464 if (data == 0) {
Denis Plotnikovbd8fab32017-04-07 12:09:53 +03002465 /*
2466 * detection of vcpu initialization -- need to sync
2467 * with other vCPUs. This particularly helps to keep
2468 * kvm_clock stable after CPU hotplug
2469 */
2470 synchronizing = true;
2471 } else {
2472 u64 tsc_exp = kvm->arch.last_tsc_write +
2473 nsec_to_cycles(vcpu, elapsed);
2474 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
2475 /*
2476 * Special case: TSC write with a small delta (1 second)
2477 * of virtual cycle time against real time is
2478 * interpreted as an attempt to synchronize the CPU.
2479 */
2480 synchronizing = data < tsc_exp + tsc_hz &&
2481 data + tsc_hz > tsc_exp;
2482 }
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002483 }
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002484
2485 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002486 * For a reliable TSC, we can match TSC offsets, and for an unstable
2487 * TSC, we add elapsed time in this computation. We could let the
2488 * compensation code attempt to catch up if we fall behind, but
2489 * it's better to try to match offsets from the beginning.
2490 */
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002491 if (synchronizing &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002492 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002493 if (!kvm_check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02002494 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002495 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01002496 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002497 data += delta;
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002498 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002499 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002500 matched = true;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002501 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002502 } else {
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
Guo Chao4a969982012-06-28 15:17:27 +08002508 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02002509 *
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 = data;
2515 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002516 matched = false;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002517 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02002518
2519 /*
2520 * We also track th most recent recorded KHZ, write and time to
2521 * allow the matching interval to be extended at each write.
2522 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002523 kvm->arch.last_tsc_nsec = ns;
2524 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002525 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002526
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002527 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02002528
2529 /* Keep track of which generation this VCPU has synchronized to */
2530 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
2531 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
2532 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
2533
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002534 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002535 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002536
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002537 spin_lock_irqsave(&kvm->arch.pvclock_gtod_sync_lock, flags);
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002538 if (!matched) {
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002539 kvm->arch.nr_vcpus_matched_tsc = 0;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002540 } else if (!already_matched) {
2541 kvm->arch.nr_vcpus_matched_tsc++;
2542 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002543
2544 kvm_track_tsc_matching(vcpu);
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002545 spin_unlock_irqrestore(&kvm->arch.pvclock_gtod_sync_lock, flags);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002546}
Zachary Amsdene26101b2012-02-03 15:43:57 -02002547
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002548static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
2549 s64 adjustment)
2550{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07002551 u64 tsc_offset = vcpu->arch.l1_tsc_offset;
Leonid Shatz326e7422018-11-06 12:14:25 +02002552 kvm_vcpu_write_tsc_offset(vcpu, tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002553}
2554
2555static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
2556{
Ilias Stamatis805d7052021-05-26 19:44:09 +01002557 if (vcpu->arch.l1_tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002558 WARN_ON(adjustment < 0);
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002559 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment,
2560 vcpu->arch.l1_tsc_scaling_ratio);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01002561 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002562}
2563
Marcelo Tosattid8281992012-11-27 23:29:01 -02002564#ifdef CONFIG_X86_64
2565
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002566static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002567{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002568 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02002569 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002570
2571 if (likely(ret >= last))
2572 return ret;
2573
2574 /*
2575 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08002576 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02002577 * very likely) and there's a data dependence, so force GCC
2578 * to generate a branch instead. I don't barrier() because
2579 * we don't actually need a barrier, and if this function
2580 * ever gets inlined it will generate worse code.
2581 */
2582 asm volatile ("");
2583 return last;
2584}
2585
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002586static inline u64 vgettsc(struct pvclock_clock *clock, u64 *tsc_timestamp,
2587 int *mode)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002588{
2589 long v;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002590 u64 tsc_pg_val;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002591
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002592 switch (clock->vclock_mode) {
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002593 case VDSO_CLOCKMODE_HVCLOCK:
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002594 tsc_pg_val = hv_read_tsc_page_tsc(hv_get_tsc_page(),
2595 tsc_timestamp);
2596 if (tsc_pg_val != U64_MAX) {
2597 /* TSC page valid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002598 *mode = VDSO_CLOCKMODE_HVCLOCK;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002599 v = (tsc_pg_val - clock->cycle_last) &
2600 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002601 } else {
2602 /* TSC page invalid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002603 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002604 }
2605 break;
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002606 case VDSO_CLOCKMODE_TSC:
2607 *mode = VDSO_CLOCKMODE_TSC;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002608 *tsc_timestamp = read_tsc();
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002609 v = (*tsc_timestamp - clock->cycle_last) &
2610 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002611 break;
2612 default:
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002613 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002614 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002615
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002616 if (*mode == VDSO_CLOCKMODE_NONE)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002617 *tsc_timestamp = v = 0;
2618
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002619 return v * clock->mult;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002620}
2621
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002622static int do_monotonic_raw(s64 *t, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002623{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002624 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002625 unsigned long seq;
2626 int mode;
2627 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002628
Marcelo Tosattid8281992012-11-27 23:29:01 -02002629 do {
2630 seq = read_seqcount_begin(&gtod->seq);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002631 ns = gtod->raw_clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002632 ns += vgettsc(&gtod->raw_clock, tsc_timestamp, &mode);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002633 ns >>= gtod->raw_clock.shift;
2634 ns += ktime_to_ns(ktime_add(gtod->raw_clock.offset, gtod->offs_boot));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002635 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002636 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002637
2638 return mode;
2639}
2640
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002641static int do_realtime(struct timespec64 *ts, u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002642{
2643 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2644 unsigned long seq;
2645 int mode;
2646 u64 ns;
2647
2648 do {
2649 seq = read_seqcount_begin(&gtod->seq);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002650 ts->tv_sec = gtod->wall_time_sec;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002651 ns = gtod->clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002652 ns += vgettsc(&gtod->clock, tsc_timestamp, &mode);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002653 ns >>= gtod->clock.shift;
2654 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
2655
2656 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
2657 ts->tv_nsec = ns;
2658
2659 return mode;
2660}
2661
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002662/* returns true if host is using TSC based clocksource */
2663static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002664{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002665 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002666 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosattid8281992012-11-27 23:29:01 -02002667 return false;
2668
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002669 return gtod_is_based_on_tsc(do_monotonic_raw(kernel_ns,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002670 tsc_timestamp));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002671}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002672
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002673/* returns true if host is using TSC based clocksource */
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002674static bool kvm_get_walltime_and_clockread(struct timespec64 *ts,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002675 u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002676{
2677 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002678 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002679 return false;
2680
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002681 return gtod_is_based_on_tsc(do_realtime(ts, tsc_timestamp));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002682}
Marcelo Tosattid8281992012-11-27 23:29:01 -02002683#endif
2684
2685/*
2686 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002687 * Assuming a stable TSC across physical CPUS, and a stable TSC
2688 * across virtual CPUs, the following condition is possible.
2689 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02002690 * CPUs at the next numbered event.
2691 *
2692 * "timespecX" represents host monotonic time. "tscX" represents
2693 * RDTSC value.
2694 *
2695 * VCPU0 on CPU0 | VCPU1 on CPU1
2696 *
2697 * 1. read timespec0,tsc0
2698 * 2. | timespec1 = timespec0 + N
2699 * | tsc1 = tsc0 + M
2700 * 3. transition to guest | transition to guest
2701 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
2702 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
2703 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
2704 *
2705 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
2706 *
2707 * - ret0 < ret1
2708 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
2709 * ...
2710 * - 0 < N - M => M < N
2711 *
2712 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
2713 * always the case (the difference between two distinct xtime instances
2714 * might be smaller then the difference between corresponding TSC reads,
2715 * when updating guest vcpus pvclock areas).
2716 *
2717 * To avoid that problem, do not allow visibility of distinct
2718 * system_timestamp/tsc_timestamp values simultaneously: use a master
2719 * copy of host monotonic time values. Update that master copy
2720 * in lockstep.
2721 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002722 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02002723 *
2724 */
2725
2726static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
2727{
2728#ifdef CONFIG_X86_64
2729 struct kvm_arch *ka = &kvm->arch;
2730 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002731 bool host_tsc_clocksource, vcpus_matched;
2732
2733 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2734 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002735
2736 /*
2737 * If the host uses TSC clock, then passthrough TSC as stable
2738 * to the guest.
2739 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002740 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02002741 &ka->master_kernel_ns,
2742 &ka->master_cycle_now);
2743
Marcelo Tosatti16a96022014-05-14 12:43:24 -03002744 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Ladi Proseka826faf2017-06-26 09:56:43 +02002745 && !ka->backwards_tsc_observed
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002746 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002747
Marcelo Tosattid8281992012-11-27 23:29:01 -02002748 if (ka->use_master_clock)
2749 atomic_set(&kvm_guest_has_master_clock, 1);
2750
2751 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002752 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
2753 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002754#endif
2755}
2756
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002757void kvm_make_mclock_inprogress_request(struct kvm *kvm)
2758{
2759 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
2760}
2761
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002762static void kvm_gen_update_masterclock(struct kvm *kvm)
2763{
2764#ifdef CONFIG_X86_64
2765 int i;
2766 struct kvm_vcpu *vcpu;
2767 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002768 unsigned long flags;
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002769
Vitaly Kuznetsove880c6e2021-03-16 15:37:34 +01002770 kvm_hv_invalidate_tsc_page(kvm);
2771
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002772 kvm_make_mclock_inprogress_request(kvm);
Paolo Bonzinic2c647f2021-03-25 14:05:11 -04002773
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002774 /* no guest entries from this point */
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002775 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002776 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002777 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002778
2779 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002780 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002781
2782 /* guest entries allowed */
2783 kvm_for_each_vcpu(i, vcpu, kvm)
Radim Krčmář72875d82017-04-26 22:32:19 +02002784 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002785#endif
2786}
2787
Marcelo Tosattie891a322017-04-17 12:51:37 -03002788u64 get_kvmclock_ns(struct kvm *kvm)
Paolo Bonzini108b2492016-09-01 14:21:03 +02002789{
Paolo Bonzini108b2492016-09-01 14:21:03 +02002790 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002791 struct pvclock_vcpu_time_info hv_clock;
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002792 unsigned long flags;
Wanpeng Lie2c22062017-05-11 18:12:05 -07002793 u64 ret;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002794
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002795 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
Paolo Bonzini8b953442016-11-16 18:31:30 +01002796 if (!ka->use_master_clock) {
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002797 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002798 return get_kvmclock_base_ns() + ka->kvmclock_offset;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002799 }
2800
Paolo Bonzini8b953442016-11-16 18:31:30 +01002801 hv_clock.tsc_timestamp = ka->master_cycle_now;
2802 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002803 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Paolo Bonzini8b953442016-11-16 18:31:30 +01002804
Wanpeng Lie2c22062017-05-11 18:12:05 -07002805 /* both __this_cpu_read() and rdtsc() should be on the same cpu */
2806 get_cpu();
2807
Wanpeng Lie70b57a2017-11-20 14:55:05 -08002808 if (__this_cpu_read(cpu_tsc_khz)) {
2809 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
2810 &hv_clock.tsc_shift,
2811 &hv_clock.tsc_to_system_mul);
2812 ret = __pvclock_read_cycles(&hv_clock, rdtsc());
2813 } else
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002814 ret = get_kvmclock_base_ns() + ka->kvmclock_offset;
Wanpeng Lie2c22062017-05-11 18:12:05 -07002815
2816 put_cpu();
2817
2818 return ret;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002819}
2820
Joao Martinsaa096aa2019-02-01 13:01:45 -05002821static void kvm_setup_pvclock_page(struct kvm_vcpu *v,
2822 struct gfn_to_hva_cache *cache,
2823 unsigned int offset)
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002824{
2825 struct kvm_vcpu_arch *vcpu = &v->arch;
2826 struct pvclock_vcpu_time_info guest_hv_clock;
2827
Joao Martinsaa096aa2019-02-01 13:01:45 -05002828 if (unlikely(kvm_read_guest_offset_cached(v->kvm, cache,
2829 &guest_hv_clock, offset, sizeof(guest_hv_clock))))
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002830 return;
2831
2832 /* This VCPU is paused, but it's legal for a guest to read another
2833 * VCPU's kvmclock, so we really have to follow the specification where
2834 * it says that version is odd if data is being modified, and even after
2835 * it is consistent.
2836 *
2837 * Version field updates must be kept separate. This is because
2838 * kvm_write_guest_cached might use a "rep movs" instruction, and
2839 * writes within a string instruction are weakly ordered. So there
2840 * are three writes overall.
2841 *
2842 * As a small optimization, only write the version field in the first
2843 * and third write. The vcpu->pv_time cache is still valid, because the
2844 * version field is the first in the struct.
2845 */
2846 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
2847
Liran Alon51c4b8b2017-11-05 16:11:30 +02002848 if (guest_hv_clock.version & 1)
2849 ++guest_hv_clock.version; /* first time write, random junk */
2850
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002851 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002852 kvm_write_guest_offset_cached(v->kvm, cache,
2853 &vcpu->hv_clock, offset,
2854 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002855
2856 smp_wmb();
2857
2858 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
2859 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
2860
2861 if (vcpu->pvclock_set_guest_stopped_request) {
2862 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
2863 vcpu->pvclock_set_guest_stopped_request = false;
2864 }
2865
2866 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
2867
Joao Martinsaa096aa2019-02-01 13:01:45 -05002868 kvm_write_guest_offset_cached(v->kvm, cache,
2869 &vcpu->hv_clock, offset,
2870 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002871
2872 smp_wmb();
2873
2874 vcpu->hv_clock.version++;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002875 kvm_write_guest_offset_cached(v->kvm, cache,
2876 &vcpu->hv_clock, offset,
2877 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002878}
2879
Zachary Amsden34c238a2010-09-18 14:38:14 -10002880static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002881{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002882 unsigned long flags, tgt_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002883 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002884 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02002885 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002886 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002887 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002888 bool use_master_clock;
2889
2890 kernel_ns = 0;
2891 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002892
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002893 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02002894 * If the host uses TSC clock, then passthrough TSC as stable
2895 * to the guest.
2896 */
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002897 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002898 use_master_clock = ka->use_master_clock;
2899 if (use_master_clock) {
2900 host_tsc = ka->master_cycle_now;
2901 kernel_ns = ka->master_kernel_ns;
2902 }
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002903 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002904
2905 /* Keep irq disabled to prevent changes to the clock */
2906 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002907 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
2908 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002909 local_irq_restore(flags);
2910 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
2911 return 1;
2912 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002913 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002914 host_tsc = rdtsc();
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002915 kernel_ns = get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02002916 }
2917
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002918 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002919
2920 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10002921 * We may have to catch up the TSC to match elapsed wall clock
2922 * time for two reasons, even if kvmclock is used.
2923 * 1) CPU could have been running below the maximum TSC rate
2924 * 2) Broken TSC compensation resets the base at each VCPU
2925 * entry to avoid unknown leaps of TSC even when running
2926 * again on the same CPU. This may cause apparent elapsed
2927 * time to disappear, and the guest to stand still or run
2928 * very slowly.
2929 */
2930 if (vcpu->tsc_catchup) {
2931 u64 tsc = compute_guest_tsc(v, kernel_ns);
2932 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02002933 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002934 tsc_timestamp = tsc;
2935 }
2936 }
2937
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002938 local_irq_restore(flags);
2939
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002940 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10002941
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002942 if (kvm_has_tsc_control)
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002943 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz,
2944 v->arch.l1_tsc_scaling_ratio);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002945
2946 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002947 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002948 &vcpu->hv_clock.tsc_shift,
2949 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002950 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10002951 }
2952
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002953 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10002954 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10002955 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002956
Marcelo Tosattid8281992012-11-27 23:29:01 -02002957 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002958 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002959 if (use_master_clock)
2960 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
2961
Marcelo Tosatti78c03372012-11-27 23:28:47 -02002962 vcpu->hv_clock.flags = pvclock_flags;
2963
Paolo Bonzini095cf552016-02-08 12:54:12 +01002964 if (vcpu->pv_time_enabled)
Joao Martinsaa096aa2019-02-01 13:01:45 -05002965 kvm_setup_pvclock_page(v, &vcpu->pv_time, 0);
2966 if (vcpu->xen.vcpu_info_set)
2967 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_info_cache,
2968 offsetof(struct compat_vcpu_info, time));
Joao Martinsf2340cd2018-07-23 11:20:57 -04002969 if (vcpu->xen.vcpu_time_info_set)
2970 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_time_info_cache, 0);
Paolo Bonzini095cf552016-02-08 12:54:12 +01002971 if (v == kvm_get_vcpu(v->kvm, 0))
2972 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10002973 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002974}
2975
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002976/*
2977 * kvmclock updates which are isolated to a given vcpu, such as
2978 * vcpu->cpu migration, should not allow system_timestamp from
2979 * the rest of the vcpus to remain static. Otherwise ntp frequency
2980 * correction applies to one vcpu's system_timestamp but not
2981 * the others.
2982 *
2983 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01002984 * We need to rate-limit these requests though, as they can
2985 * considerably slow guests that have a large number of vcpus.
2986 * The time for a remote vcpu to update its kvmclock is bound
2987 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002988 */
2989
Andrew Jones7e44e442014-02-28 12:52:54 +01002990#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
2991
2992static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002993{
2994 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01002995 struct delayed_work *dwork = to_delayed_work(work);
2996 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
2997 kvmclock_update_work);
2998 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002999 struct kvm_vcpu *vcpu;
3000
3001 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003002 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003003 kvm_vcpu_kick(vcpu);
3004 }
3005}
3006
Andrew Jones7e44e442014-02-28 12:52:54 +01003007static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
3008{
3009 struct kvm *kvm = v->kvm;
3010
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003011 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01003012 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
3013 KVMCLOCK_UPDATE_DELAY);
3014}
3015
Andrew Jones332967a2014-02-28 12:52:55 +01003016#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
3017
3018static void kvmclock_sync_fn(struct work_struct *work)
3019{
3020 struct delayed_work *dwork = to_delayed_work(work);
3021 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3022 kvmclock_sync_work);
3023 struct kvm *kvm = container_of(ka, struct kvm, arch);
3024
Marcelo Tosatti630994b2015-05-12 22:42:04 -03003025 if (!kvmclock_periodic_sync)
3026 return;
3027
Andrew Jones332967a2014-02-28 12:52:55 +01003028 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
3029 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
3030 KVMCLOCK_SYNC_PERIOD);
3031}
3032
Borislav Petkov191c8132019-04-18 18:32:50 +02003033/*
3034 * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP.
3035 */
3036static bool can_set_mci_status(struct kvm_vcpu *vcpu)
3037{
3038 /* McStatusWrEn enabled? */
Sean Christopherson23493d02020-03-04 17:34:33 -08003039 if (guest_cpuid_is_amd_or_hygon(vcpu))
Borislav Petkov191c8132019-04-18 18:32:50 +02003040 return !!(vcpu->arch.msr_hwcr & BIT_ULL(18));
3041
3042 return false;
3043}
3044
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003045static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Huang Ying890ca9a2009-05-11 16:48:15 +08003046{
3047 u64 mcg_cap = vcpu->arch.mcg_cap;
3048 unsigned bank_num = mcg_cap & 0xff;
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003049 u32 msr = msr_info->index;
3050 u64 data = msr_info->data;
Huang Ying890ca9a2009-05-11 16:48:15 +08003051
3052 switch (msr) {
3053 case MSR_IA32_MCG_STATUS:
3054 vcpu->arch.mcg_status = data;
3055 break;
3056 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003057 if (!(mcg_cap & MCG_CTL_P) &&
3058 (data || !msr_info->host_initiated))
Huang Ying890ca9a2009-05-11 16:48:15 +08003059 return 1;
3060 if (data != 0 && data != ~(u64)0)
Paolo Bonzini44883f02018-07-26 13:01:52 +02003061 return 1;
Huang Ying890ca9a2009-05-11 16:48:15 +08003062 vcpu->arch.mcg_ctl = data;
3063 break;
3064 default:
3065 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003066 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003067 u32 offset = array_index_nospec(
3068 msr - MSR_IA32_MC0_CTL,
3069 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3070
Andre Przywara114be422010-03-24 17:46:42 +01003071 /* only 0 or all 1s can be written to IA32_MCi_CTL
3072 * some Linux kernels though clear bit 10 in bank 4 to
3073 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
3074 * this to avoid an uncatched #GP in the guest
3075 */
Huang Ying890ca9a2009-05-11 16:48:15 +08003076 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01003077 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08003078 return -1;
Borislav Petkov191c8132019-04-18 18:32:50 +02003079
3080 /* MCi_STATUS */
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003081 if (!msr_info->host_initiated &&
Borislav Petkov191c8132019-04-18 18:32:50 +02003082 (offset & 0x3) == 1 && data != 0) {
3083 if (!can_set_mci_status(vcpu))
3084 return -1;
3085 }
3086
Huang Ying890ca9a2009-05-11 16:48:15 +08003087 vcpu->arch.mce_banks[offset] = data;
3088 break;
3089 }
3090 return 1;
3091 }
3092 return 0;
3093}
3094
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003095static inline bool kvm_pv_async_pf_enabled(struct kvm_vcpu *vcpu)
3096{
3097 u64 mask = KVM_ASYNC_PF_ENABLED | KVM_ASYNC_PF_DELIVERY_AS_INT;
3098
3099 return (vcpu->arch.apf.msr_en_val & mask) == mask;
3100}
3101
Gleb Natapov344d9582010-10-14 11:22:50 +02003102static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
3103{
3104 gpa_t gpa = data & ~0x3f;
3105
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003106 /* Bits 4:5 are reserved, Should be zero */
3107 if (data & 0x30)
Gleb Natapov344d9582010-10-14 11:22:50 +02003108 return 1;
3109
Oliver Upton66570e92020-08-18 15:24:28 +00003110 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_VMEXIT) &&
3111 (data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT))
3112 return 1;
3113
3114 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT) &&
3115 (data & KVM_ASYNC_PF_DELIVERY_AS_INT))
3116 return 1;
3117
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003118 if (!lapic_in_kernel(vcpu))
Vitaly Kuznetsovd831de12020-09-11 11:31:47 +02003119 return data ? 1 : 0;
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003120
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003121 vcpu->arch.apf.msr_en_val = data;
Gleb Natapov344d9582010-10-14 11:22:50 +02003122
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003123 if (!kvm_pv_async_pf_enabled(vcpu)) {
Gleb Natapov344d9582010-10-14 11:22:50 +02003124 kvm_clear_async_pf_completion_queue(vcpu);
3125 kvm_async_pf_hash_reset(vcpu);
3126 return 0;
3127 }
3128
Paolo Bonzini4e335d92017-05-02 16:20:18 +02003129 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003130 sizeof(u64)))
Gleb Natapov344d9582010-10-14 11:22:50 +02003131 return 1;
3132
Gleb Natapov6adba522010-10-14 11:22:55 +02003133 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Wanpeng Li52a5c152017-07-13 18:30:42 -07003134 vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003135
Gleb Natapov344d9582010-10-14 11:22:50 +02003136 kvm_async_pf_wakeup_all(vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003137
3138 return 0;
3139}
3140
3141static int kvm_pv_enable_async_pf_int(struct kvm_vcpu *vcpu, u64 data)
3142{
3143 /* Bits 8-63 are reserved */
3144 if (data >> 8)
3145 return 1;
3146
3147 if (!lapic_in_kernel(vcpu))
3148 return 1;
3149
3150 vcpu->arch.apf.msr_int_val = data;
3151
3152 vcpu->arch.apf.vec = data & KVM_ASYNC_PF_VEC_MASK;
3153
Gleb Natapov344d9582010-10-14 11:22:50 +02003154 return 0;
3155}
3156
Glauber Costa12f9a482011-02-01 14:16:40 -05003157static void kvmclock_reset(struct kvm_vcpu *vcpu)
3158{
Andy Honig0b794592013-02-20 14:48:10 -08003159 vcpu->arch.pv_time_enabled = false;
Paolo Bonzini49dedf02019-10-10 12:49:22 +02003160 vcpu->arch.time = 0;
Glauber Costa12f9a482011-02-01 14:16:40 -05003161}
3162
Sean Christopherson77809382020-03-20 14:28:18 -07003163static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003164{
3165 ++vcpu->stat.tlb_flush;
Jason Baronb36464772021-01-14 22:27:56 -05003166 static_call(kvm_x86_tlb_flush_all)(vcpu);
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003167}
3168
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003169static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
3170{
3171 ++vcpu->stat.tlb_flush;
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003172
3173 if (!tdp_enabled) {
3174 /*
3175 * A TLB flush on behalf of the guest is equivalent to
3176 * INVPCID(all), toggling CR4.PGE, etc., which requires
3177 * a forced sync of the shadow page tables. Unload the
3178 * entire MMU here and the subsequent load will sync the
3179 * shadow page tables, and also flush the TLB.
3180 */
3181 kvm_mmu_unload(vcpu);
3182 return;
3183 }
3184
Jason Baronb36464772021-01-14 22:27:56 -05003185 static_call(kvm_x86_tlb_flush_guest)(vcpu);
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003186}
3187
Glauber Costac9aaa892011-07-11 15:28:14 -04003188static void record_steal_time(struct kvm_vcpu *vcpu)
3189{
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003190 struct kvm_host_map map;
3191 struct kvm_steal_time *st;
3192
David Woodhouse30b5c852021-03-01 12:53:09 +00003193 if (kvm_xen_msr_enabled(vcpu->kvm)) {
3194 kvm_xen_runstate_set_running(vcpu);
3195 return;
3196 }
3197
Glauber Costac9aaa892011-07-11 15:28:14 -04003198 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
3199 return;
3200
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003201 /* -EAGAIN is returned in atomic context so we can just return. */
3202 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT,
3203 &map, &vcpu->arch.st.cache, false))
Glauber Costac9aaa892011-07-11 15:28:14 -04003204 return;
3205
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003206 st = map.hva +
3207 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
3208
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003209 /*
3210 * Doing a TLB flush here, on the guest's behalf, can avoid
3211 * expensive IPIs.
3212 */
Oliver Upton66570e92020-08-18 15:24:28 +00003213 if (guest_pv_has(vcpu, KVM_FEATURE_PV_TLB_FLUSH)) {
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003214 u8 st_preempted = xchg(&st->preempted, 0);
3215
Oliver Upton66570e92020-08-18 15:24:28 +00003216 trace_kvm_pv_tlb_flush(vcpu->vcpu_id,
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003217 st_preempted & KVM_VCPU_FLUSH_TLB);
3218 if (st_preempted & KVM_VCPU_FLUSH_TLB)
Oliver Upton66570e92020-08-18 15:24:28 +00003219 kvm_vcpu_flush_tlb_guest(vcpu);
Wanpeng Li1eff0ad2021-05-18 05:00:33 -07003220 } else {
3221 st->preempted = 0;
Oliver Upton66570e92020-08-18 15:24:28 +00003222 }
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003223
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00003224 vcpu->arch.st.preempted = 0;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003225
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003226 if (st->version & 1)
3227 st->version += 1; /* first time write, random junk */
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003228
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003229 st->version += 1;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003230
3231 smp_wmb();
3232
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003233 st->steal += current->sched_info.run_delay -
Liang Chenc54cdf12016-03-16 19:33:16 +08003234 vcpu->arch.st.last_steal;
3235 vcpu->arch.st.last_steal = current->sched_info.run_delay;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003236
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003237 smp_wmb();
3238
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003239 st->version += 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003240
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003241 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, false);
Glauber Costac9aaa892011-07-11 15:28:14 -04003242}
3243
Will Auld8fe8ab42012-11-29 12:42:12 -08003244int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003245{
Gleb Natapov57537852012-01-15 14:17:22 +02003246 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08003247 u32 msr = msr_info->index;
3248 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02003249
Joao Martins1232f8e2018-06-13 06:10:37 -04003250 if (msr && msr == vcpu->kvm->arch.xen_hvm_config.msr)
Joao Martins23200b72018-06-13 09:55:44 -04003251 return kvm_xen_write_hypercall_page(vcpu, data);
Joao Martins1232f8e2018-06-13 06:10:37 -04003252
Carsten Otte15c4a642007-10-30 18:44:17 +01003253 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01003254 case MSR_AMD64_NB_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003255 case MSR_IA32_UCODE_WRITE:
3256 case MSR_VM_HSAVE_PA:
3257 case MSR_AMD64_PATCH_LOADER:
3258 case MSR_AMD64_BU_CFG2:
Ladi Prosek405a3532017-04-06 15:22:20 +02003259 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003260 case MSR_F15H_EX_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003261 break;
3262
Wanpeng Li518e7b92018-02-28 14:03:31 +08003263 case MSR_IA32_UCODE_REV:
3264 if (msr_info->host_initiated)
3265 vcpu->arch.microcode_version = data;
3266 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003267 case MSR_IA32_ARCH_CAPABILITIES:
3268 if (!msr_info->host_initiated)
3269 return 1;
3270 vcpu->arch.arch_capabilities = data;
3271 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003272 case MSR_IA32_PERF_CAPABILITIES: {
3273 struct kvm_msr_entry msr_ent = {.index = msr, .data = 0};
3274
3275 if (!msr_info->host_initiated)
3276 return 1;
3277 if (guest_cpuid_has(vcpu, X86_FEATURE_PDCM) && kvm_get_msr_feature(&msr_ent))
3278 return 1;
3279 if (data & ~msr_ent.data)
3280 return 1;
3281
3282 vcpu->arch.perf_capabilities = data;
3283
3284 return 0;
3285 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003286 case MSR_EFER:
Sean Christopherson11988492019-04-02 08:19:15 -07003287 return set_efer(vcpu, msr_info);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003288 case MSR_K7_HWCR:
3289 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01003290 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08003291 data &= ~(u64)0x8; /* ignore TLB cache disable */
Borislav Petkov191c8132019-04-18 18:32:50 +02003292
3293 /* Handle McStatusWrEn */
3294 if (data == BIT_ULL(18)) {
3295 vcpu->arch.msr_hwcr = data;
3296 } else if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003297 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
3298 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003299 return 1;
3300 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003301 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003302 case MSR_FAM10H_MMIO_CONF_BASE:
3303 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003304 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
3305 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003306 return 1;
3307 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003308 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03003309 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003310 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003311 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01003312 return kvm_set_apic_base(vcpu, msr_info);
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003313 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03003314 return kvm_x2apic_msr_write(vcpu, msr, data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003315 case MSR_IA32_TSC_DEADLINE:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003316 kvm_set_lapic_tscdeadline_msr(vcpu, data);
3317 break;
Will Auldba904632012-11-29 12:42:50 -08003318 case MSR_IA32_TSC_ADJUST:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003319 if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) {
Will Auldba904632012-11-29 12:42:50 -08003320 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06003321 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08003322 adjust_tsc_offset_guest(vcpu, adj);
Will Auldba904632012-11-29 12:42:50 -08003323 }
3324 vcpu->arch.ia32_tsc_adjust_msr = data;
3325 }
3326 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003327 case MSR_IA32_MISC_ENABLE:
Wanpeng Li511a85562019-05-21 14:06:54 +08003328 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) &&
3329 ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) {
3330 if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3))
3331 return 1;
3332 vcpu->arch.ia32_misc_enable_msr = data;
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08003333 kvm_update_cpuid_runtime(vcpu);
Wanpeng Li511a85562019-05-21 14:06:54 +08003334 } else {
3335 vcpu->arch.ia32_misc_enable_msr = data;
3336 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003337 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003338 case MSR_IA32_SMBASE:
3339 if (!msr_info->host_initiated)
3340 return 1;
3341 vcpu->arch.smbase = data;
3342 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003343 case MSR_IA32_POWER_CTL:
3344 vcpu->arch.msr_ia32_power_ctl = data;
3345 break;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003346 case MSR_IA32_TSC:
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003347 if (msr_info->host_initiated) {
3348 kvm_synchronize_tsc(vcpu, data);
3349 } else {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01003350 u64 adj = kvm_compute_l1_tsc_offset(vcpu, data) - vcpu->arch.l1_tsc_offset;
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003351 adjust_tsc_offset_guest(vcpu, adj);
3352 vcpu->arch.ia32_tsc_adjust_msr += adj;
3353 }
Paolo Bonzinidd259932018-04-13 11:38:35 +02003354 break;
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003355 case MSR_IA32_XSS:
3356 if (!msr_info->host_initiated &&
3357 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3358 return 1;
3359 /*
Sean Christophersona1bead22020-03-02 15:57:00 -08003360 * KVM supports exposing PT to the guest, but does not support
3361 * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than
3362 * XSAVES/XRSTORS to save/restore PT MSRs.
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003363 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01003364 if (data & ~supported_xss)
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003365 return 1;
3366 vcpu->arch.ia32_xss = data;
3367 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003368 case MSR_SMI_COUNT:
3369 if (!msr_info->host_initiated)
3370 return 1;
3371 vcpu->arch.smi_count = data;
3372 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003373 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003374 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3375 return 1;
3376
Joao Martins629b5342018-06-28 15:06:43 -04003377 vcpu->kvm->arch.wall_clock = data;
3378 kvm_write_wall_clock(vcpu->kvm, data, 0);
Oliver Upton66570e92020-08-18 15:24:28 +00003379 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003380 case MSR_KVM_WALL_CLOCK:
Oliver Upton66570e92020-08-18 15:24:28 +00003381 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3382 return 1;
3383
Joao Martins629b5342018-06-28 15:06:43 -04003384 vcpu->kvm->arch.wall_clock = data;
3385 kvm_write_wall_clock(vcpu->kvm, data, 0);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003386 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003387 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003388 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3389 return 1;
3390
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003391 kvm_write_system_time(vcpu, data, false, msr_info->host_initiated);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003392 break;
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003393 case MSR_KVM_SYSTEM_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003394 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3395 return 1;
3396
3397 kvm_write_system_time(vcpu, data, true, msr_info->host_initiated);
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003398 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003399 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003400 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3401 return 1;
3402
Gleb Natapov344d9582010-10-14 11:22:50 +02003403 if (kvm_pv_enable_async_pf(vcpu, data))
3404 return 1;
3405 break;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003406 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton66570e92020-08-18 15:24:28 +00003407 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3408 return 1;
3409
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003410 if (kvm_pv_enable_async_pf_int(vcpu, data))
3411 return 1;
3412 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003413 case MSR_KVM_ASYNC_PF_ACK:
Oliver Upton66570e92020-08-18 15:24:28 +00003414 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3415 return 1;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003416 if (data & 0x1) {
3417 vcpu->arch.apf.pageready_pending = false;
3418 kvm_check_async_pf_completion(vcpu);
3419 }
3420 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003421 case MSR_KVM_STEAL_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003422 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3423 return 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003424
3425 if (unlikely(!sched_info_on()))
3426 return 1;
3427
3428 if (data & KVM_STEAL_RESERVED_MASK)
3429 return 1;
3430
Glauber Costac9aaa892011-07-11 15:28:14 -04003431 vcpu->arch.st.msr_val = data;
3432
3433 if (!(data & KVM_MSR_ENABLED))
3434 break;
3435
Glauber Costac9aaa892011-07-11 15:28:14 -04003436 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
3437
3438 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003439 case MSR_KVM_PV_EOI_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003440 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3441 return 1;
3442
Ladi Prosek72bbf932018-10-16 18:49:59 +02003443 if (kvm_lapic_enable_pv_eoi(vcpu, data, sizeof(u8)))
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003444 return 1;
3445 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003446
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003447 case MSR_KVM_POLL_CONTROL:
Oliver Upton66570e92020-08-18 15:24:28 +00003448 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3449 return 1;
3450
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003451 /* only enable bit supported */
3452 if (data & (-1ULL << 1))
3453 return 1;
3454
3455 vcpu->arch.msr_kvm_poll_control = data;
3456 break;
3457
Huang Ying890ca9a2009-05-11 16:48:15 +08003458 case MSR_IA32_MCG_CTL:
3459 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003460 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003461 return set_msr_mce(vcpu, msr_info);
Andre Przywara71db6022009-06-12 22:01:29 +02003462
Wei Huang6912ac32015-06-12 01:34:56 -04003463 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3464 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003465 pr = true;
3466 fallthrough;
Wei Huang6912ac32015-06-12 01:34:56 -04003467 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3468 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003469 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003470 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02003471
3472 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03003473 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
3474 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02003475 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003476 case MSR_K7_CLK_CTL:
3477 /*
3478 * Ignore all writes to this no longer documented MSR.
3479 * Writes are only relevant for old K7 processors,
3480 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08003481 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003482 * affected processor models on the command line, hence
3483 * the need to ignore the workaround.
3484 */
3485 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003486 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003487 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3488 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003489 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3490 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003491 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003492 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3493 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3494 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003495 return kvm_hv_set_msr_common(vcpu, msr, data,
3496 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003497 case MSR_IA32_BBL_CR_CTL3:
3498 /* Drop writes to this legacy MSR -- see rdmsr
3499 * counterpart for further detail.
3500 */
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02003501 if (report_ignored_msrs)
3502 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
3503 msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05003504 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003505 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003506 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003507 return 1;
3508 vcpu->arch.osvw.length = data;
3509 break;
3510 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003511 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003512 return 1;
3513 vcpu->arch.osvw.status = data;
3514 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003515 case MSR_PLATFORM_INFO:
3516 if (!msr_info->host_initiated ||
Kyle Hueydb2336a2017-03-20 01:16:28 -07003517 (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) &&
3518 cpuid_fault_enabled(vcpu)))
3519 return 1;
3520 vcpu->arch.msr_platform_info = data;
3521 break;
3522 case MSR_MISC_FEATURES_ENABLES:
3523 if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT ||
3524 (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT &&
3525 !supports_cpuid_fault(vcpu)))
3526 return 1;
3527 vcpu->arch.msr_misc_features_enables = data;
3528 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003529 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003530 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003531 return kvm_pmu_set_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003532 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003533 }
3534 return 0;
3535}
3536EXPORT_SYMBOL_GPL(kvm_set_msr_common);
3537
Paolo Bonzini44883f02018-07-26 13:01:52 +02003538static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003539{
3540 u64 data;
3541 u64 mcg_cap = vcpu->arch.mcg_cap;
3542 unsigned bank_num = mcg_cap & 0xff;
3543
3544 switch (msr) {
3545 case MSR_IA32_P5_MC_ADDR:
3546 case MSR_IA32_P5_MC_TYPE:
3547 data = 0;
3548 break;
3549 case MSR_IA32_MCG_CAP:
3550 data = vcpu->arch.mcg_cap;
3551 break;
3552 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003553 if (!(mcg_cap & MCG_CTL_P) && !host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003554 return 1;
3555 data = vcpu->arch.mcg_ctl;
3556 break;
3557 case MSR_IA32_MCG_STATUS:
3558 data = vcpu->arch.mcg_status;
3559 break;
3560 default:
3561 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003562 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003563 u32 offset = array_index_nospec(
3564 msr - MSR_IA32_MC0_CTL,
3565 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3566
Huang Ying890ca9a2009-05-11 16:48:15 +08003567 data = vcpu->arch.mce_banks[offset];
3568 break;
3569 }
3570 return 1;
3571 }
3572 *pdata = data;
3573 return 0;
3574}
3575
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003576int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003577{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003578 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01003579 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01003580 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02003581 case MSR_IA32_LASTBRANCHFROMIP:
3582 case MSR_IA32_LASTBRANCHTOIP:
3583 case MSR_IA32_LASTINTFROMIP:
3584 case MSR_IA32_LASTINTTOIP:
Brijesh Singh059e5c32021-04-27 06:16:36 -05003585 case MSR_AMD64_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02003586 case MSR_K8_TSEG_ADDR:
3587 case MSR_K8_TSEG_MASK:
Avi Kivity61a6bd62008-12-29 17:32:28 +02003588 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02003589 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02003590 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003591 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003592 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03003593 case MSR_IA32_PERF_CTL:
Ladi Prosek405a3532017-04-06 15:22:20 +02003594 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003595 case MSR_F15H_EX_CFG:
Venkatesh Srinivas2ca1a062020-04-16 11:42:54 -07003596 /*
3597 * Intel Sandy Bridge CPUs must support the RAPL (running average power
3598 * limit) MSRs. Just return 0, as we do not want to expose the host
3599 * data here. Do not conditionalize this on CPUID, as KVM does not do
3600 * so for existing CPU-specific MSRs.
3601 */
3602 case MSR_RAPL_POWER_UNIT:
3603 case MSR_PP0_ENERGY_STATUS: /* Power plane 0 (core) */
3604 case MSR_PP1_ENERGY_STATUS: /* Power plane 1 (graphics uncore) */
3605 case MSR_PKG_ENERGY_STATUS: /* Total package */
3606 case MSR_DRAM_ENERGY_STATUS: /* DRAM controller */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003607 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01003608 break;
Janakarajan Natarajanc51eb522018-02-05 13:24:52 -06003609 case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5:
Vitaly Kuznetsovc28fa562021-03-29 14:48:04 +02003610 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
3611 return kvm_pmu_get_msr(vcpu, msr_info);
3612 if (!msr_info->host_initiated)
3613 return 1;
3614 msr_info->data = 0;
3615 break;
Wei Huang6912ac32015-06-12 01:34:56 -04003616 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3617 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3618 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
3619 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003620 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003621 return kvm_pmu_get_msr(vcpu, msr_info);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003622 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02003623 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003624 case MSR_IA32_UCODE_REV:
Wanpeng Li518e7b92018-02-28 14:03:31 +08003625 msr_info->data = vcpu->arch.microcode_version;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003626 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003627 case MSR_IA32_ARCH_CAPABILITIES:
3628 if (!msr_info->host_initiated &&
3629 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3630 return 1;
3631 msr_info->data = vcpu->arch.arch_capabilities;
3632 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003633 case MSR_IA32_PERF_CAPABILITIES:
3634 if (!msr_info->host_initiated &&
3635 !guest_cpuid_has(vcpu, X86_FEATURE_PDCM))
3636 return 1;
3637 msr_info->data = vcpu->arch.perf_capabilities;
3638 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003639 case MSR_IA32_POWER_CTL:
3640 msr_info->data = vcpu->arch.msr_ia32_power_ctl;
3641 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003642 case MSR_IA32_TSC: {
3643 /*
3644 * Intel SDM states that MSR_IA32_TSC read adds the TSC offset
3645 * even when not intercepted. AMD manual doesn't explicitly
3646 * state this but appears to behave the same.
3647 *
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003648 * On userspace reads and writes, however, we unconditionally
Paolo Bonzinic0623f52020-10-21 18:05:58 -04003649 * return L1's TSC value to ensure backwards-compatible
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003650 * behavior for migration.
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003651 */
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003652 u64 offset, ratio;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003653
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003654 if (msr_info->host_initiated) {
3655 offset = vcpu->arch.l1_tsc_offset;
3656 ratio = vcpu->arch.l1_tsc_scaling_ratio;
3657 } else {
3658 offset = vcpu->arch.tsc_offset;
3659 ratio = vcpu->arch.tsc_scaling_ratio;
3660 }
3661
3662 msr_info->data = kvm_scale_tsc(vcpu, rdtsc(), ratio) + offset;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003663 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003664 }
Avi Kivity9ba075a2008-05-26 20:06:35 +03003665 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03003666 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003667 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003668 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003669 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01003670 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02003671 /*
3672 * MSR_EBC_FREQUENCY_ID
3673 * Conservative value valid for even the basic CPU models.
3674 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
3675 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
3676 * and 266MHz for model 3, or 4. Set Core Clock
3677 * Frequency to System Bus Frequency Ratio to 1 (bits
3678 * 31:24) even though these are only valid for CPU
3679 * models > 2, however guests may end up dividing or
3680 * multiplying by zero otherwise.
3681 */
3682 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003683 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02003684 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003685 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003686 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01003687 break;
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003688 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003689 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003690 case MSR_IA32_TSC_DEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003691 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003692 break;
Will Auldba904632012-11-29 12:42:50 -08003693 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003694 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08003695 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003696 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003697 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01003698 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003699 case MSR_IA32_SMBASE:
3700 if (!msr_info->host_initiated)
3701 return 1;
3702 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01003703 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003704 case MSR_SMI_COUNT:
3705 msr_info->data = vcpu->arch.smi_count;
3706 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003707 case MSR_IA32_PERF_STATUS:
3708 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003709 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003710 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08003711 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01003712 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003713 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003714 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01003715 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003716 case MSR_KVM_WALL_CLOCK:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003717 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3718 return 1;
3719
3720 msr_info->data = vcpu->kvm->arch.wall_clock;
3721 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003722 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003723 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3724 return 1;
3725
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003726 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003727 break;
3728 case MSR_KVM_SYSTEM_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003729 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3730 return 1;
3731
3732 msr_info->data = vcpu->arch.time;
3733 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003734 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003735 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3736 return 1;
3737
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003738 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003739 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003740 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003741 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3742 return 1;
3743
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003744 msr_info->data = vcpu->arch.apf.msr_en_val;
3745 break;
3746 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003747 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3748 return 1;
3749
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003750 msr_info->data = vcpu->arch.apf.msr_int_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02003751 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003752 case MSR_KVM_ASYNC_PF_ACK:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003753 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3754 return 1;
3755
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003756 msr_info->data = 0;
3757 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003758 case MSR_KVM_STEAL_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003759 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3760 return 1;
3761
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003762 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04003763 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003764 case MSR_KVM_PV_EOI_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003765 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3766 return 1;
3767
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003768 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003769 break;
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003770 case MSR_KVM_POLL_CONTROL:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003771 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3772 return 1;
3773
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003774 msr_info->data = vcpu->arch.msr_kvm_poll_control;
3775 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003776 case MSR_IA32_P5_MC_ADDR:
3777 case MSR_IA32_P5_MC_TYPE:
3778 case MSR_IA32_MCG_CAP:
3779 case MSR_IA32_MCG_CTL:
3780 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003781 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003782 return get_msr_mce(vcpu, msr_info->index, &msr_info->data,
3783 msr_info->host_initiated);
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003784 case MSR_IA32_XSS:
3785 if (!msr_info->host_initiated &&
3786 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3787 return 1;
3788 msr_info->data = vcpu->arch.ia32_xss;
3789 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003790 case MSR_K7_CLK_CTL:
3791 /*
3792 * Provide expected ramp-up count for K7. All other
3793 * are set to zero, indicating minimum divisors for
3794 * every field.
3795 *
3796 * This prevents guest kernels on AMD host with CPU
3797 * type 6, model 8 and higher from exploding due to
3798 * the rdmsr failing.
3799 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003800 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003801 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003802 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003803 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3804 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003805 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3806 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003807 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003808 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3809 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3810 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine83d5882015-07-03 15:01:34 +03003811 return kvm_hv_get_msr_common(vcpu,
Paolo Bonzini44883f02018-07-26 13:01:52 +02003812 msr_info->index, &msr_info->data,
3813 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003814 case MSR_IA32_BBL_CR_CTL3:
3815 /* This legacy MSR exists but isn't fully documented in current
3816 * silicon. It is however accessed by winxp in very narrow
3817 * scenarios where it sets bit #19, itself documented as
3818 * a "reserved" bit. Best effort attempt to source coherent
3819 * read data here should the balance of the register be
3820 * interpreted by the guest:
3821 *
3822 * L2 cache control register 3: 64GB range, 256KB size,
3823 * enabled, latency 0x1, configured
3824 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003825 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05003826 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003827 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003828 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003829 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003830 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003831 break;
3832 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003833 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003834 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003835 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003836 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003837 case MSR_PLATFORM_INFO:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07003838 if (!msr_info->host_initiated &&
3839 !vcpu->kvm->arch.guest_can_read_msr_platform_info)
3840 return 1;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003841 msr_info->data = vcpu->arch.msr_platform_info;
3842 break;
3843 case MSR_MISC_FEATURES_ENABLES:
3844 msr_info->data = vcpu->arch.msr_misc_features_enables;
3845 break;
Borislav Petkov191c8132019-04-18 18:32:50 +02003846 case MSR_K7_HWCR:
3847 msr_info->data = vcpu->arch.msr_hwcr;
3848 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003849 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003850 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003851 return kvm_pmu_get_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003852 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003853 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003854 return 0;
3855}
3856EXPORT_SYMBOL_GPL(kvm_get_msr_common);
3857
Carsten Otte313a3dc2007-10-11 19:16:52 +02003858/*
3859 * Read or write a bunch of msrs. All parameters are kernel addresses.
3860 *
3861 * @return number of msrs set successfully.
3862 */
3863static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
3864 struct kvm_msr_entry *entries,
3865 int (*do_msr)(struct kvm_vcpu *vcpu,
3866 unsigned index, u64 *data))
3867{
Tom Lendacky801e4592018-02-21 13:39:51 -06003868 int i;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003869
Carsten Otte313a3dc2007-10-11 19:16:52 +02003870 for (i = 0; i < msrs->nmsrs; ++i)
3871 if (do_msr(vcpu, entries[i].index, &entries[i].data))
3872 break;
3873
Carsten Otte313a3dc2007-10-11 19:16:52 +02003874 return i;
3875}
3876
3877/*
3878 * Read or write a bunch of msrs. Parameters are user addresses.
3879 *
3880 * @return number of msrs set successfully.
3881 */
3882static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
3883 int (*do_msr)(struct kvm_vcpu *vcpu,
3884 unsigned index, u64 *data),
3885 int writeback)
3886{
3887 struct kvm_msrs msrs;
3888 struct kvm_msr_entry *entries;
3889 int r, n;
3890 unsigned size;
3891
3892 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003893 if (copy_from_user(&msrs, user_msrs, sizeof(msrs)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003894 goto out;
3895
3896 r = -E2BIG;
3897 if (msrs.nmsrs >= MAX_IO_MSRS)
3898 goto out;
3899
Carsten Otte313a3dc2007-10-11 19:16:52 +02003900 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003901 entries = memdup_user(user_msrs->entries, size);
3902 if (IS_ERR(entries)) {
3903 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003904 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003905 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003906
3907 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
3908 if (r < 0)
3909 goto out_free;
3910
3911 r = -EFAULT;
3912 if (writeback && copy_to_user(user_msrs->entries, entries, size))
3913 goto out_free;
3914
3915 r = n;
3916
3917out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03003918 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003919out:
3920 return r;
3921}
3922
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003923static inline bool kvm_can_mwait_in_guest(void)
3924{
3925 return boot_cpu_has(X86_FEATURE_MWAIT) &&
KarimAllah Ahmed8e9b29b2018-04-11 11:16:03 +02003926 !boot_cpu_has_bug(X86_BUG_MONITOR) &&
3927 boot_cpu_has(X86_FEATURE_ARAT);
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003928}
3929
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02003930static int kvm_ioctl_get_supported_hv_cpuid(struct kvm_vcpu *vcpu,
3931 struct kvm_cpuid2 __user *cpuid_arg)
3932{
3933 struct kvm_cpuid2 cpuid;
3934 int r;
3935
3936 r = -EFAULT;
3937 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
3938 return r;
3939
3940 r = kvm_get_hv_cpuid(vcpu, &cpuid, cpuid_arg->entries);
3941 if (r)
3942 return r;
3943
3944 r = -EFAULT;
3945 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
3946 return r;
3947
3948 return 0;
3949}
3950
Alexander Graf784aa3d2014-07-14 18:27:35 +02003951int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003952{
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003953 int r = 0;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003954
3955 switch (ext) {
3956 case KVM_CAP_IRQCHIP:
3957 case KVM_CAP_HLT:
3958 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003959 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02003960 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02003961 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01003962 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08003963 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05003964 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03003965 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03003966 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08003967 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003968 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02003969 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003970 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03003971 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003972 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04003973 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08003974 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003975 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003976 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02003977 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02003978 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003979 case KVM_CAP_HYPERV_SYNIC:
Roman Kaganefc479e2017-06-22 16:51:01 +03003980 case KVM_CAP_HYPERV_SYNIC2:
Roman Kagand3457c82017-07-14 17:13:20 +03003981 case KVM_CAP_HYPERV_VP_INDEX:
Roman Kaganfaeb7832018-02-01 16:48:32 +03003982 case KVM_CAP_HYPERV_EVENTFD:
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02003983 case KVM_CAP_HYPERV_TLBFLUSH:
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02003984 case KVM_CAP_HYPERV_SEND_IPI:
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01003985 case KVM_CAP_HYPERV_CPUID:
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02003986 case KVM_CAP_HYPERV_ENFORCE_CPUID:
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02003987 case KVM_CAP_SYS_HYPERV_CPUID:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08003988 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003989 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01003990 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003991 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02003992 case KVM_CAP_ASYNC_PF:
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +02003993 case KVM_CAP_ASYNC_PF_INT:
Joerg Roedel92a1f122011-03-25 09:44:51 +01003994 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003995 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08003996 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01003997 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05003998 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01003999 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03004000 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004001 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07004002 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004003 case KVM_CAP_IMMEDIATE_EXIT:
Eric Hankland66bb8a02019-07-10 18:25:15 -07004004 case KVM_CAP_PMU_EVENT_FILTER:
Tom Lendacky801e4592018-02-21 13:39:51 -06004005 case KVM_CAP_GET_MSR_FEATURES:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07004006 case KVM_CAP_MSR_PLATFORM_INFO:
Jim Mattsonc4f55192018-10-16 14:29:24 -07004007 case KVM_CAP_EXCEPTION_PAYLOAD:
Peter Xub9b27822020-05-05 11:47:50 -04004008 case KVM_CAP_SET_GUEST_DEBUG:
Jim Mattson1aa561b2020-06-03 16:56:21 -07004009 case KVM_CAP_LAST_CPU:
Alexander Graf1ae09952020-09-25 16:34:16 +02004010 case KVM_CAP_X86_USER_SPACE_MSR:
Alexander Graf1a1552542020-09-25 16:34:21 +02004011 case KVM_CAP_X86_MSR_FILTER:
Oliver Upton66570e92020-08-18 15:24:28 +00004012 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
Sean Christophersonfe7e9482021-04-12 16:21:43 +12004013#ifdef CONFIG_X86_SGX_KVM
4014 case KVM_CAP_SGX_ATTRIBUTE:
4015#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00004016 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
Maxim Levitsky6dba9402021-06-07 12:02:02 +03004017 case KVM_CAP_SREGS2:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004018 r = 1;
4019 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00004020 case KVM_CAP_EXIT_HYPERCALL:
4021 r = KVM_EXIT_HYPERCALL_VALID_MASK;
4022 break;
Maxim Levitsky7e582cc2021-04-01 16:54:45 +03004023 case KVM_CAP_SET_GUEST_DEBUG2:
4024 return KVM_GUESTDBG_VALID_MASK;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004025#ifdef CONFIG_KVM_XEN
Joao Martins23200b72018-06-13 09:55:44 -04004026 case KVM_CAP_XEN_HVM:
4027 r = KVM_XEN_HVM_CONFIG_HYPERCALL_MSR |
David Woodhouse8d4e7e82020-12-04 01:02:04 +00004028 KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL |
4029 KVM_XEN_HVM_CONFIG_SHARED_INFO;
David Woodhouse30b5c852021-03-01 12:53:09 +00004030 if (sched_info_on())
4031 r |= KVM_XEN_HVM_CONFIG_RUNSTATE;
Joao Martins23200b72018-06-13 09:55:44 -04004032 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004033#endif
Ken Hofsass01643c52018-01-31 16:03:36 -08004034 case KVM_CAP_SYNC_REGS:
4035 r = KVM_SYNC_X86_VALID_FIELDS;
4036 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004037 case KVM_CAP_ADJUST_CLOCK:
4038 r = KVM_CLOCK_TSC_STABLE;
4039 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004040 case KVM_CAP_X86_DISABLE_EXITS:
Wanpeng Lib5170062019-05-21 14:06:53 +08004041 r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE |
4042 KVM_X86_DISABLE_EXITS_CSTATE;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004043 if(kvm_can_mwait_in_guest())
4044 r |= KVM_X86_DISABLE_EXITS_MWAIT;
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02004045 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004046 case KVM_CAP_X86_SMM:
4047 /* SMBASE is usually relocated above 1M on modern chipsets,
4048 * and SMM handlers might indeed rely on 4G segment limits,
4049 * so do not report SMM to be available if real mode is
4050 * emulated via vm86 mode. Still, do not go to great lengths
4051 * to avoid userspace's usage of the feature, because it is a
4052 * fringe case that is not enabled except via specific settings
4053 * of the module parameters.
4054 */
Jason Baronb36464772021-01-14 22:27:56 -05004055 r = static_call(kvm_x86_has_emulated_msr)(kvm, MSR_IA32_SMBASE);
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004056 break;
Avi Kivity774ead32007-12-26 13:57:04 +02004057 case KVM_CAP_VAPIC:
Jason Baronb36464772021-01-14 22:27:56 -05004058 r = !static_call(kvm_x86_cpu_has_accelerated_tpr)();
Avi Kivity774ead32007-12-26 13:57:04 +02004059 break;
Avi Kivityf7252302008-02-20 11:53:16 +02004060 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03004061 r = KVM_SOFT_MAX_VCPUS;
4062 break;
4063 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02004064 r = KVM_MAX_VCPUS;
4065 break;
Thomas Hutha86cb412019-05-23 18:43:08 +02004066 case KVM_CAP_MAX_VCPU_ID:
4067 r = KVM_MAX_VCPU_ID;
4068 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03004069 case KVM_CAP_PV_MMU: /* obsolete */
4070 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05004071 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08004072 case KVM_CAP_MCE:
4073 r = KVM_MAX_MCE_BANKS;
4074 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004075 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02004076 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004077 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004078 case KVM_CAP_TSC_CONTROL:
4079 r = kvm_has_tsc_control;
4080 break;
Radim Krčmář371313132016-07-12 22:09:27 +02004081 case KVM_CAP_X2APIC_API:
4082 r = KVM_X2APIC_API_VALID_FLAGS;
4083 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004084 case KVM_CAP_NESTED_STATE:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004085 r = kvm_x86_ops.nested_ops->get_state ?
4086 kvm_x86_ops.nested_ops->get_state(NULL, NULL, 0) : 0;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004087 break;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004088 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004089 r = kvm_x86_ops.enable_direct_tlbflush != NULL;
Vitaly Kuznetsov5a0165f2019-08-28 09:59:05 +02004090 break;
4091 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004092 r = kvm_x86_ops.nested_ops->enable_evmcs != NULL;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004093 break;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02004094 case KVM_CAP_SMALLER_MAXPHYADDR:
4095 r = (int) allow_smaller_maxphyaddr;
4096 break;
Andrew Jones004a0122020-08-04 19:06:04 +02004097 case KVM_CAP_STEAL_TIME:
4098 r = sched_info_on();
4099 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004100 case KVM_CAP_X86_BUS_LOCK_EXIT:
4101 if (kvm_has_bus_lock_exit)
4102 r = KVM_BUS_LOCK_DETECTION_OFF |
4103 KVM_BUS_LOCK_DETECTION_EXIT;
4104 else
4105 r = 0;
4106 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004107 default:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004108 break;
4109 }
4110 return r;
4111
4112}
4113
Carsten Otte043405e2007-10-10 17:16:19 +02004114long kvm_arch_dev_ioctl(struct file *filp,
4115 unsigned int ioctl, unsigned long arg)
4116{
4117 void __user *argp = (void __user *)arg;
4118 long r;
4119
4120 switch (ioctl) {
4121 case KVM_GET_MSR_INDEX_LIST: {
4122 struct kvm_msr_list __user *user_msr_list = argp;
4123 struct kvm_msr_list msr_list;
4124 unsigned n;
4125
4126 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004127 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004128 goto out;
4129 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004130 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004131 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004132 goto out;
4133 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004134 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02004135 goto out;
4136 r = -EFAULT;
4137 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
4138 num_msrs_to_save * sizeof(u32)))
4139 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004140 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02004141 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004142 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02004143 goto out;
4144 r = 0;
4145 break;
4146 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004147 case KVM_GET_SUPPORTED_CPUID:
4148 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02004149 struct kvm_cpuid2 __user *cpuid_arg = argp;
4150 struct kvm_cpuid2 cpuid;
4151
4152 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004153 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004154 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004155
4156 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
4157 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02004158 if (r)
4159 goto out;
4160
4161 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004162 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004163 goto out;
4164 r = 0;
4165 break;
4166 }
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004167 case KVM_X86_GET_MCE_CAP_SUPPORTED:
Huang Ying890ca9a2009-05-11 16:48:15 +08004168 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004169 if (copy_to_user(argp, &kvm_mce_cap_supported,
4170 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004171 goto out;
4172 r = 0;
4173 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004174 case KVM_GET_MSR_FEATURE_INDEX_LIST: {
4175 struct kvm_msr_list __user *user_msr_list = argp;
4176 struct kvm_msr_list msr_list;
4177 unsigned int n;
4178
4179 r = -EFAULT;
4180 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
4181 goto out;
4182 n = msr_list.nmsrs;
4183 msr_list.nmsrs = num_msr_based_features;
4184 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
4185 goto out;
4186 r = -E2BIG;
4187 if (n < msr_list.nmsrs)
4188 goto out;
4189 r = -EFAULT;
4190 if (copy_to_user(user_msr_list->indices, &msr_based_features,
4191 num_msr_based_features * sizeof(u32)))
4192 goto out;
4193 r = 0;
4194 break;
4195 }
4196 case KVM_GET_MSRS:
4197 r = msr_io(NULL, argp, do_get_msr_feature, 1);
4198 break;
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004199 case KVM_GET_SUPPORTED_HV_CPUID:
4200 r = kvm_ioctl_get_supported_hv_cpuid(NULL, argp);
4201 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004202 default:
4203 r = -EINVAL;
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004204 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004205 }
4206out:
4207 return r;
4208}
4209
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004210static void wbinvd_ipi(void *garbage)
4211{
4212 wbinvd();
4213}
4214
4215static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
4216{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06004217 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004218}
4219
Carsten Otte313a3dc2007-10-11 19:16:52 +02004220void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
4221{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004222 /* Address WBINVD may be executed by guest */
4223 if (need_emulate_wbinvd(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05004224 if (static_call(kvm_x86_has_wbinvd_exit)())
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004225 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
4226 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
4227 smp_call_function_single(vcpu->cpu,
4228 wbinvd_ipi, NULL, 1);
4229 }
4230
Jason Baronb36464772021-01-14 22:27:56 -05004231 static_call(kvm_x86_vcpu_load)(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004232
Babu Moger37486132020-05-12 18:59:06 -05004233 /* Save host pkru register if supported */
4234 vcpu->arch.host_pkru = read_pkru();
4235
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004236 /* Apply any externally detected TSC adjustments (due to suspend) */
4237 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
4238 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
4239 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08004240 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004241 }
4242
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004243 if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02004244 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004245 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10004246 if (tsc_delta < 0)
4247 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07004248
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004249 if (kvm_check_tsc_unstable()) {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01004250 u64 offset = kvm_compute_l1_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02004251 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04004252 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004253 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10004254 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02004255
4256 if (kvm_lapic_hv_timer_in_use(vcpu))
4257 kvm_lapic_restart_hv_timer(vcpu);
4258
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02004259 /*
4260 * On a host with synchronized TSC, there is no need to update
4261 * kvmclock on vcpu->cpu migration
4262 */
4263 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03004264 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004265 if (vcpu->cpu != cpu)
Radim Krčmář1bd20092017-04-26 22:32:20 +02004266 kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10004267 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10004268 }
Glauber Costac9aaa892011-07-11 15:28:14 -04004269
Glauber Costac9aaa892011-07-11 15:28:14 -04004270 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004271}
4272
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004273static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
4274{
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004275 struct kvm_host_map map;
4276 struct kvm_steal_time *st;
4277
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004278 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
4279 return;
4280
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004281 if (vcpu->arch.st.preempted)
Boris Ostrovsky8c6de562019-10-30 19:01:31 +00004282 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004283
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004284 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT, &map,
4285 &vcpu->arch.st.cache, true))
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004286 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004287
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004288 st = map.hva +
4289 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
4290
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004291 st->preempted = vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004292
4293 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, true);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004294}
4295
Carsten Otte313a3dc2007-10-11 19:16:52 +02004296void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
4297{
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004298 int idx;
4299
Tom Lendackyf1c63662020-12-14 10:29:50 -05004300 if (vcpu->preempted && !vcpu->arch.guest_state_protected)
Jason Baronb36464772021-01-14 22:27:56 -05004301 vcpu->arch.preempted_in_kernel = !static_call(kvm_x86_get_cpl)(vcpu);
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004302
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004303 /*
4304 * Take the srcu lock as memslots will be accessed to check the gfn
4305 * cache generation against the memslots generation.
4306 */
4307 idx = srcu_read_lock(&vcpu->kvm->srcu);
David Woodhouse30b5c852021-03-01 12:53:09 +00004308 if (kvm_xen_msr_enabled(vcpu->kvm))
4309 kvm_xen_runstate_set_preempted(vcpu);
4310 else
4311 kvm_steal_time_set_preempted(vcpu);
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004312 srcu_read_unlock(&vcpu->kvm->srcu, idx);
David Woodhouse30b5c852021-03-01 12:53:09 +00004313
Jason Baronb36464772021-01-14 22:27:56 -05004314 static_call(kvm_x86_vcpu_put)(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004315 vcpu->arch.last_host_tsc = rdtsc();
Wanpeng Liefdab992017-12-13 10:46:40 +01004316 /*
Radim Krčmářf9dcf082018-10-23 16:31:38 +02004317 * If userspace has set any breakpoints or watchpoints, dr6 is restored
4318 * on every vmexit, but if not, we might have a stale dr6 from the
4319 * guest. do_debug expects dr6 to be cleared after it runs, do the same.
Wanpeng Liefdab992017-12-13 10:46:40 +01004320 */
Radim Krčmářf9dcf082018-10-23 16:31:38 +02004321 set_debugreg(0, 6);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004322}
4323
Carsten Otte313a3dc2007-10-11 19:16:52 +02004324static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
4325 struct kvm_lapic_state *s)
4326{
Liran Alonfa59cc02017-12-24 18:12:53 +02004327 if (vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05004328 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004329
Radim Krčmářa92e2542016-07-12 22:09:22 +02004330 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004331}
4332
4333static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
4334 struct kvm_lapic_state *s)
4335{
Radim Krčmářa92e2542016-07-12 22:09:22 +02004336 int r;
4337
4338 r = kvm_apic_set_state(vcpu, s);
4339 if (r)
4340 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03004341 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004342
4343 return 0;
4344}
4345
Matt Gingell127a4572015-11-17 17:32:05 +01004346static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
4347{
Paolo Bonzini71cc8492020-11-27 09:18:20 +01004348 /*
4349 * We can accept userspace's request for interrupt injection
4350 * as long as we have a place to store the interrupt number.
4351 * The actual injection will happen when the CPU is able to
4352 * deliver the interrupt.
4353 */
4354 if (kvm_cpu_has_extint(vcpu))
4355 return false;
4356
4357 /* Acknowledging ExtINT does not happen if LINT0 is masked. */
Matt Gingell127a4572015-11-17 17:32:05 +01004358 return (!lapic_in_kernel(vcpu) ||
4359 kvm_apic_accept_pic_intr(vcpu));
4360}
4361
Matt Gingell782d4222015-11-16 15:26:00 -08004362static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
4363{
4364 return kvm_arch_interrupt_allowed(vcpu) &&
Matt Gingell782d4222015-11-16 15:26:00 -08004365 kvm_cpu_accept_dm_intr(vcpu);
4366}
4367
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004368static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
4369 struct kvm_interrupt *irq)
4370{
Chen Gang02cdb502013-02-27 11:33:25 +08004371 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004372 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004373
4374 if (!irqchip_in_kernel(vcpu->kvm)) {
4375 kvm_queue_interrupt(vcpu, irq->irq, false);
4376 kvm_make_request(KVM_REQ_EVENT, vcpu);
4377 return 0;
4378 }
4379
4380 /*
4381 * With in-kernel LAPIC, we only use this to inject EXTINT, so
4382 * fail for in-kernel 8259.
4383 */
4384 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004385 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004386
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004387 if (vcpu->arch.pending_external_vector != -1)
4388 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004389
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004390 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08004391 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004392 return 0;
4393}
4394
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004395static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
4396{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004397 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004398
4399 return 0;
4400}
4401
Paolo Bonzinif0778252015-04-01 15:06:40 +02004402static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
4403{
Paolo Bonzini64d60672015-05-07 11:36:11 +02004404 kvm_make_request(KVM_REQ_SMI, vcpu);
4405
Paolo Bonzinif0778252015-04-01 15:06:40 +02004406 return 0;
4407}
4408
Avi Kivityb209749f2007-10-22 16:50:39 +02004409static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
4410 struct kvm_tpr_access_ctl *tac)
4411{
4412 if (tac->flags)
4413 return -EINVAL;
4414 vcpu->arch.tpr_access_reporting = !!tac->enabled;
4415 return 0;
4416}
4417
Huang Ying890ca9a2009-05-11 16:48:15 +08004418static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
4419 u64 mcg_cap)
4420{
4421 int r;
4422 unsigned bank_num = mcg_cap & 0xff, bank;
4423
4424 r = -EINVAL;
Jim Mattsonc4e0e4ab2020-05-11 15:56:16 -07004425 if (!bank_num || bank_num > KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08004426 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004427 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08004428 goto out;
4429 r = 0;
4430 vcpu->arch.mcg_cap = mcg_cap;
4431 /* Init IA32_MCG_CTL to all 1s */
4432 if (mcg_cap & MCG_CTL_P)
4433 vcpu->arch.mcg_ctl = ~(u64)0;
4434 /* Init IA32_MCi_CTL to all 1s */
4435 for (bank = 0; bank < bank_num; bank++)
4436 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004437
Jason Baronb36464772021-01-14 22:27:56 -05004438 static_call(kvm_x86_setup_mce)(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004439out:
4440 return r;
4441}
4442
4443static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
4444 struct kvm_x86_mce *mce)
4445{
4446 u64 mcg_cap = vcpu->arch.mcg_cap;
4447 unsigned bank_num = mcg_cap & 0xff;
4448 u64 *banks = vcpu->arch.mce_banks;
4449
4450 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
4451 return -EINVAL;
4452 /*
4453 * if IA32_MCG_CTL is not all 1s, the uncorrected error
4454 * reporting is disabled
4455 */
4456 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
4457 vcpu->arch.mcg_ctl != ~(u64)0)
4458 return 0;
4459 banks += 4 * mce->bank;
4460 /*
4461 * if IA32_MCi_CTL is not all 1s, the uncorrected error
4462 * reporting is disabled for the bank
4463 */
4464 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
4465 return 0;
4466 if (mce->status & MCI_STATUS_UC) {
4467 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02004468 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03004469 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004470 return 0;
4471 }
4472 if (banks[1] & MCI_STATUS_VAL)
4473 mce->status |= MCI_STATUS_OVER;
4474 banks[2] = mce->addr;
4475 banks[3] = mce->misc;
4476 vcpu->arch.mcg_status = mce->mcg_status;
4477 banks[1] = mce->status;
4478 kvm_queue_exception(vcpu, MC_VECTOR);
4479 } else if (!(banks[1] & MCI_STATUS_VAL)
4480 || !(banks[1] & MCI_STATUS_UC)) {
4481 if (banks[1] & MCI_STATUS_VAL)
4482 mce->status |= MCI_STATUS_OVER;
4483 banks[2] = mce->addr;
4484 banks[3] = mce->misc;
4485 banks[1] = mce->status;
4486 } else
4487 banks[1] |= MCI_STATUS_OVER;
4488 return 0;
4489}
4490
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004491static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
4492 struct kvm_vcpu_events *events)
4493{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004494 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004495
Jay Zhou1f7becf2021-01-18 16:47:20 +08004496 if (kvm_check_request(KVM_REQ_SMI, vcpu))
4497 process_smi(vcpu);
4498
Wanpeng Li664f8e22017-08-24 03:35:09 -07004499 /*
Oliver Uptona06230b2020-02-07 02:36:06 -08004500 * In guest mode, payload delivery should be deferred,
4501 * so that the L1 hypervisor can intercept #PF before
4502 * CR2 is modified (or intercept #DB before DR6 is
4503 * modified under nVMX). Unless the per-VM capability,
4504 * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of
4505 * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we
4506 * opportunistically defer the exception payload, deliver it if the
4507 * capability hasn't been requested before processing a
4508 * KVM_GET_VCPU_EVENTS.
4509 */
4510 if (!vcpu->kvm->arch.exception_payload_enabled &&
4511 vcpu->arch.exception.pending && vcpu->arch.exception.has_payload)
4512 kvm_deliver_exception_payload(vcpu);
4513
4514 /*
Jim Mattson59073aa2018-10-16 14:29:20 -07004515 * The API doesn't provide the instruction length for software
4516 * exceptions, so don't report them. As long as the guest RIP
4517 * isn't advanced, we should expect to encounter the exception
4518 * again.
Wanpeng Li664f8e22017-08-24 03:35:09 -07004519 */
Jim Mattson59073aa2018-10-16 14:29:20 -07004520 if (kvm_exception_is_soft(vcpu->arch.exception.nr)) {
4521 events->exception.injected = 0;
4522 events->exception.pending = 0;
4523 } else {
4524 events->exception.injected = vcpu->arch.exception.injected;
4525 events->exception.pending = vcpu->arch.exception.pending;
4526 /*
4527 * For ABI compatibility, deliberately conflate
4528 * pending and injected exceptions when
4529 * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled.
4530 */
4531 if (!vcpu->kvm->arch.exception_payload_enabled)
4532 events->exception.injected |=
4533 vcpu->arch.exception.pending;
4534 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004535 events->exception.nr = vcpu->arch.exception.nr;
4536 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
4537 events->exception.error_code = vcpu->arch.exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004538 events->exception_has_payload = vcpu->arch.exception.has_payload;
4539 events->exception_payload = vcpu->arch.exception.payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004540
Jan Kiszka03b82a32010-02-15 10:45:41 +01004541 events->interrupt.injected =
Liran Alon04140b42018-03-23 03:01:31 +03004542 vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004543 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01004544 events->interrupt.soft = 0;
Jason Baronb36464772021-01-14 22:27:56 -05004545 events->interrupt.shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004546
4547 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004548 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jason Baronb36464772021-01-14 22:27:56 -05004549 events->nmi.masked = static_call(kvm_x86_get_nmi_mask)(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004550 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004551
Jan Kiszka66450a22013-03-13 12:42:34 +01004552 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004553
Paolo Bonzinif0778252015-04-01 15:06:40 +02004554 events->smi.smm = is_smm(vcpu);
4555 events->smi.pending = vcpu->arch.smi_pending;
4556 events->smi.smm_inside_nmi =
4557 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
4558 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
4559
Jan Kiszkadab4b912009-12-06 18:24:15 +01004560 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02004561 | KVM_VCPUEVENT_VALID_SHADOW
4562 | KVM_VCPUEVENT_VALID_SMM);
Jim Mattson59073aa2018-10-16 14:29:20 -07004563 if (vcpu->kvm->arch.exception_payload_enabled)
4564 events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD;
4565
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004566 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004567}
4568
Sean Christophersondc872752021-06-09 11:56:15 -07004569static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004570
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004571static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
4572 struct kvm_vcpu_events *events)
4573{
Jan Kiszkadab4b912009-12-06 18:24:15 +01004574 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01004575 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02004576 | KVM_VCPUEVENT_VALID_SHADOW
Jim Mattson59073aa2018-10-16 14:29:20 -07004577 | KVM_VCPUEVENT_VALID_SMM
4578 | KVM_VCPUEVENT_VALID_PAYLOAD))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004579 return -EINVAL;
4580
Jim Mattson59073aa2018-10-16 14:29:20 -07004581 if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) {
4582 if (!vcpu->kvm->arch.exception_payload_enabled)
4583 return -EINVAL;
4584 if (events->exception.pending)
4585 events->exception.injected = 0;
4586 else
4587 events->exception_has_payload = 0;
4588 } else {
4589 events->exception.pending = 0;
4590 events->exception_has_payload = 0;
4591 }
4592
4593 if ((events->exception.injected || events->exception.pending) &&
4594 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02004595 return -EINVAL;
4596
David Hildenbrand28bf2882017-03-23 11:46:03 +01004597 /* INITs are latched while in SMM */
4598 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
4599 (events->smi.smm || events->smi.pending) &&
4600 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
4601 return -EINVAL;
4602
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004603 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004604 vcpu->arch.exception.injected = events->exception.injected;
4605 vcpu->arch.exception.pending = events->exception.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004606 vcpu->arch.exception.nr = events->exception.nr;
4607 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
4608 vcpu->arch.exception.error_code = events->exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004609 vcpu->arch.exception.has_payload = events->exception_has_payload;
4610 vcpu->arch.exception.payload = events->exception_payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004611
Liran Alon04140b42018-03-23 03:01:31 +03004612 vcpu->arch.interrupt.injected = events->interrupt.injected;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004613 vcpu->arch.interrupt.nr = events->interrupt.nr;
4614 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01004615 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
Jason Baronb36464772021-01-14 22:27:56 -05004616 static_call(kvm_x86_set_interrupt_shadow)(vcpu,
4617 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004618
4619 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01004620 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
4621 vcpu->arch.nmi_pending = events->nmi.pending;
Jason Baronb36464772021-01-14 22:27:56 -05004622 static_call(kvm_x86_set_nmi_mask)(vcpu, events->nmi.masked);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004623
Jan Kiszka66450a22013-03-13 12:42:34 +01004624 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004625 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01004626 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004627
Paolo Bonzinif0778252015-04-01 15:06:40 +02004628 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Sean Christophersondc872752021-06-09 11:56:15 -07004629 if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm)
4630 kvm_smm_changed(vcpu, events->smi.smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004631
Paolo Bonzinif0778252015-04-01 15:06:40 +02004632 vcpu->arch.smi_pending = events->smi.pending;
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004633
4634 if (events->smi.smm) {
4635 if (events->smi.smm_inside_nmi)
4636 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02004637 else
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004638 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Liran Alonff90afa2019-11-11 11:16:39 +02004639 }
4640
4641 if (lapic_in_kernel(vcpu)) {
4642 if (events->smi.latched_init)
4643 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
4644 else
4645 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
Paolo Bonzinif0778252015-04-01 15:06:40 +02004646 }
4647 }
4648
Avi Kivity3842d132010-07-27 12:30:24 +03004649 kvm_make_request(KVM_REQ_EVENT, vcpu);
4650
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004651 return 0;
4652}
4653
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004654static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
4655 struct kvm_debugregs *dbgregs)
4656{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004657 unsigned long val;
4658
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004659 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004660 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004661 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004662 dbgregs->dr7 = vcpu->arch.dr7;
4663 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004664 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004665}
4666
4667static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
4668 struct kvm_debugregs *dbgregs)
4669{
4670 if (dbgregs->flags)
4671 return -EINVAL;
4672
Paolo Bonzinifd238002020-11-13 08:31:09 -05004673 if (!kvm_dr6_valid(dbgregs->dr6))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004674 return -EINVAL;
Paolo Bonzinifd238002020-11-13 08:31:09 -05004675 if (!kvm_dr7_valid(dbgregs->dr7))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004676 return -EINVAL;
4677
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004678 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03004679 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004680 vcpu->arch.dr6 = dbgregs->dr6;
4681 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01004682 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004683
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004684 return 0;
4685}
4686
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004687#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
4688
4689static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
4690{
Marc Orrb666a4b2018-11-06 14:53:56 -08004691 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02004692 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004693 u64 valid;
4694
4695 /*
4696 * Copy legacy XSAVE area, to avoid complications with CPUID
4697 * leaves 0 and 1 in the loop below.
4698 */
4699 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
4700
4701 /* Set XSTATE_BV */
Radim Krčmář00c87e92017-02-01 14:19:53 +01004702 xstate_bv &= vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004703 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
4704
4705 /*
4706 * Copy each region from the possibly compacted offset to the
4707 * non-compacted offset.
4708 */
Dave Hansend91cab72015-09-02 16:31:26 -07004709 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004710 while (valid) {
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004711 u64 xfeature_mask = valid & -valid;
4712 int xfeature_nr = fls64(xfeature_mask) - 1;
4713 void *src = get_xsave_addr(xsave, xfeature_nr);
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004714
4715 if (src) {
4716 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004717 cpuid_count(XSTATE_CPUID, xfeature_nr,
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004718 &size, &offset, &ecx, &edx);
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004719 if (xfeature_nr == XFEATURE_PKRU)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004720 memcpy(dest + offset, &vcpu->arch.pkru,
4721 sizeof(vcpu->arch.pkru));
4722 else
4723 memcpy(dest + offset, src, size);
4724
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004725 }
4726
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004727 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004728 }
4729}
4730
4731static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
4732{
Marc Orrb666a4b2018-11-06 14:53:56 -08004733 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004734 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
4735 u64 valid;
4736
4737 /*
4738 * Copy legacy XSAVE area, to avoid complications with CPUID
4739 * leaves 0 and 1 in the loop below.
4740 */
4741 memcpy(xsave, src, XSAVE_HDR_OFFSET);
4742
4743 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02004744 xsave->header.xfeatures = xstate_bv;
Borislav Petkov782511b2016-04-04 22:25:03 +02004745 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar3a544502015-04-24 10:14:36 +02004746 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004747
4748 /*
4749 * Copy each region from the non-compacted offset to the
4750 * possibly compacted offset.
4751 */
Dave Hansend91cab72015-09-02 16:31:26 -07004752 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004753 while (valid) {
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004754 u64 xfeature_mask = valid & -valid;
4755 int xfeature_nr = fls64(xfeature_mask) - 1;
4756 void *dest = get_xsave_addr(xsave, xfeature_nr);
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004757
4758 if (dest) {
4759 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004760 cpuid_count(XSTATE_CPUID, xfeature_nr,
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004761 &size, &offset, &ecx, &edx);
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004762 if (xfeature_nr == XFEATURE_PKRU)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004763 memcpy(&vcpu->arch.pkru, src + offset,
4764 sizeof(vcpu->arch.pkru));
4765 else
4766 memcpy(dest, src + offset, size);
Wanpeng Liee4100d2015-07-09 15:44:52 +08004767 }
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004768
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004769 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004770 }
4771}
4772
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004773static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
4774 struct kvm_xsave *guest_xsave)
4775{
Tom Lendackyed02b212020-12-10 11:10:01 -06004776 if (!vcpu->arch.guest_fpu)
4777 return;
4778
Borislav Petkovd366bf72016-04-04 22:25:02 +02004779 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004780 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
4781 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02004782 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004783 memcpy(guest_xsave->region,
Marc Orrb666a4b2018-11-06 14:53:56 -08004784 &vcpu->arch.guest_fpu->state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02004785 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004786 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
Dave Hansend91cab72015-09-02 16:31:26 -07004787 XFEATURE_MASK_FPSSE;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004788 }
4789}
4790
Wanpeng Lia5758132017-05-11 02:58:55 -07004791#define XSAVE_MXCSR_OFFSET 24
4792
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004793static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
4794 struct kvm_xsave *guest_xsave)
4795{
Tom Lendackyed02b212020-12-10 11:10:01 -06004796 u64 xstate_bv;
4797 u32 mxcsr;
4798
4799 if (!vcpu->arch.guest_fpu)
4800 return 0;
4801
4802 xstate_bv = *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
4803 mxcsr = *(u32 *)&guest_xsave->region[XSAVE_MXCSR_OFFSET / sizeof(u32)];
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004804
Borislav Petkovd366bf72016-04-04 22:25:02 +02004805 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004806 /*
4807 * Here we allow setting states that are not present in
4808 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
4809 * with old userspace.
4810 */
Sean Christophersoncfc48182020-03-02 15:56:23 -08004811 if (xstate_bv & ~supported_xcr0 || mxcsr & ~mxcsr_feature_mask)
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004812 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004813 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004814 } else {
Wanpeng Lia5758132017-05-11 02:58:55 -07004815 if (xstate_bv & ~XFEATURE_MASK_FPSSE ||
4816 mxcsr & ~mxcsr_feature_mask)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004817 return -EINVAL;
Marc Orrb666a4b2018-11-06 14:53:56 -08004818 memcpy(&vcpu->arch.guest_fpu->state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02004819 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004820 }
4821 return 0;
4822}
4823
4824static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
4825 struct kvm_xcrs *guest_xcrs)
4826{
Borislav Petkovd366bf72016-04-04 22:25:02 +02004827 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004828 guest_xcrs->nr_xcrs = 0;
4829 return;
4830 }
4831
4832 guest_xcrs->nr_xcrs = 1;
4833 guest_xcrs->flags = 0;
4834 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
4835 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
4836}
4837
4838static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
4839 struct kvm_xcrs *guest_xcrs)
4840{
4841 int i, r = 0;
4842
Borislav Petkovd366bf72016-04-04 22:25:02 +02004843 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004844 return -EINVAL;
4845
4846 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
4847 return -EINVAL;
4848
4849 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
4850 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004851 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004852 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004853 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004854 break;
4855 }
4856 if (r)
4857 r = -EINVAL;
4858 return r;
4859}
4860
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004861/*
4862 * kvm_set_guest_paused() indicates to the guest kernel that it has been
4863 * stopped by the hypervisor. This function will be called from the host only.
4864 * EINVAL is returned when the host attempts to set the flag for a guest that
4865 * does not support pv clocks.
4866 */
4867static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
4868{
Andy Honig0b794592013-02-20 14:48:10 -08004869 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004870 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03004871 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004872 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
4873 return 0;
4874}
4875
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004876static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
4877 struct kvm_enable_cap *cap)
4878{
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004879 int r;
4880 uint16_t vmcs_version;
4881 void __user *user_ptr;
4882
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004883 if (cap->flags)
4884 return -EINVAL;
4885
4886 switch (cap->cap) {
Roman Kaganefc479e2017-06-22 16:51:01 +03004887 case KVM_CAP_HYPERV_SYNIC2:
4888 if (cap->args[0])
4889 return -EINVAL;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004890 fallthrough;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004891
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004892 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08004893 if (!irqchip_in_kernel(vcpu->kvm))
4894 return -EINVAL;
Roman Kaganefc479e2017-06-22 16:51:01 +03004895 return kvm_hv_activate_synic(vcpu, cap->cap ==
4896 KVM_CAP_HYPERV_SYNIC2);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004897 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004898 if (!kvm_x86_ops.nested_ops->enable_evmcs)
Sean Christopherson51589172018-12-03 13:53:10 -08004899 return -ENOTTY;
Paolo Bonzini33b22172020-04-17 10:24:18 -04004900 r = kvm_x86_ops.nested_ops->enable_evmcs(vcpu, &vmcs_version);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004901 if (!r) {
4902 user_ptr = (void __user *)(uintptr_t)cap->args[0];
4903 if (copy_to_user(user_ptr, &vmcs_version,
4904 sizeof(vmcs_version)))
4905 r = -EFAULT;
4906 }
4907 return r;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004908 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004909 if (!kvm_x86_ops.enable_direct_tlbflush)
Tianyu Lan344c6c82019-08-22 22:30:20 +08004910 return -ENOTTY;
4911
Jason Baronb36464772021-01-14 22:27:56 -05004912 return static_call(kvm_x86_enable_direct_tlbflush)(vcpu);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004913
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02004914 case KVM_CAP_HYPERV_ENFORCE_CPUID:
4915 return kvm_hv_set_enforce_cpuid(vcpu, cap->args[0]);
4916
Oliver Upton66570e92020-08-18 15:24:28 +00004917 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
4918 vcpu->arch.pv_cpuid.enforce = cap->args[0];
Oliver Upton01b4f512020-10-27 16:10:42 -07004919 if (vcpu->arch.pv_cpuid.enforce)
4920 kvm_update_pv_runtime(vcpu);
Oliver Upton66570e92020-08-18 15:24:28 +00004921
4922 return 0;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004923 default:
4924 return -EINVAL;
4925 }
4926}
4927
Carsten Otte313a3dc2007-10-11 19:16:52 +02004928long kvm_arch_vcpu_ioctl(struct file *filp,
4929 unsigned int ioctl, unsigned long arg)
4930{
4931 struct kvm_vcpu *vcpu = filp->private_data;
4932 void __user *argp = (void __user *)arg;
4933 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004934 union {
Maxim Levitsky6dba9402021-06-07 12:02:02 +03004935 struct kvm_sregs2 *sregs2;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004936 struct kvm_lapic_state *lapic;
4937 struct kvm_xsave *xsave;
4938 struct kvm_xcrs *xcrs;
4939 void *buffer;
4940 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004941
Christoffer Dall9b0624712017-12-04 21:35:36 +01004942 vcpu_load(vcpu);
4943
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004944 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004945 switch (ioctl) {
4946 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004947 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004948 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004949 goto out;
Ben Gardon254272c2019-02-11 11:02:50 -08004950 u.lapic = kzalloc(sizeof(struct kvm_lapic_state),
4951 GFP_KERNEL_ACCOUNT);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004952
Dave Hansenb772ff32008-08-11 10:01:47 -07004953 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004954 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07004955 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004956 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004957 if (r)
4958 goto out;
4959 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004960 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02004961 goto out;
4962 r = 0;
4963 break;
4964 }
4965 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004966 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004967 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004968 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004969 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Christoffer Dall9b0624712017-12-04 21:35:36 +01004970 if (IS_ERR(u.lapic)) {
4971 r = PTR_ERR(u.lapic);
4972 goto out_nofree;
4973 }
Sasha Levinff5c2c02011-12-04 19:36:29 +02004974
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004975 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004976 break;
4977 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004978 case KVM_INTERRUPT: {
4979 struct kvm_interrupt irq;
4980
4981 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004982 if (copy_from_user(&irq, argp, sizeof(irq)))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004983 goto out;
4984 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004985 break;
4986 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004987 case KVM_NMI: {
4988 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004989 break;
4990 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02004991 case KVM_SMI: {
4992 r = kvm_vcpu_ioctl_smi(vcpu);
4993 break;
4994 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02004995 case KVM_SET_CPUID: {
4996 struct kvm_cpuid __user *cpuid_arg = argp;
4997 struct kvm_cpuid cpuid;
4998
4999 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005000 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005001 goto out;
5002 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005003 break;
5004 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02005005 case KVM_SET_CPUID2: {
5006 struct kvm_cpuid2 __user *cpuid_arg = argp;
5007 struct kvm_cpuid2 cpuid;
5008
5009 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005010 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005011 goto out;
5012 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005013 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005014 break;
5015 }
5016 case KVM_GET_CPUID2: {
5017 struct kvm_cpuid2 __user *cpuid_arg = argp;
5018 struct kvm_cpuid2 cpuid;
5019
5020 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005021 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005022 goto out;
5023 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005024 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005025 if (r)
5026 goto out;
5027 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005028 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005029 goto out;
5030 r = 0;
5031 break;
5032 }
Tom Lendacky801e4592018-02-21 13:39:51 -06005033 case KVM_GET_MSRS: {
5034 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005035 r = msr_io(vcpu, argp, do_get_msr, 1);
Tom Lendacky801e4592018-02-21 13:39:51 -06005036 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005037 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005038 }
5039 case KVM_SET_MSRS: {
5040 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005041 r = msr_io(vcpu, argp, do_set_msr, 0);
Tom Lendacky801e4592018-02-21 13:39:51 -06005042 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005043 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005044 }
Avi Kivityb209749f2007-10-22 16:50:39 +02005045 case KVM_TPR_ACCESS_REPORTING: {
5046 struct kvm_tpr_access_ctl tac;
5047
5048 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005049 if (copy_from_user(&tac, argp, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005050 goto out;
5051 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
5052 if (r)
5053 goto out;
5054 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005055 if (copy_to_user(argp, &tac, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005056 goto out;
5057 r = 0;
5058 break;
5059 };
Avi Kivityb93463a2007-10-25 16:52:32 +02005060 case KVM_SET_VAPIC_ADDR: {
5061 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005062 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02005063
5064 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005065 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02005066 goto out;
5067 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005068 if (copy_from_user(&va, argp, sizeof(va)))
Avi Kivityb93463a2007-10-25 16:52:32 +02005069 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005070 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08005071 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005072 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02005073 break;
5074 }
Huang Ying890ca9a2009-05-11 16:48:15 +08005075 case KVM_X86_SETUP_MCE: {
5076 u64 mcg_cap;
5077
5078 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005079 if (copy_from_user(&mcg_cap, argp, sizeof(mcg_cap)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005080 goto out;
5081 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
5082 break;
5083 }
5084 case KVM_X86_SET_MCE: {
5085 struct kvm_x86_mce mce;
5086
5087 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005088 if (copy_from_user(&mce, argp, sizeof(mce)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005089 goto out;
5090 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
5091 break;
5092 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005093 case KVM_GET_VCPU_EVENTS: {
5094 struct kvm_vcpu_events events;
5095
5096 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
5097
5098 r = -EFAULT;
5099 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
5100 break;
5101 r = 0;
5102 break;
5103 }
5104 case KVM_SET_VCPU_EVENTS: {
5105 struct kvm_vcpu_events events;
5106
5107 r = -EFAULT;
5108 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
5109 break;
5110
5111 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
5112 break;
5113 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01005114 case KVM_GET_DEBUGREGS: {
5115 struct kvm_debugregs dbgregs;
5116
5117 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
5118
5119 r = -EFAULT;
5120 if (copy_to_user(argp, &dbgregs,
5121 sizeof(struct kvm_debugregs)))
5122 break;
5123 r = 0;
5124 break;
5125 }
5126 case KVM_SET_DEBUGREGS: {
5127 struct kvm_debugregs dbgregs;
5128
5129 r = -EFAULT;
5130 if (copy_from_user(&dbgregs, argp,
5131 sizeof(struct kvm_debugregs)))
5132 break;
5133
5134 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
5135 break;
5136 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005137 case KVM_GET_XSAVE: {
Ben Gardon254272c2019-02-11 11:02:50 -08005138 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005139 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005140 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005141 break;
5142
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005143 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005144
5145 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005146 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005147 break;
5148 r = 0;
5149 break;
5150 }
5151 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005152 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005153 if (IS_ERR(u.xsave)) {
5154 r = PTR_ERR(u.xsave);
5155 goto out_nofree;
5156 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005157
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005158 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005159 break;
5160 }
5161 case KVM_GET_XCRS: {
Ben Gardon254272c2019-02-11 11:02:50 -08005162 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005163 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005164 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005165 break;
5166
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005167 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005168
5169 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005170 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005171 sizeof(struct kvm_xcrs)))
5172 break;
5173 r = 0;
5174 break;
5175 }
5176 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005177 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005178 if (IS_ERR(u.xcrs)) {
5179 r = PTR_ERR(u.xcrs);
5180 goto out_nofree;
5181 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005182
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005183 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005184 break;
5185 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01005186 case KVM_SET_TSC_KHZ: {
5187 u32 user_tsc_khz;
5188
5189 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005190 user_tsc_khz = (u32)arg;
5191
Marcelo Tosatti26769f92020-06-16 08:47:41 -03005192 if (kvm_has_tsc_control &&
5193 user_tsc_khz >= kvm_max_guest_tsc_khz)
Joerg Roedel92a1f122011-03-25 09:44:51 +01005194 goto out;
5195
Zachary Amsdencc578282012-02-03 15:43:50 -02005196 if (user_tsc_khz == 0)
5197 user_tsc_khz = tsc_khz;
5198
Haozhong Zhang381d5852015-10-20 15:39:04 +08005199 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
5200 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005201
Joerg Roedel92a1f122011-03-25 09:44:51 +01005202 goto out;
5203 }
5204 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02005205 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005206 goto out;
5207 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005208 case KVM_KVMCLOCK_CTRL: {
5209 r = kvm_set_guest_paused(vcpu);
5210 goto out;
5211 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005212 case KVM_ENABLE_CAP: {
5213 struct kvm_enable_cap cap;
5214
5215 r = -EFAULT;
5216 if (copy_from_user(&cap, argp, sizeof(cap)))
5217 goto out;
5218 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
5219 break;
5220 }
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005221 case KVM_GET_NESTED_STATE: {
5222 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5223 u32 user_data_size;
5224
5225 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005226 if (!kvm_x86_ops.nested_ops->get_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005227 break;
5228
5229 BUILD_BUG_ON(sizeof(user_data_size) != sizeof(user_kvm_nested_state->size));
Liran Alon26b471c2018-09-16 14:28:20 +03005230 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005231 if (get_user(user_data_size, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005232 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005233
Paolo Bonzini33b22172020-04-17 10:24:18 -04005234 r = kvm_x86_ops.nested_ops->get_state(vcpu, user_kvm_nested_state,
5235 user_data_size);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005236 if (r < 0)
Liran Alon26b471c2018-09-16 14:28:20 +03005237 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005238
5239 if (r > user_data_size) {
5240 if (put_user(r, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005241 r = -EFAULT;
5242 else
5243 r = -E2BIG;
5244 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005245 }
Liran Alon26b471c2018-09-16 14:28:20 +03005246
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005247 r = 0;
5248 break;
5249 }
5250 case KVM_SET_NESTED_STATE: {
5251 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5252 struct kvm_nested_state kvm_state;
Sean Christophersonad5996d2019-11-22 08:58:18 -08005253 int idx;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005254
5255 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005256 if (!kvm_x86_ops.nested_ops->set_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005257 break;
5258
Liran Alon26b471c2018-09-16 14:28:20 +03005259 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005260 if (copy_from_user(&kvm_state, user_kvm_nested_state, sizeof(kvm_state)))
Liran Alon26b471c2018-09-16 14:28:20 +03005261 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005262
Liran Alon26b471c2018-09-16 14:28:20 +03005263 r = -EINVAL;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005264 if (kvm_state.size < sizeof(kvm_state))
Liran Alon26b471c2018-09-16 14:28:20 +03005265 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005266
5267 if (kvm_state.flags &
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005268 ~(KVM_STATE_NESTED_RUN_PENDING | KVM_STATE_NESTED_GUEST_MODE
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04005269 | KVM_STATE_NESTED_EVMCS | KVM_STATE_NESTED_MTF_PENDING
5270 | KVM_STATE_NESTED_GIF_SET))
Liran Alon26b471c2018-09-16 14:28:20 +03005271 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005272
5273 /* nested_run_pending implies guest_mode. */
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005274 if ((kvm_state.flags & KVM_STATE_NESTED_RUN_PENDING)
5275 && !(kvm_state.flags & KVM_STATE_NESTED_GUEST_MODE))
Liran Alon26b471c2018-09-16 14:28:20 +03005276 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005277
Sean Christophersonad5996d2019-11-22 08:58:18 -08005278 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini33b22172020-04-17 10:24:18 -04005279 r = kvm_x86_ops.nested_ops->set_state(vcpu, user_kvm_nested_state, &kvm_state);
Sean Christophersonad5996d2019-11-22 08:58:18 -08005280 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005281 break;
5282 }
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02005283 case KVM_GET_SUPPORTED_HV_CPUID:
5284 r = kvm_ioctl_get_supported_hv_cpuid(vcpu, argp);
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01005285 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005286#ifdef CONFIG_KVM_XEN
David Woodhouse3e324612021-02-02 16:53:25 +00005287 case KVM_XEN_VCPU_GET_ATTR: {
5288 struct kvm_xen_vcpu_attr xva;
5289
5290 r = -EFAULT;
5291 if (copy_from_user(&xva, argp, sizeof(xva)))
5292 goto out;
5293 r = kvm_xen_vcpu_get_attr(vcpu, &xva);
5294 if (!r && copy_to_user(argp, &xva, sizeof(xva)))
5295 r = -EFAULT;
5296 break;
5297 }
5298 case KVM_XEN_VCPU_SET_ATTR: {
5299 struct kvm_xen_vcpu_attr xva;
5300
5301 r = -EFAULT;
5302 if (copy_from_user(&xva, argp, sizeof(xva)))
5303 goto out;
5304 r = kvm_xen_vcpu_set_attr(vcpu, &xva);
5305 break;
5306 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005307#endif
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005308 case KVM_GET_SREGS2: {
5309 u.sregs2 = kzalloc(sizeof(struct kvm_sregs2), GFP_KERNEL);
5310 r = -ENOMEM;
5311 if (!u.sregs2)
5312 goto out;
5313 __get_sregs2(vcpu, u.sregs2);
5314 r = -EFAULT;
5315 if (copy_to_user(argp, u.sregs2, sizeof(struct kvm_sregs2)))
5316 goto out;
5317 r = 0;
5318 break;
5319 }
5320 case KVM_SET_SREGS2: {
5321 u.sregs2 = memdup_user(argp, sizeof(struct kvm_sregs2));
5322 if (IS_ERR(u.sregs2)) {
5323 r = PTR_ERR(u.sregs2);
5324 u.sregs2 = NULL;
5325 goto out;
5326 }
5327 r = __set_sregs2(vcpu, u.sregs2);
5328 break;
5329 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02005330 default:
5331 r = -EINVAL;
5332 }
5333out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005334 kfree(u.buffer);
Christoffer Dall9b0624712017-12-04 21:35:36 +01005335out_nofree:
5336 vcpu_put(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005337 return r;
5338}
5339
Souptick Joarder1499fa82018-04-19 00:49:58 +05305340vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
Carsten Otte5b1c1492012-01-04 10:25:23 +01005341{
5342 return VM_FAULT_SIGBUS;
5343}
5344
Carsten Otte1fe779f2007-10-29 16:08:35 +01005345static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
5346{
5347 int ret;
5348
5349 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08005350 return -EINVAL;
Jason Baronb36464772021-01-14 22:27:56 -05005351 ret = static_call(kvm_x86_set_tss_addr)(kvm, addr);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005352 return ret;
5353}
5354
Sheng Yangb927a3c2009-07-21 10:42:48 +08005355static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
5356 u64 ident_addr)
5357{
Jason Baronb36464772021-01-14 22:27:56 -05005358 return static_call(kvm_x86_set_identity_map_addr)(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005359}
5360
Carsten Otte1fe779f2007-10-29 16:08:35 +01005361static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005362 unsigned long kvm_nr_mmu_pages)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005363{
5364 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
5365 return -EINVAL;
5366
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005367 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005368
5369 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08005370 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005371
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005372 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005373 return 0;
5374}
5375
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005376static unsigned long kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005377{
Dave Hansen39de71e2010-08-19 18:11:14 -07005378 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005379}
5380
Carsten Otte1fe779f2007-10-29 16:08:35 +01005381static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5382{
David Hildenbrand90bca052017-04-07 10:50:23 +02005383 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005384 int r;
5385
5386 r = 0;
5387 switch (chip->chip_id) {
5388 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005389 memcpy(&chip->chip.pic, &pic->pics[0],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005390 sizeof(struct kvm_pic_state));
5391 break;
5392 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005393 memcpy(&chip->chip.pic, &pic->pics[1],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005394 sizeof(struct kvm_pic_state));
5395 break;
5396 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005397 kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005398 break;
5399 default:
5400 r = -EINVAL;
5401 break;
5402 }
5403 return r;
5404}
5405
5406static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5407{
David Hildenbrand90bca052017-04-07 10:50:23 +02005408 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005409 int r;
5410
5411 r = 0;
5412 switch (chip->chip_id) {
5413 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005414 spin_lock(&pic->lock);
5415 memcpy(&pic->pics[0], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005416 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005417 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005418 break;
5419 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005420 spin_lock(&pic->lock);
5421 memcpy(&pic->pics[1], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005422 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005423 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005424 break;
5425 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005426 kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005427 break;
5428 default:
5429 r = -EINVAL;
5430 break;
5431 }
David Hildenbrand90bca052017-04-07 10:50:23 +02005432 kvm_pic_update_irq(pic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005433 return r;
5434}
5435
Sheng Yange0f63cb2008-03-04 00:50:59 +08005436static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5437{
Radim Krčmář34f39412016-03-02 22:56:50 +01005438 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
5439
5440 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
5441
5442 mutex_lock(&kps->lock);
5443 memcpy(ps, &kps->channels, sizeof(*ps));
5444 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305445 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005446}
5447
5448static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5449{
Andrew Honig01856042015-11-18 14:50:23 -08005450 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01005451 struct kvm_pit *pit = kvm->arch.vpit;
5452
5453 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01005454 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08005455 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005456 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
5457 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305458 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005459}
5460
5461static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5462{
Beth Kone9f42752009-07-07 11:50:38 -04005463 mutex_lock(&kvm->arch.vpit->pit_state.lock);
5464 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
5465 sizeof(ps->channels));
5466 ps->flags = kvm->arch.vpit->pit_state.flags;
5467 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04005468 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305469 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005470}
5471
5472static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5473{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305474 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08005475 int i;
Beth Kone9f42752009-07-07 11:50:38 -04005476 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01005477 struct kvm_pit *pit = kvm->arch.vpit;
5478
5479 mutex_lock(&pit->pit_state.lock);
5480 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04005481 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
5482 if (!prev_legacy && cur_legacy)
5483 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01005484 memcpy(&pit->pit_state.channels, &ps->channels,
5485 sizeof(pit->pit_state.channels));
5486 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08005487 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005488 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01005489 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01005490 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305491 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005492}
5493
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005494static int kvm_vm_ioctl_reinject(struct kvm *kvm,
5495 struct kvm_reinject_control *control)
5496{
Radim Krčmář71474e22016-03-02 22:56:45 +01005497 struct kvm_pit *pit = kvm->arch.vpit;
5498
Radim Krčmář71474e22016-03-02 22:56:45 +01005499 /* pit->pit_state.lock was overloaded to prevent userspace from getting
5500 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
5501 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
5502 */
5503 mutex_lock(&pit->pit_state.lock);
5504 kvm_pit_set_reinject(pit, control->pit_reinject);
5505 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01005506
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005507 return 0;
5508}
5509
Sean Christopherson0dff0842020-02-18 13:07:29 -08005510void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005511{
Sean Christophersona018eba2021-02-12 16:50:10 -08005512
Kai Huang88178fd2015-01-28 10:54:27 +08005513 /*
Sean Christophersona018eba2021-02-12 16:50:10 -08005514 * Flush all CPUs' dirty log buffers to the dirty_bitmap. Called
5515 * before reporting dirty_bitmap to userspace. KVM flushes the buffers
5516 * on all VM-Exits, thus we only need to kick running vCPUs to force a
5517 * VM-Exit.
Kai Huang88178fd2015-01-28 10:54:27 +08005518 */
Sean Christophersona018eba2021-02-12 16:50:10 -08005519 struct kvm_vcpu *vcpu;
5520 int i;
5521
5522 kvm_for_each_vcpu(i, vcpu, kvm)
5523 kvm_vcpu_kick(vcpu);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005524}
5525
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005526int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
5527 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005528{
5529 if (!irqchip_in_kernel(kvm))
5530 return -ENXIO;
5531
5532 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005533 irq_event->irq, irq_event->level,
5534 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005535 return 0;
5536}
5537
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01005538int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
5539 struct kvm_enable_cap *cap)
Nadav Amit90de4a12015-04-13 01:53:41 +03005540{
5541 int r;
5542
5543 if (cap->flags)
5544 return -EINVAL;
5545
5546 switch (cap->cap) {
5547 case KVM_CAP_DISABLE_QUIRKS:
5548 kvm->arch.disabled_quirks = cap->args[0];
5549 r = 0;
5550 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07005551 case KVM_CAP_SPLIT_IRQCHIP: {
5552 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005553 r = -EINVAL;
5554 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
5555 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07005556 r = -EEXIST;
5557 if (irqchip_in_kernel(kvm))
5558 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005559 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07005560 goto split_irqchip_unlock;
5561 r = kvm_setup_empty_irq_routing(kvm);
David Hildenbrand5c0aea02017-04-28 17:06:20 +02005562 if (r)
Steve Rutherford49df6392015-07-29 23:21:40 -07005563 goto split_irqchip_unlock;
5564 /* Pairs with irqchip_in_kernel. */
5565 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005566 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005567 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Steve Rutherford49df6392015-07-29 23:21:40 -07005568 r = 0;
5569split_irqchip_unlock:
5570 mutex_unlock(&kvm->lock);
5571 break;
5572 }
Radim Krčmář371313132016-07-12 22:09:27 +02005573 case KVM_CAP_X2APIC_API:
5574 r = -EINVAL;
5575 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
5576 break;
5577
5578 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
5579 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02005580 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
5581 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02005582
5583 r = 0;
5584 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005585 case KVM_CAP_X86_DISABLE_EXITS:
5586 r = -EINVAL;
5587 if (cap->args[0] & ~KVM_X86_DISABLE_VALID_EXITS)
5588 break;
5589
5590 if ((cap->args[0] & KVM_X86_DISABLE_EXITS_MWAIT) &&
5591 kvm_can_mwait_in_guest())
5592 kvm->arch.mwait_in_guest = true;
Michael S. Tsirkin766d3572018-06-08 02:19:53 +03005593 if (cap->args[0] & KVM_X86_DISABLE_EXITS_HLT)
Wanpeng Licaa057a2018-03-12 04:53:03 -07005594 kvm->arch.hlt_in_guest = true;
Wanpeng Lib31c1142018-03-12 04:53:04 -07005595 if (cap->args[0] & KVM_X86_DISABLE_EXITS_PAUSE)
5596 kvm->arch.pause_in_guest = true;
Wanpeng Lib5170062019-05-21 14:06:53 +08005597 if (cap->args[0] & KVM_X86_DISABLE_EXITS_CSTATE)
5598 kvm->arch.cstate_in_guest = true;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005599 r = 0;
5600 break;
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005601 case KVM_CAP_MSR_PLATFORM_INFO:
5602 kvm->arch.guest_can_read_msr_platform_info = cap->args[0];
5603 r = 0;
5604 break;
Jim Mattsonc4f55192018-10-16 14:29:24 -07005605 case KVM_CAP_EXCEPTION_PAYLOAD:
5606 kvm->arch.exception_payload_enabled = cap->args[0];
5607 r = 0;
5608 break;
Alexander Graf1ae09952020-09-25 16:34:16 +02005609 case KVM_CAP_X86_USER_SPACE_MSR:
5610 kvm->arch.user_space_msr_mask = cap->args[0];
5611 r = 0;
5612 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005613 case KVM_CAP_X86_BUS_LOCK_EXIT:
5614 r = -EINVAL;
5615 if (cap->args[0] & ~KVM_BUS_LOCK_DETECTION_VALID_MODE)
5616 break;
5617
5618 if ((cap->args[0] & KVM_BUS_LOCK_DETECTION_OFF) &&
5619 (cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT))
5620 break;
5621
5622 if (kvm_has_bus_lock_exit &&
5623 cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT)
5624 kvm->arch.bus_lock_detection_enabled = true;
5625 r = 0;
5626 break;
Sean Christophersonfe7e9482021-04-12 16:21:43 +12005627#ifdef CONFIG_X86_SGX_KVM
5628 case KVM_CAP_SGX_ATTRIBUTE: {
5629 unsigned long allowed_attributes = 0;
5630
5631 r = sgx_set_attribute(&allowed_attributes, cap->args[0]);
5632 if (r)
5633 break;
5634
5635 /* KVM only supports the PROVISIONKEY privileged attribute. */
5636 if ((allowed_attributes & SGX_ATTR_PROVISIONKEY) &&
5637 !(allowed_attributes & ~SGX_ATTR_PROVISIONKEY))
5638 kvm->arch.sgx_provisioning_allowed = true;
5639 else
5640 r = -EINVAL;
5641 break;
5642 }
5643#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00005644 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
5645 r = -EINVAL;
5646 if (kvm_x86_ops.vm_copy_enc_context_from)
5647 r = kvm_x86_ops.vm_copy_enc_context_from(kvm, cap->args[0]);
5648 return r;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00005649 case KVM_CAP_EXIT_HYPERCALL:
5650 if (cap->args[0] & ~KVM_EXIT_HYPERCALL_VALID_MASK) {
5651 r = -EINVAL;
5652 break;
5653 }
5654 kvm->arch.hypercall_exit_enabled = cap->args[0];
5655 r = 0;
5656 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03005657 default:
5658 r = -EINVAL;
5659 break;
5660 }
5661 return r;
5662}
5663
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005664static struct kvm_x86_msr_filter *kvm_alloc_msr_filter(bool default_allow)
Alexander Graf1a1552542020-09-25 16:34:21 +02005665{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005666 struct kvm_x86_msr_filter *msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005667
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005668 msr_filter = kzalloc(sizeof(*msr_filter), GFP_KERNEL_ACCOUNT);
5669 if (!msr_filter)
5670 return NULL;
Alexander Graf1a1552542020-09-25 16:34:21 +02005671
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005672 msr_filter->default_allow = default_allow;
5673 return msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005674}
5675
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005676static void kvm_free_msr_filter(struct kvm_x86_msr_filter *msr_filter)
Alexander Graf1a1552542020-09-25 16:34:21 +02005677{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005678 u32 i;
5679
5680 if (!msr_filter)
5681 return;
5682
5683 for (i = 0; i < msr_filter->count; i++)
5684 kfree(msr_filter->ranges[i].bitmap);
5685
5686 kfree(msr_filter);
5687}
5688
5689static int kvm_add_msr_filter(struct kvm_x86_msr_filter *msr_filter,
5690 struct kvm_msr_filter_range *user_range)
5691{
Alexander Graf1a1552542020-09-25 16:34:21 +02005692 unsigned long *bitmap = NULL;
5693 size_t bitmap_size;
Alexander Graf1a1552542020-09-25 16:34:21 +02005694
5695 if (!user_range->nmsrs)
5696 return 0;
5697
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005698 if (user_range->flags & ~(KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE))
5699 return -EINVAL;
5700
5701 if (!user_range->flags)
5702 return -EINVAL;
5703
Alexander Graf1a1552542020-09-25 16:34:21 +02005704 bitmap_size = BITS_TO_LONGS(user_range->nmsrs) * sizeof(long);
5705 if (!bitmap_size || bitmap_size > KVM_MSR_FILTER_MAX_BITMAP_SIZE)
5706 return -EINVAL;
5707
5708 bitmap = memdup_user((__user u8*)user_range->bitmap, bitmap_size);
5709 if (IS_ERR(bitmap))
5710 return PTR_ERR(bitmap);
5711
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005712 msr_filter->ranges[msr_filter->count] = (struct msr_bitmap_range) {
Alexander Graf1a1552542020-09-25 16:34:21 +02005713 .flags = user_range->flags,
5714 .base = user_range->base,
5715 .nmsrs = user_range->nmsrs,
5716 .bitmap = bitmap,
5717 };
5718
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005719 msr_filter->count++;
Alexander Graf1a1552542020-09-25 16:34:21 +02005720 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005721}
5722
5723static int kvm_vm_ioctl_set_msr_filter(struct kvm *kvm, void __user *argp)
5724{
5725 struct kvm_msr_filter __user *user_msr_filter = argp;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005726 struct kvm_x86_msr_filter *new_filter, *old_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005727 struct kvm_msr_filter filter;
5728 bool default_allow;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005729 bool empty = true;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005730 int r = 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005731 u32 i;
5732
5733 if (copy_from_user(&filter, user_msr_filter, sizeof(filter)))
5734 return -EFAULT;
5735
Paolo Bonzini043248b2020-10-20 10:57:01 -04005736 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++)
5737 empty &= !filter.ranges[i].nmsrs;
Alexander Graf1a1552542020-09-25 16:34:21 +02005738
5739 default_allow = !(filter.flags & KVM_MSR_FILTER_DEFAULT_DENY);
Paolo Bonzini043248b2020-10-20 10:57:01 -04005740 if (empty && !default_allow)
5741 return -EINVAL;
5742
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005743 new_filter = kvm_alloc_msr_filter(default_allow);
5744 if (!new_filter)
5745 return -ENOMEM;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005746
Alexander Graf1a1552542020-09-25 16:34:21 +02005747 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005748 r = kvm_add_msr_filter(new_filter, &filter.ranges[i]);
5749 if (r) {
5750 kvm_free_msr_filter(new_filter);
5751 return r;
5752 }
Alexander Graf1a1552542020-09-25 16:34:21 +02005753 }
5754
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005755 mutex_lock(&kvm->lock);
5756
5757 /* The per-VM filter is protected by kvm->lock... */
5758 old_filter = srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1);
5759
5760 rcu_assign_pointer(kvm->arch.msr_filter, new_filter);
5761 synchronize_srcu(&kvm->srcu);
5762
5763 kvm_free_msr_filter(old_filter);
5764
Alexander Graf1a1552542020-09-25 16:34:21 +02005765 kvm_make_all_cpus_request(kvm, KVM_REQ_MSR_FILTER_CHANGED);
5766 mutex_unlock(&kvm->lock);
5767
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005768 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005769}
5770
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09005771#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
5772static int kvm_arch_suspend_notifier(struct kvm *kvm)
5773{
5774 struct kvm_vcpu *vcpu;
5775 int i, ret = 0;
5776
5777 mutex_lock(&kvm->lock);
5778 kvm_for_each_vcpu(i, vcpu, kvm) {
5779 if (!vcpu->arch.pv_time_enabled)
5780 continue;
5781
5782 ret = kvm_set_guest_paused(vcpu);
5783 if (ret) {
5784 kvm_err("Failed to pause guest VCPU%d: %d\n",
5785 vcpu->vcpu_id, ret);
5786 break;
5787 }
5788 }
5789 mutex_unlock(&kvm->lock);
5790
5791 return ret ? NOTIFY_BAD : NOTIFY_DONE;
5792}
5793
5794int kvm_arch_pm_notifier(struct kvm *kvm, unsigned long state)
5795{
5796 switch (state) {
5797 case PM_HIBERNATION_PREPARE:
5798 case PM_SUSPEND_PREPARE:
5799 return kvm_arch_suspend_notifier(kvm);
5800 }
5801
5802 return NOTIFY_DONE;
5803}
5804#endif /* CONFIG_HAVE_KVM_PM_NOTIFIER */
5805
Carsten Otte1fe779f2007-10-29 16:08:35 +01005806long kvm_arch_vm_ioctl(struct file *filp,
5807 unsigned int ioctl, unsigned long arg)
5808{
5809 struct kvm *kvm = filp->private_data;
5810 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03005811 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07005812 /*
5813 * This union makes it completely explicit to gcc-3.x
5814 * that these two variables' stack usage should be
5815 * combined, not added together.
5816 */
5817 union {
5818 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04005819 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005820 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07005821 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005822
5823 switch (ioctl) {
5824 case KVM_SET_TSS_ADDR:
5825 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005826 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005827 case KVM_SET_IDENTITY_MAP_ADDR: {
5828 u64 ident_addr;
5829
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005830 mutex_lock(&kvm->lock);
5831 r = -EINVAL;
5832 if (kvm->created_vcpus)
5833 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005834 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005835 if (copy_from_user(&ident_addr, argp, sizeof(ident_addr)))
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005836 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005837 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005838set_identity_unlock:
5839 mutex_unlock(&kvm->lock);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005840 break;
5841 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01005842 case KVM_SET_NR_MMU_PAGES:
5843 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005844 break;
5845 case KVM_GET_NR_MMU_PAGES:
5846 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
5847 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005848 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005849 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01005850
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005851 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01005852 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005853 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005854
Avi Kivity3e515702012-03-05 14:23:29 +02005855 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005856 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02005857 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005858
5859 r = kvm_pic_init(kvm);
5860 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005861 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005862
5863 r = kvm_ioapic_init(kvm);
5864 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01005865 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01005866 goto create_irqchip_unlock;
5867 }
5868
Avi Kivity399ec802008-11-19 13:58:46 +02005869 r = kvm_setup_default_irq_routing(kvm);
5870 if (r) {
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08005871 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01005872 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02005873 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02005874 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01005875 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02005876 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005877 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005878 create_irqchip_unlock:
5879 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005880 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005881 }
Sheng Yang78376992008-01-28 05:10:22 +08005882 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005883 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
5884 goto create_pit;
5885 case KVM_CREATE_PIT2:
5886 r = -EFAULT;
5887 if (copy_from_user(&u.pit_config, argp,
5888 sizeof(struct kvm_pit_config)))
5889 goto out;
5890 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02005891 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02005892 r = -EEXIST;
5893 if (kvm->arch.vpit)
5894 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08005895 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005896 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08005897 if (kvm->arch.vpit)
5898 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02005899 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02005900 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08005901 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005902 case KVM_GET_IRQCHIP: {
5903 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02005904 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005905
Sasha Levinff5c2c02011-12-04 19:36:29 +02005906 chip = memdup_user(argp, sizeof(*chip));
5907 if (IS_ERR(chip)) {
5908 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005909 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005910 }
5911
Carsten Otte1fe779f2007-10-29 16:08:35 +01005912 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01005913 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07005914 goto get_irqchip_out;
5915 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
5916 if (r)
5917 goto get_irqchip_out;
5918 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005919 if (copy_to_user(argp, chip, sizeof(*chip)))
Dave Hansenf0d66272008-08-11 10:01:45 -07005920 goto get_irqchip_out;
5921 r = 0;
5922 get_irqchip_out:
5923 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005924 break;
5925 }
5926 case KVM_SET_IRQCHIP: {
5927 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02005928 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005929
Sasha Levinff5c2c02011-12-04 19:36:29 +02005930 chip = memdup_user(argp, sizeof(*chip));
5931 if (IS_ERR(chip)) {
5932 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005933 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005934 }
5935
Carsten Otte1fe779f2007-10-29 16:08:35 +01005936 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01005937 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07005938 goto set_irqchip_out;
5939 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
Dave Hansenf0d66272008-08-11 10:01:45 -07005940 set_irqchip_out:
5941 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005942 break;
5943 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08005944 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08005945 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07005946 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005947 goto out;
5948 r = -ENXIO;
5949 if (!kvm->arch.vpit)
5950 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07005951 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005952 if (r)
5953 goto out;
5954 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07005955 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005956 goto out;
5957 r = 0;
5958 break;
5959 }
5960 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08005961 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005962 if (copy_from_user(&u.ps, argp, sizeof(u.ps)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005963 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005964 mutex_lock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005965 r = -ENXIO;
5966 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005967 goto set_pit_out;
Dave Hansenf0d66272008-08-11 10:01:45 -07005968 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005969set_pit_out:
5970 mutex_unlock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005971 break;
5972 }
Beth Kone9f42752009-07-07 11:50:38 -04005973 case KVM_GET_PIT2: {
5974 r = -ENXIO;
5975 if (!kvm->arch.vpit)
5976 goto out;
5977 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
5978 if (r)
5979 goto out;
5980 r = -EFAULT;
5981 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
5982 goto out;
5983 r = 0;
5984 break;
5985 }
5986 case KVM_SET_PIT2: {
5987 r = -EFAULT;
5988 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
5989 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005990 mutex_lock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04005991 r = -ENXIO;
5992 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005993 goto set_pit2_out;
Beth Kone9f42752009-07-07 11:50:38 -04005994 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005995set_pit2_out:
5996 mutex_unlock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04005997 break;
5998 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005999 case KVM_REINJECT_CONTROL: {
6000 struct kvm_reinject_control control;
6001 r = -EFAULT;
6002 if (copy_from_user(&control, argp, sizeof(control)))
6003 goto out;
Miaohe Lincad23e72019-12-07 17:25:22 +08006004 r = -ENXIO;
6005 if (!kvm->arch.vpit)
6006 goto out;
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006007 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006008 break;
6009 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006010 case KVM_SET_BOOT_CPU_ID:
6011 r = 0;
6012 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02006013 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006014 r = -EBUSY;
6015 else
6016 kvm->arch.bsp_vcpu_id = arg;
6017 mutex_unlock(&kvm->lock);
6018 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006019#ifdef CONFIG_KVM_XEN
Ed Swierkffde22a2009-10-15 15:21:43 -07006020 case KVM_XEN_HVM_CONFIG: {
Paolo Bonzini51776042017-10-26 15:45:47 +02006021 struct kvm_xen_hvm_config xhc;
Ed Swierkffde22a2009-10-15 15:21:43 -07006022 r = -EFAULT;
Paolo Bonzini51776042017-10-26 15:45:47 +02006023 if (copy_from_user(&xhc, argp, sizeof(xhc)))
Ed Swierkffde22a2009-10-15 15:21:43 -07006024 goto out;
David Woodhouse78e98782021-02-02 13:19:35 +00006025 r = kvm_xen_hvm_config(kvm, &xhc);
Ed Swierkffde22a2009-10-15 15:21:43 -07006026 break;
6027 }
Joao Martinsa76b9642020-12-03 15:52:25 +00006028 case KVM_XEN_HVM_GET_ATTR: {
6029 struct kvm_xen_hvm_attr xha;
6030
6031 r = -EFAULT;
6032 if (copy_from_user(&xha, argp, sizeof(xha)))
Hannes Edercded19f2009-02-21 02:19:13 +01006033 goto out;
Joao Martinsa76b9642020-12-03 15:52:25 +00006034 r = kvm_xen_hvm_get_attr(kvm, &xha);
6035 if (!r && copy_to_user(argp, &xha, sizeof(xha)))
6036 r = -EFAULT;
6037 break;
6038 }
6039 case KVM_XEN_HVM_SET_ATTR: {
6040 struct kvm_xen_hvm_attr xha;
6041
6042 r = -EFAULT;
6043 if (copy_from_user(&xha, argp, sizeof(xha)))
6044 goto out;
6045 r = kvm_xen_hvm_set_attr(kvm, &xha);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006046 break;
6047 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006048#endif
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006049 case KVM_SET_CLOCK: {
Vitaly Kuznetsov77fcbe82021-03-31 14:41:29 +02006050 struct kvm_arch *ka = &kvm->arch;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006051 struct kvm_clock_data user_ns;
6052 u64 now_ns;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006053
6054 r = -EFAULT;
6055 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
6056 goto out;
6057
6058 r = -EINVAL;
6059 if (user_ns.flags)
6060 goto out;
6061
6062 r = 0;
Radim Krčmář0bc48be2017-05-16 22:50:00 +02006063 /*
6064 * TODO: userspace has to take care of races with VCPU_RUN, so
6065 * kvm_gen_update_masterclock() can be cut down to locked
6066 * pvclock_update_vm_gtod_copy().
6067 */
6068 kvm_gen_update_masterclock(kvm);
Vitaly Kuznetsov77fcbe82021-03-31 14:41:29 +02006069
6070 /*
6071 * This pairs with kvm_guest_time_update(): when masterclock is
6072 * in use, we use master_kernel_ns + kvmclock_offset to set
6073 * unsigned 'system_time' so if we use get_kvmclock_ns() (which
6074 * is slightly ahead) here we risk going negative on unsigned
6075 * 'system_time' when 'user_ns.clock' is very small.
6076 */
6077 spin_lock_irq(&ka->pvclock_gtod_sync_lock);
6078 if (kvm->arch.use_master_clock)
6079 now_ns = ka->master_kernel_ns;
6080 else
6081 now_ns = get_kvmclock_base_ns();
6082 ka->kvmclock_offset = user_ns.clock - now_ns;
6083 spin_unlock_irq(&ka->pvclock_gtod_sync_lock);
6084
Radim Krčmář0bc48be2017-05-16 22:50:00 +02006085 kvm_make_all_cpus_request(kvm, KVM_REQ_CLOCK_UPDATE);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006086 break;
6087 }
6088 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006089 struct kvm_clock_data user_ns;
6090 u64 now_ns;
6091
Marcelo Tosattie891a322017-04-17 12:51:37 -03006092 now_ns = get_kvmclock_ns(kvm);
Paolo Bonzini108b2492016-09-01 14:21:03 +02006093 user_ns.clock = now_ns;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01006094 user_ns.flags = kvm->arch.use_master_clock ? KVM_CLOCK_TSC_STABLE : 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04006095 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006096
6097 r = -EFAULT;
6098 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
6099 goto out;
6100 r = 0;
6101 break;
6102 }
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006103 case KVM_MEMORY_ENCRYPT_OP: {
6104 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006105 if (kvm_x86_ops.mem_enc_op)
Jason Baronb36464772021-01-14 22:27:56 -05006106 r = static_call(kvm_x86_mem_enc_op)(kvm, argp);
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006107 break;
6108 }
Brijesh Singh69eaede2017-12-04 10:57:26 -06006109 case KVM_MEMORY_ENCRYPT_REG_REGION: {
6110 struct kvm_enc_region region;
6111
6112 r = -EFAULT;
6113 if (copy_from_user(&region, argp, sizeof(region)))
6114 goto out;
6115
6116 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006117 if (kvm_x86_ops.mem_enc_reg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006118 r = static_call(kvm_x86_mem_enc_reg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006119 break;
6120 }
6121 case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
6122 struct kvm_enc_region region;
6123
6124 r = -EFAULT;
6125 if (copy_from_user(&region, argp, sizeof(region)))
6126 goto out;
6127
6128 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006129 if (kvm_x86_ops.mem_enc_unreg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006130 r = static_call(kvm_x86_mem_enc_unreg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006131 break;
6132 }
Roman Kaganfaeb7832018-02-01 16:48:32 +03006133 case KVM_HYPERV_EVENTFD: {
6134 struct kvm_hyperv_eventfd hvevfd;
6135
6136 r = -EFAULT;
6137 if (copy_from_user(&hvevfd, argp, sizeof(hvevfd)))
6138 goto out;
6139 r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd);
6140 break;
6141 }
Eric Hankland66bb8a02019-07-10 18:25:15 -07006142 case KVM_SET_PMU_EVENT_FILTER:
6143 r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp);
6144 break;
Alexander Graf1a1552542020-09-25 16:34:21 +02006145 case KVM_X86_SET_MSR_FILTER:
6146 r = kvm_vm_ioctl_set_msr_filter(kvm, argp);
6147 break;
Carsten Otte043405e2007-10-10 17:16:19 +02006148 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02006149 r = -ENOTTY;
Carsten Otte043405e2007-10-10 17:16:19 +02006150 }
6151out:
6152 return r;
6153}
6154
6155static void kvm_init_msr_list(void)
6156{
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006157 struct x86_pmu_capability x86_pmu;
Carsten Otte043405e2007-10-10 17:16:19 +02006158 u32 dummy[2];
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006159 unsigned i;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006160
Jim Mattsone2ada662019-08-21 11:20:04 -07006161 BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4,
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006162 "Please update the fixed PMCs in msrs_to_saved_all[]");
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006163
6164 perf_get_x86_pmu_capability(&x86_pmu);
Jim Mattsone2ada662019-08-21 11:20:04 -07006165
Xiaoyao Li6cbee2b2019-11-13 09:15:21 +08006166 num_msrs_to_save = 0;
6167 num_emulated_msrs = 0;
6168 num_msr_based_features = 0;
6169
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006170 for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) {
6171 if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006172 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006173
6174 /*
6175 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006176 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006177 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006178 switch (msrs_to_save_all[i]) {
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006179 case MSR_IA32_BNDCFGS:
Liran Alon503234b2018-09-14 03:25:53 +03006180 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006181 continue;
6182 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006183 case MSR_TSC_AUX:
Sean Christopherson36fa06f2021-05-04 10:17:26 -07006184 if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP) &&
6185 !kvm_cpu_cap_has(X86_FEATURE_RDPID))
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006186 continue;
6187 break;
Maxim Levitskyf4cfcd22020-05-23 19:14:55 +03006188 case MSR_IA32_UMWAIT_CONTROL:
6189 if (!kvm_cpu_cap_has(X86_FEATURE_WAITPKG))
6190 continue;
6191 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08006192 case MSR_IA32_RTIT_CTL:
6193 case MSR_IA32_RTIT_STATUS:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006194 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT))
Chao Pengbf8c55d2018-10-24 16:05:14 +08006195 continue;
6196 break;
6197 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006198 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006199 !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering))
6200 continue;
6201 break;
6202 case MSR_IA32_RTIT_OUTPUT_BASE:
6203 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006204 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006205 (!intel_pt_validate_hw_cap(PT_CAP_topa_output) &&
6206 !intel_pt_validate_hw_cap(PT_CAP_single_range_output)))
6207 continue;
6208 break;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006209 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006210 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006211 msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >=
Chao Pengbf8c55d2018-10-24 16:05:14 +08006212 intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2)
6213 continue;
6214 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006215 case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006216 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006217 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6218 continue;
6219 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006220 case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006221 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006222 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6223 continue;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006224 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006225 default:
6226 break;
6227 }
6228
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006229 msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i];
Carsten Ottebbd9b642007-10-30 18:44:21 +01006230 }
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006231
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006232 for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
Jason Baronb36464772021-01-14 22:27:56 -05006233 if (!static_call(kvm_x86_has_emulated_msr)(NULL, emulated_msrs_all[i]))
Tom Lendackybc226f02018-05-10 22:06:39 +02006234 continue;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006235
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006236 emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006237 }
Tom Lendacky801e4592018-02-21 13:39:51 -06006238
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006239 for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) {
Tom Lendacky801e4592018-02-21 13:39:51 -06006240 struct kvm_msr_entry msr;
6241
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006242 msr.index = msr_based_features_all[i];
Wanpeng Li66421c12018-02-28 14:03:30 +08006243 if (kvm_get_msr_feature(&msr))
Tom Lendacky801e4592018-02-21 13:39:51 -06006244 continue;
6245
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006246 msr_based_features[num_msr_based_features++] = msr_based_features_all[i];
Tom Lendacky801e4592018-02-21 13:39:51 -06006247 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006248}
6249
6250static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
6251 const void *v)
6252{
Avi Kivity70252a12010-01-19 12:51:22 +02006253 int handled = 0;
6254 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006255
Avi Kivity70252a12010-01-19 12:51:22 +02006256 do {
6257 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006258 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006259 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
6260 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006261 break;
6262 handled += n;
6263 addr += n;
6264 len -= n;
6265 v += n;
6266 } while (len);
6267
6268 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006269}
6270
6271static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
6272{
Avi Kivity70252a12010-01-19 12:51:22 +02006273 int handled = 0;
6274 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006275
Avi Kivity70252a12010-01-19 12:51:22 +02006276 do {
6277 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006278 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006279 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
6280 addr, n, v))
6281 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006282 break;
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006283 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v);
Avi Kivity70252a12010-01-19 12:51:22 +02006284 handled += n;
6285 addr += n;
6286 len -= n;
6287 v += n;
6288 } while (len);
6289
6290 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006291}
6292
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006293static void kvm_set_segment(struct kvm_vcpu *vcpu,
6294 struct kvm_segment *var, int seg)
6295{
Jason Baronb36464772021-01-14 22:27:56 -05006296 static_call(kvm_x86_set_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006297}
6298
6299void kvm_get_segment(struct kvm_vcpu *vcpu,
6300 struct kvm_segment *var, int seg)
6301{
Jason Baronb36464772021-01-14 22:27:56 -05006302 static_call(kvm_x86_get_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006303}
6304
Paolo Bonzini54987b72014-09-02 13:23:06 +02006305gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
6306 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006307{
6308 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006309
6310 BUG_ON(!mmu_is_nested(vcpu));
6311
6312 /* NPT walks are always user-walks */
6313 access |= PFERR_USER_MASK;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02006314 t_gpa = vcpu->arch.mmu->gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006315
6316 return t_gpa;
6317}
6318
Avi Kivityab9ae312010-11-22 17:53:26 +02006319gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
6320 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006321{
Jason Baronb36464772021-01-14 22:27:56 -05006322 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02006323 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006324}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006325EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_read);
Gleb Natapov1871c602010-02-10 14:21:32 +02006326
Avi Kivityab9ae312010-11-22 17:53:26 +02006327 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
6328 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006329{
Jason Baronb36464772021-01-14 22:27:56 -05006330 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006331 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02006332 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006333}
6334
Avi Kivityab9ae312010-11-22 17:53:26 +02006335gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
6336 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006337{
Jason Baronb36464772021-01-14 22:27:56 -05006338 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006339 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02006340 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006341}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006342EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_write);
Gleb Natapov1871c602010-02-10 14:21:32 +02006343
6344/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02006345gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
6346 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006347{
Avi Kivityab9ae312010-11-22 17:53:26 +02006348 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006349}
6350
6351static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6352 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006353 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006354{
6355 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006356 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006357
6358 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02006359 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02006360 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006361 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02006362 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006363 int ret;
6364
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006365 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006366 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006367 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
6368 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006369 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006370 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006371 goto out;
6372 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006373
Izik Eidus77c20022008-12-29 01:42:19 +02006374 bytes -= toread;
6375 data += toread;
6376 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006377 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006378out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006379 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006380}
Izik Eidus77c20022008-12-29 01:42:19 +02006381
Gleb Natapov1871c602010-02-10 14:21:32 +02006382/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03006383static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
6384 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006385 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006386{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006387 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Jason Baronb36464772021-01-14 22:27:56 -05006388 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006389 unsigned offset;
6390 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006391
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006392 /* Inline kvm_read_guest_virt_helper for speed. */
6393 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
6394 exception);
6395 if (unlikely(gpa == UNMAPPED_GVA))
6396 return X86EMUL_PROPAGATE_FAULT;
6397
6398 offset = addr & (PAGE_SIZE-1);
6399 if (WARN_ON(offset + bytes > PAGE_SIZE))
6400 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006401 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
6402 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006403 if (unlikely(ret < 0))
6404 return X86EMUL_IO_NEEDED;
6405
6406 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02006407}
6408
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006409int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006410 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006411 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006412{
Jason Baronb36464772021-01-14 22:27:56 -05006413 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006414
Paolo Bonzini353c0952019-01-29 18:41:16 +01006415 /*
6416 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
6417 * is returned, but our callers are not ready for that and they blindly
6418 * call kvm_inject_page_fault. Ensure that they at least do not leak
6419 * uninitialized kernel stack memory into cr2 and error code.
6420 */
6421 memset(exception, 0, sizeof(*exception));
Gleb Natapov1871c602010-02-10 14:21:32 +02006422 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006423 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006424}
Nadav Har'El064aea72011-05-25 23:04:56 +03006425EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02006426
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006427static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
6428 gva_t addr, void *val, unsigned int bytes,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006429 struct x86_exception *exception, bool system)
Gleb Natapov1871c602010-02-10 14:21:32 +02006430{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006431 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006432 u32 access = 0;
6433
Jason Baronb36464772021-01-14 22:27:56 -05006434 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006435 access |= PFERR_USER_MASK;
6436
6437 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006438}
6439
Radim Krčmář7a036a62015-10-30 16:36:24 +01006440static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
6441 unsigned long addr, void *val, unsigned int bytes)
6442{
6443 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6444 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
6445
6446 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
6447}
6448
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006449static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6450 struct kvm_vcpu *vcpu, u32 access,
6451 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02006452{
6453 void *data = val;
6454 int r = X86EMUL_CONTINUE;
6455
6456 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02006457 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006458 access,
Avi Kivityab9ae312010-11-22 17:53:26 +02006459 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02006460 unsigned offset = addr & (PAGE_SIZE-1);
6461 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
6462 int ret;
6463
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006464 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006465 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006466 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02006467 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006468 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02006469 goto out;
6470 }
6471
6472 bytes -= towrite;
6473 data += towrite;
6474 addr += towrite;
6475 }
6476out:
6477 return r;
6478}
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006479
6480static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006481 unsigned int bytes, struct x86_exception *exception,
6482 bool system)
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006483{
6484 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006485 u32 access = PFERR_WRITE_MASK;
6486
Jason Baronb36464772021-01-14 22:27:56 -05006487 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006488 access |= PFERR_USER_MASK;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006489
6490 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006491 access, exception);
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006492}
6493
6494int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val,
6495 unsigned int bytes, struct x86_exception *exception)
6496{
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006497 /* kvm_write_guest_virt_system can pull in tons of pages. */
6498 vcpu->arch.l1tf_flush_l1d = true;
6499
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006500 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
6501 PFERR_WRITE_MASK, exception);
6502}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03006503EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02006504
Wanpeng Li082d06e2018-04-03 16:28:48 -07006505int handle_ud(struct kvm_vcpu *vcpu)
6506{
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006507 static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX };
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006508 int emul_type = EMULTYPE_TRAP_UD;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006509 char sig[5]; /* ud2; .ascii "kvm" */
6510 struct x86_exception e;
Wanpeng Li082d06e2018-04-03 16:28:48 -07006511
Jason Baronb36464772021-01-14 22:27:56 -05006512 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, NULL, 0)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07006513 return 1;
6514
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006515 if (force_emulation_prefix &&
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006516 kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu),
6517 sig, sizeof(sig), &e) == 0 &&
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006518 memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) {
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006519 kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig));
Sean Christophersonb4000602019-08-27 14:40:32 -07006520 emul_type = EMULTYPE_TRAP_UD_FORCED;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006521 }
6522
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006523 return kvm_emulate_instruction(vcpu, emul_type);
Wanpeng Li082d06e2018-04-03 16:28:48 -07006524}
6525EXPORT_SYMBOL_GPL(handle_ud);
6526
Tom Lendacky0f89b202016-12-14 14:59:23 -05006527static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6528 gpa_t gpa, bool write)
6529{
6530 /* For APIC access vmexit */
6531 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6532 return 1;
6533
6534 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
6535 trace_vcpu_match_mmio(gva, gpa, write, true);
6536 return 1;
6537 }
6538
6539 return 0;
6540}
6541
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006542static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6543 gpa_t *gpa, struct x86_exception *exception,
6544 bool write)
6545{
Jason Baronb36464772021-01-14 22:27:56 -05006546 u32 access = ((static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0)
Avi Kivity97d64b72012-09-12 14:52:00 +03006547 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006548
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08006549 /*
6550 * currently PKRU is only applied to ept enabled guest so
6551 * there is no pkey in EPT page table for L1 guest or EPT
6552 * shadow page table for L2 guest.
6553 */
Avi Kivity97d64b72012-09-12 14:52:00 +03006554 if (vcpu_match_mmio_gva(vcpu, gva)
Feng Wu97ec8c02014-04-01 17:46:34 +08006555 && !permission_fault(vcpu, vcpu->arch.walk_mmu,
Sean Christopherson871bd032019-08-01 13:35:21 -07006556 vcpu->arch.mmio_access, 0, access)) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006557 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
6558 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08006559 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006560 return 1;
6561 }
6562
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006563 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
6564
6565 if (*gpa == UNMAPPED_GVA)
6566 return -1;
6567
Tom Lendacky0f89b202016-12-14 14:59:23 -05006568 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006569}
6570
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006571int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006572 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02006573{
6574 int ret;
6575
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006576 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006577 if (ret < 0)
6578 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006579 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006580 return 1;
6581}
6582
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006583struct read_write_emulator_ops {
6584 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
6585 int bytes);
6586 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
6587 void *val, int bytes);
6588 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6589 int bytes, void *val);
6590 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6591 void *val, int bytes);
6592 bool write;
6593};
6594
6595static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
6596{
6597 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006598 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006599 vcpu->mmio_fragments[0].gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006600 vcpu->mmio_read_completed = 0;
6601 return 1;
6602 }
6603
6604 return 0;
6605}
6606
6607static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6608 void *val, int bytes)
6609{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006610 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006611}
6612
6613static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6614 void *val, int bytes)
6615{
6616 return emulator_write_phys(vcpu, gpa, val, bytes);
6617}
6618
6619static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
6620{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006621 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006622 return vcpu_mmio_write(vcpu, gpa, bytes, val);
6623}
6624
6625static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6626 void *val, int bytes)
6627{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006628 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006629 return X86EMUL_IO_NEEDED;
6630}
6631
6632static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6633 void *val, int bytes)
6634{
Avi Kivityf78146b2012-04-18 19:22:47 +03006635 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
6636
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006637 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006638 return X86EMUL_CONTINUE;
6639}
6640
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006641static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006642 .read_write_prepare = read_prepare,
6643 .read_write_emulate = read_emulate,
6644 .read_write_mmio = vcpu_mmio_read,
6645 .read_write_exit_mmio = read_exit_mmio,
6646};
6647
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006648static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006649 .read_write_emulate = write_emulate,
6650 .read_write_mmio = write_mmio,
6651 .read_write_exit_mmio = write_exit_mmio,
6652 .write = true,
6653};
6654
Xiao Guangrong22388a32011-07-13 14:32:31 +08006655static int emulator_read_write_onepage(unsigned long addr, void *val,
6656 unsigned int bytes,
6657 struct x86_exception *exception,
6658 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006659 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006660{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006661 gpa_t gpa;
6662 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006663 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03006664 struct kvm_mmio_fragment *frag;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006665 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006666
6667 /*
6668 * If the exit was due to a NPF we may already have a GPA.
6669 * If the GPA is present, use it to avoid the GVA to GPA table walk.
6670 * Note, this cannot be used on string operations since string
6671 * operation using rep will only have the initial GPA from the NPF
6672 * occurred.
6673 */
Sean Christopherson744e6992020-02-18 15:03:09 -08006674 if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) &&
6675 (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) {
6676 gpa = ctxt->gpa_val;
Brijesh Singh618232e2017-08-17 18:36:57 +02006677 ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write);
6678 } else {
6679 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
6680 if (ret < 0)
6681 return X86EMUL_PROPAGATE_FAULT;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006682 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006683
Brijesh Singh618232e2017-08-17 18:36:57 +02006684 if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01006685 return X86EMUL_CONTINUE;
6686
Carsten Ottebbd9b642007-10-30 18:44:21 +01006687 /*
6688 * Is this MMIO handled locally?
6689 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08006690 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02006691 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006692 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006693
Avi Kivity70252a12010-01-19 12:51:22 +02006694 gpa += handled;
6695 bytes -= handled;
6696 val += handled;
6697
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006698 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
6699 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
6700 frag->gpa = gpa;
6701 frag->data = val;
6702 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03006703 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006704}
6705
Xiubo Li52eb5a62015-03-13 17:39:45 +08006706static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
6707 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006708 void *val, unsigned int bytes,
6709 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006710 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006711{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006712 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03006713 gpa_t gpa;
6714 int rc;
6715
6716 if (ops->read_write_prepare &&
6717 ops->read_write_prepare(vcpu, val, bytes))
6718 return X86EMUL_CONTINUE;
6719
6720 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006721
Carsten Ottebbd9b642007-10-30 18:44:21 +01006722 /* Crossing a page boundary? */
6723 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03006724 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006725
6726 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006727 rc = emulator_read_write_onepage(addr, val, now, exception,
6728 vcpu, ops);
6729
Carsten Ottebbd9b642007-10-30 18:44:21 +01006730 if (rc != X86EMUL_CONTINUE)
6731 return rc;
6732 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02006733 if (ctxt->mode != X86EMUL_MODE_PROT64)
6734 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006735 val += now;
6736 bytes -= now;
6737 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006738
Avi Kivityf78146b2012-04-18 19:22:47 +03006739 rc = emulator_read_write_onepage(addr, val, bytes, exception,
6740 vcpu, ops);
6741 if (rc != X86EMUL_CONTINUE)
6742 return rc;
6743
6744 if (!vcpu->mmio_nr_fragments)
6745 return rc;
6746
6747 gpa = vcpu->mmio_fragments[0].gpa;
6748
6749 vcpu->mmio_needed = 1;
6750 vcpu->mmio_cur_fragment = 0;
6751
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006752 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03006753 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
6754 vcpu->run->exit_reason = KVM_EXIT_MMIO;
6755 vcpu->run->mmio.phys_addr = gpa;
6756
6757 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08006758}
6759
6760static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
6761 unsigned long addr,
6762 void *val,
6763 unsigned int bytes,
6764 struct x86_exception *exception)
6765{
6766 return emulator_read_write(ctxt, addr, val, bytes,
6767 exception, &read_emultor);
6768}
6769
Xiubo Li52eb5a62015-03-13 17:39:45 +08006770static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006771 unsigned long addr,
6772 const void *val,
6773 unsigned int bytes,
6774 struct x86_exception *exception)
6775{
6776 return emulator_read_write(ctxt, addr, (void *)val, bytes,
6777 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006778}
Carsten Ottebbd9b642007-10-30 18:44:21 +01006779
Avi Kivitydaea3e72010-03-15 13:59:54 +02006780#define CMPXCHG_TYPE(t, ptr, old, new) \
6781 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
6782
6783#ifdef CONFIG_X86_64
6784# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
6785#else
6786# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01006787 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02006788#endif
6789
Avi Kivity0f65dd72011-04-20 13:37:53 +03006790static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
6791 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01006792 const void *old,
6793 const void *new,
6794 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006795 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006796{
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006797 struct kvm_host_map map;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006798 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02006799 u64 page_line_mask;
Avi Kivitydaea3e72010-03-15 13:59:54 +02006800 gpa_t gpa;
Avi Kivitydaea3e72010-03-15 13:59:54 +02006801 char *kaddr;
6802 bool exchanged;
6803
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006804 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02006805 if (bytes > 8 || (bytes & (bytes - 1)))
6806 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006807
Avi Kivitydaea3e72010-03-15 13:59:54 +02006808 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006809
Avi Kivitydaea3e72010-03-15 13:59:54 +02006810 if (gpa == UNMAPPED_GVA ||
6811 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6812 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006813
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02006814 /*
6815 * Emulate the atomic as a straight write to avoid #AC if SLD is
6816 * enabled in the host and the access splits a cache line.
6817 */
6818 if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
6819 page_line_mask = ~(cache_line_size() - 1);
6820 else
6821 page_line_mask = PAGE_MASK;
6822
6823 if (((gpa + bytes - 1) & page_line_mask) != (gpa & page_line_mask))
Avi Kivitydaea3e72010-03-15 13:59:54 +02006824 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006825
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006826 if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08006827 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02006828
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006829 kaddr = map.hva + offset_in_page(gpa);
6830
Avi Kivitydaea3e72010-03-15 13:59:54 +02006831 switch (bytes) {
6832 case 1:
6833 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
6834 break;
6835 case 2:
6836 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
6837 break;
6838 case 4:
6839 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
6840 break;
6841 case 8:
6842 exchanged = CMPXCHG64(kaddr, old, new);
6843 break;
6844 default:
6845 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006846 }
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006847
6848 kvm_vcpu_unmap(vcpu, &map, true);
Avi Kivitydaea3e72010-03-15 13:59:54 +02006849
6850 if (!exchanged)
6851 return X86EMUL_CMPXCHG_FAILED;
6852
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006853 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03006854
6855 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02006856
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006857emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02006858 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006859
Avi Kivity0f65dd72011-04-20 13:37:53 +03006860 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006861}
6862
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006863static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
6864{
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006865 int r = 0, i;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006866
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006867 for (i = 0; i < vcpu->arch.pio.count; i++) {
6868 if (vcpu->arch.pio.in)
6869 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
6870 vcpu->arch.pio.size, pd);
6871 else
6872 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
6873 vcpu->arch.pio.port, vcpu->arch.pio.size,
6874 pd);
6875 if (r)
6876 break;
6877 pd += vcpu->arch.pio.size;
6878 }
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006879 return r;
6880}
6881
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006882static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
6883 unsigned short port, void *val,
6884 unsigned int count, bool in)
6885{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006886 vcpu->arch.pio.port = port;
6887 vcpu->arch.pio.in = in;
6888 vcpu->arch.pio.count = count;
6889 vcpu->arch.pio.size = size;
6890
6891 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
6892 vcpu->arch.pio.count = 0;
6893 return 1;
6894 }
6895
6896 vcpu->run->exit_reason = KVM_EXIT_IO;
6897 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
6898 vcpu->run->io.size = size;
6899 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
6900 vcpu->run->io.count = count;
6901 vcpu->run->io.port = port;
6902
6903 return 0;
6904}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006905
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006906static int emulator_pio_in(struct kvm_vcpu *vcpu, int size,
6907 unsigned short port, void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006908{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006909 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03006910
Gleb Natapov79729952010-03-18 15:20:24 +02006911 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006912 goto data_avail;
6913
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006914 memset(vcpu->arch.pio_data, 0, size * count);
6915
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006916 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
6917 if (ret) {
6918data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006919 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02006920 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02006921 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006922 return 1;
6923 }
6924
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006925 return 0;
6926}
6927
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006928static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
6929 int size, unsigned short port, void *val,
6930 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006931{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006932 return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count);
Avi Kivityca1d4a92011-04-20 13:37:53 +03006933
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006934}
6935
6936static int emulator_pio_out(struct kvm_vcpu *vcpu, int size,
6937 unsigned short port, const void *val,
6938 unsigned int count)
6939{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006940 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02006941 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006942 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006943}
6944
Carsten Ottebbd9b642007-10-30 18:44:21 +01006945static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
6946 int size, unsigned short port,
6947 const void *val, unsigned int count)
6948{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006949 return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006950}
6951
6952static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
6953{
Jason Baronb36464772021-01-14 22:27:56 -05006954 return static_call(kvm_x86_get_segment_base)(vcpu, seg);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006955}
6956
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006957static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006958{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006959 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006960}
6961
Jiang Biaoae6a2372016-11-07 08:54:51 +08006962static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006963{
6964 if (!need_emulate_wbinvd(vcpu))
6965 return X86EMUL_CONTINUE;
6966
Jason Baronb36464772021-01-14 22:27:56 -05006967 if (static_call(kvm_x86_has_wbinvd_exit)()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01006968 int cpu = get_cpu();
6969
6970 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Wanpeng Lic2162e12021-03-12 10:45:51 +08006971 on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006972 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01006973 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006974 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01006975 } else
6976 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006977 return X86EMUL_CONTINUE;
6978}
Joel Schopp5cb56052015-03-02 13:43:31 -06006979
6980int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
6981{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006982 kvm_emulate_wbinvd_noskip(vcpu);
6983 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06006984}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006985EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
6986
Joel Schopp5cb56052015-03-02 13:43:31 -06006987
6988
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03006989static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
6990{
Joel Schopp5cb56052015-03-02 13:43:31 -06006991 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03006992}
6993
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05006994static void emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
6995 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006996{
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05006997 kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006998}
6999
Xiubo Li52eb5a62015-03-13 17:39:45 +08007000static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
7001 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007002{
Gleb Natapov338dbc92010-04-28 19:15:32 +03007003
Paolo Bonzini996ff542020-12-14 07:49:54 -05007004 return kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007005}
7006
Gleb Natapov52a46612010-03-18 15:20:03 +02007007static u64 mk_cr_64(u64 curr_cr, u32 new_val)
7008{
7009 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
7010}
7011
Avi Kivity717746e2011-04-20 13:37:53 +03007012static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02007013{
Avi Kivity717746e2011-04-20 13:37:53 +03007014 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02007015 unsigned long value;
7016
7017 switch (cr) {
7018 case 0:
7019 value = kvm_read_cr0(vcpu);
7020 break;
7021 case 2:
7022 value = vcpu->arch.cr2;
7023 break;
7024 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02007025 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02007026 break;
7027 case 4:
7028 value = kvm_read_cr4(vcpu);
7029 break;
7030 case 8:
7031 value = kvm_get_cr8(vcpu);
7032 break;
7033 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007034 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02007035 return 0;
7036 }
7037
7038 return value;
7039}
7040
Avi Kivity717746e2011-04-20 13:37:53 +03007041static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02007042{
Avi Kivity717746e2011-04-20 13:37:53 +03007043 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03007044 int res = 0;
7045
Gleb Natapov52a46612010-03-18 15:20:03 +02007046 switch (cr) {
7047 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03007048 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007049 break;
7050 case 2:
7051 vcpu->arch.cr2 = val;
7052 break;
7053 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03007054 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007055 break;
7056 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03007057 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007058 break;
7059 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007060 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007061 break;
7062 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007063 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03007064 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02007065 }
Gleb Natapov0f122442010-04-28 19:15:31 +03007066
7067 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02007068}
7069
Avi Kivity717746e2011-04-20 13:37:53 +03007070static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02007071{
Jason Baronb36464772021-01-14 22:27:56 -05007072 return static_call(kvm_x86_get_cpl)(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02007073}
7074
Avi Kivity4bff1e862011-04-20 13:37:53 +03007075static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007076{
Jason Baronb36464772021-01-14 22:27:56 -05007077 static_call(kvm_x86_get_gdt)(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007078}
7079
Avi Kivity4bff1e862011-04-20 13:37:53 +03007080static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007081{
Jason Baronb36464772021-01-14 22:27:56 -05007082 static_call(kvm_x86_get_idt)(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007083}
7084
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007085static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7086{
Jason Baronb36464772021-01-14 22:27:56 -05007087 static_call(kvm_x86_set_gdt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007088}
7089
7090static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7091{
Jason Baronb36464772021-01-14 22:27:56 -05007092 static_call(kvm_x86_set_idt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007093}
7094
Avi Kivity4bff1e862011-04-20 13:37:53 +03007095static unsigned long emulator_get_cached_segment_base(
7096 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03007097{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007098 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03007099}
7100
Avi Kivity1aa36612011-04-27 13:20:30 +03007101static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
7102 struct desc_struct *desc, u32 *base3,
7103 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007104{
7105 struct kvm_segment var;
7106
Avi Kivity4bff1e862011-04-20 13:37:53 +03007107 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03007108 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007109
Gleb Natapov378a8b02013-01-21 15:36:48 +02007110 if (var.unusable) {
7111 memset(desc, 0, sizeof(*desc));
Radim Krčmářf0367ee2017-05-18 19:37:30 +02007112 if (base3)
7113 *base3 = 0;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007114 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02007115 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007116
7117 if (var.g)
7118 var.limit >>= 12;
7119 set_desc_limit(desc, var.limit);
7120 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02007121#ifdef CONFIG_X86_64
7122 if (base3)
7123 *base3 = var.base >> 32;
7124#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007125 desc->type = var.type;
7126 desc->s = var.s;
7127 desc->dpl = var.dpl;
7128 desc->p = var.present;
7129 desc->avl = var.avl;
7130 desc->l = var.l;
7131 desc->d = var.db;
7132 desc->g = var.g;
7133
7134 return true;
7135}
7136
Avi Kivity1aa36612011-04-27 13:20:30 +03007137static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
7138 struct desc_struct *desc, u32 base3,
7139 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007140{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007141 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007142 struct kvm_segment var;
7143
Avi Kivity1aa36612011-04-27 13:20:30 +03007144 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007145 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02007146#ifdef CONFIG_X86_64
7147 var.base |= ((u64)base3) << 32;
7148#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007149 var.limit = get_desc_limit(desc);
7150 if (desc->g)
7151 var.limit = (var.limit << 12) | 0xfff;
7152 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007153 var.dpl = desc->dpl;
7154 var.db = desc->d;
7155 var.s = desc->s;
7156 var.l = desc->l;
7157 var.g = desc->g;
7158 var.avl = desc->avl;
7159 var.present = desc->p;
7160 var.unusable = !var.present;
7161 var.padding = 0;
7162
7163 kvm_set_segment(vcpu, &var, seg);
7164 return;
7165}
7166
Avi Kivity717746e2011-04-20 13:37:53 +03007167static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
7168 u32 msr_index, u64 *pdata)
7169{
Alexander Graf1ae09952020-09-25 16:34:16 +02007170 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7171 int r;
7172
7173 r = kvm_get_msr(vcpu, msr_index, pdata);
7174
7175 if (r && kvm_get_msr_user_space(vcpu, msr_index, r)) {
7176 /* Bounce to user space */
7177 return X86EMUL_IO_NEEDED;
7178 }
7179
7180 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007181}
7182
7183static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
7184 u32 msr_index, u64 data)
7185{
Alexander Graf1ae09952020-09-25 16:34:16 +02007186 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7187 int r;
7188
7189 r = kvm_set_msr(vcpu, msr_index, data);
7190
7191 if (r && kvm_set_msr_user_space(vcpu, msr_index, data, r)) {
7192 /* Bounce to user space */
7193 return X86EMUL_IO_NEEDED;
7194 }
7195
7196 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007197}
7198
Paolo Bonzini64d60672015-05-07 11:36:11 +02007199static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
7200{
7201 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7202
7203 return vcpu->arch.smbase;
7204}
7205
7206static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
7207{
7208 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7209
7210 vcpu->arch.smbase = smbase;
7211}
7212
Nadav Amit67f4d422014-06-02 18:34:09 +03007213static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
7214 u32 pmc)
7215{
Like Xu98ff80f2019-10-27 18:52:40 +08007216 return kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03007217}
7218
Avi Kivity222d21a2011-11-10 14:57:30 +02007219static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
7220 u32 pmc, u64 *pdata)
7221{
Wei Huangc6702c92015-06-19 13:44:45 +02007222 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02007223}
7224
Avi Kivity6c3287f2011-04-20 15:43:05 +03007225static void emulator_halt(struct x86_emulate_ctxt *ctxt)
7226{
7227 emul_to_vcpu(ctxt)->arch.halt_request = 1;
7228}
7229
Avi Kivity29535382011-04-20 13:37:53 +03007230static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007231 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007232 enum x86_intercept_stage stage)
7233{
Jason Baronb36464772021-01-14 22:27:56 -05007234 return static_call(kvm_x86_check_intercept)(emul_to_vcpu(ctxt), info, stage,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007235 &ctxt->exception);
Avi Kivityc4f035c2011-04-04 12:39:22 +02007236}
7237
Yu Zhange911eb32017-08-24 20:27:52 +08007238static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Sean Christophersonf91af512020-03-04 17:34:37 -08007239 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx,
7240 bool exact_only)
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007241{
Sean Christophersonf91af512020-03-04 17:34:37 -08007242 return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007243}
7244
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007245static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt)
7246{
7247 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM);
7248}
7249
7250static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt)
7251{
7252 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE);
7253}
7254
7255static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt)
7256{
7257 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR);
7258}
7259
Avi Kivitydd856ef2012-08-27 23:46:17 +03007260static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
7261{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007262 return kvm_register_read_raw(emul_to_vcpu(ctxt), reg);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007263}
7264
7265static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
7266{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007267 kvm_register_write_raw(emul_to_vcpu(ctxt), reg, val);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007268}
7269
Nadav Amit801806d2015-01-26 09:32:23 +02007270static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
7271{
Jason Baronb36464772021-01-14 22:27:56 -05007272 static_call(kvm_x86_set_nmi_mask)(emul_to_vcpu(ctxt), masked);
Nadav Amit801806d2015-01-26 09:32:23 +02007273}
7274
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007275static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt)
7276{
7277 return emul_to_vcpu(ctxt)->arch.hflags;
7278}
7279
Sean Christophersonedce4652021-06-09 11:56:13 -07007280static void emulator_exiting_smm(struct x86_emulate_ctxt *ctxt)
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007281{
Sean Christopherson78fcb2c2021-06-09 11:56:11 -07007282 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7283
Sean Christophersondc872752021-06-09 11:56:15 -07007284 kvm_smm_changed(vcpu, false);
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007285}
7286
Sean Christophersonecc513e2021-06-09 11:56:19 -07007287static int emulator_leave_smm(struct x86_emulate_ctxt *ctxt,
Sean Christophersoned193212019-04-02 08:03:09 -07007288 const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007289{
Sean Christophersonecc513e2021-06-09 11:56:19 -07007290 return static_call(kvm_x86_leave_smm)(emul_to_vcpu(ctxt), smstate);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007291}
7292
Sean Christopherson25b17222021-06-09 11:56:12 -07007293static void emulator_triple_fault(struct x86_emulate_ctxt *ctxt)
7294{
7295 kvm_make_request(KVM_REQ_TRIPLE_FAULT, emul_to_vcpu(ctxt));
7296}
7297
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007298static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr)
7299{
7300 return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr);
7301}
7302
Mathias Krause0225fb52012-08-30 01:30:16 +02007303static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03007304 .read_gpr = emulator_read_gpr,
7305 .write_gpr = emulator_write_gpr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02007306 .read_std = emulator_read_std,
7307 .write_std = emulator_write_std,
Radim Krčmář7a036a62015-10-30 16:36:24 +01007308 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02007309 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007310 .read_emulated = emulator_read_emulated,
7311 .write_emulated = emulator_write_emulated,
7312 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007313 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007314 .pio_in_emulated = emulator_pio_in_emulated,
7315 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03007316 .get_segment = emulator_get_segment,
7317 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03007318 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007319 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007320 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007321 .set_gdt = emulator_set_gdt,
7322 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02007323 .get_cr = emulator_get_cr,
7324 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02007325 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03007326 .get_dr = emulator_get_dr,
7327 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02007328 .get_smbase = emulator_get_smbase,
7329 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03007330 .set_msr = emulator_set_msr,
7331 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03007332 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02007333 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03007334 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007335 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03007336 .fix_hypercall = emulator_fix_hypercall,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007337 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007338 .get_cpuid = emulator_get_cpuid,
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007339 .guest_has_long_mode = emulator_guest_has_long_mode,
7340 .guest_has_movbe = emulator_guest_has_movbe,
7341 .guest_has_fxsr = emulator_guest_has_fxsr,
Nadav Amit801806d2015-01-26 09:32:23 +02007342 .set_nmi_mask = emulator_set_nmi_mask,
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007343 .get_hflags = emulator_get_hflags,
Sean Christophersonedce4652021-06-09 11:56:13 -07007344 .exiting_smm = emulator_exiting_smm,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007345 .leave_smm = emulator_leave_smm,
Sean Christopherson25b17222021-06-09 11:56:12 -07007346 .triple_fault = emulator_triple_fault,
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007347 .set_xcr = emulator_set_xcr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007348};
7349
Gleb Natapov95cb2292010-04-28 19:15:43 +03007350static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
7351{
Jason Baronb36464772021-01-14 22:27:56 -05007352 u32 int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03007353 /*
7354 * an sti; sti; sequence only disable interrupts for the first
7355 * instruction. So, if the last instruction, be it emulated or
7356 * not, left the system with the INT_STI flag enabled, it
7357 * means that the last instruction is an sti. We should not
7358 * leave the flag on in this case. The same goes for mov ss
7359 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02007360 if (int_shadow & mask)
7361 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007362 if (unlikely(int_shadow || mask)) {
Jason Baronb36464772021-01-14 22:27:56 -05007363 static_call(kvm_x86_set_interrupt_shadow)(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007364 if (!mask)
7365 kvm_make_request(KVM_REQ_EVENT, vcpu);
7366 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03007367}
7368
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007369static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03007370{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007371 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02007372 if (ctxt->exception.vector == PF_VECTOR)
Sean Christopherson53b3d8e2020-03-20 14:28:01 -07007373 return kvm_inject_emulated_page_fault(vcpu, &ctxt->exception);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007374
7375 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02007376 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
7377 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03007378 else
Avi Kivityda9cb572010-11-22 17:53:21 +02007379 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007380 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03007381}
7382
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007383static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu)
7384{
7385 struct x86_emulate_ctxt *ctxt;
7386
7387 ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT);
7388 if (!ctxt) {
7389 pr_err("kvm: failed to allocate vcpu's emulator\n");
7390 return NULL;
7391 }
7392
7393 ctxt->vcpu = vcpu;
7394 ctxt->ops = &emulate_ops;
7395 vcpu->arch.emulate_ctxt = ctxt;
7396
7397 return ctxt;
7398}
7399
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007400static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
7401{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007402 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007403 int cs_db, cs_l;
7404
Jason Baronb36464772021-01-14 22:27:56 -05007405 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007406
Sean Christopherson744e6992020-02-18 15:03:09 -08007407 ctxt->gpa_available = false;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007408 ctxt->eflags = kvm_get_rflags(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007409 ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0;
7410
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007411 ctxt->eip = kvm_rip_read(vcpu);
7412 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
7413 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03007414 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007415 cs_db ? X86EMUL_MODE_PROT32 :
7416 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02007417 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007418 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
7419 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007420
Wanpeng Lida6393c2021-05-27 17:01:36 -07007421 ctxt->interruptibility = 0;
7422 ctxt->have_exception = false;
7423 ctxt->exception.vector = -1;
7424 ctxt->perm_ok = false;
7425
Avi Kivitydd856ef2012-08-27 23:46:17 +03007426 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007427 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007428}
7429
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007430void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02007431{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007432 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02007433 int ret;
7434
7435 init_emulate_ctxt(vcpu);
7436
Avi Kivity9dac77f2011-06-01 15:34:25 +03007437 ctxt->op_bytes = 2;
7438 ctxt->ad_bytes = 2;
7439 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007440 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02007441
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007442 if (ret != X86EMUL_CONTINUE) {
7443 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7444 } else {
7445 ctxt->eip = ctxt->_eip;
7446 kvm_rip_write(vcpu, ctxt->eip);
7447 kvm_set_rflags(vcpu, ctxt->eflags);
7448 }
Mohammed Gamal63995652010-09-19 14:34:06 +02007449}
7450EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
7451
Liran Alone2366172018-03-12 13:12:49 +02007452static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007453{
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007454 ++vcpu->stat.insn_emulation_fail;
7455 trace_kvm_emulate_insn_failed(vcpu);
Liran Alone2366172018-03-12 13:12:49 +02007456
Sean Christopherson42cbf062019-08-27 14:40:31 -07007457 if (emulation_type & EMULTYPE_VMWARE_GP) {
7458 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007459 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007460 }
Liran Alone2366172018-03-12 13:12:49 +02007461
Sean Christopherson738fece2019-08-27 14:40:34 -07007462 if (emulation_type & EMULTYPE_SKIP) {
7463 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7464 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7465 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007466 return 0;
Sean Christopherson738fece2019-08-27 14:40:34 -07007467 }
7468
Sean Christopherson22da61c2019-08-27 14:40:28 -07007469 kvm_queue_exception(vcpu, UD_VECTOR);
7470
Jason Baronb36464772021-01-14 22:27:56 -05007471 if (!is_guest_mode(vcpu) && static_call(kvm_x86_get_cpl)(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007472 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7473 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7474 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007475 return 0;
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007476 }
Liran Alone2366172018-03-12 13:12:49 +02007477
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007478 return 1;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007479}
7480
Sean Christopherson736c2912019-12-06 15:57:14 -08007481static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007482 bool write_fault_to_shadow_pgtable,
7483 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03007484{
Sean Christopherson736c2912019-12-06 15:57:14 -08007485 gpa_t gpa = cr2_or_gpa;
Dan Williamsba049e92016-01-15 16:56:11 -08007486 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007487
Sean Christopherson92daa482020-02-18 15:03:08 -08007488 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Gleb Natapov991eebf2013-04-11 12:10:51 +03007489 return false;
7490
Sean Christopherson92daa482020-02-18 15:03:08 -08007491 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7492 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007493 return false;
7494
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007495 if (!vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007496 /*
7497 * Write permission should be allowed since only
7498 * write access need to be emulated.
7499 */
Sean Christopherson736c2912019-12-06 15:57:14 -08007500 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03007501
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007502 /*
7503 * If the mapping is invalid in guest, let cpu retry
7504 * it to generate fault.
7505 */
7506 if (gpa == UNMAPPED_GVA)
7507 return true;
7508 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007509
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007510 /*
7511 * Do not retry the unhandleable instruction if it faults on the
7512 * readonly host memory, otherwise it will goto a infinite loop:
7513 * retry instruction -> write #PF -> emulation fail -> retry
7514 * instruction -> ...
7515 */
7516 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007517
7518 /*
7519 * If the instruction failed on the error pfn, it can not be fixed,
7520 * report the error to userspace.
7521 */
7522 if (is_error_noslot_pfn(pfn))
7523 return false;
7524
7525 kvm_release_pfn_clean(pfn);
7526
7527 /* The instructions are well-emulated on direct mmu. */
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007528 if (vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007529 unsigned int indirect_shadow_pages;
7530
Ben Gardon531810c2021-02-02 10:57:24 -08007531 write_lock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007532 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
Ben Gardon531810c2021-02-02 10:57:24 -08007533 write_unlock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007534
7535 if (indirect_shadow_pages)
7536 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
7537
Gleb Natapova6f177e2010-07-08 12:41:12 +03007538 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007539 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007540
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007541 /*
7542 * if emulation was due to access to shadowed page table
7543 * and it failed try to unshadow page and re-enter the
7544 * guest to let CPU execute the instruction.
7545 */
7546 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007547
7548 /*
7549 * If the access faults on its page table, it can not
7550 * be fixed by unprotecting shadow page and it should
7551 * be reported to userspace.
7552 */
7553 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007554}
7555
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007556static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
Sean Christopherson736c2912019-12-06 15:57:14 -08007557 gpa_t cr2_or_gpa, int emulation_type)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007558{
7559 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christopherson736c2912019-12-06 15:57:14 -08007560 unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007561
7562 last_retry_eip = vcpu->arch.last_retry_eip;
7563 last_retry_addr = vcpu->arch.last_retry_addr;
7564
7565 /*
7566 * If the emulation is caused by #PF and it is non-page_table
7567 * writing instruction, it means the VM-EXIT is caused by shadow
7568 * page protected, we can zap the shadow page and retry this
7569 * instruction directly.
7570 *
7571 * Note: if the guest uses a non-page-table modifying instruction
7572 * on the PDE that points to the instruction, then we will unmap
7573 * the instruction and go to an infinite loop. So, we cache the
7574 * last retried eip and the last fault address, if we meet the eip
7575 * and the address again, we can break out of the potential infinite
7576 * loop.
7577 */
7578 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
7579
Sean Christopherson92daa482020-02-18 15:03:08 -08007580 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007581 return false;
7582
Sean Christopherson92daa482020-02-18 15:03:08 -08007583 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7584 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007585 return false;
7586
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007587 if (x86_page_table_writing_insn(ctxt))
7588 return false;
7589
Sean Christopherson736c2912019-12-06 15:57:14 -08007590 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007591 return false;
7592
7593 vcpu->arch.last_retry_eip = ctxt->eip;
Sean Christopherson736c2912019-12-06 15:57:14 -08007594 vcpu->arch.last_retry_addr = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007595
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007596 if (!vcpu->arch.mmu->direct_map)
Sean Christopherson736c2912019-12-06 15:57:14 -08007597 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007598
Xiao Guangrong22368022013-01-13 23:44:12 +08007599 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007600
7601 return true;
7602}
7603
Gleb Natapov716d51a2012-09-03 15:24:26 +03007604static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
7605static int complete_emulated_pio(struct kvm_vcpu *vcpu);
7606
Sean Christophersondc872752021-06-09 11:56:15 -07007607static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm)
Paolo Bonzinia5845392015-04-01 18:18:53 +02007608{
Sean Christopherson1270e642021-06-09 11:56:17 -07007609 trace_kvm_smm_transition(vcpu->vcpu_id, vcpu->arch.smbase, entering_smm);
Sean Christopherson0d7ee6f2021-06-09 11:56:16 -07007610
Sean Christophersondc872752021-06-09 11:56:15 -07007611 if (entering_smm) {
7612 vcpu->arch.hflags |= HF_SMM_MASK;
7613 } else {
7614 vcpu->arch.hflags &= ~(HF_SMM_MASK | HF_SMM_INSIDE_NMI_MASK);
7615
Paolo Bonzinic43203c2016-06-01 22:26:00 +02007616 /* Process a latched INIT or SMI, if any. */
7617 kvm_make_request(KVM_REQ_EVENT, vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007618 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02007619
7620 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007621}
7622
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007623static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
7624 unsigned long *db)
7625{
7626 u32 dr6 = 0;
7627 int i;
7628 u32 enable, rwlen;
7629
7630 enable = dr7;
7631 rwlen = dr7 >> 16;
7632 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
7633 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
7634 dr6 |= (1 << i);
7635 return dr6;
7636}
7637
Sean Christopherson120c2c42019-08-27 14:40:29 -07007638static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007639{
7640 struct kvm_run *kvm_run = vcpu->run;
7641
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007642 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08007643 kvm_run->debug.arch.dr6 = DR6_BS | DR6_ACTIVE_LOW;
Peter Xud5d260c2020-05-05 16:49:59 -04007644 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007645 kvm_run->debug.arch.exception = DB_VECTOR;
7646 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007647 return 0;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007648 }
Sean Christopherson120c2c42019-08-27 14:40:29 -07007649 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007650 return 1;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007651}
7652
Kyle Huey6affcbe2016-11-29 12:40:40 -08007653int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
7654{
Jason Baronb36464772021-01-14 22:27:56 -05007655 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007656 int r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007657
Jason Baronb36464772021-01-14 22:27:56 -05007658 r = static_call(kvm_x86_skip_emulated_instruction)(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007659 if (unlikely(!r))
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007660 return 0;
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007661
7662 /*
7663 * rflags is the old, "raw" value of the flags. The new value has
7664 * not been saved yet.
7665 *
7666 * This is correct even for TF set by the guest, because "the
7667 * processor will not generate this exception after the instruction
7668 * that sets the TF flag".
7669 */
7670 if (unlikely(rflags & X86_EFLAGS_TF))
Sean Christopherson120c2c42019-08-27 14:40:29 -07007671 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007672 return r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007673}
7674EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
7675
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007676static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
7677{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007678 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
7679 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02007680 struct kvm_run *kvm_run = vcpu->run;
7681 unsigned long eip = kvm_get_linear_rip(vcpu);
7682 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007683 vcpu->arch.guest_debug_dr7,
7684 vcpu->arch.eff_db);
7685
7686 if (dr6 != 0) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08007687 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Nadav Amit82b32772014-11-02 11:54:45 +02007688 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007689 kvm_run->debug.arch.exception = DB_VECTOR;
7690 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007691 *r = 0;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007692 return true;
7693 }
7694 }
7695
Nadav Amit4161a562014-07-17 01:19:31 +03007696 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
7697 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02007698 unsigned long eip = kvm_get_linear_rip(vcpu);
7699 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007700 vcpu->arch.dr7,
7701 vcpu->arch.db);
7702
7703 if (dr6 != 0) {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04007704 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007705 *r = 1;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007706 return true;
7707 }
7708 }
7709
7710 return false;
7711}
7712
Liran Alon04789b62018-03-12 13:12:50 +02007713static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt)
7714{
Arbel Moshe2d7921c2018-03-12 13:12:53 +02007715 switch (ctxt->opcode_len) {
7716 case 1:
7717 switch (ctxt->b) {
7718 case 0xe4: /* IN */
7719 case 0xe5:
7720 case 0xec:
7721 case 0xed:
7722 case 0xe6: /* OUT */
7723 case 0xe7:
7724 case 0xee:
7725 case 0xef:
7726 case 0x6c: /* INS */
7727 case 0x6d:
7728 case 0x6e: /* OUTS */
7729 case 0x6f:
7730 return true;
7731 }
7732 break;
7733 case 2:
7734 switch (ctxt->b) {
7735 case 0x33: /* RDPMC */
7736 return true;
7737 }
7738 break;
Liran Alon04789b62018-03-12 13:12:50 +02007739 }
7740
7741 return false;
7742}
7743
Wei Huang4aa26912021-01-26 03:18:28 -05007744/*
7745 * Decode to be emulated instruction. Return EMULATION_OK if success.
7746 */
7747int x86_decode_emulated_instruction(struct kvm_vcpu *vcpu, int emulation_type,
7748 void *insn, int insn_len)
7749{
7750 int r = EMULATION_OK;
7751 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7752
7753 init_emulate_ctxt(vcpu);
7754
7755 /*
7756 * We will reenter on the same instruction since we do not set
7757 * complete_userspace_io. This does not handle watchpoints yet,
7758 * those would be handled in the emulate_ops.
7759 */
7760 if (!(emulation_type & EMULTYPE_SKIP) &&
7761 kvm_vcpu_check_breakpoint(vcpu, &r))
7762 return r;
7763
Wanpeng Lib35491e2021-05-27 17:01:37 -07007764 r = x86_decode_insn(ctxt, insn, insn_len, emulation_type);
Wei Huang4aa26912021-01-26 03:18:28 -05007765
7766 trace_kvm_emulate_insn_start(vcpu);
7767 ++vcpu->stat.insn_emulation;
7768
7769 return r;
7770}
7771EXPORT_SYMBOL_GPL(x86_decode_emulated_instruction);
7772
Sean Christopherson736c2912019-12-06 15:57:14 -08007773int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
7774 int emulation_type, void *insn, int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007775{
Gleb Natapov95cb2292010-04-28 19:15:43 +03007776 int r;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007777 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007778 bool writeback = true;
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007779 bool write_fault_to_spt;
7780
Jason Baronb36464772021-01-14 22:27:56 -05007781 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, insn, insn_len)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007782 return 1;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007783
Paolo Bonzinic595cee2018-07-02 13:07:14 +02007784 vcpu->arch.l1tf_flush_l1d = true;
7785
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007786 /*
7787 * Clear write_fault_to_shadow_pgtable here to ensure it is
7788 * never reused.
7789 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007790 write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007791 vcpu->arch.write_fault_to_shadow_pgtable = false;
Gleb Natapov8d7d81022011-04-12 12:36:21 +03007792
Sheng Yang571008d2008-01-02 14:49:22 +08007793 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Wei Huang4aa26912021-01-26 03:18:28 -05007794 kvm_clear_exception_queue(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007795
Wei Huang4aa26912021-01-26 03:18:28 -05007796 r = x86_decode_emulated_instruction(vcpu, emulation_type,
7797 insn, insn_len);
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09007798 if (r != EMULATION_OK) {
Sean Christophersonb4000602019-08-27 14:40:32 -07007799 if ((emulation_type & EMULTYPE_TRAP_UD) ||
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07007800 (emulation_type & EMULTYPE_TRAP_UD_FORCED)) {
7801 kvm_queue_exception(vcpu, UD_VECTOR);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007802 return 1;
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07007803 }
Sean Christopherson736c2912019-12-06 15:57:14 -08007804 if (reexecute_instruction(vcpu, cr2_or_gpa,
7805 write_fault_to_spt,
7806 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007807 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00007808 if (ctxt->have_exception) {
Jan Dakinevichc8848ce2019-08-27 13:07:08 +00007809 /*
7810 * #UD should result in just EMULATION_FAILED, and trap-like
7811 * exception should not be encountered during decode.
7812 */
7813 WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR ||
7814 exception_type(ctxt->exception.vector) == EXCPT_TRAP);
Jan Dakinevich8530a792019-08-27 13:07:09 +00007815 inject_emulated_exception(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007816 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00007817 }
Liran Alone2366172018-03-12 13:12:49 +02007818 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007819 }
7820 }
7821
Sean Christopherson42cbf062019-08-27 14:40:31 -07007822 if ((emulation_type & EMULTYPE_VMWARE_GP) &&
7823 !is_vmware_backdoor_opcode(ctxt)) {
7824 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007825 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007826 }
Liran Alon04789b62018-03-12 13:12:50 +02007827
Sean Christopherson1957aa62019-08-27 14:40:39 -07007828 /*
7829 * Note, EMULTYPE_SKIP is intended for use *only* by vendor callbacks
7830 * for kvm_skip_emulated_instruction(). The caller is responsible for
7831 * updating interruptibility state and injecting single-step #DBs.
7832 */
Gleb Natapovba8afb62009-04-12 13:36:57 +03007833 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03007834 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03007835 if (ctxt->eflags & X86_EFLAGS_RF)
7836 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007837 return 1;
Gleb Natapovba8afb62009-04-12 13:36:57 +03007838 }
7839
Sean Christopherson736c2912019-12-06 15:57:14 -08007840 if (retry_instruction(ctxt, cr2_or_gpa, emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007841 return 1;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007842
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007843 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03007844 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007845 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
7846 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03007847 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007848 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03007849
Gleb Natapov5cd21912010-03-18 15:20:26 +02007850restart:
Sean Christopherson92daa482020-02-18 15:03:08 -08007851 if (emulation_type & EMULTYPE_PF) {
7852 /* Save the faulting GPA (cr2) in the address field */
7853 ctxt->exception.address = cr2_or_gpa;
7854
7855 /* With shadow page tables, cr2 contains a GVA or nGPA. */
7856 if (vcpu->arch.mmu->direct_map) {
Sean Christopherson744e6992020-02-18 15:03:09 -08007857 ctxt->gpa_available = true;
7858 ctxt->gpa_val = cr2_or_gpa;
Sean Christopherson92daa482020-02-18 15:03:08 -08007859 }
7860 } else {
7861 /* Sanitize the address out of an abundance of paranoia. */
7862 ctxt->exception.address = 0;
7863 }
Tom Lendacky0f89b202016-12-14 14:59:23 -05007864
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007865 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03007866
Joerg Roedel775fde82011-04-04 12:39:24 +02007867 if (r == EMULATION_INTERCEPTED)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007868 return 1;
Joerg Roedel775fde82011-04-04 12:39:24 +02007869
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007870 if (r == EMULATION_FAILED) {
Sean Christopherson736c2912019-12-06 15:57:14 -08007871 if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007872 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007873 return 1;
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03007874
Liran Alone2366172018-03-12 13:12:49 +02007875 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007876 }
7877
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007878 if (ctxt->have_exception) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007879 r = 1;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007880 if (inject_emulated_exception(vcpu))
7881 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007882 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02007883 if (!vcpu->arch.pio.in) {
7884 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03007885 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02007886 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007887 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03007888 vcpu->arch.complete_userspace_io = complete_emulated_pio;
7889 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007890 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007891 } else if (vcpu->mmio_needed) {
Sean Christophersonbc8a0aa2019-08-27 14:40:27 -07007892 ++vcpu->stat.mmio_exits;
7893
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007894 if (!vcpu->mmio_is_write)
7895 writeback = false;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007896 r = 0;
Gleb Natapov716d51a2012-09-03 15:24:26 +03007897 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007898 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03007899 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007900 else
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007901 r = 1;
Gleb Natapove85d28f2010-07-29 15:11:52 +03007902
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007903 if (writeback) {
Jason Baronb36464772021-01-14 22:27:56 -05007904 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007905 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007906 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Nadav Amit38827db2014-11-02 11:54:53 +02007907 if (!ctxt->have_exception ||
Sean Christopherson75ee23b2019-08-23 13:55:44 -07007908 exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
7909 kvm_rip_write(vcpu, ctxt->eip);
Felipe Franciosi384dea12020-05-19 08:11:22 +00007910 if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)))
Sean Christopherson120c2c42019-08-27 14:40:29 -07007911 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007912 if (kvm_x86_ops.update_emulated_instruction)
Jason Baronb36464772021-01-14 22:27:56 -05007913 static_call(kvm_x86_update_emulated_instruction)(vcpu);
Nadav Amit38827db2014-11-02 11:54:53 +02007914 __kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07007915 }
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007916
7917 /*
7918 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
7919 * do nothing, and it will be requested again as soon as
7920 * the shadow expires. But we still need to check here,
7921 * because POPF has no interrupt shadow.
7922 */
7923 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
7924 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007925 } else
7926 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03007927
Gleb Natapove85d28f2010-07-29 15:11:52 +03007928 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007929}
Sean Christophersonc60658d2018-08-23 13:56:53 -07007930
7931int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type)
7932{
7933 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
7934}
7935EXPORT_SYMBOL_GPL(kvm_emulate_instruction);
7936
7937int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
7938 void *insn, int insn_len)
7939{
7940 return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len);
7941}
7942EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007943
Sean Christopherson8764ed52019-04-29 07:04:15 -07007944static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu)
7945{
7946 vcpu->arch.pio.count = 0;
7947 return 1;
7948}
7949
Sean Christopherson45def772019-03-11 20:01:05 -07007950static int complete_fast_pio_out(struct kvm_vcpu *vcpu)
7951{
7952 vcpu->arch.pio.count = 0;
7953
7954 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip)))
7955 return 1;
7956
7957 return kvm_skip_emulated_instruction(vcpu);
7958}
7959
Sean Christophersondca7f122018-03-08 08:57:27 -08007960static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size,
7961 unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01007962{
Sean Christophersonde3cd112019-04-30 10:36:17 -07007963 unsigned long val = kvm_rax_read(vcpu);
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007964 int ret = emulator_pio_out(vcpu, size, port, &val, 1);
7965
Sean Christopherson8764ed52019-04-29 07:04:15 -07007966 if (ret)
7967 return ret;
Sean Christopherson45def772019-03-11 20:01:05 -07007968
Sean Christopherson8764ed52019-04-29 07:04:15 -07007969 /*
7970 * Workaround userspace that relies on old KVM behavior of %rip being
7971 * incremented prior to exiting to userspace to handle "OUT 0x7e".
7972 */
7973 if (port == 0x7e &&
7974 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) {
7975 vcpu->arch.complete_userspace_io =
7976 complete_fast_pio_out_port_0x7e;
7977 kvm_skip_emulated_instruction(vcpu);
7978 } else {
Sean Christopherson45def772019-03-11 20:01:05 -07007979 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
7980 vcpu->arch.complete_userspace_io = complete_fast_pio_out;
7981 }
Sean Christopherson8764ed52019-04-29 07:04:15 -07007982 return 0;
Carsten Ottede7d7892007-10-30 18:44:25 +01007983}
Carsten Ottede7d7892007-10-30 18:44:25 +01007984
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007985static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
7986{
7987 unsigned long val;
7988
7989 /* We should only ever be called with arch.pio.count equal to 1 */
7990 BUG_ON(vcpu->arch.pio.count != 1);
7991
Sean Christopherson45def772019-03-11 20:01:05 -07007992 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) {
7993 vcpu->arch.pio.count = 0;
7994 return 1;
7995 }
7996
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007997 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07007998 val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007999
8000 /*
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008001 * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008002 * the copy and tracing
8003 */
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008004 emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1);
Sean Christophersonde3cd112019-04-30 10:36:17 -07008005 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008006
Sean Christopherson45def772019-03-11 20:01:05 -07008007 return kvm_skip_emulated_instruction(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008008}
8009
Sean Christophersondca7f122018-03-08 08:57:27 -08008010static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size,
8011 unsigned short port)
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008012{
8013 unsigned long val;
8014 int ret;
8015
8016 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008017 val = (size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008018
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008019 ret = emulator_pio_in(vcpu, size, port, &val, 1);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008020 if (ret) {
Sean Christophersonde3cd112019-04-30 10:36:17 -07008021 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008022 return ret;
8023 }
8024
Sean Christopherson45def772019-03-11 20:01:05 -07008025 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008026 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
8027
8028 return 0;
8029}
Sean Christophersondca7f122018-03-08 08:57:27 -08008030
8031int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in)
8032{
Sean Christopherson45def772019-03-11 20:01:05 -07008033 int ret;
Sean Christophersondca7f122018-03-08 08:57:27 -08008034
Sean Christophersondca7f122018-03-08 08:57:27 -08008035 if (in)
Sean Christopherson45def772019-03-11 20:01:05 -07008036 ret = kvm_fast_pio_in(vcpu, size, port);
Sean Christophersondca7f122018-03-08 08:57:27 -08008037 else
Sean Christopherson45def772019-03-11 20:01:05 -07008038 ret = kvm_fast_pio_out(vcpu, size, port);
8039 return ret && kvm_skip_emulated_instruction(vcpu);
Sean Christophersondca7f122018-03-08 08:57:27 -08008040}
8041EXPORT_SYMBOL_GPL(kvm_fast_pio);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008042
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008043static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008044{
Tejun Heo0a3aee02010-12-18 16:28:55 +01008045 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008046 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008047}
8048
8049static void tsc_khz_changed(void *data)
8050{
8051 struct cpufreq_freqs *freq = data;
8052 unsigned long khz = 0;
8053
8054 if (data)
8055 khz = freq->new;
8056 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8057 khz = cpufreq_quick_get(raw_smp_processor_id());
8058 if (!khz)
8059 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01008060 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008061}
8062
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008063#ifdef CONFIG_X86_64
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008064static void kvm_hyperv_tsc_notifier(void)
8065{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008066 struct kvm *kvm;
8067 struct kvm_vcpu *vcpu;
8068 int cpu;
Paolo Bonzinia83829f2021-03-25 14:11:14 -04008069 unsigned long flags;
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008070
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008071 mutex_lock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008072 list_for_each_entry(kvm, &vm_list, vm_list)
8073 kvm_make_mclock_inprogress_request(kvm);
8074
8075 hyperv_stop_tsc_emulation();
8076
8077 /* TSC frequency always matches when on Hyper-V */
8078 for_each_present_cpu(cpu)
8079 per_cpu(cpu_tsc_khz, cpu) = tsc_khz;
8080 kvm_max_guest_tsc_khz = tsc_khz;
8081
8082 list_for_each_entry(kvm, &vm_list, vm_list) {
8083 struct kvm_arch *ka = &kvm->arch;
8084
Paolo Bonzinia83829f2021-03-25 14:11:14 -04008085 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008086 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzinia83829f2021-03-25 14:11:14 -04008087 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008088
8089 kvm_for_each_vcpu(cpu, vcpu, kvm)
8090 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
8091
8092 kvm_for_each_vcpu(cpu, vcpu, kvm)
8093 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008094 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008095 mutex_unlock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008096}
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008097#endif
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008098
Viresh Kumardf240142019-04-29 15:03:58 +05308099static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008100{
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008101 struct kvm *kvm;
8102 struct kvm_vcpu *vcpu;
8103 int i, send_ipi = 0;
8104
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008105 /*
8106 * We allow guests to temporarily run on slowing clocks,
8107 * provided we notify them after, or to run on accelerating
8108 * clocks, provided we notify them before. Thus time never
8109 * goes backwards.
8110 *
8111 * However, we have a problem. We can't atomically update
8112 * the frequency of a given CPU from this function; it is
8113 * merely a notifier, which can be called from any CPU.
8114 * Changing the TSC frequency at arbitrary points in time
8115 * requires a recomputation of local variables related to
8116 * the TSC for each VCPU. We must flag these local variables
8117 * to be updated and be sure the update takes place with the
8118 * new frequency before any guests proceed.
8119 *
8120 * Unfortunately, the combination of hotplug CPU and frequency
8121 * change creates an intractable locking scenario; the order
8122 * of when these callouts happen is undefined with respect to
8123 * CPU hotplug, and they can race with each other. As such,
8124 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
8125 * undefined; you can actually have a CPU frequency change take
8126 * place in between the computation of X and the setting of the
8127 * variable. To protect against this problem, all updates of
8128 * the per_cpu tsc_khz variable are done in an interrupt
8129 * protected IPI, and all callers wishing to update the value
8130 * must wait for a synchronous IPI to complete (which is trivial
8131 * if the caller is on the CPU already). This establishes the
8132 * necessary total order on variable updates.
8133 *
8134 * Note that because a guest time update may take place
8135 * anytime after the setting of the VCPU's request bit, the
8136 * correct TSC value must be set before the request. However,
8137 * to ensure the update actually makes it to any guest which
8138 * starts running in hardware virtualization between the set
8139 * and the acquisition of the spinlock, we must also ping the
8140 * CPU after setting the request bit.
8141 *
8142 */
8143
Viresh Kumardf240142019-04-29 15:03:58 +05308144 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008145
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008146 mutex_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008147 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008148 kvm_for_each_vcpu(i, vcpu, kvm) {
Viresh Kumardf240142019-04-29 15:03:58 +05308149 if (vcpu->cpu != cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008150 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10008151 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008152 if (vcpu->cpu != raw_smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008153 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008154 }
8155 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008156 mutex_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008157
8158 if (freq->old < freq->new && send_ipi) {
8159 /*
8160 * We upscale the frequency. Must make the guest
8161 * doesn't see old kvmclock values while running with
8162 * the new frequency, otherwise we risk the guest sees
8163 * time go backwards.
8164 *
8165 * In case we update the frequency for another cpu
8166 * (which might be in guest context) send an interrupt
8167 * to kick the cpu out of guest context. Next time
8168 * guest context is entered kvmclock will be updated,
8169 * so the guest will not see stale values.
8170 */
Viresh Kumardf240142019-04-29 15:03:58 +05308171 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008172 }
Viresh Kumardf240142019-04-29 15:03:58 +05308173}
8174
8175static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
8176 void *data)
8177{
8178 struct cpufreq_freqs *freq = data;
8179 int cpu;
8180
8181 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
8182 return 0;
8183 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
8184 return 0;
8185
8186 for_each_cpu(cpu, freq->policy->cpus)
8187 __kvmclock_cpufreq_notifier(freq, cpu);
8188
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008189 return 0;
8190}
8191
8192static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008193 .notifier_call = kvmclock_cpufreq_notifier
8194};
8195
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008196static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008197{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008198 tsc_khz_changed(NULL);
8199 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008200}
8201
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008202static void kvm_timer_init(void)
8203{
Zachary Amsdenc2855452010-09-18 14:38:15 -10008204 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308205
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008206 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10008207#ifdef CONFIG_CPU_FREQ
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008208 struct cpufreq_policy *policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02008209 int cpu;
8210
Avi Kivity3e26f232010-12-16 12:16:34 +02008211 cpu = get_cpu();
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008212 policy = cpufreq_cpu_get(cpu);
Wanpeng Li9a119972020-03-02 15:15:36 +08008213 if (policy) {
8214 if (policy->cpuinfo.max_freq)
8215 max_tsc_khz = policy->cpuinfo.max_freq;
8216 cpufreq_cpu_put(policy);
8217 }
Avi Kivity3e26f232010-12-16 12:16:34 +02008218 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10008219#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008220 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
8221 CPUFREQ_TRANSITION_NOTIFIER);
8222 }
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308223
Thomas Gleixner73c1b412016-12-21 20:19:54 +01008224 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008225 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008226}
8227
Andi Kleendd60d212017-07-25 17:20:32 -07008228DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
8229EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008230
Gleb Natapovf5132b02011-11-10 14:57:22 +02008231int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008232{
Alex,Shi086c9852011-10-20 15:34:01 +08008233 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008234}
8235
8236static int kvm_is_user_mode(void)
8237{
8238 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008239
Alex,Shi086c9852011-10-20 15:34:01 +08008240 if (__this_cpu_read(current_vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008241 user_mode = static_call(kvm_x86_get_cpl)(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008242
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008243 return user_mode != 0;
8244}
8245
8246static unsigned long kvm_get_guest_ip(void)
8247{
8248 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008249
Alex,Shi086c9852011-10-20 15:34:01 +08008250 if (__this_cpu_read(current_vcpu))
8251 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008252
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008253 return ip;
8254}
8255
Luwei Kang8479e042019-02-18 19:26:07 -05008256static void kvm_handle_intel_pt_intr(void)
8257{
8258 struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu);
8259
8260 kvm_make_request(KVM_REQ_PMI, vcpu);
8261 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
8262 (unsigned long *)&vcpu->arch.pmu.global_status);
8263}
8264
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008265static struct perf_guest_info_callbacks kvm_guest_cbs = {
8266 .is_in_guest = kvm_is_in_guest,
8267 .is_user_mode = kvm_is_user_mode,
8268 .get_guest_ip = kvm_get_guest_ip,
Luwei Kang8479e042019-02-18 19:26:07 -05008269 .handle_intel_pt_intr = kvm_handle_intel_pt_intr,
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008270};
8271
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008272#ifdef CONFIG_X86_64
8273static void pvclock_gtod_update_fn(struct work_struct *work)
8274{
Marcelo Tosattid8281992012-11-27 23:29:01 -02008275 struct kvm *kvm;
8276
8277 struct kvm_vcpu *vcpu;
8278 int i;
8279
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008280 mutex_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008281 list_for_each_entry(kvm, &vm_list, vm_list)
8282 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08008283 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008284 atomic_set(&kvm_guest_has_master_clock, 0);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008285 mutex_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008286}
8287
8288static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
8289
8290/*
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008291 * Indirection to move queue_work() out of the tk_core.seq write held
8292 * region to prevent possible deadlocks against time accessors which
8293 * are invoked with work related locks held.
8294 */
8295static void pvclock_irq_work_fn(struct irq_work *w)
8296{
8297 queue_work(system_long_wq, &pvclock_gtod_work);
8298}
8299
8300static DEFINE_IRQ_WORK(pvclock_irq_work, pvclock_irq_work_fn);
8301
8302/*
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008303 * Notification about pvclock gtod data update.
8304 */
8305static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
8306 void *priv)
8307{
8308 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
8309 struct timekeeper *tk = priv;
8310
8311 update_pvclock_gtod(tk);
8312
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008313 /*
8314 * Disable master clock if host does not trust, or does not use,
8315 * TSC based clocksource. Delegate queue_work() to irq_work as
8316 * this is invoked with tk_core.seq write held.
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008317 */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01008318 if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) &&
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008319 atomic_read(&kvm_guest_has_master_clock) != 0)
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008320 irq_work_queue(&pvclock_irq_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008321 return 0;
8322}
8323
8324static struct notifier_block pvclock_gtod_notifier = {
8325 .notifier_call = pvclock_gtod_notify,
8326};
8327#endif
8328
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008329int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02008330{
Sean Christophersond008dfd2020-03-21 13:25:56 -07008331 struct kvm_x86_init_ops *ops = opaque;
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008332 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008333
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008334 if (kvm_x86_ops.hardware_enable) {
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008335 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008336 r = -EEXIST;
8337 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008338 }
8339
8340 if (!ops->cpu_has_kvm_support()) {
Erwan Veluef935c252020-02-27 19:00:46 +01008341 pr_err_ratelimited("kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008342 r = -EOPNOTSUPP;
8343 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008344 }
8345 if (ops->disabled_by_bios()) {
Erwan Veluef935c252020-02-27 19:00:46 +01008346 pr_err_ratelimited("kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008347 r = -EOPNOTSUPP;
8348 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008349 }
8350
Marc Orrb666a4b2018-11-06 14:53:56 -08008351 /*
8352 * KVM explicitly assumes that the guest has an FPU and
8353 * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the
8354 * vCPU's FPU state as a fxregs_state struct.
8355 */
8356 if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) {
8357 printk(KERN_ERR "kvm: inadequate fpu\n");
8358 r = -EOPNOTSUPP;
8359 goto out;
8360 }
8361
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008362 r = -ENOMEM;
Paolo Bonzinied8e4812018-12-21 11:25:59 +01008363 x86_fpu_cache = kmem_cache_create("x86_fpu", sizeof(struct fpu),
Marc Orrb666a4b2018-11-06 14:53:56 -08008364 __alignof__(struct fpu), SLAB_ACCOUNT,
8365 NULL);
8366 if (!x86_fpu_cache) {
8367 printk(KERN_ERR "kvm: failed to allocate cache for x86 fpu\n");
8368 goto out;
8369 }
8370
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008371 x86_emulator_cache = kvm_alloc_emulator_cache();
8372 if (!x86_emulator_cache) {
8373 pr_err("kvm: failed to allocate cache for x86 emulator\n");
8374 goto out_free_x86_fpu_cache;
8375 }
8376
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008377 user_return_msrs = alloc_percpu(struct kvm_user_return_msrs);
8378 if (!user_return_msrs) {
8379 printk(KERN_ERR "kvm: failed to allocate percpu kvm_user_return_msrs\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008380 goto out_free_x86_emulator_cache;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008381 }
Sean Christophersone5fda4b2021-05-04 10:17:32 -07008382 kvm_nr_uret_msrs = 0;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008383
Avi Kivity97db56c2008-01-13 13:23:56 +02008384 r = kvm_mmu_module_init();
8385 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008386 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02008387
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008388 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008389
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008390 perf_register_guest_info_callbacks(&kvm_guest_cbs);
8391
Sean Christophersoncfc48182020-03-02 15:56:23 -08008392 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +08008393 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
Sean Christophersoncfc48182020-03-02 15:56:23 -08008394 supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0;
8395 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08008396
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08008397 if (pi_inject_timer == -1)
8398 pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008399#ifdef CONFIG_X86_64
8400 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008401
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008402 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008403 set_hv_tscchange_cb(kvm_hyperv_tsc_notifier);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008404#endif
8405
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008406 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008407
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008408out_free_percpu:
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008409 free_percpu(user_return_msrs);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008410out_free_x86_emulator_cache:
8411 kmem_cache_destroy(x86_emulator_cache);
Marc Orrb666a4b2018-11-06 14:53:56 -08008412out_free_x86_fpu_cache:
8413 kmem_cache_destroy(x86_fpu_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008414out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008415 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02008416}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008417
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008418void kvm_arch_exit(void)
8419{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008420#ifdef CONFIG_X86_64
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008421 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008422 clear_hv_tscchange_cb();
8423#endif
David Matlackcef84c32016-12-16 14:30:36 -08008424 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008425 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
8426
Jan Kiszka888d2562009-04-17 19:24:58 +02008427 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8428 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
8429 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008430 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008431#ifdef CONFIG_X86_64
8432 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008433 irq_work_sync(&pvclock_irq_work);
Thomas Gleixner594b27e2021-05-05 23:48:17 +02008434 cancel_work_sync(&pvclock_gtod_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008435#endif
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008436 kvm_x86_ops.hardware_enable = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008437 kvm_mmu_module_exit();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008438 free_percpu(user_return_msrs);
Wanpeng Lidfdc0a72021-06-10 21:59:33 -07008439 kmem_cache_destroy(x86_emulator_cache);
Marc Orrb666a4b2018-11-06 14:53:56 -08008440 kmem_cache_destroy(x86_fpu_cache);
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008441#ifdef CONFIG_KVM_XEN
Paolo Bonzinic462f852021-02-26 04:49:06 -05008442 static_key_deferred_flush(&kvm_xen_enabled);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +00008443 WARN_ON(static_branch_unlikely(&kvm_xen_enabled.key));
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008444#endif
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008445}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008446
Paolo Bonzini872f36e2021-01-08 05:54:44 -05008447static int __kvm_vcpu_halt(struct kvm_vcpu *vcpu, int state, int reason)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008448{
8449 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008450 if (lapic_in_kernel(vcpu)) {
Tom Lendacky647daca2021-01-04 14:20:01 -06008451 vcpu->arch.mp_state = state;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008452 return 1;
8453 } else {
Tom Lendacky647daca2021-01-04 14:20:01 -06008454 vcpu->run->exit_reason = reason;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008455 return 0;
8456 }
8457}
Tom Lendacky647daca2021-01-04 14:20:01 -06008458
8459int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
8460{
8461 return __kvm_vcpu_halt(vcpu, KVM_MP_STATE_HALTED, KVM_EXIT_HLT);
8462}
Joel Schopp5cb56052015-03-02 13:43:31 -06008463EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
8464
8465int kvm_emulate_halt(struct kvm_vcpu *vcpu)
8466{
Kyle Huey6affcbe2016-11-29 12:40:40 -08008467 int ret = kvm_skip_emulated_instruction(vcpu);
8468 /*
8469 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
8470 * KVM_EXIT_DEBUG here.
8471 */
8472 return kvm_vcpu_halt(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06008473}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008474EXPORT_SYMBOL_GPL(kvm_emulate_halt);
8475
Tom Lendacky647daca2021-01-04 14:20:01 -06008476int kvm_emulate_ap_reset_hold(struct kvm_vcpu *vcpu)
8477{
8478 int ret = kvm_skip_emulated_instruction(vcpu);
8479
8480 return __kvm_vcpu_halt(vcpu, KVM_MP_STATE_AP_RESET_HOLD, KVM_EXIT_AP_RESET_HOLD) && ret;
8481}
8482EXPORT_SYMBOL_GPL(kvm_emulate_ap_reset_hold);
8483
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008484#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008485static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
8486 unsigned long clock_type)
8487{
8488 struct kvm_clock_pairing clock_pairing;
Arnd Bergmann899a31f2018-04-23 10:04:26 +02008489 struct timespec64 ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01008490 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008491 int ret;
8492
8493 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
8494 return -KVM_EOPNOTSUPP;
8495
YANG LI7ca7f3b2021-01-11 17:32:58 +08008496 if (!kvm_get_walltime_and_clockread(&ts, &cycle))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008497 return -KVM_EOPNOTSUPP;
8498
8499 clock_pairing.sec = ts.tv_sec;
8500 clock_pairing.nsec = ts.tv_nsec;
8501 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
8502 clock_pairing.flags = 0;
Liran Alonbcbfbd82018-11-08 00:43:06 +02008503 memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008504
8505 ret = 0;
8506 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
8507 sizeof(struct kvm_clock_pairing)))
8508 ret = -KVM_EFAULT;
8509
8510 return ret;
8511}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008512#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008513
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308514/*
8515 * kvm_pv_kick_cpu_op: Kick a vcpu.
8516 *
8517 * @apicid - apicid of vcpu to be kicked.
8518 */
8519static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
8520{
Raghavendra K T24d21662013-08-26 14:18:35 +05308521 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308522
Peter Xu150a84f2019-12-04 20:07:21 +01008523 lapic_irq.shorthand = APIC_DEST_NOSHORT;
Peter Xuc96001c2019-12-04 20:07:18 +01008524 lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
Longpeng(Mike)ebd28fc2017-08-02 11:20:51 +08008525 lapic_irq.level = 0;
Raghavendra K T24d21662013-08-26 14:18:35 +05308526 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06008527 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308528
Raghavendra K T24d21662013-08-26 14:18:35 +05308529 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08008530 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308531}
8532
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008533bool kvm_apicv_activated(struct kvm *kvm)
8534{
8535 return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0);
8536}
8537EXPORT_SYMBOL_GPL(kvm_apicv_activated);
8538
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008539static void kvm_apicv_init(struct kvm *kvm)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008540{
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008541 if (enable_apicv)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008542 clear_bit(APICV_INHIBIT_REASON_DISABLE,
8543 &kvm->arch.apicv_inhibit_reasons);
8544 else
8545 set_bit(APICV_INHIBIT_REASON_DISABLE,
8546 &kvm->arch.apicv_inhibit_reasons);
8547}
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008548
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008549static void kvm_sched_yield(struct kvm_vcpu *vcpu, unsigned long dest_id)
Wanpeng Li71506292019-06-11 20:23:49 +08008550{
8551 struct kvm_vcpu *target = NULL;
8552 struct kvm_apic_map *map;
8553
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008554 vcpu->stat.directed_yield_attempted++;
8555
Wanpeng Li72b268a2021-05-18 05:00:32 -07008556 if (single_task_running())
8557 goto no_yield;
8558
Wanpeng Li71506292019-06-11 20:23:49 +08008559 rcu_read_lock();
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008560 map = rcu_dereference(vcpu->kvm->arch.apic_map);
Wanpeng Li71506292019-06-11 20:23:49 +08008561
8562 if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id])
8563 target = map->phys_map[dest_id]->vcpu;
8564
8565 rcu_read_unlock();
8566
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008567 if (!target || !READ_ONCE(target->ready))
8568 goto no_yield;
8569
Wanpeng Lia1fa4cb2021-04-09 12:18:31 +08008570 /* Ignore requests to yield to self */
8571 if (vcpu == target)
8572 goto no_yield;
8573
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008574 if (kvm_vcpu_yield_to(target) <= 0)
8575 goto no_yield;
8576
8577 vcpu->stat.directed_yield_successful++;
8578
8579no_yield:
8580 return;
Wanpeng Li71506292019-06-11 20:23:49 +08008581}
8582
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008583static int complete_hypercall_exit(struct kvm_vcpu *vcpu)
8584{
8585 u64 ret = vcpu->run->hypercall.ret;
8586
8587 if (!is_64_bit_mode(vcpu))
8588 ret = (u32)ret;
8589 kvm_rax_write(vcpu, ret);
8590 ++vcpu->stat.hypercalls;
8591 return kvm_skip_emulated_instruction(vcpu);
8592}
8593
Hollis Blanchard8776e512007-10-31 17:24:24 -05008594int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
8595{
8596 unsigned long nr, a0, a1, a2, a3, ret;
Marian Rotariu6356ee02018-04-30 12:23:01 +03008597 int op_64_bit;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008598
Joao Martins23200b72018-06-13 09:55:44 -04008599 if (kvm_xen_hypercall_enabled(vcpu->kvm))
8600 return kvm_xen_hypercall(vcpu);
8601
Vitaly Kuznetsov8f014552021-01-26 14:48:14 +01008602 if (kvm_hv_hypercall_enabled(vcpu))
Radim Krčmář696ca772018-05-24 17:50:56 +02008603 return kvm_hv_hypercall(vcpu);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02008604
Sean Christophersonde3cd112019-04-30 10:36:17 -07008605 nr = kvm_rax_read(vcpu);
8606 a0 = kvm_rbx_read(vcpu);
8607 a1 = kvm_rcx_read(vcpu);
8608 a2 = kvm_rdx_read(vcpu);
8609 a3 = kvm_rsi_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008610
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008611 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04008612
Nadav Amita449c7a2014-06-18 17:19:24 +03008613 op_64_bit = is_64_bit_mode(vcpu);
8614 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05008615 nr &= 0xFFFFFFFF;
8616 a0 &= 0xFFFFFFFF;
8617 a1 &= 0xFFFFFFFF;
8618 a2 &= 0xFFFFFFFF;
8619 a3 &= 0xFFFFFFFF;
8620 }
8621
Jason Baronb36464772021-01-14 22:27:56 -05008622 if (static_call(kvm_x86_get_cpl)(vcpu) != 0) {
Jan Kiszka07708c42009-08-03 18:43:28 +02008623 ret = -KVM_EPERM;
Radim Krčmář696ca772018-05-24 17:50:56 +02008624 goto out;
Jan Kiszka07708c42009-08-03 18:43:28 +02008625 }
8626
Oliver Upton66570e92020-08-18 15:24:28 +00008627 ret = -KVM_ENOSYS;
8628
Hollis Blanchard8776e512007-10-31 17:24:24 -05008629 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02008630 case KVM_HC_VAPIC_POLL_IRQ:
8631 ret = 0;
8632 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308633 case KVM_HC_KICK_CPU:
Oliver Upton66570e92020-08-18 15:24:28 +00008634 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT))
8635 break;
8636
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308637 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008638 kvm_sched_yield(vcpu, a1);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308639 ret = 0;
8640 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008641#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008642 case KVM_HC_CLOCK_PAIRING:
8643 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
8644 break;
Sean Christopherson1ed199a2019-01-23 09:22:39 -08008645#endif
Wanpeng Li4180bf12018-07-23 14:39:54 +08008646 case KVM_HC_SEND_IPI:
Oliver Upton66570e92020-08-18 15:24:28 +00008647 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SEND_IPI))
8648 break;
8649
Wanpeng Li4180bf12018-07-23 14:39:54 +08008650 ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit);
8651 break;
Wanpeng Li71506292019-06-11 20:23:49 +08008652 case KVM_HC_SCHED_YIELD:
Oliver Upton66570e92020-08-18 15:24:28 +00008653 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SCHED_YIELD))
8654 break;
8655
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008656 kvm_sched_yield(vcpu, a0);
Wanpeng Li71506292019-06-11 20:23:49 +08008657 ret = 0;
8658 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008659 case KVM_HC_MAP_GPA_RANGE: {
8660 u64 gpa = a0, npages = a1, attrs = a2;
8661
8662 ret = -KVM_ENOSYS;
8663 if (!(vcpu->kvm->arch.hypercall_exit_enabled & (1 << KVM_HC_MAP_GPA_RANGE)))
8664 break;
8665
8666 if (!PAGE_ALIGNED(gpa) || !npages ||
8667 gpa_to_gfn(gpa) + npages <= gpa_to_gfn(gpa)) {
8668 ret = -KVM_EINVAL;
8669 break;
8670 }
8671
8672 vcpu->run->exit_reason = KVM_EXIT_HYPERCALL;
8673 vcpu->run->hypercall.nr = KVM_HC_MAP_GPA_RANGE;
8674 vcpu->run->hypercall.args[0] = gpa;
8675 vcpu->run->hypercall.args[1] = npages;
8676 vcpu->run->hypercall.args[2] = attrs;
8677 vcpu->run->hypercall.longmode = op_64_bit;
8678 vcpu->arch.complete_userspace_io = complete_hypercall_exit;
8679 return 0;
8680 }
Hollis Blanchard8776e512007-10-31 17:24:24 -05008681 default:
8682 ret = -KVM_ENOSYS;
8683 break;
8684 }
Radim Krčmář696ca772018-05-24 17:50:56 +02008685out:
Nadav Amita449c7a2014-06-18 17:19:24 +03008686 if (!op_64_bit)
8687 ret = (u32)ret;
Sean Christophersonde3cd112019-04-30 10:36:17 -07008688 kvm_rax_write(vcpu, ret);
Marian Rotariu6356ee02018-04-30 12:23:01 +03008689
Amit Shahf11c3a82008-02-21 01:00:30 +05308690 ++vcpu->stat.hypercalls;
Marian Rotariu6356ee02018-04-30 12:23:01 +03008691 return kvm_skip_emulated_instruction(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008692}
8693EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
8694
Jan Kiszkab6785de2012-09-20 07:43:17 +02008695static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008696{
Avi Kivityd6aa1002011-04-20 15:47:13 +03008697 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008698 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008699 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008700
Jason Baronb36464772021-01-14 22:27:56 -05008701 static_call(kvm_x86_patch_hypercall)(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008702
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01008703 return emulator_write_emulated(ctxt, rip, instruction, 3,
8704 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008705}
8706
Avi Kivity851ba692009-08-24 11:10:17 +03008707static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008708{
Matt Gingell782d4222015-11-16 15:26:00 -08008709 return vcpu->run->request_interrupt_window &&
8710 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008711}
8712
Avi Kivity851ba692009-08-24 11:10:17 +03008713static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008714{
Avi Kivity851ba692009-08-24 11:10:17 +03008715 struct kvm_run *kvm_run = vcpu->run;
8716
Tom Lendackyf1c63662020-12-14 10:29:50 -05008717 /*
8718 * if_flag is obsolete and useless, so do not bother
8719 * setting it for SEV-ES guests. Userspace can just
8720 * use kvm_run->ready_for_interrupt_injection.
8721 */
8722 kvm_run->if_flag = !vcpu->arch.guest_state_protected
8723 && (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
8724
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02008725 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008726 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01008727 kvm_run->ready_for_interrupt_injection =
8728 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08008729 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08008730
8731 if (is_smm(vcpu))
8732 kvm_run->flags |= KVM_RUN_X86_SMM;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008733}
8734
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008735static void update_cr8_intercept(struct kvm_vcpu *vcpu)
8736{
8737 int max_irr, tpr;
8738
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008739 if (!kvm_x86_ops.update_cr8_intercept)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008740 return;
8741
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01008742 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03008743 return;
8744
Andrey Smetanind62caab2015-11-10 15:36:33 +03008745 if (vcpu->arch.apicv_active)
8746 return;
8747
Gleb Natapov8db3baa2009-05-11 13:35:54 +03008748 if (!vcpu->arch.apic->vapic_addr)
8749 max_irr = kvm_lapic_find_highest_irr(vcpu);
8750 else
8751 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008752
8753 if (max_irr != -1)
8754 max_irr >>= 4;
8755
8756 tpr = kvm_lapic_get_cr8(vcpu);
8757
Jason Baronb36464772021-01-14 22:27:56 -05008758 static_call(kvm_x86_update_cr8_intercept)(vcpu, tpr, max_irr);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008759}
8760
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008761
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08008762int kvm_check_nested_events(struct kvm_vcpu *vcpu)
8763{
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08008764 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
8765 kvm_x86_ops.nested_ops->triple_fault(vcpu);
8766 return 1;
8767 }
8768
8769 return kvm_x86_ops.nested_ops->check_events(vcpu);
8770}
8771
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008772static void kvm_inject_exception(struct kvm_vcpu *vcpu)
8773{
8774 if (vcpu->arch.exception.error_code && !is_protmode(vcpu))
8775 vcpu->arch.exception.error_code = false;
8776 static_call(kvm_x86_queue_exception)(vcpu);
8777}
8778
Jim Mattsona5f69092021-06-04 10:26:03 -07008779static int inject_pending_event(struct kvm_vcpu *vcpu, bool *req_immediate_exit)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008780{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01008781 int r;
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008782 bool can_inject = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +01008783
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008784 /* try to reinject previous events if any */
Wanpeng Li664f8e22017-08-24 03:35:09 -07008785
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008786 if (vcpu->arch.exception.injected) {
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008787 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008788 can_inject = false;
8789 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07008790 /*
Liran Alona042c262018-03-23 03:01:32 +03008791 * Do not inject an NMI or interrupt if there is a pending
8792 * exception. Exceptions and interrupts are recognized at
8793 * instruction boundaries, i.e. the start of an instruction.
8794 * Trap-like exceptions, e.g. #DB, have higher priority than
8795 * NMIs and interrupts, i.e. traps are recognized before an
8796 * NMI/interrupt that's pending on the same instruction.
8797 * Fault-like exceptions, e.g. #GP and #PF, are the lowest
8798 * priority, but are only generated (pended) during instruction
8799 * execution, i.e. a pending fault-like exception means the
8800 * fault occurred on the *previous* instruction and must be
8801 * serviced prior to recognizing any new events in order to
8802 * fully complete the previous instruction.
Wanpeng Li664f8e22017-08-24 03:35:09 -07008803 */
Liran Alon1a680e32018-03-23 03:01:33 +03008804 else if (!vcpu->arch.exception.pending) {
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008805 if (vcpu->arch.nmi_injected) {
Jason Baronb36464772021-01-14 22:27:56 -05008806 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008807 can_inject = false;
8808 } else if (vcpu->arch.interrupt.injected) {
Jason Baronb36464772021-01-14 22:27:56 -05008809 static_call(kvm_x86_set_irq)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008810 can_inject = false;
8811 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07008812 }
8813
Sean Christopherson3b82b8d2020-04-22 19:25:47 -07008814 WARN_ON_ONCE(vcpu->arch.exception.injected &&
8815 vcpu->arch.exception.pending);
8816
Liran Alon1a680e32018-03-23 03:01:33 +03008817 /*
8818 * Call check_nested_events() even if we reinjected a previous event
8819 * in order for caller to determine if it should require immediate-exit
8820 * from L2 to L1 due to pending L1 events which require exit
8821 * from L2 to L1.
8822 */
Paolo Bonzini56083bd2020-04-17 10:32:53 -04008823 if (is_guest_mode(vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08008824 r = kvm_check_nested_events(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008825 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008826 goto out;
Wanpeng Li664f8e22017-08-24 03:35:09 -07008827 }
8828
8829 /* try to inject new event if pending */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03008830 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02008831 trace_kvm_inj_exception(vcpu->arch.exception.nr,
8832 vcpu->arch.exception.has_error_code,
8833 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03008834
Wanpeng Li664f8e22017-08-24 03:35:09 -07008835 vcpu->arch.exception.pending = false;
8836 vcpu->arch.exception.injected = true;
8837
Nadav Amitd6e8c852014-07-24 14:51:24 +03008838 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
8839 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
8840 X86_EFLAGS_RF);
8841
Jim Mattsonf10c7292018-10-16 14:29:23 -07008842 if (vcpu->arch.exception.nr == DB_VECTOR) {
Jim Mattsonf10c7292018-10-16 14:29:23 -07008843 kvm_deliver_exception_payload(vcpu);
8844 if (vcpu->arch.dr7 & DR7_GD) {
8845 vcpu->arch.dr7 &= ~DR7_GD;
8846 kvm_update_dr7(vcpu);
8847 }
Nadav Amit6bdf0662014-09-30 20:49:14 +03008848 }
8849
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008850 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008851 can_inject = false;
Liran Alon1a680e32018-03-23 03:01:33 +03008852 }
8853
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008854 /*
8855 * Finally, inject interrupt events. If an event cannot be injected
8856 * due to architectural conditions (e.g. IF=0) a window-open exit
8857 * will re-request KVM_REQ_EVENT. Sometimes however an event is pending
8858 * and can architecturally be injected, but we cannot do it right now:
8859 * an interrupt could have arrived just now and we have to inject it
8860 * as a vmexit, or there could already an event in the queue, which is
8861 * indicated by can_inject. In that case we request an immediate exit
8862 * in order to make progress and get back here for another iteration.
8863 * The kvm_x86_ops hooks communicate this by returning -EBUSY.
8864 */
8865 if (vcpu->arch.smi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05008866 r = can_inject ? static_call(kvm_x86_smi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008867 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008868 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008869 if (r) {
8870 vcpu->arch.smi_pending = false;
8871 ++vcpu->arch.smi_count;
8872 enter_smm(vcpu);
8873 can_inject = false;
8874 } else
Jason Baronb36464772021-01-14 22:27:56 -05008875 static_call(kvm_x86_enable_smi_window)(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008876 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008877
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008878 if (vcpu->arch.nmi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05008879 r = can_inject ? static_call(kvm_x86_nmi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008880 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008881 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008882 if (r) {
8883 --vcpu->arch.nmi_pending;
8884 vcpu->arch.nmi_injected = true;
Jason Baronb36464772021-01-14 22:27:56 -05008885 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008886 can_inject = false;
Jason Baronb36464772021-01-14 22:27:56 -05008887 WARN_ON(static_call(kvm_x86_nmi_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008888 }
8889 if (vcpu->arch.nmi_pending)
Jason Baronb36464772021-01-14 22:27:56 -05008890 static_call(kvm_x86_enable_nmi_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008891 }
8892
8893 if (kvm_cpu_has_injectable_intr(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05008894 r = can_inject ? static_call(kvm_x86_interrupt_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008895 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008896 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008897 if (r) {
8898 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), false);
Jason Baronb36464772021-01-14 22:27:56 -05008899 static_call(kvm_x86_set_irq)(vcpu);
8900 WARN_ON(static_call(kvm_x86_interrupt_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008901 }
8902 if (kvm_cpu_has_injectable_intr(vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008903 static_call(kvm_x86_enable_irq_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008904 }
8905
8906 if (is_guest_mode(vcpu) &&
8907 kvm_x86_ops.nested_ops->hv_timer_pending &&
8908 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
8909 *req_immediate_exit = true;
8910
8911 WARN_ON(vcpu->arch.exception.pending);
Jim Mattsona5f69092021-06-04 10:26:03 -07008912 return 0;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008913
Jim Mattsona5f69092021-06-04 10:26:03 -07008914out:
8915 if (r == -EBUSY) {
8916 *req_immediate_exit = true;
8917 r = 0;
8918 }
8919 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008920}
8921
Avi Kivity7460fb4a2011-09-20 13:43:14 +03008922static void process_nmi(struct kvm_vcpu *vcpu)
8923{
8924 unsigned limit = 2;
8925
8926 /*
8927 * x86 is limited to one NMI running, and one NMI pending after it.
8928 * If an NMI is already in progress, limit further NMIs to just one.
8929 * Otherwise, allow two (and we'll inject the first one immediately).
8930 */
Jason Baronb36464772021-01-14 22:27:56 -05008931 if (static_call(kvm_x86_get_nmi_mask)(vcpu) || vcpu->arch.nmi_injected)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03008932 limit = 1;
8933
8934 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
8935 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
8936 kvm_make_request(KVM_REQ_EVENT, vcpu);
8937}
8938
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008939static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008940{
8941 u32 flags = 0;
8942 flags |= seg->g << 23;
8943 flags |= seg->db << 22;
8944 flags |= seg->l << 21;
8945 flags |= seg->avl << 20;
8946 flags |= seg->present << 15;
8947 flags |= seg->dpl << 13;
8948 flags |= seg->s << 12;
8949 flags |= seg->type << 8;
8950 return flags;
8951}
8952
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008953static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008954{
8955 struct kvm_segment seg;
8956 int offset;
8957
8958 kvm_get_segment(vcpu, &seg, n);
8959 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
8960
8961 if (n < 3)
8962 offset = 0x7f84 + n * 12;
8963 else
8964 offset = 0x7f2c + (n - 3) * 12;
8965
8966 put_smstate(u32, buf, offset + 8, seg.base);
8967 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008968 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008969}
8970
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06008971#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008972static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008973{
8974 struct kvm_segment seg;
8975 int offset;
8976 u16 flags;
8977
8978 kvm_get_segment(vcpu, &seg, n);
8979 offset = 0x7e00 + n * 16;
8980
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008981 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008982 put_smstate(u16, buf, offset, seg.selector);
8983 put_smstate(u16, buf, offset + 2, flags);
8984 put_smstate(u32, buf, offset + 4, seg.limit);
8985 put_smstate(u64, buf, offset + 8, seg.base);
8986}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06008987#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008988
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008989static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008990{
8991 struct desc_ptr dt;
8992 struct kvm_segment seg;
8993 unsigned long val;
8994 int i;
8995
8996 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
8997 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
8998 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
8999 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
9000
9001 for (i = 0; i < 8; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009002 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009003
9004 kvm_get_dr(vcpu, 6, &val);
9005 put_smstate(u32, buf, 0x7fcc, (u32)val);
9006 kvm_get_dr(vcpu, 7, &val);
9007 put_smstate(u32, buf, 0x7fc8, (u32)val);
9008
9009 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9010 put_smstate(u32, buf, 0x7fc4, seg.selector);
9011 put_smstate(u32, buf, 0x7f64, seg.base);
9012 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009013 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009014
9015 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9016 put_smstate(u32, buf, 0x7fc0, seg.selector);
9017 put_smstate(u32, buf, 0x7f80, seg.base);
9018 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009019 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009020
Jason Baronb36464772021-01-14 22:27:56 -05009021 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009022 put_smstate(u32, buf, 0x7f74, dt.address);
9023 put_smstate(u32, buf, 0x7f70, dt.size);
9024
Jason Baronb36464772021-01-14 22:27:56 -05009025 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009026 put_smstate(u32, buf, 0x7f58, dt.address);
9027 put_smstate(u32, buf, 0x7f54, dt.size);
9028
9029 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009030 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009031
9032 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
9033
9034 /* revision id */
9035 put_smstate(u32, buf, 0x7efc, 0x00020000);
9036 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
9037}
9038
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009039#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009040static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009041{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009042 struct desc_ptr dt;
9043 struct kvm_segment seg;
9044 unsigned long val;
9045 int i;
9046
9047 for (i = 0; i < 16; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009048 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009049
9050 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
9051 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
9052
9053 kvm_get_dr(vcpu, 6, &val);
9054 put_smstate(u64, buf, 0x7f68, val);
9055 kvm_get_dr(vcpu, 7, &val);
9056 put_smstate(u64, buf, 0x7f60, val);
9057
9058 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
9059 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
9060 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
9061
9062 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
9063
9064 /* revision id */
9065 put_smstate(u32, buf, 0x7efc, 0x00020064);
9066
9067 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
9068
9069 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9070 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009071 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009072 put_smstate(u32, buf, 0x7e94, seg.limit);
9073 put_smstate(u64, buf, 0x7e98, seg.base);
9074
Jason Baronb36464772021-01-14 22:27:56 -05009075 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009076 put_smstate(u32, buf, 0x7e84, dt.size);
9077 put_smstate(u64, buf, 0x7e88, dt.address);
9078
9079 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9080 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009081 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009082 put_smstate(u32, buf, 0x7e74, seg.limit);
9083 put_smstate(u64, buf, 0x7e78, seg.base);
9084
Jason Baronb36464772021-01-14 22:27:56 -05009085 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009086 put_smstate(u32, buf, 0x7e64, dt.size);
9087 put_smstate(u64, buf, 0x7e68, dt.address);
9088
9089 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009090 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009091}
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009092#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009093
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009094static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02009095{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009096 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02009097 struct desc_ptr dt;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009098 char buf[512];
9099 u32 cr0;
9100
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009101 memset(buf, 0, 512);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009102#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009103 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009104 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009105 else
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009106#endif
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009107 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009108
Ladi Prosek0234bf82017-10-11 16:54:40 +02009109 /*
Sean Christophersonecc513e2021-06-09 11:56:19 -07009110 * Give enter_smm() a chance to make ISA-specific changes to the vCPU
9111 * state (e.g. leave guest mode) after we've saved the state into the
9112 * SMM state-save area.
Ladi Prosek0234bf82017-10-11 16:54:40 +02009113 */
Sean Christophersonecc513e2021-06-09 11:56:19 -07009114 static_call(kvm_x86_enter_smm)(vcpu, buf);
Ladi Prosek0234bf82017-10-11 16:54:40 +02009115
Sean Christophersondc872752021-06-09 11:56:15 -07009116 kvm_smm_changed(vcpu, true);
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009117 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009118
Jason Baronb36464772021-01-14 22:27:56 -05009119 if (static_call(kvm_x86_get_nmi_mask)(vcpu))
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009120 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
9121 else
Jason Baronb36464772021-01-14 22:27:56 -05009122 static_call(kvm_x86_set_nmi_mask)(vcpu, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009123
9124 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
9125 kvm_rip_write(vcpu, 0x8000);
9126
9127 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
Jason Baronb36464772021-01-14 22:27:56 -05009128 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009129 vcpu->arch.cr0 = cr0;
9130
Jason Baronb36464772021-01-14 22:27:56 -05009131 static_call(kvm_x86_set_cr4)(vcpu, 0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009132
Paolo Bonzini18c36262015-08-07 12:27:54 +02009133 /* Undocumented: IDT limit is set to zero on entry to SMM. */
9134 dt.address = dt.size = 0;
Jason Baronb36464772021-01-14 22:27:56 -05009135 static_call(kvm_x86_set_idt)(vcpu, &dt);
Paolo Bonzini18c36262015-08-07 12:27:54 +02009136
Paolo Bonzini996ff542020-12-14 07:49:54 -05009137 kvm_set_dr(vcpu, 7, DR7_FIXED_1);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009138
9139 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
9140 cs.base = vcpu->arch.smbase;
9141
9142 ds.selector = 0;
9143 ds.base = 0;
9144
9145 cs.limit = ds.limit = 0xffffffff;
9146 cs.type = ds.type = 0x3;
9147 cs.dpl = ds.dpl = 0;
9148 cs.db = ds.db = 0;
9149 cs.s = ds.s = 1;
9150 cs.l = ds.l = 0;
9151 cs.g = ds.g = 1;
9152 cs.avl = ds.avl = 0;
9153 cs.present = ds.present = 1;
9154 cs.unusable = ds.unusable = 0;
9155 cs.padding = ds.padding = 0;
9156
9157 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
9158 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
9159 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
9160 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
9161 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
9162 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
9163
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009164#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009165 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Jason Baronb36464772021-01-14 22:27:56 -05009166 static_call(kvm_x86_set_efer)(vcpu, 0);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009167#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009168
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08009169 kvm_update_cpuid_runtime(vcpu);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009170 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009171}
9172
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009173static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009174{
9175 vcpu->arch.smi_pending = true;
9176 kvm_make_request(KVM_REQ_EVENT, vcpu);
9177}
9178
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009179void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
9180 unsigned long *vcpu_bitmap)
9181{
9182 cpumask_var_t cpus;
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009183
9184 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
9185
Mao Wenandb5a95e2019-11-19 11:06:40 +08009186 kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC,
Suravee Suthikulpanit54163a32020-05-06 08:17:53 -05009187 NULL, vcpu_bitmap, cpus);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009188
9189 free_cpumask_var(cpus);
9190}
9191
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01009192void kvm_make_scan_ioapic_request(struct kvm *kvm)
9193{
9194 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
9195}
9196
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009197void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
9198{
9199 if (!lapic_in_kernel(vcpu))
9200 return;
9201
9202 vcpu->arch.apicv_active = kvm_apicv_activated(vcpu->kvm);
9203 kvm_apic_update_apicv(vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009204 static_call(kvm_x86_refresh_apicv_exec_ctrl)(vcpu);
Vitaly Kuznetsovbca66db2021-06-09 17:09:10 +02009205
9206 /*
9207 * When APICv gets disabled, we may still have injected interrupts
9208 * pending. At the same time, KVM_REQ_EVENT may not be set as APICv was
9209 * still active when the interrupt got accepted. Make sure
9210 * inject_pending_event() is called to check for that.
9211 */
9212 if (!vcpu->arch.apicv_active)
9213 kvm_make_request(KVM_REQ_EVENT, vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009214}
9215EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv);
9216
9217/*
9218 * NOTE: Do not hold any lock prior to calling this.
9219 *
9220 * In particular, kvm_request_apicv_update() expects kvm->srcu not to be
9221 * locked, because it calls __x86_set_memory_region() which does
9222 * synchronize_srcu(&kvm->srcu).
9223 */
9224void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
9225{
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05009226 struct kvm_vcpu *except;
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009227 unsigned long old, new, expected;
9228
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009229 if (!kvm_x86_ops.check_apicv_inhibit_reasons ||
Jason Baronb36464772021-01-14 22:27:56 -05009230 !static_call(kvm_x86_check_apicv_inhibit_reasons)(bit))
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06009231 return;
9232
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009233 old = READ_ONCE(kvm->arch.apicv_inhibit_reasons);
9234 do {
9235 expected = new = old;
9236 if (activate)
9237 __clear_bit(bit, &new);
9238 else
9239 __set_bit(bit, &new);
9240 if (new == old)
9241 break;
9242 old = cmpxchg(&kvm->arch.apicv_inhibit_reasons, expected, new);
9243 } while (old != expected);
9244
9245 if (!!old == !!new)
9246 return;
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009247
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -06009248 trace_kvm_apicv_update_request(activate, bit);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009249 if (kvm_x86_ops.pre_update_apicv_exec_ctrl)
Jason Baronb36464772021-01-14 22:27:56 -05009250 static_call(kvm_x86_pre_update_apicv_exec_ctrl)(kvm, activate);
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05009251
9252 /*
9253 * Sending request to update APICV for all other vcpus,
9254 * while update the calling vcpu immediately instead of
9255 * waiting for another #VMEXIT to handle the request.
9256 */
9257 except = kvm_get_running_vcpu();
9258 kvm_make_all_cpus_request_except(kvm, KVM_REQ_APICV_UPDATE,
9259 except);
9260 if (except)
9261 kvm_vcpu_update_apicv(except);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009262}
9263EXPORT_SYMBOL_GPL(kvm_request_apicv_update);
9264
Yang Zhang3d81bc72013-04-11 19:25:13 +08009265static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009266{
Wanpeng Lidcbd3e42018-12-17 10:43:23 +08009267 if (!kvm_apic_present(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08009268 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009269
Andrey Smetanin63086302015-11-10 15:36:32 +03009270 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009271
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07009272 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03009273 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009274 else {
Liran Alonfa59cc02017-12-24 18:12:53 +02009275 if (vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05009276 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Wanpeng Lie97f8522018-11-20 16:34:18 +08009277 if (ioapic_in_kernel(vcpu->kvm))
9278 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009279 }
Liran Alone40ff1d2018-03-21 02:50:31 +02009280
9281 if (is_guest_mode(vcpu))
9282 vcpu->arch.load_eoi_exitmap_pending = true;
9283 else
9284 kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu);
9285}
9286
9287static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
9288{
9289 u64 eoi_exit_bitmap[4];
9290
9291 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
9292 return;
9293
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009294 if (to_hv_vcpu(vcpu))
9295 bitmap_or((ulong *)eoi_exit_bitmap,
9296 vcpu->arch.ioapic_handled_vectors,
9297 to_hv_synic(vcpu)->vec_bitmap, 256);
9298
Jason Baronb36464772021-01-14 22:27:56 -05009299 static_call(kvm_x86_load_eoi_exitmap)(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009300}
9301
Eiichi Tsukatae649b3f2020-06-06 13:26:27 +09009302void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
9303 unsigned long start, unsigned long end)
Radim Krčmářb1394e72017-11-30 19:05:45 +01009304{
9305 unsigned long apic_address;
9306
9307 /*
9308 * The physical address of apic access page is stored in the VMCS.
9309 * Update it when it becomes invalid.
9310 */
9311 apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
9312 if (start <= apic_address && apic_address < end)
9313 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
9314}
9315
Tang Chen4256f432014-09-24 15:57:54 +08009316void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
9317{
Paolo Bonzini35754c92015-07-29 12:05:37 +02009318 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02009319 return;
9320
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009321 if (!kvm_x86_ops.set_apic_access_page_addr)
Tang Chen4256f432014-09-24 15:57:54 +08009322 return;
9323
Jason Baronb36464772021-01-14 22:27:56 -05009324 static_call(kvm_x86_set_apic_access_page_addr)(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009325}
Tang Chen4256f432014-09-24 15:57:54 +08009326
Sean Christophersond264ee02018-08-27 15:21:12 -07009327void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu)
9328{
9329 smp_send_reschedule(vcpu->cpu);
9330}
9331EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit);
9332
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009333/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01009334 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009335 * exiting to the userspace. Otherwise, the value will be returned to the
9336 * userspace.
9337 */
Avi Kivity851ba692009-08-24 11:10:17 +03009338static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009339{
9340 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08009341 bool req_int_win =
9342 dm_request_for_irq_injection(vcpu) &&
9343 kvm_cpu_accept_dm_intr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08009344 fastpath_t exit_fastpath;
Matt Gingell62a193e2015-11-16 15:26:07 -08009345
Jan Kiszka730dca42013-04-28 10:50:52 +02009346 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009347
Peter Xufb04a1e2020-09-30 21:22:22 -04009348 /* Forbid vmenter if vcpu dirty ring is soft-full */
9349 if (unlikely(vcpu->kvm->dirty_ring_size &&
9350 kvm_dirty_ring_soft_full(&vcpu->dirty_ring))) {
9351 vcpu->run->exit_reason = KVM_EXIT_DIRTY_RING_FULL;
9352 trace_kvm_dirty_ring_exit(vcpu);
9353 r = 0;
9354 goto out;
9355 }
9356
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02009357 if (kvm_request_pending(vcpu)) {
Paolo Bonzini729c15c2020-09-22 06:53:57 -04009358 if (kvm_check_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu)) {
Paolo Bonzini9a78e152021-01-08 11:43:08 -05009359 if (unlikely(!kvm_x86_ops.nested_ops->get_nested_state_pages(vcpu))) {
Jim Mattson671ddc72019-10-15 10:44:05 -07009360 r = 0;
9361 goto out;
9362 }
9363 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009364 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05009365 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03009366 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03009367 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02009368 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
9369 kvm_gen_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03009370 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
9371 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10009372 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
9373 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10009374 if (unlikely(r))
9375 goto out;
9376 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009377 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03009378 kvm_mmu_sync_roots(vcpu);
Paolo Bonzini727a7e22020-03-05 03:52:50 -05009379 if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu))
9380 kvm_mmu_load_pgd(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009381 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
Sean Christopherson77809382020-03-20 14:28:18 -07009382 kvm_vcpu_flush_tlb_all(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009383
9384 /* Flushing all ASIDs flushes the current ASID... */
9385 kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
9386 }
9387 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
9388 kvm_vcpu_flush_tlb_current(vcpu);
Sean Christopherson07ffaf32021-06-09 16:42:21 -07009389 if (kvm_check_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu))
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04009390 kvm_vcpu_flush_tlb_guest(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009391
Avi Kivitya8eeb042010-05-10 12:34:53 +03009392 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009393 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02009394 r = 0;
9395 goto out;
9396 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009397 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009398 if (is_guest_mode(vcpu)) {
9399 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9400 } else {
9401 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
9402 vcpu->mmio_needed = 0;
9403 r = 0;
9404 goto out;
9405 }
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01009406 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009407 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
9408 /* Page is swapped out. Do synthetic halt */
9409 vcpu->arch.apf.halted = true;
9410 r = 1;
9411 goto out;
9412 }
Glauber Costac9aaa892011-07-11 15:28:14 -04009413 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
9414 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009415 if (kvm_check_request(KVM_REQ_SMI, vcpu))
9416 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009417 if (kvm_check_request(KVM_REQ_NMI, vcpu))
9418 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009419 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009420 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009421 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009422 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07009423 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
9424 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
9425 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03009426 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07009427 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
9428 vcpu->run->eoi.vector =
9429 vcpu->arch.pending_ioapic_eoi;
9430 r = 0;
9431 goto out;
9432 }
9433 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08009434 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
9435 vcpu_scan_ioapic(vcpu);
Liran Alone40ff1d2018-03-21 02:50:31 +02009436 if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu))
9437 vcpu_load_eoi_exitmap(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009438 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
9439 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03009440 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
9441 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9442 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
9443 r = 0;
9444 goto out;
9445 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03009446 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
9447 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9448 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
9449 r = 0;
9450 goto out;
9451 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03009452 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009453 struct kvm_vcpu_hv *hv_vcpu = to_hv_vcpu(vcpu);
9454
Andrey Smetanindb3975712015-11-10 15:36:35 +03009455 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009456 vcpu->run->hyperv = hv_vcpu->exit;
Andrey Smetanindb3975712015-11-10 15:36:35 +03009457 r = 0;
9458 goto out;
9459 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03009460
9461 /*
9462 * KVM_REQ_HV_STIMER has to be processed after
9463 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
9464 * depend on the guest clock being up-to-date
9465 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03009466 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
9467 kvm_hv_process_stimers(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009468 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
9469 kvm_vcpu_update_apicv(vcpu);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02009470 if (kvm_check_request(KVM_REQ_APF_READY, vcpu))
9471 kvm_check_async_pf_completion(vcpu);
Alexander Graf1a1552542020-09-25 16:34:21 +02009472 if (kvm_check_request(KVM_REQ_MSR_FILTER_CHANGED, vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009473 static_call(kvm_x86_msr_filter_changed)(vcpu);
Makarand Sonarea85863c2021-02-12 16:50:12 -08009474
9475 if (kvm_check_request(KVM_REQ_UPDATE_CPU_DIRTY_LOGGING, vcpu))
9476 static_call(kvm_x86_update_cpu_dirty_logging)(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02009477 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009478
David Woodhouse40da8cc2020-12-09 20:08:30 +00009479 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win ||
9480 kvm_xen_has_interrupt(vcpu)) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01009481 ++vcpu->stat.req_event;
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009482 r = kvm_apic_accept_events(vcpu);
9483 if (r < 0) {
9484 r = 0;
9485 goto out;
9486 }
Jan Kiszka66450a22013-03-13 12:42:34 +01009487 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
9488 r = 1;
9489 goto out;
9490 }
9491
Jim Mattsona5f69092021-06-04 10:26:03 -07009492 r = inject_pending_event(vcpu, &req_immediate_exit);
9493 if (r < 0) {
9494 r = 0;
9495 goto out;
9496 }
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009497 if (req_int_win)
Jason Baronb36464772021-01-14 22:27:56 -05009498 static_call(kvm_x86_enable_irq_window)(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03009499
Avi Kivity3842d132010-07-27 12:30:24 +03009500 if (kvm_lapic_enabled(vcpu)) {
9501 update_cr8_intercept(vcpu);
9502 kvm_lapic_sync_to_vapic(vcpu);
9503 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009504 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009505
Avi Kivityd8368af2012-05-14 18:07:56 +03009506 r = kvm_mmu_reload(vcpu);
9507 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009508 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03009509 }
9510
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009511 preempt_disable();
9512
Jason Baronb36464772021-01-14 22:27:56 -05009513 static_call(kvm_x86_prepare_guest_switch)(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009514
9515 /*
9516 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
9517 * IPI are then delayed after guest entry, which ensures that they
9518 * result in virtual interrupt delivery.
9519 */
9520 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009521 vcpu->mode = IN_GUEST_MODE;
9522
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009523 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
9524
Lan Tianyu0f127d12016-03-13 11:10:29 +08009525 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009526 * 1) We should set ->mode before checking ->requests. Please see
Andrew Jonescde9af62017-04-26 22:32:24 +02009527 * the comment in kvm_vcpu_exiting_guest_mode().
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009528 *
Luwei Kang81b01662019-01-31 16:52:02 +08009529 * 2) For APICv, we should set ->mode before checking PID.ON. This
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009530 * pairs with the memory barrier implicit in pi_test_and_set_on
9531 * (see vmx_deliver_posted_interrupt).
9532 *
9533 * 3) This also orders the write to mode from any reads to the page
9534 * tables done while the VCPU is running. Please see the comment
9535 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009536 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009537 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009538
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009539 /*
9540 * This handles the case where a posted interrupt was
9541 * notified with kvm_vcpu_kick.
9542 */
Liran Alonfa59cc02017-12-24 18:12:53 +02009543 if (kvm_lapic_enabled(vcpu) && vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05009544 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009545
Wanpeng Li5a9f5442020-04-28 14:23:26 +08009546 if (kvm_vcpu_exit_request(vcpu)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009547 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009548 smp_wmb();
9549 local_irq_enable();
9550 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009551 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009552 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009553 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009554 }
9555
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009556 if (req_immediate_exit) {
9557 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009558 static_call(kvm_x86_request_immediate_exit)(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009559 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03009560
Sean Christopherson2620fe22020-01-17 11:30:51 -08009561 fpregs_assert_state_consistent();
9562 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9563 switch_fpu_return();
Rik van Riel5f409e22019-04-03 18:41:52 +02009564
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009565 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009566 set_debugreg(0, 7);
9567 set_debugreg(vcpu->arch.eff_db[0], 0);
9568 set_debugreg(vcpu->arch.eff_db[1], 1);
9569 set_debugreg(vcpu->arch.eff_db[2], 2);
9570 set_debugreg(vcpu->arch.eff_db[3], 3);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009571 set_debugreg(vcpu->arch.dr6, 6);
Nadav Amitae561ed2015-04-02 03:10:37 +03009572 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009573 }
9574
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05009575 for (;;) {
9576 exit_fastpath = static_call(kvm_x86_run)(vcpu);
9577 if (likely(exit_fastpath != EXIT_FASTPATH_REENTER_GUEST))
9578 break;
9579
9580 if (unlikely(kvm_vcpu_exit_request(vcpu))) {
9581 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
9582 break;
9583 }
9584
9585 if (vcpu->arch.apicv_active)
9586 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
9587 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009588
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009589 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009590 * Do this here before restoring debug registers on the host. And
9591 * since we do this before handling the vmexit, a DR access vmexit
9592 * can (a) read the correct value of the debug registers, (b) set
9593 * KVM_DEBUGREG_WONT_EXIT again.
9594 */
9595 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009596 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
Jason Baronb36464772021-01-14 22:27:56 -05009597 static_call(kvm_x86_sync_dirty_debug_regs)(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009598 kvm_update_dr0123(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009599 kvm_update_dr7(vcpu);
9600 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009601 }
9602
9603 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009604 * If the guest has used debug registers, at least dr7
9605 * will be disabled while returning to the host.
9606 * If we don't have active breakpoints in the host, we don't
9607 * care about the messed up debug address registers. But if
9608 * we have some of them active, restore the old state.
9609 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01009610 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009611 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009612
Jim Mattsonc9671182020-06-03 16:56:23 -07009613 vcpu->arch.last_vmentry_cpu = vcpu->cpu;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08009614 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10009615
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009616 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03009617 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08009618
Jason Baronb36464772021-01-14 22:27:56 -05009619 static_call(kvm_x86_handle_exit_irqoff)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009620
Sean Christophersond7a08882019-07-10 09:07:34 -07009621 /*
9622 * Consume any pending interrupts, including the possible source of
9623 * VM-Exit on SVM and any ticks that occur between VM-Exit and now.
9624 * An instruction is required after local_irq_enable() to fully unblock
9625 * interrupts on processors that implement an interrupt shadow, the
9626 * stat.exits increment will do nicely.
9627 */
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009628 kvm_before_interrupt(vcpu);
Sean Christophersond7a08882019-07-10 09:07:34 -07009629 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009630 ++vcpu->stat.exits;
Sean Christophersond7a08882019-07-10 09:07:34 -07009631 local_irq_disable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009632 kvm_after_interrupt(vcpu);
9633
Wanpeng Li16045712021-05-04 17:27:30 -07009634 /*
9635 * Wait until after servicing IRQs to account guest time so that any
9636 * ticks that occurred while running the guest are properly accounted
9637 * to the guest. Waiting until IRQs are enabled degrades the accuracy
9638 * of accounting via context tracking, but the loss of accuracy is
9639 * acceptable for all known use cases.
9640 */
9641 vtime_account_guest_exit();
9642
Wanpeng Liec0671d2019-05-20 16:18:08 +08009643 if (lapic_in_kernel(vcpu)) {
9644 s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta;
9645 if (delta != S64_MIN) {
9646 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta);
9647 vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN;
9648 }
9649 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009650
Paolo Bonzinif2485b32016-06-15 15:23:11 +02009651 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009652 preempt_enable();
9653
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009654 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03009655
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009656 /*
9657 * Profile KVM exit RIPs:
9658 */
9659 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009660 unsigned long rip = kvm_rip_read(vcpu);
9661 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009662 }
9663
Zachary Amsdencc578282012-02-03 15:43:50 -02009664 if (unlikely(vcpu->arch.tsc_always_catchup))
9665 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02009666
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03009667 if (vcpu->arch.apic_attention)
9668 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02009669
Jason Baronb36464772021-01-14 22:27:56 -05009670 r = static_call(kvm_x86_handle_exit)(vcpu, exit_fastpath);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009671 return r;
9672
9673cancel_injection:
Sean Christopherson8081ad02020-04-22 19:25:40 -07009674 if (req_immediate_exit)
9675 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009676 static_call(kvm_x86_cancel_injection)(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03009677 if (unlikely(vcpu->arch.apic_attention))
9678 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009679out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03009680 return r;
9681}
9682
Paolo Bonzini362c6982015-02-06 12:48:04 +01009683static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
9684{
Feng Wubf9f6ac2015-09-18 22:29:55 +08009685 if (!kvm_arch_vcpu_runnable(vcpu) &&
Jason Baronb36464772021-01-14 22:27:56 -05009686 (!kvm_x86_ops.pre_block || static_call(kvm_x86_pre_block)(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01009687 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
9688 kvm_vcpu_block(vcpu);
9689 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009690
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009691 if (kvm_x86_ops.post_block)
Jason Baronb36464772021-01-14 22:27:56 -05009692 static_call(kvm_x86_post_block)(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009693
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01009694 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
9695 return 1;
9696 }
Gleb Natapov09cec752009-03-23 15:11:44 +02009697
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009698 if (kvm_apic_accept_events(vcpu) < 0)
9699 return 0;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009700 switch(vcpu->arch.mp_state) {
9701 case KVM_MP_STATE_HALTED:
Tom Lendacky647daca2021-01-04 14:20:01 -06009702 case KVM_MP_STATE_AP_RESET_HOLD:
Paolo Bonzini362c6982015-02-06 12:48:04 +01009703 vcpu->arch.pv.pv_unhalted = false;
9704 vcpu->arch.mp_state =
9705 KVM_MP_STATE_RUNNABLE;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05009706 fallthrough;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009707 case KVM_MP_STATE_RUNNABLE:
9708 vcpu->arch.apf.halted = false;
9709 break;
9710 case KVM_MP_STATE_INIT_RECEIVED:
9711 break;
9712 default:
9713 return -EINTR;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009714 }
9715 return 1;
9716}
9717
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02009718static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
9719{
Paolo Bonzini56083bd2020-04-17 10:32:53 -04009720 if (is_guest_mode(vcpu))
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009721 kvm_check_nested_events(vcpu);
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +01009722
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02009723 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
9724 !vcpu->arch.apf.halted);
9725}
9726
Paolo Bonzini362c6982015-02-06 12:48:04 +01009727static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03009728{
9729 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009730 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03009731
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009732 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +02009733 vcpu->arch.l1tf_flush_l1d = true;
Marcelo Tosattid7690172008-09-08 15:23:48 -03009734
Paolo Bonzini362c6982015-02-06 12:48:04 +01009735 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +02009736 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009737 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009738 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +01009739 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009740 }
9741
Gleb Natapov09cec752009-03-23 15:11:44 +02009742 if (r <= 0)
9743 break;
9744
Marcelo Tosatti084071d2021-05-25 10:41:17 -03009745 kvm_clear_request(KVM_REQ_UNBLOCK, vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +02009746 if (kvm_cpu_has_pending_timer(vcpu))
9747 kvm_inject_pending_timer_irqs(vcpu);
9748
Matt Gingell782d4222015-11-16 15:26:00 -08009749 if (dm_request_for_irq_injection(vcpu) &&
9750 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +02009751 r = 0;
9752 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +02009753 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009754 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02009755 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009756
Thomas Gleixnerf3020b82020-07-30 09:19:01 +02009757 if (__xfer_to_guest_mode_work_pending()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009758 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02009759 r = xfer_to_guest_mode_handle_work(vcpu);
9760 if (r)
9761 return r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009762 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03009763 }
9764 }
9765
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009766 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009767
9768 return r;
9769}
9770
Gleb Natapov716d51a2012-09-03 15:24:26 +03009771static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
9772{
9773 int r;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07009774
Gleb Natapov716d51a2012-09-03 15:24:26 +03009775 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Sean Christopherson0ce97a22018-08-23 13:56:52 -07009776 r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
Gleb Natapov716d51a2012-09-03 15:24:26 +03009777 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07009778 return r;
Gleb Natapov716d51a2012-09-03 15:24:26 +03009779}
9780
9781static int complete_emulated_pio(struct kvm_vcpu *vcpu)
9782{
9783 BUG_ON(!vcpu->arch.pio.count);
9784
9785 return complete_emulated_io(vcpu);
9786}
9787
Avi Kivityf78146b2012-04-18 19:22:47 +03009788/*
9789 * Implements the following, as a state machine:
9790 *
9791 * read:
9792 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009793 * for each mmio piece in the fragment
9794 * write gpa, len
9795 * exit
9796 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03009797 * execute insn
9798 *
9799 * write:
9800 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009801 * for each mmio piece in the fragment
9802 * write gpa, len
9803 * copy data
9804 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03009805 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03009806static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02009807{
9808 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03009809 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009810 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02009811
Gleb Natapov716d51a2012-09-03 15:24:26 +03009812 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02009813
Gleb Natapov716d51a2012-09-03 15:24:26 +03009814 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009815 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
9816 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03009817 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009818 memcpy(frag->data, run->mmio.data, len);
9819
9820 if (frag->len <= 8) {
9821 /* Switch to the next fragment. */
9822 frag++;
9823 vcpu->mmio_cur_fragment++;
9824 } else {
9825 /* Go forward to the next mmio piece. */
9826 frag->data += len;
9827 frag->gpa += len;
9828 frag->len -= len;
9829 }
9830
Andrew Honiga08d3b32014-02-27 19:35:14 +01009831 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03009832 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02009833
9834 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02009835 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03009836 return 1;
9837 vcpu->mmio_read_completed = 1;
9838 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02009839 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009840
Gleb Natapov716d51a2012-09-03 15:24:26 +03009841 run->exit_reason = KVM_EXIT_MMIO;
9842 run->mmio.phys_addr = frag->gpa;
9843 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009844 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
9845 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03009846 run->mmio.is_write = vcpu->mmio_is_write;
9847 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
9848 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02009849}
9850
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009851static void kvm_save_current_fpu(struct fpu *fpu)
9852{
9853 /*
9854 * If the target FPU state is not resident in the CPU registers, just
9855 * memcpy() from current, else save CPU state directly to the target.
9856 */
9857 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9858 memcpy(&fpu->state, &current->thread.fpu.state,
9859 fpu_kernel_xstate_size);
9860 else
9861 copy_fpregs_to_fpstate(fpu);
9862}
9863
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02009864/* Swap (qemu) user FPU context for the guest FPU context. */
9865static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
9866{
Rik van Riel5f409e22019-04-03 18:41:52 +02009867 fpregs_lock();
9868
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009869 kvm_save_current_fpu(vcpu->arch.user_fpu);
9870
Tom Lendackyed02b212020-12-10 11:10:01 -06009871 /*
9872 * Guests with protected state can't have it set by the hypervisor,
9873 * so skip trying to set it.
9874 */
9875 if (vcpu->arch.guest_fpu)
9876 /* PKRU is separately restored in kvm_x86_ops.run. */
9877 __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu->state,
9878 ~XFEATURE_MASK_PKRU);
Rik van Riel5f409e22019-04-03 18:41:52 +02009879
9880 fpregs_mark_activate();
9881 fpregs_unlock();
9882
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02009883 trace_kvm_fpu(1);
9884}
9885
9886/* When vcpu_run ends, restore user space FPU context. */
9887static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
9888{
Rik van Riel5f409e22019-04-03 18:41:52 +02009889 fpregs_lock();
9890
Tom Lendackyed02b212020-12-10 11:10:01 -06009891 /*
9892 * Guests with protected state can't have it read by the hypervisor,
9893 * so skip trying to save it.
9894 */
9895 if (vcpu->arch.guest_fpu)
9896 kvm_save_current_fpu(vcpu->arch.guest_fpu);
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009897
Wanpeng Lid9a710e2019-07-22 12:26:21 +08009898 copy_kernel_to_fpregs(&vcpu->arch.user_fpu->state);
Rik van Riel5f409e22019-04-03 18:41:52 +02009899
9900 fpregs_mark_activate();
9901 fpregs_unlock();
9902
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02009903 ++vcpu->stat.fpu_reload;
9904 trace_kvm_fpu(0);
9905}
9906
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009907int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009908{
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009909 struct kvm_run *kvm_run = vcpu->run;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009910 int r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009911
Christoffer Dallaccb7572017-12-04 21:35:25 +01009912 vcpu_load(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +01009913 kvm_sigset_activate(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08009914 kvm_run->flags = 0;
Peter Xu5663d8f2017-12-12 17:15:02 +01009915 kvm_load_guest_fpu(vcpu);
9916
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009917 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
Jan H. Schönherr2f173d22017-09-06 18:34:06 +02009918 if (kvm_run->immediate_exit) {
9919 r = -EINTR;
9920 goto out;
9921 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009922 kvm_vcpu_block(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009923 if (kvm_apic_accept_events(vcpu) < 0) {
9924 r = 0;
9925 goto out;
9926 }
Radim Krčmář72875d82017-04-26 22:32:19 +02009927 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009928 r = -EAGAIN;
Jan H. Schönherra0595002017-09-06 00:27:19 +02009929 if (signal_pending(current)) {
9930 r = -EINTR;
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009931 kvm_run->exit_reason = KVM_EXIT_INTR;
Jan H. Schönherra0595002017-09-06 00:27:19 +02009932 ++vcpu->stat.signal_exits;
9933 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009934 goto out;
9935 }
9936
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009937 if (kvm_run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) {
Ken Hofsass01643c52018-01-31 16:03:36 -08009938 r = -EINVAL;
9939 goto out;
9940 }
9941
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009942 if (kvm_run->kvm_dirty_regs) {
Ken Hofsass01643c52018-01-31 16:03:36 -08009943 r = sync_regs(vcpu);
9944 if (r != 0)
9945 goto out;
9946 }
9947
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009948 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +02009949 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +01009950 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
9951 r = -EINVAL;
9952 goto out;
9953 }
9954 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009955
Gleb Natapov716d51a2012-09-03 15:24:26 +03009956 if (unlikely(vcpu->arch.complete_userspace_io)) {
9957 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
9958 vcpu->arch.complete_userspace_io = NULL;
9959 r = cui(vcpu);
9960 if (r <= 0)
Peter Xu5663d8f2017-12-12 17:15:02 +01009961 goto out;
Gleb Natapov716d51a2012-09-03 15:24:26 +03009962 } else
9963 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02009964
Paolo Bonzini460df4c2017-02-08 11:50:15 +01009965 if (kvm_run->immediate_exit)
9966 r = -EINTR;
9967 else
9968 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009969
9970out:
Peter Xu5663d8f2017-12-12 17:15:02 +01009971 kvm_put_guest_fpu(vcpu);
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009972 if (kvm_run->kvm_valid_regs)
Ken Hofsass01643c52018-01-31 16:03:36 -08009973 store_regs(vcpu);
Marcelo Tosattif1d86e42010-05-03 23:04:27 -03009974 post_kvm_run_save(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +01009975 kvm_sigset_deactivate(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009976
Christoffer Dallaccb7572017-12-04 21:35:25 +01009977 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009978 return r;
9979}
9980
Ken Hofsass01643c52018-01-31 16:03:36 -08009981static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009982{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02009983 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
9984 /*
9985 * We are here if userspace calls get_regs() in the middle of
9986 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +08009987 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +02009988 * that usually, but some bad designed PV devices (vmware
9989 * backdoor interface) need this to work
9990 */
Sean Christophersonc9b8b072020-02-18 15:29:48 -08009991 emulator_writeback_register_cache(vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02009992 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
9993 }
Sean Christophersonde3cd112019-04-30 10:36:17 -07009994 regs->rax = kvm_rax_read(vcpu);
9995 regs->rbx = kvm_rbx_read(vcpu);
9996 regs->rcx = kvm_rcx_read(vcpu);
9997 regs->rdx = kvm_rdx_read(vcpu);
9998 regs->rsi = kvm_rsi_read(vcpu);
9999 regs->rdi = kvm_rdi_read(vcpu);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010000 regs->rsp = kvm_rsp_read(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010001 regs->rbp = kvm_rbp_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010002#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010003 regs->r8 = kvm_r8_read(vcpu);
10004 regs->r9 = kvm_r9_read(vcpu);
10005 regs->r10 = kvm_r10_read(vcpu);
10006 regs->r11 = kvm_r11_read(vcpu);
10007 regs->r12 = kvm_r12_read(vcpu);
10008 regs->r13 = kvm_r13_read(vcpu);
10009 regs->r14 = kvm_r14_read(vcpu);
10010 regs->r15 = kvm_r15_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010011#endif
10012
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010013 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +020010014 regs->rflags = kvm_get_rflags(vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010015}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010016
Ken Hofsass01643c52018-01-31 16:03:36 -080010017int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10018{
10019 vcpu_load(vcpu);
10020 __get_regs(vcpu, regs);
Christoffer Dall1fc9b762017-12-04 21:35:26 +010010021 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010022 return 0;
10023}
10024
Ken Hofsass01643c52018-01-31 16:03:36 -080010025static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010026{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010027 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
10028 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10029
Sean Christophersonde3cd112019-04-30 10:36:17 -070010030 kvm_rax_write(vcpu, regs->rax);
10031 kvm_rbx_write(vcpu, regs->rbx);
10032 kvm_rcx_write(vcpu, regs->rcx);
10033 kvm_rdx_write(vcpu, regs->rdx);
10034 kvm_rsi_write(vcpu, regs->rsi);
10035 kvm_rdi_write(vcpu, regs->rdi);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010036 kvm_rsp_write(vcpu, regs->rsp);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010037 kvm_rbp_write(vcpu, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010038#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010039 kvm_r8_write(vcpu, regs->r8);
10040 kvm_r9_write(vcpu, regs->r9);
10041 kvm_r10_write(vcpu, regs->r10);
10042 kvm_r11_write(vcpu, regs->r11);
10043 kvm_r12_write(vcpu, regs->r12);
10044 kvm_r13_write(vcpu, regs->r13);
10045 kvm_r14_write(vcpu, regs->r14);
10046 kvm_r15_write(vcpu, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010047#endif
10048
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010049 kvm_rip_write(vcpu, regs->rip);
Wanpeng Lid73235d2017-12-07 00:30:08 -080010050 kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010051
Jan Kiszkab4f14ab2008-04-30 17:59:04 +020010052 vcpu->arch.exception.pending = false;
10053
Avi Kivity3842d132010-07-27 12:30:24 +030010054 kvm_make_request(KVM_REQ_EVENT, vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010055}
Avi Kivity3842d132010-07-27 12:30:24 +030010056
Ken Hofsass01643c52018-01-31 16:03:36 -080010057int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10058{
10059 vcpu_load(vcpu);
10060 __set_regs(vcpu, regs);
Christoffer Dall875656f2017-12-04 21:35:27 +010010061 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010062 return 0;
10063}
10064
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010065void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
10066{
10067 struct kvm_segment cs;
10068
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010069 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010070 *db = cs.db;
10071 *l = cs.l;
10072}
10073EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
10074
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010075static void __get_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010076{
Gleb Natapov89a27f42010-02-16 10:51:48 +020010077 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010078
Tom Lendacky52657132020-12-10 11:09:59 -060010079 if (vcpu->arch.guest_state_protected)
10080 goto skip_protected_regs;
10081
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010082 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10083 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10084 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10085 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10086 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10087 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010088
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010089 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10090 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010091
Jason Baronb36464772021-01-14 22:27:56 -050010092 static_call(kvm_x86_get_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010093 sregs->idt.limit = dt.size;
10094 sregs->idt.base = dt.address;
Jason Baronb36464772021-01-14 22:27:56 -050010095 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010096 sregs->gdt.limit = dt.size;
10097 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010098
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010099 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +020010100 sregs->cr3 = kvm_read_cr3(vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010101
10102skip_protected_regs:
10103 sregs->cr0 = kvm_read_cr0(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +020010104 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010105 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +020010106 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010107 sregs->apic_base = kvm_get_apic_base(vcpu);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010108}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010109
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010110static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10111{
10112 __get_sregs_common(vcpu, sregs);
10113
10114 if (vcpu->arch.guest_state_protected)
10115 return;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010116
Liran Alon04140b42018-03-23 03:01:31 +030010117 if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +030010118 set_bit(vcpu->arch.interrupt.nr,
10119 (unsigned long *)sregs->interrupt_bitmap);
Ken Hofsass01643c52018-01-31 16:03:36 -080010120}
Gleb Natapov16d7a192009-04-21 17:45:10 +030010121
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010122static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10123{
10124 int i;
10125
10126 __get_sregs_common(vcpu, (struct kvm_sregs *)sregs2);
10127
10128 if (vcpu->arch.guest_state_protected)
10129 return;
10130
10131 if (is_pae_paging(vcpu)) {
10132 for (i = 0 ; i < 4 ; i++)
10133 sregs2->pdptrs[i] = kvm_pdptr_read(vcpu, i);
10134 sregs2->flags |= KVM_SREGS2_FLAGS_PDPTRS_VALID;
10135 }
10136}
10137
Ken Hofsass01643c52018-01-31 16:03:36 -080010138int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
10139 struct kvm_sregs *sregs)
10140{
10141 vcpu_load(vcpu);
10142 __get_sregs(vcpu, sregs);
Christoffer Dallbcdec412017-12-04 21:35:28 +010010143 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010144 return 0;
10145}
10146
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010147int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
10148 struct kvm_mp_state *mp_state)
10149{
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010150 int r;
10151
Christoffer Dallfd232562017-12-04 21:35:30 +010010152 vcpu_load(vcpu);
Sean Christophersonf958bd22019-12-09 12:19:31 -080010153 if (kvm_mpx_supported())
10154 kvm_load_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010155
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010156 r = kvm_apic_accept_events(vcpu);
10157 if (r < 0)
10158 goto out;
10159 r = 0;
10160
Tom Lendacky647daca2021-01-04 14:20:01 -060010161 if ((vcpu->arch.mp_state == KVM_MP_STATE_HALTED ||
10162 vcpu->arch.mp_state == KVM_MP_STATE_AP_RESET_HOLD) &&
10163 vcpu->arch.pv.pv_unhalted)
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +053010164 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
10165 else
10166 mp_state->mp_state = vcpu->arch.mp_state;
10167
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010168out:
Sean Christophersonf958bd22019-12-09 12:19:31 -080010169 if (kvm_mpx_supported())
10170 kvm_put_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010171 vcpu_put(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010172 return r;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010173}
10174
10175int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
10176 struct kvm_mp_state *mp_state)
10177{
Christoffer Dalle83dff52017-12-04 21:35:31 +010010178 int ret = -EINVAL;
10179
10180 vcpu_load(vcpu);
10181
Paolo Bonzinibce87cc2016-01-08 13:48:51 +010010182 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +010010183 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
Christoffer Dalle83dff52017-12-04 21:35:31 +010010184 goto out;
Jan Kiszka66450a22013-03-13 12:42:34 +010010185
Liran Alon27cbe7d2019-11-11 11:16:40 +020010186 /*
10187 * KVM_MP_STATE_INIT_RECEIVED means the processor is in
10188 * INIT state; latched init should be reported using
10189 * KVM_SET_VCPU_EVENTS, so reject it here.
10190 */
10191 if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) &&
David Hildenbrand28bf2882017-03-23 11:46:03 +010010192 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
10193 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
Christoffer Dalle83dff52017-12-04 21:35:31 +010010194 goto out;
David Hildenbrand28bf2882017-03-23 11:46:03 +010010195
Jan Kiszka66450a22013-03-13 12:42:34 +010010196 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
10197 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
10198 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
10199 } else
10200 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +030010201 kvm_make_request(KVM_REQ_EVENT, vcpu);
Christoffer Dalle83dff52017-12-04 21:35:31 +010010202
10203 ret = 0;
10204out:
10205 vcpu_put(vcpu);
10206 return ret;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010207}
10208
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010209int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
10210 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010211{
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010212 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010213 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010214
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010215 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +020010216
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010217 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010218 has_error_code, error_code);
Sean Christopherson10517782019-08-27 14:40:35 -070010219 if (ret) {
10220 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
10221 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
10222 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010223 return 0;
Sean Christopherson10517782019-08-27 14:40:35 -070010224 }
Gleb Natapovc6975182010-02-18 12:15:01 +020010225
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010226 kvm_rip_write(vcpu, ctxt->eip);
10227 kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010228 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +020010229}
10230EXPORT_SYMBOL_GPL(kvm_task_switch);
10231
Sean Christophersonee69c922020-10-06 18:44:16 -070010232static bool kvm_is_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Lan Tianyuf2981032017-12-14 03:01:52 -050010233{
Tianyu Lan37b95952018-01-16 17:34:07 +080010234 if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) {
Lan Tianyuf2981032017-12-14 03:01:52 -050010235 /*
10236 * When EFER.LME and CR0.PG are set, the processor is in
10237 * 64-bit mode (though maybe in a 32-bit code segment).
10238 * CR4.PAE and EFER.LMA must be set.
10239 */
Sean Christophersonee69c922020-10-06 18:44:16 -070010240 if (!(sregs->cr4 & X86_CR4_PAE) || !(sregs->efer & EFER_LMA))
10241 return false;
Sean Christophersonca29e142021-02-03 16:01:12 -080010242 if (kvm_vcpu_is_illegal_gpa(vcpu, sregs->cr3))
Paolo Bonzinic1c35cf2020-11-13 08:30:38 -050010243 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010244 } else {
10245 /*
10246 * Not in 64-bit mode: EFER.LMA is clear and the code
10247 * segment cannot be 64-bit.
10248 */
10249 if (sregs->efer & EFER_LMA || sregs->cs.l)
Sean Christophersonee69c922020-10-06 18:44:16 -070010250 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010251 }
10252
Sean Christophersonee69c922020-10-06 18:44:16 -070010253 return kvm_is_valid_cr4(vcpu, sregs->cr4);
Lan Tianyuf2981032017-12-14 03:01:52 -050010254}
10255
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010256static int __set_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs,
10257 int *mmu_reset_needed, bool update_pdptrs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010258{
Jan Kiszka58cb6282014-01-24 16:48:44 +010010259 struct msr_data apic_base_msr;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010260 int idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +020010261 struct desc_ptr dt;
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010262
Sean Christophersonee69c922020-10-06 18:44:16 -070010263 if (!kvm_is_valid_sregs(vcpu, sregs))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010264 return -EINVAL;
Lan Tianyuf2981032017-12-14 03:01:52 -050010265
Jim Mattsond3802282017-08-10 10:14:13 -070010266 apic_base_msr.data = sregs->apic_base;
10267 apic_base_msr.host_initiated = true;
10268 if (kvm_set_apic_base(vcpu, &apic_base_msr))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010269 return -EINVAL;
Petr Matousek6d1068b2012-11-06 19:24:07 +010010270
Tom Lendacky52657132020-12-10 11:09:59 -060010271 if (vcpu->arch.guest_state_protected)
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010272 return 0;
Tom Lendacky52657132020-12-10 11:09:59 -060010273
Gleb Natapov89a27f42010-02-16 10:51:48 +020010274 dt.size = sregs->idt.limit;
10275 dt.address = sregs->idt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010276 static_call(kvm_x86_set_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010277 dt.size = sregs->gdt.limit;
10278 dt.address = sregs->gdt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010279 static_call(kvm_x86_set_gdt)(vcpu, &dt);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010280
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010281 vcpu->arch.cr2 = sregs->cr2;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010282 *mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +020010283 vcpu->arch.cr3 = sregs->cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -070010284 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010285
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010286 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010287
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010288 *mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Jason Baronb36464772021-01-14 22:27:56 -050010289 static_call(kvm_x86_set_efer)(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010290
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010291 *mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Jason Baronb36464772021-01-14 22:27:56 -050010292 static_call(kvm_x86_set_cr0)(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +000010293 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010294
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010295 *mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Jason Baronb36464772021-01-14 22:27:56 -050010296 static_call(kvm_x86_set_cr4)(vcpu, sregs->cr4);
Xiao Guangrong63f42e02011-01-12 15:39:18 +080010297
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010298 if (update_pdptrs) {
10299 idx = srcu_read_lock(&vcpu->kvm->srcu);
10300 if (is_pae_paging(vcpu)) {
10301 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
10302 *mmu_reset_needed = 1;
10303 }
10304 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Marcelo Tosatti7c93be442009-10-26 16:48:33 -020010305 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010306
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010307 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10308 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10309 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10310 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10311 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10312 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010313
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010314 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10315 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010316
Mikhail Ershov5f0269f2009-08-03 14:58:25 +030010317 update_cr8_intercept(vcpu);
10318
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010319 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +030010320 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010321 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +020010322 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010323 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10324
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010325 return 0;
10326}
10327
10328static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10329{
10330 int pending_vec, max_bits;
10331 int mmu_reset_needed = 0;
10332 int ret = __set_sregs_common(vcpu, sregs, &mmu_reset_needed, true);
10333
10334 if (ret)
10335 return ret;
10336
10337 if (mmu_reset_needed)
10338 kvm_mmu_reset_context(vcpu);
10339
Tom Lendacky52657132020-12-10 11:09:59 -060010340 max_bits = KVM_NR_INTERRUPTS;
10341 pending_vec = find_first_bit(
10342 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010343
Tom Lendacky52657132020-12-10 11:09:59 -060010344 if (pending_vec < max_bits) {
10345 kvm_queue_interrupt(vcpu, pending_vec, false);
10346 pr_debug("Set back pending irq %d\n", pending_vec);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010347 kvm_make_request(KVM_REQ_EVENT, vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010348 }
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010349 return 0;
10350}
Tom Lendacky52657132020-12-10 11:09:59 -060010351
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010352static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10353{
10354 int mmu_reset_needed = 0;
10355 bool valid_pdptrs = sregs2->flags & KVM_SREGS2_FLAGS_PDPTRS_VALID;
10356 bool pae = (sregs2->cr0 & X86_CR0_PG) && (sregs2->cr4 & X86_CR4_PAE) &&
10357 !(sregs2->efer & EFER_LMA);
10358 int i, ret;
Avi Kivity3842d132010-07-27 12:30:24 +030010359
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010360 if (sregs2->flags & ~KVM_SREGS2_FLAGS_PDPTRS_VALID)
10361 return -EINVAL;
10362
10363 if (valid_pdptrs && (!pae || vcpu->arch.guest_state_protected))
10364 return -EINVAL;
10365
10366 ret = __set_sregs_common(vcpu, (struct kvm_sregs *)sregs2,
10367 &mmu_reset_needed, !valid_pdptrs);
10368 if (ret)
10369 return ret;
10370
10371 if (valid_pdptrs) {
10372 for (i = 0; i < 4 ; i++)
10373 kvm_pdptr_write(vcpu, i, sregs2->pdptrs[i]);
10374
10375 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
10376 mmu_reset_needed = 1;
Maxim Levitsky158a48e2021-06-07 12:02:03 +030010377 vcpu->arch.pdptrs_from_userspace = true;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010378 }
10379 if (mmu_reset_needed)
10380 kvm_mmu_reset_context(vcpu);
10381 return 0;
Ken Hofsass01643c52018-01-31 16:03:36 -080010382}
10383
10384int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
10385 struct kvm_sregs *sregs)
10386{
10387 int ret;
10388
10389 vcpu_load(vcpu);
10390 ret = __set_sregs(vcpu, sregs);
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010391 vcpu_put(vcpu);
10392 return ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010393}
10394
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010395int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
10396 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010397{
Jan Kiszka355be0b2009-10-03 00:31:21 +020010398 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010399 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010400
Tom Lendacky8d4846b2020-12-10 11:09:43 -060010401 if (vcpu->arch.guest_state_protected)
10402 return -EINVAL;
10403
Christoffer Dall66b56562017-12-04 21:35:33 +010010404 vcpu_load(vcpu);
10405
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010406 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
10407 r = -EBUSY;
10408 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +030010409 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010410 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
10411 kvm_queue_exception(vcpu, DB_VECTOR);
10412 else
10413 kvm_queue_exception(vcpu, BP_VECTOR);
10414 }
10415
Jan Kiszka91586a32009-10-05 13:07:21 +020010416 /*
10417 * Read rflags as long as potentially injected trace flags are still
10418 * filtered out.
10419 */
10420 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010421
10422 vcpu->guest_debug = dbg->control;
10423 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
10424 vcpu->guest_debug = 0;
10425
10426 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010427 for (i = 0; i < KVM_NR_DB_REGS; ++i)
10428 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +020010429 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010430 } else {
10431 for (i = 0; i < KVM_NR_DB_REGS; i++)
10432 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010433 }
Jan Kiszkac8639012012-09-21 05:42:55 +020010434 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010435
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010436 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Yuan Yaoe87e46d2021-05-26 14:38:28 +080010437 vcpu->arch.singlestep_rip = kvm_get_linear_rip(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010438
Jan Kiszka91586a32009-10-05 13:07:21 +020010439 /*
10440 * Trigger an rflags update that will inject or remove the trace
10441 * flags.
10442 */
10443 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010444
Jason Baronb36464772021-01-14 22:27:56 -050010445 static_call(kvm_x86_update_exception_bitmap)(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010446
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010447 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010448
Avi Kivity2122ff52010-05-13 11:25:04 +030010449out:
Christoffer Dall66b56562017-12-04 21:35:33 +010010450 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010451 return r;
10452}
10453
10454/*
Zhang Xiantao8b006792007-11-16 13:05:55 +080010455 * Translate a guest virtual address to a guest physical address.
10456 */
10457int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
10458 struct kvm_translation *tr)
10459{
10460 unsigned long vaddr = tr->linear_address;
10461 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010462 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010463
Christoffer Dall1da5b612017-12-04 21:35:32 +010010464 vcpu_load(vcpu);
10465
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010466 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +020010467 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010468 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010469 tr->physical_address = gpa;
10470 tr->valid = gpa != UNMAPPED_GVA;
10471 tr->writeable = 1;
10472 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010473
Christoffer Dall1da5b612017-12-04 21:35:32 +010010474 vcpu_put(vcpu);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010475 return 0;
10476}
10477
Hollis Blanchardd0752062007-10-31 17:24:25 -050010478int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10479{
Christoffer Dall13931232017-12-04 21:35:34 +010010480 struct fxregs_state *fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010481
Tom Lendackyed02b212020-12-10 11:10:01 -060010482 if (!vcpu->arch.guest_fpu)
10483 return 0;
10484
Christoffer Dall13931232017-12-04 21:35:34 +010010485 vcpu_load(vcpu);
10486
Marc Orrb666a4b2018-11-06 14:53:56 -080010487 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010488 memcpy(fpu->fpr, fxsave->st_space, 128);
10489 fpu->fcw = fxsave->cwd;
10490 fpu->fsw = fxsave->swd;
10491 fpu->ftwx = fxsave->twd;
10492 fpu->last_opcode = fxsave->fop;
10493 fpu->last_ip = fxsave->rip;
10494 fpu->last_dp = fxsave->rdp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010495 memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010496
Christoffer Dall13931232017-12-04 21:35:34 +010010497 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010498 return 0;
10499}
10500
10501int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10502{
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010503 struct fxregs_state *fxsave;
10504
Tom Lendackyed02b212020-12-10 11:10:01 -060010505 if (!vcpu->arch.guest_fpu)
10506 return 0;
10507
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010508 vcpu_load(vcpu);
10509
Marc Orrb666a4b2018-11-06 14:53:56 -080010510 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010511
Hollis Blanchardd0752062007-10-31 17:24:25 -050010512 memcpy(fxsave->st_space, fpu->fpr, 128);
10513 fxsave->cwd = fpu->fcw;
10514 fxsave->swd = fpu->fsw;
10515 fxsave->twd = fpu->ftwx;
10516 fxsave->fop = fpu->last_opcode;
10517 fxsave->rip = fpu->last_ip;
10518 fxsave->rdp = fpu->last_dp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010519 memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010520
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010521 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010522 return 0;
10523}
10524
Ken Hofsass01643c52018-01-31 16:03:36 -080010525static void store_regs(struct kvm_vcpu *vcpu)
10526{
10527 BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES);
10528
10529 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS)
10530 __get_regs(vcpu, &vcpu->run->s.regs.regs);
10531
10532 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS)
10533 __get_sregs(vcpu, &vcpu->run->s.regs.sregs);
10534
10535 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS)
10536 kvm_vcpu_ioctl_x86_get_vcpu_events(
10537 vcpu, &vcpu->run->s.regs.events);
10538}
10539
10540static int sync_regs(struct kvm_vcpu *vcpu)
10541{
10542 if (vcpu->run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS)
10543 return -EINVAL;
10544
10545 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) {
10546 __set_regs(vcpu, &vcpu->run->s.regs.regs);
10547 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS;
10548 }
10549 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) {
10550 if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs))
10551 return -EINVAL;
10552 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS;
10553 }
10554 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) {
10555 if (kvm_vcpu_ioctl_x86_set_vcpu_events(
10556 vcpu, &vcpu->run->s.regs.events))
10557 return -EINVAL;
10558 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS;
10559 }
10560
10561 return 0;
10562}
10563
Ingo Molnar0ee6a512015-04-27 06:58:22 +020010564static void fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -050010565{
Tom Lendackyed02b212020-12-10 11:10:01 -060010566 if (!vcpu->arch.guest_fpu)
10567 return;
10568
Marc Orrb666a4b2018-11-06 14:53:56 -080010569 fpstate_init(&vcpu->arch.guest_fpu->state);
Borislav Petkov782511b2016-04-04 22:25:03 +020010570 if (boot_cpu_has(X86_FEATURE_XSAVES))
Marc Orrb666a4b2018-11-06 14:53:56 -080010571 vcpu->arch.guest_fpu->state.xsave.header.xcomp_bv =
Paolo Bonzinidf1daba2014-11-21 19:05:07 +010010572 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010573
Dexuan Cui2acf9232010-06-10 11:27:12 +080010574 /*
10575 * Ensure guest xcr0 is valid for loading
10576 */
Dave Hansend91cab72015-09-02 16:31:26 -070010577 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Dexuan Cui2acf9232010-06-10 11:27:12 +080010578
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010579 vcpu->arch.cr0 |= X86_CR0_ET;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010580}
Hollis Blanchardd0752062007-10-31 17:24:25 -050010581
Tom Lendackyed02b212020-12-10 11:10:01 -060010582void kvm_free_guest_fpu(struct kvm_vcpu *vcpu)
10583{
10584 if (vcpu->arch.guest_fpu) {
10585 kmem_cache_free(x86_fpu_cache, vcpu->arch.guest_fpu);
10586 vcpu->arch.guest_fpu = NULL;
10587 }
10588}
10589EXPORT_SYMBOL_GPL(kvm_free_guest_fpu);
10590
Sean Christopherson897cc382019-12-18 13:55:09 -080010591int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010592{
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010010593 if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
Sean Christopherson897cc382019-12-18 13:55:09 -080010594 pr_warn_once("kvm: SMP vm created on host with unstable TSC; "
10595 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +080010596
Sean Christopherson897cc382019-12-18 13:55:09 -080010597 return 0;
Avi Kivity26e52152007-11-20 15:30:24 +020010598}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010599
Sean Christophersone529ef62019-12-18 13:55:15 -080010600int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
Avi Kivity26e52152007-11-20 15:30:24 +020010601{
Sean Christopherson95a0d012019-12-18 13:55:23 -080010602 struct page *page;
10603 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010604
Sean Christopherson95a0d012019-12-18 13:55:23 -080010605 if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu))
10606 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10607 else
10608 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
10609
Sean Christopherson95a0d012019-12-18 13:55:23 -080010610 r = kvm_mmu_create(vcpu);
10611 if (r < 0)
10612 return r;
10613
10614 if (irqchip_in_kernel(vcpu->kvm)) {
Sean Christopherson95a0d012019-12-18 13:55:23 -080010615 r = kvm_create_lapic(vcpu, lapic_timer_advance_ns);
10616 if (r < 0)
10617 goto fail_mmu_destroy;
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -060010618 if (kvm_apicv_activated(vcpu->kvm))
10619 vcpu->arch.apicv_active = true;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010620 } else
Cun Li6e4e3b42021-01-11 23:24:35 +080010621 static_branch_inc(&kvm_has_noapic_vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010622
10623 r = -ENOMEM;
10624
Shakeel Butt93bb59c2020-12-18 14:01:38 -080010625 page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010626 if (!page)
10627 goto fail_free_lapic;
10628 vcpu->arch.pio_data = page_address(page);
10629
10630 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
10631 GFP_KERNEL_ACCOUNT);
10632 if (!vcpu->arch.mce_banks)
10633 goto fail_free_pio_data;
10634 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
10635
10636 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask,
10637 GFP_KERNEL_ACCOUNT))
10638 goto fail_free_mce_banks;
10639
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010640 if (!alloc_emulate_ctxt(vcpu))
10641 goto free_wbinvd_dirty_mask;
10642
Sean Christopherson95a0d012019-12-18 13:55:23 -080010643 vcpu->arch.user_fpu = kmem_cache_zalloc(x86_fpu_cache,
10644 GFP_KERNEL_ACCOUNT);
10645 if (!vcpu->arch.user_fpu) {
10646 pr_err("kvm: failed to allocate userspace's fpu\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010647 goto free_emulate_ctxt;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010648 }
10649
10650 vcpu->arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
10651 GFP_KERNEL_ACCOUNT);
10652 if (!vcpu->arch.guest_fpu) {
10653 pr_err("kvm: failed to allocate vcpu's fpu\n");
10654 goto free_user_fpu;
10655 }
10656 fx_init(vcpu);
10657
Sean Christopherson95a0d012019-12-18 13:55:23 -080010658 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Sean Christophersona8ac8642021-02-03 16:01:15 -080010659 vcpu->arch.reserved_gpa_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010660
10661 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
10662
10663 kvm_async_pf_hash_reset(vcpu);
10664 kvm_pmu_init(vcpu);
10665
10666 vcpu->arch.pending_external_vector = -1;
10667 vcpu->arch.preempted_in_kernel = false;
10668
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000010669#if IS_ENABLED(CONFIG_HYPERV)
10670 vcpu->arch.hv_root_tdp = INVALID_PAGE;
10671#endif
10672
Jason Baronb36464772021-01-14 22:27:56 -050010673 r = static_call(kvm_x86_vcpu_create)(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010674 if (r)
10675 goto free_guest_fpu;
Sean Christopherson5f73db12019-12-18 13:55:18 -080010676
Sean Christopherson0cf91352019-03-07 15:43:02 -080010677 vcpu->arch.arch_capabilities = kvm_get_arch_capabilities();
Jim Mattsone53d88af2018-10-30 12:20:21 -070010678 vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT;
Xiao Guangrong19efffa2015-06-15 16:55:31 +080010679 kvm_vcpu_mtrr_init(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010010680 vcpu_load(vcpu);
Ilias Stamatis1ab92872021-06-07 11:54:38 +010010681 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010682 kvm_vcpu_reset(vcpu, false);
Sean Christophersonc9060662021-06-09 16:42:33 -070010683 kvm_init_mmu(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010684 vcpu_put(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010010685 return 0;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010686
10687free_guest_fpu:
Tom Lendackyed02b212020-12-10 11:10:01 -060010688 kvm_free_guest_fpu(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010689free_user_fpu:
10690 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010691free_emulate_ctxt:
10692 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010693free_wbinvd_dirty_mask:
10694 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
10695fail_free_mce_banks:
10696 kfree(vcpu->arch.mce_banks);
10697fail_free_pio_data:
10698 free_page((unsigned long)vcpu->arch.pio_data);
10699fail_free_lapic:
10700 kvm_free_lapic(vcpu);
10701fail_mmu_destroy:
10702 kvm_mmu_destroy(vcpu);
10703 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010704}
10705
Dominik Dingel31928aa2014-12-04 15:47:07 +010010706void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010707{
Andrew Jones332967a2014-02-28 12:52:55 +010010708 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010709
Christoffer Dallec7660c2017-12-04 21:35:23 +010010710 if (mutex_lock_killable(&vcpu->mutex))
Dominik Dingel31928aa2014-12-04 15:47:07 +010010711 return;
Christoffer Dallec7660c2017-12-04 21:35:23 +010010712 vcpu_load(vcpu);
Paolo Bonzini0c899c22020-09-24 14:45:27 +020010713 kvm_synchronize_tsc(vcpu, 0);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010714 vcpu_put(vcpu);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030010715
10716 /* poll control enabled by default */
10717 vcpu->arch.msr_kvm_poll_control = 1;
10718
Christoffer Dallec7660c2017-12-04 21:35:23 +010010719 mutex_unlock(&vcpu->mutex);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010720
Wanpeng Lib34de572020-02-28 11:18:41 +080010721 if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0)
10722 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
10723 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010724}
10725
Hollis Blanchardd40ccc62007-11-19 14:04:43 -060010726void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010727{
Paolo Bonzini4cbc4182020-01-30 18:47:38 +010010728 struct gfn_to_pfn_cache *cache = &vcpu->arch.st.cache;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010729 int idx;
Gleb Natapov344d9582010-10-14 11:22:50 +020010730
Paolo Bonzini4cbc4182020-01-30 18:47:38 +010010731 kvm_release_pfn(cache->pfn, cache->dirty, cache);
10732
Sean Christopherson50b143e2019-12-18 13:55:07 -080010733 kvmclock_reset(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010734
Jason Baronb36464772021-01-14 22:27:56 -050010735 static_call(kvm_x86_vcpu_free)(vcpu);
Sean Christopherson50b143e2019-12-18 13:55:07 -080010736
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010737 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson50b143e2019-12-18 13:55:07 -080010738 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
10739 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
Tom Lendackyed02b212020-12-10 11:10:01 -060010740 kvm_free_guest_fpu(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010741
10742 kvm_hv_vcpu_uninit(vcpu);
10743 kvm_pmu_destroy(vcpu);
10744 kfree(vcpu->arch.mce_banks);
10745 kvm_free_lapic(vcpu);
10746 idx = srcu_read_lock(&vcpu->kvm->srcu);
10747 kvm_mmu_destroy(vcpu);
10748 srcu_read_unlock(&vcpu->kvm->srcu, idx);
10749 free_page((unsigned long)vcpu->arch.pio_data);
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +020010750 kvfree(vcpu->arch.cpuid_entries);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010751 if (!lapic_in_kernel(vcpu))
Cun Li6e4e3b42021-01-11 23:24:35 +080010752 static_branch_dec(&kvm_has_noapic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010753}
10754
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010755void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010756{
Radim Krčmářb7e31be2018-03-01 15:24:25 +010010757 kvm_lapic_reset(vcpu, init_event);
10758
Paolo Bonzinie69fab52015-06-04 10:44:44 +020010759 vcpu->arch.hflags = 0;
10760
Paolo Bonzinic43203c2016-06-01 22:26:00 +020010761 vcpu->arch.smi_pending = 0;
Liran Alon52797bf2017-11-15 13:43:14 +020010762 vcpu->arch.smi_count = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +030010763 atomic_set(&vcpu->arch.nmi_queued, 0);
10764 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +020010765 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +030010766 kvm_clear_interrupt_queue(vcpu);
10767 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +020010768
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010769 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +030010770 kvm_update_dr0123(vcpu);
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +080010771 vcpu->arch.dr6 = DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010772 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +020010773 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010774
Nadav Amit11190222015-04-02 03:10:38 +030010775 vcpu->arch.cr2 = 0;
10776
Avi Kivity3842d132010-07-27 12:30:24 +030010777 kvm_make_request(KVM_REQ_EVENT, vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020010778 vcpu->arch.apf.msr_en_val = 0;
10779 vcpu->arch.apf.msr_int_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -040010780 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +030010781
Glauber Costa12f9a482011-02-01 14:16:40 -050010782 kvmclock_reset(vcpu);
10783
Gleb Natapovaf585b92010-10-14 11:22:46 +020010784 kvm_clear_async_pf_completion_queue(vcpu);
10785 kvm_async_pf_hash_reset(vcpu);
10786 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010787
Tom Lendackyed02b212020-12-10 11:10:01 -060010788 if (vcpu->arch.guest_fpu && kvm_mpx_supported()) {
Wanpeng Lia554d202017-10-11 05:10:19 -070010789 void *mpx_state_buffer;
10790
10791 /*
10792 * To avoid have the INIT path from kvm_apic_has_events() that be
10793 * called with loaded FPU and does not let userspace fix the state.
10794 */
Rik van Rielf775b132017-11-14 16:54:23 -050010795 if (init_event)
10796 kvm_put_guest_fpu(vcpu);
Marc Orrb666a4b2018-11-06 14:53:56 -080010797 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +020010798 XFEATURE_BNDREGS);
Wanpeng Lia554d202017-10-11 05:10:19 -070010799 if (mpx_state_buffer)
10800 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndreg_state));
Marc Orrb666a4b2018-11-06 14:53:56 -080010801 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +020010802 XFEATURE_BNDCSR);
Wanpeng Lia554d202017-10-11 05:10:19 -070010803 if (mpx_state_buffer)
10804 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndcsr));
Rik van Rielf775b132017-11-14 16:54:23 -050010805 if (init_event)
10806 kvm_load_guest_fpu(vcpu);
Wanpeng Lia554d202017-10-11 05:10:19 -070010807 }
10808
Paolo Bonzini64d60672015-05-07 11:36:11 +020010809 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010810 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +020010811 vcpu->arch.smbase = 0x30000;
Kyle Hueydb2336a2017-03-20 01:16:28 -070010812
Kyle Hueydb2336a2017-03-20 01:16:28 -070010813 vcpu->arch.msr_misc_features_enables = 0;
Wanpeng Lia554d202017-10-11 05:10:19 -070010814
10815 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Paolo Bonzini64d60672015-05-07 11:36:11 +020010816 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020010817
Julian Stecklina66f7b722012-12-05 15:26:19 +010010818 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
10819 vcpu->arch.regs_avail = ~0;
10820 vcpu->arch.regs_dirty = ~0;
10821
Wanpeng Lia554d202017-10-11 05:10:19 -070010822 vcpu->arch.ia32_xss = 0;
10823
Jason Baronb36464772021-01-14 22:27:56 -050010824 static_call(kvm_x86_vcpu_reset)(vcpu, init_event);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010825}
10826
Paolo Bonzini2b4a2732014-11-24 14:35:24 +010010827void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +010010828{
10829 struct kvm_segment cs;
10830
10831 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
10832 cs.selector = vector << 8;
10833 cs.base = vector << 12;
10834 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
10835 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010836}
Tom Lendacky647daca2021-01-04 14:20:01 -060010837EXPORT_SYMBOL_GPL(kvm_vcpu_deliver_sipi_vector);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010838
Radim Krčmář13a34e02014-08-28 15:13:03 +020010839int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010840{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -100010841 struct kvm *kvm;
10842 struct kvm_vcpu *vcpu;
10843 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010844 int ret;
10845 u64 local_tsc;
10846 u64 max_tsc = 0;
10847 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +030010848
Sean Christopherson7e34fbd2020-09-23 11:03:55 -070010849 kvm_user_return_msr_cpu_online();
Jason Baronb36464772021-01-14 22:27:56 -050010850 ret = static_call(kvm_x86_hardware_enable)();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010851 if (ret != 0)
10852 return ret;
10853
Andy Lutomirski4ea16362015-06-25 18:44:07 +020010854 local_tsc = rdtsc();
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010010855 stable = !kvm_check_tsc_unstable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010856 list_for_each_entry(kvm, &vm_list, vm_list) {
10857 kvm_for_each_vcpu(i, vcpu, kvm) {
10858 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +080010859 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010860 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
10861 backwards_tsc = true;
10862 if (vcpu->arch.last_host_tsc > max_tsc)
10863 max_tsc = vcpu->arch.last_host_tsc;
10864 }
10865 }
10866 }
10867
10868 /*
10869 * Sometimes, even reliable TSCs go backwards. This happens on
10870 * platforms that reset TSC during suspend or hibernate actions, but
10871 * maintain synchronization. We must compensate. Fortunately, we can
10872 * detect that condition here, which happens early in CPU bringup,
10873 * before any KVM threads can be running. Unfortunately, we can't
10874 * bring the TSCs fully up to date with real time, as we aren't yet far
10875 * enough into CPU bringup that we know how much real time has actually
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020010876 * elapsed; our helper function, ktime_get_boottime_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010877 * variables that haven't been updated yet.
10878 *
10879 * So we simply find the maximum observed TSC above, then record the
10880 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
10881 * the adjustment will be applied. Note that we accumulate
10882 * adjustments, in case multiple suspend cycles happen before some VCPU
10883 * gets a chance to run again. In the event that no KVM threads get a
10884 * chance to run, we will miss the entire elapsed period, as we'll have
10885 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
10886 * loose cycle time. This isn't too big a deal, since the loss will be
10887 * uniform across all VCPUs (not to mention the scenario is extremely
10888 * unlikely). It is possible that a second hibernate recovery happens
10889 * much faster than a first, causing the observed TSC here to be
10890 * smaller; this would require additional padding adjustment, which is
10891 * why we set last_host_tsc to the local tsc observed here.
10892 *
10893 * N.B. - this code below runs only on platforms with reliable TSC,
10894 * as that is the only way backwards_tsc is set above. Also note
10895 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
10896 * have the same delta_cyc adjustment applied if backwards_tsc
10897 * is detected. Note further, this adjustment is only done once,
10898 * as we reset last_host_tsc on all VCPUs to stop this from being
10899 * called multiple times (one for each physical CPU bringup).
10900 *
Guo Chao4a969982012-06-28 15:17:27 +080010901 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010902 * will be compensated by the logic in vcpu_load, which sets the TSC to
10903 * catchup mode. This will catchup all VCPUs to real time, but cannot
10904 * guarantee that they stay in perfect synchronization.
10905 */
10906 if (backwards_tsc) {
10907 u64 delta_cyc = max_tsc - local_tsc;
10908 list_for_each_entry(kvm, &vm_list, vm_list) {
Ladi Proseka826faf2017-06-26 09:56:43 +020010909 kvm->arch.backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010910 kvm_for_each_vcpu(i, vcpu, kvm) {
10911 vcpu->arch.tsc_offset_adjustment += delta_cyc;
10912 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +080010913 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010914 }
10915
10916 /*
10917 * We have to disable TSC offset matching.. if you were
10918 * booting a VM while issuing an S4 host suspend....
10919 * you may have some problem. Solving this issue is
10920 * left as an exercise to the reader.
10921 */
10922 kvm->arch.last_tsc_nsec = 0;
10923 kvm->arch.last_tsc_write = 0;
10924 }
10925
10926 }
10927 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010928}
10929
Radim Krčmář13a34e02014-08-28 15:13:03 +020010930void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010931{
Jason Baronb36464772021-01-14 22:27:56 -050010932 static_call(kvm_x86_hardware_disable)();
Radim Krčmář13a34e02014-08-28 15:13:03 +020010933 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010934}
10935
Sean Christophersonb9904082020-03-21 13:25:55 -070010936int kvm_arch_hardware_setup(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010937{
Sean Christophersond008dfd2020-03-21 13:25:56 -070010938 struct kvm_x86_init_ops *ops = opaque;
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030010939 int r;
10940
Sean Christopherson91661982020-03-02 15:57:06 -080010941 rdmsrl_safe(MSR_EFER, &host_efer);
Sean Christopherson8bbed952021-06-15 09:45:34 -070010942 if (WARN_ON_ONCE(boot_cpu_has(X86_FEATURE_NX) &&
10943 !(host_efer & EFER_NX)))
10944 return -EIO;
Sean Christopherson91661982020-03-02 15:57:06 -080010945
Paolo Bonzini408e9a32020-03-05 16:11:56 +010010946 if (boot_cpu_has(X86_FEATURE_XSAVES))
10947 rdmsrl(MSR_IA32_XSS, host_xss);
10948
Sean Christophersond008dfd2020-03-21 13:25:56 -070010949 r = ops->hardware_setup();
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030010950 if (r != 0)
10951 return r;
10952
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010953 memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops));
Jason Baronb36464772021-01-14 22:27:56 -050010954 kvm_ops_static_call_update();
Sean Christopherson69c6f692020-03-21 13:25:59 -070010955
Paolo Bonzini408e9a32020-03-05 16:11:56 +010010956 if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES))
10957 supported_xss = 0;
10958
Paolo Bonzini139f7422020-05-05 09:40:46 -040010959#define __kvm_cpu_cap_has(UNUSED_, f) kvm_cpu_cap_has(f)
10960 cr4_reserved_bits = __cr4_reserved_bits(__kvm_cpu_cap_has, UNUSED_);
10961#undef __kvm_cpu_cap_has
Sean Christophersonb11306b2019-12-10 14:44:13 -080010962
Haozhong Zhang35181e82015-10-20 15:39:03 +080010963 if (kvm_has_tsc_control) {
10964 /*
10965 * Make sure the user can only configure tsc_khz values that
10966 * fit into a signed integer.
Marcelo Tosatti273ba452018-06-11 14:12:10 -030010967 * A min value is not calculated because it will always
Haozhong Zhang35181e82015-10-20 15:39:03 +080010968 * be 1 on all machines.
10969 */
10970 u64 max = min(0x7fffffffULL,
10971 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
10972 kvm_max_guest_tsc_khz = max;
10973
Haozhong Zhangad7218832015-10-20 15:39:02 +080010974 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +080010975 }
Haozhong Zhangad7218832015-10-20 15:39:02 +080010976
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030010977 kvm_init_msr_list();
10978 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010979}
10980
10981void kvm_arch_hardware_unsetup(void)
10982{
Jason Baronb36464772021-01-14 22:27:56 -050010983 static_call(kvm_x86_hardware_unsetup)();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010984}
10985
Sean Christophersonb9904082020-03-21 13:25:55 -070010986int kvm_arch_check_processor_compat(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010987{
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080010988 struct cpuinfo_x86 *c = &cpu_data(smp_processor_id());
Sean Christophersond008dfd2020-03-21 13:25:56 -070010989 struct kvm_x86_init_ops *ops = opaque;
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080010990
10991 WARN_ON(!irqs_disabled());
10992
Paolo Bonzini139f7422020-05-05 09:40:46 -040010993 if (__cr4_reserved_bits(cpu_has, c) !=
10994 __cr4_reserved_bits(cpu_has, &boot_cpu_data))
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080010995 return -EIO;
10996
Sean Christophersond008dfd2020-03-21 13:25:56 -070010997 return ops->check_processor_compatibility();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010998}
10999
Paolo Bonzinid71ba782015-07-29 11:56:48 +020011000bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
11001{
11002 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
11003}
11004EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
11005
11006bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
11007{
11008 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
11009}
11010
Cun Li6e4e3b42021-01-11 23:24:35 +080011011__read_mostly DEFINE_STATIC_KEY_FALSE(kvm_has_noapic_vcpu);
11012EXPORT_SYMBOL_GPL(kvm_has_noapic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +030011013
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011014void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
11015{
Like Xub35e5542019-10-27 18:52:43 +080011016 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
11017
Paolo Bonzinic595cee2018-07-02 13:07:14 +020011018 vcpu->arch.l1tf_flush_l1d = true;
Like Xub35e5542019-10-27 18:52:43 +080011019 if (pmu->version && unlikely(pmu->event_count)) {
11020 pmu->need_cleanup = true;
11021 kvm_make_request(KVM_REQ_PMU, vcpu);
11022 }
Jason Baronb36464772021-01-14 22:27:56 -050011023 static_call(kvm_x86_sched_in)(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011024}
11025
Sean Christopherson562b6b02020-01-26 16:41:13 -080011026void kvm_arch_free_vm(struct kvm *kvm)
11027{
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +010011028 kfree(to_kvm_hv(kvm)->hv_pa_pg);
Sean Christopherson562b6b02020-01-26 16:41:13 -080011029 vfree(kvm);
11030}
11031
11032
Carsten Ottee08b9632012-01-04 10:25:20 +010011033int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011034{
Carsten Ottee08b9632012-01-04 10:25:20 +010011035 if (type)
11036 return -EINVAL;
11037
Paolo Bonzini6ef768f2014-11-20 13:45:31 +010011038 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +080011039 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Sean Christopherson10605202019-09-12 19:46:10 -070011040 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011041 INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030011042 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060011043 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011044
Sheng Yang5550af42008-10-15 20:15:06 +080011045 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
11046 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -060011047 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
11048 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
11049 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +080011050
Jan Kiszka038f8c12011-02-04 10:49:11 +010011051 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +030011052 mutex_init(&kvm->arch.apic_map_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -020011053 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
11054
Paolo Bonzini8171cd62020-01-22 14:36:09 +010011055 kvm->arch.kvmclock_offset = -get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -020011056 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +010011057
Drew Schmitt6fbbde92018-08-20 10:32:15 -070011058 kvm->arch.guest_can_read_msr_platform_info = true;
11059
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000011060#if IS_ENABLED(CONFIG_HYPERV)
11061 spin_lock_init(&kvm->arch.hv_root_tdp_lock);
11062 kvm->arch.hv_root_tdp = INVALID_PAGE;
11063#endif
11064
Andrew Jones7e44e442014-02-28 12:52:54 +010011065 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +010011066 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +010011067
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +020011068 kvm_apicv_init(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011069 kvm_hv_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +080011070 kvm_page_track_init(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011071 kvm_mmu_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +080011072
Jason Baronb36464772021-01-14 22:27:56 -050011073 return static_call(kvm_x86_vm_init)(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011074}
11075
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011076int kvm_arch_post_init_vm(struct kvm *kvm)
11077{
11078 return kvm_mmu_post_init_vm(kvm);
11079}
11080
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011081static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
11082{
Christoffer Dallec7660c2017-12-04 21:35:23 +010011083 vcpu_load(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011084 kvm_mmu_unload(vcpu);
11085 vcpu_put(vcpu);
11086}
11087
11088static void kvm_free_vcpus(struct kvm *kvm)
11089{
11090 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011091 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011092
11093 /*
11094 * Unpin any mmu pages first.
11095 */
Gleb Natapovaf585b92010-10-14 11:22:46 +020011096 kvm_for_each_vcpu(i, vcpu, kvm) {
11097 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011098 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011099 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011100 kvm_for_each_vcpu(i, vcpu, kvm)
Sean Christopherson4543bdc2019-12-18 13:55:14 -080011101 kvm_vcpu_destroy(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011102
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011103 mutex_lock(&kvm->lock);
11104 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
11105 kvm->vcpus[i] = NULL;
11106
11107 atomic_set(&kvm->online_vcpus, 0);
11108 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011109}
11110
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011111void kvm_arch_sync_events(struct kvm *kvm)
11112{
Andrew Jones332967a2014-02-28 12:52:55 +010011113 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +010011114 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +080011115 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011116}
11117
Peter Xuff5a9832020-09-30 21:20:33 -040011118#define ERR_PTR_USR(e) ((void __user *)ERR_PTR(e))
11119
11120/**
11121 * __x86_set_memory_region: Setup KVM internal memory slot
11122 *
11123 * @kvm: the kvm pointer to the VM.
11124 * @id: the slot ID to setup.
11125 * @gpa: the GPA to install the slot (unused when @size == 0).
11126 * @size: the size of the slot. Set to zero to uninstall a slot.
11127 *
11128 * This function helps to setup a KVM internal memory slot. Specify
11129 * @size > 0 to install a new slot, while @size == 0 to uninstall a
11130 * slot. The return code can be one of the following:
11131 *
11132 * HVA: on success (uninstall will return a bogus HVA)
11133 * -errno: on error
11134 *
11135 * The caller should always use IS_ERR() to check the return value
11136 * before use. Note, the KVM internal memory slots are guaranteed to
11137 * remain valid and unchanged until the VM is destroyed, i.e., the
11138 * GPA->HVA translation will not change. However, the HVA is a user
11139 * address, i.e. its accessibility is not guaranteed, and must be
11140 * accessed via __copy_{to,from}_user().
11141 */
11142void __user * __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa,
11143 u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011144{
11145 int i, r;
Kees Cook3f649ab2020-06-03 13:09:38 -070011146 unsigned long hva, old_npages;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011147 struct kvm_memslots *slots = kvm_memslots(kvm);
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011148 struct kvm_memory_slot *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011149
11150 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011151 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
Peter Xuff5a9832020-09-30 21:20:33 -040011152 return ERR_PTR_USR(-EINVAL);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011153
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011154 slot = id_to_memslot(slots, id);
11155 if (size) {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011156 if (slot && slot->npages)
Peter Xuff5a9832020-09-30 21:20:33 -040011157 return ERR_PTR_USR(-EEXIST);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011158
11159 /*
11160 * MAP_SHARED to prevent internal slot pages from being moved
11161 * by fork()/COW.
11162 */
11163 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
11164 MAP_SHARED | MAP_ANONYMOUS, 0);
11165 if (IS_ERR((void *)hva))
Peter Xuff5a9832020-09-30 21:20:33 -040011166 return (void __user *)hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011167 } else {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011168 if (!slot || !slot->npages)
Muhammad Usama Anjum46914532021-03-05 23:08:16 +050011169 return NULL;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011170
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011171 old_npages = slot->npages;
Zheng Zhan Liangb66f9ba2021-02-01 13:53:10 +080011172 hva = slot->userspace_addr;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011173 }
11174
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011175 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011176 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011177
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011178 m.slot = id | (i << 16);
11179 m.flags = 0;
11180 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011181 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011182 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011183 r = __kvm_set_memory_region(kvm, &m);
11184 if (r < 0)
Peter Xuff5a9832020-09-30 21:20:33 -040011185 return ERR_PTR_USR(r);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011186 }
11187
Eric Biggers103c7632018-01-31 17:30:21 -080011188 if (!size)
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011189 vm_munmap(hva, old_npages * PAGE_SIZE);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011190
Peter Xuff5a9832020-09-30 21:20:33 -040011191 return (void __user *)hva;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011192}
11193EXPORT_SYMBOL_GPL(__x86_set_memory_region);
11194
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011195void kvm_arch_pre_destroy_vm(struct kvm *kvm)
11196{
11197 kvm_mmu_pre_destroy_vm(kvm);
11198}
11199
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011200void kvm_arch_destroy_vm(struct kvm *kvm)
11201{
Andrew Honig27469d22013-04-18 09:38:14 -070011202 if (current->mm == kvm->mm) {
11203 /*
11204 * Free memory regions allocated on behalf of userspace,
11205 * unless the the memory map has changed due to process exit
11206 * or fd copying.
11207 */
Peter Xu6a3c6232020-01-09 09:57:16 -050011208 mutex_lock(&kvm->slots_lock);
11209 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
11210 0, 0);
11211 __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
11212 0, 0);
11213 __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
11214 mutex_unlock(&kvm->slots_lock);
Andrew Honig27469d22013-04-18 09:38:14 -070011215 }
Jason Baronb36464772021-01-14 22:27:56 -050011216 static_call_cond(kvm_x86_vm_destroy)(kvm);
Sean Christophersonb318e8d2021-03-16 11:44:33 -070011217 kvm_free_msr_filter(srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1));
Peter Xuc7611592017-03-15 16:01:19 +080011218 kvm_pic_destroy(kvm);
11219 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011220 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +020011221 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Eric Hankland66bb8a02019-07-10 18:25:15 -070011222 kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011223 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +020011224 kvm_page_track_cleanup(kvm);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +000011225 kvm_xen_destroy_vm(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011226 kvm_hv_destroy_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011227}
Zhang Xiantao0de10342007-11-20 16:25:04 +080011228
Ben Gardonc9b929b2021-05-18 10:34:08 -070011229static void memslot_rmap_free(struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011230{
11231 int i;
11232
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011233 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011234 kvfree(slot->arch.rmap[i]);
11235 slot->arch.rmap[i] = NULL;
Ben Gardonc9b929b2021-05-18 10:34:08 -070011236 }
11237}
Sean Christophersone96c81e2020-02-18 13:07:27 -080011238
Ben Gardonc9b929b2021-05-18 10:34:08 -070011239void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
11240{
11241 int i;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011242
Ben Gardonc9b929b2021-05-18 10:34:08 -070011243 memslot_rmap_free(slot);
11244
11245 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011246 kvfree(slot->arch.lpage_info[i - 1]);
11247 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011248 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011249
Sean Christophersone96c81e2020-02-18 13:07:27 -080011250 kvm_page_track_free_memslot(slot);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011251}
11252
Ben Gardon56dd1012021-05-18 10:34:09 -070011253static int memslot_rmap_alloc(struct kvm_memory_slot *slot,
11254 unsigned long npages)
11255{
11256 const int sz = sizeof(*slot->arch.rmap[0]);
11257 int i;
11258
11259 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
11260 int level = i + 1;
11261 int lpages = gfn_to_index(slot->base_gfn + npages - 1,
11262 slot->base_gfn, level) + 1;
11263
Ben Gardond501f742021-05-18 10:34:14 -070011264 WARN_ON(slot->arch.rmap[i]);
11265
Ben Gardon56dd1012021-05-18 10:34:09 -070011266 slot->arch.rmap[i] = kvcalloc(lpages, sz, GFP_KERNEL_ACCOUNT);
11267 if (!slot->arch.rmap[i]) {
11268 memslot_rmap_free(slot);
11269 return -ENOMEM;
11270 }
11271 }
11272
11273 return 0;
11274}
11275
Ben Gardond501f742021-05-18 10:34:14 -070011276int alloc_all_memslots_rmaps(struct kvm *kvm)
11277{
11278 struct kvm_memslots *slots;
11279 struct kvm_memory_slot *slot;
11280 int r, i;
11281
11282 /*
11283 * Check if memslots alreday have rmaps early before acquiring
11284 * the slots_arch_lock below.
11285 */
11286 if (kvm_memslots_have_rmaps(kvm))
11287 return 0;
11288
11289 mutex_lock(&kvm->slots_arch_lock);
11290
11291 /*
11292 * Read memslots_have_rmaps again, under the slots arch lock,
11293 * before allocating the rmaps
11294 */
11295 if (kvm_memslots_have_rmaps(kvm)) {
11296 mutex_unlock(&kvm->slots_arch_lock);
11297 return 0;
11298 }
11299
11300 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
11301 slots = __kvm_memslots(kvm, i);
11302 kvm_for_each_memslot(slot, slots) {
11303 r = memslot_rmap_alloc(slot, slot->npages);
11304 if (r) {
11305 mutex_unlock(&kvm->slots_arch_lock);
11306 return r;
11307 }
11308 }
11309 }
11310
11311 /*
11312 * Ensure that memslots_have_rmaps becomes true strictly after
11313 * all the rmap pointers are set.
11314 */
11315 smp_store_release(&kvm->arch.memslots_have_rmaps, true);
11316 mutex_unlock(&kvm->slots_arch_lock);
11317 return 0;
11318}
11319
Ben Gardona2557402021-05-18 10:34:12 -070011320static int kvm_alloc_memslot_metadata(struct kvm *kvm,
11321 struct kvm_memory_slot *slot,
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011322 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011323{
Ben Gardon56dd1012021-05-18 10:34:09 -070011324 int i, r;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011325
Sean Christophersonedd4fa32020-02-18 13:07:15 -080011326 /*
11327 * Clear out the previous array pointers for the KVM_MR_MOVE case. The
11328 * old arrays will be freed by __kvm_set_memory_region() if installing
11329 * the new memslot is successful.
11330 */
11331 memset(&slot->arch, 0, sizeof(slot->arch));
11332
Ben Gardone2209712021-05-18 10:34:13 -070011333 if (kvm_memslots_have_rmaps(kvm)) {
Ben Gardona2557402021-05-18 10:34:12 -070011334 r = memslot_rmap_alloc(slot, npages);
11335 if (r)
11336 return r;
11337 }
Ben Gardon56dd1012021-05-18 10:34:09 -070011338
11339 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011340 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011341 unsigned long ugfn;
11342 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011343 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011344
11345 lpages = gfn_to_index(slot->base_gfn + npages - 1,
11346 slot->base_gfn, level) + 1;
11347
Ben Gardon254272c2019-02-11 11:02:50 -080011348 linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT);
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011349 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011350 goto out_free;
11351
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011352 slot->arch.lpage_info[i - 1] = linfo;
11353
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011354 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011355 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011356 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011357 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011358 ugfn = slot->userspace_addr >> PAGE_SHIFT;
11359 /*
11360 * If the gfn and userspace address are not aligned wrt each
Sean Christopherson600087b2020-03-02 15:57:05 -080011361 * other, disable large page support for this slot.
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011362 */
Sean Christopherson600087b2020-03-02 15:57:05 -080011363 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011364 unsigned long j;
11365
11366 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011367 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011368 }
11369 }
11370
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011371 if (kvm_page_track_create_memslot(slot, npages))
11372 goto out_free;
11373
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011374 return 0;
11375
11376out_free:
Ben Gardonc9b929b2021-05-18 10:34:08 -070011377 memslot_rmap_free(slot);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011378
Ben Gardonc9b929b2021-05-18 10:34:08 -070011379 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +010011380 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011381 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011382 }
11383 return -ENOMEM;
11384}
11385
Sean Christopherson15248252019-02-05 12:54:17 -080011386void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011387{
Boris Ostrovsky91724812019-12-05 01:30:51 +000011388 struct kvm_vcpu *vcpu;
11389 int i;
11390
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +090011391 /*
11392 * memslots->generation has been incremented.
11393 * mmio generation may have reached its maximum value.
11394 */
Sean Christopherson15248252019-02-05 12:54:17 -080011395 kvm_mmu_invalidate_mmio_sptes(kvm, gen);
Boris Ostrovsky91724812019-12-05 01:30:51 +000011396
11397 /* Force re-initialization of steal_time cache */
11398 kvm_for_each_vcpu(i, vcpu, kvm)
11399 kvm_vcpu_kick(vcpu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011400}
11401
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011402int kvm_arch_prepare_memory_region(struct kvm *kvm,
11403 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +020011404 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +090011405 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +080011406{
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011407 if (change == KVM_MR_CREATE || change == KVM_MR_MOVE)
Ben Gardona2557402021-05-18 10:34:12 -070011408 return kvm_alloc_memslot_metadata(kvm, memslot,
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011409 mem->memory_size >> PAGE_SHIFT);
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011410 return 0;
11411}
11412
Makarand Sonarea85863c2021-02-12 16:50:12 -080011413
11414static void kvm_mmu_update_cpu_dirty_logging(struct kvm *kvm, bool enable)
11415{
11416 struct kvm_arch *ka = &kvm->arch;
11417
11418 if (!kvm_x86_ops.cpu_dirty_log_size)
11419 return;
11420
11421 if ((enable && ++ka->cpu_dirty_logging_count == 1) ||
11422 (!enable && --ka->cpu_dirty_logging_count == 0))
11423 kvm_make_all_cpus_request(kvm, KVM_REQ_UPDATE_CPU_DIRTY_LOGGING);
11424
11425 WARN_ON_ONCE(ka->cpu_dirty_logging_count < 0);
11426}
11427
Kai Huang88178fd2015-01-28 10:54:27 +080011428static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
Anthony Yznaga37416792020-06-02 13:07:30 -070011429 struct kvm_memory_slot *old,
11430 struct kvm_memory_slot *new,
11431 enum kvm_mr_change change)
Kai Huang88178fd2015-01-28 10:54:27 +080011432{
Makarand Sonarea85863c2021-02-12 16:50:12 -080011433 bool log_dirty_pages = new->flags & KVM_MEM_LOG_DIRTY_PAGES;
11434
Anthony Yznaga37416792020-06-02 13:07:30 -070011435 /*
Makarand Sonarea85863c2021-02-12 16:50:12 -080011436 * Update CPU dirty logging if dirty logging is being toggled. This
11437 * applies to all operations.
11438 */
11439 if ((old->flags ^ new->flags) & KVM_MEM_LOG_DIRTY_PAGES)
11440 kvm_mmu_update_cpu_dirty_logging(kvm, log_dirty_pages);
11441
11442 /*
11443 * Nothing more to do for RO slots (which can't be dirtied and can't be
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011444 * made writable) or CREATE/MOVE/DELETE of a slot.
11445 *
11446 * For a memslot with dirty logging disabled:
11447 * CREATE: No dirty mappings will already exist.
11448 * MOVE/DELETE: The old mappings will already have been cleaned up by
11449 * kvm_arch_flush_shadow_memslot()
11450 *
11451 * For a memslot with dirty logging enabled:
11452 * CREATE: No shadow pages exist, thus nothing to write-protect
11453 * and no dirty bits to clear.
11454 * MOVE/DELETE: The old mappings will already have been cleaned up by
11455 * kvm_arch_flush_shadow_memslot().
Anthony Yznaga37416792020-06-02 13:07:30 -070011456 */
11457 if ((change != KVM_MR_FLAGS_ONLY) || (new->flags & KVM_MEM_READONLY))
Kai Huang88178fd2015-01-28 10:54:27 +080011458 return;
Kai Huang88178fd2015-01-28 10:54:27 +080011459
11460 /*
Sean Christopherson52f460792021-02-12 16:50:11 -080011461 * READONLY and non-flags changes were filtered out above, and the only
11462 * other flag is LOG_DIRTY_PAGES, i.e. something is wrong if dirty
11463 * logging isn't being toggled on or off.
Anthony Yznaga37416792020-06-02 13:07:30 -070011464 */
Sean Christopherson52f460792021-02-12 16:50:11 -080011465 if (WARN_ON_ONCE(!((old->flags ^ new->flags) & KVM_MEM_LOG_DIRTY_PAGES)))
11466 return;
11467
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011468 if (!log_dirty_pages) {
11469 /*
11470 * Dirty logging tracks sptes in 4k granularity, meaning that
11471 * large sptes have to be split. If live migration succeeds,
11472 * the guest in the source machine will be destroyed and large
11473 * sptes will be created in the destination. However, if the
11474 * guest continues to run in the source machine (for example if
11475 * live migration fails), small sptes will remain around and
11476 * cause bad performance.
11477 *
11478 * Scan sptes if dirty logging has been stopped, dropping those
11479 * which can be collapsed into a single large-page spte. Later
11480 * page faults will create the large-page sptes.
11481 */
Anthony Yznaga37416792020-06-02 13:07:30 -070011482 kvm_mmu_zap_collapsible_sptes(kvm, new);
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011483 } else {
Keqian Zhu89212912021-04-29 11:41:15 +080011484 /*
11485 * Initially-all-set does not require write protecting any page,
11486 * because they're all assumed to be dirty.
11487 */
11488 if (kvm_dirty_log_manual_protect_and_init_set(kvm))
11489 return;
Anthony Yznaga37416792020-06-02 13:07:30 -070011490
Sean Christophersona018eba2021-02-12 16:50:10 -080011491 if (kvm_x86_ops.cpu_dirty_log_size) {
Keqian Zhu89212912021-04-29 11:41:15 +080011492 kvm_mmu_slot_leaf_clear_dirty(kvm, new);
11493 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_2M);
11494 } else {
11495 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_4K);
Jay Zhou3c9bd402020-02-27 09:32:27 +080011496 }
Kai Huang88178fd2015-01-28 10:54:27 +080011497 }
11498}
11499
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011500void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +020011501 const struct kvm_userspace_memory_region *mem,
Sean Christopherson9d4c1972020-02-18 13:07:24 -080011502 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020011503 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +090011504 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011505{
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +080011506 if (!kvm->arch.n_requested_mmu_pages)
Wei Yang4d666232018-09-27 08:31:26 +080011507 kvm_mmu_change_mmu_pages(kvm,
11508 kvm_mmu_calculate_default_mmu_pages(kvm));
Kai Huang1c91cad42015-01-28 10:54:26 +080011509
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +090011510 /*
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020011511 * FIXME: const-ify all uses of struct kvm_memory_slot.
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +090011512 */
Anthony Yznaga37416792020-06-02 13:07:30 -070011513 kvm_mmu_slot_apply_flags(kvm, old, (struct kvm_memory_slot *) new, change);
Sean Christopherson21198842020-02-18 13:07:25 -080011514
11515 /* Free the arrays associated with the old memslot. */
11516 if (change == KVM_MR_MOVE)
Sean Christophersone96c81e2020-02-18 13:07:27 -080011517 kvm_arch_free_memslot(kvm, old);
Zhang Xiantao0de10342007-11-20 16:25:04 +080011518}
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011519
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011520void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011521{
Sean Christopherson7390de12019-02-05 13:01:31 -080011522 kvm_mmu_zap_all(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011523}
11524
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011525void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
11526 struct kvm_memory_slot *slot)
11527{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +080011528 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011529}
11530
Liran Alone6c67d82018-09-04 10:56:52 +030011531static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
11532{
11533 return (is_guest_mode(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011534 kvm_x86_ops.guest_apic_has_interrupt &&
Jason Baronb36464772021-01-14 22:27:56 -050011535 static_call(kvm_x86_guest_apic_has_interrupt)(vcpu));
Liran Alone6c67d82018-09-04 10:56:52 +030011536}
11537
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011538static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
11539{
11540 if (!list_empty_careful(&vcpu->async_pf.done))
11541 return true;
11542
11543 if (kvm_apic_has_events(vcpu))
11544 return true;
11545
11546 if (vcpu->arch.pv.pv_unhalted)
11547 return true;
11548
Wanpeng Lia5f01f82017-09-13 04:04:01 -070011549 if (vcpu->arch.exception.pending)
11550 return true;
11551
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011552 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11553 (vcpu->arch.nmi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011554 static_call(kvm_x86_nmi_allowed)(vcpu, false)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011555 return true;
11556
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011557 if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -040011558 (vcpu->arch.smi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011559 static_call(kvm_x86_smi_allowed)(vcpu, false)))
Paolo Bonzini73917732015-10-13 10:19:35 +020011560 return true;
11561
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011562 if (kvm_arch_interrupt_allowed(vcpu) &&
Liran Alone6c67d82018-09-04 10:56:52 +030011563 (kvm_cpu_has_interrupt(vcpu) ||
11564 kvm_guest_apic_has_interrupt(vcpu)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011565 return true;
11566
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +030011567 if (kvm_hv_has_stimer_pending(vcpu))
11568 return true;
11569
Sean Christophersond2060bd2020-04-22 19:25:39 -070011570 if (is_guest_mode(vcpu) &&
11571 kvm_x86_ops.nested_ops->hv_timer_pending &&
11572 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
11573 return true;
11574
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011575 return false;
11576}
11577
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011578int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
11579{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011580 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011581}
Zhang Xiantao57361992007-12-17 14:21:40 +080011582
Haiwei Li10dbdf92021-04-21 11:25:13 +080011583bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu)
11584{
11585 if (vcpu->arch.apicv_active && static_call(kvm_x86_dy_apicv_has_pending_interrupt)(vcpu))
11586 return true;
11587
11588 return false;
11589}
11590
Wanpeng Li17e433b2019-08-05 10:03:19 +080011591bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
11592{
11593 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
11594 return true;
11595
11596 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11597 kvm_test_request(KVM_REQ_SMI, vcpu) ||
11598 kvm_test_request(KVM_REQ_EVENT, vcpu))
11599 return true;
11600
Haiwei Li10dbdf92021-04-21 11:25:13 +080011601 return kvm_arch_dy_has_pending_interrupt(vcpu);
Wanpeng Li17e433b2019-08-05 10:03:19 +080011602}
11603
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011604bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
11605{
Wanpeng Lib86bb112021-04-22 16:34:19 +080011606 if (vcpu->arch.guest_state_protected)
11607 return true;
11608
Longpeng(Mike)de63ad42017-08-08 12:05:33 +080011609 return vcpu->arch.preempted_in_kernel;
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011610}
11611
Christoffer Dallb6d33832012-03-08 16:44:24 -050011612int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +080011613{
Christoffer Dallb6d33832012-03-08 16:44:24 -050011614 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +080011615}
Gleb Natapov78646122009-03-23 12:12:11 +020011616
11617int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
11618{
Jason Baronb36464772021-01-14 22:27:56 -050011619 return static_call(kvm_x86_interrupt_allowed)(vcpu, false);
Gleb Natapov78646122009-03-23 12:12:11 +020011620}
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011621
Nadav Amit82b32772014-11-02 11:54:45 +020011622unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
11623{
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060011624 /* Can't read the RIP when guest state is protected, just return 0 */
11625 if (vcpu->arch.guest_state_protected)
11626 return 0;
11627
Nadav Amit82b32772014-11-02 11:54:45 +020011628 if (is_64_bit_mode(vcpu))
11629 return kvm_rip_read(vcpu);
11630 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
11631 kvm_rip_read(vcpu));
11632}
11633EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
11634
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011635bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
11636{
Nadav Amit82b32772014-11-02 11:54:45 +020011637 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011638}
11639EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
11640
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011641unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
11642{
11643 unsigned long rflags;
11644
Jason Baronb36464772021-01-14 22:27:56 -050011645 rflags = static_call(kvm_x86_get_rflags)(vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011646 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +010011647 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011648 return rflags;
11649}
11650EXPORT_SYMBOL_GPL(kvm_get_rflags);
11651
Paolo Bonzini6addfc42014-03-27 11:29:28 +010011652static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011653{
11654 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011655 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +010011656 rflags |= X86_EFLAGS_TF;
Jason Baronb36464772021-01-14 22:27:56 -050011657 static_call(kvm_x86_set_rflags)(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010011658}
11659
11660void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
11661{
11662 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +030011663 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011664}
11665EXPORT_SYMBOL_GPL(kvm_set_rflags);
11666
Gleb Natapov56028d02010-10-17 18:13:42 +020011667void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
11668{
11669 int r;
11670
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020011671 if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +080011672 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +020011673 return;
11674
11675 r = kvm_mmu_reload(vcpu);
11676 if (unlikely(r))
11677 return;
11678
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020011679 if (!vcpu->arch.mmu->direct_map &&
Sean Christophersond8dd54e2020-03-02 18:02:39 -080011680 work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu))
Xiao Guangrongfb67e142010-12-07 10:35:25 +080011681 return;
11682
Sean Christopherson7a026742020-02-06 14:14:34 -080011683 kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true);
Gleb Natapov56028d02010-10-17 18:13:42 +020011684}
11685
Gleb Natapovaf585b92010-10-14 11:22:46 +020011686static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
11687{
Peter Xudd03bca2020-04-16 11:58:59 -040011688 BUILD_BUG_ON(!is_power_of_2(ASYNC_PF_PER_VCPU));
11689
Gleb Natapovaf585b92010-10-14 11:22:46 +020011690 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
11691}
11692
11693static inline u32 kvm_async_pf_next_probe(u32 key)
11694{
Peter Xudd03bca2020-04-16 11:58:59 -040011695 return (key + 1) & (ASYNC_PF_PER_VCPU - 1);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011696}
11697
11698static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11699{
11700 u32 key = kvm_async_pf_hash_fn(gfn);
11701
11702 while (vcpu->arch.apf.gfns[key] != ~0)
11703 key = kvm_async_pf_next_probe(key);
11704
11705 vcpu->arch.apf.gfns[key] = gfn;
11706}
11707
11708static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
11709{
11710 int i;
11711 u32 key = kvm_async_pf_hash_fn(gfn);
11712
Peter Xudd03bca2020-04-16 11:58:59 -040011713 for (i = 0; i < ASYNC_PF_PER_VCPU &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +080011714 (vcpu->arch.apf.gfns[key] != gfn &&
11715 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +020011716 key = kvm_async_pf_next_probe(key);
11717
11718 return key;
11719}
11720
11721bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11722{
11723 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
11724}
11725
11726static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11727{
11728 u32 i, j, k;
11729
11730 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
Peter Xu0fd46042020-04-16 11:59:10 -040011731
11732 if (WARN_ON_ONCE(vcpu->arch.apf.gfns[i] != gfn))
11733 return;
11734
Gleb Natapovaf585b92010-10-14 11:22:46 +020011735 while (true) {
11736 vcpu->arch.apf.gfns[i] = ~0;
11737 do {
11738 j = kvm_async_pf_next_probe(j);
11739 if (vcpu->arch.apf.gfns[j] == ~0)
11740 return;
11741 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
11742 /*
11743 * k lies cyclically in ]i,j]
11744 * | i.k.j |
11745 * |....j i.k.| or |.k..j i...|
11746 */
11747 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
11748 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
11749 i = j;
11750 }
11751}
11752
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020011753static inline int apf_put_user_notpresent(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020011754{
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020011755 u32 reason = KVM_PV_REASON_PAGE_NOT_PRESENT;
11756
11757 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &reason,
11758 sizeof(reason));
11759}
11760
11761static inline int apf_put_user_ready(struct kvm_vcpu *vcpu, u32 token)
11762{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011763 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
Paolo Bonzini4e335d92017-05-02 16:20:18 +020011764
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011765 return kvm_write_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
11766 &token, offset, sizeof(token));
11767}
11768
11769static inline bool apf_pageready_slot_free(struct kvm_vcpu *vcpu)
11770{
11771 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
11772 u32 val;
11773
11774 if (kvm_read_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
11775 &val, offset, sizeof(val)))
11776 return false;
11777
11778 return !val;
Gleb Natapov7c907052010-10-14 11:22:53 +020011779}
11780
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011781static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
11782{
11783 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
11784 return false;
11785
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011786 if (!kvm_pv_async_pf_enabled(vcpu) ||
Jason Baronb36464772021-01-14 22:27:56 -050011787 (vcpu->arch.apf.send_user_only && static_call(kvm_x86_get_cpl)(vcpu) == 0))
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011788 return false;
11789
11790 return true;
11791}
11792
11793bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
11794{
11795 if (unlikely(!lapic_in_kernel(vcpu) ||
11796 kvm_event_needs_reinjection(vcpu) ||
11797 vcpu->arch.exception.pending))
11798 return false;
11799
11800 if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu))
11801 return false;
11802
11803 /*
11804 * If interrupts are off we cannot even use an artificial
11805 * halt state.
11806 */
Paolo Bonzinic300ab92020-04-23 14:08:58 -040011807 return kvm_arch_interrupt_allowed(vcpu);
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011808}
11809
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011810bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
Gleb Natapovaf585b92010-10-14 11:22:46 +020011811 struct kvm_async_pf *work)
11812{
Avi Kivity6389ee92010-11-29 16:12:30 +020011813 struct x86_exception fault;
11814
Sean Christopherson736c2912019-12-06 15:57:14 -080011815 trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011816 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +020011817
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011818 if (kvm_can_deliver_async_pf(vcpu) &&
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020011819 !apf_put_user_notpresent(vcpu)) {
Avi Kivity6389ee92010-11-29 16:12:30 +020011820 fault.vector = PF_VECTOR;
11821 fault.error_code_valid = true;
11822 fault.error_code = 0;
11823 fault.nested_page_fault = false;
11824 fault.address = work->arch.token;
Wanpeng Liadfe20f2017-07-13 18:30:41 -070011825 fault.async_page_fault = true;
Avi Kivity6389ee92010-11-29 16:12:30 +020011826 kvm_inject_page_fault(vcpu, &fault);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011827 return true;
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011828 } else {
11829 /*
11830 * It is not possible to deliver a paravirtualized asynchronous
11831 * page fault, but putting the guest in an artificial halt state
11832 * can be beneficial nevertheless: if an interrupt arrives, we
11833 * can deliver it timely and perhaps the guest will schedule
11834 * another process. When the instruction that triggered a page
11835 * fault is retried, hopefully the page will be ready in the host.
11836 */
11837 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011838 return false;
Gleb Natapov7c907052010-10-14 11:22:53 +020011839 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020011840}
11841
11842void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
11843 struct kvm_async_pf *work)
11844{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011845 struct kvm_lapic_irq irq = {
11846 .delivery_mode = APIC_DM_FIXED,
11847 .vector = vcpu->arch.apf.vec
11848 };
Avi Kivity6389ee92010-11-29 16:12:30 +020011849
chai wenf2e10662013-10-14 22:22:33 +080011850 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +020011851 work->arch.token = ~0; /* broadcast wakeup */
11852 else
11853 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Sean Christopherson736c2912019-12-06 15:57:14 -080011854 trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa);
Gleb Natapov7c907052010-10-14 11:22:53 +020011855
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011856 if ((work->wakeup_all || work->notpresent_injected) &&
11857 kvm_pv_async_pf_enabled(vcpu) &&
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020011858 !apf_put_user_ready(vcpu, work->arch.token)) {
11859 vcpu->arch.apf.pageready_pending = true;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011860 kvm_apic_set_irq(vcpu, &irq, NULL);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020011861 }
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011862
Xiao Guangronge6d53e32010-11-01 17:01:28 +080011863 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +030011864 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +020011865}
11866
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020011867void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu)
11868{
11869 kvm_make_request(KVM_REQ_APF_READY, vcpu);
11870 if (!vcpu->arch.apf.pageready_pending)
11871 kvm_vcpu_kick(vcpu);
11872}
11873
Vitaly Kuznetsov7c0ade62020-05-25 16:41:18 +020011874bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020011875{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011876 if (!kvm_pv_async_pf_enabled(vcpu))
Gleb Natapov7c907052010-10-14 11:22:53 +020011877 return true;
11878 else
Vitaly Kuznetsov2f15d022021-04-22 11:29:48 +020011879 return kvm_lapic_enabled(vcpu) && apf_pageready_slot_free(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011880}
11881
Paolo Bonzini5544eb92015-07-07 15:41:58 +020011882void kvm_arch_start_assignment(struct kvm *kvm)
11883{
Marcelo Tosatti57ab8792021-05-25 10:41:16 -030011884 if (atomic_inc_return(&kvm->arch.assigned_device_count) == 1)
11885 static_call_cond(kvm_x86_start_assignment)(kvm);
Paolo Bonzini5544eb92015-07-07 15:41:58 +020011886}
11887EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
11888
11889void kvm_arch_end_assignment(struct kvm *kvm)
11890{
11891 atomic_dec(&kvm->arch.assigned_device_count);
11892}
11893EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
11894
11895bool kvm_arch_has_assigned_device(struct kvm *kvm)
11896{
11897 return atomic_read(&kvm->arch.assigned_device_count);
11898}
11899EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
11900
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060011901void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
11902{
11903 atomic_inc(&kvm->arch.noncoherent_dma_count);
11904}
11905EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
11906
11907void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
11908{
11909 atomic_dec(&kvm->arch.noncoherent_dma_count);
11910}
11911EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
11912
11913bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
11914{
11915 return atomic_read(&kvm->arch.noncoherent_dma_count);
11916}
11917EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
11918
Alex Williamson14717e22016-05-05 11:58:35 -060011919bool kvm_arch_has_irq_bypass(void)
11920{
Sean Christopherson92735b12019-08-02 15:06:17 -070011921 return true;
Alex Williamson14717e22016-05-05 11:58:35 -060011922}
11923
Feng Wu87276882015-09-18 22:29:40 +080011924int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
11925 struct irq_bypass_producer *prod)
11926{
11927 struct kvm_kernel_irqfd *irqfd =
11928 container_of(cons, struct kvm_kernel_irqfd, consumer);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080011929 int ret;
Feng Wu87276882015-09-18 22:29:40 +080011930
Alex Williamson14717e22016-05-05 11:58:35 -060011931 irqfd->producer = prod;
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080011932 kvm_arch_start_assignment(irqfd->kvm);
Jason Baronb36464772021-01-14 22:27:56 -050011933 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm,
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080011934 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +080011935
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080011936 if (ret)
11937 kvm_arch_end_assignment(irqfd->kvm);
11938
11939 return ret;
Feng Wu87276882015-09-18 22:29:40 +080011940}
11941
11942void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
11943 struct irq_bypass_producer *prod)
11944{
11945 int ret;
11946 struct kvm_kernel_irqfd *irqfd =
11947 container_of(cons, struct kvm_kernel_irqfd, consumer);
11948
Feng Wu87276882015-09-18 22:29:40 +080011949 WARN_ON(irqfd->producer != prod);
11950 irqfd->producer = NULL;
11951
11952 /*
11953 * When producer of consumer is unregistered, we change back to
11954 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +020011955 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +080011956 * int this case doesn't want to receive the interrupts.
11957 */
Jason Baronb36464772021-01-14 22:27:56 -050011958 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm, prod->irq, irqfd->gsi, 0);
Feng Wu87276882015-09-18 22:29:40 +080011959 if (ret)
11960 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
11961 " fails: %d\n", irqfd->consumer.token, ret);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080011962
11963 kvm_arch_end_assignment(irqfd->kvm);
Feng Wu87276882015-09-18 22:29:40 +080011964}
11965
11966int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
11967 uint32_t guest_irq, bool set)
11968{
Jason Baronb36464772021-01-14 22:27:56 -050011969 return static_call(kvm_x86_update_pi_irte)(kvm, host_irq, guest_irq, set);
Feng Wu87276882015-09-18 22:29:40 +080011970}
11971
Feng Wu520040142016-01-25 16:53:33 +080011972bool kvm_vector_hashing_enabled(void)
11973{
11974 return vector_hashing;
11975}
Feng Wu520040142016-01-25 16:53:33 +080011976
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030011977bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
11978{
11979 return (vcpu->arch.msr_kvm_poll_control & 1) == 0;
11980}
11981EXPORT_SYMBOL_GPL(kvm_arch_no_poll);
11982
Maxim Levitsky841c2be2020-07-08 14:57:31 +030011983
11984int kvm_spec_ctrl_test_value(u64 value)
Paolo Bonzini6441fa62020-01-20 16:33:06 +010011985{
Maxim Levitsky841c2be2020-07-08 14:57:31 +030011986 /*
11987 * test that setting IA32_SPEC_CTRL to given value
11988 * is allowed by the host processor
11989 */
Paolo Bonzini6441fa62020-01-20 16:33:06 +010011990
Maxim Levitsky841c2be2020-07-08 14:57:31 +030011991 u64 saved_value;
11992 unsigned long flags;
11993 int ret = 0;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010011994
Maxim Levitsky841c2be2020-07-08 14:57:31 +030011995 local_irq_save(flags);
Paolo Bonzini6441fa62020-01-20 16:33:06 +010011996
Maxim Levitsky841c2be2020-07-08 14:57:31 +030011997 if (rdmsrl_safe(MSR_IA32_SPEC_CTRL, &saved_value))
11998 ret = 1;
11999 else if (wrmsrl_safe(MSR_IA32_SPEC_CTRL, value))
12000 ret = 1;
12001 else
12002 wrmsrl(MSR_IA32_SPEC_CTRL, saved_value);
12003
12004 local_irq_restore(flags);
12005
12006 return ret;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012007}
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012008EXPORT_SYMBOL_GPL(kvm_spec_ctrl_test_value);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012009
Mohammed Gamal89786142020-07-10 17:48:03 +020012010void kvm_fixup_and_inject_pf_error(struct kvm_vcpu *vcpu, gva_t gva, u16 error_code)
12011{
12012 struct x86_exception fault;
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012013 u32 access = error_code &
12014 (PFERR_WRITE_MASK | PFERR_FETCH_MASK | PFERR_USER_MASK);
Mohammed Gamal89786142020-07-10 17:48:03 +020012015
12016 if (!(error_code & PFERR_PRESENT_MASK) ||
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012017 vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, &fault) != UNMAPPED_GVA) {
Mohammed Gamal89786142020-07-10 17:48:03 +020012018 /*
12019 * If vcpu->arch.walk_mmu->gva_to_gpa succeeded, the page
12020 * tables probably do not match the TLB. Just proceed
12021 * with the error code that the processor gave.
12022 */
12023 fault.vector = PF_VECTOR;
12024 fault.error_code_valid = true;
12025 fault.error_code = error_code;
12026 fault.nested_page_fault = false;
12027 fault.address = gva;
12028 }
12029 vcpu->arch.walk_mmu->inject_page_fault(vcpu, &fault);
12030}
12031EXPORT_SYMBOL_GPL(kvm_fixup_and_inject_pf_error);
Carsten Otte043405e2007-10-10 17:16:19 +020012032
Babu Moger3f3393b2020-09-11 14:29:05 -050012033/*
12034 * Handles kvm_read/write_guest_virt*() result and either injects #PF or returns
12035 * KVM_EXIT_INTERNAL_ERROR for cases not currently handled by KVM. Return value
12036 * indicates whether exit to userspace is needed.
12037 */
12038int kvm_handle_memory_failure(struct kvm_vcpu *vcpu, int r,
12039 struct x86_exception *e)
12040{
12041 if (r == X86EMUL_PROPAGATE_FAULT) {
12042 kvm_inject_emulated_page_fault(vcpu, e);
12043 return 1;
12044 }
12045
12046 /*
12047 * In case kvm_read/write_guest_virt*() failed with X86EMUL_IO_NEEDED
12048 * while handling a VMX instruction KVM could've handled the request
12049 * correctly by exiting to userspace and performing I/O but there
12050 * doesn't seem to be a real use-case behind such requests, just return
12051 * KVM_EXIT_INTERNAL_ERROR for now.
12052 */
12053 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
12054 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
12055 vcpu->run->internal.ndata = 0;
12056
12057 return 0;
12058}
12059EXPORT_SYMBOL_GPL(kvm_handle_memory_failure);
12060
Babu Moger97150922020-09-11 14:29:12 -050012061int kvm_handle_invpcid(struct kvm_vcpu *vcpu, unsigned long type, gva_t gva)
12062{
12063 bool pcid_enabled;
12064 struct x86_exception e;
Babu Moger97150922020-09-11 14:29:12 -050012065 struct {
12066 u64 pcid;
12067 u64 gla;
12068 } operand;
12069 int r;
12070
12071 r = kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e);
12072 if (r != X86EMUL_CONTINUE)
12073 return kvm_handle_memory_failure(vcpu, r, &e);
12074
12075 if (operand.pcid >> 12 != 0) {
12076 kvm_inject_gp(vcpu, 0);
12077 return 1;
12078 }
12079
12080 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
12081
12082 switch (type) {
12083 case INVPCID_TYPE_INDIV_ADDR:
12084 if ((!pcid_enabled && (operand.pcid != 0)) ||
12085 is_noncanonical_address(operand.gla, vcpu)) {
12086 kvm_inject_gp(vcpu, 0);
12087 return 1;
12088 }
12089 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
12090 return kvm_skip_emulated_instruction(vcpu);
12091
12092 case INVPCID_TYPE_SINGLE_CTXT:
12093 if (!pcid_enabled && (operand.pcid != 0)) {
12094 kvm_inject_gp(vcpu, 0);
12095 return 1;
12096 }
12097
Sean Christopherson21823fb2021-06-09 16:42:24 -070012098 kvm_invalidate_pcid(vcpu, operand.pcid);
Babu Moger97150922020-09-11 14:29:12 -050012099 return kvm_skip_emulated_instruction(vcpu);
12100
12101 case INVPCID_TYPE_ALL_NON_GLOBAL:
12102 /*
12103 * Currently, KVM doesn't mark global entries in the shadow
12104 * page tables, so a non-global flush just degenerates to a
12105 * global flush. If needed, we could optimize this later by
12106 * keeping track of global entries in shadow page tables.
12107 */
12108
12109 fallthrough;
12110 case INVPCID_TYPE_ALL_INCL_GLOBAL:
Sean Christopherson28f28d42021-06-09 16:42:30 -070012111 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Babu Moger97150922020-09-11 14:29:12 -050012112 return kvm_skip_emulated_instruction(vcpu);
12113
12114 default:
12115 BUG(); /* We have already checked above that type <= 3 */
12116 }
12117}
12118EXPORT_SYMBOL_GPL(kvm_handle_invpcid);
12119
Tom Lendacky8f423a82020-12-10 11:09:53 -060012120static int complete_sev_es_emulated_mmio(struct kvm_vcpu *vcpu)
12121{
12122 struct kvm_run *run = vcpu->run;
12123 struct kvm_mmio_fragment *frag;
12124 unsigned int len;
12125
12126 BUG_ON(!vcpu->mmio_needed);
12127
12128 /* Complete previous fragment */
12129 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
12130 len = min(8u, frag->len);
12131 if (!vcpu->mmio_is_write)
12132 memcpy(frag->data, run->mmio.data, len);
12133
12134 if (frag->len <= 8) {
12135 /* Switch to the next fragment. */
12136 frag++;
12137 vcpu->mmio_cur_fragment++;
12138 } else {
12139 /* Go forward to the next mmio piece. */
12140 frag->data += len;
12141 frag->gpa += len;
12142 frag->len -= len;
12143 }
12144
12145 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
12146 vcpu->mmio_needed = 0;
12147
12148 // VMG change, at this point, we're always done
12149 // RIP has already been advanced
12150 return 1;
12151 }
12152
12153 // More MMIO is needed
12154 run->mmio.phys_addr = frag->gpa;
12155 run->mmio.len = min(8u, frag->len);
12156 run->mmio.is_write = vcpu->mmio_is_write;
12157 if (run->mmio.is_write)
12158 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
12159 run->exit_reason = KVM_EXIT_MMIO;
12160
12161 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12162
12163 return 0;
12164}
12165
12166int kvm_sev_es_mmio_write(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12167 void *data)
12168{
12169 int handled;
12170 struct kvm_mmio_fragment *frag;
12171
12172 if (!data)
12173 return -EINVAL;
12174
12175 handled = write_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12176 if (handled == bytes)
12177 return 1;
12178
12179 bytes -= handled;
12180 gpa += handled;
12181 data += handled;
12182
12183 /*TODO: Check if need to increment number of frags */
12184 frag = vcpu->mmio_fragments;
12185 vcpu->mmio_nr_fragments = 1;
12186 frag->len = bytes;
12187 frag->gpa = gpa;
12188 frag->data = data;
12189
12190 vcpu->mmio_needed = 1;
12191 vcpu->mmio_cur_fragment = 0;
12192
12193 vcpu->run->mmio.phys_addr = gpa;
12194 vcpu->run->mmio.len = min(8u, frag->len);
12195 vcpu->run->mmio.is_write = 1;
12196 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
12197 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12198
12199 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12200
12201 return 0;
12202}
12203EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_write);
12204
12205int kvm_sev_es_mmio_read(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12206 void *data)
12207{
12208 int handled;
12209 struct kvm_mmio_fragment *frag;
12210
12211 if (!data)
12212 return -EINVAL;
12213
12214 handled = read_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12215 if (handled == bytes)
12216 return 1;
12217
12218 bytes -= handled;
12219 gpa += handled;
12220 data += handled;
12221
12222 /*TODO: Check if need to increment number of frags */
12223 frag = vcpu->mmio_fragments;
12224 vcpu->mmio_nr_fragments = 1;
12225 frag->len = bytes;
12226 frag->gpa = gpa;
12227 frag->data = data;
12228
12229 vcpu->mmio_needed = 1;
12230 vcpu->mmio_cur_fragment = 0;
12231
12232 vcpu->run->mmio.phys_addr = gpa;
12233 vcpu->run->mmio.len = min(8u, frag->len);
12234 vcpu->run->mmio.is_write = 0;
12235 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12236
12237 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12238
12239 return 0;
12240}
12241EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_read);
12242
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012243static int complete_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12244{
12245 memcpy(vcpu->arch.guest_ins_data, vcpu->arch.pio_data,
12246 vcpu->arch.pio.count * vcpu->arch.pio.size);
12247 vcpu->arch.pio.count = 0;
12248
12249 return 1;
12250}
12251
12252static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
12253 unsigned int port, void *data, unsigned int count)
12254{
12255 int ret;
12256
12257 ret = emulator_pio_out_emulated(vcpu->arch.emulate_ctxt, size, port,
12258 data, count);
12259 if (ret)
12260 return ret;
12261
12262 vcpu->arch.pio.count = 0;
12263
12264 return 0;
12265}
12266
12267static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
12268 unsigned int port, void *data, unsigned int count)
12269{
12270 int ret;
12271
12272 ret = emulator_pio_in_emulated(vcpu->arch.emulate_ctxt, size, port,
12273 data, count);
12274 if (ret) {
12275 vcpu->arch.pio.count = 0;
12276 } else {
12277 vcpu->arch.guest_ins_data = data;
12278 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_ins;
12279 }
12280
12281 return 0;
12282}
12283
12284int kvm_sev_es_string_io(struct kvm_vcpu *vcpu, unsigned int size,
12285 unsigned int port, void *data, unsigned int count,
12286 int in)
12287{
12288 return in ? kvm_sev_es_ins(vcpu, size, port, data, count)
12289 : kvm_sev_es_outs(vcpu, size, port, data, count);
12290}
12291EXPORT_SYMBOL_GPL(kvm_sev_es_string_io);
12292
Lorenzo Bresciad95df952020-12-23 14:45:07 +000012293EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_entry);
Carsten Otte043405e2007-10-10 17:16:19 +020012294EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
12295EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
12296EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
12297EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
12298EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
12299EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
12300EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
12301EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
12302EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
12303EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Sean Christopherson5497b952019-07-11 08:58:29 -070012304EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed);
Carsten Otte043405e2007-10-10 17:16:19 +020012305EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
12306EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
12307EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
12308EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Peter Xu4f75bcc2019-09-06 10:17:22 +080012309EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update);
Carsten Otte043405e2007-10-10 17:16:19 +020012310EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
12311EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
12312EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
12313EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);
Suravee Suthikulpanitab56f8e2020-03-12 05:39:28 -050012314EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log);
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -060012315EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request);
Tom Lendackyd523ab6b2020-12-10 11:09:48 -060012316EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_enter);
12317EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_exit);
Tom Lendacky59e38b52020-12-10 11:09:52 -060012318EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_enter);
12319EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_exit);