blob: 4116567f3d4485bf4d7f2c216cce528424c19385 [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Carsten Otte043405e2007-10-10 17:16:19 +02002/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * derived from drivers/kvm/kvm_main.c
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03008 * Copyright (C) 2008 Qumranet, Inc.
9 * Copyright IBM Corporation, 2008
Nicolas Kaiser9611c182010-10-06 14:23:22 +020010 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Carsten Otte043405e2007-10-10 17:16:19 +020011 *
12 * Authors:
13 * Avi Kivity <avi@qumranet.com>
14 * Yaniv Kamay <yaniv@qumranet.com>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030015 * Amit Shah <amit.shah@qumranet.com>
16 * Ben-Ami Yassour <benami@il.ibm.com>
Carsten Otte043405e2007-10-10 17:16:19 +020017 */
18
Avi Kivityedf88412007-12-16 11:02:48 +020019#include <linux/kvm_host.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020020#include "irq.h"
彭浩(Richard)88197e62020-05-21 05:57:49 +000021#include "ioapic.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080022#include "mmu.h"
Sheng Yang78376992008-01-28 05:10:22 +080023#include "i8254.h"
Izik Eidus37817f22008-03-24 23:14:53 +020024#include "tss.h"
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030025#include "kvm_cache_regs.h"
Sean Christopherson2f728d62020-02-18 15:29:49 -080026#include "kvm_emulate.h"
Avi Kivity26eef702008-07-03 14:59:22 +030027#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020028#include "cpuid.h"
Wei Huang474a5bb2015-06-19 13:54:23 +020029#include "pmu.h"
Andrey Smetanine83d5882015-07-03 15:01:34 +030030#include "hyperv.h"
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -060031#include "lapic.h"
Joao Martins23200b72018-06-13 09:55:44 -040032#include "xen.h"
Carsten Otte313a3dc2007-10-11 19:16:52 +020033
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020034#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030035#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020036#include <linux/kvm.h>
37#include <linux/fs.h>
38#include <linux/vmalloc.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040039#include <linux/export.h>
40#include <linux/moduleparam.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080041#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050042#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010043#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030044#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010045#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030046#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020047#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080049#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080050#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020051#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020052#include <linux/pci.h>
Marcelo Tosatti16e8d742012-11-27 23:29:00 -020053#include <linux/timekeeper_internal.h>
54#include <linux/pvclock_gtod.h>
Feng Wu87276882015-09-18 22:29:40 +080055#include <linux/kvm_irqfd.h>
56#include <linux/irqbypass.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010057#include <linux/sched/stat.h>
Wanpeng Li0c5f81d2019-07-06 09:26:51 +080058#include <linux/sched/isolation.h>
Tom Lendackyd0ec49d2017-07-17 16:10:27 -050059#include <linux/mem_encrypt.h>
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020060#include <linux/entry-kvm.h>
Sergey Senozhatsky7d628742021-06-06 11:10:45 +090061#include <linux/suspend.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010062
Avi Kivityaec51dc2009-07-01 16:01:02 +030063#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080064
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020065#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080066#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020067#include <asm/desc.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080068#include <asm/mce.h>
Dave Hansen784a46612021-06-23 14:02:05 +020069#include <asm/pkru.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020070#include <linux/kernel_stat.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020071#include <asm/fpu/internal.h> /* Ugh! */
Zachary Amsden1d5f0662010-08-19 22:07:30 -100072#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030073#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080074#include <asm/irq_remapping.h>
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010075#include <asm/mshyperv.h>
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +010076#include <asm/hypervisor.h>
Babu Moger97150922020-09-11 14:29:12 -050077#include <asm/tlbflush.h>
Chao Pengbf8c55d2018-10-24 16:05:14 +080078#include <asm/intel_pt.h>
Masami Hiramatsub3dc0692019-09-06 22:13:59 +090079#include <asm/emulate_prefix.h>
Sean Christophersonfe7e9482021-04-12 16:21:43 +120080#include <asm/sgx.h>
Michael Kelleydd2cb342019-07-01 04:26:06 +000081#include <clocksource/hyperv_timer.h>
Carsten Otte043405e2007-10-10 17:16:19 +020082
Dave Hansend1898b72016-06-01 10:42:20 -070083#define CREATE_TRACE_POINTS
84#include "trace.h"
85
Carsten Otte313a3dc2007-10-11 19:16:52 +020086#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080087#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080088u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
89EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080090
Avi Kivity0f65dd72011-04-20 13:37:53 +030091#define emul_to_vcpu(ctxt) \
Sean Christophersonc9b8b072020-02-18 15:29:48 -080092 ((struct kvm_vcpu *)(ctxt)->vcpu)
Avi Kivity0f65dd72011-04-20 13:37:53 +030093
Joerg Roedel50a37eb2008-01-31 14:57:38 +010094/* EFER defaults:
95 * - enable syscall per default because its emulated by KVM
96 * - enable LME and LMA per default on 64 bit KVM
97 */
98#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080099static
100u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100101#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +0800102static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100103#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +0200104
Sean Christophersonb11306b2019-12-10 14:44:13 -0800105static u64 __read_mostly cr4_reserved_bits = CR4_RESERVED_BITS;
106
Ashish Kalra0dbb1122021-06-08 18:05:43 +0000107#define KVM_EXIT_HYPERCALL_VALID_MASK (1 << KVM_HC_MAP_GPA_RANGE)
108
Radim Krčmářc5192652016-07-12 22:09:28 +0200109#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
110 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +0200111
Gleb Natapovcb142eb2009-08-09 15:17:40 +0300112static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300113static void process_nmi(struct kvm_vcpu *vcpu);
Jay Zhou1f7becf2021-01-18 16:47:20 +0800114static void process_smi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +0200115static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +0100116static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Ken Hofsass01643c52018-01-31 16:03:36 -0800117static void store_regs(struct kvm_vcpu *vcpu);
118static int sync_regs(struct kvm_vcpu *vcpu);
Avi Kivity674eea02008-02-11 18:37:23 +0200119
Maxim Levitsky6dba9402021-06-07 12:02:02 +0300120static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
121static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
122
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700123struct kvm_x86_ops kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300124EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800125
Jason Baron9af54712021-01-14 22:27:55 -0500126#define KVM_X86_OP(func) \
127 DEFINE_STATIC_CALL_NULL(kvm_x86_##func, \
128 *(((struct kvm_x86_ops *)0)->func));
129#define KVM_X86_OP_NULL KVM_X86_OP
130#include <asm/kvm-x86-ops.h>
131EXPORT_STATIC_CALL_GPL(kvm_x86_get_cs_db_l_bits);
132EXPORT_STATIC_CALL_GPL(kvm_x86_cache_reg);
133EXPORT_STATIC_CALL_GPL(kvm_x86_tlb_flush_current);
134
Paolo Bonzini893590c2015-11-06 11:46:24 +0100135static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030136module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200137
Like Xud8550662021-01-08 09:36:55 +0800138bool __read_mostly report_ignored_msrs = true;
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200139module_param(report_ignored_msrs, bool, S_IRUGO | S_IWUSR);
Like Xud8550662021-01-08 09:36:55 +0800140EXPORT_SYMBOL_GPL(report_ignored_msrs);
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200141
Wanpeng Li4c276252018-05-05 04:02:32 -0700142unsigned int min_timer_period_us = 200;
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200143module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
144
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300145static bool __read_mostly kvmclock_periodic_sync = true;
146module_param(kvmclock_periodic_sync, bool, S_IRUGO);
147
Paolo Bonzini893590c2015-11-06 11:46:24 +0100148bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100149EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100150u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100151EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800152u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
153EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
154u64 __read_mostly kvm_max_tsc_scaling_ratio;
155EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700156u64 __read_mostly kvm_default_tsc_scaling_ratio;
157EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +0800158bool __read_mostly kvm_has_bus_lock_exit;
159EXPORT_SYMBOL_GPL(kvm_has_bus_lock_exit);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100160
Zachary Amsdencc578282012-02-03 15:43:50 -0200161/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100162static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200163module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
164
Sean Christophersonc3941d92019-04-17 10:15:33 -0700165/*
166 * lapic timer advance (tscdeadline mode only) in nanoseconds. '-1' enables
Ingo Molnard9f6e122021-03-18 15:28:01 +0100167 * adaptive tuning starting from default advancement of 1000ns. '0' disables
Sean Christophersonc3941d92019-04-17 10:15:33 -0700168 * advancement entirely. Any other value is used as-is and disables adaptive
Ingo Molnard9f6e122021-03-18 15:28:01 +0100169 * tuning, i.e. allows privileged userspace to set an exact advancement time.
Sean Christophersonc3941d92019-04-17 10:15:33 -0700170 */
171static int __read_mostly lapic_timer_advance_ns = -1;
Wanpeng Li0e6edce2019-05-20 16:18:06 +0800172module_param(lapic_timer_advance_ns, int, S_IRUGO | S_IWUSR);
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500173
Feng Wu520040142016-01-25 16:53:33 +0800174static bool __read_mostly vector_hashing = true;
175module_param(vector_hashing, bool, S_IRUGO);
176
Liran Alonc4ae60e2018-03-12 13:12:47 +0200177bool __read_mostly enable_vmware_backdoor = false;
178module_param(enable_vmware_backdoor, bool, S_IRUGO);
179EXPORT_SYMBOL_GPL(enable_vmware_backdoor);
180
Wanpeng Li6c86eed2018-04-03 16:28:49 -0700181static bool __read_mostly force_emulation_prefix = false;
182module_param(force_emulation_prefix, bool, S_IRUGO);
183
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800184int __read_mostly pi_inject_timer = -1;
185module_param(pi_inject_timer, bint, S_IRUGO | S_IWUSR);
186
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700187/*
188 * Restoring the host value for MSRs that are only consumed when running in
189 * usermode, e.g. SYSCALL MSRs and TSC_AUX, can be deferred until the CPU
190 * returns to userspace, i.e. the kernel can run with the guest's value.
191 */
192#define KVM_MAX_NR_USER_RETURN_MSRS 16
Avi Kivity18863bd2009-09-07 11:12:18 +0300193
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700194struct kvm_user_return_msrs {
Avi Kivity18863bd2009-09-07 11:12:18 +0300195 struct user_return_notifier urn;
196 bool registered;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700197 struct kvm_user_return_msr_values {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800198 u64 host;
199 u64 curr;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700200 } values[KVM_MAX_NR_USER_RETURN_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300201};
202
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700203u32 __read_mostly kvm_nr_uret_msrs;
204EXPORT_SYMBOL_GPL(kvm_nr_uret_msrs);
205static u32 __read_mostly kvm_uret_msrs_list[KVM_MAX_NR_USER_RETURN_MSRS];
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700206static struct kvm_user_return_msrs __percpu *user_return_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300207
Sean Christophersoncfc48182020-03-02 15:56:23 -0800208#define KVM_SUPPORTED_XCR0 (XFEATURE_MASK_FP | XFEATURE_MASK_SSE \
209 | XFEATURE_MASK_YMM | XFEATURE_MASK_BNDREGS \
210 | XFEATURE_MASK_BNDCSR | XFEATURE_MASK_AVX512 \
211 | XFEATURE_MASK_PKRU)
212
Sean Christopherson91661982020-03-02 15:57:06 -0800213u64 __read_mostly host_efer;
214EXPORT_SYMBOL_GPL(host_efer);
215
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200216bool __read_mostly allow_smaller_maxphyaddr = 0;
Mohammed Gamal3edd6832020-07-10 17:48:11 +0200217EXPORT_SYMBOL_GPL(allow_smaller_maxphyaddr);
218
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +0200219bool __read_mostly enable_apicv = true;
220EXPORT_SYMBOL_GPL(enable_apicv);
221
Tom Lendacky86137772020-12-10 11:10:07 -0600222u64 __read_mostly host_xss;
223EXPORT_SYMBOL_GPL(host_xss);
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100224u64 __read_mostly supported_xss;
225EXPORT_SYMBOL_GPL(supported_xss);
Aaron Lewis139a12c2019-10-21 16:30:25 -0700226
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000227const struct _kvm_stats_desc kvm_vm_stats_desc[] = {
228 KVM_GENERIC_VM_STATS(),
229 STATS_DESC_COUNTER(VM, mmu_shadow_zapped),
230 STATS_DESC_COUNTER(VM, mmu_pte_write),
231 STATS_DESC_COUNTER(VM, mmu_pde_zapped),
232 STATS_DESC_COUNTER(VM, mmu_flooded),
233 STATS_DESC_COUNTER(VM, mmu_recycled),
234 STATS_DESC_COUNTER(VM, mmu_cache_miss),
235 STATS_DESC_ICOUNTER(VM, mmu_unsync),
236 STATS_DESC_ICOUNTER(VM, lpages),
237 STATS_DESC_ICOUNTER(VM, nx_lpage_splits),
Jing Zhangbc9e9e62021-06-23 17:28:46 -0400238 STATS_DESC_PCOUNTER(VM, max_mmu_page_hash_collisions)
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000239};
240static_assert(ARRAY_SIZE(kvm_vm_stats_desc) ==
241 sizeof(struct kvm_vm_stat) / sizeof(u64));
242
243const struct kvm_stats_header kvm_vm_stats_header = {
244 .name_size = KVM_STATS_NAME_SIZE,
245 .num_desc = ARRAY_SIZE(kvm_vm_stats_desc),
246 .id_offset = sizeof(struct kvm_stats_header),
247 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
248 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
249 sizeof(kvm_vm_stats_desc),
250};
251
Jing Zhangce55c042021-06-18 22:27:06 +0000252const struct _kvm_stats_desc kvm_vcpu_stats_desc[] = {
253 KVM_GENERIC_VCPU_STATS(),
254 STATS_DESC_COUNTER(VCPU, pf_fixed),
255 STATS_DESC_COUNTER(VCPU, pf_guest),
256 STATS_DESC_COUNTER(VCPU, tlb_flush),
257 STATS_DESC_COUNTER(VCPU, invlpg),
258 STATS_DESC_COUNTER(VCPU, exits),
259 STATS_DESC_COUNTER(VCPU, io_exits),
260 STATS_DESC_COUNTER(VCPU, mmio_exits),
261 STATS_DESC_COUNTER(VCPU, signal_exits),
262 STATS_DESC_COUNTER(VCPU, irq_window_exits),
263 STATS_DESC_COUNTER(VCPU, nmi_window_exits),
264 STATS_DESC_COUNTER(VCPU, l1d_flush),
265 STATS_DESC_COUNTER(VCPU, halt_exits),
266 STATS_DESC_COUNTER(VCPU, request_irq_exits),
267 STATS_DESC_COUNTER(VCPU, irq_exits),
268 STATS_DESC_COUNTER(VCPU, host_state_reload),
269 STATS_DESC_COUNTER(VCPU, fpu_reload),
270 STATS_DESC_COUNTER(VCPU, insn_emulation),
271 STATS_DESC_COUNTER(VCPU, insn_emulation_fail),
272 STATS_DESC_COUNTER(VCPU, hypercalls),
273 STATS_DESC_COUNTER(VCPU, irq_injections),
274 STATS_DESC_COUNTER(VCPU, nmi_injections),
275 STATS_DESC_COUNTER(VCPU, req_event),
276 STATS_DESC_COUNTER(VCPU, nested_run),
277 STATS_DESC_COUNTER(VCPU, directed_yield_attempted),
278 STATS_DESC_COUNTER(VCPU, directed_yield_successful),
279 STATS_DESC_ICOUNTER(VCPU, guest_mode)
280};
281static_assert(ARRAY_SIZE(kvm_vcpu_stats_desc) ==
282 sizeof(struct kvm_vcpu_stat) / sizeof(u64));
283
284const struct kvm_stats_header kvm_vcpu_stats_header = {
285 .name_size = KVM_STATS_NAME_SIZE,
286 .num_desc = ARRAY_SIZE(kvm_vcpu_stats_desc),
287 .id_offset = sizeof(struct kvm_stats_header),
288 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
289 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
290 sizeof(kvm_vcpu_stats_desc),
291};
292
Dexuan Cui2acf9232010-06-10 11:27:12 +0800293u64 __read_mostly host_xcr0;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800294u64 __read_mostly supported_xcr0;
295EXPORT_SYMBOL_GPL(supported_xcr0);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800296
Sean Christopherson80fbd282020-06-08 11:02:18 -0700297static struct kmem_cache *x86_fpu_cache;
Marc Orrb666a4b2018-11-06 14:53:56 -0800298
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800299static struct kmem_cache *x86_emulator_cache;
300
Peter Xu6abe9c12020-06-22 18:04:41 -0400301/*
302 * When called, it means the previous get/set msr reached an invalid msr.
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200303 * Return true if we want to ignore/silent this failed msr access.
Peter Xu6abe9c12020-06-22 18:04:41 -0400304 */
Haiwei Lid6328262021-03-13 13:10:32 +0800305static bool kvm_msr_ignored_check(u32 msr, u64 data, bool write)
Peter Xu6abe9c12020-06-22 18:04:41 -0400306{
307 const char *op = write ? "wrmsr" : "rdmsr";
308
309 if (ignore_msrs) {
310 if (report_ignored_msrs)
Takashi Iwaid383b312020-10-30 16:14:14 +0100311 kvm_pr_unimpl("ignored %s: 0x%x data 0x%llx\n",
312 op, msr, data);
Peter Xu6abe9c12020-06-22 18:04:41 -0400313 /* Mask the error */
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200314 return true;
Peter Xu6abe9c12020-06-22 18:04:41 -0400315 } else {
Takashi Iwaid383b312020-10-30 16:14:14 +0100316 kvm_debug_ratelimited("unhandled %s: 0x%x data 0x%llx\n",
317 op, msr, data);
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200318 return false;
Peter Xu6abe9c12020-06-22 18:04:41 -0400319 }
320}
321
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800322static struct kmem_cache *kvm_alloc_emulator_cache(void)
323{
Sean Christopherson06add252020-02-18 15:29:50 -0800324 unsigned int useroffset = offsetof(struct x86_emulate_ctxt, src);
325 unsigned int size = sizeof(struct x86_emulate_ctxt);
326
327 return kmem_cache_create_usercopy("x86_emulator", size,
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800328 __alignof__(struct x86_emulate_ctxt),
Sean Christopherson06add252020-02-18 15:29:50 -0800329 SLAB_ACCOUNT, useroffset,
330 size - useroffset, NULL);
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800331}
332
Jan Kiszkab6785de2012-09-20 07:43:17 +0200333static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300334
Gleb Natapovaf585b92010-10-14 11:22:46 +0200335static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
336{
337 int i;
Peter Xudd03bca2020-04-16 11:58:59 -0400338 for (i = 0; i < ASYNC_PF_PER_VCPU; i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +0200339 vcpu->arch.apf.gfns[i] = ~0;
340}
341
Avi Kivity18863bd2009-09-07 11:12:18 +0300342static void kvm_on_user_return(struct user_return_notifier *urn)
343{
344 unsigned slot;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700345 struct kvm_user_return_msrs *msrs
346 = container_of(urn, struct kvm_user_return_msrs, urn);
347 struct kvm_user_return_msr_values *values;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700348 unsigned long flags;
Avi Kivity18863bd2009-09-07 11:12:18 +0300349
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700350 /*
351 * Disabling irqs at this point since the following code could be
352 * interrupted and executed through kvm_arch_hardware_disable()
353 */
354 local_irq_save(flags);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700355 if (msrs->registered) {
356 msrs->registered = false;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700357 user_return_notifier_unregister(urn);
358 }
359 local_irq_restore(flags);
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700360 for (slot = 0; slot < kvm_nr_uret_msrs; ++slot) {
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700361 values = &msrs->values[slot];
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800362 if (values->host != values->curr) {
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700363 wrmsrl(kvm_uret_msrs_list[slot], values->host);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800364 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300365 }
366 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300367}
368
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700369static int kvm_probe_user_return_msr(u32 msr)
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700370{
371 u64 val;
372 int ret;
373
374 preempt_disable();
375 ret = rdmsrl_safe(msr, &val);
376 if (ret)
377 goto out;
378 ret = wrmsrl_safe(msr, val);
379out:
380 preempt_enable();
381 return ret;
382}
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700383
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700384int kvm_add_user_return_msr(u32 msr)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800385{
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700386 BUG_ON(kvm_nr_uret_msrs >= KVM_MAX_NR_USER_RETURN_MSRS);
387
388 if (kvm_probe_user_return_msr(msr))
389 return -1;
390
391 kvm_uret_msrs_list[kvm_nr_uret_msrs] = msr;
392 return kvm_nr_uret_msrs++;
Avi Kivity18863bd2009-09-07 11:12:18 +0300393}
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700394EXPORT_SYMBOL_GPL(kvm_add_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300395
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700396int kvm_find_user_return_msr(u32 msr)
397{
398 int i;
399
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700400 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
401 if (kvm_uret_msrs_list[i] == msr)
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700402 return i;
403 }
404 return -1;
405}
406EXPORT_SYMBOL_GPL(kvm_find_user_return_msr);
407
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700408static void kvm_user_return_msr_cpu_online(void)
Avi Kivity18863bd2009-09-07 11:12:18 +0300409{
Sean Christopherson05c19c22019-11-22 12:04:50 -0800410 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700411 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Sean Christopherson05c19c22019-11-22 12:04:50 -0800412 u64 value;
413 int i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300414
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700415 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
416 rdmsrl_safe(kvm_uret_msrs_list[i], &value);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700417 msrs->values[i].host = value;
418 msrs->values[i].curr = value;
Sean Christopherson05c19c22019-11-22 12:04:50 -0800419 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300420}
421
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700422int kvm_set_user_return_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300423{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200424 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700425 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700426 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300427
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700428 value = (value & mask) | (msrs->values[slot].host & ~mask);
429 if (value == msrs->values[slot].curr)
Andy Honig8b3c3102014-08-27 11:16:44 -0700430 return 0;
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700431 err = wrmsrl_safe(kvm_uret_msrs_list[slot], value);
Andy Honig8b3c3102014-08-27 11:16:44 -0700432 if (err)
433 return 1;
434
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700435 msrs->values[slot].curr = value;
436 if (!msrs->registered) {
437 msrs->urn.on_user_return = kvm_on_user_return;
438 user_return_notifier_register(&msrs->urn);
439 msrs->registered = true;
Avi Kivity18863bd2009-09-07 11:12:18 +0300440 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700441 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300442}
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700443EXPORT_SYMBOL_GPL(kvm_set_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300444
Radim Krčmář13a34e02014-08-28 15:13:03 +0200445static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200446{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200447 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700448 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200449
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700450 if (msrs->registered)
451 kvm_on_user_return(&msrs->urn);
Avi Kivity3548bab2009-11-28 14:18:47 +0200452}
453
Carsten Otte6866b832007-10-29 16:09:10 +0100454u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
455{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300456 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100457}
458EXPORT_SYMBOL_GPL(kvm_get_apic_base);
459
Jim Mattson58871642018-05-09 16:56:04 -0400460enum lapic_mode kvm_get_apic_mode(struct kvm_vcpu *vcpu)
461{
462 return kvm_apic_mode(kvm_get_apic_base(vcpu));
463}
464EXPORT_SYMBOL_GPL(kvm_get_apic_mode);
465
Jan Kiszka58cb6282014-01-24 16:48:44 +0100466int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100467{
Jim Mattson58871642018-05-09 16:56:04 -0400468 enum lapic_mode old_mode = kvm_get_apic_mode(vcpu);
469 enum lapic_mode new_mode = kvm_apic_mode(msr_info->data);
Sean Christophersona8ac8642021-02-03 16:01:15 -0800470 u64 reserved_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu) | 0x2ff |
Radim Krčmářd6321d42017-08-05 00:12:49 +0200471 (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) ? 0 : X2APIC_ENABLE);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100472
Jim Mattson58871642018-05-09 16:56:04 -0400473 if ((msr_info->data & reserved_bits) != 0 || new_mode == LAPIC_MODE_INVALID)
Jim Mattsond3802282017-08-10 10:14:13 -0700474 return 1;
Jim Mattson58871642018-05-09 16:56:04 -0400475 if (!msr_info->host_initiated) {
476 if (old_mode == LAPIC_MODE_X2APIC && new_mode == LAPIC_MODE_XAPIC)
477 return 1;
478 if (old_mode == LAPIC_MODE_DISABLED && new_mode == LAPIC_MODE_X2APIC)
479 return 1;
480 }
Jan Kiszka58cb6282014-01-24 16:48:44 +0100481
482 kvm_lapic_set_base(vcpu, msr_info->data);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800483 kvm_recalculate_apic_map(vcpu->kvm);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100484 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100485}
486EXPORT_SYMBOL_GPL(kvm_set_apic_base);
487
Thomas Gleixner3ebccdf2020-07-08 21:51:57 +0200488asmlinkage __visible noinstr void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000489{
490 /* Fault while not rebooting. We want the trace. */
kbuild test robotb4fdcf62019-09-29 18:43:28 +0200491 BUG_ON(!kvm_rebooting);
Geoff Levande3ba45b2013-04-05 19:20:30 +0000492}
493EXPORT_SYMBOL_GPL(kvm_spurious_fault);
494
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200495#define EXCPT_BENIGN 0
496#define EXCPT_CONTRIBUTORY 1
497#define EXCPT_PF 2
498
499static int exception_class(int vector)
500{
501 switch (vector) {
502 case PF_VECTOR:
503 return EXCPT_PF;
504 case DE_VECTOR:
505 case TS_VECTOR:
506 case NP_VECTOR:
507 case SS_VECTOR:
508 case GP_VECTOR:
509 return EXCPT_CONTRIBUTORY;
510 default:
511 break;
512 }
513 return EXCPT_BENIGN;
514}
515
Nadav Amitd6e8c852014-07-24 14:51:24 +0300516#define EXCPT_FAULT 0
517#define EXCPT_TRAP 1
518#define EXCPT_ABORT 2
519#define EXCPT_INTERRUPT 3
520
521static int exception_type(int vector)
522{
523 unsigned int mask;
524
525 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
526 return EXCPT_INTERRUPT;
527
528 mask = 1 << vector;
529
530 /* #DB is trap, as instruction watchpoints are handled elsewhere */
531 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
532 return EXCPT_TRAP;
533
534 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
535 return EXCPT_ABORT;
536
537 /* Reserved exceptions will result in fault */
538 return EXCPT_FAULT;
539}
540
Jim Mattsonda998b42018-10-16 14:29:22 -0700541void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu)
542{
543 unsigned nr = vcpu->arch.exception.nr;
544 bool has_payload = vcpu->arch.exception.has_payload;
545 unsigned long payload = vcpu->arch.exception.payload;
546
547 if (!has_payload)
548 return;
549
550 switch (nr) {
Jim Mattsonf10c7292018-10-16 14:29:23 -0700551 case DB_VECTOR:
552 /*
553 * "Certain debug exceptions may clear bit 0-3. The
554 * remaining contents of the DR6 register are never
555 * cleared by the processor".
556 */
557 vcpu->arch.dr6 &= ~DR_TRAP_BITS;
558 /*
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800559 * In order to reflect the #DB exception payload in guest
560 * dr6, three components need to be considered: active low
561 * bit, FIXED_1 bits and active high bits (e.g. DR6_BD,
562 * DR6_BS and DR6_BT)
563 * DR6_ACTIVE_LOW contains the FIXED_1 and active low bits.
564 * In the target guest dr6:
565 * FIXED_1 bits should always be set.
566 * Active low bits should be cleared if 1-setting in payload.
567 * Active high bits should be set if 1-setting in payload.
568 *
569 * Note, the payload is compatible with the pending debug
570 * exceptions/exit qualification under VMX, that active_low bits
571 * are active high in payload.
572 * So they need to be flipped for DR6.
Jim Mattsonf10c7292018-10-16 14:29:23 -0700573 */
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800574 vcpu->arch.dr6 |= DR6_ACTIVE_LOW;
Jim Mattsonf10c7292018-10-16 14:29:23 -0700575 vcpu->arch.dr6 |= payload;
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800576 vcpu->arch.dr6 ^= payload & DR6_ACTIVE_LOW;
Oliver Upton307f1cf2020-02-07 02:36:04 -0800577
578 /*
579 * The #DB payload is defined as compatible with the 'pending
580 * debug exceptions' field under VMX, not DR6. While bit 12 is
581 * defined in the 'pending debug exceptions' field (enabled
582 * breakpoint), it is reserved and must be zero in DR6.
583 */
584 vcpu->arch.dr6 &= ~BIT(12);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700585 break;
Jim Mattsonda998b42018-10-16 14:29:22 -0700586 case PF_VECTOR:
587 vcpu->arch.cr2 = payload;
588 break;
589 }
590
591 vcpu->arch.exception.has_payload = false;
592 vcpu->arch.exception.payload = 0;
593}
594EXPORT_SYMBOL_GPL(kvm_deliver_exception_payload);
595
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200596static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200597 unsigned nr, bool has_error, u32 error_code,
Jim Mattson91e86d22018-10-16 14:29:21 -0700598 bool has_payload, unsigned long payload, bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200599{
600 u32 prev_nr;
601 int class1, class2;
602
Avi Kivity3842d132010-07-27 12:30:24 +0300603 kvm_make_request(KVM_REQ_EVENT, vcpu);
604
Wanpeng Li664f8e22017-08-24 03:35:09 -0700605 if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) {
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200606 queue:
Wanpeng Li664f8e22017-08-24 03:35:09 -0700607 if (reinject) {
608 /*
609 * On vmentry, vcpu->arch.exception.pending is only
610 * true if an event injection was blocked by
611 * nested_run_pending. In that case, however,
612 * vcpu_enter_guest requests an immediate exit,
613 * and the guest shouldn't proceed far enough to
614 * need reinjection.
615 */
616 WARN_ON_ONCE(vcpu->arch.exception.pending);
617 vcpu->arch.exception.injected = true;
Jim Mattson91e86d22018-10-16 14:29:21 -0700618 if (WARN_ON_ONCE(has_payload)) {
619 /*
620 * A reinjected event has already
621 * delivered its payload.
622 */
623 has_payload = false;
624 payload = 0;
625 }
Wanpeng Li664f8e22017-08-24 03:35:09 -0700626 } else {
627 vcpu->arch.exception.pending = true;
628 vcpu->arch.exception.injected = false;
629 }
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200630 vcpu->arch.exception.has_error_code = has_error;
631 vcpu->arch.exception.nr = nr;
632 vcpu->arch.exception.error_code = error_code;
Jim Mattson91e86d22018-10-16 14:29:21 -0700633 vcpu->arch.exception.has_payload = has_payload;
634 vcpu->arch.exception.payload = payload;
Oliver Uptona06230b2020-02-07 02:36:06 -0800635 if (!is_guest_mode(vcpu))
Jim Mattsonda998b42018-10-16 14:29:22 -0700636 kvm_deliver_exception_payload(vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200637 return;
638 }
639
640 /* to check exception */
641 prev_nr = vcpu->arch.exception.nr;
642 if (prev_nr == DF_VECTOR) {
643 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300644 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200645 return;
646 }
647 class1 = exception_class(prev_nr);
648 class2 = exception_class(nr);
649 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
650 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
Wanpeng Li664f8e22017-08-24 03:35:09 -0700651 /*
652 * Generate double fault per SDM Table 5-5. Set
653 * exception.pending = true so that the double fault
654 * can trigger a nested vmexit.
655 */
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200656 vcpu->arch.exception.pending = true;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700657 vcpu->arch.exception.injected = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200658 vcpu->arch.exception.has_error_code = true;
659 vcpu->arch.exception.nr = DF_VECTOR;
660 vcpu->arch.exception.error_code = 0;
Jim Mattsonc8514362018-10-16 14:29:19 -0700661 vcpu->arch.exception.has_payload = false;
662 vcpu->arch.exception.payload = 0;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200663 } else
664 /* replace previous exception with a new one in a hope
665 that instruction re-execution will regenerate lost
666 exception */
667 goto queue;
668}
669
Avi Kivity298101d2007-11-25 13:41:11 +0200670void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
671{
Jim Mattson91e86d22018-10-16 14:29:21 -0700672 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200673}
674EXPORT_SYMBOL_GPL(kvm_queue_exception);
675
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200676void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
677{
Jim Mattson91e86d22018-10-16 14:29:21 -0700678 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200679}
680EXPORT_SYMBOL_GPL(kvm_requeue_exception);
681
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400682void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr,
683 unsigned long payload)
Jim Mattsonf10c7292018-10-16 14:29:23 -0700684{
685 kvm_multiple_exception(vcpu, nr, false, 0, true, payload, false);
686}
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400687EXPORT_SYMBOL_GPL(kvm_queue_exception_p);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700688
Jim Mattsonda998b42018-10-16 14:29:22 -0700689static void kvm_queue_exception_e_p(struct kvm_vcpu *vcpu, unsigned nr,
690 u32 error_code, unsigned long payload)
691{
692 kvm_multiple_exception(vcpu, nr, true, error_code,
693 true, payload, false);
694}
695
Kyle Huey6affcbe2016-11-29 12:40:40 -0800696int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200697{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100698 if (err)
699 kvm_inject_gp(vcpu, 0);
700 else
Kyle Huey6affcbe2016-11-29 12:40:40 -0800701 return kvm_skip_emulated_instruction(vcpu);
702
703 return 1;
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100704}
705EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200706
Avi Kivity6389ee92010-11-29 16:12:30 +0200707void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200708{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200709 ++vcpu->stat.pf_guest;
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700710 vcpu->arch.exception.nested_apf =
711 is_guest_mode(vcpu) && fault->async_page_fault;
Jim Mattsonda998b42018-10-16 14:29:22 -0700712 if (vcpu->arch.exception.nested_apf) {
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700713 vcpu->arch.apf.nested_apf_token = fault->address;
Jim Mattsonda998b42018-10-16 14:29:22 -0700714 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
715 } else {
716 kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code,
717 fault->address);
718 }
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200719}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300720EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200721
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700722bool kvm_inject_emulated_page_fault(struct kvm_vcpu *vcpu,
723 struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200724{
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400725 struct kvm_mmu *fault_mmu;
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700726 WARN_ON_ONCE(fault->vector != PF_VECTOR);
727
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400728 fault_mmu = fault->nested_page_fault ? vcpu->arch.mmu :
729 vcpu->arch.walk_mmu;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200730
Junaid Shahidee1fa202020-03-20 14:28:03 -0700731 /*
732 * Invalidate the TLB entry for the faulting address, if it exists,
733 * else the access will fault indefinitely (and to emulate hardware).
734 */
735 if ((fault->error_code & PFERR_PRESENT_MASK) &&
736 !(fault->error_code & PFERR_RSVD_MASK))
737 kvm_mmu_invalidate_gva(vcpu, fault_mmu, fault->address,
738 fault_mmu->root_hpa);
739
740 fault_mmu->inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200741 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200742}
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700743EXPORT_SYMBOL_GPL(kvm_inject_emulated_page_fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200744
Sheng Yang3419ffc2008-05-15 09:52:48 +0800745void kvm_inject_nmi(struct kvm_vcpu *vcpu)
746{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300747 atomic_inc(&vcpu->arch.nmi_queued);
748 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800749}
750EXPORT_SYMBOL_GPL(kvm_inject_nmi);
751
Avi Kivity298101d2007-11-25 13:41:11 +0200752void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
753{
Jim Mattson91e86d22018-10-16 14:29:21 -0700754 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200755}
756EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
757
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200758void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
759{
Jim Mattson91e86d22018-10-16 14:29:21 -0700760 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200761}
762EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
763
Carsten Ottea03490e2007-10-29 16:09:35 +0100764/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300765 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
766 * a #GP and return false.
767 */
768bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200769{
Jason Baronb36464772021-01-14 22:27:56 -0500770 if (static_call(kvm_x86_get_cpl)(vcpu) <= required_cpl)
Avi Kivity0a79b002009-09-01 12:03:25 +0300771 return true;
772 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
773 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100774}
Avi Kivity0a79b002009-09-01 12:03:25 +0300775EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100776
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300777bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
778{
779 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
780 return true;
781
782 kvm_queue_exception(vcpu, UD_VECTOR);
783 return false;
784}
785EXPORT_SYMBOL_GPL(kvm_require_dr);
786
Carsten Ottea03490e2007-10-29 16:09:35 +0100787/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200788 * This function will be used to read from the physical memory of the currently
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200789 * running guest. The difference to kvm_vcpu_read_guest_page is that this function
Joerg Roedelec92fe42010-09-10 17:30:51 +0200790 * can read from guest physical or from the guest's guest physical memory.
791 */
792int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
793 gfn_t ngfn, void *data, int offset, int len,
794 u32 access)
795{
Paolo Bonzini54987b72014-09-02 13:23:06 +0200796 struct x86_exception exception;
Joerg Roedelec92fe42010-09-10 17:30:51 +0200797 gfn_t real_gfn;
798 gpa_t ngpa;
799
800 ngpa = gfn_to_gpa(ngfn);
Paolo Bonzini54987b72014-09-02 13:23:06 +0200801 real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200802 if (real_gfn == UNMAPPED_GVA)
803 return -EFAULT;
804
805 real_gfn = gpa_to_gfn(real_gfn);
806
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200807 return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200808}
809EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
810
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700811static inline u64 pdptr_rsvd_bits(struct kvm_vcpu *vcpu)
812{
Sean Christopherson5b7f5752021-02-03 16:01:13 -0800813 return vcpu->arch.reserved_gpa_bits | rsvd_bits(5, 8) | rsvd_bits(1, 2);
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700814}
815
Joerg Roedelec92fe42010-09-10 17:30:51 +0200816/*
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700817 * Load the pae pdptrs. Return 1 if they are all valid, 0 otherwise.
Carsten Ottea03490e2007-10-29 16:09:35 +0100818 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200819int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100820{
821 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
822 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
823 int i;
824 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200825 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100826
Joerg Roedelff03a072010-09-10 17:30:57 +0200827 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
828 offset * sizeof(u64), sizeof(pdpte),
829 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100830 if (ret < 0) {
831 ret = 0;
832 goto out;
833 }
834 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400835 if ((pdpte[i] & PT_PRESENT_MASK) &&
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700836 (pdpte[i] & pdptr_rsvd_bits(vcpu))) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100837 ret = 0;
838 goto out;
839 }
840 }
841 ret = 1;
842
Joerg Roedelff03a072010-09-10 17:30:57 +0200843 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700844 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
Maxim Levitsky158a48e2021-06-07 12:02:03 +0300845 vcpu->arch.pdptrs_from_userspace = false;
846
Carsten Ottea03490e2007-10-29 16:09:35 +0100847out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100848
849 return ret;
850}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100851EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100852
Tom Lendackyf27ad382020-12-10 11:09:56 -0600853void kvm_post_set_cr0(struct kvm_vcpu *vcpu, unsigned long old_cr0, unsigned long cr0)
854{
Tom Lendackyf27ad382020-12-10 11:09:56 -0600855 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
856 kvm_clear_async_pf_completion_queue(vcpu);
857 kvm_async_pf_hash_reset(vcpu);
858 }
859
Sean Christopherson20f632b2021-06-22 10:57:02 -0700860 if ((cr0 ^ old_cr0) & KVM_MMU_CR0_ROLE_BITS)
Tom Lendackyf27ad382020-12-10 11:09:56 -0600861 kvm_mmu_reset_context(vcpu);
862
863 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
864 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
865 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
866 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
867}
868EXPORT_SYMBOL_GPL(kvm_post_set_cr0);
869
Avi Kivity49a9b072010-06-10 17:02:14 +0300870int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100871{
Sheng Yangaad82702010-05-12 16:40:42 +0800872 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Jim Mattsond42e3fa2020-07-07 15:36:30 -0700873 unsigned long pdptr_bits = X86_CR0_CD | X86_CR0_NW | X86_CR0_PG;
Sheng Yangaad82702010-05-12 16:40:42 +0800874
Avi Kivityf9a48e62010-01-06 19:10:22 +0200875 cr0 |= X86_CR0_ET;
876
Gleb Natapovab344822010-01-21 15:28:46 +0200877#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300878 if (cr0 & 0xffffffff00000000UL)
879 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200880#endif
881
882 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100883
Gleb Natapov0f122442010-04-28 19:15:31 +0300884 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
885 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100886
Gleb Natapov0f122442010-04-28 19:15:31 +0300887 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
888 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100889
Carsten Ottea03490e2007-10-29 16:09:35 +0100890#ifdef CONFIG_X86_64
Sean Christopherson05487212020-07-13 18:57:32 -0700891 if ((vcpu->arch.efer & EFER_LME) && !is_paging(vcpu) &&
892 (cr0 & X86_CR0_PG)) {
893 int cs_db, cs_l;
Carsten Ottea03490e2007-10-29 16:09:35 +0100894
Sean Christopherson05487212020-07-13 18:57:32 -0700895 if (!is_pae(vcpu))
896 return 1;
Jason Baronb36464772021-01-14 22:27:56 -0500897 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Sean Christopherson05487212020-07-13 18:57:32 -0700898 if (cs_l)
Gleb Natapov0f122442010-04-28 19:15:31 +0300899 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100900 }
Sean Christopherson05487212020-07-13 18:57:32 -0700901#endif
902 if (!(vcpu->arch.efer & EFER_LME) && (cr0 & X86_CR0_PG) &&
903 is_pae(vcpu) && ((cr0 ^ old_cr0) & pdptr_bits) &&
904 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu)))
905 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100906
Mao, Junjiead756a12012-07-02 01:18:48 +0000907 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
908 return 1;
909
Jason Baronb36464772021-01-14 22:27:56 -0500910 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100911
Tom Lendackyf27ad382020-12-10 11:09:56 -0600912 kvm_post_set_cr0(vcpu, old_cr0, cr0);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800913
Gleb Natapov0f122442010-04-28 19:15:31 +0300914 return 0;
915}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200916EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100917
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200918void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100919{
Avi Kivity49a9b072010-06-10 17:02:14 +0300920 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100921}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200922EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100923
Aaron Lewis139a12c2019-10-21 16:30:25 -0700924void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu)
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300925{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600926 if (vcpu->arch.guest_state_protected)
927 return;
928
Aaron Lewis139a12c2019-10-21 16:30:25 -0700929 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300930
Aaron Lewis139a12c2019-10-21 16:30:25 -0700931 if (vcpu->arch.xcr0 != host_xcr0)
932 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
933
934 if (vcpu->arch.xsaves_enabled &&
935 vcpu->arch.ia32_xss != host_xss)
936 wrmsrl(MSR_IA32_XSS, vcpu->arch.ia32_xss);
937 }
Babu Moger37486132020-05-12 18:59:06 -0500938
939 if (static_cpu_has(X86_FEATURE_PKU) &&
940 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
941 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU)) &&
942 vcpu->arch.pkru != vcpu->arch.host_pkru)
Thomas Gleixner72a6c082021-06-23 14:02:23 +0200943 write_pkru(vcpu->arch.pkru);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300944}
Aaron Lewis139a12c2019-10-21 16:30:25 -0700945EXPORT_SYMBOL_GPL(kvm_load_guest_xsave_state);
946
947void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu)
948{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600949 if (vcpu->arch.guest_state_protected)
950 return;
951
Babu Moger37486132020-05-12 18:59:06 -0500952 if (static_cpu_has(X86_FEATURE_PKU) &&
953 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
954 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU))) {
955 vcpu->arch.pkru = rdpkru();
956 if (vcpu->arch.pkru != vcpu->arch.host_pkru)
Thomas Gleixner72a6c082021-06-23 14:02:23 +0200957 write_pkru(vcpu->arch.host_pkru);
Babu Moger37486132020-05-12 18:59:06 -0500958 }
959
Aaron Lewis139a12c2019-10-21 16:30:25 -0700960 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
961
962 if (vcpu->arch.xcr0 != host_xcr0)
963 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
964
965 if (vcpu->arch.xsaves_enabled &&
966 vcpu->arch.ia32_xss != host_xss)
967 wrmsrl(MSR_IA32_XSS, host_xss);
968 }
969
970}
971EXPORT_SYMBOL_GPL(kvm_load_host_xsave_state);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300972
Fengguang Wu69b00492015-01-19 22:33:39 +0800973static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800974{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000975 u64 xcr0 = xcr;
976 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200977 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800978
979 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
980 if (index != XCR_XFEATURE_ENABLED_MASK)
981 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700982 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800983 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700984 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800985 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200986
987 /*
988 * Do not allow the guest to set bits that we do not support
989 * saving. However, xcr0 bit 0 is always set, even if the
990 * emulated CPU does not support XSAVE (see fx_init).
991 */
Dave Hansend91cab72015-09-02 16:31:26 -0700992 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200993 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800994 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200995
Dave Hansend91cab72015-09-02 16:31:26 -0700996 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
997 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +0000998 return 1;
999
Dave Hansend91cab72015-09-02 16:31:26 -07001000 if (xcr0 & XFEATURE_MASK_AVX512) {
1001 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +08001002 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -07001003 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +08001004 return 1;
1005 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08001006 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +00001007
Dave Hansend91cab72015-09-02 16:31:26 -07001008 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08001009 kvm_update_cpuid_runtime(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001010 return 0;
1011}
1012
Sean Christopherson92f98952021-02-04 16:57:46 -08001013int kvm_emulate_xsetbv(struct kvm_vcpu *vcpu)
Dexuan Cui2acf9232010-06-10 11:27:12 +08001014{
Sean Christopherson92f98952021-02-04 16:57:46 -08001015 if (static_call(kvm_x86_get_cpl)(vcpu) != 0 ||
1016 __kvm_set_xcr(vcpu, kvm_rcx_read(vcpu), kvm_read_edx_eax(vcpu))) {
1017 kvm_inject_gp(vcpu, 0);
1018 return 1;
1019 }
Paolo Bonzinibbefd4f2020-12-14 07:49:54 -05001020
Sean Christopherson92f98952021-02-04 16:57:46 -08001021 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001022}
Sean Christopherson92f98952021-02-04 16:57:46 -08001023EXPORT_SYMBOL_GPL(kvm_emulate_xsetbv);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001024
Sean Christophersonee69c922020-10-06 18:44:16 -07001025bool kvm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Wanpeng Li3ca94192019-09-18 17:50:10 +08001026{
Sean Christophersonb11306b2019-12-10 14:44:13 -08001027 if (cr4 & cr4_reserved_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001028 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001029
Krish Sadhukhanb899c132020-07-08 00:39:55 +00001030 if (cr4 & vcpu->arch.cr4_guest_rsvd_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001031 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001032
Jason Baronb36464772021-01-14 22:27:56 -05001033 return static_call(kvm_x86_is_valid_cr4)(vcpu, cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001034}
Sean Christophersonee69c922020-10-06 18:44:16 -07001035EXPORT_SYMBOL_GPL(kvm_is_valid_cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001036
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001037void kvm_post_set_cr4(struct kvm_vcpu *vcpu, unsigned long old_cr4, unsigned long cr4)
1038{
Sean Christopherson20f632b2021-06-22 10:57:02 -07001039 if (((cr4 ^ old_cr4) & KVM_MMU_CR4_ROLE_BITS) ||
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001040 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
1041 kvm_mmu_reset_context(vcpu);
1042}
1043EXPORT_SYMBOL_GPL(kvm_post_set_cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001044
Avi Kivitya83b29c2010-06-10 17:02:15 +03001045int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +01001046{
Avi Kivityfc78f512009-12-07 12:16:48 +02001047 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +08001048 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
Jim Mattsoncb957ad2020-08-17 11:16:54 -07001049 X86_CR4_SMEP;
Xiao Guangrong0be02262015-05-11 22:55:21 +08001050
Sean Christophersonee69c922020-10-06 18:44:16 -07001051 if (!kvm_is_valid_cr4(vcpu, cr4))
Paolo Bonziniae3e61e2016-07-12 10:36:41 +02001052 return 1;
1053
Carsten Ottea03490e2007-10-29 16:09:35 +01001054 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +03001055 if (!(cr4 & X86_CR4_PAE))
1056 return 1;
Sean Christophersond74fcfc2020-07-02 19:17:14 -07001057 if ((cr4 ^ old_cr4) & X86_CR4_LA57)
1058 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +03001059 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
1060 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +02001061 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
1062 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +03001063 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001064
Mao, Junjiead756a12012-07-02 01:18:48 +00001065 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
Radim Krčmářd6321d42017-08-05 00:12:49 +02001066 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
Mao, Junjiead756a12012-07-02 01:18:48 +00001067 return 1;
1068
1069 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
1070 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
1071 return 1;
1072 }
1073
Jason Baronb36464772021-01-14 22:27:56 -05001074 static_call(kvm_x86_set_cr4)(vcpu, cr4);
Gleb Natapov0f122442010-04-28 19:15:31 +03001075
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001076 kvm_post_set_cr4(vcpu, old_cr4, cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001077
Gleb Natapov0f122442010-04-28 19:15:31 +03001078 return 0;
1079}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001080EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +01001081
Sean Christopherson21823fb2021-06-09 16:42:24 -07001082static void kvm_invalidate_pcid(struct kvm_vcpu *vcpu, unsigned long pcid)
1083{
1084 struct kvm_mmu *mmu = vcpu->arch.mmu;
1085 unsigned long roots_to_free = 0;
1086 int i;
1087
1088 /*
1089 * If neither the current CR3 nor any of the prev_roots use the given
1090 * PCID, then nothing needs to be done here because a resync will
1091 * happen anyway before switching to any other CR3.
1092 */
1093 if (kvm_get_active_pcid(vcpu) == pcid) {
Sean Christophersone62f1aa2021-06-09 16:42:32 -07001094 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001095 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
1096 }
1097
1098 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
1099 if (kvm_get_pcid(vcpu, mmu->prev_roots[i].pgd) == pcid)
1100 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
1101
1102 kvm_mmu_free_roots(vcpu, mmu, roots_to_free);
1103}
1104
Avi Kivity23902182010-06-10 17:02:16 +03001105int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +01001106{
Junaid Shahidade61e22018-06-27 14:59:15 -07001107 bool skip_tlb_flush = false;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001108 unsigned long pcid = 0;
Paolo Bonziniac146232014-11-10 13:53:25 +01001109#ifdef CONFIG_X86_64
Junaid Shahidc19986f2018-05-04 11:37:13 -07001110 bool pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
1111
Junaid Shahidade61e22018-06-27 14:59:15 -07001112 if (pcid_enabled) {
Junaid Shahid208320b2018-06-27 14:59:21 -07001113 skip_tlb_flush = cr3 & X86_CR3_PCID_NOFLUSH;
1114 cr3 &= ~X86_CR3_PCID_NOFLUSH;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001115 pcid = cr3 & X86_CR3_PCID_MASK;
Junaid Shahidade61e22018-06-27 14:59:15 -07001116 }
Paolo Bonziniac146232014-11-10 13:53:25 +01001117#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +02001118
Sean Christophersonc7313152021-06-07 12:01:58 +03001119 /* PDPTRs are always reloaded for PAE paging. */
Sean Christopherson21823fb2021-06-09 16:42:24 -07001120 if (cr3 == kvm_read_cr3(vcpu) && !is_pae_paging(vcpu))
1121 goto handle_tlb_flush;
Avi Kivityd835dfe2007-11-21 02:57:59 +02001122
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001123 /*
1124 * Do not condition the GPA check on long mode, this helper is used to
1125 * stuff CR3, e.g. for RSM emulation, and there is no guarantee that
1126 * the current vCPU mode is accurate.
1127 */
1128 if (kvm_vcpu_is_illegal_gpa(vcpu, cr3))
Yu Zhangd1cd3ce2017-08-24 20:27:53 +08001129 return 1;
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001130
1131 if (is_pae_paging(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +03001132 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001133
Sean Christopherson21823fb2021-06-09 16:42:24 -07001134 if (cr3 != kvm_read_cr3(vcpu))
Sean Christophersonb5129102021-06-09 16:42:27 -07001135 kvm_mmu_new_pgd(vcpu, cr3);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001136
Gleb Natapov0f122442010-04-28 19:15:31 +03001137 vcpu->arch.cr3 = cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001138 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Junaid Shahid7c390d32018-06-27 14:59:06 -07001139
Sean Christopherson21823fb2021-06-09 16:42:24 -07001140handle_tlb_flush:
1141 /*
1142 * A load of CR3 that flushes the TLB flushes only the current PCID,
1143 * even if PCID is disabled, in which case PCID=0 is flushed. It's a
1144 * moot point in the end because _disabling_ PCID will flush all PCIDs,
1145 * and it's impossible to use a non-zero PCID when PCID is disabled,
1146 * i.e. only PCID=0 can be relevant.
1147 */
1148 if (!skip_tlb_flush)
1149 kvm_invalidate_pcid(vcpu, pcid);
1150
Gleb Natapov0f122442010-04-28 19:15:31 +03001151 return 0;
1152}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001153EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +01001154
Andre Przywaraeea1cff2010-12-21 11:12:00 +01001155int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +01001156{
Gleb Natapov0f122442010-04-28 19:15:31 +03001157 if (cr8 & CR8_RESERVED_BITS)
1158 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +02001159 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001160 kvm_lapic_set_tpr(vcpu, cr8);
1161 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001162 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +03001163 return 0;
1164}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001165EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001166
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001167unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +01001168{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001169 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001170 return kvm_lapic_get_cr8(vcpu);
1171 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001172 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +01001173}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001174EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001175
Nadav Amitae561ed2015-04-02 03:10:37 +03001176static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
1177{
1178 int i;
1179
1180 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
1181 for (i = 0; i < KVM_NR_DB_REGS; i++)
1182 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
1183 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
1184 }
1185}
1186
Paolo Bonzini7c866632020-05-16 08:42:28 -04001187void kvm_update_dr7(struct kvm_vcpu *vcpu)
Jan Kiszkac8639012012-09-21 05:42:55 +02001188{
1189 unsigned long dr7;
1190
1191 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1192 dr7 = vcpu->arch.guest_debug_dr7;
1193 else
1194 dr7 = vcpu->arch.dr7;
Jason Baronb36464772021-01-14 22:27:56 -05001195 static_call(kvm_x86_set_dr7)(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +01001196 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
1197 if (dr7 & DR7_BP_EN_MASK)
1198 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +02001199}
Paolo Bonzini7c866632020-05-16 08:42:28 -04001200EXPORT_SYMBOL_GPL(kvm_update_dr7);
Jan Kiszkac8639012012-09-21 05:42:55 +02001201
Nadav Amit6f43ed02014-07-15 17:37:46 +03001202static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
1203{
1204 u64 fixed = DR6_FIXED_1;
1205
Radim Krčmářd6321d42017-08-05 00:12:49 +02001206 if (!guest_cpuid_has(vcpu, X86_FEATURE_RTM))
Nadav Amit6f43ed02014-07-15 17:37:46 +03001207 fixed |= DR6_RTM;
Chenyi Qiange8ea85f2021-02-02 17:04:32 +08001208
1209 if (!guest_cpuid_has(vcpu, X86_FEATURE_BUS_LOCK_DETECT))
1210 fixed |= DR6_BUS_LOCK;
Nadav Amit6f43ed02014-07-15 17:37:46 +03001211 return fixed;
1212}
1213
Paolo Bonzini996ff542020-12-14 07:49:54 -05001214int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +03001215{
Marios Pomonisea740052019-12-11 12:47:52 -08001216 size_t size = ARRAY_SIZE(vcpu->arch.db);
1217
Gleb Natapov020df072010-04-13 10:05:23 +03001218 switch (dr) {
1219 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001220 vcpu->arch.db[array_index_nospec(dr, size)] = val;
Gleb Natapov020df072010-04-13 10:05:23 +03001221 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
1222 vcpu->arch.eff_db[dr] = val;
1223 break;
1224 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001225 case 6:
Krish Sadhukhanf5f61452020-05-22 18:19:51 -04001226 if (!kvm_dr6_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001227 return 1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +03001228 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001229 break;
1230 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001231 default: /* 7 */
Krish Sadhukhanb91991b2020-01-15 19:54:32 -05001232 if (!kvm_dr7_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001233 return 1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +03001234 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02001235 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001236 break;
1237 }
1238
1239 return 0;
1240}
1241EXPORT_SYMBOL_GPL(kvm_set_dr);
1242
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05001243void kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +03001244{
Marios Pomonisea740052019-12-11 12:47:52 -08001245 size_t size = ARRAY_SIZE(vcpu->arch.db);
1246
Gleb Natapov020df072010-04-13 10:05:23 +03001247 switch (dr) {
1248 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001249 *val = vcpu->arch.db[array_index_nospec(dr, size)];
Gleb Natapov020df072010-04-13 10:05:23 +03001250 break;
1251 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001252 case 6:
Paolo Bonzini5679b802020-05-04 11:28:25 -04001253 *val = vcpu->arch.dr6;
Gleb Natapov020df072010-04-13 10:05:23 +03001254 break;
1255 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001256 default: /* 7 */
1257 *val = vcpu->arch.dr7;
1258 break;
1259 }
Gleb Natapov338dbc92010-04-28 19:15:32 +03001260}
Gleb Natapov020df072010-04-13 10:05:23 +03001261EXPORT_SYMBOL_GPL(kvm_get_dr);
1262
Sean Christophersonc483c452021-02-04 16:57:48 -08001263int kvm_emulate_rdpmc(struct kvm_vcpu *vcpu)
Avi Kivity022cd0e2011-11-10 14:57:23 +02001264{
Sean Christophersonde3cd112019-04-30 10:36:17 -07001265 u32 ecx = kvm_rcx_read(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001266 u64 data;
Avi Kivity022cd0e2011-11-10 14:57:23 +02001267
Sean Christophersonc483c452021-02-04 16:57:48 -08001268 if (kvm_pmu_rdpmc(vcpu, ecx, &data)) {
1269 kvm_inject_gp(vcpu, 0);
1270 return 1;
1271 }
1272
Sean Christophersonde3cd112019-04-30 10:36:17 -07001273 kvm_rax_write(vcpu, (u32)data);
1274 kvm_rdx_write(vcpu, data >> 32);
Sean Christophersonc483c452021-02-04 16:57:48 -08001275 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001276}
Sean Christophersonc483c452021-02-04 16:57:48 -08001277EXPORT_SYMBOL_GPL(kvm_emulate_rdpmc);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001278
Carsten Otte043405e2007-10-10 17:16:19 +02001279/*
1280 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
1281 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
1282 *
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001283 * The three MSR lists(msrs_to_save, emulated_msrs, msr_based_features)
1284 * extract the supported MSRs from the related const lists.
1285 * msrs_to_save is selected from the msrs_to_save_all to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -04001286 * capabilities of the host cpu. This capabilities test skips MSRs that are
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001287 * kvm-specific. Those are put in emulated_msrs_all; filtering of emulated_msrs
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001288 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +02001289 */
Glauber Costae3267cb2009-10-06 13:24:50 -04001290
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001291static const u32 msrs_to_save_all[] = {
Carsten Otte043405e2007-10-10 17:16:19 +02001292 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -04001293 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +02001294#ifdef CONFIG_X86_64
1295 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
1296#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +08001297 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001298 MSR_IA32_FEAT_CTL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001299 MSR_IA32_SPEC_CTRL,
Chao Pengbf8c55d2018-10-24 16:05:14 +08001300 MSR_IA32_RTIT_CTL, MSR_IA32_RTIT_STATUS, MSR_IA32_RTIT_CR3_MATCH,
1301 MSR_IA32_RTIT_OUTPUT_BASE, MSR_IA32_RTIT_OUTPUT_MASK,
1302 MSR_IA32_RTIT_ADDR0_A, MSR_IA32_RTIT_ADDR0_B,
1303 MSR_IA32_RTIT_ADDR1_A, MSR_IA32_RTIT_ADDR1_B,
1304 MSR_IA32_RTIT_ADDR2_A, MSR_IA32_RTIT_ADDR2_B,
1305 MSR_IA32_RTIT_ADDR3_A, MSR_IA32_RTIT_ADDR3_B,
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001306 MSR_IA32_UMWAIT_CONTROL,
1307
Jim Mattsone2ada662019-08-21 11:20:04 -07001308 MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1,
1309 MSR_ARCH_PERFMON_FIXED_CTR0 + 2, MSR_ARCH_PERFMON_FIXED_CTR0 + 3,
1310 MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS,
1311 MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL,
1312 MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1,
1313 MSR_ARCH_PERFMON_PERFCTR0 + 2, MSR_ARCH_PERFMON_PERFCTR0 + 3,
1314 MSR_ARCH_PERFMON_PERFCTR0 + 4, MSR_ARCH_PERFMON_PERFCTR0 + 5,
1315 MSR_ARCH_PERFMON_PERFCTR0 + 6, MSR_ARCH_PERFMON_PERFCTR0 + 7,
1316 MSR_ARCH_PERFMON_PERFCTR0 + 8, MSR_ARCH_PERFMON_PERFCTR0 + 9,
1317 MSR_ARCH_PERFMON_PERFCTR0 + 10, MSR_ARCH_PERFMON_PERFCTR0 + 11,
1318 MSR_ARCH_PERFMON_PERFCTR0 + 12, MSR_ARCH_PERFMON_PERFCTR0 + 13,
1319 MSR_ARCH_PERFMON_PERFCTR0 + 14, MSR_ARCH_PERFMON_PERFCTR0 + 15,
1320 MSR_ARCH_PERFMON_PERFCTR0 + 16, MSR_ARCH_PERFMON_PERFCTR0 + 17,
Jim Mattsone2ada662019-08-21 11:20:04 -07001321 MSR_ARCH_PERFMON_EVENTSEL0, MSR_ARCH_PERFMON_EVENTSEL1,
1322 MSR_ARCH_PERFMON_EVENTSEL0 + 2, MSR_ARCH_PERFMON_EVENTSEL0 + 3,
1323 MSR_ARCH_PERFMON_EVENTSEL0 + 4, MSR_ARCH_PERFMON_EVENTSEL0 + 5,
1324 MSR_ARCH_PERFMON_EVENTSEL0 + 6, MSR_ARCH_PERFMON_EVENTSEL0 + 7,
1325 MSR_ARCH_PERFMON_EVENTSEL0 + 8, MSR_ARCH_PERFMON_EVENTSEL0 + 9,
1326 MSR_ARCH_PERFMON_EVENTSEL0 + 10, MSR_ARCH_PERFMON_EVENTSEL0 + 11,
1327 MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13,
1328 MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15,
1329 MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17,
Carsten Otte043405e2007-10-10 17:16:19 +02001330};
1331
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001332static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)];
Carsten Otte043405e2007-10-10 17:16:19 +02001333static unsigned num_msrs_to_save;
1334
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001335static const u32 emulated_msrs_all[] = {
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001336 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
1337 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
1338 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
1339 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Ladi Prosek72c139b2017-07-26 13:32:59 +02001340 HV_X64_MSR_TSC_FREQUENCY, HV_X64_MSR_APIC_FREQUENCY,
Andrey Smetanine7d95132015-07-03 15:01:37 +03001341 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
1342 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +03001343 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +03001344 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +03001345 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001346 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03001347 HV_X64_MSR_STIMER0_CONFIG,
Ladi Prosekd4abc572018-03-20 15:02:07 +01001348 HV_X64_MSR_VP_ASSIST_PAGE,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001349 HV_X64_MSR_REENLIGHTENMENT_CONTROL, HV_X64_MSR_TSC_EMULATION_CONTROL,
1350 HV_X64_MSR_TSC_EMULATION_STATUS,
Jon Doronf97f5a52020-05-29 16:45:40 +03001351 HV_X64_MSR_SYNDBG_OPTIONS,
1352 HV_X64_MSR_SYNDBG_CONTROL, HV_X64_MSR_SYNDBG_STATUS,
1353 HV_X64_MSR_SYNDBG_SEND_BUFFER, HV_X64_MSR_SYNDBG_RECV_BUFFER,
1354 HV_X64_MSR_SYNDBG_PENDING_BUFFER,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001355
1356 MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02001357 MSR_KVM_PV_EOI_EN, MSR_KVM_ASYNC_PF_INT, MSR_KVM_ASYNC_PF_ACK,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001358
Will Auldba904632012-11-29 12:42:50 -08001359 MSR_IA32_TSC_ADJUST,
Dave Hansen09141ec2020-03-05 09:47:06 -08001360 MSR_IA32_TSC_DEADLINE,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001361 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001362 MSR_IA32_PERF_CAPABILITIES,
Carsten Otte043405e2007-10-10 17:16:19 +02001363 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001364 MSR_IA32_MCG_STATUS,
1365 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001366 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001367 MSR_IA32_SMBASE,
Liran Alon52797bf2017-11-15 13:43:14 +02001368 MSR_SMI_COUNT,
Kyle Hueydb2336a2017-03-20 01:16:28 -07001369 MSR_PLATFORM_INFO,
1370 MSR_MISC_FEATURES_ENABLES,
Tom Lendackybc226f02018-05-10 22:06:39 +02001371 MSR_AMD64_VIRT_SPEC_CTRL,
Liran Alon6c6a2ab2019-04-15 18:45:26 +03001372 MSR_IA32_POWER_CTL,
Paolo Bonzini99634e32020-01-20 14:22:55 +01001373 MSR_IA32_UCODE_REV,
Borislav Petkov191c8132019-04-18 18:32:50 +02001374
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001375 /*
1376 * The following list leaves out MSRs whose values are determined
1377 * by arch/x86/kvm/vmx/nested.c based on CPUID or other MSRs.
1378 * We always support the "true" VMX control MSRs, even if the host
1379 * processor does not, so I am putting these registers here rather
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001380 * than in msrs_to_save_all.
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001381 */
1382 MSR_IA32_VMX_BASIC,
1383 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1384 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1385 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1386 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1387 MSR_IA32_VMX_MISC,
1388 MSR_IA32_VMX_CR0_FIXED0,
1389 MSR_IA32_VMX_CR4_FIXED0,
1390 MSR_IA32_VMX_VMCS_ENUM,
1391 MSR_IA32_VMX_PROCBASED_CTLS2,
1392 MSR_IA32_VMX_EPT_VPID_CAP,
1393 MSR_IA32_VMX_VMFUNC,
1394
Borislav Petkov191c8132019-04-18 18:32:50 +02001395 MSR_K7_HWCR,
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03001396 MSR_KVM_POLL_CONTROL,
Carsten Otte043405e2007-10-10 17:16:19 +02001397};
1398
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001399static u32 emulated_msrs[ARRAY_SIZE(emulated_msrs_all)];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001400static unsigned num_emulated_msrs;
1401
Tom Lendacky801e4592018-02-21 13:39:51 -06001402/*
1403 * List of msr numbers which are used to expose MSR-based features that
1404 * can be used by a hypervisor to validate requested CPU features.
1405 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001406static const u32 msr_based_features_all[] = {
Paolo Bonzini13893092018-02-26 13:40:09 +01001407 MSR_IA32_VMX_BASIC,
1408 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1409 MSR_IA32_VMX_PINBASED_CTLS,
1410 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1411 MSR_IA32_VMX_PROCBASED_CTLS,
1412 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1413 MSR_IA32_VMX_EXIT_CTLS,
1414 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1415 MSR_IA32_VMX_ENTRY_CTLS,
1416 MSR_IA32_VMX_MISC,
1417 MSR_IA32_VMX_CR0_FIXED0,
1418 MSR_IA32_VMX_CR0_FIXED1,
1419 MSR_IA32_VMX_CR4_FIXED0,
1420 MSR_IA32_VMX_CR4_FIXED1,
1421 MSR_IA32_VMX_VMCS_ENUM,
1422 MSR_IA32_VMX_PROCBASED_CTLS2,
1423 MSR_IA32_VMX_EPT_VPID_CAP,
1424 MSR_IA32_VMX_VMFUNC,
1425
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01001426 MSR_F10H_DECFG,
Wanpeng Li518e7b92018-02-28 14:03:31 +08001427 MSR_IA32_UCODE_REV,
Paolo Bonzinicd283252018-06-25 14:04:37 +02001428 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001429 MSR_IA32_PERF_CAPABILITIES,
Tom Lendacky801e4592018-02-21 13:39:51 -06001430};
1431
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001432static u32 msr_based_features[ARRAY_SIZE(msr_based_features_all)];
Tom Lendacky801e4592018-02-21 13:39:51 -06001433static unsigned int num_msr_based_features;
1434
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001435static u64 kvm_get_arch_capabilities(void)
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001436{
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001437 u64 data = 0;
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001438
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001439 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
1440 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, data);
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001441
1442 /*
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001443 * If nx_huge_pages is enabled, KVM's shadow paging will ensure that
1444 * the nested hypervisor runs with NX huge pages. If it is not,
Ingo Molnard9f6e122021-03-18 15:28:01 +01001445 * L1 is anyway vulnerable to ITLB_MULTIHIT exploits from other
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001446 * L1 guests, so it need not worry about its own (L2) guests.
1447 */
1448 data |= ARCH_CAP_PSCHANGE_MC_NO;
1449
1450 /*
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001451 * If we're doing cache flushes (either "always" or "cond")
1452 * we will do one whenever the guest does a vmlaunch/vmresume.
1453 * If an outer hypervisor is doing the cache flush for us
1454 * (VMENTER_L1D_FLUSH_NESTED_VM), we can safely pass that
1455 * capability to the guest too, and if EPT is disabled we're not
1456 * vulnerable. Overall, only VMENTER_L1D_FLUSH_NEVER will
1457 * require a nested hypervisor to do a flush of its own.
1458 */
1459 if (l1tf_vmx_mitigation != VMENTER_L1D_FLUSH_NEVER)
1460 data |= ARCH_CAP_SKIP_VMENTRY_L1DFLUSH;
1461
Paolo Bonzini0c549142019-08-19 17:24:07 +02001462 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
1463 data |= ARCH_CAP_RDCL_NO;
1464 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1465 data |= ARCH_CAP_SSB_NO;
1466 if (!boot_cpu_has_bug(X86_BUG_MDS))
1467 data |= ARCH_CAP_MDS_NO;
1468
Paolo Bonzini71316362021-01-28 11:45:00 -05001469 if (!boot_cpu_has(X86_FEATURE_RTM)) {
1470 /*
1471 * If RTM=0 because the kernel has disabled TSX, the host might
1472 * have TAA_NO or TSX_CTRL. Clear TAA_NO (the guest sees RTM=0
1473 * and therefore knows that there cannot be TAA) but keep
1474 * TSX_CTRL: some buggy userspaces leave it set on tsx=on hosts,
1475 * and we want to allow migrating those guests to tsx=off hosts.
1476 */
1477 data &= ~ARCH_CAP_TAA_NO;
1478 } else if (!boot_cpu_has_bug(X86_BUG_TAA)) {
Paolo Bonzinicbbaa272019-11-18 18:58:26 +01001479 data |= ARCH_CAP_TAA_NO;
Paolo Bonzini71316362021-01-28 11:45:00 -05001480 } else {
1481 /*
1482 * Nothing to do here; we emulate TSX_CTRL if present on the
1483 * host so the guest can choose between disabling TSX or
1484 * using VERW to clear CPU buffers.
1485 */
1486 }
Pawan Guptae1d38b62019-10-23 12:23:33 +02001487
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001488 return data;
1489}
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001490
Wanpeng Li66421c12018-02-28 14:03:30 +08001491static int kvm_get_msr_feature(struct kvm_msr_entry *msr)
1492{
1493 switch (msr->index) {
Paolo Bonzinicd283252018-06-25 14:04:37 +02001494 case MSR_IA32_ARCH_CAPABILITIES:
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001495 msr->data = kvm_get_arch_capabilities();
1496 break;
1497 case MSR_IA32_UCODE_REV:
Paolo Bonzinicd283252018-06-25 14:04:37 +02001498 rdmsrl_safe(msr->index, &msr->data);
Wanpeng Li518e7b92018-02-28 14:03:31 +08001499 break;
Wanpeng Li66421c12018-02-28 14:03:30 +08001500 default:
Jason Baronb36464772021-01-14 22:27:56 -05001501 return static_call(kvm_x86_get_msr_feature)(msr);
Wanpeng Li66421c12018-02-28 14:03:30 +08001502 }
1503 return 0;
1504}
1505
Tom Lendacky801e4592018-02-21 13:39:51 -06001506static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1507{
1508 struct kvm_msr_entry msr;
Wanpeng Li66421c12018-02-28 14:03:30 +08001509 int r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001510
1511 msr.index = index;
Wanpeng Li66421c12018-02-28 14:03:30 +08001512 r = kvm_get_msr_feature(&msr);
Peter Xu12bc2132020-06-22 18:04:42 -04001513
1514 if (r == KVM_MSR_RET_INVALID) {
1515 /* Unconditionally clear the output for simplicity */
1516 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001517 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001518 r = 0;
Peter Xu12bc2132020-06-22 18:04:42 -04001519 }
1520
Wanpeng Li66421c12018-02-28 14:03:30 +08001521 if (r)
1522 return r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001523
1524 *data = msr.data;
1525
1526 return 0;
1527}
1528
Sean Christopherson11988492019-04-02 08:19:15 -07001529static bool __kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
1530{
1531 if (efer & EFER_FFXSR && !guest_cpuid_has(vcpu, X86_FEATURE_FXSR_OPT))
1532 return false;
1533
1534 if (efer & EFER_SVME && !guest_cpuid_has(vcpu, X86_FEATURE_SVM))
1535 return false;
1536
Sean Christopherson0a629562019-04-02 08:19:16 -07001537 if (efer & (EFER_LME | EFER_LMA) &&
1538 !guest_cpuid_has(vcpu, X86_FEATURE_LM))
1539 return false;
1540
1541 if (efer & EFER_NX && !guest_cpuid_has(vcpu, X86_FEATURE_NX))
1542 return false;
1543
Sean Christopherson11988492019-04-02 08:19:15 -07001544 return true;
1545
1546}
Jan Kiszka384bb782013-04-20 10:52:36 +02001547bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001548{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001549 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001550 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001551
Sean Christopherson11988492019-04-02 08:19:15 -07001552 return __kvm_valid_efer(vcpu, efer);
Jan Kiszka384bb782013-04-20 10:52:36 +02001553}
1554EXPORT_SYMBOL_GPL(kvm_valid_efer);
1555
Sean Christopherson11988492019-04-02 08:19:15 -07001556static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Jan Kiszka384bb782013-04-20 10:52:36 +02001557{
1558 u64 old_efer = vcpu->arch.efer;
Sean Christopherson11988492019-04-02 08:19:15 -07001559 u64 efer = msr_info->data;
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001560 int r;
Jan Kiszka384bb782013-04-20 10:52:36 +02001561
Sean Christopherson11988492019-04-02 08:19:15 -07001562 if (efer & efer_reserved_bits)
Paolo Bonzini66f61c92019-05-24 21:52:46 +02001563 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +02001564
Sean Christopherson11988492019-04-02 08:19:15 -07001565 if (!msr_info->host_initiated) {
1566 if (!__kvm_valid_efer(vcpu, efer))
1567 return 1;
1568
1569 if (is_paging(vcpu) &&
1570 (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1571 return 1;
1572 }
Jan Kiszka384bb782013-04-20 10:52:36 +02001573
Carsten Otte15c4a642007-10-30 18:44:17 +01001574 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001575 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001576
Jason Baronb36464772021-01-14 22:27:56 -05001577 r = static_call(kvm_x86_set_efer)(vcpu, efer);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001578 if (r) {
1579 WARN_ON(r > 0);
1580 return r;
1581 }
Sheng Yanga3d204e2010-05-12 16:40:40 +08001582
Sheng Yangaad82702010-05-12 16:40:42 +08001583 /* Update reserved bits */
1584 if ((efer ^ old_efer) & EFER_NX)
1585 kvm_mmu_reset_context(vcpu);
1586
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001587 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001588}
1589
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001590void kvm_enable_efer_bits(u64 mask)
1591{
1592 efer_reserved_bits &= ~mask;
1593}
1594EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1595
Alexander Graf51de8152020-09-25 16:34:17 +02001596bool kvm_msr_allowed(struct kvm_vcpu *vcpu, u32 index, u32 type)
1597{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001598 struct kvm_x86_msr_filter *msr_filter;
1599 struct msr_bitmap_range *ranges;
Alexander Graf1a1552542020-09-25 16:34:21 +02001600 struct kvm *kvm = vcpu->kvm;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001601 bool allowed;
Alexander Graf1a1552542020-09-25 16:34:21 +02001602 int idx;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001603 u32 i;
Alexander Graf1a1552542020-09-25 16:34:21 +02001604
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001605 /* x2APIC MSRs do not support filtering. */
1606 if (index >= 0x800 && index <= 0x8ff)
Alexander Graf1a1552542020-09-25 16:34:21 +02001607 return true;
1608
Alexander Graf1a1552542020-09-25 16:34:21 +02001609 idx = srcu_read_lock(&kvm->srcu);
1610
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001611 msr_filter = srcu_dereference(kvm->arch.msr_filter, &kvm->srcu);
1612 if (!msr_filter) {
1613 allowed = true;
1614 goto out;
1615 }
1616
1617 allowed = msr_filter->default_allow;
1618 ranges = msr_filter->ranges;
1619
1620 for (i = 0; i < msr_filter->count; i++) {
Alexander Graf1a1552542020-09-25 16:34:21 +02001621 u32 start = ranges[i].base;
1622 u32 end = start + ranges[i].nmsrs;
1623 u32 flags = ranges[i].flags;
1624 unsigned long *bitmap = ranges[i].bitmap;
1625
1626 if ((index >= start) && (index < end) && (flags & type)) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001627 allowed = !!test_bit(index - start, bitmap);
Alexander Graf1a1552542020-09-25 16:34:21 +02001628 break;
1629 }
1630 }
1631
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001632out:
Alexander Graf1a1552542020-09-25 16:34:21 +02001633 srcu_read_unlock(&kvm->srcu, idx);
1634
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001635 return allowed;
Alexander Graf51de8152020-09-25 16:34:17 +02001636}
1637EXPORT_SYMBOL_GPL(kvm_msr_allowed);
1638
Carsten Otte15c4a642007-10-30 18:44:17 +01001639/*
Sean Christophersonf20935d2019-09-05 14:22:54 -07001640 * Write @data into the MSR specified by @index. Select MSR specific fault
1641 * checks are bypassed if @host_initiated is %true.
Carsten Otte15c4a642007-10-30 18:44:17 +01001642 * Returns 0 on success, non-0 otherwise.
1643 * Assumes vcpu_load() was already called.
1644 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001645static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data,
1646 bool host_initiated)
Carsten Otte15c4a642007-10-30 18:44:17 +01001647{
Sean Christophersonf20935d2019-09-05 14:22:54 -07001648 struct msr_data msr;
1649
Alexander Graf1a1552542020-09-25 16:34:21 +02001650 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_WRITE))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001651 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001652
Sean Christophersonf20935d2019-09-05 14:22:54 -07001653 switch (index) {
Nadav Amit854e8bb2014-09-16 03:24:05 +03001654 case MSR_FS_BASE:
1655 case MSR_GS_BASE:
1656 case MSR_KERNEL_GS_BASE:
1657 case MSR_CSTAR:
1658 case MSR_LSTAR:
Sean Christophersonf20935d2019-09-05 14:22:54 -07001659 if (is_noncanonical_address(data, vcpu))
Nadav Amit854e8bb2014-09-16 03:24:05 +03001660 return 1;
1661 break;
1662 case MSR_IA32_SYSENTER_EIP:
1663 case MSR_IA32_SYSENTER_ESP:
1664 /*
1665 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1666 * non-canonical address is written on Intel but not on
1667 * AMD (which ignores the top 32-bits, because it does
1668 * not implement 64-bit SYSENTER).
1669 *
1670 * 64-bit code should hence be able to write a non-canonical
1671 * value on AMD. Making the address canonical ensures that
1672 * vmentry does not fail on Intel after writing a non-canonical
1673 * value, and that something deterministic happens if the guest
1674 * invokes 64-bit SYSENTER.
1675 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001676 data = get_canonical(data, vcpu_virt_addr_bits(vcpu));
Sean Christopherson61a05d42021-05-04 10:17:33 -07001677 break;
1678 case MSR_TSC_AUX:
1679 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1680 return 1;
1681
1682 if (!host_initiated &&
1683 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1684 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1685 return 1;
1686
1687 /*
1688 * Per Intel's SDM, bits 63:32 are reserved, but AMD's APM has
1689 * incomplete and conflicting architectural behavior. Current
1690 * AMD CPUs completely ignore bits 63:32, i.e. they aren't
1691 * reserved and always read as zeros. Enforce Intel's reserved
1692 * bits check if and only if the guest CPU is Intel, and clear
1693 * the bits in all other cases. This ensures cross-vendor
1694 * migration will provide consistent behavior for the guest.
1695 */
1696 if (guest_cpuid_is_intel(vcpu) && (data >> 32) != 0)
1697 return 1;
1698
1699 data = (u32)data;
1700 break;
Nadav Amit854e8bb2014-09-16 03:24:05 +03001701 }
Sean Christophersonf20935d2019-09-05 14:22:54 -07001702
1703 msr.data = data;
1704 msr.index = index;
1705 msr.host_initiated = host_initiated;
1706
Jason Baronb36464772021-01-14 22:27:56 -05001707 return static_call(kvm_x86_set_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001708}
1709
Peter Xu6abe9c12020-06-22 18:04:41 -04001710static int kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu,
1711 u32 index, u64 data, bool host_initiated)
1712{
1713 int ret = __kvm_set_msr(vcpu, index, data, host_initiated);
1714
1715 if (ret == KVM_MSR_RET_INVALID)
Haiwei Lid6328262021-03-13 13:10:32 +08001716 if (kvm_msr_ignored_check(index, data, true))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001717 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001718
1719 return ret;
1720}
1721
Sean Christophersonf20935d2019-09-05 14:22:54 -07001722/*
1723 * Read the MSR specified by @index into @data. Select MSR specific fault
1724 * checks are bypassed if @host_initiated is %true.
1725 * Returns 0 on success, non-0 otherwise.
1726 * Assumes vcpu_load() was already called.
1727 */
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001728int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data,
1729 bool host_initiated)
Sean Christophersonf20935d2019-09-05 14:22:54 -07001730{
1731 struct msr_data msr;
1732 int ret;
1733
Alexander Graf1a1552542020-09-25 16:34:21 +02001734 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_READ))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001735 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001736
Sean Christopherson61a05d42021-05-04 10:17:33 -07001737 switch (index) {
1738 case MSR_TSC_AUX:
1739 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1740 return 1;
1741
1742 if (!host_initiated &&
1743 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1744 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1745 return 1;
1746 break;
1747 }
1748
Sean Christophersonf20935d2019-09-05 14:22:54 -07001749 msr.index = index;
1750 msr.host_initiated = host_initiated;
1751
Jason Baronb36464772021-01-14 22:27:56 -05001752 ret = static_call(kvm_x86_get_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001753 if (!ret)
1754 *data = msr.data;
1755 return ret;
1756}
1757
Peter Xu6abe9c12020-06-22 18:04:41 -04001758static int kvm_get_msr_ignored_check(struct kvm_vcpu *vcpu,
1759 u32 index, u64 *data, bool host_initiated)
1760{
1761 int ret = __kvm_get_msr(vcpu, index, data, host_initiated);
1762
1763 if (ret == KVM_MSR_RET_INVALID) {
1764 /* Unconditionally clear *data for simplicity */
1765 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001766 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001767 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001768 }
1769
1770 return ret;
1771}
1772
Sean Christophersonf20935d2019-09-05 14:22:54 -07001773int kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data)
1774{
Peter Xu6abe9c12020-06-22 18:04:41 -04001775 return kvm_get_msr_ignored_check(vcpu, index, data, false);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001776}
1777EXPORT_SYMBOL_GPL(kvm_get_msr);
1778
1779int kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data)
1780{
Peter Xu6abe9c12020-06-22 18:04:41 -04001781 return kvm_set_msr_ignored_check(vcpu, index, data, false);
Carsten Otte15c4a642007-10-30 18:44:17 +01001782}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001783EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001784
Paolo Bonzini8b474422020-12-14 07:44:46 -05001785static int complete_emulated_rdmsr(struct kvm_vcpu *vcpu)
Alexander Graf1ae09952020-09-25 16:34:16 +02001786{
Paolo Bonzini8b474422020-12-14 07:44:46 -05001787 int err = vcpu->run->msr.error;
1788 if (!err) {
Alexander Graf1ae09952020-09-25 16:34:16 +02001789 kvm_rax_write(vcpu, (u32)vcpu->run->msr.data);
1790 kvm_rdx_write(vcpu, vcpu->run->msr.data >> 32);
1791 }
1792
Jason Baronb36464772021-01-14 22:27:56 -05001793 return static_call(kvm_x86_complete_emulated_msr)(vcpu, err);
Alexander Graf1ae09952020-09-25 16:34:16 +02001794}
1795
1796static int complete_emulated_wrmsr(struct kvm_vcpu *vcpu)
1797{
Jason Baronb36464772021-01-14 22:27:56 -05001798 return static_call(kvm_x86_complete_emulated_msr)(vcpu, vcpu->run->msr.error);
Alexander Graf1ae09952020-09-25 16:34:16 +02001799}
1800
1801static u64 kvm_msr_reason(int r)
1802{
1803 switch (r) {
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001804 case KVM_MSR_RET_INVALID:
Alexander Graf1ae09952020-09-25 16:34:16 +02001805 return KVM_MSR_EXIT_REASON_UNKNOWN;
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001806 case KVM_MSR_RET_FILTERED:
Alexander Graf1a1552542020-09-25 16:34:21 +02001807 return KVM_MSR_EXIT_REASON_FILTER;
Alexander Graf1ae09952020-09-25 16:34:16 +02001808 default:
1809 return KVM_MSR_EXIT_REASON_INVAL;
1810 }
1811}
1812
1813static int kvm_msr_user_space(struct kvm_vcpu *vcpu, u32 index,
1814 u32 exit_reason, u64 data,
1815 int (*completion)(struct kvm_vcpu *vcpu),
1816 int r)
1817{
1818 u64 msr_reason = kvm_msr_reason(r);
1819
1820 /* Check if the user wanted to know about this MSR fault */
1821 if (!(vcpu->kvm->arch.user_space_msr_mask & msr_reason))
1822 return 0;
1823
1824 vcpu->run->exit_reason = exit_reason;
1825 vcpu->run->msr.error = 0;
1826 memset(vcpu->run->msr.pad, 0, sizeof(vcpu->run->msr.pad));
1827 vcpu->run->msr.reason = msr_reason;
1828 vcpu->run->msr.index = index;
1829 vcpu->run->msr.data = data;
1830 vcpu->arch.complete_userspace_io = completion;
1831
1832 return 1;
1833}
1834
1835static int kvm_get_msr_user_space(struct kvm_vcpu *vcpu, u32 index, int r)
1836{
1837 return kvm_msr_user_space(vcpu, index, KVM_EXIT_X86_RDMSR, 0,
1838 complete_emulated_rdmsr, r);
1839}
1840
1841static int kvm_set_msr_user_space(struct kvm_vcpu *vcpu, u32 index, u64 data, int r)
1842{
1843 return kvm_msr_user_space(vcpu, index, KVM_EXIT_X86_WRMSR, data,
1844 complete_emulated_wrmsr, r);
1845}
1846
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001847int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu)
1848{
1849 u32 ecx = kvm_rcx_read(vcpu);
1850 u64 data;
Alexander Graf1ae09952020-09-25 16:34:16 +02001851 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001852
Alexander Graf1ae09952020-09-25 16:34:16 +02001853 r = kvm_get_msr(vcpu, ecx, &data);
1854
1855 /* MSR read failed? See if we should ask user space */
1856 if (r && kvm_get_msr_user_space(vcpu, ecx, r)) {
1857 /* Bounce to user space */
1858 return 0;
1859 }
1860
Paolo Bonzini8b474422020-12-14 07:44:46 -05001861 if (!r) {
1862 trace_kvm_msr_read(ecx, data);
1863
1864 kvm_rax_write(vcpu, data & -1u);
1865 kvm_rdx_write(vcpu, (data >> 32) & -1u);
1866 } else {
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001867 trace_kvm_msr_read_ex(ecx);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001868 }
1869
Jason Baronb36464772021-01-14 22:27:56 -05001870 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001871}
1872EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr);
1873
1874int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu)
1875{
1876 u32 ecx = kvm_rcx_read(vcpu);
1877 u64 data = kvm_read_edx_eax(vcpu);
Alexander Graf1ae09952020-09-25 16:34:16 +02001878 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001879
Alexander Graf1ae09952020-09-25 16:34:16 +02001880 r = kvm_set_msr(vcpu, ecx, data);
1881
1882 /* MSR write failed? See if we should ask user space */
Maxim Levitsky7dffeca2020-10-01 14:29:52 +03001883 if (r && kvm_set_msr_user_space(vcpu, ecx, data, r))
Alexander Graf1ae09952020-09-25 16:34:16 +02001884 /* Bounce to user space */
1885 return 0;
Maxim Levitsky7dffeca2020-10-01 14:29:52 +03001886
1887 /* Signal all other negative errors to userspace */
1888 if (r < 0)
1889 return r;
Alexander Graf1ae09952020-09-25 16:34:16 +02001890
Paolo Bonzini8b474422020-12-14 07:44:46 -05001891 if (!r)
1892 trace_kvm_msr_write(ecx, data);
1893 else
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001894 trace_kvm_msr_write_ex(ecx, data);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001895
Jason Baronb36464772021-01-14 22:27:56 -05001896 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001897}
1898EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr);
1899
Sean Christopherson5ff3a352021-02-04 16:57:47 -08001900int kvm_emulate_as_nop(struct kvm_vcpu *vcpu)
1901{
1902 return kvm_skip_emulated_instruction(vcpu);
1903}
1904EXPORT_SYMBOL_GPL(kvm_emulate_as_nop);
1905
1906int kvm_emulate_invd(struct kvm_vcpu *vcpu)
1907{
1908 /* Treat an INVD instruction as a NOP and just skip it. */
1909 return kvm_emulate_as_nop(vcpu);
1910}
1911EXPORT_SYMBOL_GPL(kvm_emulate_invd);
1912
1913int kvm_emulate_mwait(struct kvm_vcpu *vcpu)
1914{
1915 pr_warn_once("kvm: MWAIT instruction emulated as NOP!\n");
1916 return kvm_emulate_as_nop(vcpu);
1917}
1918EXPORT_SYMBOL_GPL(kvm_emulate_mwait);
1919
1920int kvm_handle_invalid_op(struct kvm_vcpu *vcpu)
1921{
1922 kvm_queue_exception(vcpu, UD_VECTOR);
1923 return 1;
1924}
1925EXPORT_SYMBOL_GPL(kvm_handle_invalid_op);
1926
1927int kvm_emulate_monitor(struct kvm_vcpu *vcpu)
1928{
1929 pr_warn_once("kvm: MONITOR instruction emulated as NOP!\n");
1930 return kvm_emulate_as_nop(vcpu);
1931}
1932EXPORT_SYMBOL_GPL(kvm_emulate_monitor);
1933
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05001934static inline bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu)
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001935{
Frederic Weisbecker4ae7dc92021-02-01 00:05:48 +01001936 xfer_to_guest_mode_prepare();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001937 return vcpu->mode == EXITING_GUEST_MODE || kvm_request_pending(vcpu) ||
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02001938 xfer_to_guest_mode_work_pending();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001939}
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001940
Carsten Otte313a3dc2007-10-11 19:16:52 +02001941/*
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001942 * The fast path for frequent and performance sensitive wrmsr emulation,
1943 * i.e. the sending of IPI, sending IPI early in the VM-Exit flow reduces
1944 * the latency of virtual IPI by avoiding the expensive bits of transitioning
1945 * from guest to host, e.g. reacquiring KVM's SRCU lock. In contrast to the
1946 * other cases which must be called after interrupts are enabled on the host.
1947 */
1948static int handle_fastpath_set_x2apic_icr_irqoff(struct kvm_vcpu *vcpu, u64 data)
1949{
Wanpeng Lie1be9ac2020-03-26 10:20:01 +08001950 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(vcpu->arch.apic))
1951 return 1;
1952
1953 if (((data & APIC_SHORT_MASK) == APIC_DEST_NOSHORT) &&
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001954 ((data & APIC_DEST_MASK) == APIC_DEST_PHYSICAL) &&
Wanpeng Li4064a4c2020-04-02 16:20:26 +08001955 ((data & APIC_MODE_MASK) == APIC_DM_FIXED) &&
1956 ((u32)(data >> 32) != X2APIC_BROADCAST)) {
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001957
Wanpeng Lid5361672020-03-26 10:20:02 +08001958 data &= ~(1 << 12);
1959 kvm_apic_send_ipi(vcpu->arch.apic, (u32)data, (u32)(data >> 32));
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001960 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR2, (u32)(data >> 32));
Wanpeng Lid5361672020-03-26 10:20:02 +08001961 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR, (u32)data);
1962 trace_kvm_apic_write(APIC_ICR, (u32)data);
1963 return 0;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001964 }
1965
1966 return 1;
1967}
1968
Wanpeng Liae95f562020-04-28 14:23:28 +08001969static int handle_fastpath_set_tscdeadline(struct kvm_vcpu *vcpu, u64 data)
1970{
1971 if (!kvm_can_use_hv_timer(vcpu))
1972 return 1;
1973
1974 kvm_set_lapic_tscdeadline_msr(vcpu, data);
1975 return 0;
1976}
1977
Wanpeng Li404d5d72020-04-28 14:23:25 +08001978fastpath_t handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001979{
1980 u32 msr = kvm_rcx_read(vcpu);
Wanpeng Li8a1038d2020-03-26 10:20:00 +08001981 u64 data;
Wanpeng Li404d5d72020-04-28 14:23:25 +08001982 fastpath_t ret = EXIT_FASTPATH_NONE;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001983
1984 switch (msr) {
1985 case APIC_BASE_MSR + (APIC_ICR >> 4):
Wanpeng Li8a1038d2020-03-26 10:20:00 +08001986 data = kvm_read_edx_eax(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08001987 if (!handle_fastpath_set_x2apic_icr_irqoff(vcpu, data)) {
1988 kvm_skip_emulated_instruction(vcpu);
1989 ret = EXIT_FASTPATH_EXIT_HANDLED;
Haiwei Li80bc97f2020-05-18 09:31:38 +08001990 }
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001991 break;
Dave Hansen09141ec2020-03-05 09:47:06 -08001992 case MSR_IA32_TSC_DEADLINE:
Wanpeng Liae95f562020-04-28 14:23:28 +08001993 data = kvm_read_edx_eax(vcpu);
1994 if (!handle_fastpath_set_tscdeadline(vcpu, data)) {
1995 kvm_skip_emulated_instruction(vcpu);
1996 ret = EXIT_FASTPATH_REENTER_GUEST;
1997 }
1998 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001999 default:
Wanpeng Li404d5d72020-04-28 14:23:25 +08002000 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002001 }
2002
Wanpeng Li404d5d72020-04-28 14:23:25 +08002003 if (ret != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002004 trace_kvm_msr_write(msr, data);
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002005
Wanpeng Li404d5d72020-04-28 14:23:25 +08002006 return ret;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002007}
2008EXPORT_SYMBOL_GPL(handle_fastpath_set_msr_irqoff);
2009
2010/*
Carsten Otte313a3dc2007-10-11 19:16:52 +02002011 * Adapt set_msr() to msr_io()'s calling convention
2012 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002013static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2014{
Peter Xu6abe9c12020-06-22 18:04:41 -04002015 return kvm_get_msr_ignored_check(vcpu, index, data, true);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002016}
2017
Carsten Otte313a3dc2007-10-11 19:16:52 +02002018static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2019{
Peter Xu6abe9c12020-06-22 18:04:41 -04002020 return kvm_set_msr_ignored_check(vcpu, index, *data, true);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002021}
2022
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002023#ifdef CONFIG_X86_64
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002024struct pvclock_clock {
2025 int vclock_mode;
2026 u64 cycle_last;
2027 u64 mask;
2028 u32 mult;
2029 u32 shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002030 u64 base_cycles;
2031 u64 offset;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002032};
2033
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002034struct pvclock_gtod_data {
2035 seqcount_t seq;
2036
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002037 struct pvclock_clock clock; /* extract of a clocksource struct */
2038 struct pvclock_clock raw_clock; /* extract of a clocksource struct */
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002039
Paolo Bonzini917f9472020-01-22 14:32:20 +01002040 ktime_t offs_boot;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002041 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002042};
2043
2044static struct pvclock_gtod_data pvclock_gtod_data;
2045
2046static void update_pvclock_gtod(struct timekeeper *tk)
2047{
2048 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
2049
2050 write_seqcount_begin(&vdata->seq);
2051
2052 /* copy pvclock gtod data */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002053 vdata->clock.vclock_mode = tk->tkr_mono.clock->vdso_clock_mode;
Peter Zijlstra876e7882015-03-19 10:09:06 +01002054 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
2055 vdata->clock.mask = tk->tkr_mono.mask;
2056 vdata->clock.mult = tk->tkr_mono.mult;
2057 vdata->clock.shift = tk->tkr_mono.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002058 vdata->clock.base_cycles = tk->tkr_mono.xtime_nsec;
2059 vdata->clock.offset = tk->tkr_mono.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002060
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002061 vdata->raw_clock.vclock_mode = tk->tkr_raw.clock->vdso_clock_mode;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002062 vdata->raw_clock.cycle_last = tk->tkr_raw.cycle_last;
2063 vdata->raw_clock.mask = tk->tkr_raw.mask;
2064 vdata->raw_clock.mult = tk->tkr_raw.mult;
2065 vdata->raw_clock.shift = tk->tkr_raw.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002066 vdata->raw_clock.base_cycles = tk->tkr_raw.xtime_nsec;
2067 vdata->raw_clock.offset = tk->tkr_raw.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002068
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002069 vdata->wall_time_sec = tk->xtime_sec;
2070
Paolo Bonzini917f9472020-01-22 14:32:20 +01002071 vdata->offs_boot = tk->offs_boot;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002072
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002073 write_seqcount_end(&vdata->seq);
2074}
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002075
2076static s64 get_kvmclock_base_ns(void)
2077{
2078 /* Count up from boot time, but with the frequency of the raw clock. */
2079 return ktime_to_ns(ktime_add(ktime_get_raw(), pvclock_gtod_data.offs_boot));
2080}
2081#else
2082static s64 get_kvmclock_base_ns(void)
2083{
2084 /* Master clock not used, so we can just use CLOCK_BOOTTIME. */
2085 return ktime_get_boottime_ns();
2086}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002087#endif
2088
Joao Martins629b5342018-06-28 15:06:43 -04002089void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock, int sec_hi_ofs)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002090{
Avi Kivity9ed3c442010-05-04 15:00:37 +03002091 int version;
2092 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002093 struct pvclock_wall_clock wc;
Joao Martins629b5342018-06-28 15:06:43 -04002094 u32 wc_sec_hi;
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002095 u64 wall_nsec;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002096
2097 if (!wall_clock)
2098 return;
2099
Avi Kivity9ed3c442010-05-04 15:00:37 +03002100 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
2101 if (r)
2102 return;
2103
2104 if (version & 1)
2105 ++version; /* first time write, random junk */
2106
2107 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002108
Nicholas Krause1dab1342015-12-30 13:08:46 -05002109 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
2110 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002111
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002112 /*
2113 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10002114 * system time (updated by kvm_guest_time_update below) to the
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002115 * wall clock specified here. We do the reverse here.
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002116 */
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002117 wall_nsec = ktime_get_real_ns() - get_kvmclock_ns(kvm);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002118
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002119 wc.nsec = do_div(wall_nsec, 1000000000);
2120 wc.sec = (u32)wall_nsec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002121 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002122
2123 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
2124
Joao Martins629b5342018-06-28 15:06:43 -04002125 if (sec_hi_ofs) {
2126 wc_sec_hi = wall_nsec >> 32;
2127 kvm_write_guest(kvm, wall_clock + sec_hi_ofs,
2128 &wc_sec_hi, sizeof(wc_sec_hi));
2129 }
2130
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002131 version++;
2132 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002133}
2134
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002135static void kvm_write_system_time(struct kvm_vcpu *vcpu, gpa_t system_time,
2136 bool old_msr, bool host_initiated)
2137{
2138 struct kvm_arch *ka = &vcpu->kvm->arch;
2139
2140 if (vcpu->vcpu_id == 0 && !host_initiated) {
Oliver Upton1e293d12020-10-27 16:10:43 -07002141 if (ka->boot_vcpu_runs_old_kvmclock != old_msr)
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002142 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2143
2144 ka->boot_vcpu_runs_old_kvmclock = old_msr;
2145 }
2146
2147 vcpu->arch.time = system_time;
2148 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
2149
2150 /* we verify if the enable bit is set... */
2151 vcpu->arch.pv_time_enabled = false;
2152 if (!(system_time & 1))
2153 return;
2154
2155 if (!kvm_gfn_to_hva_cache_init(vcpu->kvm,
2156 &vcpu->arch.pv_time, system_time & ~1ULL,
2157 sizeof(struct pvclock_vcpu_time_info)))
2158 vcpu->arch.pv_time_enabled = true;
2159
2160 return;
2161}
2162
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002163static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
2164{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01002165 do_shl32_div32(dividend, divisor);
2166 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002167}
2168
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002169static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002170 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002171{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002172 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002173 int32_t shift = 0;
2174 uint64_t tps64;
2175 uint32_t tps32;
2176
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002177 tps64 = base_hz;
2178 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02002179 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002180 tps64 >>= 1;
2181 shift--;
2182 }
2183
2184 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02002185 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
2186 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002187 scaled64 >>= 1;
2188 else
2189 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002190 shift++;
2191 }
2192
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002193 *pshift = shift;
2194 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002195}
2196
Marcelo Tosattid8281992012-11-27 23:29:01 -02002197#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002198static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002199#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002200
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002201static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08002202static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002203
Zachary Amsdencc578282012-02-03 15:43:50 -02002204static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10002205{
Zachary Amsdencc578282012-02-03 15:43:50 -02002206 u64 v = (u64)khz * (1000000 + ppm);
2207 do_div(v, 1000000);
2208 return v;
2209}
2210
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002211static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier);
2212
Haozhong Zhang381d5852015-10-20 15:39:04 +08002213static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
2214{
2215 u64 ratio;
2216
2217 /* Guest TSC same frequency as host TSC? */
2218 if (!scale) {
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002219 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002220 return 0;
2221 }
2222
2223 /* TSC scaling supported? */
2224 if (!kvm_has_tsc_control) {
2225 if (user_tsc_khz > tsc_khz) {
2226 vcpu->arch.tsc_catchup = 1;
2227 vcpu->arch.tsc_always_catchup = 1;
2228 return 0;
2229 } else {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002230 pr_warn_ratelimited("user requested TSC rate below hardware speed\n");
Haozhong Zhang381d5852015-10-20 15:39:04 +08002231 return -1;
2232 }
2233 }
2234
2235 /* TSC scaling required - calculate ratio */
2236 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
2237 user_tsc_khz, tsc_khz);
2238
2239 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002240 pr_warn_ratelimited("Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
2241 user_tsc_khz);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002242 return -1;
2243 }
2244
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002245 kvm_vcpu_write_tsc_multiplier(vcpu, ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002246 return 0;
2247}
2248
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002249static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02002250{
2251 u32 thresh_lo, thresh_hi;
2252 int use_scaling = 0;
2253
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002254 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002255 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08002256 /* set tsc_scaling_ratio to a safe value */
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002257 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002258 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08002259 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002260
Zachary Amsdenc2855452010-09-18 14:38:15 -10002261 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002262 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02002263 &vcpu->arch.virtual_tsc_shift,
2264 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002265 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02002266
2267 /*
2268 * Compute the variation in TSC rate which is acceptable
2269 * within the range of tolerance and decide if the
2270 * rate being applied is within that bounds of the hardware
2271 * rate. If so, no scaling or compensation need be done.
2272 */
2273 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
2274 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002275 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
2276 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 -02002277 use_scaling = 1;
2278 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002279 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002280}
2281
2282static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
2283{
Zachary Amsdene26101b2012-02-03 15:43:57 -02002284 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02002285 vcpu->arch.virtual_tsc_mult,
2286 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002287 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002288 return tsc;
2289}
2290
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002291static inline int gtod_is_based_on_tsc(int mode)
2292{
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002293 return mode == VDSO_CLOCKMODE_TSC || mode == VDSO_CLOCKMODE_HVCLOCK;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002294}
2295
Fengguang Wu69b00492015-01-19 22:33:39 +08002296static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002297{
2298#ifdef CONFIG_X86_64
2299 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002300 struct kvm_arch *ka = &vcpu->kvm->arch;
2301 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2302
2303 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2304 atomic_read(&vcpu->kvm->online_vcpus));
2305
Marcelo Tosatti7f187922014-11-04 21:30:44 -02002306 /*
2307 * Once the masterclock is enabled, always perform request in
2308 * order to update it.
2309 *
2310 * In order to enable masterclock, the host clocksource must be TSC
2311 * and the vcpus need to have matched TSCs. When that happens,
2312 * perform request to enable masterclock.
2313 */
2314 if (ka->use_master_clock ||
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002315 (gtod_is_based_on_tsc(gtod->clock.vclock_mode) && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002316 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2317
2318 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
2319 atomic_read(&vcpu->kvm->online_vcpus),
2320 ka->use_master_clock, gtod->clock.vclock_mode);
2321#endif
2322}
2323
Haozhong Zhang35181e82015-10-20 15:39:03 +08002324/*
2325 * Multiply tsc by a fixed point number represented by ratio.
2326 *
2327 * The most significant 64-N bits (mult) of ratio represent the
2328 * integral part of the fixed point number; the remaining N bits
2329 * (frac) represent the fractional part, ie. ratio represents a fixed
2330 * point number (mult + frac * 2^(-N)).
2331 *
2332 * N equals to kvm_tsc_scaling_ratio_frac_bits.
2333 */
2334static inline u64 __scale_tsc(u64 ratio, u64 tsc)
2335{
2336 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
2337}
2338
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002339u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc, u64 ratio)
Haozhong Zhang35181e82015-10-20 15:39:03 +08002340{
2341 u64 _tsc = tsc;
Haozhong Zhang35181e82015-10-20 15:39:03 +08002342
2343 if (ratio != kvm_default_tsc_scaling_ratio)
2344 _tsc = __scale_tsc(ratio, tsc);
2345
2346 return _tsc;
2347}
2348EXPORT_SYMBOL_GPL(kvm_scale_tsc);
2349
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002350static u64 kvm_compute_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
Haozhong Zhang07c14192015-10-20 15:39:05 +08002351{
2352 u64 tsc;
2353
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002354 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang07c14192015-10-20 15:39:05 +08002355
2356 return target_tsc - tsc;
2357}
2358
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002359u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
2360{
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002361 return vcpu->arch.l1_tsc_offset +
2362 kvm_scale_tsc(vcpu, host_tsc, vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002363}
2364EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
2365
Ilias Stamatis83150f22021-05-26 19:44:14 +01002366u64 kvm_calc_nested_tsc_offset(u64 l1_offset, u64 l2_offset, u64 l2_multiplier)
2367{
2368 u64 nested_offset;
2369
2370 if (l2_multiplier == kvm_default_tsc_scaling_ratio)
2371 nested_offset = l1_offset;
2372 else
2373 nested_offset = mul_s64_u64_shr((s64) l1_offset, l2_multiplier,
2374 kvm_tsc_scaling_ratio_frac_bits);
2375
2376 nested_offset += l2_offset;
2377 return nested_offset;
2378}
2379EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_offset);
2380
2381u64 kvm_calc_nested_tsc_multiplier(u64 l1_multiplier, u64 l2_multiplier)
2382{
2383 if (l2_multiplier != kvm_default_tsc_scaling_ratio)
2384 return mul_u64_u64_shr(l1_multiplier, l2_multiplier,
2385 kvm_tsc_scaling_ratio_frac_bits);
2386
2387 return l1_multiplier;
2388}
2389EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_multiplier);
2390
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002391static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 l1_offset)
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002392{
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002393 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2394 vcpu->arch.l1_tsc_offset,
2395 l1_offset);
2396
2397 vcpu->arch.l1_tsc_offset = l1_offset;
2398
2399 /*
2400 * If we are here because L1 chose not to trap WRMSR to TSC then
2401 * according to the spec this should set L1's TSC (as opposed to
2402 * setting L1's offset for L2).
2403 */
2404 if (is_guest_mode(vcpu))
2405 vcpu->arch.tsc_offset = kvm_calc_nested_tsc_offset(
2406 l1_offset,
2407 static_call(kvm_x86_get_l2_tsc_offset)(vcpu),
2408 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2409 else
2410 vcpu->arch.tsc_offset = l1_offset;
2411
2412 static_call(kvm_x86_write_tsc_offset)(vcpu, vcpu->arch.tsc_offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002413}
2414
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002415static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier)
2416{
2417 vcpu->arch.l1_tsc_scaling_ratio = l1_multiplier;
2418
2419 /* Userspace is changing the multiplier while L2 is active */
2420 if (is_guest_mode(vcpu))
2421 vcpu->arch.tsc_scaling_ratio = kvm_calc_nested_tsc_multiplier(
2422 l1_multiplier,
2423 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2424 else
2425 vcpu->arch.tsc_scaling_ratio = l1_multiplier;
2426
2427 if (kvm_has_tsc_control)
2428 static_call(kvm_x86_write_tsc_multiplier)(
2429 vcpu, vcpu->arch.tsc_scaling_ratio);
2430}
2431
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002432static inline bool kvm_check_tsc_unstable(void)
2433{
2434#ifdef CONFIG_X86_64
2435 /*
2436 * TSC is marked unstable when we're running on Hyper-V,
2437 * 'TSC page' clocksource is good.
2438 */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002439 if (pvclock_gtod_data.clock.vclock_mode == VDSO_CLOCKMODE_HVCLOCK)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002440 return false;
2441#endif
2442 return check_tsc_unstable();
2443}
2444
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002445static void kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 data)
Zachary Amsden99e3e302010-08-19 22:07:17 -10002446{
2447 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002448 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002449 unsigned long flags;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002450 bool matched;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002451 bool already_matched;
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002452 bool synchronizing = false;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002453
Jan Kiszka038f8c12011-02-04 10:49:11 +01002454 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002455 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002456 ns = get_kvmclock_base_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002457 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002458
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002459 if (vcpu->arch.virtual_tsc_khz) {
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002460 if (data == 0) {
Denis Plotnikovbd8fab32017-04-07 12:09:53 +03002461 /*
2462 * detection of vcpu initialization -- need to sync
2463 * with other vCPUs. This particularly helps to keep
2464 * kvm_clock stable after CPU hotplug
2465 */
2466 synchronizing = true;
2467 } else {
2468 u64 tsc_exp = kvm->arch.last_tsc_write +
2469 nsec_to_cycles(vcpu, elapsed);
2470 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
2471 /*
2472 * Special case: TSC write with a small delta (1 second)
2473 * of virtual cycle time against real time is
2474 * interpreted as an attempt to synchronize the CPU.
2475 */
2476 synchronizing = data < tsc_exp + tsc_hz &&
2477 data + tsc_hz > tsc_exp;
2478 }
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002479 }
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002480
2481 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002482 * For a reliable TSC, we can match TSC offsets, and for an unstable
2483 * TSC, we add elapsed time in this computation. We could let the
2484 * compensation code attempt to catch up if we fall behind, but
2485 * it's better to try to match offsets from the beginning.
2486 */
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002487 if (synchronizing &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002488 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002489 if (!kvm_check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02002490 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002491 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01002492 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002493 data += delta;
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002494 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002495 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002496 matched = true;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002497 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002498 } else {
2499 /*
2500 * We split periods of matched TSC writes into generations.
2501 * For each generation, we track the original measured
2502 * nanosecond time, offset, and write, so if TSCs are in
2503 * sync, we can match exact offset, and if not, we can match
Guo Chao4a969982012-06-28 15:17:27 +08002504 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02002505 *
2506 * These values are tracked in kvm->arch.cur_xxx variables.
2507 */
2508 kvm->arch.cur_tsc_generation++;
2509 kvm->arch.cur_tsc_nsec = ns;
2510 kvm->arch.cur_tsc_write = data;
2511 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002512 matched = false;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002513 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02002514
2515 /*
2516 * We also track th most recent recorded KHZ, write and time to
2517 * allow the matching interval to be extended at each write.
2518 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002519 kvm->arch.last_tsc_nsec = ns;
2520 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002521 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002522
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002523 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02002524
2525 /* Keep track of which generation this VCPU has synchronized to */
2526 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
2527 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
2528 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
2529
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002530 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002531 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002532
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002533 spin_lock_irqsave(&kvm->arch.pvclock_gtod_sync_lock, flags);
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002534 if (!matched) {
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002535 kvm->arch.nr_vcpus_matched_tsc = 0;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002536 } else if (!already_matched) {
2537 kvm->arch.nr_vcpus_matched_tsc++;
2538 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002539
2540 kvm_track_tsc_matching(vcpu);
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002541 spin_unlock_irqrestore(&kvm->arch.pvclock_gtod_sync_lock, flags);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002542}
Zachary Amsdene26101b2012-02-03 15:43:57 -02002543
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002544static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
2545 s64 adjustment)
2546{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07002547 u64 tsc_offset = vcpu->arch.l1_tsc_offset;
Leonid Shatz326e7422018-11-06 12:14:25 +02002548 kvm_vcpu_write_tsc_offset(vcpu, tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002549}
2550
2551static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
2552{
Ilias Stamatis805d7052021-05-26 19:44:09 +01002553 if (vcpu->arch.l1_tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002554 WARN_ON(adjustment < 0);
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002555 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment,
2556 vcpu->arch.l1_tsc_scaling_ratio);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01002557 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002558}
2559
Marcelo Tosattid8281992012-11-27 23:29:01 -02002560#ifdef CONFIG_X86_64
2561
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002562static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002563{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002564 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02002565 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002566
2567 if (likely(ret >= last))
2568 return ret;
2569
2570 /*
2571 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08002572 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02002573 * very likely) and there's a data dependence, so force GCC
2574 * to generate a branch instead. I don't barrier() because
2575 * we don't actually need a barrier, and if this function
2576 * ever gets inlined it will generate worse code.
2577 */
2578 asm volatile ("");
2579 return last;
2580}
2581
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002582static inline u64 vgettsc(struct pvclock_clock *clock, u64 *tsc_timestamp,
2583 int *mode)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002584{
2585 long v;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002586 u64 tsc_pg_val;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002587
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002588 switch (clock->vclock_mode) {
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002589 case VDSO_CLOCKMODE_HVCLOCK:
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002590 tsc_pg_val = hv_read_tsc_page_tsc(hv_get_tsc_page(),
2591 tsc_timestamp);
2592 if (tsc_pg_val != U64_MAX) {
2593 /* TSC page valid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002594 *mode = VDSO_CLOCKMODE_HVCLOCK;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002595 v = (tsc_pg_val - clock->cycle_last) &
2596 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002597 } else {
2598 /* TSC page invalid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002599 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002600 }
2601 break;
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002602 case VDSO_CLOCKMODE_TSC:
2603 *mode = VDSO_CLOCKMODE_TSC;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002604 *tsc_timestamp = read_tsc();
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002605 v = (*tsc_timestamp - clock->cycle_last) &
2606 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002607 break;
2608 default:
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002609 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002610 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002611
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002612 if (*mode == VDSO_CLOCKMODE_NONE)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002613 *tsc_timestamp = v = 0;
2614
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002615 return v * clock->mult;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002616}
2617
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002618static int do_monotonic_raw(s64 *t, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002619{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002620 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002621 unsigned long seq;
2622 int mode;
2623 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002624
Marcelo Tosattid8281992012-11-27 23:29:01 -02002625 do {
2626 seq = read_seqcount_begin(&gtod->seq);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002627 ns = gtod->raw_clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002628 ns += vgettsc(&gtod->raw_clock, tsc_timestamp, &mode);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002629 ns >>= gtod->raw_clock.shift;
2630 ns += ktime_to_ns(ktime_add(gtod->raw_clock.offset, gtod->offs_boot));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002631 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002632 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002633
2634 return mode;
2635}
2636
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002637static int do_realtime(struct timespec64 *ts, u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002638{
2639 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2640 unsigned long seq;
2641 int mode;
2642 u64 ns;
2643
2644 do {
2645 seq = read_seqcount_begin(&gtod->seq);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002646 ts->tv_sec = gtod->wall_time_sec;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002647 ns = gtod->clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002648 ns += vgettsc(&gtod->clock, tsc_timestamp, &mode);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002649 ns >>= gtod->clock.shift;
2650 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
2651
2652 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
2653 ts->tv_nsec = ns;
2654
2655 return mode;
2656}
2657
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002658/* returns true if host is using TSC based clocksource */
2659static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002660{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002661 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002662 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosattid8281992012-11-27 23:29:01 -02002663 return false;
2664
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002665 return gtod_is_based_on_tsc(do_monotonic_raw(kernel_ns,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002666 tsc_timestamp));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002667}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002668
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002669/* returns true if host is using TSC based clocksource */
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002670static bool kvm_get_walltime_and_clockread(struct timespec64 *ts,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002671 u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002672{
2673 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002674 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002675 return false;
2676
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002677 return gtod_is_based_on_tsc(do_realtime(ts, tsc_timestamp));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002678}
Marcelo Tosattid8281992012-11-27 23:29:01 -02002679#endif
2680
2681/*
2682 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002683 * Assuming a stable TSC across physical CPUS, and a stable TSC
2684 * across virtual CPUs, the following condition is possible.
2685 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02002686 * CPUs at the next numbered event.
2687 *
2688 * "timespecX" represents host monotonic time. "tscX" represents
2689 * RDTSC value.
2690 *
2691 * VCPU0 on CPU0 | VCPU1 on CPU1
2692 *
2693 * 1. read timespec0,tsc0
2694 * 2. | timespec1 = timespec0 + N
2695 * | tsc1 = tsc0 + M
2696 * 3. transition to guest | transition to guest
2697 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
2698 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
2699 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
2700 *
2701 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
2702 *
2703 * - ret0 < ret1
2704 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
2705 * ...
2706 * - 0 < N - M => M < N
2707 *
2708 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
2709 * always the case (the difference between two distinct xtime instances
2710 * might be smaller then the difference between corresponding TSC reads,
2711 * when updating guest vcpus pvclock areas).
2712 *
2713 * To avoid that problem, do not allow visibility of distinct
2714 * system_timestamp/tsc_timestamp values simultaneously: use a master
2715 * copy of host monotonic time values. Update that master copy
2716 * in lockstep.
2717 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002718 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02002719 *
2720 */
2721
2722static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
2723{
2724#ifdef CONFIG_X86_64
2725 struct kvm_arch *ka = &kvm->arch;
2726 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002727 bool host_tsc_clocksource, vcpus_matched;
2728
2729 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2730 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002731
2732 /*
2733 * If the host uses TSC clock, then passthrough TSC as stable
2734 * to the guest.
2735 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002736 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02002737 &ka->master_kernel_ns,
2738 &ka->master_cycle_now);
2739
Marcelo Tosatti16a96022014-05-14 12:43:24 -03002740 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Ladi Proseka826faf2017-06-26 09:56:43 +02002741 && !ka->backwards_tsc_observed
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002742 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002743
Marcelo Tosattid8281992012-11-27 23:29:01 -02002744 if (ka->use_master_clock)
2745 atomic_set(&kvm_guest_has_master_clock, 1);
2746
2747 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002748 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
2749 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002750#endif
2751}
2752
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002753void kvm_make_mclock_inprogress_request(struct kvm *kvm)
2754{
2755 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
2756}
2757
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002758static void kvm_gen_update_masterclock(struct kvm *kvm)
2759{
2760#ifdef CONFIG_X86_64
2761 int i;
2762 struct kvm_vcpu *vcpu;
2763 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002764 unsigned long flags;
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002765
Vitaly Kuznetsove880c6e2021-03-16 15:37:34 +01002766 kvm_hv_invalidate_tsc_page(kvm);
2767
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002768 kvm_make_mclock_inprogress_request(kvm);
Paolo Bonzinic2c647f2021-03-25 14:05:11 -04002769
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002770 /* no guest entries from this point */
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002771 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002772 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002773 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002774
2775 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002776 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002777
2778 /* guest entries allowed */
2779 kvm_for_each_vcpu(i, vcpu, kvm)
Radim Krčmář72875d82017-04-26 22:32:19 +02002780 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002781#endif
2782}
2783
Marcelo Tosattie891a322017-04-17 12:51:37 -03002784u64 get_kvmclock_ns(struct kvm *kvm)
Paolo Bonzini108b2492016-09-01 14:21:03 +02002785{
Paolo Bonzini108b2492016-09-01 14:21:03 +02002786 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002787 struct pvclock_vcpu_time_info hv_clock;
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002788 unsigned long flags;
Wanpeng Lie2c22062017-05-11 18:12:05 -07002789 u64 ret;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002790
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002791 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
Paolo Bonzini8b953442016-11-16 18:31:30 +01002792 if (!ka->use_master_clock) {
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002793 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002794 return get_kvmclock_base_ns() + ka->kvmclock_offset;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002795 }
2796
Paolo Bonzini8b953442016-11-16 18:31:30 +01002797 hv_clock.tsc_timestamp = ka->master_cycle_now;
2798 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002799 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Paolo Bonzini8b953442016-11-16 18:31:30 +01002800
Wanpeng Lie2c22062017-05-11 18:12:05 -07002801 /* both __this_cpu_read() and rdtsc() should be on the same cpu */
2802 get_cpu();
2803
Wanpeng Lie70b57a2017-11-20 14:55:05 -08002804 if (__this_cpu_read(cpu_tsc_khz)) {
2805 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
2806 &hv_clock.tsc_shift,
2807 &hv_clock.tsc_to_system_mul);
2808 ret = __pvclock_read_cycles(&hv_clock, rdtsc());
2809 } else
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002810 ret = get_kvmclock_base_ns() + ka->kvmclock_offset;
Wanpeng Lie2c22062017-05-11 18:12:05 -07002811
2812 put_cpu();
2813
2814 return ret;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002815}
2816
Joao Martinsaa096aa2019-02-01 13:01:45 -05002817static void kvm_setup_pvclock_page(struct kvm_vcpu *v,
2818 struct gfn_to_hva_cache *cache,
2819 unsigned int offset)
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002820{
2821 struct kvm_vcpu_arch *vcpu = &v->arch;
2822 struct pvclock_vcpu_time_info guest_hv_clock;
2823
Joao Martinsaa096aa2019-02-01 13:01:45 -05002824 if (unlikely(kvm_read_guest_offset_cached(v->kvm, cache,
2825 &guest_hv_clock, offset, sizeof(guest_hv_clock))))
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002826 return;
2827
2828 /* This VCPU is paused, but it's legal for a guest to read another
2829 * VCPU's kvmclock, so we really have to follow the specification where
2830 * it says that version is odd if data is being modified, and even after
2831 * it is consistent.
2832 *
2833 * Version field updates must be kept separate. This is because
2834 * kvm_write_guest_cached might use a "rep movs" instruction, and
2835 * writes within a string instruction are weakly ordered. So there
2836 * are three writes overall.
2837 *
2838 * As a small optimization, only write the version field in the first
2839 * and third write. The vcpu->pv_time cache is still valid, because the
2840 * version field is the first in the struct.
2841 */
2842 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
2843
Liran Alon51c4b8b2017-11-05 16:11:30 +02002844 if (guest_hv_clock.version & 1)
2845 ++guest_hv_clock.version; /* first time write, random junk */
2846
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002847 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002848 kvm_write_guest_offset_cached(v->kvm, cache,
2849 &vcpu->hv_clock, offset,
2850 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002851
2852 smp_wmb();
2853
2854 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
2855 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
2856
2857 if (vcpu->pvclock_set_guest_stopped_request) {
2858 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
2859 vcpu->pvclock_set_guest_stopped_request = false;
2860 }
2861
2862 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
2863
Joao Martinsaa096aa2019-02-01 13:01:45 -05002864 kvm_write_guest_offset_cached(v->kvm, cache,
2865 &vcpu->hv_clock, offset,
2866 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002867
2868 smp_wmb();
2869
2870 vcpu->hv_clock.version++;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002871 kvm_write_guest_offset_cached(v->kvm, cache,
2872 &vcpu->hv_clock, offset,
2873 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002874}
2875
Zachary Amsden34c238a2010-09-18 14:38:14 -10002876static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002877{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002878 unsigned long flags, tgt_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002879 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002880 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02002881 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002882 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002883 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002884 bool use_master_clock;
2885
2886 kernel_ns = 0;
2887 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002888
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002889 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02002890 * If the host uses TSC clock, then passthrough TSC as stable
2891 * to the guest.
2892 */
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002893 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002894 use_master_clock = ka->use_master_clock;
2895 if (use_master_clock) {
2896 host_tsc = ka->master_cycle_now;
2897 kernel_ns = ka->master_kernel_ns;
2898 }
Paolo Bonzinia83829f2021-03-25 14:11:14 -04002899 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002900
2901 /* Keep irq disabled to prevent changes to the clock */
2902 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002903 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
2904 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002905 local_irq_restore(flags);
2906 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
2907 return 1;
2908 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002909 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002910 host_tsc = rdtsc();
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002911 kernel_ns = get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02002912 }
2913
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002914 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002915
2916 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10002917 * We may have to catch up the TSC to match elapsed wall clock
2918 * time for two reasons, even if kvmclock is used.
2919 * 1) CPU could have been running below the maximum TSC rate
2920 * 2) Broken TSC compensation resets the base at each VCPU
2921 * entry to avoid unknown leaps of TSC even when running
2922 * again on the same CPU. This may cause apparent elapsed
2923 * time to disappear, and the guest to stand still or run
2924 * very slowly.
2925 */
2926 if (vcpu->tsc_catchup) {
2927 u64 tsc = compute_guest_tsc(v, kernel_ns);
2928 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02002929 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002930 tsc_timestamp = tsc;
2931 }
2932 }
2933
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002934 local_irq_restore(flags);
2935
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002936 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10002937
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002938 if (kvm_has_tsc_control)
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002939 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz,
2940 v->arch.l1_tsc_scaling_ratio);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002941
2942 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002943 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002944 &vcpu->hv_clock.tsc_shift,
2945 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002946 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10002947 }
2948
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002949 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10002950 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10002951 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002952
Marcelo Tosattid8281992012-11-27 23:29:01 -02002953 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002954 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002955 if (use_master_clock)
2956 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
2957
Marcelo Tosatti78c03372012-11-27 23:28:47 -02002958 vcpu->hv_clock.flags = pvclock_flags;
2959
Paolo Bonzini095cf552016-02-08 12:54:12 +01002960 if (vcpu->pv_time_enabled)
Joao Martinsaa096aa2019-02-01 13:01:45 -05002961 kvm_setup_pvclock_page(v, &vcpu->pv_time, 0);
2962 if (vcpu->xen.vcpu_info_set)
2963 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_info_cache,
2964 offsetof(struct compat_vcpu_info, time));
Joao Martinsf2340cd2018-07-23 11:20:57 -04002965 if (vcpu->xen.vcpu_time_info_set)
2966 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_time_info_cache, 0);
Paolo Bonzini095cf552016-02-08 12:54:12 +01002967 if (v == kvm_get_vcpu(v->kvm, 0))
2968 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10002969 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002970}
2971
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002972/*
2973 * kvmclock updates which are isolated to a given vcpu, such as
2974 * vcpu->cpu migration, should not allow system_timestamp from
2975 * the rest of the vcpus to remain static. Otherwise ntp frequency
2976 * correction applies to one vcpu's system_timestamp but not
2977 * the others.
2978 *
2979 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01002980 * We need to rate-limit these requests though, as they can
2981 * considerably slow guests that have a large number of vcpus.
2982 * The time for a remote vcpu to update its kvmclock is bound
2983 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002984 */
2985
Andrew Jones7e44e442014-02-28 12:52:54 +01002986#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
2987
2988static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002989{
2990 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01002991 struct delayed_work *dwork = to_delayed_work(work);
2992 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
2993 kvmclock_update_work);
2994 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002995 struct kvm_vcpu *vcpu;
2996
2997 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002998 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002999 kvm_vcpu_kick(vcpu);
3000 }
3001}
3002
Andrew Jones7e44e442014-02-28 12:52:54 +01003003static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
3004{
3005 struct kvm *kvm = v->kvm;
3006
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003007 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01003008 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
3009 KVMCLOCK_UPDATE_DELAY);
3010}
3011
Andrew Jones332967a2014-02-28 12:52:55 +01003012#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
3013
3014static void kvmclock_sync_fn(struct work_struct *work)
3015{
3016 struct delayed_work *dwork = to_delayed_work(work);
3017 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3018 kvmclock_sync_work);
3019 struct kvm *kvm = container_of(ka, struct kvm, arch);
3020
Marcelo Tosatti630994b2015-05-12 22:42:04 -03003021 if (!kvmclock_periodic_sync)
3022 return;
3023
Andrew Jones332967a2014-02-28 12:52:55 +01003024 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
3025 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
3026 KVMCLOCK_SYNC_PERIOD);
3027}
3028
Borislav Petkov191c8132019-04-18 18:32:50 +02003029/*
3030 * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP.
3031 */
3032static bool can_set_mci_status(struct kvm_vcpu *vcpu)
3033{
3034 /* McStatusWrEn enabled? */
Sean Christopherson23493d02020-03-04 17:34:33 -08003035 if (guest_cpuid_is_amd_or_hygon(vcpu))
Borislav Petkov191c8132019-04-18 18:32:50 +02003036 return !!(vcpu->arch.msr_hwcr & BIT_ULL(18));
3037
3038 return false;
3039}
3040
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003041static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Huang Ying890ca9a2009-05-11 16:48:15 +08003042{
3043 u64 mcg_cap = vcpu->arch.mcg_cap;
3044 unsigned bank_num = mcg_cap & 0xff;
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003045 u32 msr = msr_info->index;
3046 u64 data = msr_info->data;
Huang Ying890ca9a2009-05-11 16:48:15 +08003047
3048 switch (msr) {
3049 case MSR_IA32_MCG_STATUS:
3050 vcpu->arch.mcg_status = data;
3051 break;
3052 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003053 if (!(mcg_cap & MCG_CTL_P) &&
3054 (data || !msr_info->host_initiated))
Huang Ying890ca9a2009-05-11 16:48:15 +08003055 return 1;
3056 if (data != 0 && data != ~(u64)0)
Paolo Bonzini44883f02018-07-26 13:01:52 +02003057 return 1;
Huang Ying890ca9a2009-05-11 16:48:15 +08003058 vcpu->arch.mcg_ctl = data;
3059 break;
3060 default:
3061 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003062 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003063 u32 offset = array_index_nospec(
3064 msr - MSR_IA32_MC0_CTL,
3065 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3066
Andre Przywara114be422010-03-24 17:46:42 +01003067 /* only 0 or all 1s can be written to IA32_MCi_CTL
3068 * some Linux kernels though clear bit 10 in bank 4 to
3069 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
3070 * this to avoid an uncatched #GP in the guest
3071 */
Huang Ying890ca9a2009-05-11 16:48:15 +08003072 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01003073 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08003074 return -1;
Borislav Petkov191c8132019-04-18 18:32:50 +02003075
3076 /* MCi_STATUS */
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003077 if (!msr_info->host_initiated &&
Borislav Petkov191c8132019-04-18 18:32:50 +02003078 (offset & 0x3) == 1 && data != 0) {
3079 if (!can_set_mci_status(vcpu))
3080 return -1;
3081 }
3082
Huang Ying890ca9a2009-05-11 16:48:15 +08003083 vcpu->arch.mce_banks[offset] = data;
3084 break;
3085 }
3086 return 1;
3087 }
3088 return 0;
3089}
3090
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003091static inline bool kvm_pv_async_pf_enabled(struct kvm_vcpu *vcpu)
3092{
3093 u64 mask = KVM_ASYNC_PF_ENABLED | KVM_ASYNC_PF_DELIVERY_AS_INT;
3094
3095 return (vcpu->arch.apf.msr_en_val & mask) == mask;
3096}
3097
Gleb Natapov344d9582010-10-14 11:22:50 +02003098static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
3099{
3100 gpa_t gpa = data & ~0x3f;
3101
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003102 /* Bits 4:5 are reserved, Should be zero */
3103 if (data & 0x30)
Gleb Natapov344d9582010-10-14 11:22:50 +02003104 return 1;
3105
Oliver Upton66570e92020-08-18 15:24:28 +00003106 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_VMEXIT) &&
3107 (data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT))
3108 return 1;
3109
3110 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT) &&
3111 (data & KVM_ASYNC_PF_DELIVERY_AS_INT))
3112 return 1;
3113
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003114 if (!lapic_in_kernel(vcpu))
Vitaly Kuznetsovd831de12020-09-11 11:31:47 +02003115 return data ? 1 : 0;
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003116
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003117 vcpu->arch.apf.msr_en_val = data;
Gleb Natapov344d9582010-10-14 11:22:50 +02003118
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003119 if (!kvm_pv_async_pf_enabled(vcpu)) {
Gleb Natapov344d9582010-10-14 11:22:50 +02003120 kvm_clear_async_pf_completion_queue(vcpu);
3121 kvm_async_pf_hash_reset(vcpu);
3122 return 0;
3123 }
3124
Paolo Bonzini4e335d92017-05-02 16:20:18 +02003125 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003126 sizeof(u64)))
Gleb Natapov344d9582010-10-14 11:22:50 +02003127 return 1;
3128
Gleb Natapov6adba522010-10-14 11:22:55 +02003129 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Wanpeng Li52a5c152017-07-13 18:30:42 -07003130 vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003131
Gleb Natapov344d9582010-10-14 11:22:50 +02003132 kvm_async_pf_wakeup_all(vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003133
3134 return 0;
3135}
3136
3137static int kvm_pv_enable_async_pf_int(struct kvm_vcpu *vcpu, u64 data)
3138{
3139 /* Bits 8-63 are reserved */
3140 if (data >> 8)
3141 return 1;
3142
3143 if (!lapic_in_kernel(vcpu))
3144 return 1;
3145
3146 vcpu->arch.apf.msr_int_val = data;
3147
3148 vcpu->arch.apf.vec = data & KVM_ASYNC_PF_VEC_MASK;
3149
Gleb Natapov344d9582010-10-14 11:22:50 +02003150 return 0;
3151}
3152
Glauber Costa12f9a482011-02-01 14:16:40 -05003153static void kvmclock_reset(struct kvm_vcpu *vcpu)
3154{
Andy Honig0b794592013-02-20 14:48:10 -08003155 vcpu->arch.pv_time_enabled = false;
Paolo Bonzini49dedf02019-10-10 12:49:22 +02003156 vcpu->arch.time = 0;
Glauber Costa12f9a482011-02-01 14:16:40 -05003157}
3158
Sean Christopherson77809382020-03-20 14:28:18 -07003159static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003160{
3161 ++vcpu->stat.tlb_flush;
Jason Baronb36464772021-01-14 22:27:56 -05003162 static_call(kvm_x86_tlb_flush_all)(vcpu);
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003163}
3164
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003165static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
3166{
3167 ++vcpu->stat.tlb_flush;
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003168
3169 if (!tdp_enabled) {
3170 /*
3171 * A TLB flush on behalf of the guest is equivalent to
3172 * INVPCID(all), toggling CR4.PGE, etc., which requires
3173 * a forced sync of the shadow page tables. Unload the
3174 * entire MMU here and the subsequent load will sync the
3175 * shadow page tables, and also flush the TLB.
3176 */
3177 kvm_mmu_unload(vcpu);
3178 return;
3179 }
3180
Jason Baronb36464772021-01-14 22:27:56 -05003181 static_call(kvm_x86_tlb_flush_guest)(vcpu);
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003182}
3183
Glauber Costac9aaa892011-07-11 15:28:14 -04003184static void record_steal_time(struct kvm_vcpu *vcpu)
3185{
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003186 struct kvm_host_map map;
3187 struct kvm_steal_time *st;
3188
David Woodhouse30b5c852021-03-01 12:53:09 +00003189 if (kvm_xen_msr_enabled(vcpu->kvm)) {
3190 kvm_xen_runstate_set_running(vcpu);
3191 return;
3192 }
3193
Glauber Costac9aaa892011-07-11 15:28:14 -04003194 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
3195 return;
3196
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003197 /* -EAGAIN is returned in atomic context so we can just return. */
3198 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT,
3199 &map, &vcpu->arch.st.cache, false))
Glauber Costac9aaa892011-07-11 15:28:14 -04003200 return;
3201
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003202 st = map.hva +
3203 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
3204
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003205 /*
3206 * Doing a TLB flush here, on the guest's behalf, can avoid
3207 * expensive IPIs.
3208 */
Oliver Upton66570e92020-08-18 15:24:28 +00003209 if (guest_pv_has(vcpu, KVM_FEATURE_PV_TLB_FLUSH)) {
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003210 u8 st_preempted = xchg(&st->preempted, 0);
3211
Oliver Upton66570e92020-08-18 15:24:28 +00003212 trace_kvm_pv_tlb_flush(vcpu->vcpu_id,
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003213 st_preempted & KVM_VCPU_FLUSH_TLB);
3214 if (st_preempted & KVM_VCPU_FLUSH_TLB)
Oliver Upton66570e92020-08-18 15:24:28 +00003215 kvm_vcpu_flush_tlb_guest(vcpu);
Wanpeng Li1eff0ad2021-05-18 05:00:33 -07003216 } else {
3217 st->preempted = 0;
Oliver Upton66570e92020-08-18 15:24:28 +00003218 }
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003219
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00003220 vcpu->arch.st.preempted = 0;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003221
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003222 if (st->version & 1)
3223 st->version += 1; /* first time write, random junk */
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003224
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003225 st->version += 1;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003226
3227 smp_wmb();
3228
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003229 st->steal += current->sched_info.run_delay -
Liang Chenc54cdf12016-03-16 19:33:16 +08003230 vcpu->arch.st.last_steal;
3231 vcpu->arch.st.last_steal = current->sched_info.run_delay;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003232
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003233 smp_wmb();
3234
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003235 st->version += 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003236
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003237 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, false);
Glauber Costac9aaa892011-07-11 15:28:14 -04003238}
3239
Will Auld8fe8ab42012-11-29 12:42:12 -08003240int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003241{
Gleb Natapov57537852012-01-15 14:17:22 +02003242 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08003243 u32 msr = msr_info->index;
3244 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02003245
Joao Martins1232f8e2018-06-13 06:10:37 -04003246 if (msr && msr == vcpu->kvm->arch.xen_hvm_config.msr)
Joao Martins23200b72018-06-13 09:55:44 -04003247 return kvm_xen_write_hypercall_page(vcpu, data);
Joao Martins1232f8e2018-06-13 06:10:37 -04003248
Carsten Otte15c4a642007-10-30 18:44:17 +01003249 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01003250 case MSR_AMD64_NB_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003251 case MSR_IA32_UCODE_WRITE:
3252 case MSR_VM_HSAVE_PA:
3253 case MSR_AMD64_PATCH_LOADER:
3254 case MSR_AMD64_BU_CFG2:
Ladi Prosek405a3532017-04-06 15:22:20 +02003255 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003256 case MSR_F15H_EX_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003257 break;
3258
Wanpeng Li518e7b92018-02-28 14:03:31 +08003259 case MSR_IA32_UCODE_REV:
3260 if (msr_info->host_initiated)
3261 vcpu->arch.microcode_version = data;
3262 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003263 case MSR_IA32_ARCH_CAPABILITIES:
3264 if (!msr_info->host_initiated)
3265 return 1;
3266 vcpu->arch.arch_capabilities = data;
3267 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003268 case MSR_IA32_PERF_CAPABILITIES: {
3269 struct kvm_msr_entry msr_ent = {.index = msr, .data = 0};
3270
3271 if (!msr_info->host_initiated)
3272 return 1;
3273 if (guest_cpuid_has(vcpu, X86_FEATURE_PDCM) && kvm_get_msr_feature(&msr_ent))
3274 return 1;
3275 if (data & ~msr_ent.data)
3276 return 1;
3277
3278 vcpu->arch.perf_capabilities = data;
3279
3280 return 0;
3281 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003282 case MSR_EFER:
Sean Christopherson11988492019-04-02 08:19:15 -07003283 return set_efer(vcpu, msr_info);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003284 case MSR_K7_HWCR:
3285 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01003286 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08003287 data &= ~(u64)0x8; /* ignore TLB cache disable */
Borislav Petkov191c8132019-04-18 18:32:50 +02003288
3289 /* Handle McStatusWrEn */
3290 if (data == BIT_ULL(18)) {
3291 vcpu->arch.msr_hwcr = data;
3292 } else if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003293 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
3294 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003295 return 1;
3296 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003297 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003298 case MSR_FAM10H_MMIO_CONF_BASE:
3299 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003300 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
3301 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003302 return 1;
3303 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003304 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03003305 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003306 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003307 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01003308 return kvm_set_apic_base(vcpu, msr_info);
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003309 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03003310 return kvm_x2apic_msr_write(vcpu, msr, data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003311 case MSR_IA32_TSC_DEADLINE:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003312 kvm_set_lapic_tscdeadline_msr(vcpu, data);
3313 break;
Will Auldba904632012-11-29 12:42:50 -08003314 case MSR_IA32_TSC_ADJUST:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003315 if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) {
Will Auldba904632012-11-29 12:42:50 -08003316 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06003317 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08003318 adjust_tsc_offset_guest(vcpu, adj);
Will Auldba904632012-11-29 12:42:50 -08003319 }
3320 vcpu->arch.ia32_tsc_adjust_msr = data;
3321 }
3322 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003323 case MSR_IA32_MISC_ENABLE:
Wanpeng Li511a85562019-05-21 14:06:54 +08003324 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) &&
3325 ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) {
3326 if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3))
3327 return 1;
3328 vcpu->arch.ia32_misc_enable_msr = data;
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08003329 kvm_update_cpuid_runtime(vcpu);
Wanpeng Li511a85562019-05-21 14:06:54 +08003330 } else {
3331 vcpu->arch.ia32_misc_enable_msr = data;
3332 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003333 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003334 case MSR_IA32_SMBASE:
3335 if (!msr_info->host_initiated)
3336 return 1;
3337 vcpu->arch.smbase = data;
3338 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003339 case MSR_IA32_POWER_CTL:
3340 vcpu->arch.msr_ia32_power_ctl = data;
3341 break;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003342 case MSR_IA32_TSC:
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003343 if (msr_info->host_initiated) {
3344 kvm_synchronize_tsc(vcpu, data);
3345 } else {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01003346 u64 adj = kvm_compute_l1_tsc_offset(vcpu, data) - vcpu->arch.l1_tsc_offset;
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003347 adjust_tsc_offset_guest(vcpu, adj);
3348 vcpu->arch.ia32_tsc_adjust_msr += adj;
3349 }
Paolo Bonzinidd259932018-04-13 11:38:35 +02003350 break;
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003351 case MSR_IA32_XSS:
3352 if (!msr_info->host_initiated &&
3353 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3354 return 1;
3355 /*
Sean Christophersona1bead22020-03-02 15:57:00 -08003356 * KVM supports exposing PT to the guest, but does not support
3357 * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than
3358 * XSAVES/XRSTORS to save/restore PT MSRs.
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003359 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01003360 if (data & ~supported_xss)
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003361 return 1;
3362 vcpu->arch.ia32_xss = data;
3363 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003364 case MSR_SMI_COUNT:
3365 if (!msr_info->host_initiated)
3366 return 1;
3367 vcpu->arch.smi_count = data;
3368 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003369 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003370 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3371 return 1;
3372
Joao Martins629b5342018-06-28 15:06:43 -04003373 vcpu->kvm->arch.wall_clock = data;
3374 kvm_write_wall_clock(vcpu->kvm, data, 0);
Oliver Upton66570e92020-08-18 15:24:28 +00003375 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003376 case MSR_KVM_WALL_CLOCK:
Oliver Upton66570e92020-08-18 15:24:28 +00003377 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3378 return 1;
3379
Joao Martins629b5342018-06-28 15:06:43 -04003380 vcpu->kvm->arch.wall_clock = data;
3381 kvm_write_wall_clock(vcpu->kvm, data, 0);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003382 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003383 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003384 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3385 return 1;
3386
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003387 kvm_write_system_time(vcpu, data, false, msr_info->host_initiated);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003388 break;
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003389 case MSR_KVM_SYSTEM_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003390 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3391 return 1;
3392
3393 kvm_write_system_time(vcpu, data, true, msr_info->host_initiated);
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003394 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003395 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003396 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3397 return 1;
3398
Gleb Natapov344d9582010-10-14 11:22:50 +02003399 if (kvm_pv_enable_async_pf(vcpu, data))
3400 return 1;
3401 break;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003402 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton66570e92020-08-18 15:24:28 +00003403 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3404 return 1;
3405
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003406 if (kvm_pv_enable_async_pf_int(vcpu, data))
3407 return 1;
3408 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003409 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003410 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton66570e92020-08-18 15:24:28 +00003411 return 1;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003412 if (data & 0x1) {
3413 vcpu->arch.apf.pageready_pending = false;
3414 kvm_check_async_pf_completion(vcpu);
3415 }
3416 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003417 case MSR_KVM_STEAL_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003418 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3419 return 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003420
3421 if (unlikely(!sched_info_on()))
3422 return 1;
3423
3424 if (data & KVM_STEAL_RESERVED_MASK)
3425 return 1;
3426
Glauber Costac9aaa892011-07-11 15:28:14 -04003427 vcpu->arch.st.msr_val = data;
3428
3429 if (!(data & KVM_MSR_ENABLED))
3430 break;
3431
Glauber Costac9aaa892011-07-11 15:28:14 -04003432 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
3433
3434 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003435 case MSR_KVM_PV_EOI_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003436 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3437 return 1;
3438
Ladi Prosek72bbf932018-10-16 18:49:59 +02003439 if (kvm_lapic_enable_pv_eoi(vcpu, data, sizeof(u8)))
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003440 return 1;
3441 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003442
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003443 case MSR_KVM_POLL_CONTROL:
Oliver Upton66570e92020-08-18 15:24:28 +00003444 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3445 return 1;
3446
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003447 /* only enable bit supported */
3448 if (data & (-1ULL << 1))
3449 return 1;
3450
3451 vcpu->arch.msr_kvm_poll_control = data;
3452 break;
3453
Huang Ying890ca9a2009-05-11 16:48:15 +08003454 case MSR_IA32_MCG_CTL:
3455 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003456 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003457 return set_msr_mce(vcpu, msr_info);
Andre Przywara71db6022009-06-12 22:01:29 +02003458
Wei Huang6912ac32015-06-12 01:34:56 -04003459 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3460 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003461 pr = true;
3462 fallthrough;
Wei Huang6912ac32015-06-12 01:34:56 -04003463 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3464 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003465 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003466 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02003467
3468 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03003469 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
3470 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02003471 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003472 case MSR_K7_CLK_CTL:
3473 /*
3474 * Ignore all writes to this no longer documented MSR.
3475 * Writes are only relevant for old K7 processors,
3476 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08003477 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003478 * affected processor models on the command line, hence
3479 * the need to ignore the workaround.
3480 */
3481 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003482 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003483 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3484 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003485 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3486 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003487 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003488 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3489 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3490 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003491 return kvm_hv_set_msr_common(vcpu, msr, data,
3492 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003493 case MSR_IA32_BBL_CR_CTL3:
3494 /* Drop writes to this legacy MSR -- see rdmsr
3495 * counterpart for further detail.
3496 */
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02003497 if (report_ignored_msrs)
3498 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
3499 msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05003500 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003501 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003502 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003503 return 1;
3504 vcpu->arch.osvw.length = data;
3505 break;
3506 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003507 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003508 return 1;
3509 vcpu->arch.osvw.status = data;
3510 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003511 case MSR_PLATFORM_INFO:
3512 if (!msr_info->host_initiated ||
Kyle Hueydb2336a2017-03-20 01:16:28 -07003513 (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) &&
3514 cpuid_fault_enabled(vcpu)))
3515 return 1;
3516 vcpu->arch.msr_platform_info = data;
3517 break;
3518 case MSR_MISC_FEATURES_ENABLES:
3519 if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT ||
3520 (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT &&
3521 !supports_cpuid_fault(vcpu)))
3522 return 1;
3523 vcpu->arch.msr_misc_features_enables = data;
3524 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003525 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003526 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003527 return kvm_pmu_set_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003528 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003529 }
3530 return 0;
3531}
3532EXPORT_SYMBOL_GPL(kvm_set_msr_common);
3533
Paolo Bonzini44883f02018-07-26 13:01:52 +02003534static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003535{
3536 u64 data;
3537 u64 mcg_cap = vcpu->arch.mcg_cap;
3538 unsigned bank_num = mcg_cap & 0xff;
3539
3540 switch (msr) {
3541 case MSR_IA32_P5_MC_ADDR:
3542 case MSR_IA32_P5_MC_TYPE:
3543 data = 0;
3544 break;
3545 case MSR_IA32_MCG_CAP:
3546 data = vcpu->arch.mcg_cap;
3547 break;
3548 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003549 if (!(mcg_cap & MCG_CTL_P) && !host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003550 return 1;
3551 data = vcpu->arch.mcg_ctl;
3552 break;
3553 case MSR_IA32_MCG_STATUS:
3554 data = vcpu->arch.mcg_status;
3555 break;
3556 default:
3557 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003558 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003559 u32 offset = array_index_nospec(
3560 msr - MSR_IA32_MC0_CTL,
3561 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3562
Huang Ying890ca9a2009-05-11 16:48:15 +08003563 data = vcpu->arch.mce_banks[offset];
3564 break;
3565 }
3566 return 1;
3567 }
3568 *pdata = data;
3569 return 0;
3570}
3571
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003572int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003573{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003574 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01003575 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01003576 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02003577 case MSR_IA32_LASTBRANCHFROMIP:
3578 case MSR_IA32_LASTBRANCHTOIP:
3579 case MSR_IA32_LASTINTFROMIP:
3580 case MSR_IA32_LASTINTTOIP:
Brijesh Singh059e5c32021-04-27 06:16:36 -05003581 case MSR_AMD64_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02003582 case MSR_K8_TSEG_ADDR:
3583 case MSR_K8_TSEG_MASK:
Avi Kivity61a6bd62008-12-29 17:32:28 +02003584 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02003585 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02003586 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003587 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003588 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03003589 case MSR_IA32_PERF_CTL:
Ladi Prosek405a3532017-04-06 15:22:20 +02003590 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003591 case MSR_F15H_EX_CFG:
Venkatesh Srinivas2ca1a062020-04-16 11:42:54 -07003592 /*
3593 * Intel Sandy Bridge CPUs must support the RAPL (running average power
3594 * limit) MSRs. Just return 0, as we do not want to expose the host
3595 * data here. Do not conditionalize this on CPUID, as KVM does not do
3596 * so for existing CPU-specific MSRs.
3597 */
3598 case MSR_RAPL_POWER_UNIT:
3599 case MSR_PP0_ENERGY_STATUS: /* Power plane 0 (core) */
3600 case MSR_PP1_ENERGY_STATUS: /* Power plane 1 (graphics uncore) */
3601 case MSR_PKG_ENERGY_STATUS: /* Total package */
3602 case MSR_DRAM_ENERGY_STATUS: /* DRAM controller */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003603 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01003604 break;
Janakarajan Natarajanc51eb522018-02-05 13:24:52 -06003605 case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5:
Vitaly Kuznetsovc28fa562021-03-29 14:48:04 +02003606 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
3607 return kvm_pmu_get_msr(vcpu, msr_info);
3608 if (!msr_info->host_initiated)
3609 return 1;
3610 msr_info->data = 0;
3611 break;
Wei Huang6912ac32015-06-12 01:34:56 -04003612 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3613 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3614 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
3615 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003616 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003617 return kvm_pmu_get_msr(vcpu, msr_info);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003618 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02003619 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003620 case MSR_IA32_UCODE_REV:
Wanpeng Li518e7b92018-02-28 14:03:31 +08003621 msr_info->data = vcpu->arch.microcode_version;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003622 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003623 case MSR_IA32_ARCH_CAPABILITIES:
3624 if (!msr_info->host_initiated &&
3625 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3626 return 1;
3627 msr_info->data = vcpu->arch.arch_capabilities;
3628 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003629 case MSR_IA32_PERF_CAPABILITIES:
3630 if (!msr_info->host_initiated &&
3631 !guest_cpuid_has(vcpu, X86_FEATURE_PDCM))
3632 return 1;
3633 msr_info->data = vcpu->arch.perf_capabilities;
3634 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003635 case MSR_IA32_POWER_CTL:
3636 msr_info->data = vcpu->arch.msr_ia32_power_ctl;
3637 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003638 case MSR_IA32_TSC: {
3639 /*
3640 * Intel SDM states that MSR_IA32_TSC read adds the TSC offset
3641 * even when not intercepted. AMD manual doesn't explicitly
3642 * state this but appears to behave the same.
3643 *
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003644 * On userspace reads and writes, however, we unconditionally
Paolo Bonzinic0623f52020-10-21 18:05:58 -04003645 * return L1's TSC value to ensure backwards-compatible
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003646 * behavior for migration.
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003647 */
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003648 u64 offset, ratio;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003649
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003650 if (msr_info->host_initiated) {
3651 offset = vcpu->arch.l1_tsc_offset;
3652 ratio = vcpu->arch.l1_tsc_scaling_ratio;
3653 } else {
3654 offset = vcpu->arch.tsc_offset;
3655 ratio = vcpu->arch.tsc_scaling_ratio;
3656 }
3657
3658 msr_info->data = kvm_scale_tsc(vcpu, rdtsc(), ratio) + offset;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003659 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003660 }
Avi Kivity9ba075a2008-05-26 20:06:35 +03003661 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03003662 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003663 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003664 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003665 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01003666 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02003667 /*
3668 * MSR_EBC_FREQUENCY_ID
3669 * Conservative value valid for even the basic CPU models.
3670 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
3671 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
3672 * and 266MHz for model 3, or 4. Set Core Clock
3673 * Frequency to System Bus Frequency Ratio to 1 (bits
3674 * 31:24) even though these are only valid for CPU
3675 * models > 2, however guests may end up dividing or
3676 * multiplying by zero otherwise.
3677 */
3678 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003679 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02003680 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003681 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003682 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01003683 break;
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003684 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003685 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003686 case MSR_IA32_TSC_DEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003687 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003688 break;
Will Auldba904632012-11-29 12:42:50 -08003689 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003690 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08003691 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003692 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003693 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01003694 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003695 case MSR_IA32_SMBASE:
3696 if (!msr_info->host_initiated)
3697 return 1;
3698 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01003699 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003700 case MSR_SMI_COUNT:
3701 msr_info->data = vcpu->arch.smi_count;
3702 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003703 case MSR_IA32_PERF_STATUS:
3704 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003705 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003706 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08003707 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01003708 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003709 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003710 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01003711 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003712 case MSR_KVM_WALL_CLOCK:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003713 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3714 return 1;
3715
3716 msr_info->data = vcpu->kvm->arch.wall_clock;
3717 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003718 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003719 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3720 return 1;
3721
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003722 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003723 break;
3724 case MSR_KVM_SYSTEM_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003725 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3726 return 1;
3727
3728 msr_info->data = vcpu->arch.time;
3729 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003730 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003731 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3732 return 1;
3733
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003734 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003735 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003736 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003737 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3738 return 1;
3739
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003740 msr_info->data = vcpu->arch.apf.msr_en_val;
3741 break;
3742 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003743 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3744 return 1;
3745
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003746 msr_info->data = vcpu->arch.apf.msr_int_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02003747 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003748 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003749 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton1930e5d2020-10-27 16:10:41 -07003750 return 1;
3751
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003752 msr_info->data = 0;
3753 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003754 case MSR_KVM_STEAL_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003755 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3756 return 1;
3757
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003758 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04003759 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003760 case MSR_KVM_PV_EOI_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003761 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3762 return 1;
3763
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003764 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003765 break;
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003766 case MSR_KVM_POLL_CONTROL:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003767 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3768 return 1;
3769
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003770 msr_info->data = vcpu->arch.msr_kvm_poll_control;
3771 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003772 case MSR_IA32_P5_MC_ADDR:
3773 case MSR_IA32_P5_MC_TYPE:
3774 case MSR_IA32_MCG_CAP:
3775 case MSR_IA32_MCG_CTL:
3776 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003777 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003778 return get_msr_mce(vcpu, msr_info->index, &msr_info->data,
3779 msr_info->host_initiated);
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003780 case MSR_IA32_XSS:
3781 if (!msr_info->host_initiated &&
3782 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3783 return 1;
3784 msr_info->data = vcpu->arch.ia32_xss;
3785 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003786 case MSR_K7_CLK_CTL:
3787 /*
3788 * Provide expected ramp-up count for K7. All other
3789 * are set to zero, indicating minimum divisors for
3790 * every field.
3791 *
3792 * This prevents guest kernels on AMD host with CPU
3793 * type 6, model 8 and higher from exploding due to
3794 * the rdmsr failing.
3795 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003796 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003797 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003798 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003799 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3800 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003801 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3802 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003803 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003804 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3805 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3806 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine83d5882015-07-03 15:01:34 +03003807 return kvm_hv_get_msr_common(vcpu,
Paolo Bonzini44883f02018-07-26 13:01:52 +02003808 msr_info->index, &msr_info->data,
3809 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003810 case MSR_IA32_BBL_CR_CTL3:
3811 /* This legacy MSR exists but isn't fully documented in current
3812 * silicon. It is however accessed by winxp in very narrow
3813 * scenarios where it sets bit #19, itself documented as
3814 * a "reserved" bit. Best effort attempt to source coherent
3815 * read data here should the balance of the register be
3816 * interpreted by the guest:
3817 *
3818 * L2 cache control register 3: 64GB range, 256KB size,
3819 * enabled, latency 0x1, configured
3820 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003821 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05003822 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003823 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003824 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003825 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003826 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003827 break;
3828 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003829 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003830 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003831 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003832 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003833 case MSR_PLATFORM_INFO:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07003834 if (!msr_info->host_initiated &&
3835 !vcpu->kvm->arch.guest_can_read_msr_platform_info)
3836 return 1;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003837 msr_info->data = vcpu->arch.msr_platform_info;
3838 break;
3839 case MSR_MISC_FEATURES_ENABLES:
3840 msr_info->data = vcpu->arch.msr_misc_features_enables;
3841 break;
Borislav Petkov191c8132019-04-18 18:32:50 +02003842 case MSR_K7_HWCR:
3843 msr_info->data = vcpu->arch.msr_hwcr;
3844 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003845 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003846 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003847 return kvm_pmu_get_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003848 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003849 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003850 return 0;
3851}
3852EXPORT_SYMBOL_GPL(kvm_get_msr_common);
3853
Carsten Otte313a3dc2007-10-11 19:16:52 +02003854/*
3855 * Read or write a bunch of msrs. All parameters are kernel addresses.
3856 *
3857 * @return number of msrs set successfully.
3858 */
3859static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
3860 struct kvm_msr_entry *entries,
3861 int (*do_msr)(struct kvm_vcpu *vcpu,
3862 unsigned index, u64 *data))
3863{
Tom Lendacky801e4592018-02-21 13:39:51 -06003864 int i;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003865
Carsten Otte313a3dc2007-10-11 19:16:52 +02003866 for (i = 0; i < msrs->nmsrs; ++i)
3867 if (do_msr(vcpu, entries[i].index, &entries[i].data))
3868 break;
3869
Carsten Otte313a3dc2007-10-11 19:16:52 +02003870 return i;
3871}
3872
3873/*
3874 * Read or write a bunch of msrs. Parameters are user addresses.
3875 *
3876 * @return number of msrs set successfully.
3877 */
3878static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
3879 int (*do_msr)(struct kvm_vcpu *vcpu,
3880 unsigned index, u64 *data),
3881 int writeback)
3882{
3883 struct kvm_msrs msrs;
3884 struct kvm_msr_entry *entries;
3885 int r, n;
3886 unsigned size;
3887
3888 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003889 if (copy_from_user(&msrs, user_msrs, sizeof(msrs)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003890 goto out;
3891
3892 r = -E2BIG;
3893 if (msrs.nmsrs >= MAX_IO_MSRS)
3894 goto out;
3895
Carsten Otte313a3dc2007-10-11 19:16:52 +02003896 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003897 entries = memdup_user(user_msrs->entries, size);
3898 if (IS_ERR(entries)) {
3899 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003900 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003901 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003902
3903 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
3904 if (r < 0)
3905 goto out_free;
3906
3907 r = -EFAULT;
3908 if (writeback && copy_to_user(user_msrs->entries, entries, size))
3909 goto out_free;
3910
3911 r = n;
3912
3913out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03003914 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003915out:
3916 return r;
3917}
3918
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003919static inline bool kvm_can_mwait_in_guest(void)
3920{
3921 return boot_cpu_has(X86_FEATURE_MWAIT) &&
KarimAllah Ahmed8e9b29b2018-04-11 11:16:03 +02003922 !boot_cpu_has_bug(X86_BUG_MONITOR) &&
3923 boot_cpu_has(X86_FEATURE_ARAT);
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003924}
3925
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02003926static int kvm_ioctl_get_supported_hv_cpuid(struct kvm_vcpu *vcpu,
3927 struct kvm_cpuid2 __user *cpuid_arg)
3928{
3929 struct kvm_cpuid2 cpuid;
3930 int r;
3931
3932 r = -EFAULT;
3933 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
3934 return r;
3935
3936 r = kvm_get_hv_cpuid(vcpu, &cpuid, cpuid_arg->entries);
3937 if (r)
3938 return r;
3939
3940 r = -EFAULT;
3941 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
3942 return r;
3943
3944 return 0;
3945}
3946
Alexander Graf784aa3d2014-07-14 18:27:35 +02003947int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003948{
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003949 int r = 0;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003950
3951 switch (ext) {
3952 case KVM_CAP_IRQCHIP:
3953 case KVM_CAP_HLT:
3954 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003955 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02003956 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02003957 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01003958 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08003959 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05003960 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03003961 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03003962 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08003963 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003964 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02003965 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003966 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03003967 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003968 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04003969 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08003970 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003971 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003972 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02003973 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02003974 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003975 case KVM_CAP_HYPERV_SYNIC:
Roman Kaganefc479e2017-06-22 16:51:01 +03003976 case KVM_CAP_HYPERV_SYNIC2:
Roman Kagand3457c82017-07-14 17:13:20 +03003977 case KVM_CAP_HYPERV_VP_INDEX:
Roman Kaganfaeb7832018-02-01 16:48:32 +03003978 case KVM_CAP_HYPERV_EVENTFD:
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02003979 case KVM_CAP_HYPERV_TLBFLUSH:
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02003980 case KVM_CAP_HYPERV_SEND_IPI:
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01003981 case KVM_CAP_HYPERV_CPUID:
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02003982 case KVM_CAP_HYPERV_ENFORCE_CPUID:
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02003983 case KVM_CAP_SYS_HYPERV_CPUID:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08003984 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003985 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01003986 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003987 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02003988 case KVM_CAP_ASYNC_PF:
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +02003989 case KVM_CAP_ASYNC_PF_INT:
Joerg Roedel92a1f122011-03-25 09:44:51 +01003990 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003991 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08003992 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01003993 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05003994 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01003995 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03003996 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02003997 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07003998 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01003999 case KVM_CAP_IMMEDIATE_EXIT:
Eric Hankland66bb8a02019-07-10 18:25:15 -07004000 case KVM_CAP_PMU_EVENT_FILTER:
Tom Lendacky801e4592018-02-21 13:39:51 -06004001 case KVM_CAP_GET_MSR_FEATURES:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07004002 case KVM_CAP_MSR_PLATFORM_INFO:
Jim Mattsonc4f55192018-10-16 14:29:24 -07004003 case KVM_CAP_EXCEPTION_PAYLOAD:
Peter Xub9b27822020-05-05 11:47:50 -04004004 case KVM_CAP_SET_GUEST_DEBUG:
Jim Mattson1aa561b2020-06-03 16:56:21 -07004005 case KVM_CAP_LAST_CPU:
Alexander Graf1ae09952020-09-25 16:34:16 +02004006 case KVM_CAP_X86_USER_SPACE_MSR:
Alexander Graf1a1552542020-09-25 16:34:21 +02004007 case KVM_CAP_X86_MSR_FILTER:
Oliver Upton66570e92020-08-18 15:24:28 +00004008 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
Sean Christophersonfe7e9482021-04-12 16:21:43 +12004009#ifdef CONFIG_X86_SGX_KVM
4010 case KVM_CAP_SGX_ATTRIBUTE:
4011#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00004012 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
Maxim Levitsky6dba9402021-06-07 12:02:02 +03004013 case KVM_CAP_SREGS2:
Aaron Lewis19238e72021-05-10 07:48:33 -07004014 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004015 r = 1;
4016 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00004017 case KVM_CAP_EXIT_HYPERCALL:
4018 r = KVM_EXIT_HYPERCALL_VALID_MASK;
4019 break;
Maxim Levitsky7e582cc2021-04-01 16:54:45 +03004020 case KVM_CAP_SET_GUEST_DEBUG2:
4021 return KVM_GUESTDBG_VALID_MASK;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004022#ifdef CONFIG_KVM_XEN
Joao Martins23200b72018-06-13 09:55:44 -04004023 case KVM_CAP_XEN_HVM:
4024 r = KVM_XEN_HVM_CONFIG_HYPERCALL_MSR |
David Woodhouse8d4e7e82020-12-04 01:02:04 +00004025 KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL |
4026 KVM_XEN_HVM_CONFIG_SHARED_INFO;
David Woodhouse30b5c852021-03-01 12:53:09 +00004027 if (sched_info_on())
4028 r |= KVM_XEN_HVM_CONFIG_RUNSTATE;
Joao Martins23200b72018-06-13 09:55:44 -04004029 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004030#endif
Ken Hofsass01643c52018-01-31 16:03:36 -08004031 case KVM_CAP_SYNC_REGS:
4032 r = KVM_SYNC_X86_VALID_FIELDS;
4033 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004034 case KVM_CAP_ADJUST_CLOCK:
4035 r = KVM_CLOCK_TSC_STABLE;
4036 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004037 case KVM_CAP_X86_DISABLE_EXITS:
Wanpeng Lib5170062019-05-21 14:06:53 +08004038 r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE |
4039 KVM_X86_DISABLE_EXITS_CSTATE;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004040 if(kvm_can_mwait_in_guest())
4041 r |= KVM_X86_DISABLE_EXITS_MWAIT;
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02004042 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004043 case KVM_CAP_X86_SMM:
4044 /* SMBASE is usually relocated above 1M on modern chipsets,
4045 * and SMM handlers might indeed rely on 4G segment limits,
4046 * so do not report SMM to be available if real mode is
4047 * emulated via vm86 mode. Still, do not go to great lengths
4048 * to avoid userspace's usage of the feature, because it is a
4049 * fringe case that is not enabled except via specific settings
4050 * of the module parameters.
4051 */
Jason Baronb36464772021-01-14 22:27:56 -05004052 r = static_call(kvm_x86_has_emulated_msr)(kvm, MSR_IA32_SMBASE);
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004053 break;
Avi Kivity774ead32007-12-26 13:57:04 +02004054 case KVM_CAP_VAPIC:
Jason Baronb36464772021-01-14 22:27:56 -05004055 r = !static_call(kvm_x86_cpu_has_accelerated_tpr)();
Avi Kivity774ead32007-12-26 13:57:04 +02004056 break;
Avi Kivityf7252302008-02-20 11:53:16 +02004057 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03004058 r = KVM_SOFT_MAX_VCPUS;
4059 break;
4060 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02004061 r = KVM_MAX_VCPUS;
4062 break;
Thomas Hutha86cb412019-05-23 18:43:08 +02004063 case KVM_CAP_MAX_VCPU_ID:
4064 r = KVM_MAX_VCPU_ID;
4065 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03004066 case KVM_CAP_PV_MMU: /* obsolete */
4067 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05004068 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08004069 case KVM_CAP_MCE:
4070 r = KVM_MAX_MCE_BANKS;
4071 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004072 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02004073 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004074 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004075 case KVM_CAP_TSC_CONTROL:
4076 r = kvm_has_tsc_control;
4077 break;
Radim Krčmář371313132016-07-12 22:09:27 +02004078 case KVM_CAP_X2APIC_API:
4079 r = KVM_X2APIC_API_VALID_FLAGS;
4080 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004081 case KVM_CAP_NESTED_STATE:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004082 r = kvm_x86_ops.nested_ops->get_state ?
4083 kvm_x86_ops.nested_ops->get_state(NULL, NULL, 0) : 0;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004084 break;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004085 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004086 r = kvm_x86_ops.enable_direct_tlbflush != NULL;
Vitaly Kuznetsov5a0165f2019-08-28 09:59:05 +02004087 break;
4088 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004089 r = kvm_x86_ops.nested_ops->enable_evmcs != NULL;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004090 break;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02004091 case KVM_CAP_SMALLER_MAXPHYADDR:
4092 r = (int) allow_smaller_maxphyaddr;
4093 break;
Andrew Jones004a0122020-08-04 19:06:04 +02004094 case KVM_CAP_STEAL_TIME:
4095 r = sched_info_on();
4096 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004097 case KVM_CAP_X86_BUS_LOCK_EXIT:
4098 if (kvm_has_bus_lock_exit)
4099 r = KVM_BUS_LOCK_DETECTION_OFF |
4100 KVM_BUS_LOCK_DETECTION_EXIT;
4101 else
4102 r = 0;
4103 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004104 default:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004105 break;
4106 }
4107 return r;
4108
4109}
4110
Carsten Otte043405e2007-10-10 17:16:19 +02004111long kvm_arch_dev_ioctl(struct file *filp,
4112 unsigned int ioctl, unsigned long arg)
4113{
4114 void __user *argp = (void __user *)arg;
4115 long r;
4116
4117 switch (ioctl) {
4118 case KVM_GET_MSR_INDEX_LIST: {
4119 struct kvm_msr_list __user *user_msr_list = argp;
4120 struct kvm_msr_list msr_list;
4121 unsigned n;
4122
4123 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004124 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004125 goto out;
4126 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004127 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004128 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004129 goto out;
4130 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004131 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02004132 goto out;
4133 r = -EFAULT;
4134 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
4135 num_msrs_to_save * sizeof(u32)))
4136 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004137 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02004138 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004139 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02004140 goto out;
4141 r = 0;
4142 break;
4143 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004144 case KVM_GET_SUPPORTED_CPUID:
4145 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02004146 struct kvm_cpuid2 __user *cpuid_arg = argp;
4147 struct kvm_cpuid2 cpuid;
4148
4149 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004150 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004151 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004152
4153 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
4154 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02004155 if (r)
4156 goto out;
4157
4158 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004159 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004160 goto out;
4161 r = 0;
4162 break;
4163 }
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004164 case KVM_X86_GET_MCE_CAP_SUPPORTED:
Huang Ying890ca9a2009-05-11 16:48:15 +08004165 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004166 if (copy_to_user(argp, &kvm_mce_cap_supported,
4167 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004168 goto out;
4169 r = 0;
4170 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004171 case KVM_GET_MSR_FEATURE_INDEX_LIST: {
4172 struct kvm_msr_list __user *user_msr_list = argp;
4173 struct kvm_msr_list msr_list;
4174 unsigned int n;
4175
4176 r = -EFAULT;
4177 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
4178 goto out;
4179 n = msr_list.nmsrs;
4180 msr_list.nmsrs = num_msr_based_features;
4181 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
4182 goto out;
4183 r = -E2BIG;
4184 if (n < msr_list.nmsrs)
4185 goto out;
4186 r = -EFAULT;
4187 if (copy_to_user(user_msr_list->indices, &msr_based_features,
4188 num_msr_based_features * sizeof(u32)))
4189 goto out;
4190 r = 0;
4191 break;
4192 }
4193 case KVM_GET_MSRS:
4194 r = msr_io(NULL, argp, do_get_msr_feature, 1);
4195 break;
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004196 case KVM_GET_SUPPORTED_HV_CPUID:
4197 r = kvm_ioctl_get_supported_hv_cpuid(NULL, argp);
4198 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004199 default:
4200 r = -EINVAL;
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004201 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004202 }
4203out:
4204 return r;
4205}
4206
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004207static void wbinvd_ipi(void *garbage)
4208{
4209 wbinvd();
4210}
4211
4212static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
4213{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06004214 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004215}
4216
Carsten Otte313a3dc2007-10-11 19:16:52 +02004217void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
4218{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004219 /* Address WBINVD may be executed by guest */
4220 if (need_emulate_wbinvd(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05004221 if (static_call(kvm_x86_has_wbinvd_exit)())
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004222 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
4223 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
4224 smp_call_function_single(vcpu->cpu,
4225 wbinvd_ipi, NULL, 1);
4226 }
4227
Jason Baronb36464772021-01-14 22:27:56 -05004228 static_call(kvm_x86_vcpu_load)(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004229
Babu Moger37486132020-05-12 18:59:06 -05004230 /* Save host pkru register if supported */
4231 vcpu->arch.host_pkru = read_pkru();
4232
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004233 /* Apply any externally detected TSC adjustments (due to suspend) */
4234 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
4235 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
4236 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08004237 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004238 }
4239
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004240 if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02004241 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004242 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10004243 if (tsc_delta < 0)
4244 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07004245
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004246 if (kvm_check_tsc_unstable()) {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01004247 u64 offset = kvm_compute_l1_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02004248 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04004249 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004250 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10004251 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02004252
4253 if (kvm_lapic_hv_timer_in_use(vcpu))
4254 kvm_lapic_restart_hv_timer(vcpu);
4255
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02004256 /*
4257 * On a host with synchronized TSC, there is no need to update
4258 * kvmclock on vcpu->cpu migration
4259 */
4260 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03004261 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004262 if (vcpu->cpu != cpu)
Radim Krčmář1bd20092017-04-26 22:32:20 +02004263 kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10004264 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10004265 }
Glauber Costac9aaa892011-07-11 15:28:14 -04004266
Glauber Costac9aaa892011-07-11 15:28:14 -04004267 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004268}
4269
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004270static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
4271{
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004272 struct kvm_host_map map;
4273 struct kvm_steal_time *st;
4274
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004275 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
4276 return;
4277
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004278 if (vcpu->arch.st.preempted)
Boris Ostrovsky8c6de562019-10-30 19:01:31 +00004279 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004280
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004281 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT, &map,
4282 &vcpu->arch.st.cache, true))
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004283 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004284
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004285 st = map.hva +
4286 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
4287
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004288 st->preempted = vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004289
4290 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, true);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004291}
4292
Carsten Otte313a3dc2007-10-11 19:16:52 +02004293void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
4294{
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004295 int idx;
4296
Tom Lendackyf1c63662020-12-14 10:29:50 -05004297 if (vcpu->preempted && !vcpu->arch.guest_state_protected)
Jason Baronb36464772021-01-14 22:27:56 -05004298 vcpu->arch.preempted_in_kernel = !static_call(kvm_x86_get_cpl)(vcpu);
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004299
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004300 /*
4301 * Take the srcu lock as memslots will be accessed to check the gfn
4302 * cache generation against the memslots generation.
4303 */
4304 idx = srcu_read_lock(&vcpu->kvm->srcu);
David Woodhouse30b5c852021-03-01 12:53:09 +00004305 if (kvm_xen_msr_enabled(vcpu->kvm))
4306 kvm_xen_runstate_set_preempted(vcpu);
4307 else
4308 kvm_steal_time_set_preempted(vcpu);
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004309 srcu_read_unlock(&vcpu->kvm->srcu, idx);
David Woodhouse30b5c852021-03-01 12:53:09 +00004310
Jason Baronb36464772021-01-14 22:27:56 -05004311 static_call(kvm_x86_vcpu_put)(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004312 vcpu->arch.last_host_tsc = rdtsc();
Wanpeng Liefdab992017-12-13 10:46:40 +01004313 /*
Radim Krčmářf9dcf082018-10-23 16:31:38 +02004314 * If userspace has set any breakpoints or watchpoints, dr6 is restored
4315 * on every vmexit, but if not, we might have a stale dr6 from the
4316 * guest. do_debug expects dr6 to be cleared after it runs, do the same.
Wanpeng Liefdab992017-12-13 10:46:40 +01004317 */
Radim Krčmářf9dcf082018-10-23 16:31:38 +02004318 set_debugreg(0, 6);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004319}
4320
Carsten Otte313a3dc2007-10-11 19:16:52 +02004321static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
4322 struct kvm_lapic_state *s)
4323{
Liran Alonfa59cc02017-12-24 18:12:53 +02004324 if (vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05004325 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004326
Radim Krčmářa92e2542016-07-12 22:09:22 +02004327 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004328}
4329
4330static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
4331 struct kvm_lapic_state *s)
4332{
Radim Krčmářa92e2542016-07-12 22:09:22 +02004333 int r;
4334
4335 r = kvm_apic_set_state(vcpu, s);
4336 if (r)
4337 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03004338 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004339
4340 return 0;
4341}
4342
Matt Gingell127a4572015-11-17 17:32:05 +01004343static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
4344{
Paolo Bonzini71cc8492020-11-27 09:18:20 +01004345 /*
4346 * We can accept userspace's request for interrupt injection
4347 * as long as we have a place to store the interrupt number.
4348 * The actual injection will happen when the CPU is able to
4349 * deliver the interrupt.
4350 */
4351 if (kvm_cpu_has_extint(vcpu))
4352 return false;
4353
4354 /* Acknowledging ExtINT does not happen if LINT0 is masked. */
Matt Gingell127a4572015-11-17 17:32:05 +01004355 return (!lapic_in_kernel(vcpu) ||
4356 kvm_apic_accept_pic_intr(vcpu));
4357}
4358
Matt Gingell782d4222015-11-16 15:26:00 -08004359static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
4360{
4361 return kvm_arch_interrupt_allowed(vcpu) &&
Matt Gingell782d4222015-11-16 15:26:00 -08004362 kvm_cpu_accept_dm_intr(vcpu);
4363}
4364
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004365static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
4366 struct kvm_interrupt *irq)
4367{
Chen Gang02cdb502013-02-27 11:33:25 +08004368 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004369 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004370
4371 if (!irqchip_in_kernel(vcpu->kvm)) {
4372 kvm_queue_interrupt(vcpu, irq->irq, false);
4373 kvm_make_request(KVM_REQ_EVENT, vcpu);
4374 return 0;
4375 }
4376
4377 /*
4378 * With in-kernel LAPIC, we only use this to inject EXTINT, so
4379 * fail for in-kernel 8259.
4380 */
4381 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004382 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004383
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004384 if (vcpu->arch.pending_external_vector != -1)
4385 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004386
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004387 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08004388 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004389 return 0;
4390}
4391
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004392static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
4393{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004394 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004395
4396 return 0;
4397}
4398
Paolo Bonzinif0778252015-04-01 15:06:40 +02004399static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
4400{
Paolo Bonzini64d60672015-05-07 11:36:11 +02004401 kvm_make_request(KVM_REQ_SMI, vcpu);
4402
Paolo Bonzinif0778252015-04-01 15:06:40 +02004403 return 0;
4404}
4405
Avi Kivityb209749f2007-10-22 16:50:39 +02004406static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
4407 struct kvm_tpr_access_ctl *tac)
4408{
4409 if (tac->flags)
4410 return -EINVAL;
4411 vcpu->arch.tpr_access_reporting = !!tac->enabled;
4412 return 0;
4413}
4414
Huang Ying890ca9a2009-05-11 16:48:15 +08004415static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
4416 u64 mcg_cap)
4417{
4418 int r;
4419 unsigned bank_num = mcg_cap & 0xff, bank;
4420
4421 r = -EINVAL;
Jim Mattsonc4e0e4ab2020-05-11 15:56:16 -07004422 if (!bank_num || bank_num > KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08004423 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004424 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08004425 goto out;
4426 r = 0;
4427 vcpu->arch.mcg_cap = mcg_cap;
4428 /* Init IA32_MCG_CTL to all 1s */
4429 if (mcg_cap & MCG_CTL_P)
4430 vcpu->arch.mcg_ctl = ~(u64)0;
4431 /* Init IA32_MCi_CTL to all 1s */
4432 for (bank = 0; bank < bank_num; bank++)
4433 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004434
Jason Baronb36464772021-01-14 22:27:56 -05004435 static_call(kvm_x86_setup_mce)(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004436out:
4437 return r;
4438}
4439
4440static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
4441 struct kvm_x86_mce *mce)
4442{
4443 u64 mcg_cap = vcpu->arch.mcg_cap;
4444 unsigned bank_num = mcg_cap & 0xff;
4445 u64 *banks = vcpu->arch.mce_banks;
4446
4447 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
4448 return -EINVAL;
4449 /*
4450 * if IA32_MCG_CTL is not all 1s, the uncorrected error
4451 * reporting is disabled
4452 */
4453 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
4454 vcpu->arch.mcg_ctl != ~(u64)0)
4455 return 0;
4456 banks += 4 * mce->bank;
4457 /*
4458 * if IA32_MCi_CTL is not all 1s, the uncorrected error
4459 * reporting is disabled for the bank
4460 */
4461 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
4462 return 0;
4463 if (mce->status & MCI_STATUS_UC) {
4464 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02004465 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03004466 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004467 return 0;
4468 }
4469 if (banks[1] & MCI_STATUS_VAL)
4470 mce->status |= MCI_STATUS_OVER;
4471 banks[2] = mce->addr;
4472 banks[3] = mce->misc;
4473 vcpu->arch.mcg_status = mce->mcg_status;
4474 banks[1] = mce->status;
4475 kvm_queue_exception(vcpu, MC_VECTOR);
4476 } else if (!(banks[1] & MCI_STATUS_VAL)
4477 || !(banks[1] & MCI_STATUS_UC)) {
4478 if (banks[1] & MCI_STATUS_VAL)
4479 mce->status |= MCI_STATUS_OVER;
4480 banks[2] = mce->addr;
4481 banks[3] = mce->misc;
4482 banks[1] = mce->status;
4483 } else
4484 banks[1] |= MCI_STATUS_OVER;
4485 return 0;
4486}
4487
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004488static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
4489 struct kvm_vcpu_events *events)
4490{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004491 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004492
Jay Zhou1f7becf2021-01-18 16:47:20 +08004493 if (kvm_check_request(KVM_REQ_SMI, vcpu))
4494 process_smi(vcpu);
4495
Wanpeng Li664f8e22017-08-24 03:35:09 -07004496 /*
Oliver Uptona06230b2020-02-07 02:36:06 -08004497 * In guest mode, payload delivery should be deferred,
4498 * so that the L1 hypervisor can intercept #PF before
4499 * CR2 is modified (or intercept #DB before DR6 is
4500 * modified under nVMX). Unless the per-VM capability,
4501 * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of
4502 * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we
4503 * opportunistically defer the exception payload, deliver it if the
4504 * capability hasn't been requested before processing a
4505 * KVM_GET_VCPU_EVENTS.
4506 */
4507 if (!vcpu->kvm->arch.exception_payload_enabled &&
4508 vcpu->arch.exception.pending && vcpu->arch.exception.has_payload)
4509 kvm_deliver_exception_payload(vcpu);
4510
4511 /*
Jim Mattson59073aa2018-10-16 14:29:20 -07004512 * The API doesn't provide the instruction length for software
4513 * exceptions, so don't report them. As long as the guest RIP
4514 * isn't advanced, we should expect to encounter the exception
4515 * again.
Wanpeng Li664f8e22017-08-24 03:35:09 -07004516 */
Jim Mattson59073aa2018-10-16 14:29:20 -07004517 if (kvm_exception_is_soft(vcpu->arch.exception.nr)) {
4518 events->exception.injected = 0;
4519 events->exception.pending = 0;
4520 } else {
4521 events->exception.injected = vcpu->arch.exception.injected;
4522 events->exception.pending = vcpu->arch.exception.pending;
4523 /*
4524 * For ABI compatibility, deliberately conflate
4525 * pending and injected exceptions when
4526 * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled.
4527 */
4528 if (!vcpu->kvm->arch.exception_payload_enabled)
4529 events->exception.injected |=
4530 vcpu->arch.exception.pending;
4531 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004532 events->exception.nr = vcpu->arch.exception.nr;
4533 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
4534 events->exception.error_code = vcpu->arch.exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004535 events->exception_has_payload = vcpu->arch.exception.has_payload;
4536 events->exception_payload = vcpu->arch.exception.payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004537
Jan Kiszka03b82a32010-02-15 10:45:41 +01004538 events->interrupt.injected =
Liran Alon04140b42018-03-23 03:01:31 +03004539 vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004540 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01004541 events->interrupt.soft = 0;
Jason Baronb36464772021-01-14 22:27:56 -05004542 events->interrupt.shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004543
4544 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004545 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jason Baronb36464772021-01-14 22:27:56 -05004546 events->nmi.masked = static_call(kvm_x86_get_nmi_mask)(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004547 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004548
Jan Kiszka66450a22013-03-13 12:42:34 +01004549 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004550
Paolo Bonzinif0778252015-04-01 15:06:40 +02004551 events->smi.smm = is_smm(vcpu);
4552 events->smi.pending = vcpu->arch.smi_pending;
4553 events->smi.smm_inside_nmi =
4554 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
4555 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
4556
Jan Kiszkadab4b912009-12-06 18:24:15 +01004557 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02004558 | KVM_VCPUEVENT_VALID_SHADOW
4559 | KVM_VCPUEVENT_VALID_SMM);
Jim Mattson59073aa2018-10-16 14:29:20 -07004560 if (vcpu->kvm->arch.exception_payload_enabled)
4561 events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD;
4562
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004563 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004564}
4565
Sean Christophersondc872752021-06-09 11:56:15 -07004566static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004567
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004568static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
4569 struct kvm_vcpu_events *events)
4570{
Jan Kiszkadab4b912009-12-06 18:24:15 +01004571 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01004572 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02004573 | KVM_VCPUEVENT_VALID_SHADOW
Jim Mattson59073aa2018-10-16 14:29:20 -07004574 | KVM_VCPUEVENT_VALID_SMM
4575 | KVM_VCPUEVENT_VALID_PAYLOAD))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004576 return -EINVAL;
4577
Jim Mattson59073aa2018-10-16 14:29:20 -07004578 if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) {
4579 if (!vcpu->kvm->arch.exception_payload_enabled)
4580 return -EINVAL;
4581 if (events->exception.pending)
4582 events->exception.injected = 0;
4583 else
4584 events->exception_has_payload = 0;
4585 } else {
4586 events->exception.pending = 0;
4587 events->exception_has_payload = 0;
4588 }
4589
4590 if ((events->exception.injected || events->exception.pending) &&
4591 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02004592 return -EINVAL;
4593
David Hildenbrand28bf2882017-03-23 11:46:03 +01004594 /* INITs are latched while in SMM */
4595 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
4596 (events->smi.smm || events->smi.pending) &&
4597 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
4598 return -EINVAL;
4599
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004600 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004601 vcpu->arch.exception.injected = events->exception.injected;
4602 vcpu->arch.exception.pending = events->exception.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004603 vcpu->arch.exception.nr = events->exception.nr;
4604 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
4605 vcpu->arch.exception.error_code = events->exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004606 vcpu->arch.exception.has_payload = events->exception_has_payload;
4607 vcpu->arch.exception.payload = events->exception_payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004608
Liran Alon04140b42018-03-23 03:01:31 +03004609 vcpu->arch.interrupt.injected = events->interrupt.injected;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004610 vcpu->arch.interrupt.nr = events->interrupt.nr;
4611 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01004612 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
Jason Baronb36464772021-01-14 22:27:56 -05004613 static_call(kvm_x86_set_interrupt_shadow)(vcpu,
4614 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004615
4616 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01004617 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
4618 vcpu->arch.nmi_pending = events->nmi.pending;
Jason Baronb36464772021-01-14 22:27:56 -05004619 static_call(kvm_x86_set_nmi_mask)(vcpu, events->nmi.masked);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004620
Jan Kiszka66450a22013-03-13 12:42:34 +01004621 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004622 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01004623 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004624
Paolo Bonzinif0778252015-04-01 15:06:40 +02004625 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Sean Christophersondc872752021-06-09 11:56:15 -07004626 if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm)
4627 kvm_smm_changed(vcpu, events->smi.smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004628
Paolo Bonzinif0778252015-04-01 15:06:40 +02004629 vcpu->arch.smi_pending = events->smi.pending;
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004630
4631 if (events->smi.smm) {
4632 if (events->smi.smm_inside_nmi)
4633 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02004634 else
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004635 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Liran Alonff90afa2019-11-11 11:16:39 +02004636 }
4637
4638 if (lapic_in_kernel(vcpu)) {
4639 if (events->smi.latched_init)
4640 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
4641 else
4642 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
Paolo Bonzinif0778252015-04-01 15:06:40 +02004643 }
4644 }
4645
Avi Kivity3842d132010-07-27 12:30:24 +03004646 kvm_make_request(KVM_REQ_EVENT, vcpu);
4647
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004648 return 0;
4649}
4650
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004651static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
4652 struct kvm_debugregs *dbgregs)
4653{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004654 unsigned long val;
4655
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004656 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004657 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004658 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004659 dbgregs->dr7 = vcpu->arch.dr7;
4660 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004661 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004662}
4663
4664static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
4665 struct kvm_debugregs *dbgregs)
4666{
4667 if (dbgregs->flags)
4668 return -EINVAL;
4669
Paolo Bonzinifd238002020-11-13 08:31:09 -05004670 if (!kvm_dr6_valid(dbgregs->dr6))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004671 return -EINVAL;
Paolo Bonzinifd238002020-11-13 08:31:09 -05004672 if (!kvm_dr7_valid(dbgregs->dr7))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004673 return -EINVAL;
4674
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004675 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03004676 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004677 vcpu->arch.dr6 = dbgregs->dr6;
4678 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01004679 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004680
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004681 return 0;
4682}
4683
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004684#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
4685
4686static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
4687{
Marc Orrb666a4b2018-11-06 14:53:56 -08004688 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02004689 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004690 u64 valid;
4691
4692 /*
4693 * Copy legacy XSAVE area, to avoid complications with CPUID
4694 * leaves 0 and 1 in the loop below.
4695 */
4696 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
4697
4698 /* Set XSTATE_BV */
Radim Krčmář00c87e92017-02-01 14:19:53 +01004699 xstate_bv &= vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004700 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
4701
4702 /*
4703 * Copy each region from the possibly compacted offset to the
4704 * non-compacted offset.
4705 */
Dave Hansend91cab72015-09-02 16:31:26 -07004706 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004707 while (valid) {
Dave Hansen71ef4532021-06-23 14:01:49 +02004708 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004709 u64 xfeature_mask = valid & -valid;
4710 int xfeature_nr = fls64(xfeature_mask) - 1;
Dave Hansen71ef4532021-06-23 14:01:49 +02004711 void *src;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004712
Dave Hansen71ef4532021-06-23 14:01:49 +02004713 cpuid_count(XSTATE_CPUID, xfeature_nr,
4714 &size, &offset, &ecx, &edx);
4715
4716 if (xfeature_nr == XFEATURE_PKRU) {
4717 memcpy(dest + offset, &vcpu->arch.pkru,
4718 sizeof(vcpu->arch.pkru));
4719 } else {
4720 src = get_xsave_addr(xsave, xfeature_nr);
4721 if (src)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004722 memcpy(dest + offset, src, size);
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004723 }
4724
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004725 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004726 }
4727}
4728
4729static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
4730{
Marc Orrb666a4b2018-11-06 14:53:56 -08004731 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004732 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
4733 u64 valid;
4734
4735 /*
4736 * Copy legacy XSAVE area, to avoid complications with CPUID
4737 * leaves 0 and 1 in the loop below.
4738 */
4739 memcpy(xsave, src, XSAVE_HDR_OFFSET);
4740
4741 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02004742 xsave->header.xfeatures = xstate_bv;
Borislav Petkov782511b2016-04-04 22:25:03 +02004743 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar3a544502015-04-24 10:14:36 +02004744 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004745
4746 /*
4747 * Copy each region from the non-compacted offset to the
4748 * possibly compacted offset.
4749 */
Dave Hansend91cab72015-09-02 16:31:26 -07004750 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004751 while (valid) {
Dave Hansen71ef4532021-06-23 14:01:49 +02004752 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004753 u64 xfeature_mask = valid & -valid;
4754 int xfeature_nr = fls64(xfeature_mask) - 1;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004755
Dave Hansen71ef4532021-06-23 14:01:49 +02004756 cpuid_count(XSTATE_CPUID, xfeature_nr,
4757 &size, &offset, &ecx, &edx);
4758
4759 if (xfeature_nr == XFEATURE_PKRU) {
4760 memcpy(&vcpu->arch.pkru, src + offset,
4761 sizeof(vcpu->arch.pkru));
4762 } else {
4763 void *dest = get_xsave_addr(xsave, xfeature_nr);
4764
4765 if (dest)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004766 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;
Aaron Lewis19238e72021-05-10 07:48:33 -07005657 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
5658 r = -EINVAL;
5659 if (cap->args[0] & ~1)
5660 break;
5661 kvm->arch.exit_on_emulation_error = cap->args[0];
5662 r = 0;
5663 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03005664 default:
5665 r = -EINVAL;
5666 break;
5667 }
5668 return r;
5669}
5670
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005671static struct kvm_x86_msr_filter *kvm_alloc_msr_filter(bool default_allow)
Alexander Graf1a1552542020-09-25 16:34:21 +02005672{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005673 struct kvm_x86_msr_filter *msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005674
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005675 msr_filter = kzalloc(sizeof(*msr_filter), GFP_KERNEL_ACCOUNT);
5676 if (!msr_filter)
5677 return NULL;
Alexander Graf1a1552542020-09-25 16:34:21 +02005678
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005679 msr_filter->default_allow = default_allow;
5680 return msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005681}
5682
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005683static void kvm_free_msr_filter(struct kvm_x86_msr_filter *msr_filter)
Alexander Graf1a1552542020-09-25 16:34:21 +02005684{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005685 u32 i;
5686
5687 if (!msr_filter)
5688 return;
5689
5690 for (i = 0; i < msr_filter->count; i++)
5691 kfree(msr_filter->ranges[i].bitmap);
5692
5693 kfree(msr_filter);
5694}
5695
5696static int kvm_add_msr_filter(struct kvm_x86_msr_filter *msr_filter,
5697 struct kvm_msr_filter_range *user_range)
5698{
Alexander Graf1a1552542020-09-25 16:34:21 +02005699 unsigned long *bitmap = NULL;
5700 size_t bitmap_size;
Alexander Graf1a1552542020-09-25 16:34:21 +02005701
5702 if (!user_range->nmsrs)
5703 return 0;
5704
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005705 if (user_range->flags & ~(KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE))
5706 return -EINVAL;
5707
5708 if (!user_range->flags)
5709 return -EINVAL;
5710
Alexander Graf1a1552542020-09-25 16:34:21 +02005711 bitmap_size = BITS_TO_LONGS(user_range->nmsrs) * sizeof(long);
5712 if (!bitmap_size || bitmap_size > KVM_MSR_FILTER_MAX_BITMAP_SIZE)
5713 return -EINVAL;
5714
5715 bitmap = memdup_user((__user u8*)user_range->bitmap, bitmap_size);
5716 if (IS_ERR(bitmap))
5717 return PTR_ERR(bitmap);
5718
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005719 msr_filter->ranges[msr_filter->count] = (struct msr_bitmap_range) {
Alexander Graf1a1552542020-09-25 16:34:21 +02005720 .flags = user_range->flags,
5721 .base = user_range->base,
5722 .nmsrs = user_range->nmsrs,
5723 .bitmap = bitmap,
5724 };
5725
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005726 msr_filter->count++;
Alexander Graf1a1552542020-09-25 16:34:21 +02005727 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005728}
5729
5730static int kvm_vm_ioctl_set_msr_filter(struct kvm *kvm, void __user *argp)
5731{
5732 struct kvm_msr_filter __user *user_msr_filter = argp;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005733 struct kvm_x86_msr_filter *new_filter, *old_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005734 struct kvm_msr_filter filter;
5735 bool default_allow;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005736 bool empty = true;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005737 int r = 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005738 u32 i;
5739
5740 if (copy_from_user(&filter, user_msr_filter, sizeof(filter)))
5741 return -EFAULT;
5742
Paolo Bonzini043248b2020-10-20 10:57:01 -04005743 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++)
5744 empty &= !filter.ranges[i].nmsrs;
Alexander Graf1a1552542020-09-25 16:34:21 +02005745
5746 default_allow = !(filter.flags & KVM_MSR_FILTER_DEFAULT_DENY);
Paolo Bonzini043248b2020-10-20 10:57:01 -04005747 if (empty && !default_allow)
5748 return -EINVAL;
5749
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005750 new_filter = kvm_alloc_msr_filter(default_allow);
5751 if (!new_filter)
5752 return -ENOMEM;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005753
Alexander Graf1a1552542020-09-25 16:34:21 +02005754 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005755 r = kvm_add_msr_filter(new_filter, &filter.ranges[i]);
5756 if (r) {
5757 kvm_free_msr_filter(new_filter);
5758 return r;
5759 }
Alexander Graf1a1552542020-09-25 16:34:21 +02005760 }
5761
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005762 mutex_lock(&kvm->lock);
5763
5764 /* The per-VM filter is protected by kvm->lock... */
5765 old_filter = srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1);
5766
5767 rcu_assign_pointer(kvm->arch.msr_filter, new_filter);
5768 synchronize_srcu(&kvm->srcu);
5769
5770 kvm_free_msr_filter(old_filter);
5771
Alexander Graf1a1552542020-09-25 16:34:21 +02005772 kvm_make_all_cpus_request(kvm, KVM_REQ_MSR_FILTER_CHANGED);
5773 mutex_unlock(&kvm->lock);
5774
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005775 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005776}
5777
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09005778#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
5779static int kvm_arch_suspend_notifier(struct kvm *kvm)
5780{
5781 struct kvm_vcpu *vcpu;
5782 int i, ret = 0;
5783
5784 mutex_lock(&kvm->lock);
5785 kvm_for_each_vcpu(i, vcpu, kvm) {
5786 if (!vcpu->arch.pv_time_enabled)
5787 continue;
5788
5789 ret = kvm_set_guest_paused(vcpu);
5790 if (ret) {
5791 kvm_err("Failed to pause guest VCPU%d: %d\n",
5792 vcpu->vcpu_id, ret);
5793 break;
5794 }
5795 }
5796 mutex_unlock(&kvm->lock);
5797
5798 return ret ? NOTIFY_BAD : NOTIFY_DONE;
5799}
5800
5801int kvm_arch_pm_notifier(struct kvm *kvm, unsigned long state)
5802{
5803 switch (state) {
5804 case PM_HIBERNATION_PREPARE:
5805 case PM_SUSPEND_PREPARE:
5806 return kvm_arch_suspend_notifier(kvm);
5807 }
5808
5809 return NOTIFY_DONE;
5810}
5811#endif /* CONFIG_HAVE_KVM_PM_NOTIFIER */
5812
Carsten Otte1fe779f2007-10-29 16:08:35 +01005813long kvm_arch_vm_ioctl(struct file *filp,
5814 unsigned int ioctl, unsigned long arg)
5815{
5816 struct kvm *kvm = filp->private_data;
5817 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03005818 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07005819 /*
5820 * This union makes it completely explicit to gcc-3.x
5821 * that these two variables' stack usage should be
5822 * combined, not added together.
5823 */
5824 union {
5825 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04005826 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005827 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07005828 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005829
5830 switch (ioctl) {
5831 case KVM_SET_TSS_ADDR:
5832 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005833 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005834 case KVM_SET_IDENTITY_MAP_ADDR: {
5835 u64 ident_addr;
5836
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005837 mutex_lock(&kvm->lock);
5838 r = -EINVAL;
5839 if (kvm->created_vcpus)
5840 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005841 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005842 if (copy_from_user(&ident_addr, argp, sizeof(ident_addr)))
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005843 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005844 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
David Hildenbrand1af1ac92017-08-24 20:51:36 +02005845set_identity_unlock:
5846 mutex_unlock(&kvm->lock);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005847 break;
5848 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01005849 case KVM_SET_NR_MMU_PAGES:
5850 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005851 break;
5852 case KVM_GET_NR_MMU_PAGES:
5853 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
5854 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005855 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005856 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01005857
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005858 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01005859 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005860 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005861
Avi Kivity3e515702012-03-05 14:23:29 +02005862 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005863 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02005864 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005865
5866 r = kvm_pic_init(kvm);
5867 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005868 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01005869
5870 r = kvm_ioapic_init(kvm);
5871 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01005872 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01005873 goto create_irqchip_unlock;
5874 }
5875
Avi Kivity399ec802008-11-19 13:58:46 +02005876 r = kvm_setup_default_irq_routing(kvm);
5877 if (r) {
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08005878 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01005879 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02005880 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02005881 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01005882 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02005883 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005884 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005885 create_irqchip_unlock:
5886 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005887 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005888 }
Sheng Yang78376992008-01-28 05:10:22 +08005889 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005890 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
5891 goto create_pit;
5892 case KVM_CREATE_PIT2:
5893 r = -EFAULT;
5894 if (copy_from_user(&u.pit_config, argp,
5895 sizeof(struct kvm_pit_config)))
5896 goto out;
5897 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02005898 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02005899 r = -EEXIST;
5900 if (kvm->arch.vpit)
5901 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08005902 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005903 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08005904 if (kvm->arch.vpit)
5905 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02005906 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02005907 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08005908 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005909 case KVM_GET_IRQCHIP: {
5910 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02005911 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005912
Sasha Levinff5c2c02011-12-04 19:36:29 +02005913 chip = memdup_user(argp, sizeof(*chip));
5914 if (IS_ERR(chip)) {
5915 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005916 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005917 }
5918
Carsten Otte1fe779f2007-10-29 16:08:35 +01005919 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01005920 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07005921 goto get_irqchip_out;
5922 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
5923 if (r)
5924 goto get_irqchip_out;
5925 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005926 if (copy_to_user(argp, chip, sizeof(*chip)))
Dave Hansenf0d66272008-08-11 10:01:45 -07005927 goto get_irqchip_out;
5928 r = 0;
5929 get_irqchip_out:
5930 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005931 break;
5932 }
5933 case KVM_SET_IRQCHIP: {
5934 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02005935 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005936
Sasha Levinff5c2c02011-12-04 19:36:29 +02005937 chip = memdup_user(argp, sizeof(*chip));
5938 if (IS_ERR(chip)) {
5939 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005940 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005941 }
5942
Carsten Otte1fe779f2007-10-29 16:08:35 +01005943 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01005944 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07005945 goto set_irqchip_out;
5946 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
Dave Hansenf0d66272008-08-11 10:01:45 -07005947 set_irqchip_out:
5948 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005949 break;
5950 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08005951 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08005952 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07005953 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005954 goto out;
5955 r = -ENXIO;
5956 if (!kvm->arch.vpit)
5957 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07005958 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005959 if (r)
5960 goto out;
5961 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07005962 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005963 goto out;
5964 r = 0;
5965 break;
5966 }
5967 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08005968 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005969 if (copy_from_user(&u.ps, argp, sizeof(u.ps)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005970 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005971 mutex_lock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005972 r = -ENXIO;
5973 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005974 goto set_pit_out;
Dave Hansenf0d66272008-08-11 10:01:45 -07005975 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005976set_pit_out:
5977 mutex_unlock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005978 break;
5979 }
Beth Kone9f42752009-07-07 11:50:38 -04005980 case KVM_GET_PIT2: {
5981 r = -ENXIO;
5982 if (!kvm->arch.vpit)
5983 goto out;
5984 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
5985 if (r)
5986 goto out;
5987 r = -EFAULT;
5988 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
5989 goto out;
5990 r = 0;
5991 break;
5992 }
5993 case KVM_SET_PIT2: {
5994 r = -EFAULT;
5995 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
5996 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005997 mutex_lock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04005998 r = -ENXIO;
5999 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006000 goto set_pit2_out;
Beth Kone9f42752009-07-07 11:50:38 -04006001 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006002set_pit2_out:
6003 mutex_unlock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006004 break;
6005 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006006 case KVM_REINJECT_CONTROL: {
6007 struct kvm_reinject_control control;
6008 r = -EFAULT;
6009 if (copy_from_user(&control, argp, sizeof(control)))
6010 goto out;
Miaohe Lincad23e72019-12-07 17:25:22 +08006011 r = -ENXIO;
6012 if (!kvm->arch.vpit)
6013 goto out;
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006014 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006015 break;
6016 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006017 case KVM_SET_BOOT_CPU_ID:
6018 r = 0;
6019 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02006020 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006021 r = -EBUSY;
6022 else
6023 kvm->arch.bsp_vcpu_id = arg;
6024 mutex_unlock(&kvm->lock);
6025 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006026#ifdef CONFIG_KVM_XEN
Ed Swierkffde22a2009-10-15 15:21:43 -07006027 case KVM_XEN_HVM_CONFIG: {
Paolo Bonzini51776042017-10-26 15:45:47 +02006028 struct kvm_xen_hvm_config xhc;
Ed Swierkffde22a2009-10-15 15:21:43 -07006029 r = -EFAULT;
Paolo Bonzini51776042017-10-26 15:45:47 +02006030 if (copy_from_user(&xhc, argp, sizeof(xhc)))
Ed Swierkffde22a2009-10-15 15:21:43 -07006031 goto out;
David Woodhouse78e98782021-02-02 13:19:35 +00006032 r = kvm_xen_hvm_config(kvm, &xhc);
Ed Swierkffde22a2009-10-15 15:21:43 -07006033 break;
6034 }
Joao Martinsa76b9642020-12-03 15:52:25 +00006035 case KVM_XEN_HVM_GET_ATTR: {
6036 struct kvm_xen_hvm_attr xha;
6037
6038 r = -EFAULT;
6039 if (copy_from_user(&xha, argp, sizeof(xha)))
Hannes Edercded19f2009-02-21 02:19:13 +01006040 goto out;
Joao Martinsa76b9642020-12-03 15:52:25 +00006041 r = kvm_xen_hvm_get_attr(kvm, &xha);
6042 if (!r && copy_to_user(argp, &xha, sizeof(xha)))
6043 r = -EFAULT;
6044 break;
6045 }
6046 case KVM_XEN_HVM_SET_ATTR: {
6047 struct kvm_xen_hvm_attr xha;
6048
6049 r = -EFAULT;
6050 if (copy_from_user(&xha, argp, sizeof(xha)))
6051 goto out;
6052 r = kvm_xen_hvm_set_attr(kvm, &xha);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006053 break;
6054 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006055#endif
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006056 case KVM_SET_CLOCK: {
Vitaly Kuznetsov77fcbe82021-03-31 14:41:29 +02006057 struct kvm_arch *ka = &kvm->arch;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006058 struct kvm_clock_data user_ns;
6059 u64 now_ns;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006060
6061 r = -EFAULT;
6062 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
6063 goto out;
6064
6065 r = -EINVAL;
6066 if (user_ns.flags)
6067 goto out;
6068
6069 r = 0;
Radim Krčmář0bc48be2017-05-16 22:50:00 +02006070 /*
6071 * TODO: userspace has to take care of races with VCPU_RUN, so
6072 * kvm_gen_update_masterclock() can be cut down to locked
6073 * pvclock_update_vm_gtod_copy().
6074 */
6075 kvm_gen_update_masterclock(kvm);
Vitaly Kuznetsov77fcbe82021-03-31 14:41:29 +02006076
6077 /*
6078 * This pairs with kvm_guest_time_update(): when masterclock is
6079 * in use, we use master_kernel_ns + kvmclock_offset to set
6080 * unsigned 'system_time' so if we use get_kvmclock_ns() (which
6081 * is slightly ahead) here we risk going negative on unsigned
6082 * 'system_time' when 'user_ns.clock' is very small.
6083 */
6084 spin_lock_irq(&ka->pvclock_gtod_sync_lock);
6085 if (kvm->arch.use_master_clock)
6086 now_ns = ka->master_kernel_ns;
6087 else
6088 now_ns = get_kvmclock_base_ns();
6089 ka->kvmclock_offset = user_ns.clock - now_ns;
6090 spin_unlock_irq(&ka->pvclock_gtod_sync_lock);
6091
Radim Krčmář0bc48be2017-05-16 22:50:00 +02006092 kvm_make_all_cpus_request(kvm, KVM_REQ_CLOCK_UPDATE);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006093 break;
6094 }
6095 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006096 struct kvm_clock_data user_ns;
6097 u64 now_ns;
6098
Marcelo Tosattie891a322017-04-17 12:51:37 -03006099 now_ns = get_kvmclock_ns(kvm);
Paolo Bonzini108b2492016-09-01 14:21:03 +02006100 user_ns.clock = now_ns;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01006101 user_ns.flags = kvm->arch.use_master_clock ? KVM_CLOCK_TSC_STABLE : 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04006102 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006103
6104 r = -EFAULT;
6105 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
6106 goto out;
6107 r = 0;
6108 break;
6109 }
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006110 case KVM_MEMORY_ENCRYPT_OP: {
6111 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006112 if (kvm_x86_ops.mem_enc_op)
Jason Baronb36464772021-01-14 22:27:56 -05006113 r = static_call(kvm_x86_mem_enc_op)(kvm, argp);
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006114 break;
6115 }
Brijesh Singh69eaede2017-12-04 10:57:26 -06006116 case KVM_MEMORY_ENCRYPT_REG_REGION: {
6117 struct kvm_enc_region region;
6118
6119 r = -EFAULT;
6120 if (copy_from_user(&region, argp, sizeof(region)))
6121 goto out;
6122
6123 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006124 if (kvm_x86_ops.mem_enc_reg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006125 r = static_call(kvm_x86_mem_enc_reg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006126 break;
6127 }
6128 case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
6129 struct kvm_enc_region region;
6130
6131 r = -EFAULT;
6132 if (copy_from_user(&region, argp, sizeof(region)))
6133 goto out;
6134
6135 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006136 if (kvm_x86_ops.mem_enc_unreg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006137 r = static_call(kvm_x86_mem_enc_unreg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006138 break;
6139 }
Roman Kaganfaeb7832018-02-01 16:48:32 +03006140 case KVM_HYPERV_EVENTFD: {
6141 struct kvm_hyperv_eventfd hvevfd;
6142
6143 r = -EFAULT;
6144 if (copy_from_user(&hvevfd, argp, sizeof(hvevfd)))
6145 goto out;
6146 r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd);
6147 break;
6148 }
Eric Hankland66bb8a02019-07-10 18:25:15 -07006149 case KVM_SET_PMU_EVENT_FILTER:
6150 r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp);
6151 break;
Alexander Graf1a1552542020-09-25 16:34:21 +02006152 case KVM_X86_SET_MSR_FILTER:
6153 r = kvm_vm_ioctl_set_msr_filter(kvm, argp);
6154 break;
Carsten Otte043405e2007-10-10 17:16:19 +02006155 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02006156 r = -ENOTTY;
Carsten Otte043405e2007-10-10 17:16:19 +02006157 }
6158out:
6159 return r;
6160}
6161
6162static void kvm_init_msr_list(void)
6163{
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006164 struct x86_pmu_capability x86_pmu;
Carsten Otte043405e2007-10-10 17:16:19 +02006165 u32 dummy[2];
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006166 unsigned i;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006167
Jim Mattsone2ada662019-08-21 11:20:04 -07006168 BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4,
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006169 "Please update the fixed PMCs in msrs_to_saved_all[]");
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006170
6171 perf_get_x86_pmu_capability(&x86_pmu);
Jim Mattsone2ada662019-08-21 11:20:04 -07006172
Xiaoyao Li6cbee2b2019-11-13 09:15:21 +08006173 num_msrs_to_save = 0;
6174 num_emulated_msrs = 0;
6175 num_msr_based_features = 0;
6176
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006177 for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) {
6178 if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006179 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006180
6181 /*
6182 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006183 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006184 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006185 switch (msrs_to_save_all[i]) {
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006186 case MSR_IA32_BNDCFGS:
Liran Alon503234b2018-09-14 03:25:53 +03006187 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006188 continue;
6189 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006190 case MSR_TSC_AUX:
Sean Christopherson36fa06f2021-05-04 10:17:26 -07006191 if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP) &&
6192 !kvm_cpu_cap_has(X86_FEATURE_RDPID))
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006193 continue;
6194 break;
Maxim Levitskyf4cfcd22020-05-23 19:14:55 +03006195 case MSR_IA32_UMWAIT_CONTROL:
6196 if (!kvm_cpu_cap_has(X86_FEATURE_WAITPKG))
6197 continue;
6198 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08006199 case MSR_IA32_RTIT_CTL:
6200 case MSR_IA32_RTIT_STATUS:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006201 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT))
Chao Pengbf8c55d2018-10-24 16:05:14 +08006202 continue;
6203 break;
6204 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006205 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006206 !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering))
6207 continue;
6208 break;
6209 case MSR_IA32_RTIT_OUTPUT_BASE:
6210 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006211 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006212 (!intel_pt_validate_hw_cap(PT_CAP_topa_output) &&
6213 !intel_pt_validate_hw_cap(PT_CAP_single_range_output)))
6214 continue;
6215 break;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006216 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006217 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006218 msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >=
Chao Pengbf8c55d2018-10-24 16:05:14 +08006219 intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2)
6220 continue;
6221 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006222 case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006223 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006224 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6225 continue;
6226 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006227 case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006228 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006229 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6230 continue;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006231 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006232 default:
6233 break;
6234 }
6235
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006236 msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i];
Carsten Ottebbd9b642007-10-30 18:44:21 +01006237 }
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006238
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006239 for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
Jason Baronb36464772021-01-14 22:27:56 -05006240 if (!static_call(kvm_x86_has_emulated_msr)(NULL, emulated_msrs_all[i]))
Tom Lendackybc226f02018-05-10 22:06:39 +02006241 continue;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006242
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006243 emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006244 }
Tom Lendacky801e4592018-02-21 13:39:51 -06006245
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006246 for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) {
Tom Lendacky801e4592018-02-21 13:39:51 -06006247 struct kvm_msr_entry msr;
6248
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006249 msr.index = msr_based_features_all[i];
Wanpeng Li66421c12018-02-28 14:03:30 +08006250 if (kvm_get_msr_feature(&msr))
Tom Lendacky801e4592018-02-21 13:39:51 -06006251 continue;
6252
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006253 msr_based_features[num_msr_based_features++] = msr_based_features_all[i];
Tom Lendacky801e4592018-02-21 13:39:51 -06006254 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006255}
6256
6257static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
6258 const void *v)
6259{
Avi Kivity70252a12010-01-19 12:51:22 +02006260 int handled = 0;
6261 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006262
Avi Kivity70252a12010-01-19 12:51:22 +02006263 do {
6264 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006265 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006266 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
6267 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006268 break;
6269 handled += n;
6270 addr += n;
6271 len -= n;
6272 v += n;
6273 } while (len);
6274
6275 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006276}
6277
6278static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
6279{
Avi Kivity70252a12010-01-19 12:51:22 +02006280 int handled = 0;
6281 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006282
Avi Kivity70252a12010-01-19 12:51:22 +02006283 do {
6284 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006285 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006286 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
6287 addr, n, v))
6288 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006289 break;
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006290 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v);
Avi Kivity70252a12010-01-19 12:51:22 +02006291 handled += n;
6292 addr += n;
6293 len -= n;
6294 v += n;
6295 } while (len);
6296
6297 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006298}
6299
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006300static void kvm_set_segment(struct kvm_vcpu *vcpu,
6301 struct kvm_segment *var, int seg)
6302{
Jason Baronb36464772021-01-14 22:27:56 -05006303 static_call(kvm_x86_set_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006304}
6305
6306void kvm_get_segment(struct kvm_vcpu *vcpu,
6307 struct kvm_segment *var, int seg)
6308{
Jason Baronb36464772021-01-14 22:27:56 -05006309 static_call(kvm_x86_get_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006310}
6311
Paolo Bonzini54987b72014-09-02 13:23:06 +02006312gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
6313 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006314{
6315 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006316
6317 BUG_ON(!mmu_is_nested(vcpu));
6318
6319 /* NPT walks are always user-walks */
6320 access |= PFERR_USER_MASK;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02006321 t_gpa = vcpu->arch.mmu->gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006322
6323 return t_gpa;
6324}
6325
Avi Kivityab9ae312010-11-22 17:53:26 +02006326gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
6327 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006328{
Jason Baronb36464772021-01-14 22:27:56 -05006329 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02006330 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006331}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006332EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_read);
Gleb Natapov1871c602010-02-10 14:21:32 +02006333
Avi Kivityab9ae312010-11-22 17:53:26 +02006334 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
6335 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006336{
Jason Baronb36464772021-01-14 22:27:56 -05006337 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006338 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02006339 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006340}
6341
Avi Kivityab9ae312010-11-22 17:53:26 +02006342gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
6343 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006344{
Jason Baronb36464772021-01-14 22:27:56 -05006345 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006346 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02006347 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006348}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006349EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_write);
Gleb Natapov1871c602010-02-10 14:21:32 +02006350
6351/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02006352gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
6353 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006354{
Avi Kivityab9ae312010-11-22 17:53:26 +02006355 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006356}
6357
6358static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6359 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006360 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006361{
6362 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006363 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006364
6365 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02006366 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02006367 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006368 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02006369 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006370 int ret;
6371
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006372 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006373 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006374 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
6375 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006376 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006377 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006378 goto out;
6379 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006380
Izik Eidus77c20022008-12-29 01:42:19 +02006381 bytes -= toread;
6382 data += toread;
6383 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006384 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006385out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006386 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006387}
Izik Eidus77c20022008-12-29 01:42:19 +02006388
Gleb Natapov1871c602010-02-10 14:21:32 +02006389/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03006390static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
6391 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006392 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006393{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006394 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Jason Baronb36464772021-01-14 22:27:56 -05006395 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006396 unsigned offset;
6397 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006398
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006399 /* Inline kvm_read_guest_virt_helper for speed. */
6400 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
6401 exception);
6402 if (unlikely(gpa == UNMAPPED_GVA))
6403 return X86EMUL_PROPAGATE_FAULT;
6404
6405 offset = addr & (PAGE_SIZE-1);
6406 if (WARN_ON(offset + bytes > PAGE_SIZE))
6407 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006408 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
6409 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006410 if (unlikely(ret < 0))
6411 return X86EMUL_IO_NEEDED;
6412
6413 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02006414}
6415
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006416int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006417 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006418 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006419{
Jason Baronb36464772021-01-14 22:27:56 -05006420 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006421
Paolo Bonzini353c0952019-01-29 18:41:16 +01006422 /*
6423 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
6424 * is returned, but our callers are not ready for that and they blindly
6425 * call kvm_inject_page_fault. Ensure that they at least do not leak
6426 * uninitialized kernel stack memory into cr2 and error code.
6427 */
6428 memset(exception, 0, sizeof(*exception));
Gleb Natapov1871c602010-02-10 14:21:32 +02006429 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006430 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006431}
Nadav Har'El064aea72011-05-25 23:04:56 +03006432EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02006433
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006434static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
6435 gva_t addr, void *val, unsigned int bytes,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006436 struct x86_exception *exception, bool system)
Gleb Natapov1871c602010-02-10 14:21:32 +02006437{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006438 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006439 u32 access = 0;
6440
Jason Baronb36464772021-01-14 22:27:56 -05006441 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006442 access |= PFERR_USER_MASK;
6443
6444 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006445}
6446
Radim Krčmář7a036a62015-10-30 16:36:24 +01006447static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
6448 unsigned long addr, void *val, unsigned int bytes)
6449{
6450 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6451 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
6452
6453 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
6454}
6455
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006456static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6457 struct kvm_vcpu *vcpu, u32 access,
6458 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02006459{
6460 void *data = val;
6461 int r = X86EMUL_CONTINUE;
6462
6463 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02006464 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006465 access,
Avi Kivityab9ae312010-11-22 17:53:26 +02006466 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02006467 unsigned offset = addr & (PAGE_SIZE-1);
6468 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
6469 int ret;
6470
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006471 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006472 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006473 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02006474 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006475 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02006476 goto out;
6477 }
6478
6479 bytes -= towrite;
6480 data += towrite;
6481 addr += towrite;
6482 }
6483out:
6484 return r;
6485}
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006486
6487static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006488 unsigned int bytes, struct x86_exception *exception,
6489 bool system)
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006490{
6491 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006492 u32 access = PFERR_WRITE_MASK;
6493
Jason Baronb36464772021-01-14 22:27:56 -05006494 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006495 access |= PFERR_USER_MASK;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006496
6497 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006498 access, exception);
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006499}
6500
6501int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val,
6502 unsigned int bytes, struct x86_exception *exception)
6503{
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006504 /* kvm_write_guest_virt_system can pull in tons of pages. */
6505 vcpu->arch.l1tf_flush_l1d = true;
6506
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006507 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
6508 PFERR_WRITE_MASK, exception);
6509}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03006510EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02006511
Wanpeng Li082d06e2018-04-03 16:28:48 -07006512int handle_ud(struct kvm_vcpu *vcpu)
6513{
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006514 static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX };
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006515 int emul_type = EMULTYPE_TRAP_UD;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006516 char sig[5]; /* ud2; .ascii "kvm" */
6517 struct x86_exception e;
Wanpeng Li082d06e2018-04-03 16:28:48 -07006518
Jason Baronb36464772021-01-14 22:27:56 -05006519 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, NULL, 0)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07006520 return 1;
6521
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006522 if (force_emulation_prefix &&
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006523 kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu),
6524 sig, sizeof(sig), &e) == 0 &&
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006525 memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) {
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006526 kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig));
Sean Christophersonb4000602019-08-27 14:40:32 -07006527 emul_type = EMULTYPE_TRAP_UD_FORCED;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006528 }
6529
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006530 return kvm_emulate_instruction(vcpu, emul_type);
Wanpeng Li082d06e2018-04-03 16:28:48 -07006531}
6532EXPORT_SYMBOL_GPL(handle_ud);
6533
Tom Lendacky0f89b202016-12-14 14:59:23 -05006534static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6535 gpa_t gpa, bool write)
6536{
6537 /* For APIC access vmexit */
6538 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6539 return 1;
6540
6541 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
6542 trace_vcpu_match_mmio(gva, gpa, write, true);
6543 return 1;
6544 }
6545
6546 return 0;
6547}
6548
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006549static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6550 gpa_t *gpa, struct x86_exception *exception,
6551 bool write)
6552{
Jason Baronb36464772021-01-14 22:27:56 -05006553 u32 access = ((static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0)
Avi Kivity97d64b72012-09-12 14:52:00 +03006554 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006555
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08006556 /*
6557 * currently PKRU is only applied to ept enabled guest so
6558 * there is no pkey in EPT page table for L1 guest or EPT
6559 * shadow page table for L2 guest.
6560 */
Avi Kivity97d64b72012-09-12 14:52:00 +03006561 if (vcpu_match_mmio_gva(vcpu, gva)
Feng Wu97ec8c02014-04-01 17:46:34 +08006562 && !permission_fault(vcpu, vcpu->arch.walk_mmu,
Sean Christopherson871bd032019-08-01 13:35:21 -07006563 vcpu->arch.mmio_access, 0, access)) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006564 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
6565 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08006566 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006567 return 1;
6568 }
6569
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006570 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
6571
6572 if (*gpa == UNMAPPED_GVA)
6573 return -1;
6574
Tom Lendacky0f89b202016-12-14 14:59:23 -05006575 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006576}
6577
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006578int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006579 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02006580{
6581 int ret;
6582
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006583 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006584 if (ret < 0)
6585 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006586 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006587 return 1;
6588}
6589
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006590struct read_write_emulator_ops {
6591 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
6592 int bytes);
6593 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
6594 void *val, int bytes);
6595 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6596 int bytes, void *val);
6597 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6598 void *val, int bytes);
6599 bool write;
6600};
6601
6602static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
6603{
6604 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006605 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006606 vcpu->mmio_fragments[0].gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006607 vcpu->mmio_read_completed = 0;
6608 return 1;
6609 }
6610
6611 return 0;
6612}
6613
6614static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6615 void *val, int bytes)
6616{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006617 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006618}
6619
6620static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6621 void *val, int bytes)
6622{
6623 return emulator_write_phys(vcpu, gpa, val, bytes);
6624}
6625
6626static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
6627{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006628 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006629 return vcpu_mmio_write(vcpu, gpa, bytes, val);
6630}
6631
6632static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6633 void *val, int bytes)
6634{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006635 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006636 return X86EMUL_IO_NEEDED;
6637}
6638
6639static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6640 void *val, int bytes)
6641{
Avi Kivityf78146b2012-04-18 19:22:47 +03006642 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
6643
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006644 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006645 return X86EMUL_CONTINUE;
6646}
6647
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006648static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006649 .read_write_prepare = read_prepare,
6650 .read_write_emulate = read_emulate,
6651 .read_write_mmio = vcpu_mmio_read,
6652 .read_write_exit_mmio = read_exit_mmio,
6653};
6654
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006655static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006656 .read_write_emulate = write_emulate,
6657 .read_write_mmio = write_mmio,
6658 .read_write_exit_mmio = write_exit_mmio,
6659 .write = true,
6660};
6661
Xiao Guangrong22388a32011-07-13 14:32:31 +08006662static int emulator_read_write_onepage(unsigned long addr, void *val,
6663 unsigned int bytes,
6664 struct x86_exception *exception,
6665 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006666 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006667{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006668 gpa_t gpa;
6669 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006670 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03006671 struct kvm_mmio_fragment *frag;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006672 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006673
6674 /*
6675 * If the exit was due to a NPF we may already have a GPA.
6676 * If the GPA is present, use it to avoid the GVA to GPA table walk.
6677 * Note, this cannot be used on string operations since string
6678 * operation using rep will only have the initial GPA from the NPF
6679 * occurred.
6680 */
Sean Christopherson744e6992020-02-18 15:03:09 -08006681 if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) &&
6682 (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) {
6683 gpa = ctxt->gpa_val;
Brijesh Singh618232e2017-08-17 18:36:57 +02006684 ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write);
6685 } else {
6686 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
6687 if (ret < 0)
6688 return X86EMUL_PROPAGATE_FAULT;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006689 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006690
Brijesh Singh618232e2017-08-17 18:36:57 +02006691 if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01006692 return X86EMUL_CONTINUE;
6693
Carsten Ottebbd9b642007-10-30 18:44:21 +01006694 /*
6695 * Is this MMIO handled locally?
6696 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08006697 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02006698 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006699 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006700
Avi Kivity70252a12010-01-19 12:51:22 +02006701 gpa += handled;
6702 bytes -= handled;
6703 val += handled;
6704
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006705 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
6706 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
6707 frag->gpa = gpa;
6708 frag->data = val;
6709 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03006710 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006711}
6712
Xiubo Li52eb5a62015-03-13 17:39:45 +08006713static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
6714 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006715 void *val, unsigned int bytes,
6716 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006717 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006718{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006719 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03006720 gpa_t gpa;
6721 int rc;
6722
6723 if (ops->read_write_prepare &&
6724 ops->read_write_prepare(vcpu, val, bytes))
6725 return X86EMUL_CONTINUE;
6726
6727 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006728
Carsten Ottebbd9b642007-10-30 18:44:21 +01006729 /* Crossing a page boundary? */
6730 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03006731 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006732
6733 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006734 rc = emulator_read_write_onepage(addr, val, now, exception,
6735 vcpu, ops);
6736
Carsten Ottebbd9b642007-10-30 18:44:21 +01006737 if (rc != X86EMUL_CONTINUE)
6738 return rc;
6739 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02006740 if (ctxt->mode != X86EMUL_MODE_PROT64)
6741 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006742 val += now;
6743 bytes -= now;
6744 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006745
Avi Kivityf78146b2012-04-18 19:22:47 +03006746 rc = emulator_read_write_onepage(addr, val, bytes, exception,
6747 vcpu, ops);
6748 if (rc != X86EMUL_CONTINUE)
6749 return rc;
6750
6751 if (!vcpu->mmio_nr_fragments)
6752 return rc;
6753
6754 gpa = vcpu->mmio_fragments[0].gpa;
6755
6756 vcpu->mmio_needed = 1;
6757 vcpu->mmio_cur_fragment = 0;
6758
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006759 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03006760 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
6761 vcpu->run->exit_reason = KVM_EXIT_MMIO;
6762 vcpu->run->mmio.phys_addr = gpa;
6763
6764 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08006765}
6766
6767static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
6768 unsigned long addr,
6769 void *val,
6770 unsigned int bytes,
6771 struct x86_exception *exception)
6772{
6773 return emulator_read_write(ctxt, addr, val, bytes,
6774 exception, &read_emultor);
6775}
6776
Xiubo Li52eb5a62015-03-13 17:39:45 +08006777static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006778 unsigned long addr,
6779 const void *val,
6780 unsigned int bytes,
6781 struct x86_exception *exception)
6782{
6783 return emulator_read_write(ctxt, addr, (void *)val, bytes,
6784 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006785}
Carsten Ottebbd9b642007-10-30 18:44:21 +01006786
Avi Kivitydaea3e72010-03-15 13:59:54 +02006787#define CMPXCHG_TYPE(t, ptr, old, new) \
6788 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
6789
6790#ifdef CONFIG_X86_64
6791# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
6792#else
6793# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01006794 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02006795#endif
6796
Avi Kivity0f65dd72011-04-20 13:37:53 +03006797static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
6798 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01006799 const void *old,
6800 const void *new,
6801 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006802 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006803{
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006804 struct kvm_host_map map;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006805 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02006806 u64 page_line_mask;
Avi Kivitydaea3e72010-03-15 13:59:54 +02006807 gpa_t gpa;
Avi Kivitydaea3e72010-03-15 13:59:54 +02006808 char *kaddr;
6809 bool exchanged;
6810
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006811 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02006812 if (bytes > 8 || (bytes & (bytes - 1)))
6813 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006814
Avi Kivitydaea3e72010-03-15 13:59:54 +02006815 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006816
Avi Kivitydaea3e72010-03-15 13:59:54 +02006817 if (gpa == UNMAPPED_GVA ||
6818 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6819 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006820
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02006821 /*
6822 * Emulate the atomic as a straight write to avoid #AC if SLD is
6823 * enabled in the host and the access splits a cache line.
6824 */
6825 if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
6826 page_line_mask = ~(cache_line_size() - 1);
6827 else
6828 page_line_mask = PAGE_MASK;
6829
6830 if (((gpa + bytes - 1) & page_line_mask) != (gpa & page_line_mask))
Avi Kivitydaea3e72010-03-15 13:59:54 +02006831 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006832
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006833 if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08006834 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02006835
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006836 kaddr = map.hva + offset_in_page(gpa);
6837
Avi Kivitydaea3e72010-03-15 13:59:54 +02006838 switch (bytes) {
6839 case 1:
6840 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
6841 break;
6842 case 2:
6843 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
6844 break;
6845 case 4:
6846 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
6847 break;
6848 case 8:
6849 exchanged = CMPXCHG64(kaddr, old, new);
6850 break;
6851 default:
6852 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006853 }
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01006854
6855 kvm_vcpu_unmap(vcpu, &map, true);
Avi Kivitydaea3e72010-03-15 13:59:54 +02006856
6857 if (!exchanged)
6858 return X86EMUL_CMPXCHG_FAILED;
6859
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006860 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03006861
6862 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02006863
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006864emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02006865 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05006866
Avi Kivity0f65dd72011-04-20 13:37:53 +03006867 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006868}
6869
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006870static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
6871{
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006872 int r = 0, i;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006873
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006874 for (i = 0; i < vcpu->arch.pio.count; i++) {
6875 if (vcpu->arch.pio.in)
6876 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
6877 vcpu->arch.pio.size, pd);
6878 else
6879 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
6880 vcpu->arch.pio.port, vcpu->arch.pio.size,
6881 pd);
6882 if (r)
6883 break;
6884 pd += vcpu->arch.pio.size;
6885 }
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006886 return r;
6887}
6888
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006889static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
6890 unsigned short port, void *val,
6891 unsigned int count, bool in)
6892{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006893 vcpu->arch.pio.port = port;
6894 vcpu->arch.pio.in = in;
6895 vcpu->arch.pio.count = count;
6896 vcpu->arch.pio.size = size;
6897
6898 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
6899 vcpu->arch.pio.count = 0;
6900 return 1;
6901 }
6902
6903 vcpu->run->exit_reason = KVM_EXIT_IO;
6904 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
6905 vcpu->run->io.size = size;
6906 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
6907 vcpu->run->io.count = count;
6908 vcpu->run->io.port = port;
6909
6910 return 0;
6911}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006912
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006913static int emulator_pio_in(struct kvm_vcpu *vcpu, int size,
6914 unsigned short port, void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006915{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006916 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03006917
Gleb Natapov79729952010-03-18 15:20:24 +02006918 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006919 goto data_avail;
6920
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006921 memset(vcpu->arch.pio_data, 0, size * count);
6922
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006923 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
6924 if (ret) {
6925data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006926 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02006927 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02006928 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006929 return 1;
6930 }
6931
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006932 return 0;
6933}
6934
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006935static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
6936 int size, unsigned short port, void *val,
6937 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006938{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006939 return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count);
Avi Kivityca1d4a92011-04-20 13:37:53 +03006940
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006941}
6942
6943static int emulator_pio_out(struct kvm_vcpu *vcpu, int size,
6944 unsigned short port, const void *val,
6945 unsigned int count)
6946{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006947 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02006948 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006949 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006950}
6951
Carsten Ottebbd9b642007-10-30 18:44:21 +01006952static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
6953 int size, unsigned short port,
6954 const void *val, unsigned int count)
6955{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006956 return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006957}
6958
6959static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
6960{
Jason Baronb36464772021-01-14 22:27:56 -05006961 return static_call(kvm_x86_get_segment_base)(vcpu, seg);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006962}
6963
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006964static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006965{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006966 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006967}
6968
Jiang Biaoae6a2372016-11-07 08:54:51 +08006969static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006970{
6971 if (!need_emulate_wbinvd(vcpu))
6972 return X86EMUL_CONTINUE;
6973
Jason Baronb36464772021-01-14 22:27:56 -05006974 if (static_call(kvm_x86_has_wbinvd_exit)()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01006975 int cpu = get_cpu();
6976
6977 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Wanpeng Lic2162e12021-03-12 10:45:51 +08006978 on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006979 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01006980 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006981 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01006982 } else
6983 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006984 return X86EMUL_CONTINUE;
6985}
Joel Schopp5cb56052015-03-02 13:43:31 -06006986
6987int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
6988{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006989 kvm_emulate_wbinvd_noskip(vcpu);
6990 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06006991}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006992EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
6993
Joel Schopp5cb56052015-03-02 13:43:31 -06006994
6995
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03006996static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
6997{
Joel Schopp5cb56052015-03-02 13:43:31 -06006998 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03006999}
7000
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007001static void emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
7002 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007003{
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007004 kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007005}
7006
Xiubo Li52eb5a62015-03-13 17:39:45 +08007007static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
7008 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007009{
Gleb Natapov338dbc92010-04-28 19:15:32 +03007010
Paolo Bonzini996ff542020-12-14 07:49:54 -05007011 return kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007012}
7013
Gleb Natapov52a46612010-03-18 15:20:03 +02007014static u64 mk_cr_64(u64 curr_cr, u32 new_val)
7015{
7016 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
7017}
7018
Avi Kivity717746e2011-04-20 13:37:53 +03007019static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02007020{
Avi Kivity717746e2011-04-20 13:37:53 +03007021 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02007022 unsigned long value;
7023
7024 switch (cr) {
7025 case 0:
7026 value = kvm_read_cr0(vcpu);
7027 break;
7028 case 2:
7029 value = vcpu->arch.cr2;
7030 break;
7031 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02007032 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02007033 break;
7034 case 4:
7035 value = kvm_read_cr4(vcpu);
7036 break;
7037 case 8:
7038 value = kvm_get_cr8(vcpu);
7039 break;
7040 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007041 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02007042 return 0;
7043 }
7044
7045 return value;
7046}
7047
Avi Kivity717746e2011-04-20 13:37:53 +03007048static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02007049{
Avi Kivity717746e2011-04-20 13:37:53 +03007050 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03007051 int res = 0;
7052
Gleb Natapov52a46612010-03-18 15:20:03 +02007053 switch (cr) {
7054 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03007055 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007056 break;
7057 case 2:
7058 vcpu->arch.cr2 = val;
7059 break;
7060 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03007061 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007062 break;
7063 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03007064 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007065 break;
7066 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007067 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007068 break;
7069 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007070 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03007071 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02007072 }
Gleb Natapov0f122442010-04-28 19:15:31 +03007073
7074 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02007075}
7076
Avi Kivity717746e2011-04-20 13:37:53 +03007077static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02007078{
Jason Baronb36464772021-01-14 22:27:56 -05007079 return static_call(kvm_x86_get_cpl)(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02007080}
7081
Avi Kivity4bff1e862011-04-20 13:37:53 +03007082static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007083{
Jason Baronb36464772021-01-14 22:27:56 -05007084 static_call(kvm_x86_get_gdt)(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007085}
7086
Avi Kivity4bff1e862011-04-20 13:37:53 +03007087static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007088{
Jason Baronb36464772021-01-14 22:27:56 -05007089 static_call(kvm_x86_get_idt)(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007090}
7091
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007092static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7093{
Jason Baronb36464772021-01-14 22:27:56 -05007094 static_call(kvm_x86_set_gdt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007095}
7096
7097static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7098{
Jason Baronb36464772021-01-14 22:27:56 -05007099 static_call(kvm_x86_set_idt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007100}
7101
Avi Kivity4bff1e862011-04-20 13:37:53 +03007102static unsigned long emulator_get_cached_segment_base(
7103 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03007104{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007105 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03007106}
7107
Avi Kivity1aa36612011-04-27 13:20:30 +03007108static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
7109 struct desc_struct *desc, u32 *base3,
7110 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007111{
7112 struct kvm_segment var;
7113
Avi Kivity4bff1e862011-04-20 13:37:53 +03007114 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03007115 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007116
Gleb Natapov378a8b02013-01-21 15:36:48 +02007117 if (var.unusable) {
7118 memset(desc, 0, sizeof(*desc));
Radim Krčmářf0367ee2017-05-18 19:37:30 +02007119 if (base3)
7120 *base3 = 0;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007121 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02007122 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007123
7124 if (var.g)
7125 var.limit >>= 12;
7126 set_desc_limit(desc, var.limit);
7127 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02007128#ifdef CONFIG_X86_64
7129 if (base3)
7130 *base3 = var.base >> 32;
7131#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007132 desc->type = var.type;
7133 desc->s = var.s;
7134 desc->dpl = var.dpl;
7135 desc->p = var.present;
7136 desc->avl = var.avl;
7137 desc->l = var.l;
7138 desc->d = var.db;
7139 desc->g = var.g;
7140
7141 return true;
7142}
7143
Avi Kivity1aa36612011-04-27 13:20:30 +03007144static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
7145 struct desc_struct *desc, u32 base3,
7146 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007147{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007148 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007149 struct kvm_segment var;
7150
Avi Kivity1aa36612011-04-27 13:20:30 +03007151 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007152 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02007153#ifdef CONFIG_X86_64
7154 var.base |= ((u64)base3) << 32;
7155#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007156 var.limit = get_desc_limit(desc);
7157 if (desc->g)
7158 var.limit = (var.limit << 12) | 0xfff;
7159 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007160 var.dpl = desc->dpl;
7161 var.db = desc->d;
7162 var.s = desc->s;
7163 var.l = desc->l;
7164 var.g = desc->g;
7165 var.avl = desc->avl;
7166 var.present = desc->p;
7167 var.unusable = !var.present;
7168 var.padding = 0;
7169
7170 kvm_set_segment(vcpu, &var, seg);
7171 return;
7172}
7173
Avi Kivity717746e2011-04-20 13:37:53 +03007174static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
7175 u32 msr_index, u64 *pdata)
7176{
Alexander Graf1ae09952020-09-25 16:34:16 +02007177 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7178 int r;
7179
7180 r = kvm_get_msr(vcpu, msr_index, pdata);
7181
7182 if (r && kvm_get_msr_user_space(vcpu, msr_index, r)) {
7183 /* Bounce to user space */
7184 return X86EMUL_IO_NEEDED;
7185 }
7186
7187 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007188}
7189
7190static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
7191 u32 msr_index, u64 data)
7192{
Alexander Graf1ae09952020-09-25 16:34:16 +02007193 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7194 int r;
7195
7196 r = kvm_set_msr(vcpu, msr_index, data);
7197
7198 if (r && kvm_set_msr_user_space(vcpu, msr_index, data, r)) {
7199 /* Bounce to user space */
7200 return X86EMUL_IO_NEEDED;
7201 }
7202
7203 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007204}
7205
Paolo Bonzini64d60672015-05-07 11:36:11 +02007206static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
7207{
7208 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7209
7210 return vcpu->arch.smbase;
7211}
7212
7213static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
7214{
7215 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7216
7217 vcpu->arch.smbase = smbase;
7218}
7219
Nadav Amit67f4d422014-06-02 18:34:09 +03007220static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
7221 u32 pmc)
7222{
Like Xu98ff80f2019-10-27 18:52:40 +08007223 return kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03007224}
7225
Avi Kivity222d21a2011-11-10 14:57:30 +02007226static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
7227 u32 pmc, u64 *pdata)
7228{
Wei Huangc6702c92015-06-19 13:44:45 +02007229 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02007230}
7231
Avi Kivity6c3287f2011-04-20 15:43:05 +03007232static void emulator_halt(struct x86_emulate_ctxt *ctxt)
7233{
7234 emul_to_vcpu(ctxt)->arch.halt_request = 1;
7235}
7236
Avi Kivity29535382011-04-20 13:37:53 +03007237static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007238 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007239 enum x86_intercept_stage stage)
7240{
Jason Baronb36464772021-01-14 22:27:56 -05007241 return static_call(kvm_x86_check_intercept)(emul_to_vcpu(ctxt), info, stage,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007242 &ctxt->exception);
Avi Kivityc4f035c2011-04-04 12:39:22 +02007243}
7244
Yu Zhange911eb32017-08-24 20:27:52 +08007245static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Sean Christophersonf91af512020-03-04 17:34:37 -08007246 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx,
7247 bool exact_only)
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007248{
Sean Christophersonf91af512020-03-04 17:34:37 -08007249 return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007250}
7251
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007252static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt)
7253{
7254 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM);
7255}
7256
7257static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt)
7258{
7259 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE);
7260}
7261
7262static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt)
7263{
7264 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR);
7265}
7266
Avi Kivitydd856ef2012-08-27 23:46:17 +03007267static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
7268{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007269 return kvm_register_read_raw(emul_to_vcpu(ctxt), reg);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007270}
7271
7272static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
7273{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007274 kvm_register_write_raw(emul_to_vcpu(ctxt), reg, val);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007275}
7276
Nadav Amit801806d2015-01-26 09:32:23 +02007277static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
7278{
Jason Baronb36464772021-01-14 22:27:56 -05007279 static_call(kvm_x86_set_nmi_mask)(emul_to_vcpu(ctxt), masked);
Nadav Amit801806d2015-01-26 09:32:23 +02007280}
7281
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007282static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt)
7283{
7284 return emul_to_vcpu(ctxt)->arch.hflags;
7285}
7286
Sean Christophersonedce4652021-06-09 11:56:13 -07007287static void emulator_exiting_smm(struct x86_emulate_ctxt *ctxt)
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007288{
Sean Christopherson78fcb2c2021-06-09 11:56:11 -07007289 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7290
Sean Christophersondc872752021-06-09 11:56:15 -07007291 kvm_smm_changed(vcpu, false);
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007292}
7293
Sean Christophersonecc513e2021-06-09 11:56:19 -07007294static int emulator_leave_smm(struct x86_emulate_ctxt *ctxt,
Sean Christophersoned193212019-04-02 08:03:09 -07007295 const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007296{
Sean Christophersonecc513e2021-06-09 11:56:19 -07007297 return static_call(kvm_x86_leave_smm)(emul_to_vcpu(ctxt), smstate);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007298}
7299
Sean Christopherson25b17222021-06-09 11:56:12 -07007300static void emulator_triple_fault(struct x86_emulate_ctxt *ctxt)
7301{
7302 kvm_make_request(KVM_REQ_TRIPLE_FAULT, emul_to_vcpu(ctxt));
7303}
7304
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007305static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr)
7306{
7307 return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr);
7308}
7309
Mathias Krause0225fb52012-08-30 01:30:16 +02007310static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03007311 .read_gpr = emulator_read_gpr,
7312 .write_gpr = emulator_write_gpr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02007313 .read_std = emulator_read_std,
7314 .write_std = emulator_write_std,
Radim Krčmář7a036a62015-10-30 16:36:24 +01007315 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02007316 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007317 .read_emulated = emulator_read_emulated,
7318 .write_emulated = emulator_write_emulated,
7319 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007320 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007321 .pio_in_emulated = emulator_pio_in_emulated,
7322 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03007323 .get_segment = emulator_get_segment,
7324 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03007325 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007326 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007327 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007328 .set_gdt = emulator_set_gdt,
7329 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02007330 .get_cr = emulator_get_cr,
7331 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02007332 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03007333 .get_dr = emulator_get_dr,
7334 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02007335 .get_smbase = emulator_get_smbase,
7336 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03007337 .set_msr = emulator_set_msr,
7338 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03007339 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02007340 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03007341 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007342 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03007343 .fix_hypercall = emulator_fix_hypercall,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007344 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007345 .get_cpuid = emulator_get_cpuid,
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007346 .guest_has_long_mode = emulator_guest_has_long_mode,
7347 .guest_has_movbe = emulator_guest_has_movbe,
7348 .guest_has_fxsr = emulator_guest_has_fxsr,
Nadav Amit801806d2015-01-26 09:32:23 +02007349 .set_nmi_mask = emulator_set_nmi_mask,
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007350 .get_hflags = emulator_get_hflags,
Sean Christophersonedce4652021-06-09 11:56:13 -07007351 .exiting_smm = emulator_exiting_smm,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007352 .leave_smm = emulator_leave_smm,
Sean Christopherson25b17222021-06-09 11:56:12 -07007353 .triple_fault = emulator_triple_fault,
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007354 .set_xcr = emulator_set_xcr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007355};
7356
Gleb Natapov95cb2292010-04-28 19:15:43 +03007357static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
7358{
Jason Baronb36464772021-01-14 22:27:56 -05007359 u32 int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03007360 /*
7361 * an sti; sti; sequence only disable interrupts for the first
7362 * instruction. So, if the last instruction, be it emulated or
7363 * not, left the system with the INT_STI flag enabled, it
7364 * means that the last instruction is an sti. We should not
7365 * leave the flag on in this case. The same goes for mov ss
7366 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02007367 if (int_shadow & mask)
7368 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007369 if (unlikely(int_shadow || mask)) {
Jason Baronb36464772021-01-14 22:27:56 -05007370 static_call(kvm_x86_set_interrupt_shadow)(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007371 if (!mask)
7372 kvm_make_request(KVM_REQ_EVENT, vcpu);
7373 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03007374}
7375
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007376static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03007377{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007378 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02007379 if (ctxt->exception.vector == PF_VECTOR)
Sean Christopherson53b3d8e2020-03-20 14:28:01 -07007380 return kvm_inject_emulated_page_fault(vcpu, &ctxt->exception);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007381
7382 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02007383 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
7384 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03007385 else
Avi Kivityda9cb572010-11-22 17:53:21 +02007386 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007387 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03007388}
7389
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007390static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu)
7391{
7392 struct x86_emulate_ctxt *ctxt;
7393
7394 ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT);
7395 if (!ctxt) {
7396 pr_err("kvm: failed to allocate vcpu's emulator\n");
7397 return NULL;
7398 }
7399
7400 ctxt->vcpu = vcpu;
7401 ctxt->ops = &emulate_ops;
7402 vcpu->arch.emulate_ctxt = ctxt;
7403
7404 return ctxt;
7405}
7406
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007407static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
7408{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007409 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007410 int cs_db, cs_l;
7411
Jason Baronb36464772021-01-14 22:27:56 -05007412 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007413
Sean Christopherson744e6992020-02-18 15:03:09 -08007414 ctxt->gpa_available = false;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007415 ctxt->eflags = kvm_get_rflags(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007416 ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0;
7417
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007418 ctxt->eip = kvm_rip_read(vcpu);
7419 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
7420 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03007421 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007422 cs_db ? X86EMUL_MODE_PROT32 :
7423 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02007424 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007425 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
7426 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007427
Wanpeng Lida6393c2021-05-27 17:01:36 -07007428 ctxt->interruptibility = 0;
7429 ctxt->have_exception = false;
7430 ctxt->exception.vector = -1;
7431 ctxt->perm_ok = false;
7432
Avi Kivitydd856ef2012-08-27 23:46:17 +03007433 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007434 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007435}
7436
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007437void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02007438{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007439 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02007440 int ret;
7441
7442 init_emulate_ctxt(vcpu);
7443
Avi Kivity9dac77f2011-06-01 15:34:25 +03007444 ctxt->op_bytes = 2;
7445 ctxt->ad_bytes = 2;
7446 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007447 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02007448
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007449 if (ret != X86EMUL_CONTINUE) {
7450 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7451 } else {
7452 ctxt->eip = ctxt->_eip;
7453 kvm_rip_write(vcpu, ctxt->eip);
7454 kvm_set_rflags(vcpu, ctxt->eflags);
7455 }
Mohammed Gamal63995652010-09-19 14:34:06 +02007456}
7457EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
7458
Aaron Lewis19238e72021-05-10 07:48:33 -07007459static void prepare_emulation_failure_exit(struct kvm_vcpu *vcpu)
7460{
7461 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7462 u32 insn_size = ctxt->fetch.end - ctxt->fetch.data;
7463 struct kvm_run *run = vcpu->run;
7464
7465 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7466 run->emulation_failure.suberror = KVM_INTERNAL_ERROR_EMULATION;
7467 run->emulation_failure.ndata = 0;
7468 run->emulation_failure.flags = 0;
7469
7470 if (insn_size) {
7471 run->emulation_failure.ndata = 3;
7472 run->emulation_failure.flags |=
7473 KVM_INTERNAL_ERROR_EMULATION_FLAG_INSTRUCTION_BYTES;
7474 run->emulation_failure.insn_size = insn_size;
7475 memset(run->emulation_failure.insn_bytes, 0x90,
7476 sizeof(run->emulation_failure.insn_bytes));
7477 memcpy(run->emulation_failure.insn_bytes,
7478 ctxt->fetch.data, insn_size);
7479 }
7480}
7481
Liran Alone2366172018-03-12 13:12:49 +02007482static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007483{
Aaron Lewis19238e72021-05-10 07:48:33 -07007484 struct kvm *kvm = vcpu->kvm;
7485
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007486 ++vcpu->stat.insn_emulation_fail;
7487 trace_kvm_emulate_insn_failed(vcpu);
Liran Alone2366172018-03-12 13:12:49 +02007488
Sean Christopherson42cbf062019-08-27 14:40:31 -07007489 if (emulation_type & EMULTYPE_VMWARE_GP) {
7490 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007491 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007492 }
Liran Alone2366172018-03-12 13:12:49 +02007493
Aaron Lewis19238e72021-05-10 07:48:33 -07007494 if (kvm->arch.exit_on_emulation_error ||
7495 (emulation_type & EMULTYPE_SKIP)) {
7496 prepare_emulation_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007497 return 0;
Sean Christopherson738fece2019-08-27 14:40:34 -07007498 }
7499
Sean Christopherson22da61c2019-08-27 14:40:28 -07007500 kvm_queue_exception(vcpu, UD_VECTOR);
7501
Jason Baronb36464772021-01-14 22:27:56 -05007502 if (!is_guest_mode(vcpu) && static_call(kvm_x86_get_cpl)(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007503 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7504 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7505 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007506 return 0;
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007507 }
Liran Alone2366172018-03-12 13:12:49 +02007508
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007509 return 1;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007510}
7511
Sean Christopherson736c2912019-12-06 15:57:14 -08007512static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007513 bool write_fault_to_shadow_pgtable,
7514 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03007515{
Sean Christopherson736c2912019-12-06 15:57:14 -08007516 gpa_t gpa = cr2_or_gpa;
Dan Williamsba049e92016-01-15 16:56:11 -08007517 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007518
Sean Christopherson92daa482020-02-18 15:03:08 -08007519 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Gleb Natapov991eebf2013-04-11 12:10:51 +03007520 return false;
7521
Sean Christopherson92daa482020-02-18 15:03:08 -08007522 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7523 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007524 return false;
7525
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007526 if (!vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007527 /*
7528 * Write permission should be allowed since only
7529 * write access need to be emulated.
7530 */
Sean Christopherson736c2912019-12-06 15:57:14 -08007531 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03007532
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007533 /*
7534 * If the mapping is invalid in guest, let cpu retry
7535 * it to generate fault.
7536 */
7537 if (gpa == UNMAPPED_GVA)
7538 return true;
7539 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007540
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007541 /*
7542 * Do not retry the unhandleable instruction if it faults on the
7543 * readonly host memory, otherwise it will goto a infinite loop:
7544 * retry instruction -> write #PF -> emulation fail -> retry
7545 * instruction -> ...
7546 */
7547 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007548
7549 /*
7550 * If the instruction failed on the error pfn, it can not be fixed,
7551 * report the error to userspace.
7552 */
7553 if (is_error_noslot_pfn(pfn))
7554 return false;
7555
7556 kvm_release_pfn_clean(pfn);
7557
7558 /* The instructions are well-emulated on direct mmu. */
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007559 if (vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007560 unsigned int indirect_shadow_pages;
7561
Ben Gardon531810c2021-02-02 10:57:24 -08007562 write_lock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007563 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
Ben Gardon531810c2021-02-02 10:57:24 -08007564 write_unlock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007565
7566 if (indirect_shadow_pages)
7567 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
7568
Gleb Natapova6f177e2010-07-08 12:41:12 +03007569 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007570 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007571
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007572 /*
7573 * if emulation was due to access to shadowed page table
7574 * and it failed try to unshadow page and re-enter the
7575 * guest to let CPU execute the instruction.
7576 */
7577 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007578
7579 /*
7580 * If the access faults on its page table, it can not
7581 * be fixed by unprotecting shadow page and it should
7582 * be reported to userspace.
7583 */
7584 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007585}
7586
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007587static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
Sean Christopherson736c2912019-12-06 15:57:14 -08007588 gpa_t cr2_or_gpa, int emulation_type)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007589{
7590 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christopherson736c2912019-12-06 15:57:14 -08007591 unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007592
7593 last_retry_eip = vcpu->arch.last_retry_eip;
7594 last_retry_addr = vcpu->arch.last_retry_addr;
7595
7596 /*
7597 * If the emulation is caused by #PF and it is non-page_table
7598 * writing instruction, it means the VM-EXIT is caused by shadow
7599 * page protected, we can zap the shadow page and retry this
7600 * instruction directly.
7601 *
7602 * Note: if the guest uses a non-page-table modifying instruction
7603 * on the PDE that points to the instruction, then we will unmap
7604 * the instruction and go to an infinite loop. So, we cache the
7605 * last retried eip and the last fault address, if we meet the eip
7606 * and the address again, we can break out of the potential infinite
7607 * loop.
7608 */
7609 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
7610
Sean Christopherson92daa482020-02-18 15:03:08 -08007611 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007612 return false;
7613
Sean Christopherson92daa482020-02-18 15:03:08 -08007614 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7615 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007616 return false;
7617
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007618 if (x86_page_table_writing_insn(ctxt))
7619 return false;
7620
Sean Christopherson736c2912019-12-06 15:57:14 -08007621 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007622 return false;
7623
7624 vcpu->arch.last_retry_eip = ctxt->eip;
Sean Christopherson736c2912019-12-06 15:57:14 -08007625 vcpu->arch.last_retry_addr = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007626
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007627 if (!vcpu->arch.mmu->direct_map)
Sean Christopherson736c2912019-12-06 15:57:14 -08007628 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007629
Xiao Guangrong22368022013-01-13 23:44:12 +08007630 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007631
7632 return true;
7633}
7634
Gleb Natapov716d51a2012-09-03 15:24:26 +03007635static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
7636static int complete_emulated_pio(struct kvm_vcpu *vcpu);
7637
Sean Christophersondc872752021-06-09 11:56:15 -07007638static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm)
Paolo Bonzinia5845392015-04-01 18:18:53 +02007639{
Sean Christopherson1270e642021-06-09 11:56:17 -07007640 trace_kvm_smm_transition(vcpu->vcpu_id, vcpu->arch.smbase, entering_smm);
Sean Christopherson0d7ee6f2021-06-09 11:56:16 -07007641
Sean Christophersondc872752021-06-09 11:56:15 -07007642 if (entering_smm) {
7643 vcpu->arch.hflags |= HF_SMM_MASK;
7644 } else {
7645 vcpu->arch.hflags &= ~(HF_SMM_MASK | HF_SMM_INSIDE_NMI_MASK);
7646
Paolo Bonzinic43203c2016-06-01 22:26:00 +02007647 /* Process a latched INIT or SMI, if any. */
7648 kvm_make_request(KVM_REQ_EVENT, vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007649 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02007650
7651 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007652}
7653
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007654static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
7655 unsigned long *db)
7656{
7657 u32 dr6 = 0;
7658 int i;
7659 u32 enable, rwlen;
7660
7661 enable = dr7;
7662 rwlen = dr7 >> 16;
7663 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
7664 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
7665 dr6 |= (1 << i);
7666 return dr6;
7667}
7668
Sean Christopherson120c2c42019-08-27 14:40:29 -07007669static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007670{
7671 struct kvm_run *kvm_run = vcpu->run;
7672
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007673 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08007674 kvm_run->debug.arch.dr6 = DR6_BS | DR6_ACTIVE_LOW;
Peter Xud5d260c2020-05-05 16:49:59 -04007675 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007676 kvm_run->debug.arch.exception = DB_VECTOR;
7677 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007678 return 0;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007679 }
Sean Christopherson120c2c42019-08-27 14:40:29 -07007680 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007681 return 1;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007682}
7683
Kyle Huey6affcbe2016-11-29 12:40:40 -08007684int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
7685{
Jason Baronb36464772021-01-14 22:27:56 -05007686 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007687 int r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007688
Jason Baronb36464772021-01-14 22:27:56 -05007689 r = static_call(kvm_x86_skip_emulated_instruction)(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007690 if (unlikely(!r))
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007691 return 0;
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007692
7693 /*
7694 * rflags is the old, "raw" value of the flags. The new value has
7695 * not been saved yet.
7696 *
7697 * This is correct even for TF set by the guest, because "the
7698 * processor will not generate this exception after the instruction
7699 * that sets the TF flag".
7700 */
7701 if (unlikely(rflags & X86_EFLAGS_TF))
Sean Christopherson120c2c42019-08-27 14:40:29 -07007702 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007703 return r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08007704}
7705EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
7706
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007707static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
7708{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007709 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
7710 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02007711 struct kvm_run *kvm_run = vcpu->run;
7712 unsigned long eip = kvm_get_linear_rip(vcpu);
7713 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007714 vcpu->arch.guest_debug_dr7,
7715 vcpu->arch.eff_db);
7716
7717 if (dr6 != 0) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08007718 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Nadav Amit82b32772014-11-02 11:54:45 +02007719 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007720 kvm_run->debug.arch.exception = DB_VECTOR;
7721 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007722 *r = 0;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007723 return true;
7724 }
7725 }
7726
Nadav Amit4161a562014-07-17 01:19:31 +03007727 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
7728 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02007729 unsigned long eip = kvm_get_linear_rip(vcpu);
7730 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007731 vcpu->arch.dr7,
7732 vcpu->arch.db);
7733
7734 if (dr6 != 0) {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04007735 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007736 *r = 1;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007737 return true;
7738 }
7739 }
7740
7741 return false;
7742}
7743
Liran Alon04789b62018-03-12 13:12:50 +02007744static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt)
7745{
Arbel Moshe2d7921c2018-03-12 13:12:53 +02007746 switch (ctxt->opcode_len) {
7747 case 1:
7748 switch (ctxt->b) {
7749 case 0xe4: /* IN */
7750 case 0xe5:
7751 case 0xec:
7752 case 0xed:
7753 case 0xe6: /* OUT */
7754 case 0xe7:
7755 case 0xee:
7756 case 0xef:
7757 case 0x6c: /* INS */
7758 case 0x6d:
7759 case 0x6e: /* OUTS */
7760 case 0x6f:
7761 return true;
7762 }
7763 break;
7764 case 2:
7765 switch (ctxt->b) {
7766 case 0x33: /* RDPMC */
7767 return true;
7768 }
7769 break;
Liran Alon04789b62018-03-12 13:12:50 +02007770 }
7771
7772 return false;
7773}
7774
Wei Huang4aa26912021-01-26 03:18:28 -05007775/*
7776 * Decode to be emulated instruction. Return EMULATION_OK if success.
7777 */
7778int x86_decode_emulated_instruction(struct kvm_vcpu *vcpu, int emulation_type,
7779 void *insn, int insn_len)
7780{
7781 int r = EMULATION_OK;
7782 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7783
7784 init_emulate_ctxt(vcpu);
7785
7786 /*
7787 * We will reenter on the same instruction since we do not set
7788 * complete_userspace_io. This does not handle watchpoints yet,
7789 * those would be handled in the emulate_ops.
7790 */
7791 if (!(emulation_type & EMULTYPE_SKIP) &&
7792 kvm_vcpu_check_breakpoint(vcpu, &r))
7793 return r;
7794
Wanpeng Lib35491e2021-05-27 17:01:37 -07007795 r = x86_decode_insn(ctxt, insn, insn_len, emulation_type);
Wei Huang4aa26912021-01-26 03:18:28 -05007796
7797 trace_kvm_emulate_insn_start(vcpu);
7798 ++vcpu->stat.insn_emulation;
7799
7800 return r;
7801}
7802EXPORT_SYMBOL_GPL(x86_decode_emulated_instruction);
7803
Sean Christopherson736c2912019-12-06 15:57:14 -08007804int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
7805 int emulation_type, void *insn, int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007806{
Gleb Natapov95cb2292010-04-28 19:15:43 +03007807 int r;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007808 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007809 bool writeback = true;
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007810 bool write_fault_to_spt;
7811
Jason Baronb36464772021-01-14 22:27:56 -05007812 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, insn, insn_len)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007813 return 1;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007814
Paolo Bonzinic595cee2018-07-02 13:07:14 +02007815 vcpu->arch.l1tf_flush_l1d = true;
7816
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007817 /*
7818 * Clear write_fault_to_shadow_pgtable here to ensure it is
7819 * never reused.
7820 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07007821 write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007822 vcpu->arch.write_fault_to_shadow_pgtable = false;
Gleb Natapov8d7d81022011-04-12 12:36:21 +03007823
Sheng Yang571008d2008-01-02 14:49:22 +08007824 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Wei Huang4aa26912021-01-26 03:18:28 -05007825 kvm_clear_exception_queue(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007826
Wei Huang4aa26912021-01-26 03:18:28 -05007827 r = x86_decode_emulated_instruction(vcpu, emulation_type,
7828 insn, insn_len);
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09007829 if (r != EMULATION_OK) {
Sean Christophersonb4000602019-08-27 14:40:32 -07007830 if ((emulation_type & EMULTYPE_TRAP_UD) ||
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07007831 (emulation_type & EMULTYPE_TRAP_UD_FORCED)) {
7832 kvm_queue_exception(vcpu, UD_VECTOR);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007833 return 1;
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07007834 }
Sean Christopherson736c2912019-12-06 15:57:14 -08007835 if (reexecute_instruction(vcpu, cr2_or_gpa,
7836 write_fault_to_spt,
7837 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007838 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00007839 if (ctxt->have_exception) {
Jan Dakinevichc8848ce2019-08-27 13:07:08 +00007840 /*
7841 * #UD should result in just EMULATION_FAILED, and trap-like
7842 * exception should not be encountered during decode.
7843 */
7844 WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR ||
7845 exception_type(ctxt->exception.vector) == EXCPT_TRAP);
Jan Dakinevich8530a792019-08-27 13:07:09 +00007846 inject_emulated_exception(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007847 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00007848 }
Liran Alone2366172018-03-12 13:12:49 +02007849 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007850 }
7851 }
7852
Sean Christopherson42cbf062019-08-27 14:40:31 -07007853 if ((emulation_type & EMULTYPE_VMWARE_GP) &&
7854 !is_vmware_backdoor_opcode(ctxt)) {
7855 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007856 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007857 }
Liran Alon04789b62018-03-12 13:12:50 +02007858
Sean Christopherson1957aa62019-08-27 14:40:39 -07007859 /*
7860 * Note, EMULTYPE_SKIP is intended for use *only* by vendor callbacks
7861 * for kvm_skip_emulated_instruction(). The caller is responsible for
7862 * updating interruptibility state and injecting single-step #DBs.
7863 */
Gleb Natapovba8afb62009-04-12 13:36:57 +03007864 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03007865 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03007866 if (ctxt->eflags & X86_EFLAGS_RF)
7867 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007868 return 1;
Gleb Natapovba8afb62009-04-12 13:36:57 +03007869 }
7870
Sean Christopherson736c2912019-12-06 15:57:14 -08007871 if (retry_instruction(ctxt, cr2_or_gpa, emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007872 return 1;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007873
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007874 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03007875 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007876 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
7877 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03007878 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007879 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03007880
Gleb Natapov5cd21912010-03-18 15:20:26 +02007881restart:
Sean Christopherson92daa482020-02-18 15:03:08 -08007882 if (emulation_type & EMULTYPE_PF) {
7883 /* Save the faulting GPA (cr2) in the address field */
7884 ctxt->exception.address = cr2_or_gpa;
7885
7886 /* With shadow page tables, cr2 contains a GVA or nGPA. */
7887 if (vcpu->arch.mmu->direct_map) {
Sean Christopherson744e6992020-02-18 15:03:09 -08007888 ctxt->gpa_available = true;
7889 ctxt->gpa_val = cr2_or_gpa;
Sean Christopherson92daa482020-02-18 15:03:08 -08007890 }
7891 } else {
7892 /* Sanitize the address out of an abundance of paranoia. */
7893 ctxt->exception.address = 0;
7894 }
Tom Lendacky0f89b202016-12-14 14:59:23 -05007895
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007896 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03007897
Joerg Roedel775fde82011-04-04 12:39:24 +02007898 if (r == EMULATION_INTERCEPTED)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007899 return 1;
Joerg Roedel775fde82011-04-04 12:39:24 +02007900
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007901 if (r == EMULATION_FAILED) {
Sean Christopherson736c2912019-12-06 15:57:14 -08007902 if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007903 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007904 return 1;
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03007905
Liran Alone2366172018-03-12 13:12:49 +02007906 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007907 }
7908
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007909 if (ctxt->have_exception) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007910 r = 1;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007911 if (inject_emulated_exception(vcpu))
7912 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007913 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02007914 if (!vcpu->arch.pio.in) {
7915 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03007916 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02007917 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007918 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03007919 vcpu->arch.complete_userspace_io = complete_emulated_pio;
7920 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007921 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007922 } else if (vcpu->mmio_needed) {
Sean Christophersonbc8a0aa2019-08-27 14:40:27 -07007923 ++vcpu->stat.mmio_exits;
7924
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007925 if (!vcpu->mmio_is_write)
7926 writeback = false;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007927 r = 0;
Gleb Natapov716d51a2012-09-03 15:24:26 +03007928 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007929 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03007930 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03007931 else
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007932 r = 1;
Gleb Natapove85d28f2010-07-29 15:11:52 +03007933
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007934 if (writeback) {
Jason Baronb36464772021-01-14 22:27:56 -05007935 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007936 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007937 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Nadav Amit38827db2014-11-02 11:54:53 +02007938 if (!ctxt->have_exception ||
Sean Christopherson75ee23b2019-08-23 13:55:44 -07007939 exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
7940 kvm_rip_write(vcpu, ctxt->eip);
Felipe Franciosi384dea12020-05-19 08:11:22 +00007941 if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)))
Sean Christopherson120c2c42019-08-27 14:40:29 -07007942 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007943 if (kvm_x86_ops.update_emulated_instruction)
Jason Baronb36464772021-01-14 22:27:56 -05007944 static_call(kvm_x86_update_emulated_instruction)(vcpu);
Nadav Amit38827db2014-11-02 11:54:53 +02007945 __kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07007946 }
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007947
7948 /*
7949 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
7950 * do nothing, and it will be requested again as soon as
7951 * the shadow expires. But we still need to check here,
7952 * because POPF has no interrupt shadow.
7953 */
7954 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
7955 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007956 } else
7957 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03007958
Gleb Natapove85d28f2010-07-29 15:11:52 +03007959 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01007960}
Sean Christophersonc60658d2018-08-23 13:56:53 -07007961
7962int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type)
7963{
7964 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
7965}
7966EXPORT_SYMBOL_GPL(kvm_emulate_instruction);
7967
7968int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
7969 void *insn, int insn_len)
7970{
7971 return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len);
7972}
7973EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007974
Sean Christopherson8764ed52019-04-29 07:04:15 -07007975static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu)
7976{
7977 vcpu->arch.pio.count = 0;
7978 return 1;
7979}
7980
Sean Christopherson45def772019-03-11 20:01:05 -07007981static int complete_fast_pio_out(struct kvm_vcpu *vcpu)
7982{
7983 vcpu->arch.pio.count = 0;
7984
7985 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip)))
7986 return 1;
7987
7988 return kvm_skip_emulated_instruction(vcpu);
7989}
7990
Sean Christophersondca7f122018-03-08 08:57:27 -08007991static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size,
7992 unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01007993{
Sean Christophersonde3cd112019-04-30 10:36:17 -07007994 unsigned long val = kvm_rax_read(vcpu);
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007995 int ret = emulator_pio_out(vcpu, size, port, &val, 1);
7996
Sean Christopherson8764ed52019-04-29 07:04:15 -07007997 if (ret)
7998 return ret;
Sean Christopherson45def772019-03-11 20:01:05 -07007999
Sean Christopherson8764ed52019-04-29 07:04:15 -07008000 /*
8001 * Workaround userspace that relies on old KVM behavior of %rip being
8002 * incremented prior to exiting to userspace to handle "OUT 0x7e".
8003 */
8004 if (port == 0x7e &&
8005 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) {
8006 vcpu->arch.complete_userspace_io =
8007 complete_fast_pio_out_port_0x7e;
8008 kvm_skip_emulated_instruction(vcpu);
8009 } else {
Sean Christopherson45def772019-03-11 20:01:05 -07008010 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
8011 vcpu->arch.complete_userspace_io = complete_fast_pio_out;
8012 }
Sean Christopherson8764ed52019-04-29 07:04:15 -07008013 return 0;
Carsten Ottede7d7892007-10-30 18:44:25 +01008014}
Carsten Ottede7d7892007-10-30 18:44:25 +01008015
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008016static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
8017{
8018 unsigned long val;
8019
8020 /* We should only ever be called with arch.pio.count equal to 1 */
8021 BUG_ON(vcpu->arch.pio.count != 1);
8022
Sean Christopherson45def772019-03-11 20:01:05 -07008023 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) {
8024 vcpu->arch.pio.count = 0;
8025 return 1;
8026 }
8027
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008028 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008029 val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008030
8031 /*
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008032 * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008033 * the copy and tracing
8034 */
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008035 emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1);
Sean Christophersonde3cd112019-04-30 10:36:17 -07008036 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008037
Sean Christopherson45def772019-03-11 20:01:05 -07008038 return kvm_skip_emulated_instruction(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008039}
8040
Sean Christophersondca7f122018-03-08 08:57:27 -08008041static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size,
8042 unsigned short port)
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008043{
8044 unsigned long val;
8045 int ret;
8046
8047 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008048 val = (size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008049
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008050 ret = emulator_pio_in(vcpu, size, port, &val, 1);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008051 if (ret) {
Sean Christophersonde3cd112019-04-30 10:36:17 -07008052 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008053 return ret;
8054 }
8055
Sean Christopherson45def772019-03-11 20:01:05 -07008056 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008057 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
8058
8059 return 0;
8060}
Sean Christophersondca7f122018-03-08 08:57:27 -08008061
8062int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in)
8063{
Sean Christopherson45def772019-03-11 20:01:05 -07008064 int ret;
Sean Christophersondca7f122018-03-08 08:57:27 -08008065
Sean Christophersondca7f122018-03-08 08:57:27 -08008066 if (in)
Sean Christopherson45def772019-03-11 20:01:05 -07008067 ret = kvm_fast_pio_in(vcpu, size, port);
Sean Christophersondca7f122018-03-08 08:57:27 -08008068 else
Sean Christopherson45def772019-03-11 20:01:05 -07008069 ret = kvm_fast_pio_out(vcpu, size, port);
8070 return ret && kvm_skip_emulated_instruction(vcpu);
Sean Christophersondca7f122018-03-08 08:57:27 -08008071}
8072EXPORT_SYMBOL_GPL(kvm_fast_pio);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008073
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008074static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008075{
Tejun Heo0a3aee02010-12-18 16:28:55 +01008076 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008077 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008078}
8079
8080static void tsc_khz_changed(void *data)
8081{
8082 struct cpufreq_freqs *freq = data;
8083 unsigned long khz = 0;
8084
8085 if (data)
8086 khz = freq->new;
8087 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8088 khz = cpufreq_quick_get(raw_smp_processor_id());
8089 if (!khz)
8090 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01008091 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008092}
8093
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008094#ifdef CONFIG_X86_64
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008095static void kvm_hyperv_tsc_notifier(void)
8096{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008097 struct kvm *kvm;
8098 struct kvm_vcpu *vcpu;
8099 int cpu;
Paolo Bonzinia83829f2021-03-25 14:11:14 -04008100 unsigned long flags;
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008101
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008102 mutex_lock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008103 list_for_each_entry(kvm, &vm_list, vm_list)
8104 kvm_make_mclock_inprogress_request(kvm);
8105
8106 hyperv_stop_tsc_emulation();
8107
8108 /* TSC frequency always matches when on Hyper-V */
8109 for_each_present_cpu(cpu)
8110 per_cpu(cpu_tsc_khz, cpu) = tsc_khz;
8111 kvm_max_guest_tsc_khz = tsc_khz;
8112
8113 list_for_each_entry(kvm, &vm_list, vm_list) {
8114 struct kvm_arch *ka = &kvm->arch;
8115
Paolo Bonzinia83829f2021-03-25 14:11:14 -04008116 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008117 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzinia83829f2021-03-25 14:11:14 -04008118 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008119
8120 kvm_for_each_vcpu(cpu, vcpu, kvm)
8121 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
8122
8123 kvm_for_each_vcpu(cpu, vcpu, kvm)
8124 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008125 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008126 mutex_unlock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008127}
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008128#endif
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008129
Viresh Kumardf240142019-04-29 15:03:58 +05308130static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008131{
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008132 struct kvm *kvm;
8133 struct kvm_vcpu *vcpu;
8134 int i, send_ipi = 0;
8135
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008136 /*
8137 * We allow guests to temporarily run on slowing clocks,
8138 * provided we notify them after, or to run on accelerating
8139 * clocks, provided we notify them before. Thus time never
8140 * goes backwards.
8141 *
8142 * However, we have a problem. We can't atomically update
8143 * the frequency of a given CPU from this function; it is
8144 * merely a notifier, which can be called from any CPU.
8145 * Changing the TSC frequency at arbitrary points in time
8146 * requires a recomputation of local variables related to
8147 * the TSC for each VCPU. We must flag these local variables
8148 * to be updated and be sure the update takes place with the
8149 * new frequency before any guests proceed.
8150 *
8151 * Unfortunately, the combination of hotplug CPU and frequency
8152 * change creates an intractable locking scenario; the order
8153 * of when these callouts happen is undefined with respect to
8154 * CPU hotplug, and they can race with each other. As such,
8155 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
8156 * undefined; you can actually have a CPU frequency change take
8157 * place in between the computation of X and the setting of the
8158 * variable. To protect against this problem, all updates of
8159 * the per_cpu tsc_khz variable are done in an interrupt
8160 * protected IPI, and all callers wishing to update the value
8161 * must wait for a synchronous IPI to complete (which is trivial
8162 * if the caller is on the CPU already). This establishes the
8163 * necessary total order on variable updates.
8164 *
8165 * Note that because a guest time update may take place
8166 * anytime after the setting of the VCPU's request bit, the
8167 * correct TSC value must be set before the request. However,
8168 * to ensure the update actually makes it to any guest which
8169 * starts running in hardware virtualization between the set
8170 * and the acquisition of the spinlock, we must also ping the
8171 * CPU after setting the request bit.
8172 *
8173 */
8174
Viresh Kumardf240142019-04-29 15:03:58 +05308175 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008176
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008177 mutex_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008178 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008179 kvm_for_each_vcpu(i, vcpu, kvm) {
Viresh Kumardf240142019-04-29 15:03:58 +05308180 if (vcpu->cpu != cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008181 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10008182 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008183 if (vcpu->cpu != raw_smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008184 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008185 }
8186 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008187 mutex_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008188
8189 if (freq->old < freq->new && send_ipi) {
8190 /*
8191 * We upscale the frequency. Must make the guest
8192 * doesn't see old kvmclock values while running with
8193 * the new frequency, otherwise we risk the guest sees
8194 * time go backwards.
8195 *
8196 * In case we update the frequency for another cpu
8197 * (which might be in guest context) send an interrupt
8198 * to kick the cpu out of guest context. Next time
8199 * guest context is entered kvmclock will be updated,
8200 * so the guest will not see stale values.
8201 */
Viresh Kumardf240142019-04-29 15:03:58 +05308202 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008203 }
Viresh Kumardf240142019-04-29 15:03:58 +05308204}
8205
8206static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
8207 void *data)
8208{
8209 struct cpufreq_freqs *freq = data;
8210 int cpu;
8211
8212 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
8213 return 0;
8214 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
8215 return 0;
8216
8217 for_each_cpu(cpu, freq->policy->cpus)
8218 __kvmclock_cpufreq_notifier(freq, cpu);
8219
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008220 return 0;
8221}
8222
8223static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008224 .notifier_call = kvmclock_cpufreq_notifier
8225};
8226
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008227static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008228{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008229 tsc_khz_changed(NULL);
8230 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008231}
8232
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008233static void kvm_timer_init(void)
8234{
Zachary Amsdenc2855452010-09-18 14:38:15 -10008235 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308236
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008237 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10008238#ifdef CONFIG_CPU_FREQ
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008239 struct cpufreq_policy *policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02008240 int cpu;
8241
Avi Kivity3e26f232010-12-16 12:16:34 +02008242 cpu = get_cpu();
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008243 policy = cpufreq_cpu_get(cpu);
Wanpeng Li9a119972020-03-02 15:15:36 +08008244 if (policy) {
8245 if (policy->cpuinfo.max_freq)
8246 max_tsc_khz = policy->cpuinfo.max_freq;
8247 cpufreq_cpu_put(policy);
8248 }
Avi Kivity3e26f232010-12-16 12:16:34 +02008249 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10008250#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008251 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
8252 CPUFREQ_TRANSITION_NOTIFIER);
8253 }
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308254
Thomas Gleixner73c1b412016-12-21 20:19:54 +01008255 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008256 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008257}
8258
Andi Kleendd60d212017-07-25 17:20:32 -07008259DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
8260EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008261
Gleb Natapovf5132b02011-11-10 14:57:22 +02008262int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008263{
Alex,Shi086c9852011-10-20 15:34:01 +08008264 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008265}
8266
8267static int kvm_is_user_mode(void)
8268{
8269 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008270
Alex,Shi086c9852011-10-20 15:34:01 +08008271 if (__this_cpu_read(current_vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008272 user_mode = static_call(kvm_x86_get_cpl)(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008273
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008274 return user_mode != 0;
8275}
8276
8277static unsigned long kvm_get_guest_ip(void)
8278{
8279 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008280
Alex,Shi086c9852011-10-20 15:34:01 +08008281 if (__this_cpu_read(current_vcpu))
8282 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008283
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008284 return ip;
8285}
8286
Luwei Kang8479e042019-02-18 19:26:07 -05008287static void kvm_handle_intel_pt_intr(void)
8288{
8289 struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu);
8290
8291 kvm_make_request(KVM_REQ_PMI, vcpu);
8292 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
8293 (unsigned long *)&vcpu->arch.pmu.global_status);
8294}
8295
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008296static struct perf_guest_info_callbacks kvm_guest_cbs = {
8297 .is_in_guest = kvm_is_in_guest,
8298 .is_user_mode = kvm_is_user_mode,
8299 .get_guest_ip = kvm_get_guest_ip,
Luwei Kang8479e042019-02-18 19:26:07 -05008300 .handle_intel_pt_intr = kvm_handle_intel_pt_intr,
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008301};
8302
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008303#ifdef CONFIG_X86_64
8304static void pvclock_gtod_update_fn(struct work_struct *work)
8305{
Marcelo Tosattid8281992012-11-27 23:29:01 -02008306 struct kvm *kvm;
8307
8308 struct kvm_vcpu *vcpu;
8309 int i;
8310
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008311 mutex_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008312 list_for_each_entry(kvm, &vm_list, vm_list)
8313 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08008314 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008315 atomic_set(&kvm_guest_has_master_clock, 0);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008316 mutex_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008317}
8318
8319static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
8320
8321/*
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008322 * Indirection to move queue_work() out of the tk_core.seq write held
8323 * region to prevent possible deadlocks against time accessors which
8324 * are invoked with work related locks held.
8325 */
8326static void pvclock_irq_work_fn(struct irq_work *w)
8327{
8328 queue_work(system_long_wq, &pvclock_gtod_work);
8329}
8330
8331static DEFINE_IRQ_WORK(pvclock_irq_work, pvclock_irq_work_fn);
8332
8333/*
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008334 * Notification about pvclock gtod data update.
8335 */
8336static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
8337 void *priv)
8338{
8339 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
8340 struct timekeeper *tk = priv;
8341
8342 update_pvclock_gtod(tk);
8343
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008344 /*
8345 * Disable master clock if host does not trust, or does not use,
8346 * TSC based clocksource. Delegate queue_work() to irq_work as
8347 * this is invoked with tk_core.seq write held.
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008348 */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01008349 if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) &&
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008350 atomic_read(&kvm_guest_has_master_clock) != 0)
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008351 irq_work_queue(&pvclock_irq_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008352 return 0;
8353}
8354
8355static struct notifier_block pvclock_gtod_notifier = {
8356 .notifier_call = pvclock_gtod_notify,
8357};
8358#endif
8359
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008360int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02008361{
Sean Christophersond008dfd2020-03-21 13:25:56 -07008362 struct kvm_x86_init_ops *ops = opaque;
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008363 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008364
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008365 if (kvm_x86_ops.hardware_enable) {
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008366 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008367 r = -EEXIST;
8368 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008369 }
8370
8371 if (!ops->cpu_has_kvm_support()) {
Erwan Veluef935c252020-02-27 19:00:46 +01008372 pr_err_ratelimited("kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008373 r = -EOPNOTSUPP;
8374 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008375 }
8376 if (ops->disabled_by_bios()) {
Erwan Veluef935c252020-02-27 19:00:46 +01008377 pr_err_ratelimited("kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008378 r = -EOPNOTSUPP;
8379 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008380 }
8381
Marc Orrb666a4b2018-11-06 14:53:56 -08008382 /*
8383 * KVM explicitly assumes that the guest has an FPU and
8384 * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the
8385 * vCPU's FPU state as a fxregs_state struct.
8386 */
8387 if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) {
8388 printk(KERN_ERR "kvm: inadequate fpu\n");
8389 r = -EOPNOTSUPP;
8390 goto out;
8391 }
8392
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008393 r = -ENOMEM;
Paolo Bonzinied8e4812018-12-21 11:25:59 +01008394 x86_fpu_cache = kmem_cache_create("x86_fpu", sizeof(struct fpu),
Marc Orrb666a4b2018-11-06 14:53:56 -08008395 __alignof__(struct fpu), SLAB_ACCOUNT,
8396 NULL);
8397 if (!x86_fpu_cache) {
8398 printk(KERN_ERR "kvm: failed to allocate cache for x86 fpu\n");
8399 goto out;
8400 }
8401
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008402 x86_emulator_cache = kvm_alloc_emulator_cache();
8403 if (!x86_emulator_cache) {
8404 pr_err("kvm: failed to allocate cache for x86 emulator\n");
8405 goto out_free_x86_fpu_cache;
8406 }
8407
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008408 user_return_msrs = alloc_percpu(struct kvm_user_return_msrs);
8409 if (!user_return_msrs) {
8410 printk(KERN_ERR "kvm: failed to allocate percpu kvm_user_return_msrs\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008411 goto out_free_x86_emulator_cache;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008412 }
Sean Christophersone5fda4b2021-05-04 10:17:32 -07008413 kvm_nr_uret_msrs = 0;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008414
Avi Kivity97db56c2008-01-13 13:23:56 +02008415 r = kvm_mmu_module_init();
8416 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008417 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02008418
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008419 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008420
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008421 perf_register_guest_info_callbacks(&kvm_guest_cbs);
8422
Sean Christophersoncfc48182020-03-02 15:56:23 -08008423 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +08008424 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
Sean Christophersoncfc48182020-03-02 15:56:23 -08008425 supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0;
8426 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08008427
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08008428 if (pi_inject_timer == -1)
8429 pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008430#ifdef CONFIG_X86_64
8431 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008432
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008433 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008434 set_hv_tscchange_cb(kvm_hyperv_tsc_notifier);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008435#endif
8436
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008437 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008438
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008439out_free_percpu:
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008440 free_percpu(user_return_msrs);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008441out_free_x86_emulator_cache:
8442 kmem_cache_destroy(x86_emulator_cache);
Marc Orrb666a4b2018-11-06 14:53:56 -08008443out_free_x86_fpu_cache:
8444 kmem_cache_destroy(x86_fpu_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008445out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008446 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02008447}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008448
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008449void kvm_arch_exit(void)
8450{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008451#ifdef CONFIG_X86_64
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008452 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008453 clear_hv_tscchange_cb();
8454#endif
David Matlackcef84c32016-12-16 14:30:36 -08008455 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008456 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
8457
Jan Kiszka888d2562009-04-17 19:24:58 +02008458 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8459 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
8460 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008461 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008462#ifdef CONFIG_X86_64
8463 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008464 irq_work_sync(&pvclock_irq_work);
Thomas Gleixner594b27e2021-05-05 23:48:17 +02008465 cancel_work_sync(&pvclock_gtod_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008466#endif
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008467 kvm_x86_ops.hardware_enable = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008468 kvm_mmu_module_exit();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008469 free_percpu(user_return_msrs);
Wanpeng Lidfdc0a72021-06-10 21:59:33 -07008470 kmem_cache_destroy(x86_emulator_cache);
Marc Orrb666a4b2018-11-06 14:53:56 -08008471 kmem_cache_destroy(x86_fpu_cache);
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008472#ifdef CONFIG_KVM_XEN
Paolo Bonzinic462f852021-02-26 04:49:06 -05008473 static_key_deferred_flush(&kvm_xen_enabled);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +00008474 WARN_ON(static_branch_unlikely(&kvm_xen_enabled.key));
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008475#endif
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008476}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008477
Paolo Bonzini872f36e2021-01-08 05:54:44 -05008478static int __kvm_vcpu_halt(struct kvm_vcpu *vcpu, int state, int reason)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008479{
8480 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008481 if (lapic_in_kernel(vcpu)) {
Tom Lendacky647daca2021-01-04 14:20:01 -06008482 vcpu->arch.mp_state = state;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008483 return 1;
8484 } else {
Tom Lendacky647daca2021-01-04 14:20:01 -06008485 vcpu->run->exit_reason = reason;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008486 return 0;
8487 }
8488}
Tom Lendacky647daca2021-01-04 14:20:01 -06008489
8490int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
8491{
8492 return __kvm_vcpu_halt(vcpu, KVM_MP_STATE_HALTED, KVM_EXIT_HLT);
8493}
Joel Schopp5cb56052015-03-02 13:43:31 -06008494EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
8495
8496int kvm_emulate_halt(struct kvm_vcpu *vcpu)
8497{
Kyle Huey6affcbe2016-11-29 12:40:40 -08008498 int ret = kvm_skip_emulated_instruction(vcpu);
8499 /*
8500 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
8501 * KVM_EXIT_DEBUG here.
8502 */
8503 return kvm_vcpu_halt(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06008504}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008505EXPORT_SYMBOL_GPL(kvm_emulate_halt);
8506
Tom Lendacky647daca2021-01-04 14:20:01 -06008507int kvm_emulate_ap_reset_hold(struct kvm_vcpu *vcpu)
8508{
8509 int ret = kvm_skip_emulated_instruction(vcpu);
8510
8511 return __kvm_vcpu_halt(vcpu, KVM_MP_STATE_AP_RESET_HOLD, KVM_EXIT_AP_RESET_HOLD) && ret;
8512}
8513EXPORT_SYMBOL_GPL(kvm_emulate_ap_reset_hold);
8514
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008515#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008516static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
8517 unsigned long clock_type)
8518{
8519 struct kvm_clock_pairing clock_pairing;
Arnd Bergmann899a31f2018-04-23 10:04:26 +02008520 struct timespec64 ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01008521 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008522 int ret;
8523
8524 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
8525 return -KVM_EOPNOTSUPP;
8526
YANG LI7ca7f3b2021-01-11 17:32:58 +08008527 if (!kvm_get_walltime_and_clockread(&ts, &cycle))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008528 return -KVM_EOPNOTSUPP;
8529
8530 clock_pairing.sec = ts.tv_sec;
8531 clock_pairing.nsec = ts.tv_nsec;
8532 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
8533 clock_pairing.flags = 0;
Liran Alonbcbfbd82018-11-08 00:43:06 +02008534 memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008535
8536 ret = 0;
8537 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
8538 sizeof(struct kvm_clock_pairing)))
8539 ret = -KVM_EFAULT;
8540
8541 return ret;
8542}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008543#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008544
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308545/*
8546 * kvm_pv_kick_cpu_op: Kick a vcpu.
8547 *
8548 * @apicid - apicid of vcpu to be kicked.
8549 */
8550static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
8551{
Raghavendra K T24d21662013-08-26 14:18:35 +05308552 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308553
Peter Xu150a84f2019-12-04 20:07:21 +01008554 lapic_irq.shorthand = APIC_DEST_NOSHORT;
Peter Xuc96001c2019-12-04 20:07:18 +01008555 lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
Longpeng(Mike)ebd28fc2017-08-02 11:20:51 +08008556 lapic_irq.level = 0;
Raghavendra K T24d21662013-08-26 14:18:35 +05308557 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06008558 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308559
Raghavendra K T24d21662013-08-26 14:18:35 +05308560 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08008561 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308562}
8563
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008564bool kvm_apicv_activated(struct kvm *kvm)
8565{
8566 return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0);
8567}
8568EXPORT_SYMBOL_GPL(kvm_apicv_activated);
8569
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008570static void kvm_apicv_init(struct kvm *kvm)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008571{
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008572 if (enable_apicv)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008573 clear_bit(APICV_INHIBIT_REASON_DISABLE,
8574 &kvm->arch.apicv_inhibit_reasons);
8575 else
8576 set_bit(APICV_INHIBIT_REASON_DISABLE,
8577 &kvm->arch.apicv_inhibit_reasons);
8578}
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008579
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008580static void kvm_sched_yield(struct kvm_vcpu *vcpu, unsigned long dest_id)
Wanpeng Li71506292019-06-11 20:23:49 +08008581{
8582 struct kvm_vcpu *target = NULL;
8583 struct kvm_apic_map *map;
8584
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008585 vcpu->stat.directed_yield_attempted++;
8586
Wanpeng Li72b268a2021-05-18 05:00:32 -07008587 if (single_task_running())
8588 goto no_yield;
8589
Wanpeng Li71506292019-06-11 20:23:49 +08008590 rcu_read_lock();
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008591 map = rcu_dereference(vcpu->kvm->arch.apic_map);
Wanpeng Li71506292019-06-11 20:23:49 +08008592
8593 if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id])
8594 target = map->phys_map[dest_id]->vcpu;
8595
8596 rcu_read_unlock();
8597
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008598 if (!target || !READ_ONCE(target->ready))
8599 goto no_yield;
8600
Wanpeng Lia1fa4cb2021-04-09 12:18:31 +08008601 /* Ignore requests to yield to self */
8602 if (vcpu == target)
8603 goto no_yield;
8604
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008605 if (kvm_vcpu_yield_to(target) <= 0)
8606 goto no_yield;
8607
8608 vcpu->stat.directed_yield_successful++;
8609
8610no_yield:
8611 return;
Wanpeng Li71506292019-06-11 20:23:49 +08008612}
8613
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008614static int complete_hypercall_exit(struct kvm_vcpu *vcpu)
8615{
8616 u64 ret = vcpu->run->hypercall.ret;
8617
8618 if (!is_64_bit_mode(vcpu))
8619 ret = (u32)ret;
8620 kvm_rax_write(vcpu, ret);
8621 ++vcpu->stat.hypercalls;
8622 return kvm_skip_emulated_instruction(vcpu);
8623}
8624
Hollis Blanchard8776e512007-10-31 17:24:24 -05008625int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
8626{
8627 unsigned long nr, a0, a1, a2, a3, ret;
Marian Rotariu6356ee02018-04-30 12:23:01 +03008628 int op_64_bit;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008629
Joao Martins23200b72018-06-13 09:55:44 -04008630 if (kvm_xen_hypercall_enabled(vcpu->kvm))
8631 return kvm_xen_hypercall(vcpu);
8632
Vitaly Kuznetsov8f014552021-01-26 14:48:14 +01008633 if (kvm_hv_hypercall_enabled(vcpu))
Radim Krčmář696ca772018-05-24 17:50:56 +02008634 return kvm_hv_hypercall(vcpu);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02008635
Sean Christophersonde3cd112019-04-30 10:36:17 -07008636 nr = kvm_rax_read(vcpu);
8637 a0 = kvm_rbx_read(vcpu);
8638 a1 = kvm_rcx_read(vcpu);
8639 a2 = kvm_rdx_read(vcpu);
8640 a3 = kvm_rsi_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008641
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008642 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04008643
Nadav Amita449c7a2014-06-18 17:19:24 +03008644 op_64_bit = is_64_bit_mode(vcpu);
8645 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05008646 nr &= 0xFFFFFFFF;
8647 a0 &= 0xFFFFFFFF;
8648 a1 &= 0xFFFFFFFF;
8649 a2 &= 0xFFFFFFFF;
8650 a3 &= 0xFFFFFFFF;
8651 }
8652
Jason Baronb36464772021-01-14 22:27:56 -05008653 if (static_call(kvm_x86_get_cpl)(vcpu) != 0) {
Jan Kiszka07708c42009-08-03 18:43:28 +02008654 ret = -KVM_EPERM;
Radim Krčmář696ca772018-05-24 17:50:56 +02008655 goto out;
Jan Kiszka07708c42009-08-03 18:43:28 +02008656 }
8657
Oliver Upton66570e92020-08-18 15:24:28 +00008658 ret = -KVM_ENOSYS;
8659
Hollis Blanchard8776e512007-10-31 17:24:24 -05008660 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02008661 case KVM_HC_VAPIC_POLL_IRQ:
8662 ret = 0;
8663 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308664 case KVM_HC_KICK_CPU:
Oliver Upton66570e92020-08-18 15:24:28 +00008665 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT))
8666 break;
8667
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308668 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008669 kvm_sched_yield(vcpu, a1);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308670 ret = 0;
8671 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008672#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008673 case KVM_HC_CLOCK_PAIRING:
8674 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
8675 break;
Sean Christopherson1ed199a2019-01-23 09:22:39 -08008676#endif
Wanpeng Li4180bf12018-07-23 14:39:54 +08008677 case KVM_HC_SEND_IPI:
Oliver Upton66570e92020-08-18 15:24:28 +00008678 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SEND_IPI))
8679 break;
8680
Wanpeng Li4180bf12018-07-23 14:39:54 +08008681 ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit);
8682 break;
Wanpeng Li71506292019-06-11 20:23:49 +08008683 case KVM_HC_SCHED_YIELD:
Oliver Upton66570e92020-08-18 15:24:28 +00008684 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SCHED_YIELD))
8685 break;
8686
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008687 kvm_sched_yield(vcpu, a0);
Wanpeng Li71506292019-06-11 20:23:49 +08008688 ret = 0;
8689 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008690 case KVM_HC_MAP_GPA_RANGE: {
8691 u64 gpa = a0, npages = a1, attrs = a2;
8692
8693 ret = -KVM_ENOSYS;
8694 if (!(vcpu->kvm->arch.hypercall_exit_enabled & (1 << KVM_HC_MAP_GPA_RANGE)))
8695 break;
8696
8697 if (!PAGE_ALIGNED(gpa) || !npages ||
8698 gpa_to_gfn(gpa) + npages <= gpa_to_gfn(gpa)) {
8699 ret = -KVM_EINVAL;
8700 break;
8701 }
8702
8703 vcpu->run->exit_reason = KVM_EXIT_HYPERCALL;
8704 vcpu->run->hypercall.nr = KVM_HC_MAP_GPA_RANGE;
8705 vcpu->run->hypercall.args[0] = gpa;
8706 vcpu->run->hypercall.args[1] = npages;
8707 vcpu->run->hypercall.args[2] = attrs;
8708 vcpu->run->hypercall.longmode = op_64_bit;
8709 vcpu->arch.complete_userspace_io = complete_hypercall_exit;
8710 return 0;
8711 }
Hollis Blanchard8776e512007-10-31 17:24:24 -05008712 default:
8713 ret = -KVM_ENOSYS;
8714 break;
8715 }
Radim Krčmář696ca772018-05-24 17:50:56 +02008716out:
Nadav Amita449c7a2014-06-18 17:19:24 +03008717 if (!op_64_bit)
8718 ret = (u32)ret;
Sean Christophersonde3cd112019-04-30 10:36:17 -07008719 kvm_rax_write(vcpu, ret);
Marian Rotariu6356ee02018-04-30 12:23:01 +03008720
Amit Shahf11c3a82008-02-21 01:00:30 +05308721 ++vcpu->stat.hypercalls;
Marian Rotariu6356ee02018-04-30 12:23:01 +03008722 return kvm_skip_emulated_instruction(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008723}
8724EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
8725
Jan Kiszkab6785de2012-09-20 07:43:17 +02008726static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008727{
Avi Kivityd6aa1002011-04-20 15:47:13 +03008728 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008729 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008730 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008731
Jason Baronb36464772021-01-14 22:27:56 -05008732 static_call(kvm_x86_patch_hypercall)(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008733
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01008734 return emulator_write_emulated(ctxt, rip, instruction, 3,
8735 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008736}
8737
Avi Kivity851ba692009-08-24 11:10:17 +03008738static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008739{
Matt Gingell782d4222015-11-16 15:26:00 -08008740 return vcpu->run->request_interrupt_window &&
8741 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008742}
8743
Avi Kivity851ba692009-08-24 11:10:17 +03008744static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008745{
Avi Kivity851ba692009-08-24 11:10:17 +03008746 struct kvm_run *kvm_run = vcpu->run;
8747
Tom Lendackyf1c63662020-12-14 10:29:50 -05008748 /*
8749 * if_flag is obsolete and useless, so do not bother
8750 * setting it for SEV-ES guests. Userspace can just
8751 * use kvm_run->ready_for_interrupt_injection.
8752 */
8753 kvm_run->if_flag = !vcpu->arch.guest_state_protected
8754 && (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
8755
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02008756 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008757 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01008758 kvm_run->ready_for_interrupt_injection =
8759 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08008760 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08008761
8762 if (is_smm(vcpu))
8763 kvm_run->flags |= KVM_RUN_X86_SMM;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008764}
8765
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008766static void update_cr8_intercept(struct kvm_vcpu *vcpu)
8767{
8768 int max_irr, tpr;
8769
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008770 if (!kvm_x86_ops.update_cr8_intercept)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008771 return;
8772
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01008773 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03008774 return;
8775
Andrey Smetanind62caab2015-11-10 15:36:33 +03008776 if (vcpu->arch.apicv_active)
8777 return;
8778
Gleb Natapov8db3baa2009-05-11 13:35:54 +03008779 if (!vcpu->arch.apic->vapic_addr)
8780 max_irr = kvm_lapic_find_highest_irr(vcpu);
8781 else
8782 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008783
8784 if (max_irr != -1)
8785 max_irr >>= 4;
8786
8787 tpr = kvm_lapic_get_cr8(vcpu);
8788
Jason Baronb36464772021-01-14 22:27:56 -05008789 static_call(kvm_x86_update_cr8_intercept)(vcpu, tpr, max_irr);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008790}
8791
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008792
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08008793int kvm_check_nested_events(struct kvm_vcpu *vcpu)
8794{
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08008795 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
8796 kvm_x86_ops.nested_ops->triple_fault(vcpu);
8797 return 1;
8798 }
8799
8800 return kvm_x86_ops.nested_ops->check_events(vcpu);
8801}
8802
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008803static void kvm_inject_exception(struct kvm_vcpu *vcpu)
8804{
8805 if (vcpu->arch.exception.error_code && !is_protmode(vcpu))
8806 vcpu->arch.exception.error_code = false;
8807 static_call(kvm_x86_queue_exception)(vcpu);
8808}
8809
Jim Mattsona5f69092021-06-04 10:26:03 -07008810static int inject_pending_event(struct kvm_vcpu *vcpu, bool *req_immediate_exit)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008811{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01008812 int r;
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008813 bool can_inject = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +01008814
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008815 /* try to reinject previous events if any */
Wanpeng Li664f8e22017-08-24 03:35:09 -07008816
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008817 if (vcpu->arch.exception.injected) {
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008818 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008819 can_inject = false;
8820 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07008821 /*
Liran Alona042c262018-03-23 03:01:32 +03008822 * Do not inject an NMI or interrupt if there is a pending
8823 * exception. Exceptions and interrupts are recognized at
8824 * instruction boundaries, i.e. the start of an instruction.
8825 * Trap-like exceptions, e.g. #DB, have higher priority than
8826 * NMIs and interrupts, i.e. traps are recognized before an
8827 * NMI/interrupt that's pending on the same instruction.
8828 * Fault-like exceptions, e.g. #GP and #PF, are the lowest
8829 * priority, but are only generated (pended) during instruction
8830 * execution, i.e. a pending fault-like exception means the
8831 * fault occurred on the *previous* instruction and must be
8832 * serviced prior to recognizing any new events in order to
8833 * fully complete the previous instruction.
Wanpeng Li664f8e22017-08-24 03:35:09 -07008834 */
Liran Alon1a680e32018-03-23 03:01:33 +03008835 else if (!vcpu->arch.exception.pending) {
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008836 if (vcpu->arch.nmi_injected) {
Jason Baronb36464772021-01-14 22:27:56 -05008837 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008838 can_inject = false;
8839 } else if (vcpu->arch.interrupt.injected) {
Jason Baronb36464772021-01-14 22:27:56 -05008840 static_call(kvm_x86_set_irq)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008841 can_inject = false;
8842 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07008843 }
8844
Sean Christopherson3b82b8d2020-04-22 19:25:47 -07008845 WARN_ON_ONCE(vcpu->arch.exception.injected &&
8846 vcpu->arch.exception.pending);
8847
Liran Alon1a680e32018-03-23 03:01:33 +03008848 /*
8849 * Call check_nested_events() even if we reinjected a previous event
8850 * in order for caller to determine if it should require immediate-exit
8851 * from L2 to L1 due to pending L1 events which require exit
8852 * from L2 to L1.
8853 */
Paolo Bonzini56083bd2020-04-17 10:32:53 -04008854 if (is_guest_mode(vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08008855 r = kvm_check_nested_events(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008856 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008857 goto out;
Wanpeng Li664f8e22017-08-24 03:35:09 -07008858 }
8859
8860 /* try to inject new event if pending */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03008861 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02008862 trace_kvm_inj_exception(vcpu->arch.exception.nr,
8863 vcpu->arch.exception.has_error_code,
8864 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03008865
Wanpeng Li664f8e22017-08-24 03:35:09 -07008866 vcpu->arch.exception.pending = false;
8867 vcpu->arch.exception.injected = true;
8868
Nadav Amitd6e8c852014-07-24 14:51:24 +03008869 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
8870 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
8871 X86_EFLAGS_RF);
8872
Jim Mattsonf10c7292018-10-16 14:29:23 -07008873 if (vcpu->arch.exception.nr == DB_VECTOR) {
Jim Mattsonf10c7292018-10-16 14:29:23 -07008874 kvm_deliver_exception_payload(vcpu);
8875 if (vcpu->arch.dr7 & DR7_GD) {
8876 vcpu->arch.dr7 &= ~DR7_GD;
8877 kvm_update_dr7(vcpu);
8878 }
Nadav Amit6bdf0662014-09-30 20:49:14 +03008879 }
8880
Maxim Levitskyb97f0742021-02-25 17:41:32 +02008881 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04008882 can_inject = false;
Liran Alon1a680e32018-03-23 03:01:33 +03008883 }
8884
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008885 /*
8886 * Finally, inject interrupt events. If an event cannot be injected
8887 * due to architectural conditions (e.g. IF=0) a window-open exit
8888 * will re-request KVM_REQ_EVENT. Sometimes however an event is pending
8889 * and can architecturally be injected, but we cannot do it right now:
8890 * an interrupt could have arrived just now and we have to inject it
8891 * as a vmexit, or there could already an event in the queue, which is
8892 * indicated by can_inject. In that case we request an immediate exit
8893 * in order to make progress and get back here for another iteration.
8894 * The kvm_x86_ops hooks communicate this by returning -EBUSY.
8895 */
8896 if (vcpu->arch.smi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05008897 r = can_inject ? static_call(kvm_x86_smi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008898 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008899 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008900 if (r) {
8901 vcpu->arch.smi_pending = false;
8902 ++vcpu->arch.smi_count;
8903 enter_smm(vcpu);
8904 can_inject = false;
8905 } else
Jason Baronb36464772021-01-14 22:27:56 -05008906 static_call(kvm_x86_enable_smi_window)(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008907 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008908
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008909 if (vcpu->arch.nmi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05008910 r = can_inject ? static_call(kvm_x86_nmi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008911 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008912 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008913 if (r) {
8914 --vcpu->arch.nmi_pending;
8915 vcpu->arch.nmi_injected = true;
Jason Baronb36464772021-01-14 22:27:56 -05008916 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008917 can_inject = false;
Jason Baronb36464772021-01-14 22:27:56 -05008918 WARN_ON(static_call(kvm_x86_nmi_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008919 }
8920 if (vcpu->arch.nmi_pending)
Jason Baronb36464772021-01-14 22:27:56 -05008921 static_call(kvm_x86_enable_nmi_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008922 }
8923
8924 if (kvm_cpu_has_injectable_intr(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05008925 r = can_inject ? static_call(kvm_x86_interrupt_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008926 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07008927 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008928 if (r) {
8929 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), false);
Jason Baronb36464772021-01-14 22:27:56 -05008930 static_call(kvm_x86_set_irq)(vcpu);
8931 WARN_ON(static_call(kvm_x86_interrupt_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008932 }
8933 if (kvm_cpu_has_injectable_intr(vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008934 static_call(kvm_x86_enable_irq_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008935 }
8936
8937 if (is_guest_mode(vcpu) &&
8938 kvm_x86_ops.nested_ops->hv_timer_pending &&
8939 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
8940 *req_immediate_exit = true;
8941
8942 WARN_ON(vcpu->arch.exception.pending);
Jim Mattsona5f69092021-06-04 10:26:03 -07008943 return 0;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008944
Jim Mattsona5f69092021-06-04 10:26:03 -07008945out:
8946 if (r == -EBUSY) {
8947 *req_immediate_exit = true;
8948 r = 0;
8949 }
8950 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008951}
8952
Avi Kivity7460fb4a2011-09-20 13:43:14 +03008953static void process_nmi(struct kvm_vcpu *vcpu)
8954{
8955 unsigned limit = 2;
8956
8957 /*
8958 * x86 is limited to one NMI running, and one NMI pending after it.
8959 * If an NMI is already in progress, limit further NMIs to just one.
8960 * Otherwise, allow two (and we'll inject the first one immediately).
8961 */
Jason Baronb36464772021-01-14 22:27:56 -05008962 if (static_call(kvm_x86_get_nmi_mask)(vcpu) || vcpu->arch.nmi_injected)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03008963 limit = 1;
8964
8965 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
8966 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
8967 kvm_make_request(KVM_REQ_EVENT, vcpu);
8968}
8969
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008970static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008971{
8972 u32 flags = 0;
8973 flags |= seg->g << 23;
8974 flags |= seg->db << 22;
8975 flags |= seg->l << 21;
8976 flags |= seg->avl << 20;
8977 flags |= seg->present << 15;
8978 flags |= seg->dpl << 13;
8979 flags |= seg->s << 12;
8980 flags |= seg->type << 8;
8981 return flags;
8982}
8983
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008984static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008985{
8986 struct kvm_segment seg;
8987 int offset;
8988
8989 kvm_get_segment(vcpu, &seg, n);
8990 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
8991
8992 if (n < 3)
8993 offset = 0x7f84 + n * 12;
8994 else
8995 offset = 0x7f2c + (n - 3) * 12;
8996
8997 put_smstate(u32, buf, offset + 8, seg.base);
8998 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008999 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009000}
9001
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009002#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009003static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009004{
9005 struct kvm_segment seg;
9006 int offset;
9007 u16 flags;
9008
9009 kvm_get_segment(vcpu, &seg, n);
9010 offset = 0x7e00 + n * 16;
9011
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009012 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009013 put_smstate(u16, buf, offset, seg.selector);
9014 put_smstate(u16, buf, offset + 2, flags);
9015 put_smstate(u32, buf, offset + 4, seg.limit);
9016 put_smstate(u64, buf, offset + 8, seg.base);
9017}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009018#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009019
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009020static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009021{
9022 struct desc_ptr dt;
9023 struct kvm_segment seg;
9024 unsigned long val;
9025 int i;
9026
9027 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
9028 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
9029 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
9030 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
9031
9032 for (i = 0; i < 8; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009033 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009034
9035 kvm_get_dr(vcpu, 6, &val);
9036 put_smstate(u32, buf, 0x7fcc, (u32)val);
9037 kvm_get_dr(vcpu, 7, &val);
9038 put_smstate(u32, buf, 0x7fc8, (u32)val);
9039
9040 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9041 put_smstate(u32, buf, 0x7fc4, seg.selector);
9042 put_smstate(u32, buf, 0x7f64, seg.base);
9043 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009044 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009045
9046 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9047 put_smstate(u32, buf, 0x7fc0, seg.selector);
9048 put_smstate(u32, buf, 0x7f80, seg.base);
9049 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009050 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009051
Jason Baronb36464772021-01-14 22:27:56 -05009052 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009053 put_smstate(u32, buf, 0x7f74, dt.address);
9054 put_smstate(u32, buf, 0x7f70, dt.size);
9055
Jason Baronb36464772021-01-14 22:27:56 -05009056 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009057 put_smstate(u32, buf, 0x7f58, dt.address);
9058 put_smstate(u32, buf, 0x7f54, dt.size);
9059
9060 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009061 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009062
9063 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
9064
9065 /* revision id */
9066 put_smstate(u32, buf, 0x7efc, 0x00020000);
9067 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
9068}
9069
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009070#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009071static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009072{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009073 struct desc_ptr dt;
9074 struct kvm_segment seg;
9075 unsigned long val;
9076 int i;
9077
9078 for (i = 0; i < 16; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009079 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009080
9081 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
9082 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
9083
9084 kvm_get_dr(vcpu, 6, &val);
9085 put_smstate(u64, buf, 0x7f68, val);
9086 kvm_get_dr(vcpu, 7, &val);
9087 put_smstate(u64, buf, 0x7f60, val);
9088
9089 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
9090 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
9091 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
9092
9093 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
9094
9095 /* revision id */
9096 put_smstate(u32, buf, 0x7efc, 0x00020064);
9097
9098 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
9099
9100 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9101 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009102 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009103 put_smstate(u32, buf, 0x7e94, seg.limit);
9104 put_smstate(u64, buf, 0x7e98, seg.base);
9105
Jason Baronb36464772021-01-14 22:27:56 -05009106 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009107 put_smstate(u32, buf, 0x7e84, dt.size);
9108 put_smstate(u64, buf, 0x7e88, dt.address);
9109
9110 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9111 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009112 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009113 put_smstate(u32, buf, 0x7e74, seg.limit);
9114 put_smstate(u64, buf, 0x7e78, seg.base);
9115
Jason Baronb36464772021-01-14 22:27:56 -05009116 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009117 put_smstate(u32, buf, 0x7e64, dt.size);
9118 put_smstate(u64, buf, 0x7e68, dt.address);
9119
9120 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009121 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009122}
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009123#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009124
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009125static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02009126{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009127 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02009128 struct desc_ptr dt;
Sean Christophersondbc47392021-06-22 10:56:59 -07009129 unsigned long cr0;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009130 char buf[512];
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009131
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009132 memset(buf, 0, 512);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009133#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009134 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009135 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009136 else
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009137#endif
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009138 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009139
Ladi Prosek0234bf82017-10-11 16:54:40 +02009140 /*
Sean Christophersonecc513e2021-06-09 11:56:19 -07009141 * Give enter_smm() a chance to make ISA-specific changes to the vCPU
9142 * state (e.g. leave guest mode) after we've saved the state into the
9143 * SMM state-save area.
Ladi Prosek0234bf82017-10-11 16:54:40 +02009144 */
Sean Christophersonecc513e2021-06-09 11:56:19 -07009145 static_call(kvm_x86_enter_smm)(vcpu, buf);
Ladi Prosek0234bf82017-10-11 16:54:40 +02009146
Sean Christophersondc872752021-06-09 11:56:15 -07009147 kvm_smm_changed(vcpu, true);
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009148 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009149
Jason Baronb36464772021-01-14 22:27:56 -05009150 if (static_call(kvm_x86_get_nmi_mask)(vcpu))
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009151 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
9152 else
Jason Baronb36464772021-01-14 22:27:56 -05009153 static_call(kvm_x86_set_nmi_mask)(vcpu, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009154
9155 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
9156 kvm_rip_write(vcpu, 0x8000);
9157
9158 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
Jason Baronb36464772021-01-14 22:27:56 -05009159 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009160 vcpu->arch.cr0 = cr0;
9161
Jason Baronb36464772021-01-14 22:27:56 -05009162 static_call(kvm_x86_set_cr4)(vcpu, 0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009163
Paolo Bonzini18c36262015-08-07 12:27:54 +02009164 /* Undocumented: IDT limit is set to zero on entry to SMM. */
9165 dt.address = dt.size = 0;
Jason Baronb36464772021-01-14 22:27:56 -05009166 static_call(kvm_x86_set_idt)(vcpu, &dt);
Paolo Bonzini18c36262015-08-07 12:27:54 +02009167
Paolo Bonzini996ff542020-12-14 07:49:54 -05009168 kvm_set_dr(vcpu, 7, DR7_FIXED_1);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009169
9170 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
9171 cs.base = vcpu->arch.smbase;
9172
9173 ds.selector = 0;
9174 ds.base = 0;
9175
9176 cs.limit = ds.limit = 0xffffffff;
9177 cs.type = ds.type = 0x3;
9178 cs.dpl = ds.dpl = 0;
9179 cs.db = ds.db = 0;
9180 cs.s = ds.s = 1;
9181 cs.l = ds.l = 0;
9182 cs.g = ds.g = 1;
9183 cs.avl = ds.avl = 0;
9184 cs.present = ds.present = 1;
9185 cs.unusable = ds.unusable = 0;
9186 cs.padding = ds.padding = 0;
9187
9188 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
9189 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
9190 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
9191 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
9192 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
9193 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
9194
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009195#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009196 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Jason Baronb36464772021-01-14 22:27:56 -05009197 static_call(kvm_x86_set_efer)(vcpu, 0);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009198#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009199
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08009200 kvm_update_cpuid_runtime(vcpu);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009201 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009202}
9203
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009204static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009205{
9206 vcpu->arch.smi_pending = true;
9207 kvm_make_request(KVM_REQ_EVENT, vcpu);
9208}
9209
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009210void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
9211 unsigned long *vcpu_bitmap)
9212{
9213 cpumask_var_t cpus;
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009214
9215 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
9216
Mao Wenandb5a95e2019-11-19 11:06:40 +08009217 kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC,
Suravee Suthikulpanit54163a32020-05-06 08:17:53 -05009218 NULL, vcpu_bitmap, cpus);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009219
9220 free_cpumask_var(cpus);
9221}
9222
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01009223void kvm_make_scan_ioapic_request(struct kvm *kvm)
9224{
9225 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
9226}
9227
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009228void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
9229{
9230 if (!lapic_in_kernel(vcpu))
9231 return;
9232
9233 vcpu->arch.apicv_active = kvm_apicv_activated(vcpu->kvm);
9234 kvm_apic_update_apicv(vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009235 static_call(kvm_x86_refresh_apicv_exec_ctrl)(vcpu);
Vitaly Kuznetsovbca66db2021-06-09 17:09:10 +02009236
9237 /*
9238 * When APICv gets disabled, we may still have injected interrupts
9239 * pending. At the same time, KVM_REQ_EVENT may not be set as APICv was
9240 * still active when the interrupt got accepted. Make sure
9241 * inject_pending_event() is called to check for that.
9242 */
9243 if (!vcpu->arch.apicv_active)
9244 kvm_make_request(KVM_REQ_EVENT, vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009245}
9246EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv);
9247
9248/*
9249 * NOTE: Do not hold any lock prior to calling this.
9250 *
9251 * In particular, kvm_request_apicv_update() expects kvm->srcu not to be
9252 * locked, because it calls __x86_set_memory_region() which does
9253 * synchronize_srcu(&kvm->srcu).
9254 */
9255void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
9256{
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05009257 struct kvm_vcpu *except;
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009258 unsigned long old, new, expected;
9259
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009260 if (!kvm_x86_ops.check_apicv_inhibit_reasons ||
Jason Baronb36464772021-01-14 22:27:56 -05009261 !static_call(kvm_x86_check_apicv_inhibit_reasons)(bit))
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06009262 return;
9263
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009264 old = READ_ONCE(kvm->arch.apicv_inhibit_reasons);
9265 do {
9266 expected = new = old;
9267 if (activate)
9268 __clear_bit(bit, &new);
9269 else
9270 __set_bit(bit, &new);
9271 if (new == old)
9272 break;
9273 old = cmpxchg(&kvm->arch.apicv_inhibit_reasons, expected, new);
9274 } while (old != expected);
9275
9276 if (!!old == !!new)
9277 return;
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009278
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -06009279 trace_kvm_apicv_update_request(activate, bit);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009280 if (kvm_x86_ops.pre_update_apicv_exec_ctrl)
Jason Baronb36464772021-01-14 22:27:56 -05009281 static_call(kvm_x86_pre_update_apicv_exec_ctrl)(kvm, activate);
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05009282
9283 /*
9284 * Sending request to update APICV for all other vcpus,
9285 * while update the calling vcpu immediately instead of
9286 * waiting for another #VMEXIT to handle the request.
9287 */
9288 except = kvm_get_running_vcpu();
9289 kvm_make_all_cpus_request_except(kvm, KVM_REQ_APICV_UPDATE,
9290 except);
9291 if (except)
9292 kvm_vcpu_update_apicv(except);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009293}
9294EXPORT_SYMBOL_GPL(kvm_request_apicv_update);
9295
Yang Zhang3d81bc72013-04-11 19:25:13 +08009296static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009297{
Wanpeng Lidcbd3e42018-12-17 10:43:23 +08009298 if (!kvm_apic_present(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08009299 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009300
Andrey Smetanin63086302015-11-10 15:36:32 +03009301 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009302
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07009303 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03009304 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009305 else {
Liran Alonfa59cc02017-12-24 18:12:53 +02009306 if (vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05009307 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Wanpeng Lie97f8522018-11-20 16:34:18 +08009308 if (ioapic_in_kernel(vcpu->kvm))
9309 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009310 }
Liran Alone40ff1d2018-03-21 02:50:31 +02009311
9312 if (is_guest_mode(vcpu))
9313 vcpu->arch.load_eoi_exitmap_pending = true;
9314 else
9315 kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu);
9316}
9317
9318static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
9319{
9320 u64 eoi_exit_bitmap[4];
9321
9322 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
9323 return;
9324
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009325 if (to_hv_vcpu(vcpu))
9326 bitmap_or((ulong *)eoi_exit_bitmap,
9327 vcpu->arch.ioapic_handled_vectors,
9328 to_hv_synic(vcpu)->vec_bitmap, 256);
9329
Jason Baronb36464772021-01-14 22:27:56 -05009330 static_call(kvm_x86_load_eoi_exitmap)(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009331}
9332
Eiichi Tsukatae649b3f2020-06-06 13:26:27 +09009333void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
9334 unsigned long start, unsigned long end)
Radim Krčmářb1394e72017-11-30 19:05:45 +01009335{
9336 unsigned long apic_address;
9337
9338 /*
9339 * The physical address of apic access page is stored in the VMCS.
9340 * Update it when it becomes invalid.
9341 */
9342 apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
9343 if (start <= apic_address && apic_address < end)
9344 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
9345}
9346
Tang Chen4256f432014-09-24 15:57:54 +08009347void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
9348{
Paolo Bonzini35754c92015-07-29 12:05:37 +02009349 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02009350 return;
9351
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009352 if (!kvm_x86_ops.set_apic_access_page_addr)
Tang Chen4256f432014-09-24 15:57:54 +08009353 return;
9354
Jason Baronb36464772021-01-14 22:27:56 -05009355 static_call(kvm_x86_set_apic_access_page_addr)(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009356}
Tang Chen4256f432014-09-24 15:57:54 +08009357
Sean Christophersond264ee02018-08-27 15:21:12 -07009358void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu)
9359{
9360 smp_send_reschedule(vcpu->cpu);
9361}
9362EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit);
9363
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009364/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01009365 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009366 * exiting to the userspace. Otherwise, the value will be returned to the
9367 * userspace.
9368 */
Avi Kivity851ba692009-08-24 11:10:17 +03009369static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009370{
9371 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08009372 bool req_int_win =
9373 dm_request_for_irq_injection(vcpu) &&
9374 kvm_cpu_accept_dm_intr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08009375 fastpath_t exit_fastpath;
Matt Gingell62a193e2015-11-16 15:26:07 -08009376
Jan Kiszka730dca42013-04-28 10:50:52 +02009377 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009378
Peter Xufb04a1e2020-09-30 21:22:22 -04009379 /* Forbid vmenter if vcpu dirty ring is soft-full */
9380 if (unlikely(vcpu->kvm->dirty_ring_size &&
9381 kvm_dirty_ring_soft_full(&vcpu->dirty_ring))) {
9382 vcpu->run->exit_reason = KVM_EXIT_DIRTY_RING_FULL;
9383 trace_kvm_dirty_ring_exit(vcpu);
9384 r = 0;
9385 goto out;
9386 }
9387
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02009388 if (kvm_request_pending(vcpu)) {
Paolo Bonzini729c15c2020-09-22 06:53:57 -04009389 if (kvm_check_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu)) {
Paolo Bonzini9a78e152021-01-08 11:43:08 -05009390 if (unlikely(!kvm_x86_ops.nested_ops->get_nested_state_pages(vcpu))) {
Jim Mattson671ddc72019-10-15 10:44:05 -07009391 r = 0;
9392 goto out;
9393 }
9394 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009395 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05009396 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03009397 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03009398 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02009399 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
9400 kvm_gen_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03009401 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
9402 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10009403 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
9404 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10009405 if (unlikely(r))
9406 goto out;
9407 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009408 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03009409 kvm_mmu_sync_roots(vcpu);
Paolo Bonzini727a7e22020-03-05 03:52:50 -05009410 if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu))
9411 kvm_mmu_load_pgd(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009412 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
Sean Christopherson77809382020-03-20 14:28:18 -07009413 kvm_vcpu_flush_tlb_all(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009414
9415 /* Flushing all ASIDs flushes the current ASID... */
9416 kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
9417 }
9418 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
9419 kvm_vcpu_flush_tlb_current(vcpu);
Sean Christopherson07ffaf32021-06-09 16:42:21 -07009420 if (kvm_check_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu))
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04009421 kvm_vcpu_flush_tlb_guest(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009422
Avi Kivitya8eeb042010-05-10 12:34:53 +03009423 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009424 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02009425 r = 0;
9426 goto out;
9427 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009428 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009429 if (is_guest_mode(vcpu)) {
9430 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9431 } else {
9432 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
9433 vcpu->mmio_needed = 0;
9434 r = 0;
9435 goto out;
9436 }
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01009437 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009438 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
9439 /* Page is swapped out. Do synthetic halt */
9440 vcpu->arch.apf.halted = true;
9441 r = 1;
9442 goto out;
9443 }
Glauber Costac9aaa892011-07-11 15:28:14 -04009444 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
9445 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009446 if (kvm_check_request(KVM_REQ_SMI, vcpu))
9447 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009448 if (kvm_check_request(KVM_REQ_NMI, vcpu))
9449 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009450 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009451 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009452 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009453 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07009454 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
9455 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
9456 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03009457 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07009458 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
9459 vcpu->run->eoi.vector =
9460 vcpu->arch.pending_ioapic_eoi;
9461 r = 0;
9462 goto out;
9463 }
9464 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08009465 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
9466 vcpu_scan_ioapic(vcpu);
Liran Alone40ff1d2018-03-21 02:50:31 +02009467 if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu))
9468 vcpu_load_eoi_exitmap(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009469 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
9470 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03009471 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
9472 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9473 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
9474 r = 0;
9475 goto out;
9476 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03009477 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
9478 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9479 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
9480 r = 0;
9481 goto out;
9482 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03009483 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009484 struct kvm_vcpu_hv *hv_vcpu = to_hv_vcpu(vcpu);
9485
Andrey Smetanindb3975712015-11-10 15:36:35 +03009486 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009487 vcpu->run->hyperv = hv_vcpu->exit;
Andrey Smetanindb3975712015-11-10 15:36:35 +03009488 r = 0;
9489 goto out;
9490 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03009491
9492 /*
9493 * KVM_REQ_HV_STIMER has to be processed after
9494 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
9495 * depend on the guest clock being up-to-date
9496 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03009497 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
9498 kvm_hv_process_stimers(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009499 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
9500 kvm_vcpu_update_apicv(vcpu);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02009501 if (kvm_check_request(KVM_REQ_APF_READY, vcpu))
9502 kvm_check_async_pf_completion(vcpu);
Alexander Graf1a1552542020-09-25 16:34:21 +02009503 if (kvm_check_request(KVM_REQ_MSR_FILTER_CHANGED, vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009504 static_call(kvm_x86_msr_filter_changed)(vcpu);
Makarand Sonarea85863c2021-02-12 16:50:12 -08009505
9506 if (kvm_check_request(KVM_REQ_UPDATE_CPU_DIRTY_LOGGING, vcpu))
9507 static_call(kvm_x86_update_cpu_dirty_logging)(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02009508 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009509
David Woodhouse40da8cc2020-12-09 20:08:30 +00009510 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win ||
9511 kvm_xen_has_interrupt(vcpu)) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01009512 ++vcpu->stat.req_event;
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009513 r = kvm_apic_accept_events(vcpu);
9514 if (r < 0) {
9515 r = 0;
9516 goto out;
9517 }
Jan Kiszka66450a22013-03-13 12:42:34 +01009518 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
9519 r = 1;
9520 goto out;
9521 }
9522
Jim Mattsona5f69092021-06-04 10:26:03 -07009523 r = inject_pending_event(vcpu, &req_immediate_exit);
9524 if (r < 0) {
9525 r = 0;
9526 goto out;
9527 }
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009528 if (req_int_win)
Jason Baronb36464772021-01-14 22:27:56 -05009529 static_call(kvm_x86_enable_irq_window)(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03009530
Avi Kivity3842d132010-07-27 12:30:24 +03009531 if (kvm_lapic_enabled(vcpu)) {
9532 update_cr8_intercept(vcpu);
9533 kvm_lapic_sync_to_vapic(vcpu);
9534 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009535 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009536
Avi Kivityd8368af2012-05-14 18:07:56 +03009537 r = kvm_mmu_reload(vcpu);
9538 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009539 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03009540 }
9541
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009542 preempt_disable();
9543
Jason Baronb36464772021-01-14 22:27:56 -05009544 static_call(kvm_x86_prepare_guest_switch)(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009545
9546 /*
9547 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
9548 * IPI are then delayed after guest entry, which ensures that they
9549 * result in virtual interrupt delivery.
9550 */
9551 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009552 vcpu->mode = IN_GUEST_MODE;
9553
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009554 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
9555
Lan Tianyu0f127d12016-03-13 11:10:29 +08009556 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009557 * 1) We should set ->mode before checking ->requests. Please see
Andrew Jonescde9af62017-04-26 22:32:24 +02009558 * the comment in kvm_vcpu_exiting_guest_mode().
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009559 *
Luwei Kang81b01662019-01-31 16:52:02 +08009560 * 2) For APICv, we should set ->mode before checking PID.ON. This
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009561 * pairs with the memory barrier implicit in pi_test_and_set_on
9562 * (see vmx_deliver_posted_interrupt).
9563 *
9564 * 3) This also orders the write to mode from any reads to the page
9565 * tables done while the VCPU is running. Please see the comment
9566 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009567 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009568 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009569
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009570 /*
9571 * This handles the case where a posted interrupt was
9572 * notified with kvm_vcpu_kick.
9573 */
Liran Alonfa59cc02017-12-24 18:12:53 +02009574 if (kvm_lapic_enabled(vcpu) && vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05009575 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009576
Wanpeng Li5a9f5442020-04-28 14:23:26 +08009577 if (kvm_vcpu_exit_request(vcpu)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009578 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009579 smp_wmb();
9580 local_irq_enable();
9581 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009582 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009583 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009584 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009585 }
9586
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009587 if (req_immediate_exit) {
9588 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009589 static_call(kvm_x86_request_immediate_exit)(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009590 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03009591
Sean Christopherson2620fe22020-01-17 11:30:51 -08009592 fpregs_assert_state_consistent();
9593 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9594 switch_fpu_return();
Rik van Riel5f409e22019-04-03 18:41:52 +02009595
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009596 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009597 set_debugreg(0, 7);
9598 set_debugreg(vcpu->arch.eff_db[0], 0);
9599 set_debugreg(vcpu->arch.eff_db[1], 1);
9600 set_debugreg(vcpu->arch.eff_db[2], 2);
9601 set_debugreg(vcpu->arch.eff_db[3], 3);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009602 set_debugreg(vcpu->arch.dr6, 6);
Nadav Amitae561ed2015-04-02 03:10:37 +03009603 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Lai Jiangshanf85d4012021-06-29 01:26:32 +08009604 } else if (unlikely(hw_breakpoint_active())) {
9605 set_debugreg(0, 7);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009606 }
9607
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05009608 for (;;) {
9609 exit_fastpath = static_call(kvm_x86_run)(vcpu);
9610 if (likely(exit_fastpath != EXIT_FASTPATH_REENTER_GUEST))
9611 break;
9612
9613 if (unlikely(kvm_vcpu_exit_request(vcpu))) {
9614 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
9615 break;
9616 }
9617
9618 if (vcpu->arch.apicv_active)
9619 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
9620 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009621
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009622 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009623 * Do this here before restoring debug registers on the host. And
9624 * since we do this before handling the vmexit, a DR access vmexit
9625 * can (a) read the correct value of the debug registers, (b) set
9626 * KVM_DEBUGREG_WONT_EXIT again.
9627 */
9628 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009629 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
Jason Baronb36464772021-01-14 22:27:56 -05009630 static_call(kvm_x86_sync_dirty_debug_regs)(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009631 kvm_update_dr0123(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009632 kvm_update_dr7(vcpu);
9633 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009634 }
9635
9636 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009637 * If the guest has used debug registers, at least dr7
9638 * will be disabled while returning to the host.
9639 * If we don't have active breakpoints in the host, we don't
9640 * care about the messed up debug address registers. But if
9641 * we have some of them active, restore the old state.
9642 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01009643 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009644 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009645
Jim Mattsonc9671182020-06-03 16:56:23 -07009646 vcpu->arch.last_vmentry_cpu = vcpu->cpu;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08009647 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10009648
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009649 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03009650 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08009651
Jason Baronb36464772021-01-14 22:27:56 -05009652 static_call(kvm_x86_handle_exit_irqoff)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009653
Sean Christophersond7a08882019-07-10 09:07:34 -07009654 /*
9655 * Consume any pending interrupts, including the possible source of
9656 * VM-Exit on SVM and any ticks that occur between VM-Exit and now.
9657 * An instruction is required after local_irq_enable() to fully unblock
9658 * interrupts on processors that implement an interrupt shadow, the
9659 * stat.exits increment will do nicely.
9660 */
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009661 kvm_before_interrupt(vcpu);
Sean Christophersond7a08882019-07-10 09:07:34 -07009662 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009663 ++vcpu->stat.exits;
Sean Christophersond7a08882019-07-10 09:07:34 -07009664 local_irq_disable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009665 kvm_after_interrupt(vcpu);
9666
Wanpeng Li16045712021-05-04 17:27:30 -07009667 /*
9668 * Wait until after servicing IRQs to account guest time so that any
9669 * ticks that occurred while running the guest are properly accounted
9670 * to the guest. Waiting until IRQs are enabled degrades the accuracy
9671 * of accounting via context tracking, but the loss of accuracy is
9672 * acceptable for all known use cases.
9673 */
9674 vtime_account_guest_exit();
9675
Wanpeng Liec0671d2019-05-20 16:18:08 +08009676 if (lapic_in_kernel(vcpu)) {
9677 s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta;
9678 if (delta != S64_MIN) {
9679 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta);
9680 vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN;
9681 }
9682 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009683
Paolo Bonzinif2485b32016-06-15 15:23:11 +02009684 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009685 preempt_enable();
9686
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009687 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03009688
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009689 /*
9690 * Profile KVM exit RIPs:
9691 */
9692 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009693 unsigned long rip = kvm_rip_read(vcpu);
9694 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009695 }
9696
Zachary Amsdencc578282012-02-03 15:43:50 -02009697 if (unlikely(vcpu->arch.tsc_always_catchup))
9698 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02009699
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03009700 if (vcpu->arch.apic_attention)
9701 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02009702
Jason Baronb36464772021-01-14 22:27:56 -05009703 r = static_call(kvm_x86_handle_exit)(vcpu, exit_fastpath);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009704 return r;
9705
9706cancel_injection:
Sean Christopherson8081ad02020-04-22 19:25:40 -07009707 if (req_immediate_exit)
9708 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009709 static_call(kvm_x86_cancel_injection)(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03009710 if (unlikely(vcpu->arch.apic_attention))
9711 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009712out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03009713 return r;
9714}
9715
Paolo Bonzini362c6982015-02-06 12:48:04 +01009716static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
9717{
Feng Wubf9f6ac2015-09-18 22:29:55 +08009718 if (!kvm_arch_vcpu_runnable(vcpu) &&
Jason Baronb36464772021-01-14 22:27:56 -05009719 (!kvm_x86_ops.pre_block || static_call(kvm_x86_pre_block)(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01009720 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
9721 kvm_vcpu_block(vcpu);
9722 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009723
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009724 if (kvm_x86_ops.post_block)
Jason Baronb36464772021-01-14 22:27:56 -05009725 static_call(kvm_x86_post_block)(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009726
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01009727 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
9728 return 1;
9729 }
Gleb Natapov09cec752009-03-23 15:11:44 +02009730
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009731 if (kvm_apic_accept_events(vcpu) < 0)
9732 return 0;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009733 switch(vcpu->arch.mp_state) {
9734 case KVM_MP_STATE_HALTED:
Tom Lendacky647daca2021-01-04 14:20:01 -06009735 case KVM_MP_STATE_AP_RESET_HOLD:
Paolo Bonzini362c6982015-02-06 12:48:04 +01009736 vcpu->arch.pv.pv_unhalted = false;
9737 vcpu->arch.mp_state =
9738 KVM_MP_STATE_RUNNABLE;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05009739 fallthrough;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009740 case KVM_MP_STATE_RUNNABLE:
9741 vcpu->arch.apf.halted = false;
9742 break;
9743 case KVM_MP_STATE_INIT_RECEIVED:
9744 break;
9745 default:
9746 return -EINTR;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009747 }
9748 return 1;
9749}
9750
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02009751static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
9752{
Paolo Bonzini56083bd2020-04-17 10:32:53 -04009753 if (is_guest_mode(vcpu))
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009754 kvm_check_nested_events(vcpu);
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +01009755
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02009756 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
9757 !vcpu->arch.apf.halted);
9758}
9759
Paolo Bonzini362c6982015-02-06 12:48:04 +01009760static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03009761{
9762 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009763 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03009764
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009765 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +02009766 vcpu->arch.l1tf_flush_l1d = true;
Marcelo Tosattid7690172008-09-08 15:23:48 -03009767
Paolo Bonzini362c6982015-02-06 12:48:04 +01009768 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +02009769 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009770 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009771 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +01009772 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08009773 }
9774
Gleb Natapov09cec752009-03-23 15:11:44 +02009775 if (r <= 0)
9776 break;
9777
Marcelo Tosatti084071d2021-05-25 10:41:17 -03009778 kvm_clear_request(KVM_REQ_UNBLOCK, vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +02009779 if (kvm_cpu_has_pending_timer(vcpu))
9780 kvm_inject_pending_timer_irqs(vcpu);
9781
Matt Gingell782d4222015-11-16 15:26:00 -08009782 if (dm_request_for_irq_injection(vcpu) &&
9783 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +02009784 r = 0;
9785 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +02009786 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01009787 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02009788 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009789
Thomas Gleixnerf3020b82020-07-30 09:19:01 +02009790 if (__xfer_to_guest_mode_work_pending()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009791 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02009792 r = xfer_to_guest_mode_handle_work(vcpu);
9793 if (r)
9794 return r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009795 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03009796 }
9797 }
9798
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009799 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009800
9801 return r;
9802}
9803
Gleb Natapov716d51a2012-09-03 15:24:26 +03009804static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
9805{
9806 int r;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07009807
Gleb Natapov716d51a2012-09-03 15:24:26 +03009808 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Sean Christopherson0ce97a22018-08-23 13:56:52 -07009809 r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
Gleb Natapov716d51a2012-09-03 15:24:26 +03009810 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07009811 return r;
Gleb Natapov716d51a2012-09-03 15:24:26 +03009812}
9813
9814static int complete_emulated_pio(struct kvm_vcpu *vcpu)
9815{
9816 BUG_ON(!vcpu->arch.pio.count);
9817
9818 return complete_emulated_io(vcpu);
9819}
9820
Avi Kivityf78146b2012-04-18 19:22:47 +03009821/*
9822 * Implements the following, as a state machine:
9823 *
9824 * read:
9825 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009826 * for each mmio piece in the fragment
9827 * write gpa, len
9828 * exit
9829 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03009830 * execute insn
9831 *
9832 * write:
9833 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009834 * for each mmio piece in the fragment
9835 * write gpa, len
9836 * copy data
9837 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03009838 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03009839static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02009840{
9841 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03009842 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009843 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02009844
Gleb Natapov716d51a2012-09-03 15:24:26 +03009845 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02009846
Gleb Natapov716d51a2012-09-03 15:24:26 +03009847 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009848 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
9849 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03009850 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009851 memcpy(frag->data, run->mmio.data, len);
9852
9853 if (frag->len <= 8) {
9854 /* Switch to the next fragment. */
9855 frag++;
9856 vcpu->mmio_cur_fragment++;
9857 } else {
9858 /* Go forward to the next mmio piece. */
9859 frag->data += len;
9860 frag->gpa += len;
9861 frag->len -= len;
9862 }
9863
Andrew Honiga08d3b32014-02-27 19:35:14 +01009864 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03009865 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02009866
9867 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02009868 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03009869 return 1;
9870 vcpu->mmio_read_completed = 1;
9871 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02009872 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009873
Gleb Natapov716d51a2012-09-03 15:24:26 +03009874 run->exit_reason = KVM_EXIT_MMIO;
9875 run->mmio.phys_addr = frag->gpa;
9876 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08009877 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
9878 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03009879 run->mmio.is_write = vcpu->mmio_is_write;
9880 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
9881 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02009882}
9883
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009884static void kvm_save_current_fpu(struct fpu *fpu)
9885{
9886 /*
9887 * If the target FPU state is not resident in the CPU registers, just
9888 * memcpy() from current, else save CPU state directly to the target.
9889 */
9890 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9891 memcpy(&fpu->state, &current->thread.fpu.state,
9892 fpu_kernel_xstate_size);
9893 else
Thomas Gleixnerebe72342021-06-23 14:01:59 +02009894 save_fpregs_to_fpstate(fpu);
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009895}
9896
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02009897/* Swap (qemu) user FPU context for the guest FPU context. */
9898static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
9899{
Rik van Riel5f409e22019-04-03 18:41:52 +02009900 fpregs_lock();
9901
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009902 kvm_save_current_fpu(vcpu->arch.user_fpu);
9903
Tom Lendackyed02b212020-12-10 11:10:01 -06009904 /*
9905 * Guests with protected state can't have it set by the hypervisor,
9906 * so skip trying to set it.
9907 */
9908 if (vcpu->arch.guest_fpu)
9909 /* PKRU is separately restored in kvm_x86_ops.run. */
Thomas Gleixner1c61fad2021-06-23 14:02:01 +02009910 __restore_fpregs_from_fpstate(&vcpu->arch.guest_fpu->state,
Tom Lendackyed02b212020-12-10 11:10:01 -06009911 ~XFEATURE_MASK_PKRU);
Rik van Riel5f409e22019-04-03 18:41:52 +02009912
9913 fpregs_mark_activate();
9914 fpregs_unlock();
9915
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02009916 trace_kvm_fpu(1);
9917}
9918
9919/* When vcpu_run ends, restore user space FPU context. */
9920static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
9921{
Rik van Riel5f409e22019-04-03 18:41:52 +02009922 fpregs_lock();
9923
Tom Lendackyed02b212020-12-10 11:10:01 -06009924 /*
9925 * Guests with protected state can't have it read by the hypervisor,
9926 * so skip trying to save it.
9927 */
9928 if (vcpu->arch.guest_fpu)
9929 kvm_save_current_fpu(vcpu->arch.guest_fpu);
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08009930
Thomas Gleixner1c61fad2021-06-23 14:02:01 +02009931 restore_fpregs_from_fpstate(&vcpu->arch.user_fpu->state);
Rik van Riel5f409e22019-04-03 18:41:52 +02009932
9933 fpregs_mark_activate();
9934 fpregs_unlock();
9935
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02009936 ++vcpu->stat.fpu_reload;
9937 trace_kvm_fpu(0);
9938}
9939
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009940int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009941{
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009942 struct kvm_run *kvm_run = vcpu->run;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009943 int r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009944
Christoffer Dallaccb7572017-12-04 21:35:25 +01009945 vcpu_load(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +01009946 kvm_sigset_activate(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08009947 kvm_run->flags = 0;
Peter Xu5663d8f2017-12-12 17:15:02 +01009948 kvm_load_guest_fpu(vcpu);
9949
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009950 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
Jan H. Schönherr2f173d22017-09-06 18:34:06 +02009951 if (kvm_run->immediate_exit) {
9952 r = -EINTR;
9953 goto out;
9954 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009955 kvm_vcpu_block(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009956 if (kvm_apic_accept_events(vcpu) < 0) {
9957 r = 0;
9958 goto out;
9959 }
Radim Krčmář72875d82017-04-26 22:32:19 +02009960 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009961 r = -EAGAIN;
Jan H. Schönherra0595002017-09-06 00:27:19 +02009962 if (signal_pending(current)) {
9963 r = -EINTR;
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009964 kvm_run->exit_reason = KVM_EXIT_INTR;
Jan H. Schönherra0595002017-09-06 00:27:19 +02009965 ++vcpu->stat.signal_exits;
9966 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +03009967 goto out;
9968 }
9969
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009970 if (kvm_run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) {
Ken Hofsass01643c52018-01-31 16:03:36 -08009971 r = -EINVAL;
9972 goto out;
9973 }
9974
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08009975 if (kvm_run->kvm_dirty_regs) {
Ken Hofsass01643c52018-01-31 16:03:36 -08009976 r = sync_regs(vcpu);
9977 if (r != 0)
9978 goto out;
9979 }
9980
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009981 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +02009982 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +01009983 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
9984 r = -EINVAL;
9985 goto out;
9986 }
9987 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009988
Gleb Natapov716d51a2012-09-03 15:24:26 +03009989 if (unlikely(vcpu->arch.complete_userspace_io)) {
9990 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
9991 vcpu->arch.complete_userspace_io = NULL;
9992 r = cui(vcpu);
9993 if (r <= 0)
Peter Xu5663d8f2017-12-12 17:15:02 +01009994 goto out;
Gleb Natapov716d51a2012-09-03 15:24:26 +03009995 } else
9996 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02009997
Paolo Bonzini460df4c2017-02-08 11:50:15 +01009998 if (kvm_run->immediate_exit)
9999 r = -EINTR;
10000 else
10001 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010002
10003out:
Peter Xu5663d8f2017-12-12 17:15:02 +010010004 kvm_put_guest_fpu(vcpu);
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010005 if (kvm_run->kvm_valid_regs)
Ken Hofsass01643c52018-01-31 16:03:36 -080010006 store_regs(vcpu);
Marcelo Tosattif1d86e42010-05-03 23:04:27 -030010007 post_kvm_run_save(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010008 kvm_sigset_deactivate(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010009
Christoffer Dallaccb7572017-12-04 21:35:25 +010010010 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010011 return r;
10012}
10013
Ken Hofsass01643c52018-01-31 16:03:36 -080010014static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010015{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010016 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
10017 /*
10018 * We are here if userspace calls get_regs() in the middle of
10019 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +080010020 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010021 * that usually, but some bad designed PV devices (vmware
10022 * backdoor interface) need this to work
10023 */
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010024 emulator_writeback_register_cache(vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010025 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10026 }
Sean Christophersonde3cd112019-04-30 10:36:17 -070010027 regs->rax = kvm_rax_read(vcpu);
10028 regs->rbx = kvm_rbx_read(vcpu);
10029 regs->rcx = kvm_rcx_read(vcpu);
10030 regs->rdx = kvm_rdx_read(vcpu);
10031 regs->rsi = kvm_rsi_read(vcpu);
10032 regs->rdi = kvm_rdi_read(vcpu);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010033 regs->rsp = kvm_rsp_read(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010034 regs->rbp = kvm_rbp_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010035#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010036 regs->r8 = kvm_r8_read(vcpu);
10037 regs->r9 = kvm_r9_read(vcpu);
10038 regs->r10 = kvm_r10_read(vcpu);
10039 regs->r11 = kvm_r11_read(vcpu);
10040 regs->r12 = kvm_r12_read(vcpu);
10041 regs->r13 = kvm_r13_read(vcpu);
10042 regs->r14 = kvm_r14_read(vcpu);
10043 regs->r15 = kvm_r15_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010044#endif
10045
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010046 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +020010047 regs->rflags = kvm_get_rflags(vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010048}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010049
Ken Hofsass01643c52018-01-31 16:03:36 -080010050int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10051{
10052 vcpu_load(vcpu);
10053 __get_regs(vcpu, regs);
Christoffer Dall1fc9b762017-12-04 21:35:26 +010010054 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010055 return 0;
10056}
10057
Ken Hofsass01643c52018-01-31 16:03:36 -080010058static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010059{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010060 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
10061 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10062
Sean Christophersonde3cd112019-04-30 10:36:17 -070010063 kvm_rax_write(vcpu, regs->rax);
10064 kvm_rbx_write(vcpu, regs->rbx);
10065 kvm_rcx_write(vcpu, regs->rcx);
10066 kvm_rdx_write(vcpu, regs->rdx);
10067 kvm_rsi_write(vcpu, regs->rsi);
10068 kvm_rdi_write(vcpu, regs->rdi);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010069 kvm_rsp_write(vcpu, regs->rsp);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010070 kvm_rbp_write(vcpu, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010071#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010072 kvm_r8_write(vcpu, regs->r8);
10073 kvm_r9_write(vcpu, regs->r9);
10074 kvm_r10_write(vcpu, regs->r10);
10075 kvm_r11_write(vcpu, regs->r11);
10076 kvm_r12_write(vcpu, regs->r12);
10077 kvm_r13_write(vcpu, regs->r13);
10078 kvm_r14_write(vcpu, regs->r14);
10079 kvm_r15_write(vcpu, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010080#endif
10081
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010082 kvm_rip_write(vcpu, regs->rip);
Wanpeng Lid73235d2017-12-07 00:30:08 -080010083 kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010084
Jan Kiszkab4f14ab2008-04-30 17:59:04 +020010085 vcpu->arch.exception.pending = false;
10086
Avi Kivity3842d132010-07-27 12:30:24 +030010087 kvm_make_request(KVM_REQ_EVENT, vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010088}
Avi Kivity3842d132010-07-27 12:30:24 +030010089
Ken Hofsass01643c52018-01-31 16:03:36 -080010090int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10091{
10092 vcpu_load(vcpu);
10093 __set_regs(vcpu, regs);
Christoffer Dall875656f2017-12-04 21:35:27 +010010094 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010095 return 0;
10096}
10097
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010098void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
10099{
10100 struct kvm_segment cs;
10101
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010102 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010103 *db = cs.db;
10104 *l = cs.l;
10105}
10106EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
10107
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010108static void __get_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010109{
Gleb Natapov89a27f42010-02-16 10:51:48 +020010110 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010111
Tom Lendacky52657132020-12-10 11:09:59 -060010112 if (vcpu->arch.guest_state_protected)
10113 goto skip_protected_regs;
10114
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010115 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10116 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10117 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10118 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10119 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10120 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010121
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010122 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10123 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010124
Jason Baronb36464772021-01-14 22:27:56 -050010125 static_call(kvm_x86_get_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010126 sregs->idt.limit = dt.size;
10127 sregs->idt.base = dt.address;
Jason Baronb36464772021-01-14 22:27:56 -050010128 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010129 sregs->gdt.limit = dt.size;
10130 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010131
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010132 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +020010133 sregs->cr3 = kvm_read_cr3(vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010134
10135skip_protected_regs:
10136 sregs->cr0 = kvm_read_cr0(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +020010137 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010138 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +020010139 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010140 sregs->apic_base = kvm_get_apic_base(vcpu);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010141}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010142
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010143static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10144{
10145 __get_sregs_common(vcpu, sregs);
10146
10147 if (vcpu->arch.guest_state_protected)
10148 return;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010149
Liran Alon04140b42018-03-23 03:01:31 +030010150 if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +030010151 set_bit(vcpu->arch.interrupt.nr,
10152 (unsigned long *)sregs->interrupt_bitmap);
Ken Hofsass01643c52018-01-31 16:03:36 -080010153}
Gleb Natapov16d7a192009-04-21 17:45:10 +030010154
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010155static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10156{
10157 int i;
10158
10159 __get_sregs_common(vcpu, (struct kvm_sregs *)sregs2);
10160
10161 if (vcpu->arch.guest_state_protected)
10162 return;
10163
10164 if (is_pae_paging(vcpu)) {
10165 for (i = 0 ; i < 4 ; i++)
10166 sregs2->pdptrs[i] = kvm_pdptr_read(vcpu, i);
10167 sregs2->flags |= KVM_SREGS2_FLAGS_PDPTRS_VALID;
10168 }
10169}
10170
Ken Hofsass01643c52018-01-31 16:03:36 -080010171int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
10172 struct kvm_sregs *sregs)
10173{
10174 vcpu_load(vcpu);
10175 __get_sregs(vcpu, sregs);
Christoffer Dallbcdec412017-12-04 21:35:28 +010010176 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010177 return 0;
10178}
10179
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010180int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
10181 struct kvm_mp_state *mp_state)
10182{
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010183 int r;
10184
Christoffer Dallfd232562017-12-04 21:35:30 +010010185 vcpu_load(vcpu);
Sean Christophersonf958bd22019-12-09 12:19:31 -080010186 if (kvm_mpx_supported())
10187 kvm_load_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010188
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010189 r = kvm_apic_accept_events(vcpu);
10190 if (r < 0)
10191 goto out;
10192 r = 0;
10193
Tom Lendacky647daca2021-01-04 14:20:01 -060010194 if ((vcpu->arch.mp_state == KVM_MP_STATE_HALTED ||
10195 vcpu->arch.mp_state == KVM_MP_STATE_AP_RESET_HOLD) &&
10196 vcpu->arch.pv.pv_unhalted)
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +053010197 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
10198 else
10199 mp_state->mp_state = vcpu->arch.mp_state;
10200
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010201out:
Sean Christophersonf958bd22019-12-09 12:19:31 -080010202 if (kvm_mpx_supported())
10203 kvm_put_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010204 vcpu_put(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010205 return r;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010206}
10207
10208int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
10209 struct kvm_mp_state *mp_state)
10210{
Christoffer Dalle83dff52017-12-04 21:35:31 +010010211 int ret = -EINVAL;
10212
10213 vcpu_load(vcpu);
10214
Paolo Bonzinibce87cc2016-01-08 13:48:51 +010010215 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +010010216 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
Christoffer Dalle83dff52017-12-04 21:35:31 +010010217 goto out;
Jan Kiszka66450a22013-03-13 12:42:34 +010010218
Liran Alon27cbe7d2019-11-11 11:16:40 +020010219 /*
10220 * KVM_MP_STATE_INIT_RECEIVED means the processor is in
10221 * INIT state; latched init should be reported using
10222 * KVM_SET_VCPU_EVENTS, so reject it here.
10223 */
10224 if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) &&
David Hildenbrand28bf2882017-03-23 11:46:03 +010010225 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
10226 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
Christoffer Dalle83dff52017-12-04 21:35:31 +010010227 goto out;
David Hildenbrand28bf2882017-03-23 11:46:03 +010010228
Jan Kiszka66450a22013-03-13 12:42:34 +010010229 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
10230 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
10231 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
10232 } else
10233 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +030010234 kvm_make_request(KVM_REQ_EVENT, vcpu);
Christoffer Dalle83dff52017-12-04 21:35:31 +010010235
10236 ret = 0;
10237out:
10238 vcpu_put(vcpu);
10239 return ret;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010240}
10241
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010242int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
10243 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010244{
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010245 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010246 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010247
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010248 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +020010249
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010250 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010251 has_error_code, error_code);
Sean Christopherson10517782019-08-27 14:40:35 -070010252 if (ret) {
10253 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
10254 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
10255 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010256 return 0;
Sean Christopherson10517782019-08-27 14:40:35 -070010257 }
Gleb Natapovc6975182010-02-18 12:15:01 +020010258
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010259 kvm_rip_write(vcpu, ctxt->eip);
10260 kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010261 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +020010262}
10263EXPORT_SYMBOL_GPL(kvm_task_switch);
10264
Sean Christophersonee69c922020-10-06 18:44:16 -070010265static bool kvm_is_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Lan Tianyuf2981032017-12-14 03:01:52 -050010266{
Tianyu Lan37b95952018-01-16 17:34:07 +080010267 if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) {
Lan Tianyuf2981032017-12-14 03:01:52 -050010268 /*
10269 * When EFER.LME and CR0.PG are set, the processor is in
10270 * 64-bit mode (though maybe in a 32-bit code segment).
10271 * CR4.PAE and EFER.LMA must be set.
10272 */
Sean Christophersonee69c922020-10-06 18:44:16 -070010273 if (!(sregs->cr4 & X86_CR4_PAE) || !(sregs->efer & EFER_LMA))
10274 return false;
Sean Christophersonca29e142021-02-03 16:01:12 -080010275 if (kvm_vcpu_is_illegal_gpa(vcpu, sregs->cr3))
Paolo Bonzinic1c35cf2020-11-13 08:30:38 -050010276 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010277 } else {
10278 /*
10279 * Not in 64-bit mode: EFER.LMA is clear and the code
10280 * segment cannot be 64-bit.
10281 */
10282 if (sregs->efer & EFER_LMA || sregs->cs.l)
Sean Christophersonee69c922020-10-06 18:44:16 -070010283 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010284 }
10285
Sean Christophersonee69c922020-10-06 18:44:16 -070010286 return kvm_is_valid_cr4(vcpu, sregs->cr4);
Lan Tianyuf2981032017-12-14 03:01:52 -050010287}
10288
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010289static int __set_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs,
10290 int *mmu_reset_needed, bool update_pdptrs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010291{
Jan Kiszka58cb6282014-01-24 16:48:44 +010010292 struct msr_data apic_base_msr;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010293 int idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +020010294 struct desc_ptr dt;
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010295
Sean Christophersonee69c922020-10-06 18:44:16 -070010296 if (!kvm_is_valid_sregs(vcpu, sregs))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010297 return -EINVAL;
Lan Tianyuf2981032017-12-14 03:01:52 -050010298
Jim Mattsond3802282017-08-10 10:14:13 -070010299 apic_base_msr.data = sregs->apic_base;
10300 apic_base_msr.host_initiated = true;
10301 if (kvm_set_apic_base(vcpu, &apic_base_msr))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010302 return -EINVAL;
Petr Matousek6d1068b2012-11-06 19:24:07 +010010303
Tom Lendacky52657132020-12-10 11:09:59 -060010304 if (vcpu->arch.guest_state_protected)
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010305 return 0;
Tom Lendacky52657132020-12-10 11:09:59 -060010306
Gleb Natapov89a27f42010-02-16 10:51:48 +020010307 dt.size = sregs->idt.limit;
10308 dt.address = sregs->idt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010309 static_call(kvm_x86_set_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010310 dt.size = sregs->gdt.limit;
10311 dt.address = sregs->gdt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010312 static_call(kvm_x86_set_gdt)(vcpu, &dt);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010313
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010314 vcpu->arch.cr2 = sregs->cr2;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010315 *mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +020010316 vcpu->arch.cr3 = sregs->cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -070010317 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010318
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010319 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010320
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010321 *mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Jason Baronb36464772021-01-14 22:27:56 -050010322 static_call(kvm_x86_set_efer)(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010323
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010324 *mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Jason Baronb36464772021-01-14 22:27:56 -050010325 static_call(kvm_x86_set_cr0)(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +000010326 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010327
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010328 *mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Jason Baronb36464772021-01-14 22:27:56 -050010329 static_call(kvm_x86_set_cr4)(vcpu, sregs->cr4);
Xiao Guangrong63f42e02011-01-12 15:39:18 +080010330
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010331 if (update_pdptrs) {
10332 idx = srcu_read_lock(&vcpu->kvm->srcu);
10333 if (is_pae_paging(vcpu)) {
10334 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
10335 *mmu_reset_needed = 1;
10336 }
10337 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Marcelo Tosatti7c93be442009-10-26 16:48:33 -020010338 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010339
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010340 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10341 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10342 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10343 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10344 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10345 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010346
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010347 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10348 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010349
Mikhail Ershov5f0269f2009-08-03 14:58:25 +030010350 update_cr8_intercept(vcpu);
10351
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010352 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +030010353 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010354 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +020010355 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010356 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10357
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010358 return 0;
10359}
10360
10361static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10362{
10363 int pending_vec, max_bits;
10364 int mmu_reset_needed = 0;
10365 int ret = __set_sregs_common(vcpu, sregs, &mmu_reset_needed, true);
10366
10367 if (ret)
10368 return ret;
10369
10370 if (mmu_reset_needed)
10371 kvm_mmu_reset_context(vcpu);
10372
Tom Lendacky52657132020-12-10 11:09:59 -060010373 max_bits = KVM_NR_INTERRUPTS;
10374 pending_vec = find_first_bit(
10375 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010376
Tom Lendacky52657132020-12-10 11:09:59 -060010377 if (pending_vec < max_bits) {
10378 kvm_queue_interrupt(vcpu, pending_vec, false);
10379 pr_debug("Set back pending irq %d\n", pending_vec);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010380 kvm_make_request(KVM_REQ_EVENT, vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010381 }
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010382 return 0;
10383}
Tom Lendacky52657132020-12-10 11:09:59 -060010384
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010385static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10386{
10387 int mmu_reset_needed = 0;
10388 bool valid_pdptrs = sregs2->flags & KVM_SREGS2_FLAGS_PDPTRS_VALID;
10389 bool pae = (sregs2->cr0 & X86_CR0_PG) && (sregs2->cr4 & X86_CR4_PAE) &&
10390 !(sregs2->efer & EFER_LMA);
10391 int i, ret;
Avi Kivity3842d132010-07-27 12:30:24 +030010392
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010393 if (sregs2->flags & ~KVM_SREGS2_FLAGS_PDPTRS_VALID)
10394 return -EINVAL;
10395
10396 if (valid_pdptrs && (!pae || vcpu->arch.guest_state_protected))
10397 return -EINVAL;
10398
10399 ret = __set_sregs_common(vcpu, (struct kvm_sregs *)sregs2,
10400 &mmu_reset_needed, !valid_pdptrs);
10401 if (ret)
10402 return ret;
10403
10404 if (valid_pdptrs) {
10405 for (i = 0; i < 4 ; i++)
10406 kvm_pdptr_write(vcpu, i, sregs2->pdptrs[i]);
10407
10408 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
10409 mmu_reset_needed = 1;
Maxim Levitsky158a48e2021-06-07 12:02:03 +030010410 vcpu->arch.pdptrs_from_userspace = true;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010411 }
10412 if (mmu_reset_needed)
10413 kvm_mmu_reset_context(vcpu);
10414 return 0;
Ken Hofsass01643c52018-01-31 16:03:36 -080010415}
10416
10417int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
10418 struct kvm_sregs *sregs)
10419{
10420 int ret;
10421
10422 vcpu_load(vcpu);
10423 ret = __set_sregs(vcpu, sregs);
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010424 vcpu_put(vcpu);
10425 return ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010426}
10427
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010428int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
10429 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010430{
Jan Kiszka355be0b2009-10-03 00:31:21 +020010431 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010432 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010433
Tom Lendacky8d4846b2020-12-10 11:09:43 -060010434 if (vcpu->arch.guest_state_protected)
10435 return -EINVAL;
10436
Christoffer Dall66b56562017-12-04 21:35:33 +010010437 vcpu_load(vcpu);
10438
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010439 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
10440 r = -EBUSY;
10441 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +030010442 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010443 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
10444 kvm_queue_exception(vcpu, DB_VECTOR);
10445 else
10446 kvm_queue_exception(vcpu, BP_VECTOR);
10447 }
10448
Jan Kiszka91586a32009-10-05 13:07:21 +020010449 /*
10450 * Read rflags as long as potentially injected trace flags are still
10451 * filtered out.
10452 */
10453 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010454
10455 vcpu->guest_debug = dbg->control;
10456 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
10457 vcpu->guest_debug = 0;
10458
10459 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010460 for (i = 0; i < KVM_NR_DB_REGS; ++i)
10461 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +020010462 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010463 } else {
10464 for (i = 0; i < KVM_NR_DB_REGS; i++)
10465 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010466 }
Jan Kiszkac8639012012-09-21 05:42:55 +020010467 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010468
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010469 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Yuan Yaoe87e46d2021-05-26 14:38:28 +080010470 vcpu->arch.singlestep_rip = kvm_get_linear_rip(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010471
Jan Kiszka91586a32009-10-05 13:07:21 +020010472 /*
10473 * Trigger an rflags update that will inject or remove the trace
10474 * flags.
10475 */
10476 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010477
Jason Baronb36464772021-01-14 22:27:56 -050010478 static_call(kvm_x86_update_exception_bitmap)(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010479
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010480 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010481
Avi Kivity2122ff52010-05-13 11:25:04 +030010482out:
Christoffer Dall66b56562017-12-04 21:35:33 +010010483 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010484 return r;
10485}
10486
10487/*
Zhang Xiantao8b006792007-11-16 13:05:55 +080010488 * Translate a guest virtual address to a guest physical address.
10489 */
10490int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
10491 struct kvm_translation *tr)
10492{
10493 unsigned long vaddr = tr->linear_address;
10494 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010495 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010496
Christoffer Dall1da5b612017-12-04 21:35:32 +010010497 vcpu_load(vcpu);
10498
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010499 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +020010500 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010501 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010502 tr->physical_address = gpa;
10503 tr->valid = gpa != UNMAPPED_GVA;
10504 tr->writeable = 1;
10505 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010506
Christoffer Dall1da5b612017-12-04 21:35:32 +010010507 vcpu_put(vcpu);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010508 return 0;
10509}
10510
Hollis Blanchardd0752062007-10-31 17:24:25 -050010511int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10512{
Christoffer Dall13931232017-12-04 21:35:34 +010010513 struct fxregs_state *fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010514
Tom Lendackyed02b212020-12-10 11:10:01 -060010515 if (!vcpu->arch.guest_fpu)
10516 return 0;
10517
Christoffer Dall13931232017-12-04 21:35:34 +010010518 vcpu_load(vcpu);
10519
Marc Orrb666a4b2018-11-06 14:53:56 -080010520 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010521 memcpy(fpu->fpr, fxsave->st_space, 128);
10522 fpu->fcw = fxsave->cwd;
10523 fpu->fsw = fxsave->swd;
10524 fpu->ftwx = fxsave->twd;
10525 fpu->last_opcode = fxsave->fop;
10526 fpu->last_ip = fxsave->rip;
10527 fpu->last_dp = fxsave->rdp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010528 memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010529
Christoffer Dall13931232017-12-04 21:35:34 +010010530 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010531 return 0;
10532}
10533
10534int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10535{
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010536 struct fxregs_state *fxsave;
10537
Tom Lendackyed02b212020-12-10 11:10:01 -060010538 if (!vcpu->arch.guest_fpu)
10539 return 0;
10540
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010541 vcpu_load(vcpu);
10542
Marc Orrb666a4b2018-11-06 14:53:56 -080010543 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010544
Hollis Blanchardd0752062007-10-31 17:24:25 -050010545 memcpy(fxsave->st_space, fpu->fpr, 128);
10546 fxsave->cwd = fpu->fcw;
10547 fxsave->swd = fpu->fsw;
10548 fxsave->twd = fpu->ftwx;
10549 fxsave->fop = fpu->last_opcode;
10550 fxsave->rip = fpu->last_ip;
10551 fxsave->rdp = fpu->last_dp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010552 memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010553
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010554 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010555 return 0;
10556}
10557
Ken Hofsass01643c52018-01-31 16:03:36 -080010558static void store_regs(struct kvm_vcpu *vcpu)
10559{
10560 BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES);
10561
10562 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS)
10563 __get_regs(vcpu, &vcpu->run->s.regs.regs);
10564
10565 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS)
10566 __get_sregs(vcpu, &vcpu->run->s.regs.sregs);
10567
10568 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS)
10569 kvm_vcpu_ioctl_x86_get_vcpu_events(
10570 vcpu, &vcpu->run->s.regs.events);
10571}
10572
10573static int sync_regs(struct kvm_vcpu *vcpu)
10574{
10575 if (vcpu->run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS)
10576 return -EINVAL;
10577
10578 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) {
10579 __set_regs(vcpu, &vcpu->run->s.regs.regs);
10580 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS;
10581 }
10582 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) {
10583 if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs))
10584 return -EINVAL;
10585 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS;
10586 }
10587 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) {
10588 if (kvm_vcpu_ioctl_x86_set_vcpu_events(
10589 vcpu, &vcpu->run->s.regs.events))
10590 return -EINVAL;
10591 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS;
10592 }
10593
10594 return 0;
10595}
10596
Ingo Molnar0ee6a512015-04-27 06:58:22 +020010597static void fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -050010598{
Tom Lendackyed02b212020-12-10 11:10:01 -060010599 if (!vcpu->arch.guest_fpu)
10600 return;
10601
Marc Orrb666a4b2018-11-06 14:53:56 -080010602 fpstate_init(&vcpu->arch.guest_fpu->state);
Borislav Petkov782511b2016-04-04 22:25:03 +020010603 if (boot_cpu_has(X86_FEATURE_XSAVES))
Marc Orrb666a4b2018-11-06 14:53:56 -080010604 vcpu->arch.guest_fpu->state.xsave.header.xcomp_bv =
Paolo Bonzinidf1daba2014-11-21 19:05:07 +010010605 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010606
Dexuan Cui2acf9232010-06-10 11:27:12 +080010607 /*
10608 * Ensure guest xcr0 is valid for loading
10609 */
Dave Hansend91cab72015-09-02 16:31:26 -070010610 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Dexuan Cui2acf9232010-06-10 11:27:12 +080010611
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010612 vcpu->arch.cr0 |= X86_CR0_ET;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010613}
Hollis Blanchardd0752062007-10-31 17:24:25 -050010614
Tom Lendackyed02b212020-12-10 11:10:01 -060010615void kvm_free_guest_fpu(struct kvm_vcpu *vcpu)
10616{
10617 if (vcpu->arch.guest_fpu) {
10618 kmem_cache_free(x86_fpu_cache, vcpu->arch.guest_fpu);
10619 vcpu->arch.guest_fpu = NULL;
10620 }
10621}
10622EXPORT_SYMBOL_GPL(kvm_free_guest_fpu);
10623
Sean Christopherson897cc382019-12-18 13:55:09 -080010624int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010625{
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010010626 if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
Sean Christopherson897cc382019-12-18 13:55:09 -080010627 pr_warn_once("kvm: SMP vm created on host with unstable TSC; "
10628 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +080010629
Sean Christopherson897cc382019-12-18 13:55:09 -080010630 return 0;
Avi Kivity26e52152007-11-20 15:30:24 +020010631}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010632
Sean Christophersone529ef62019-12-18 13:55:15 -080010633int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
Avi Kivity26e52152007-11-20 15:30:24 +020010634{
Sean Christopherson95a0d012019-12-18 13:55:23 -080010635 struct page *page;
10636 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010637
Sean Christopherson63f5a192021-06-22 10:56:52 -070010638 vcpu->arch.last_vmentry_cpu = -1;
10639
Sean Christopherson95a0d012019-12-18 13:55:23 -080010640 if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu))
10641 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10642 else
10643 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
10644
Sean Christopherson95a0d012019-12-18 13:55:23 -080010645 r = kvm_mmu_create(vcpu);
10646 if (r < 0)
10647 return r;
10648
10649 if (irqchip_in_kernel(vcpu->kvm)) {
Sean Christopherson95a0d012019-12-18 13:55:23 -080010650 r = kvm_create_lapic(vcpu, lapic_timer_advance_ns);
10651 if (r < 0)
10652 goto fail_mmu_destroy;
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -060010653 if (kvm_apicv_activated(vcpu->kvm))
10654 vcpu->arch.apicv_active = true;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010655 } else
Cun Li6e4e3b42021-01-11 23:24:35 +080010656 static_branch_inc(&kvm_has_noapic_vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010657
10658 r = -ENOMEM;
10659
Shakeel Butt93bb59c2020-12-18 14:01:38 -080010660 page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010661 if (!page)
10662 goto fail_free_lapic;
10663 vcpu->arch.pio_data = page_address(page);
10664
10665 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
10666 GFP_KERNEL_ACCOUNT);
10667 if (!vcpu->arch.mce_banks)
10668 goto fail_free_pio_data;
10669 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
10670
10671 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask,
10672 GFP_KERNEL_ACCOUNT))
10673 goto fail_free_mce_banks;
10674
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010675 if (!alloc_emulate_ctxt(vcpu))
10676 goto free_wbinvd_dirty_mask;
10677
Sean Christopherson95a0d012019-12-18 13:55:23 -080010678 vcpu->arch.user_fpu = kmem_cache_zalloc(x86_fpu_cache,
10679 GFP_KERNEL_ACCOUNT);
10680 if (!vcpu->arch.user_fpu) {
10681 pr_err("kvm: failed to allocate userspace's fpu\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010682 goto free_emulate_ctxt;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010683 }
10684
10685 vcpu->arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
10686 GFP_KERNEL_ACCOUNT);
10687 if (!vcpu->arch.guest_fpu) {
10688 pr_err("kvm: failed to allocate vcpu's fpu\n");
10689 goto free_user_fpu;
10690 }
10691 fx_init(vcpu);
10692
Sean Christopherson95a0d012019-12-18 13:55:23 -080010693 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Sean Christophersona8ac8642021-02-03 16:01:15 -080010694 vcpu->arch.reserved_gpa_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010695
10696 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
10697
10698 kvm_async_pf_hash_reset(vcpu);
10699 kvm_pmu_init(vcpu);
10700
10701 vcpu->arch.pending_external_vector = -1;
10702 vcpu->arch.preempted_in_kernel = false;
10703
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000010704#if IS_ENABLED(CONFIG_HYPERV)
10705 vcpu->arch.hv_root_tdp = INVALID_PAGE;
10706#endif
10707
Jason Baronb36464772021-01-14 22:27:56 -050010708 r = static_call(kvm_x86_vcpu_create)(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010709 if (r)
10710 goto free_guest_fpu;
Sean Christopherson5f73db12019-12-18 13:55:18 -080010711
Sean Christopherson0cf91352019-03-07 15:43:02 -080010712 vcpu->arch.arch_capabilities = kvm_get_arch_capabilities();
Jim Mattsone53d88af2018-10-30 12:20:21 -070010713 vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT;
Xiao Guangrong19efffa2015-06-15 16:55:31 +080010714 kvm_vcpu_mtrr_init(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010010715 vcpu_load(vcpu);
Ilias Stamatis1ab92872021-06-07 11:54:38 +010010716 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010717 kvm_vcpu_reset(vcpu, false);
Sean Christophersonc9060662021-06-09 16:42:33 -070010718 kvm_init_mmu(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010719 vcpu_put(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010010720 return 0;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010721
10722free_guest_fpu:
Tom Lendackyed02b212020-12-10 11:10:01 -060010723 kvm_free_guest_fpu(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010724free_user_fpu:
10725 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010726free_emulate_ctxt:
10727 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010728free_wbinvd_dirty_mask:
10729 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
10730fail_free_mce_banks:
10731 kfree(vcpu->arch.mce_banks);
10732fail_free_pio_data:
10733 free_page((unsigned long)vcpu->arch.pio_data);
10734fail_free_lapic:
10735 kvm_free_lapic(vcpu);
10736fail_mmu_destroy:
10737 kvm_mmu_destroy(vcpu);
10738 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010739}
10740
Dominik Dingel31928aa2014-12-04 15:47:07 +010010741void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010742{
Andrew Jones332967a2014-02-28 12:52:55 +010010743 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010744
Christoffer Dallec7660c2017-12-04 21:35:23 +010010745 if (mutex_lock_killable(&vcpu->mutex))
Dominik Dingel31928aa2014-12-04 15:47:07 +010010746 return;
Christoffer Dallec7660c2017-12-04 21:35:23 +010010747 vcpu_load(vcpu);
Paolo Bonzini0c899c22020-09-24 14:45:27 +020010748 kvm_synchronize_tsc(vcpu, 0);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010749 vcpu_put(vcpu);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030010750
10751 /* poll control enabled by default */
10752 vcpu->arch.msr_kvm_poll_control = 1;
10753
Christoffer Dallec7660c2017-12-04 21:35:23 +010010754 mutex_unlock(&vcpu->mutex);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010755
Wanpeng Lib34de572020-02-28 11:18:41 +080010756 if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0)
10757 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
10758 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020010759}
10760
Hollis Blanchardd40ccc62007-11-19 14:04:43 -060010761void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010762{
Paolo Bonzini4cbc4182020-01-30 18:47:38 +010010763 struct gfn_to_pfn_cache *cache = &vcpu->arch.st.cache;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010764 int idx;
Gleb Natapov344d9582010-10-14 11:22:50 +020010765
Paolo Bonzini4cbc4182020-01-30 18:47:38 +010010766 kvm_release_pfn(cache->pfn, cache->dirty, cache);
10767
Sean Christopherson50b143e2019-12-18 13:55:07 -080010768 kvmclock_reset(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010769
Jason Baronb36464772021-01-14 22:27:56 -050010770 static_call(kvm_x86_vcpu_free)(vcpu);
Sean Christopherson50b143e2019-12-18 13:55:07 -080010771
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010772 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson50b143e2019-12-18 13:55:07 -080010773 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
10774 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
Tom Lendackyed02b212020-12-10 11:10:01 -060010775 kvm_free_guest_fpu(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010776
10777 kvm_hv_vcpu_uninit(vcpu);
10778 kvm_pmu_destroy(vcpu);
10779 kfree(vcpu->arch.mce_banks);
10780 kvm_free_lapic(vcpu);
10781 idx = srcu_read_lock(&vcpu->kvm->srcu);
10782 kvm_mmu_destroy(vcpu);
10783 srcu_read_unlock(&vcpu->kvm->srcu, idx);
10784 free_page((unsigned long)vcpu->arch.pio_data);
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +020010785 kvfree(vcpu->arch.cpuid_entries);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010786 if (!lapic_in_kernel(vcpu))
Cun Li6e4e3b42021-01-11 23:24:35 +080010787 static_branch_dec(&kvm_has_noapic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010788}
10789
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010790void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010791{
Sean Christopherson0aa18372021-06-22 10:56:48 -070010792 unsigned long old_cr0 = kvm_read_cr0(vcpu);
10793
Radim Krčmářb7e31be2018-03-01 15:24:25 +010010794 kvm_lapic_reset(vcpu, init_event);
10795
Paolo Bonzinie69fab52015-06-04 10:44:44 +020010796 vcpu->arch.hflags = 0;
10797
Paolo Bonzinic43203c2016-06-01 22:26:00 +020010798 vcpu->arch.smi_pending = 0;
Liran Alon52797bf2017-11-15 13:43:14 +020010799 vcpu->arch.smi_count = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +030010800 atomic_set(&vcpu->arch.nmi_queued, 0);
10801 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +020010802 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +030010803 kvm_clear_interrupt_queue(vcpu);
10804 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +020010805
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010806 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +030010807 kvm_update_dr0123(vcpu);
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +080010808 vcpu->arch.dr6 = DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010809 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +020010810 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +010010811
Nadav Amit11190222015-04-02 03:10:38 +030010812 vcpu->arch.cr2 = 0;
10813
Avi Kivity3842d132010-07-27 12:30:24 +030010814 kvm_make_request(KVM_REQ_EVENT, vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020010815 vcpu->arch.apf.msr_en_val = 0;
10816 vcpu->arch.apf.msr_int_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -040010817 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +030010818
Glauber Costa12f9a482011-02-01 14:16:40 -050010819 kvmclock_reset(vcpu);
10820
Gleb Natapovaf585b92010-10-14 11:22:46 +020010821 kvm_clear_async_pf_completion_queue(vcpu);
10822 kvm_async_pf_hash_reset(vcpu);
10823 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010824
Tom Lendackyed02b212020-12-10 11:10:01 -060010825 if (vcpu->arch.guest_fpu && kvm_mpx_supported()) {
Wanpeng Lia554d202017-10-11 05:10:19 -070010826 void *mpx_state_buffer;
10827
10828 /*
10829 * To avoid have the INIT path from kvm_apic_has_events() that be
10830 * called with loaded FPU and does not let userspace fix the state.
10831 */
Rik van Rielf775b132017-11-14 16:54:23 -050010832 if (init_event)
10833 kvm_put_guest_fpu(vcpu);
Marc Orrb666a4b2018-11-06 14:53:56 -080010834 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +020010835 XFEATURE_BNDREGS);
Wanpeng Lia554d202017-10-11 05:10:19 -070010836 if (mpx_state_buffer)
10837 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndreg_state));
Marc Orrb666a4b2018-11-06 14:53:56 -080010838 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +020010839 XFEATURE_BNDCSR);
Wanpeng Lia554d202017-10-11 05:10:19 -070010840 if (mpx_state_buffer)
10841 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndcsr));
Rik van Rielf775b132017-11-14 16:54:23 -050010842 if (init_event)
10843 kvm_load_guest_fpu(vcpu);
Wanpeng Lia554d202017-10-11 05:10:19 -070010844 }
10845
Paolo Bonzini64d60672015-05-07 11:36:11 +020010846 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +030010847 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +020010848 vcpu->arch.smbase = 0x30000;
Kyle Hueydb2336a2017-03-20 01:16:28 -070010849
Kyle Hueydb2336a2017-03-20 01:16:28 -070010850 vcpu->arch.msr_misc_features_enables = 0;
Wanpeng Lia554d202017-10-11 05:10:19 -070010851
10852 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Paolo Bonzini64d60672015-05-07 11:36:11 +020010853 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020010854
Julian Stecklina66f7b722012-12-05 15:26:19 +010010855 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
10856 vcpu->arch.regs_avail = ~0;
10857 vcpu->arch.regs_dirty = ~0;
10858
Wanpeng Lia554d202017-10-11 05:10:19 -070010859 vcpu->arch.ia32_xss = 0;
10860
Jason Baronb36464772021-01-14 22:27:56 -050010861 static_call(kvm_x86_vcpu_reset)(vcpu, init_event);
Sean Christopherson0aa18372021-06-22 10:56:48 -070010862
10863 /*
10864 * Reset the MMU context if paging was enabled prior to INIT (which is
10865 * implied if CR0.PG=1 as CR0 will be '0' prior to RESET). Unlike the
10866 * standard CR0/CR4/EFER modification paths, only CR0.PG needs to be
10867 * checked because it is unconditionally cleared on INIT and all other
10868 * paging related bits are ignored if paging is disabled, i.e. CR0.WP,
10869 * CR4, and EFER changes are all irrelevant if CR0.PG was '0'.
10870 */
10871 if (old_cr0 & X86_CR0_PG)
10872 kvm_mmu_reset_context(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010873}
10874
Paolo Bonzini2b4a2732014-11-24 14:35:24 +010010875void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +010010876{
10877 struct kvm_segment cs;
10878
10879 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
10880 cs.selector = vector << 8;
10881 cs.base = vector << 12;
10882 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
10883 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010884}
Tom Lendacky647daca2021-01-04 14:20:01 -060010885EXPORT_SYMBOL_GPL(kvm_vcpu_deliver_sipi_vector);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010886
Radim Krčmář13a34e02014-08-28 15:13:03 +020010887int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010888{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -100010889 struct kvm *kvm;
10890 struct kvm_vcpu *vcpu;
10891 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010892 int ret;
10893 u64 local_tsc;
10894 u64 max_tsc = 0;
10895 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +030010896
Sean Christopherson7e34fbd2020-09-23 11:03:55 -070010897 kvm_user_return_msr_cpu_online();
Jason Baronb36464772021-01-14 22:27:56 -050010898 ret = static_call(kvm_x86_hardware_enable)();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010899 if (ret != 0)
10900 return ret;
10901
Andy Lutomirski4ea16362015-06-25 18:44:07 +020010902 local_tsc = rdtsc();
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010010903 stable = !kvm_check_tsc_unstable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010904 list_for_each_entry(kvm, &vm_list, vm_list) {
10905 kvm_for_each_vcpu(i, vcpu, kvm) {
10906 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +080010907 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010908 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
10909 backwards_tsc = true;
10910 if (vcpu->arch.last_host_tsc > max_tsc)
10911 max_tsc = vcpu->arch.last_host_tsc;
10912 }
10913 }
10914 }
10915
10916 /*
10917 * Sometimes, even reliable TSCs go backwards. This happens on
10918 * platforms that reset TSC during suspend or hibernate actions, but
10919 * maintain synchronization. We must compensate. Fortunately, we can
10920 * detect that condition here, which happens early in CPU bringup,
10921 * before any KVM threads can be running. Unfortunately, we can't
10922 * bring the TSCs fully up to date with real time, as we aren't yet far
10923 * enough into CPU bringup that we know how much real time has actually
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020010924 * elapsed; our helper function, ktime_get_boottime_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010925 * variables that haven't been updated yet.
10926 *
10927 * So we simply find the maximum observed TSC above, then record the
10928 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
10929 * the adjustment will be applied. Note that we accumulate
10930 * adjustments, in case multiple suspend cycles happen before some VCPU
10931 * gets a chance to run again. In the event that no KVM threads get a
10932 * chance to run, we will miss the entire elapsed period, as we'll have
10933 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
10934 * loose cycle time. This isn't too big a deal, since the loss will be
10935 * uniform across all VCPUs (not to mention the scenario is extremely
10936 * unlikely). It is possible that a second hibernate recovery happens
10937 * much faster than a first, causing the observed TSC here to be
10938 * smaller; this would require additional padding adjustment, which is
10939 * why we set last_host_tsc to the local tsc observed here.
10940 *
10941 * N.B. - this code below runs only on platforms with reliable TSC,
10942 * as that is the only way backwards_tsc is set above. Also note
10943 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
10944 * have the same delta_cyc adjustment applied if backwards_tsc
10945 * is detected. Note further, this adjustment is only done once,
10946 * as we reset last_host_tsc on all VCPUs to stop this from being
10947 * called multiple times (one for each physical CPU bringup).
10948 *
Guo Chao4a969982012-06-28 15:17:27 +080010949 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010950 * will be compensated by the logic in vcpu_load, which sets the TSC to
10951 * catchup mode. This will catchup all VCPUs to real time, but cannot
10952 * guarantee that they stay in perfect synchronization.
10953 */
10954 if (backwards_tsc) {
10955 u64 delta_cyc = max_tsc - local_tsc;
10956 list_for_each_entry(kvm, &vm_list, vm_list) {
Ladi Proseka826faf2017-06-26 09:56:43 +020010957 kvm->arch.backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010958 kvm_for_each_vcpu(i, vcpu, kvm) {
10959 vcpu->arch.tsc_offset_adjustment += delta_cyc;
10960 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +080010961 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020010962 }
10963
10964 /*
10965 * We have to disable TSC offset matching.. if you were
10966 * booting a VM while issuing an S4 host suspend....
10967 * you may have some problem. Solving this issue is
10968 * left as an exercise to the reader.
10969 */
10970 kvm->arch.last_tsc_nsec = 0;
10971 kvm->arch.last_tsc_write = 0;
10972 }
10973
10974 }
10975 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010976}
10977
Radim Krčmář13a34e02014-08-28 15:13:03 +020010978void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010979{
Jason Baronb36464772021-01-14 22:27:56 -050010980 static_call(kvm_x86_hardware_disable)();
Radim Krčmář13a34e02014-08-28 15:13:03 +020010981 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010982}
10983
Sean Christophersonb9904082020-03-21 13:25:55 -070010984int kvm_arch_hardware_setup(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010985{
Sean Christophersond008dfd2020-03-21 13:25:56 -070010986 struct kvm_x86_init_ops *ops = opaque;
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030010987 int r;
10988
Sean Christopherson91661982020-03-02 15:57:06 -080010989 rdmsrl_safe(MSR_EFER, &host_efer);
10990
Paolo Bonzini408e9a32020-03-05 16:11:56 +010010991 if (boot_cpu_has(X86_FEATURE_XSAVES))
10992 rdmsrl(MSR_IA32_XSS, host_xss);
10993
Sean Christophersond008dfd2020-03-21 13:25:56 -070010994 r = ops->hardware_setup();
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030010995 if (r != 0)
10996 return r;
10997
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010998 memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops));
Jason Baronb36464772021-01-14 22:27:56 -050010999 kvm_ops_static_call_update();
Sean Christopherson69c6f692020-03-21 13:25:59 -070011000
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011001 if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES))
11002 supported_xss = 0;
11003
Paolo Bonzini139f7422020-05-05 09:40:46 -040011004#define __kvm_cpu_cap_has(UNUSED_, f) kvm_cpu_cap_has(f)
11005 cr4_reserved_bits = __cr4_reserved_bits(__kvm_cpu_cap_has, UNUSED_);
11006#undef __kvm_cpu_cap_has
Sean Christophersonb11306b2019-12-10 14:44:13 -080011007
Haozhong Zhang35181e82015-10-20 15:39:03 +080011008 if (kvm_has_tsc_control) {
11009 /*
11010 * Make sure the user can only configure tsc_khz values that
11011 * fit into a signed integer.
Marcelo Tosatti273ba452018-06-11 14:12:10 -030011012 * A min value is not calculated because it will always
Haozhong Zhang35181e82015-10-20 15:39:03 +080011013 * be 1 on all machines.
11014 */
11015 u64 max = min(0x7fffffffULL,
11016 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
11017 kvm_max_guest_tsc_khz = max;
11018
Haozhong Zhangad7218832015-10-20 15:39:02 +080011019 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +080011020 }
Haozhong Zhangad7218832015-10-20 15:39:02 +080011021
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011022 kvm_init_msr_list();
11023 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011024}
11025
11026void kvm_arch_hardware_unsetup(void)
11027{
Jason Baronb36464772021-01-14 22:27:56 -050011028 static_call(kvm_x86_hardware_unsetup)();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011029}
11030
Sean Christophersonb9904082020-03-21 13:25:55 -070011031int kvm_arch_check_processor_compat(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011032{
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011033 struct cpuinfo_x86 *c = &cpu_data(smp_processor_id());
Sean Christophersond008dfd2020-03-21 13:25:56 -070011034 struct kvm_x86_init_ops *ops = opaque;
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011035
11036 WARN_ON(!irqs_disabled());
11037
Paolo Bonzini139f7422020-05-05 09:40:46 -040011038 if (__cr4_reserved_bits(cpu_has, c) !=
11039 __cr4_reserved_bits(cpu_has, &boot_cpu_data))
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011040 return -EIO;
11041
Sean Christophersond008dfd2020-03-21 13:25:56 -070011042 return ops->check_processor_compatibility();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011043}
11044
Paolo Bonzinid71ba782015-07-29 11:56:48 +020011045bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
11046{
11047 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
11048}
11049EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
11050
11051bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
11052{
11053 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
11054}
11055
Cun Li6e4e3b42021-01-11 23:24:35 +080011056__read_mostly DEFINE_STATIC_KEY_FALSE(kvm_has_noapic_vcpu);
11057EXPORT_SYMBOL_GPL(kvm_has_noapic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +030011058
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011059void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
11060{
Like Xub35e5542019-10-27 18:52:43 +080011061 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
11062
Paolo Bonzinic595cee2018-07-02 13:07:14 +020011063 vcpu->arch.l1tf_flush_l1d = true;
Like Xub35e5542019-10-27 18:52:43 +080011064 if (pmu->version && unlikely(pmu->event_count)) {
11065 pmu->need_cleanup = true;
11066 kvm_make_request(KVM_REQ_PMU, vcpu);
11067 }
Jason Baronb36464772021-01-14 22:27:56 -050011068 static_call(kvm_x86_sched_in)(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011069}
11070
Sean Christopherson562b6b02020-01-26 16:41:13 -080011071void kvm_arch_free_vm(struct kvm *kvm)
11072{
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +010011073 kfree(to_kvm_hv(kvm)->hv_pa_pg);
Sean Christopherson562b6b02020-01-26 16:41:13 -080011074 vfree(kvm);
11075}
11076
11077
Carsten Ottee08b9632012-01-04 10:25:20 +010011078int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011079{
Carsten Ottee08b9632012-01-04 10:25:20 +010011080 if (type)
11081 return -EINVAL;
11082
Paolo Bonzini6ef768f2014-11-20 13:45:31 +010011083 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +080011084 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Sean Christopherson10605202019-09-12 19:46:10 -070011085 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011086 INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030011087 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060011088 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011089
Sheng Yang5550af42008-10-15 20:15:06 +080011090 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
11091 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -060011092 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
11093 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
11094 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +080011095
Jan Kiszka038f8c12011-02-04 10:49:11 +010011096 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +030011097 mutex_init(&kvm->arch.apic_map_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -020011098 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
11099
Paolo Bonzini8171cd62020-01-22 14:36:09 +010011100 kvm->arch.kvmclock_offset = -get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -020011101 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +010011102
Drew Schmitt6fbbde92018-08-20 10:32:15 -070011103 kvm->arch.guest_can_read_msr_platform_info = true;
11104
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000011105#if IS_ENABLED(CONFIG_HYPERV)
11106 spin_lock_init(&kvm->arch.hv_root_tdp_lock);
11107 kvm->arch.hv_root_tdp = INVALID_PAGE;
11108#endif
11109
Andrew Jones7e44e442014-02-28 12:52:54 +010011110 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +010011111 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +010011112
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +020011113 kvm_apicv_init(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011114 kvm_hv_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +080011115 kvm_page_track_init(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011116 kvm_mmu_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +080011117
Jason Baronb36464772021-01-14 22:27:56 -050011118 return static_call(kvm_x86_vm_init)(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011119}
11120
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011121int kvm_arch_post_init_vm(struct kvm *kvm)
11122{
11123 return kvm_mmu_post_init_vm(kvm);
11124}
11125
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011126static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
11127{
Christoffer Dallec7660c2017-12-04 21:35:23 +010011128 vcpu_load(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011129 kvm_mmu_unload(vcpu);
11130 vcpu_put(vcpu);
11131}
11132
11133static void kvm_free_vcpus(struct kvm *kvm)
11134{
11135 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011136 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011137
11138 /*
11139 * Unpin any mmu pages first.
11140 */
Gleb Natapovaf585b92010-10-14 11:22:46 +020011141 kvm_for_each_vcpu(i, vcpu, kvm) {
11142 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011143 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011144 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011145 kvm_for_each_vcpu(i, vcpu, kvm)
Sean Christopherson4543bdc2019-12-18 13:55:14 -080011146 kvm_vcpu_destroy(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011147
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011148 mutex_lock(&kvm->lock);
11149 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
11150 kvm->vcpus[i] = NULL;
11151
11152 atomic_set(&kvm->online_vcpus, 0);
11153 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011154}
11155
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011156void kvm_arch_sync_events(struct kvm *kvm)
11157{
Andrew Jones332967a2014-02-28 12:52:55 +010011158 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +010011159 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +080011160 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011161}
11162
Peter Xuff5a9832020-09-30 21:20:33 -040011163#define ERR_PTR_USR(e) ((void __user *)ERR_PTR(e))
11164
11165/**
11166 * __x86_set_memory_region: Setup KVM internal memory slot
11167 *
11168 * @kvm: the kvm pointer to the VM.
11169 * @id: the slot ID to setup.
11170 * @gpa: the GPA to install the slot (unused when @size == 0).
11171 * @size: the size of the slot. Set to zero to uninstall a slot.
11172 *
11173 * This function helps to setup a KVM internal memory slot. Specify
11174 * @size > 0 to install a new slot, while @size == 0 to uninstall a
11175 * slot. The return code can be one of the following:
11176 *
11177 * HVA: on success (uninstall will return a bogus HVA)
11178 * -errno: on error
11179 *
11180 * The caller should always use IS_ERR() to check the return value
11181 * before use. Note, the KVM internal memory slots are guaranteed to
11182 * remain valid and unchanged until the VM is destroyed, i.e., the
11183 * GPA->HVA translation will not change. However, the HVA is a user
11184 * address, i.e. its accessibility is not guaranteed, and must be
11185 * accessed via __copy_{to,from}_user().
11186 */
11187void __user * __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa,
11188 u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011189{
11190 int i, r;
Kees Cook3f649ab2020-06-03 13:09:38 -070011191 unsigned long hva, old_npages;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011192 struct kvm_memslots *slots = kvm_memslots(kvm);
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011193 struct kvm_memory_slot *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011194
11195 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011196 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
Peter Xuff5a9832020-09-30 21:20:33 -040011197 return ERR_PTR_USR(-EINVAL);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011198
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011199 slot = id_to_memslot(slots, id);
11200 if (size) {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011201 if (slot && slot->npages)
Peter Xuff5a9832020-09-30 21:20:33 -040011202 return ERR_PTR_USR(-EEXIST);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011203
11204 /*
11205 * MAP_SHARED to prevent internal slot pages from being moved
11206 * by fork()/COW.
11207 */
11208 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
11209 MAP_SHARED | MAP_ANONYMOUS, 0);
11210 if (IS_ERR((void *)hva))
Peter Xuff5a9832020-09-30 21:20:33 -040011211 return (void __user *)hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011212 } else {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011213 if (!slot || !slot->npages)
Muhammad Usama Anjum46914532021-03-05 23:08:16 +050011214 return NULL;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011215
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011216 old_npages = slot->npages;
Zheng Zhan Liangb66f9ba2021-02-01 13:53:10 +080011217 hva = slot->userspace_addr;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011218 }
11219
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011220 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011221 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011222
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011223 m.slot = id | (i << 16);
11224 m.flags = 0;
11225 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011226 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011227 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011228 r = __kvm_set_memory_region(kvm, &m);
11229 if (r < 0)
Peter Xuff5a9832020-09-30 21:20:33 -040011230 return ERR_PTR_USR(r);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011231 }
11232
Eric Biggers103c7632018-01-31 17:30:21 -080011233 if (!size)
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011234 vm_munmap(hva, old_npages * PAGE_SIZE);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011235
Peter Xuff5a9832020-09-30 21:20:33 -040011236 return (void __user *)hva;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011237}
11238EXPORT_SYMBOL_GPL(__x86_set_memory_region);
11239
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011240void kvm_arch_pre_destroy_vm(struct kvm *kvm)
11241{
11242 kvm_mmu_pre_destroy_vm(kvm);
11243}
11244
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011245void kvm_arch_destroy_vm(struct kvm *kvm)
11246{
Andrew Honig27469d22013-04-18 09:38:14 -070011247 if (current->mm == kvm->mm) {
11248 /*
11249 * Free memory regions allocated on behalf of userspace,
11250 * unless the the memory map has changed due to process exit
11251 * or fd copying.
11252 */
Peter Xu6a3c6232020-01-09 09:57:16 -050011253 mutex_lock(&kvm->slots_lock);
11254 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
11255 0, 0);
11256 __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
11257 0, 0);
11258 __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
11259 mutex_unlock(&kvm->slots_lock);
Andrew Honig27469d22013-04-18 09:38:14 -070011260 }
Jason Baronb36464772021-01-14 22:27:56 -050011261 static_call_cond(kvm_x86_vm_destroy)(kvm);
Sean Christophersonb318e8d2021-03-16 11:44:33 -070011262 kvm_free_msr_filter(srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1));
Peter Xuc7611592017-03-15 16:01:19 +080011263 kvm_pic_destroy(kvm);
11264 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011265 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +020011266 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Eric Hankland66bb8a02019-07-10 18:25:15 -070011267 kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011268 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +020011269 kvm_page_track_cleanup(kvm);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +000011270 kvm_xen_destroy_vm(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011271 kvm_hv_destroy_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011272}
Zhang Xiantao0de10342007-11-20 16:25:04 +080011273
Ben Gardonc9b929b2021-05-18 10:34:08 -070011274static void memslot_rmap_free(struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011275{
11276 int i;
11277
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011278 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011279 kvfree(slot->arch.rmap[i]);
11280 slot->arch.rmap[i] = NULL;
Ben Gardonc9b929b2021-05-18 10:34:08 -070011281 }
11282}
Sean Christophersone96c81e2020-02-18 13:07:27 -080011283
Ben Gardonc9b929b2021-05-18 10:34:08 -070011284void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
11285{
11286 int i;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011287
Ben Gardonc9b929b2021-05-18 10:34:08 -070011288 memslot_rmap_free(slot);
11289
11290 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011291 kvfree(slot->arch.lpage_info[i - 1]);
11292 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011293 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011294
Sean Christophersone96c81e2020-02-18 13:07:27 -080011295 kvm_page_track_free_memslot(slot);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011296}
11297
Ben Gardon56dd1012021-05-18 10:34:09 -070011298static int memslot_rmap_alloc(struct kvm_memory_slot *slot,
11299 unsigned long npages)
11300{
11301 const int sz = sizeof(*slot->arch.rmap[0]);
11302 int i;
11303
11304 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
11305 int level = i + 1;
11306 int lpages = gfn_to_index(slot->base_gfn + npages - 1,
11307 slot->base_gfn, level) + 1;
11308
Ben Gardond501f742021-05-18 10:34:14 -070011309 WARN_ON(slot->arch.rmap[i]);
11310
Ben Gardon56dd1012021-05-18 10:34:09 -070011311 slot->arch.rmap[i] = kvcalloc(lpages, sz, GFP_KERNEL_ACCOUNT);
11312 if (!slot->arch.rmap[i]) {
11313 memslot_rmap_free(slot);
11314 return -ENOMEM;
11315 }
11316 }
11317
11318 return 0;
11319}
11320
Ben Gardond501f742021-05-18 10:34:14 -070011321int alloc_all_memslots_rmaps(struct kvm *kvm)
11322{
11323 struct kvm_memslots *slots;
11324 struct kvm_memory_slot *slot;
11325 int r, i;
11326
11327 /*
11328 * Check if memslots alreday have rmaps early before acquiring
11329 * the slots_arch_lock below.
11330 */
11331 if (kvm_memslots_have_rmaps(kvm))
11332 return 0;
11333
11334 mutex_lock(&kvm->slots_arch_lock);
11335
11336 /*
11337 * Read memslots_have_rmaps again, under the slots arch lock,
11338 * before allocating the rmaps
11339 */
11340 if (kvm_memslots_have_rmaps(kvm)) {
11341 mutex_unlock(&kvm->slots_arch_lock);
11342 return 0;
11343 }
11344
11345 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
11346 slots = __kvm_memslots(kvm, i);
11347 kvm_for_each_memslot(slot, slots) {
11348 r = memslot_rmap_alloc(slot, slot->npages);
11349 if (r) {
11350 mutex_unlock(&kvm->slots_arch_lock);
11351 return r;
11352 }
11353 }
11354 }
11355
11356 /*
11357 * Ensure that memslots_have_rmaps becomes true strictly after
11358 * all the rmap pointers are set.
11359 */
11360 smp_store_release(&kvm->arch.memslots_have_rmaps, true);
11361 mutex_unlock(&kvm->slots_arch_lock);
11362 return 0;
11363}
11364
Ben Gardona2557402021-05-18 10:34:12 -070011365static int kvm_alloc_memslot_metadata(struct kvm *kvm,
11366 struct kvm_memory_slot *slot,
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011367 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011368{
Ben Gardon56dd1012021-05-18 10:34:09 -070011369 int i, r;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011370
Sean Christophersonedd4fa32020-02-18 13:07:15 -080011371 /*
11372 * Clear out the previous array pointers for the KVM_MR_MOVE case. The
11373 * old arrays will be freed by __kvm_set_memory_region() if installing
11374 * the new memslot is successful.
11375 */
11376 memset(&slot->arch, 0, sizeof(slot->arch));
11377
Ben Gardone2209712021-05-18 10:34:13 -070011378 if (kvm_memslots_have_rmaps(kvm)) {
Ben Gardona2557402021-05-18 10:34:12 -070011379 r = memslot_rmap_alloc(slot, npages);
11380 if (r)
11381 return r;
11382 }
Ben Gardon56dd1012021-05-18 10:34:09 -070011383
11384 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011385 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011386 unsigned long ugfn;
11387 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011388 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011389
11390 lpages = gfn_to_index(slot->base_gfn + npages - 1,
11391 slot->base_gfn, level) + 1;
11392
Ben Gardon254272c2019-02-11 11:02:50 -080011393 linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT);
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011394 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011395 goto out_free;
11396
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011397 slot->arch.lpage_info[i - 1] = linfo;
11398
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011399 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011400 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011401 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011402 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011403 ugfn = slot->userspace_addr >> PAGE_SHIFT;
11404 /*
11405 * If the gfn and userspace address are not aligned wrt each
Sean Christopherson600087b2020-03-02 15:57:05 -080011406 * other, disable large page support for this slot.
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011407 */
Sean Christopherson600087b2020-03-02 15:57:05 -080011408 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011409 unsigned long j;
11410
11411 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011412 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011413 }
11414 }
11415
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011416 if (kvm_page_track_create_memslot(slot, npages))
11417 goto out_free;
11418
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011419 return 0;
11420
11421out_free:
Ben Gardonc9b929b2021-05-18 10:34:08 -070011422 memslot_rmap_free(slot);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011423
Ben Gardonc9b929b2021-05-18 10:34:08 -070011424 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +010011425 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011426 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011427 }
11428 return -ENOMEM;
11429}
11430
Sean Christopherson15248252019-02-05 12:54:17 -080011431void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011432{
Boris Ostrovsky91724812019-12-05 01:30:51 +000011433 struct kvm_vcpu *vcpu;
11434 int i;
11435
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +090011436 /*
11437 * memslots->generation has been incremented.
11438 * mmio generation may have reached its maximum value.
11439 */
Sean Christopherson15248252019-02-05 12:54:17 -080011440 kvm_mmu_invalidate_mmio_sptes(kvm, gen);
Boris Ostrovsky91724812019-12-05 01:30:51 +000011441
11442 /* Force re-initialization of steal_time cache */
11443 kvm_for_each_vcpu(i, vcpu, kvm)
11444 kvm_vcpu_kick(vcpu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011445}
11446
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011447int kvm_arch_prepare_memory_region(struct kvm *kvm,
11448 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +020011449 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +090011450 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +080011451{
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011452 if (change == KVM_MR_CREATE || change == KVM_MR_MOVE)
Ben Gardona2557402021-05-18 10:34:12 -070011453 return kvm_alloc_memslot_metadata(kvm, memslot,
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011454 mem->memory_size >> PAGE_SHIFT);
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011455 return 0;
11456}
11457
Makarand Sonarea85863c2021-02-12 16:50:12 -080011458
11459static void kvm_mmu_update_cpu_dirty_logging(struct kvm *kvm, bool enable)
11460{
11461 struct kvm_arch *ka = &kvm->arch;
11462
11463 if (!kvm_x86_ops.cpu_dirty_log_size)
11464 return;
11465
11466 if ((enable && ++ka->cpu_dirty_logging_count == 1) ||
11467 (!enable && --ka->cpu_dirty_logging_count == 0))
11468 kvm_make_all_cpus_request(kvm, KVM_REQ_UPDATE_CPU_DIRTY_LOGGING);
11469
11470 WARN_ON_ONCE(ka->cpu_dirty_logging_count < 0);
11471}
11472
Kai Huang88178fd2015-01-28 10:54:27 +080011473static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
Anthony Yznaga37416792020-06-02 13:07:30 -070011474 struct kvm_memory_slot *old,
11475 struct kvm_memory_slot *new,
11476 enum kvm_mr_change change)
Kai Huang88178fd2015-01-28 10:54:27 +080011477{
Makarand Sonarea85863c2021-02-12 16:50:12 -080011478 bool log_dirty_pages = new->flags & KVM_MEM_LOG_DIRTY_PAGES;
11479
Anthony Yznaga37416792020-06-02 13:07:30 -070011480 /*
Makarand Sonarea85863c2021-02-12 16:50:12 -080011481 * Update CPU dirty logging if dirty logging is being toggled. This
11482 * applies to all operations.
11483 */
11484 if ((old->flags ^ new->flags) & KVM_MEM_LOG_DIRTY_PAGES)
11485 kvm_mmu_update_cpu_dirty_logging(kvm, log_dirty_pages);
11486
11487 /*
11488 * Nothing more to do for RO slots (which can't be dirtied and can't be
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011489 * made writable) or CREATE/MOVE/DELETE of a slot.
11490 *
11491 * For a memslot with dirty logging disabled:
11492 * CREATE: No dirty mappings will already exist.
11493 * MOVE/DELETE: The old mappings will already have been cleaned up by
11494 * kvm_arch_flush_shadow_memslot()
11495 *
11496 * For a memslot with dirty logging enabled:
11497 * CREATE: No shadow pages exist, thus nothing to write-protect
11498 * and no dirty bits to clear.
11499 * MOVE/DELETE: The old mappings will already have been cleaned up by
11500 * kvm_arch_flush_shadow_memslot().
Anthony Yznaga37416792020-06-02 13:07:30 -070011501 */
11502 if ((change != KVM_MR_FLAGS_ONLY) || (new->flags & KVM_MEM_READONLY))
Kai Huang88178fd2015-01-28 10:54:27 +080011503 return;
Kai Huang88178fd2015-01-28 10:54:27 +080011504
11505 /*
Sean Christopherson52f460792021-02-12 16:50:11 -080011506 * READONLY and non-flags changes were filtered out above, and the only
11507 * other flag is LOG_DIRTY_PAGES, i.e. something is wrong if dirty
11508 * logging isn't being toggled on or off.
Anthony Yznaga37416792020-06-02 13:07:30 -070011509 */
Sean Christopherson52f460792021-02-12 16:50:11 -080011510 if (WARN_ON_ONCE(!((old->flags ^ new->flags) & KVM_MEM_LOG_DIRTY_PAGES)))
11511 return;
11512
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011513 if (!log_dirty_pages) {
11514 /*
11515 * Dirty logging tracks sptes in 4k granularity, meaning that
11516 * large sptes have to be split. If live migration succeeds,
11517 * the guest in the source machine will be destroyed and large
11518 * sptes will be created in the destination. However, if the
11519 * guest continues to run in the source machine (for example if
11520 * live migration fails), small sptes will remain around and
11521 * cause bad performance.
11522 *
11523 * Scan sptes if dirty logging has been stopped, dropping those
11524 * which can be collapsed into a single large-page spte. Later
11525 * page faults will create the large-page sptes.
11526 */
Anthony Yznaga37416792020-06-02 13:07:30 -070011527 kvm_mmu_zap_collapsible_sptes(kvm, new);
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011528 } else {
Keqian Zhu89212912021-04-29 11:41:15 +080011529 /*
11530 * Initially-all-set does not require write protecting any page,
11531 * because they're all assumed to be dirty.
11532 */
11533 if (kvm_dirty_log_manual_protect_and_init_set(kvm))
11534 return;
Anthony Yznaga37416792020-06-02 13:07:30 -070011535
Sean Christophersona018eba2021-02-12 16:50:10 -080011536 if (kvm_x86_ops.cpu_dirty_log_size) {
Keqian Zhu89212912021-04-29 11:41:15 +080011537 kvm_mmu_slot_leaf_clear_dirty(kvm, new);
11538 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_2M);
11539 } else {
11540 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_4K);
Jay Zhou3c9bd402020-02-27 09:32:27 +080011541 }
Kai Huang88178fd2015-01-28 10:54:27 +080011542 }
11543}
11544
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011545void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +020011546 const struct kvm_userspace_memory_region *mem,
Sean Christopherson9d4c1972020-02-18 13:07:24 -080011547 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020011548 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +090011549 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011550{
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +080011551 if (!kvm->arch.n_requested_mmu_pages)
Wei Yang4d666232018-09-27 08:31:26 +080011552 kvm_mmu_change_mmu_pages(kvm,
11553 kvm_mmu_calculate_default_mmu_pages(kvm));
Kai Huang1c91cad42015-01-28 10:54:26 +080011554
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +090011555 /*
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020011556 * FIXME: const-ify all uses of struct kvm_memory_slot.
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +090011557 */
Anthony Yznaga37416792020-06-02 13:07:30 -070011558 kvm_mmu_slot_apply_flags(kvm, old, (struct kvm_memory_slot *) new, change);
Sean Christopherson21198842020-02-18 13:07:25 -080011559
11560 /* Free the arrays associated with the old memslot. */
11561 if (change == KVM_MR_MOVE)
Sean Christophersone96c81e2020-02-18 13:07:27 -080011562 kvm_arch_free_memslot(kvm, old);
Zhang Xiantao0de10342007-11-20 16:25:04 +080011563}
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011564
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011565void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011566{
Sean Christopherson7390de12019-02-05 13:01:31 -080011567 kvm_mmu_zap_all(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011568}
11569
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011570void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
11571 struct kvm_memory_slot *slot)
11572{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +080011573 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011574}
11575
Liran Alone6c67d82018-09-04 10:56:52 +030011576static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
11577{
11578 return (is_guest_mode(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011579 kvm_x86_ops.guest_apic_has_interrupt &&
Jason Baronb36464772021-01-14 22:27:56 -050011580 static_call(kvm_x86_guest_apic_has_interrupt)(vcpu));
Liran Alone6c67d82018-09-04 10:56:52 +030011581}
11582
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011583static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
11584{
11585 if (!list_empty_careful(&vcpu->async_pf.done))
11586 return true;
11587
11588 if (kvm_apic_has_events(vcpu))
11589 return true;
11590
11591 if (vcpu->arch.pv.pv_unhalted)
11592 return true;
11593
Wanpeng Lia5f01f82017-09-13 04:04:01 -070011594 if (vcpu->arch.exception.pending)
11595 return true;
11596
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011597 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11598 (vcpu->arch.nmi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011599 static_call(kvm_x86_nmi_allowed)(vcpu, false)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011600 return true;
11601
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011602 if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -040011603 (vcpu->arch.smi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011604 static_call(kvm_x86_smi_allowed)(vcpu, false)))
Paolo Bonzini73917732015-10-13 10:19:35 +020011605 return true;
11606
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011607 if (kvm_arch_interrupt_allowed(vcpu) &&
Liran Alone6c67d82018-09-04 10:56:52 +030011608 (kvm_cpu_has_interrupt(vcpu) ||
11609 kvm_guest_apic_has_interrupt(vcpu)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011610 return true;
11611
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +030011612 if (kvm_hv_has_stimer_pending(vcpu))
11613 return true;
11614
Sean Christophersond2060bd2020-04-22 19:25:39 -070011615 if (is_guest_mode(vcpu) &&
11616 kvm_x86_ops.nested_ops->hv_timer_pending &&
11617 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
11618 return true;
11619
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011620 return false;
11621}
11622
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011623int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
11624{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011625 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011626}
Zhang Xiantao57361992007-12-17 14:21:40 +080011627
Haiwei Li10dbdf92021-04-21 11:25:13 +080011628bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu)
11629{
11630 if (vcpu->arch.apicv_active && static_call(kvm_x86_dy_apicv_has_pending_interrupt)(vcpu))
11631 return true;
11632
11633 return false;
11634}
11635
Wanpeng Li17e433b2019-08-05 10:03:19 +080011636bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
11637{
11638 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
11639 return true;
11640
11641 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11642 kvm_test_request(KVM_REQ_SMI, vcpu) ||
11643 kvm_test_request(KVM_REQ_EVENT, vcpu))
11644 return true;
11645
Haiwei Li10dbdf92021-04-21 11:25:13 +080011646 return kvm_arch_dy_has_pending_interrupt(vcpu);
Wanpeng Li17e433b2019-08-05 10:03:19 +080011647}
11648
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011649bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
11650{
Wanpeng Lib86bb112021-04-22 16:34:19 +080011651 if (vcpu->arch.guest_state_protected)
11652 return true;
11653
Longpeng(Mike)de63ad42017-08-08 12:05:33 +080011654 return vcpu->arch.preempted_in_kernel;
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011655}
11656
Christoffer Dallb6d33832012-03-08 16:44:24 -050011657int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +080011658{
Christoffer Dallb6d33832012-03-08 16:44:24 -050011659 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +080011660}
Gleb Natapov78646122009-03-23 12:12:11 +020011661
11662int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
11663{
Jason Baronb36464772021-01-14 22:27:56 -050011664 return static_call(kvm_x86_interrupt_allowed)(vcpu, false);
Gleb Natapov78646122009-03-23 12:12:11 +020011665}
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011666
Nadav Amit82b32772014-11-02 11:54:45 +020011667unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
11668{
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060011669 /* Can't read the RIP when guest state is protected, just return 0 */
11670 if (vcpu->arch.guest_state_protected)
11671 return 0;
11672
Nadav Amit82b32772014-11-02 11:54:45 +020011673 if (is_64_bit_mode(vcpu))
11674 return kvm_rip_read(vcpu);
11675 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
11676 kvm_rip_read(vcpu));
11677}
11678EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
11679
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011680bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
11681{
Nadav Amit82b32772014-11-02 11:54:45 +020011682 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011683}
11684EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
11685
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011686unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
11687{
11688 unsigned long rflags;
11689
Jason Baronb36464772021-01-14 22:27:56 -050011690 rflags = static_call(kvm_x86_get_rflags)(vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011691 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +010011692 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011693 return rflags;
11694}
11695EXPORT_SYMBOL_GPL(kvm_get_rflags);
11696
Paolo Bonzini6addfc42014-03-27 11:29:28 +010011697static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011698{
11699 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +010011700 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +010011701 rflags |= X86_EFLAGS_TF;
Jason Baronb36464772021-01-14 22:27:56 -050011702 static_call(kvm_x86_set_rflags)(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010011703}
11704
11705void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
11706{
11707 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +030011708 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020011709}
11710EXPORT_SYMBOL_GPL(kvm_set_rflags);
11711
Gleb Natapov56028d02010-10-17 18:13:42 +020011712void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
11713{
11714 int r;
11715
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020011716 if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +080011717 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +020011718 return;
11719
11720 r = kvm_mmu_reload(vcpu);
11721 if (unlikely(r))
11722 return;
11723
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020011724 if (!vcpu->arch.mmu->direct_map &&
Sean Christophersond8dd54e2020-03-02 18:02:39 -080011725 work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu))
Xiao Guangrongfb67e142010-12-07 10:35:25 +080011726 return;
11727
Sean Christopherson7a026742020-02-06 14:14:34 -080011728 kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true);
Gleb Natapov56028d02010-10-17 18:13:42 +020011729}
11730
Gleb Natapovaf585b92010-10-14 11:22:46 +020011731static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
11732{
Peter Xudd03bca2020-04-16 11:58:59 -040011733 BUILD_BUG_ON(!is_power_of_2(ASYNC_PF_PER_VCPU));
11734
Gleb Natapovaf585b92010-10-14 11:22:46 +020011735 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
11736}
11737
11738static inline u32 kvm_async_pf_next_probe(u32 key)
11739{
Peter Xudd03bca2020-04-16 11:58:59 -040011740 return (key + 1) & (ASYNC_PF_PER_VCPU - 1);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011741}
11742
11743static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11744{
11745 u32 key = kvm_async_pf_hash_fn(gfn);
11746
11747 while (vcpu->arch.apf.gfns[key] != ~0)
11748 key = kvm_async_pf_next_probe(key);
11749
11750 vcpu->arch.apf.gfns[key] = gfn;
11751}
11752
11753static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
11754{
11755 int i;
11756 u32 key = kvm_async_pf_hash_fn(gfn);
11757
Peter Xudd03bca2020-04-16 11:58:59 -040011758 for (i = 0; i < ASYNC_PF_PER_VCPU &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +080011759 (vcpu->arch.apf.gfns[key] != gfn &&
11760 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +020011761 key = kvm_async_pf_next_probe(key);
11762
11763 return key;
11764}
11765
11766bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11767{
11768 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
11769}
11770
11771static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11772{
11773 u32 i, j, k;
11774
11775 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
Peter Xu0fd46042020-04-16 11:59:10 -040011776
11777 if (WARN_ON_ONCE(vcpu->arch.apf.gfns[i] != gfn))
11778 return;
11779
Gleb Natapovaf585b92010-10-14 11:22:46 +020011780 while (true) {
11781 vcpu->arch.apf.gfns[i] = ~0;
11782 do {
11783 j = kvm_async_pf_next_probe(j);
11784 if (vcpu->arch.apf.gfns[j] == ~0)
11785 return;
11786 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
11787 /*
11788 * k lies cyclically in ]i,j]
11789 * | i.k.j |
11790 * |....j i.k.| or |.k..j i...|
11791 */
11792 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
11793 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
11794 i = j;
11795 }
11796}
11797
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020011798static inline int apf_put_user_notpresent(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020011799{
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020011800 u32 reason = KVM_PV_REASON_PAGE_NOT_PRESENT;
11801
11802 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &reason,
11803 sizeof(reason));
11804}
11805
11806static inline int apf_put_user_ready(struct kvm_vcpu *vcpu, u32 token)
11807{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011808 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
Paolo Bonzini4e335d92017-05-02 16:20:18 +020011809
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011810 return kvm_write_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
11811 &token, offset, sizeof(token));
11812}
11813
11814static inline bool apf_pageready_slot_free(struct kvm_vcpu *vcpu)
11815{
11816 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
11817 u32 val;
11818
11819 if (kvm_read_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
11820 &val, offset, sizeof(val)))
11821 return false;
11822
11823 return !val;
Gleb Natapov7c907052010-10-14 11:22:53 +020011824}
11825
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011826static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
11827{
11828 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
11829 return false;
11830
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011831 if (!kvm_pv_async_pf_enabled(vcpu) ||
Jason Baronb36464772021-01-14 22:27:56 -050011832 (vcpu->arch.apf.send_user_only && static_call(kvm_x86_get_cpl)(vcpu) == 0))
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011833 return false;
11834
11835 return true;
11836}
11837
11838bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
11839{
11840 if (unlikely(!lapic_in_kernel(vcpu) ||
11841 kvm_event_needs_reinjection(vcpu) ||
11842 vcpu->arch.exception.pending))
11843 return false;
11844
11845 if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu))
11846 return false;
11847
11848 /*
11849 * If interrupts are off we cannot even use an artificial
11850 * halt state.
11851 */
Paolo Bonzinic300ab92020-04-23 14:08:58 -040011852 return kvm_arch_interrupt_allowed(vcpu);
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011853}
11854
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011855bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
Gleb Natapovaf585b92010-10-14 11:22:46 +020011856 struct kvm_async_pf *work)
11857{
Avi Kivity6389ee92010-11-29 16:12:30 +020011858 struct x86_exception fault;
11859
Sean Christopherson736c2912019-12-06 15:57:14 -080011860 trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011861 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +020011862
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011863 if (kvm_can_deliver_async_pf(vcpu) &&
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020011864 !apf_put_user_notpresent(vcpu)) {
Avi Kivity6389ee92010-11-29 16:12:30 +020011865 fault.vector = PF_VECTOR;
11866 fault.error_code_valid = true;
11867 fault.error_code = 0;
11868 fault.nested_page_fault = false;
11869 fault.address = work->arch.token;
Wanpeng Liadfe20f2017-07-13 18:30:41 -070011870 fault.async_page_fault = true;
Avi Kivity6389ee92010-11-29 16:12:30 +020011871 kvm_inject_page_fault(vcpu, &fault);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011872 return true;
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020011873 } else {
11874 /*
11875 * It is not possible to deliver a paravirtualized asynchronous
11876 * page fault, but putting the guest in an artificial halt state
11877 * can be beneficial nevertheless: if an interrupt arrives, we
11878 * can deliver it timely and perhaps the guest will schedule
11879 * another process. When the instruction that triggered a page
11880 * fault is retried, hopefully the page will be ready in the host.
11881 */
11882 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011883 return false;
Gleb Natapov7c907052010-10-14 11:22:53 +020011884 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020011885}
11886
11887void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
11888 struct kvm_async_pf *work)
11889{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011890 struct kvm_lapic_irq irq = {
11891 .delivery_mode = APIC_DM_FIXED,
11892 .vector = vcpu->arch.apf.vec
11893 };
Avi Kivity6389ee92010-11-29 16:12:30 +020011894
chai wenf2e10662013-10-14 22:22:33 +080011895 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +020011896 work->arch.token = ~0; /* broadcast wakeup */
11897 else
11898 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Sean Christopherson736c2912019-12-06 15:57:14 -080011899 trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa);
Gleb Natapov7c907052010-10-14 11:22:53 +020011900
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020011901 if ((work->wakeup_all || work->notpresent_injected) &&
11902 kvm_pv_async_pf_enabled(vcpu) &&
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020011903 !apf_put_user_ready(vcpu, work->arch.token)) {
11904 vcpu->arch.apf.pageready_pending = true;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011905 kvm_apic_set_irq(vcpu, &irq, NULL);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020011906 }
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011907
Xiao Guangronge6d53e32010-11-01 17:01:28 +080011908 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +030011909 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +020011910}
11911
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020011912void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu)
11913{
11914 kvm_make_request(KVM_REQ_APF_READY, vcpu);
11915 if (!vcpu->arch.apf.pageready_pending)
11916 kvm_vcpu_kick(vcpu);
11917}
11918
Vitaly Kuznetsov7c0ade62020-05-25 16:41:18 +020011919bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020011920{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011921 if (!kvm_pv_async_pf_enabled(vcpu))
Gleb Natapov7c907052010-10-14 11:22:53 +020011922 return true;
11923 else
Vitaly Kuznetsov2f15d022021-04-22 11:29:48 +020011924 return kvm_lapic_enabled(vcpu) && apf_pageready_slot_free(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011925}
11926
Paolo Bonzini5544eb92015-07-07 15:41:58 +020011927void kvm_arch_start_assignment(struct kvm *kvm)
11928{
Marcelo Tosatti57ab8792021-05-25 10:41:16 -030011929 if (atomic_inc_return(&kvm->arch.assigned_device_count) == 1)
11930 static_call_cond(kvm_x86_start_assignment)(kvm);
Paolo Bonzini5544eb92015-07-07 15:41:58 +020011931}
11932EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
11933
11934void kvm_arch_end_assignment(struct kvm *kvm)
11935{
11936 atomic_dec(&kvm->arch.assigned_device_count);
11937}
11938EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
11939
11940bool kvm_arch_has_assigned_device(struct kvm *kvm)
11941{
11942 return atomic_read(&kvm->arch.assigned_device_count);
11943}
11944EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
11945
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060011946void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
11947{
11948 atomic_inc(&kvm->arch.noncoherent_dma_count);
11949}
11950EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
11951
11952void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
11953{
11954 atomic_dec(&kvm->arch.noncoherent_dma_count);
11955}
11956EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
11957
11958bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
11959{
11960 return atomic_read(&kvm->arch.noncoherent_dma_count);
11961}
11962EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
11963
Alex Williamson14717e22016-05-05 11:58:35 -060011964bool kvm_arch_has_irq_bypass(void)
11965{
Sean Christopherson92735b12019-08-02 15:06:17 -070011966 return true;
Alex Williamson14717e22016-05-05 11:58:35 -060011967}
11968
Feng Wu87276882015-09-18 22:29:40 +080011969int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
11970 struct irq_bypass_producer *prod)
11971{
11972 struct kvm_kernel_irqfd *irqfd =
11973 container_of(cons, struct kvm_kernel_irqfd, consumer);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080011974 int ret;
Feng Wu87276882015-09-18 22:29:40 +080011975
Alex Williamson14717e22016-05-05 11:58:35 -060011976 irqfd->producer = prod;
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080011977 kvm_arch_start_assignment(irqfd->kvm);
Jason Baronb36464772021-01-14 22:27:56 -050011978 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm,
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080011979 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +080011980
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080011981 if (ret)
11982 kvm_arch_end_assignment(irqfd->kvm);
11983
11984 return ret;
Feng Wu87276882015-09-18 22:29:40 +080011985}
11986
11987void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
11988 struct irq_bypass_producer *prod)
11989{
11990 int ret;
11991 struct kvm_kernel_irqfd *irqfd =
11992 container_of(cons, struct kvm_kernel_irqfd, consumer);
11993
Feng Wu87276882015-09-18 22:29:40 +080011994 WARN_ON(irqfd->producer != prod);
11995 irqfd->producer = NULL;
11996
11997 /*
11998 * When producer of consumer is unregistered, we change back to
11999 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +020012000 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +080012001 * int this case doesn't want to receive the interrupts.
12002 */
Jason Baronb36464772021-01-14 22:27:56 -050012003 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm, prod->irq, irqfd->gsi, 0);
Feng Wu87276882015-09-18 22:29:40 +080012004 if (ret)
12005 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
12006 " fails: %d\n", irqfd->consumer.token, ret);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012007
12008 kvm_arch_end_assignment(irqfd->kvm);
Feng Wu87276882015-09-18 22:29:40 +080012009}
12010
12011int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
12012 uint32_t guest_irq, bool set)
12013{
Jason Baronb36464772021-01-14 22:27:56 -050012014 return static_call(kvm_x86_update_pi_irte)(kvm, host_irq, guest_irq, set);
Feng Wu87276882015-09-18 22:29:40 +080012015}
12016
Feng Wu520040142016-01-25 16:53:33 +080012017bool kvm_vector_hashing_enabled(void)
12018{
12019 return vector_hashing;
12020}
Feng Wu520040142016-01-25 16:53:33 +080012021
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012022bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
12023{
12024 return (vcpu->arch.msr_kvm_poll_control & 1) == 0;
12025}
12026EXPORT_SYMBOL_GPL(kvm_arch_no_poll);
12027
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012028
12029int kvm_spec_ctrl_test_value(u64 value)
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012030{
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012031 /*
12032 * test that setting IA32_SPEC_CTRL to given value
12033 * is allowed by the host processor
12034 */
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012035
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012036 u64 saved_value;
12037 unsigned long flags;
12038 int ret = 0;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012039
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012040 local_irq_save(flags);
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012041
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012042 if (rdmsrl_safe(MSR_IA32_SPEC_CTRL, &saved_value))
12043 ret = 1;
12044 else if (wrmsrl_safe(MSR_IA32_SPEC_CTRL, value))
12045 ret = 1;
12046 else
12047 wrmsrl(MSR_IA32_SPEC_CTRL, saved_value);
12048
12049 local_irq_restore(flags);
12050
12051 return ret;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012052}
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012053EXPORT_SYMBOL_GPL(kvm_spec_ctrl_test_value);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012054
Mohammed Gamal89786142020-07-10 17:48:03 +020012055void kvm_fixup_and_inject_pf_error(struct kvm_vcpu *vcpu, gva_t gva, u16 error_code)
12056{
12057 struct x86_exception fault;
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012058 u32 access = error_code &
12059 (PFERR_WRITE_MASK | PFERR_FETCH_MASK | PFERR_USER_MASK);
Mohammed Gamal89786142020-07-10 17:48:03 +020012060
12061 if (!(error_code & PFERR_PRESENT_MASK) ||
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012062 vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, &fault) != UNMAPPED_GVA) {
Mohammed Gamal89786142020-07-10 17:48:03 +020012063 /*
12064 * If vcpu->arch.walk_mmu->gva_to_gpa succeeded, the page
12065 * tables probably do not match the TLB. Just proceed
12066 * with the error code that the processor gave.
12067 */
12068 fault.vector = PF_VECTOR;
12069 fault.error_code_valid = true;
12070 fault.error_code = error_code;
12071 fault.nested_page_fault = false;
12072 fault.address = gva;
12073 }
12074 vcpu->arch.walk_mmu->inject_page_fault(vcpu, &fault);
12075}
12076EXPORT_SYMBOL_GPL(kvm_fixup_and_inject_pf_error);
Carsten Otte043405e2007-10-10 17:16:19 +020012077
Babu Moger3f3393b2020-09-11 14:29:05 -050012078/*
12079 * Handles kvm_read/write_guest_virt*() result and either injects #PF or returns
12080 * KVM_EXIT_INTERNAL_ERROR for cases not currently handled by KVM. Return value
12081 * indicates whether exit to userspace is needed.
12082 */
12083int kvm_handle_memory_failure(struct kvm_vcpu *vcpu, int r,
12084 struct x86_exception *e)
12085{
12086 if (r == X86EMUL_PROPAGATE_FAULT) {
12087 kvm_inject_emulated_page_fault(vcpu, e);
12088 return 1;
12089 }
12090
12091 /*
12092 * In case kvm_read/write_guest_virt*() failed with X86EMUL_IO_NEEDED
12093 * while handling a VMX instruction KVM could've handled the request
12094 * correctly by exiting to userspace and performing I/O but there
12095 * doesn't seem to be a real use-case behind such requests, just return
12096 * KVM_EXIT_INTERNAL_ERROR for now.
12097 */
12098 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
12099 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
12100 vcpu->run->internal.ndata = 0;
12101
12102 return 0;
12103}
12104EXPORT_SYMBOL_GPL(kvm_handle_memory_failure);
12105
Babu Moger97150922020-09-11 14:29:12 -050012106int kvm_handle_invpcid(struct kvm_vcpu *vcpu, unsigned long type, gva_t gva)
12107{
12108 bool pcid_enabled;
12109 struct x86_exception e;
Babu Moger97150922020-09-11 14:29:12 -050012110 struct {
12111 u64 pcid;
12112 u64 gla;
12113 } operand;
12114 int r;
12115
12116 r = kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e);
12117 if (r != X86EMUL_CONTINUE)
12118 return kvm_handle_memory_failure(vcpu, r, &e);
12119
12120 if (operand.pcid >> 12 != 0) {
12121 kvm_inject_gp(vcpu, 0);
12122 return 1;
12123 }
12124
12125 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
12126
12127 switch (type) {
12128 case INVPCID_TYPE_INDIV_ADDR:
12129 if ((!pcid_enabled && (operand.pcid != 0)) ||
12130 is_noncanonical_address(operand.gla, vcpu)) {
12131 kvm_inject_gp(vcpu, 0);
12132 return 1;
12133 }
12134 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
12135 return kvm_skip_emulated_instruction(vcpu);
12136
12137 case INVPCID_TYPE_SINGLE_CTXT:
12138 if (!pcid_enabled && (operand.pcid != 0)) {
12139 kvm_inject_gp(vcpu, 0);
12140 return 1;
12141 }
12142
Sean Christopherson21823fb2021-06-09 16:42:24 -070012143 kvm_invalidate_pcid(vcpu, operand.pcid);
Babu Moger97150922020-09-11 14:29:12 -050012144 return kvm_skip_emulated_instruction(vcpu);
12145
12146 case INVPCID_TYPE_ALL_NON_GLOBAL:
12147 /*
12148 * Currently, KVM doesn't mark global entries in the shadow
12149 * page tables, so a non-global flush just degenerates to a
12150 * global flush. If needed, we could optimize this later by
12151 * keeping track of global entries in shadow page tables.
12152 */
12153
12154 fallthrough;
12155 case INVPCID_TYPE_ALL_INCL_GLOBAL:
Sean Christopherson28f28d42021-06-09 16:42:30 -070012156 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Babu Moger97150922020-09-11 14:29:12 -050012157 return kvm_skip_emulated_instruction(vcpu);
12158
12159 default:
12160 BUG(); /* We have already checked above that type <= 3 */
12161 }
12162}
12163EXPORT_SYMBOL_GPL(kvm_handle_invpcid);
12164
Tom Lendacky8f423a82020-12-10 11:09:53 -060012165static int complete_sev_es_emulated_mmio(struct kvm_vcpu *vcpu)
12166{
12167 struct kvm_run *run = vcpu->run;
12168 struct kvm_mmio_fragment *frag;
12169 unsigned int len;
12170
12171 BUG_ON(!vcpu->mmio_needed);
12172
12173 /* Complete previous fragment */
12174 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
12175 len = min(8u, frag->len);
12176 if (!vcpu->mmio_is_write)
12177 memcpy(frag->data, run->mmio.data, len);
12178
12179 if (frag->len <= 8) {
12180 /* Switch to the next fragment. */
12181 frag++;
12182 vcpu->mmio_cur_fragment++;
12183 } else {
12184 /* Go forward to the next mmio piece. */
12185 frag->data += len;
12186 frag->gpa += len;
12187 frag->len -= len;
12188 }
12189
12190 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
12191 vcpu->mmio_needed = 0;
12192
12193 // VMG change, at this point, we're always done
12194 // RIP has already been advanced
12195 return 1;
12196 }
12197
12198 // More MMIO is needed
12199 run->mmio.phys_addr = frag->gpa;
12200 run->mmio.len = min(8u, frag->len);
12201 run->mmio.is_write = vcpu->mmio_is_write;
12202 if (run->mmio.is_write)
12203 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
12204 run->exit_reason = KVM_EXIT_MMIO;
12205
12206 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12207
12208 return 0;
12209}
12210
12211int kvm_sev_es_mmio_write(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12212 void *data)
12213{
12214 int handled;
12215 struct kvm_mmio_fragment *frag;
12216
12217 if (!data)
12218 return -EINVAL;
12219
12220 handled = write_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12221 if (handled == bytes)
12222 return 1;
12223
12224 bytes -= handled;
12225 gpa += handled;
12226 data += handled;
12227
12228 /*TODO: Check if need to increment number of frags */
12229 frag = vcpu->mmio_fragments;
12230 vcpu->mmio_nr_fragments = 1;
12231 frag->len = bytes;
12232 frag->gpa = gpa;
12233 frag->data = data;
12234
12235 vcpu->mmio_needed = 1;
12236 vcpu->mmio_cur_fragment = 0;
12237
12238 vcpu->run->mmio.phys_addr = gpa;
12239 vcpu->run->mmio.len = min(8u, frag->len);
12240 vcpu->run->mmio.is_write = 1;
12241 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
12242 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12243
12244 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12245
12246 return 0;
12247}
12248EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_write);
12249
12250int kvm_sev_es_mmio_read(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12251 void *data)
12252{
12253 int handled;
12254 struct kvm_mmio_fragment *frag;
12255
12256 if (!data)
12257 return -EINVAL;
12258
12259 handled = read_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12260 if (handled == bytes)
12261 return 1;
12262
12263 bytes -= handled;
12264 gpa += handled;
12265 data += handled;
12266
12267 /*TODO: Check if need to increment number of frags */
12268 frag = vcpu->mmio_fragments;
12269 vcpu->mmio_nr_fragments = 1;
12270 frag->len = bytes;
12271 frag->gpa = gpa;
12272 frag->data = data;
12273
12274 vcpu->mmio_needed = 1;
12275 vcpu->mmio_cur_fragment = 0;
12276
12277 vcpu->run->mmio.phys_addr = gpa;
12278 vcpu->run->mmio.len = min(8u, frag->len);
12279 vcpu->run->mmio.is_write = 0;
12280 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12281
12282 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12283
12284 return 0;
12285}
12286EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_read);
12287
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012288static int complete_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12289{
12290 memcpy(vcpu->arch.guest_ins_data, vcpu->arch.pio_data,
12291 vcpu->arch.pio.count * vcpu->arch.pio.size);
12292 vcpu->arch.pio.count = 0;
12293
12294 return 1;
12295}
12296
12297static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
12298 unsigned int port, void *data, unsigned int count)
12299{
12300 int ret;
12301
12302 ret = emulator_pio_out_emulated(vcpu->arch.emulate_ctxt, size, port,
12303 data, count);
12304 if (ret)
12305 return ret;
12306
12307 vcpu->arch.pio.count = 0;
12308
12309 return 0;
12310}
12311
12312static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
12313 unsigned int port, void *data, unsigned int count)
12314{
12315 int ret;
12316
12317 ret = emulator_pio_in_emulated(vcpu->arch.emulate_ctxt, size, port,
12318 data, count);
12319 if (ret) {
12320 vcpu->arch.pio.count = 0;
12321 } else {
12322 vcpu->arch.guest_ins_data = data;
12323 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_ins;
12324 }
12325
12326 return 0;
12327}
12328
12329int kvm_sev_es_string_io(struct kvm_vcpu *vcpu, unsigned int size,
12330 unsigned int port, void *data, unsigned int count,
12331 int in)
12332{
12333 return in ? kvm_sev_es_ins(vcpu, size, port, data, count)
12334 : kvm_sev_es_outs(vcpu, size, port, data, count);
12335}
12336EXPORT_SYMBOL_GPL(kvm_sev_es_string_io);
12337
Lorenzo Bresciad95df952020-12-23 14:45:07 +000012338EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_entry);
Carsten Otte043405e2007-10-10 17:16:19 +020012339EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
12340EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
12341EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
12342EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
12343EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
12344EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
12345EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
12346EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
12347EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
12348EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Sean Christopherson5497b952019-07-11 08:58:29 -070012349EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed);
Carsten Otte043405e2007-10-10 17:16:19 +020012350EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
12351EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
12352EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
12353EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Peter Xu4f75bcc2019-09-06 10:17:22 +080012354EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update);
Carsten Otte043405e2007-10-10 17:16:19 +020012355EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
12356EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
12357EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
12358EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);
Suravee Suthikulpanitab56f8e2020-03-12 05:39:28 -050012359EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log);
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -060012360EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request);
Tom Lendackyd523ab6b2020-12-10 11:09:48 -060012361EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_enter);
12362EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_exit);
Tom Lendacky59e38b52020-12-10 11:09:52 -060012363EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_enter);
12364EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_exit);