blob: d7d2f1bbd83fc08022b8e9429971322d4c079877 [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Carsten Otte043405e2007-10-10 17:16:19 +02002/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * derived from drivers/kvm/kvm_main.c
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03008 * Copyright (C) 2008 Qumranet, Inc.
9 * Copyright IBM Corporation, 2008
Nicolas Kaiser9611c182010-10-06 14:23:22 +020010 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Carsten Otte043405e2007-10-10 17:16:19 +020011 *
12 * Authors:
13 * Avi Kivity <avi@qumranet.com>
14 * Yaniv Kamay <yaniv@qumranet.com>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030015 * Amit Shah <amit.shah@qumranet.com>
16 * Ben-Ami Yassour <benami@il.ibm.com>
Carsten Otte043405e2007-10-10 17:16:19 +020017 */
18
Avi Kivityedf88412007-12-16 11:02:48 +020019#include <linux/kvm_host.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020020#include "irq.h"
彭浩(Richard)88197e62020-05-21 05:57:49 +000021#include "ioapic.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080022#include "mmu.h"
Sheng Yang78376992008-01-28 05:10:22 +080023#include "i8254.h"
Izik Eidus37817f22008-03-24 23:14:53 +020024#include "tss.h"
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030025#include "kvm_cache_regs.h"
Sean Christopherson2f728d62020-02-18 15:29:49 -080026#include "kvm_emulate.h"
Avi Kivity26eef702008-07-03 14:59:22 +030027#include "x86.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020028#include "cpuid.h"
Wei Huang474a5bb2015-06-19 13:54:23 +020029#include "pmu.h"
Andrey Smetanine83d5882015-07-03 15:01:34 +030030#include "hyperv.h"
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -060031#include "lapic.h"
Joao Martins23200b72018-06-13 09:55:44 -040032#include "xen.h"
Carsten Otte313a3dc2007-10-11 19:16:52 +020033
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020034#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030035#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020036#include <linux/kvm.h>
37#include <linux/fs.h>
38#include <linux/vmalloc.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040039#include <linux/export.h>
40#include <linux/moduleparam.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080041#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050042#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010043#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030044#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010045#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030046#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020047#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080049#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080050#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020051#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020052#include <linux/pci.h>
Marcelo Tosatti16e8d742012-11-27 23:29:00 -020053#include <linux/timekeeper_internal.h>
54#include <linux/pvclock_gtod.h>
Feng Wu87276882015-09-18 22:29:40 +080055#include <linux/kvm_irqfd.h>
56#include <linux/irqbypass.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010057#include <linux/sched/stat.h>
Wanpeng Li0c5f81d2019-07-06 09:26:51 +080058#include <linux/sched/isolation.h>
Tom Lendackyd0ec49d2017-07-17 16:10:27 -050059#include <linux/mem_encrypt.h>
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020060#include <linux/entry-kvm.h>
Sergey Senozhatsky7d628742021-06-06 11:10:45 +090061#include <linux/suspend.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010062
Avi Kivityaec51dc2009-07-01 16:01:02 +030063#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080064
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020065#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080066#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020067#include <asm/desc.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080068#include <asm/mce.h>
Dave Hansen784a46612021-06-23 14:02:05 +020069#include <asm/pkru.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020070#include <linux/kernel_stat.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020071#include <asm/fpu/internal.h> /* Ugh! */
Zachary Amsden1d5f0662010-08-19 22:07:30 -100072#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030073#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080074#include <asm/irq_remapping.h>
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010075#include <asm/mshyperv.h>
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +010076#include <asm/hypervisor.h>
Babu Moger97150922020-09-11 14:29:12 -050077#include <asm/tlbflush.h>
Chao Pengbf8c55d2018-10-24 16:05:14 +080078#include <asm/intel_pt.h>
Masami Hiramatsub3dc0692019-09-06 22:13:59 +090079#include <asm/emulate_prefix.h>
Sean Christophersonfe7e9482021-04-12 16:21:43 +120080#include <asm/sgx.h>
Michael Kelleydd2cb342019-07-01 04:26:06 +000081#include <clocksource/hyperv_timer.h>
Carsten Otte043405e2007-10-10 17:16:19 +020082
Dave Hansend1898b72016-06-01 10:42:20 -070083#define CREATE_TRACE_POINTS
84#include "trace.h"
85
Carsten Otte313a3dc2007-10-11 19:16:52 +020086#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080087#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080088u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
89EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080090
Avi Kivity0f65dd72011-04-20 13:37:53 +030091#define emul_to_vcpu(ctxt) \
Sean Christophersonc9b8b072020-02-18 15:29:48 -080092 ((struct kvm_vcpu *)(ctxt)->vcpu)
Avi Kivity0f65dd72011-04-20 13:37:53 +030093
Joerg Roedel50a37eb2008-01-31 14:57:38 +010094/* EFER defaults:
95 * - enable syscall per default because its emulated by KVM
96 * - enable LME and LMA per default on 64 bit KVM
97 */
98#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080099static
100u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100101#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +0800102static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +0100103#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +0200104
Sean Christophersonb11306b2019-12-10 14:44:13 -0800105static u64 __read_mostly cr4_reserved_bits = CR4_RESERVED_BITS;
106
Ashish Kalra0dbb1122021-06-08 18:05:43 +0000107#define KVM_EXIT_HYPERCALL_VALID_MASK (1 << KVM_HC_MAP_GPA_RANGE)
108
Radim Krčmářc5192652016-07-12 22:09:28 +0200109#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
110 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +0200111
Gleb Natapovcb142eb2009-08-09 15:17:40 +0300112static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300113static void process_nmi(struct kvm_vcpu *vcpu);
Jay Zhou1f7becf2021-01-18 16:47:20 +0800114static void process_smi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +0200115static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +0100116static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Ken Hofsass01643c52018-01-31 16:03:36 -0800117static void store_regs(struct kvm_vcpu *vcpu);
118static int sync_regs(struct kvm_vcpu *vcpu);
Avi Kivity674eea02008-02-11 18:37:23 +0200119
Maxim Levitsky6dba9402021-06-07 12:02:02 +0300120static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
121static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2);
122
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700123struct kvm_x86_ops kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300124EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800125
Jason Baron9af54712021-01-14 22:27:55 -0500126#define KVM_X86_OP(func) \
127 DEFINE_STATIC_CALL_NULL(kvm_x86_##func, \
128 *(((struct kvm_x86_ops *)0)->func));
129#define KVM_X86_OP_NULL KVM_X86_OP
130#include <asm/kvm-x86-ops.h>
131EXPORT_STATIC_CALL_GPL(kvm_x86_get_cs_db_l_bits);
132EXPORT_STATIC_CALL_GPL(kvm_x86_cache_reg);
133EXPORT_STATIC_CALL_GPL(kvm_x86_tlb_flush_current);
134
Paolo Bonzini893590c2015-11-06 11:46:24 +0100135static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030136module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200137
Like Xud8550662021-01-08 09:36:55 +0800138bool __read_mostly report_ignored_msrs = true;
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200139module_param(report_ignored_msrs, bool, S_IRUGO | S_IWUSR);
Like Xud8550662021-01-08 09:36:55 +0800140EXPORT_SYMBOL_GPL(report_ignored_msrs);
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200141
Wanpeng Li4c276252018-05-05 04:02:32 -0700142unsigned int min_timer_period_us = 200;
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200143module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
144
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300145static bool __read_mostly kvmclock_periodic_sync = true;
146module_param(kvmclock_periodic_sync, bool, S_IRUGO);
147
Paolo Bonzini893590c2015-11-06 11:46:24 +0100148bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100149EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100150u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100151EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800152u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
153EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
154u64 __read_mostly kvm_max_tsc_scaling_ratio;
155EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700156u64 __read_mostly kvm_default_tsc_scaling_ratio;
157EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +0800158bool __read_mostly kvm_has_bus_lock_exit;
159EXPORT_SYMBOL_GPL(kvm_has_bus_lock_exit);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100160
Zachary Amsdencc578282012-02-03 15:43:50 -0200161/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100162static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200163module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
164
Sean Christophersonc3941d92019-04-17 10:15:33 -0700165/*
166 * lapic timer advance (tscdeadline mode only) in nanoseconds. '-1' enables
Ingo Molnard9f6e122021-03-18 15:28:01 +0100167 * adaptive tuning starting from default advancement of 1000ns. '0' disables
Sean Christophersonc3941d92019-04-17 10:15:33 -0700168 * advancement entirely. Any other value is used as-is and disables adaptive
Ingo Molnard9f6e122021-03-18 15:28:01 +0100169 * tuning, i.e. allows privileged userspace to set an exact advancement time.
Sean Christophersonc3941d92019-04-17 10:15:33 -0700170 */
171static int __read_mostly lapic_timer_advance_ns = -1;
Wanpeng Li0e6edce2019-05-20 16:18:06 +0800172module_param(lapic_timer_advance_ns, int, S_IRUGO | S_IWUSR);
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500173
Feng Wu520040142016-01-25 16:53:33 +0800174static bool __read_mostly vector_hashing = true;
175module_param(vector_hashing, bool, S_IRUGO);
176
Liran Alonc4ae60e2018-03-12 13:12:47 +0200177bool __read_mostly enable_vmware_backdoor = false;
178module_param(enable_vmware_backdoor, bool, S_IRUGO);
179EXPORT_SYMBOL_GPL(enable_vmware_backdoor);
180
Wanpeng Li6c86eed2018-04-03 16:28:49 -0700181static bool __read_mostly force_emulation_prefix = false;
182module_param(force_emulation_prefix, bool, S_IRUGO);
183
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800184int __read_mostly pi_inject_timer = -1;
185module_param(pi_inject_timer, bint, S_IRUGO | S_IWUSR);
186
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700187/*
188 * Restoring the host value for MSRs that are only consumed when running in
189 * usermode, e.g. SYSCALL MSRs and TSC_AUX, can be deferred until the CPU
190 * returns to userspace, i.e. the kernel can run with the guest's value.
191 */
192#define KVM_MAX_NR_USER_RETURN_MSRS 16
Avi Kivity18863bd2009-09-07 11:12:18 +0300193
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700194struct kvm_user_return_msrs {
Avi Kivity18863bd2009-09-07 11:12:18 +0300195 struct user_return_notifier urn;
196 bool registered;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700197 struct kvm_user_return_msr_values {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800198 u64 host;
199 u64 curr;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700200 } values[KVM_MAX_NR_USER_RETURN_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300201};
202
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700203u32 __read_mostly kvm_nr_uret_msrs;
204EXPORT_SYMBOL_GPL(kvm_nr_uret_msrs);
205static u32 __read_mostly kvm_uret_msrs_list[KVM_MAX_NR_USER_RETURN_MSRS];
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700206static struct kvm_user_return_msrs __percpu *user_return_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300207
Sean Christophersoncfc48182020-03-02 15:56:23 -0800208#define KVM_SUPPORTED_XCR0 (XFEATURE_MASK_FP | XFEATURE_MASK_SSE \
209 | XFEATURE_MASK_YMM | XFEATURE_MASK_BNDREGS \
210 | XFEATURE_MASK_BNDCSR | XFEATURE_MASK_AVX512 \
211 | XFEATURE_MASK_PKRU)
212
Sean Christopherson91661982020-03-02 15:57:06 -0800213u64 __read_mostly host_efer;
214EXPORT_SYMBOL_GPL(host_efer);
215
Mohammed Gamalb96e6502020-09-03 16:11:22 +0200216bool __read_mostly allow_smaller_maxphyaddr = 0;
Mohammed Gamal3edd6832020-07-10 17:48:11 +0200217EXPORT_SYMBOL_GPL(allow_smaller_maxphyaddr);
218
Vitaly Kuznetsovfdf513e2021-06-09 17:09:08 +0200219bool __read_mostly enable_apicv = true;
220EXPORT_SYMBOL_GPL(enable_apicv);
221
Tom Lendacky86137772020-12-10 11:10:07 -0600222u64 __read_mostly host_xss;
223EXPORT_SYMBOL_GPL(host_xss);
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100224u64 __read_mostly supported_xss;
225EXPORT_SYMBOL_GPL(supported_xss);
Aaron Lewis139a12c2019-10-21 16:30:25 -0700226
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000227const struct _kvm_stats_desc kvm_vm_stats_desc[] = {
228 KVM_GENERIC_VM_STATS(),
229 STATS_DESC_COUNTER(VM, mmu_shadow_zapped),
230 STATS_DESC_COUNTER(VM, mmu_pte_write),
231 STATS_DESC_COUNTER(VM, mmu_pde_zapped),
232 STATS_DESC_COUNTER(VM, mmu_flooded),
233 STATS_DESC_COUNTER(VM, mmu_recycled),
234 STATS_DESC_COUNTER(VM, mmu_cache_miss),
235 STATS_DESC_ICOUNTER(VM, mmu_unsync),
Mingwei Zhang71f51d22021-08-02 21:46:07 -0700236 STATS_DESC_ICOUNTER(VM, pages_4k),
237 STATS_DESC_ICOUNTER(VM, pages_2m),
238 STATS_DESC_ICOUNTER(VM, pages_1g),
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000239 STATS_DESC_ICOUNTER(VM, nx_lpage_splits),
Peter Xuec1cf692021-06-25 11:32:06 -0400240 STATS_DESC_PCOUNTER(VM, max_mmu_rmap_size),
Jing Zhangbc9e9e62021-06-23 17:28:46 -0400241 STATS_DESC_PCOUNTER(VM, max_mmu_page_hash_collisions)
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000242};
Jing Zhangfcfe1ba2021-06-18 22:27:05 +0000243
244const struct kvm_stats_header kvm_vm_stats_header = {
245 .name_size = KVM_STATS_NAME_SIZE,
246 .num_desc = ARRAY_SIZE(kvm_vm_stats_desc),
247 .id_offset = sizeof(struct kvm_stats_header),
248 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
249 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
250 sizeof(kvm_vm_stats_desc),
251};
252
Jing Zhangce55c042021-06-18 22:27:06 +0000253const struct _kvm_stats_desc kvm_vcpu_stats_desc[] = {
254 KVM_GENERIC_VCPU_STATS(),
255 STATS_DESC_COUNTER(VCPU, pf_fixed),
256 STATS_DESC_COUNTER(VCPU, pf_guest),
257 STATS_DESC_COUNTER(VCPU, tlb_flush),
258 STATS_DESC_COUNTER(VCPU, invlpg),
259 STATS_DESC_COUNTER(VCPU, exits),
260 STATS_DESC_COUNTER(VCPU, io_exits),
261 STATS_DESC_COUNTER(VCPU, mmio_exits),
262 STATS_DESC_COUNTER(VCPU, signal_exits),
263 STATS_DESC_COUNTER(VCPU, irq_window_exits),
264 STATS_DESC_COUNTER(VCPU, nmi_window_exits),
265 STATS_DESC_COUNTER(VCPU, l1d_flush),
266 STATS_DESC_COUNTER(VCPU, halt_exits),
267 STATS_DESC_COUNTER(VCPU, request_irq_exits),
268 STATS_DESC_COUNTER(VCPU, irq_exits),
269 STATS_DESC_COUNTER(VCPU, host_state_reload),
270 STATS_DESC_COUNTER(VCPU, fpu_reload),
271 STATS_DESC_COUNTER(VCPU, insn_emulation),
272 STATS_DESC_COUNTER(VCPU, insn_emulation_fail),
273 STATS_DESC_COUNTER(VCPU, hypercalls),
274 STATS_DESC_COUNTER(VCPU, irq_injections),
275 STATS_DESC_COUNTER(VCPU, nmi_injections),
276 STATS_DESC_COUNTER(VCPU, req_event),
277 STATS_DESC_COUNTER(VCPU, nested_run),
278 STATS_DESC_COUNTER(VCPU, directed_yield_attempted),
279 STATS_DESC_COUNTER(VCPU, directed_yield_successful),
280 STATS_DESC_ICOUNTER(VCPU, guest_mode)
281};
Jing Zhangce55c042021-06-18 22:27:06 +0000282
283const struct kvm_stats_header kvm_vcpu_stats_header = {
284 .name_size = KVM_STATS_NAME_SIZE,
285 .num_desc = ARRAY_SIZE(kvm_vcpu_stats_desc),
286 .id_offset = sizeof(struct kvm_stats_header),
287 .desc_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE,
288 .data_offset = sizeof(struct kvm_stats_header) + KVM_STATS_NAME_SIZE +
289 sizeof(kvm_vcpu_stats_desc),
290};
291
Dexuan Cui2acf9232010-06-10 11:27:12 +0800292u64 __read_mostly host_xcr0;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800293u64 __read_mostly supported_xcr0;
294EXPORT_SYMBOL_GPL(supported_xcr0);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800295
Sean Christopherson80fbd282020-06-08 11:02:18 -0700296static struct kmem_cache *x86_fpu_cache;
Marc Orrb666a4b2018-11-06 14:53:56 -0800297
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800298static struct kmem_cache *x86_emulator_cache;
299
Peter Xu6abe9c12020-06-22 18:04:41 -0400300/*
301 * When called, it means the previous get/set msr reached an invalid msr.
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200302 * Return true if we want to ignore/silent this failed msr access.
Peter Xu6abe9c12020-06-22 18:04:41 -0400303 */
Haiwei Lid6328262021-03-13 13:10:32 +0800304static bool kvm_msr_ignored_check(u32 msr, u64 data, bool write)
Peter Xu6abe9c12020-06-22 18:04:41 -0400305{
306 const char *op = write ? "wrmsr" : "rdmsr";
307
308 if (ignore_msrs) {
309 if (report_ignored_msrs)
Takashi Iwaid383b312020-10-30 16:14:14 +0100310 kvm_pr_unimpl("ignored %s: 0x%x data 0x%llx\n",
311 op, msr, data);
Peter Xu6abe9c12020-06-22 18:04:41 -0400312 /* Mask the error */
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200313 return true;
Peter Xu6abe9c12020-06-22 18:04:41 -0400314 } else {
Takashi Iwaid383b312020-10-30 16:14:14 +0100315 kvm_debug_ratelimited("unhandled %s: 0x%x data 0x%llx\n",
316 op, msr, data);
Maxim Levitskycc4cb012020-11-01 13:55:23 +0200317 return false;
Peter Xu6abe9c12020-06-22 18:04:41 -0400318 }
319}
320
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800321static struct kmem_cache *kvm_alloc_emulator_cache(void)
322{
Sean Christopherson06add252020-02-18 15:29:50 -0800323 unsigned int useroffset = offsetof(struct x86_emulate_ctxt, src);
324 unsigned int size = sizeof(struct x86_emulate_ctxt);
325
326 return kmem_cache_create_usercopy("x86_emulator", size,
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800327 __alignof__(struct x86_emulate_ctxt),
Sean Christopherson06add252020-02-18 15:29:50 -0800328 SLAB_ACCOUNT, useroffset,
329 size - useroffset, NULL);
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800330}
331
Jan Kiszkab6785de2012-09-20 07:43:17 +0200332static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300333
Gleb Natapovaf585b92010-10-14 11:22:46 +0200334static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
335{
336 int i;
Peter Xudd03bca2020-04-16 11:58:59 -0400337 for (i = 0; i < ASYNC_PF_PER_VCPU; i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +0200338 vcpu->arch.apf.gfns[i] = ~0;
339}
340
Avi Kivity18863bd2009-09-07 11:12:18 +0300341static void kvm_on_user_return(struct user_return_notifier *urn)
342{
343 unsigned slot;
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700344 struct kvm_user_return_msrs *msrs
345 = container_of(urn, struct kvm_user_return_msrs, urn);
346 struct kvm_user_return_msr_values *values;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700347 unsigned long flags;
Avi Kivity18863bd2009-09-07 11:12:18 +0300348
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700349 /*
350 * Disabling irqs at this point since the following code could be
351 * interrupted and executed through kvm_arch_hardware_disable()
352 */
353 local_irq_save(flags);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700354 if (msrs->registered) {
355 msrs->registered = false;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700356 user_return_notifier_unregister(urn);
357 }
358 local_irq_restore(flags);
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700359 for (slot = 0; slot < kvm_nr_uret_msrs; ++slot) {
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700360 values = &msrs->values[slot];
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800361 if (values->host != values->curr) {
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700362 wrmsrl(kvm_uret_msrs_list[slot], values->host);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800363 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300364 }
365 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300366}
367
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700368static int kvm_probe_user_return_msr(u32 msr)
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700369{
370 u64 val;
371 int ret;
372
373 preempt_disable();
374 ret = rdmsrl_safe(msr, &val);
375 if (ret)
376 goto out;
377 ret = wrmsrl_safe(msr, val);
378out:
379 preempt_enable();
380 return ret;
381}
Sean Christopherson5104d7f2021-05-04 10:17:24 -0700382
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700383int kvm_add_user_return_msr(u32 msr)
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800384{
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700385 BUG_ON(kvm_nr_uret_msrs >= KVM_MAX_NR_USER_RETURN_MSRS);
386
387 if (kvm_probe_user_return_msr(msr))
388 return -1;
389
390 kvm_uret_msrs_list[kvm_nr_uret_msrs] = msr;
391 return kvm_nr_uret_msrs++;
Avi Kivity18863bd2009-09-07 11:12:18 +0300392}
Sean Christophersone5fda4b2021-05-04 10:17:32 -0700393EXPORT_SYMBOL_GPL(kvm_add_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300394
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700395int kvm_find_user_return_msr(u32 msr)
396{
397 int i;
398
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700399 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
400 if (kvm_uret_msrs_list[i] == msr)
Sean Christopherson8ea8b8d2021-05-04 10:17:29 -0700401 return i;
402 }
403 return -1;
404}
405EXPORT_SYMBOL_GPL(kvm_find_user_return_msr);
406
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700407static void kvm_user_return_msr_cpu_online(void)
Avi Kivity18863bd2009-09-07 11:12:18 +0300408{
Sean Christopherson05c19c22019-11-22 12:04:50 -0800409 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700410 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Sean Christopherson05c19c22019-11-22 12:04:50 -0800411 u64 value;
412 int i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300413
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700414 for (i = 0; i < kvm_nr_uret_msrs; ++i) {
415 rdmsrl_safe(kvm_uret_msrs_list[i], &value);
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700416 msrs->values[i].host = value;
417 msrs->values[i].curr = value;
Sean Christopherson05c19c22019-11-22 12:04:50 -0800418 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300419}
420
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700421int kvm_set_user_return_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300422{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200423 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700424 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700425 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300426
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700427 value = (value & mask) | (msrs->values[slot].host & ~mask);
428 if (value == msrs->values[slot].curr)
Andy Honig8b3c3102014-08-27 11:16:44 -0700429 return 0;
Sean Christopherson9cc39a52021-05-04 10:17:31 -0700430 err = wrmsrl_safe(kvm_uret_msrs_list[slot], value);
Andy Honig8b3c3102014-08-27 11:16:44 -0700431 if (err)
432 return 1;
433
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700434 msrs->values[slot].curr = value;
435 if (!msrs->registered) {
436 msrs->urn.on_user_return = kvm_on_user_return;
437 user_return_notifier_register(&msrs->urn);
438 msrs->registered = true;
Avi Kivity18863bd2009-09-07 11:12:18 +0300439 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700440 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300441}
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700442EXPORT_SYMBOL_GPL(kvm_set_user_return_msr);
Avi Kivity18863bd2009-09-07 11:12:18 +0300443
Radim Krčmář13a34e02014-08-28 15:13:03 +0200444static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200445{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200446 unsigned int cpu = smp_processor_id();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700447 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200448
Sean Christopherson7e34fbd2020-09-23 11:03:55 -0700449 if (msrs->registered)
450 kvm_on_user_return(&msrs->urn);
Avi Kivity3548bab2009-11-28 14:18:47 +0200451}
452
Carsten Otte6866b832007-10-29 16:09:10 +0100453u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
454{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300455 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100456}
457EXPORT_SYMBOL_GPL(kvm_get_apic_base);
458
Jim Mattson58871642018-05-09 16:56:04 -0400459enum lapic_mode kvm_get_apic_mode(struct kvm_vcpu *vcpu)
460{
461 return kvm_apic_mode(kvm_get_apic_base(vcpu));
462}
463EXPORT_SYMBOL_GPL(kvm_get_apic_mode);
464
Jan Kiszka58cb6282014-01-24 16:48:44 +0100465int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100466{
Jim Mattson58871642018-05-09 16:56:04 -0400467 enum lapic_mode old_mode = kvm_get_apic_mode(vcpu);
468 enum lapic_mode new_mode = kvm_apic_mode(msr_info->data);
Sean Christophersona8ac8642021-02-03 16:01:15 -0800469 u64 reserved_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu) | 0x2ff |
Radim Krčmářd6321d42017-08-05 00:12:49 +0200470 (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) ? 0 : X2APIC_ENABLE);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100471
Jim Mattson58871642018-05-09 16:56:04 -0400472 if ((msr_info->data & reserved_bits) != 0 || new_mode == LAPIC_MODE_INVALID)
Jim Mattsond3802282017-08-10 10:14:13 -0700473 return 1;
Jim Mattson58871642018-05-09 16:56:04 -0400474 if (!msr_info->host_initiated) {
475 if (old_mode == LAPIC_MODE_X2APIC && new_mode == LAPIC_MODE_XAPIC)
476 return 1;
477 if (old_mode == LAPIC_MODE_DISABLED && new_mode == LAPIC_MODE_X2APIC)
478 return 1;
479 }
Jan Kiszka58cb6282014-01-24 16:48:44 +0100480
481 kvm_lapic_set_base(vcpu, msr_info->data);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800482 kvm_recalculate_apic_map(vcpu->kvm);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100483 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100484}
485EXPORT_SYMBOL_GPL(kvm_set_apic_base);
486
Sean Christophersonad0577c2021-08-09 10:39:54 -0700487/*
488 * Handle a fault on a hardware virtualization (VMX or SVM) instruction.
489 *
490 * Hardware virtualization extension instructions may fault if a reboot turns
491 * off virtualization while processes are running. Usually after catching the
492 * fault we just panic; during reboot instead the instruction is ignored.
493 */
494noinstr void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000495{
496 /* Fault while not rebooting. We want the trace. */
kbuild test robotb4fdcf62019-09-29 18:43:28 +0200497 BUG_ON(!kvm_rebooting);
Geoff Levande3ba45b2013-04-05 19:20:30 +0000498}
499EXPORT_SYMBOL_GPL(kvm_spurious_fault);
500
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200501#define EXCPT_BENIGN 0
502#define EXCPT_CONTRIBUTORY 1
503#define EXCPT_PF 2
504
505static int exception_class(int vector)
506{
507 switch (vector) {
508 case PF_VECTOR:
509 return EXCPT_PF;
510 case DE_VECTOR:
511 case TS_VECTOR:
512 case NP_VECTOR:
513 case SS_VECTOR:
514 case GP_VECTOR:
515 return EXCPT_CONTRIBUTORY;
516 default:
517 break;
518 }
519 return EXCPT_BENIGN;
520}
521
Nadav Amitd6e8c852014-07-24 14:51:24 +0300522#define EXCPT_FAULT 0
523#define EXCPT_TRAP 1
524#define EXCPT_ABORT 2
525#define EXCPT_INTERRUPT 3
526
527static int exception_type(int vector)
528{
529 unsigned int mask;
530
531 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
532 return EXCPT_INTERRUPT;
533
534 mask = 1 << vector;
535
536 /* #DB is trap, as instruction watchpoints are handled elsewhere */
537 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
538 return EXCPT_TRAP;
539
540 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
541 return EXCPT_ABORT;
542
543 /* Reserved exceptions will result in fault */
544 return EXCPT_FAULT;
545}
546
Jim Mattsonda998b42018-10-16 14:29:22 -0700547void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu)
548{
549 unsigned nr = vcpu->arch.exception.nr;
550 bool has_payload = vcpu->arch.exception.has_payload;
551 unsigned long payload = vcpu->arch.exception.payload;
552
553 if (!has_payload)
554 return;
555
556 switch (nr) {
Jim Mattsonf10c7292018-10-16 14:29:23 -0700557 case DB_VECTOR:
558 /*
559 * "Certain debug exceptions may clear bit 0-3. The
560 * remaining contents of the DR6 register are never
561 * cleared by the processor".
562 */
563 vcpu->arch.dr6 &= ~DR_TRAP_BITS;
564 /*
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800565 * In order to reflect the #DB exception payload in guest
566 * dr6, three components need to be considered: active low
567 * bit, FIXED_1 bits and active high bits (e.g. DR6_BD,
568 * DR6_BS and DR6_BT)
569 * DR6_ACTIVE_LOW contains the FIXED_1 and active low bits.
570 * In the target guest dr6:
571 * FIXED_1 bits should always be set.
572 * Active low bits should be cleared if 1-setting in payload.
573 * Active high bits should be set if 1-setting in payload.
574 *
575 * Note, the payload is compatible with the pending debug
576 * exceptions/exit qualification under VMX, that active_low bits
577 * are active high in payload.
578 * So they need to be flipped for DR6.
Jim Mattsonf10c7292018-10-16 14:29:23 -0700579 */
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800580 vcpu->arch.dr6 |= DR6_ACTIVE_LOW;
Jim Mattsonf10c7292018-10-16 14:29:23 -0700581 vcpu->arch.dr6 |= payload;
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +0800582 vcpu->arch.dr6 ^= payload & DR6_ACTIVE_LOW;
Oliver Upton307f1cf2020-02-07 02:36:04 -0800583
584 /*
585 * The #DB payload is defined as compatible with the 'pending
586 * debug exceptions' field under VMX, not DR6. While bit 12 is
587 * defined in the 'pending debug exceptions' field (enabled
588 * breakpoint), it is reserved and must be zero in DR6.
589 */
590 vcpu->arch.dr6 &= ~BIT(12);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700591 break;
Jim Mattsonda998b42018-10-16 14:29:22 -0700592 case PF_VECTOR:
593 vcpu->arch.cr2 = payload;
594 break;
595 }
596
597 vcpu->arch.exception.has_payload = false;
598 vcpu->arch.exception.payload = 0;
599}
600EXPORT_SYMBOL_GPL(kvm_deliver_exception_payload);
601
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200602static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200603 unsigned nr, bool has_error, u32 error_code,
Jim Mattson91e86d22018-10-16 14:29:21 -0700604 bool has_payload, unsigned long payload, bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200605{
606 u32 prev_nr;
607 int class1, class2;
608
Avi Kivity3842d132010-07-27 12:30:24 +0300609 kvm_make_request(KVM_REQ_EVENT, vcpu);
610
Wanpeng Li664f8e22017-08-24 03:35:09 -0700611 if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) {
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200612 queue:
Wanpeng Li664f8e22017-08-24 03:35:09 -0700613 if (reinject) {
614 /*
615 * On vmentry, vcpu->arch.exception.pending is only
616 * true if an event injection was blocked by
617 * nested_run_pending. In that case, however,
618 * vcpu_enter_guest requests an immediate exit,
619 * and the guest shouldn't proceed far enough to
620 * need reinjection.
621 */
622 WARN_ON_ONCE(vcpu->arch.exception.pending);
623 vcpu->arch.exception.injected = true;
Jim Mattson91e86d22018-10-16 14:29:21 -0700624 if (WARN_ON_ONCE(has_payload)) {
625 /*
626 * A reinjected event has already
627 * delivered its payload.
628 */
629 has_payload = false;
630 payload = 0;
631 }
Wanpeng Li664f8e22017-08-24 03:35:09 -0700632 } else {
633 vcpu->arch.exception.pending = true;
634 vcpu->arch.exception.injected = false;
635 }
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200636 vcpu->arch.exception.has_error_code = has_error;
637 vcpu->arch.exception.nr = nr;
638 vcpu->arch.exception.error_code = error_code;
Jim Mattson91e86d22018-10-16 14:29:21 -0700639 vcpu->arch.exception.has_payload = has_payload;
640 vcpu->arch.exception.payload = payload;
Oliver Uptona06230b2020-02-07 02:36:06 -0800641 if (!is_guest_mode(vcpu))
Jim Mattsonda998b42018-10-16 14:29:22 -0700642 kvm_deliver_exception_payload(vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200643 return;
644 }
645
646 /* to check exception */
647 prev_nr = vcpu->arch.exception.nr;
648 if (prev_nr == DF_VECTOR) {
649 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300650 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200651 return;
652 }
653 class1 = exception_class(prev_nr);
654 class2 = exception_class(nr);
655 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
656 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
Wanpeng Li664f8e22017-08-24 03:35:09 -0700657 /*
658 * Generate double fault per SDM Table 5-5. Set
659 * exception.pending = true so that the double fault
660 * can trigger a nested vmexit.
661 */
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200662 vcpu->arch.exception.pending = true;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700663 vcpu->arch.exception.injected = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200664 vcpu->arch.exception.has_error_code = true;
665 vcpu->arch.exception.nr = DF_VECTOR;
666 vcpu->arch.exception.error_code = 0;
Jim Mattsonc8514362018-10-16 14:29:19 -0700667 vcpu->arch.exception.has_payload = false;
668 vcpu->arch.exception.payload = 0;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200669 } else
670 /* replace previous exception with a new one in a hope
671 that instruction re-execution will regenerate lost
672 exception */
673 goto queue;
674}
675
Avi Kivity298101d2007-11-25 13:41:11 +0200676void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
677{
Jim Mattson91e86d22018-10-16 14:29:21 -0700678 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200679}
680EXPORT_SYMBOL_GPL(kvm_queue_exception);
681
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200682void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
683{
Jim Mattson91e86d22018-10-16 14:29:21 -0700684 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200685}
686EXPORT_SYMBOL_GPL(kvm_requeue_exception);
687
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400688void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr,
689 unsigned long payload)
Jim Mattsonf10c7292018-10-16 14:29:23 -0700690{
691 kvm_multiple_exception(vcpu, nr, false, 0, true, payload, false);
692}
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400693EXPORT_SYMBOL_GPL(kvm_queue_exception_p);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700694
Jim Mattsonda998b42018-10-16 14:29:22 -0700695static void kvm_queue_exception_e_p(struct kvm_vcpu *vcpu, unsigned nr,
696 u32 error_code, unsigned long payload)
697{
698 kvm_multiple_exception(vcpu, nr, true, error_code,
699 true, payload, false);
700}
701
Kyle Huey6affcbe2016-11-29 12:40:40 -0800702int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200703{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100704 if (err)
705 kvm_inject_gp(vcpu, 0);
706 else
Kyle Huey6affcbe2016-11-29 12:40:40 -0800707 return kvm_skip_emulated_instruction(vcpu);
708
709 return 1;
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100710}
711EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200712
Avi Kivity6389ee92010-11-29 16:12:30 +0200713void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200714{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200715 ++vcpu->stat.pf_guest;
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700716 vcpu->arch.exception.nested_apf =
717 is_guest_mode(vcpu) && fault->async_page_fault;
Jim Mattsonda998b42018-10-16 14:29:22 -0700718 if (vcpu->arch.exception.nested_apf) {
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700719 vcpu->arch.apf.nested_apf_token = fault->address;
Jim Mattsonda998b42018-10-16 14:29:22 -0700720 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
721 } else {
722 kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code,
723 fault->address);
724 }
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200725}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300726EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200727
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700728bool kvm_inject_emulated_page_fault(struct kvm_vcpu *vcpu,
729 struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200730{
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400731 struct kvm_mmu *fault_mmu;
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700732 WARN_ON_ONCE(fault->vector != PF_VECTOR);
733
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400734 fault_mmu = fault->nested_page_fault ? vcpu->arch.mmu :
735 vcpu->arch.walk_mmu;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200736
Junaid Shahidee1fa202020-03-20 14:28:03 -0700737 /*
738 * Invalidate the TLB entry for the faulting address, if it exists,
739 * else the access will fault indefinitely (and to emulate hardware).
740 */
741 if ((fault->error_code & PFERR_PRESENT_MASK) &&
742 !(fault->error_code & PFERR_RSVD_MASK))
743 kvm_mmu_invalidate_gva(vcpu, fault_mmu, fault->address,
744 fault_mmu->root_hpa);
745
746 fault_mmu->inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200747 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200748}
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700749EXPORT_SYMBOL_GPL(kvm_inject_emulated_page_fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200750
Sheng Yang3419ffc2008-05-15 09:52:48 +0800751void kvm_inject_nmi(struct kvm_vcpu *vcpu)
752{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300753 atomic_inc(&vcpu->arch.nmi_queued);
754 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800755}
756EXPORT_SYMBOL_GPL(kvm_inject_nmi);
757
Avi Kivity298101d2007-11-25 13:41:11 +0200758void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
759{
Jim Mattson91e86d22018-10-16 14:29:21 -0700760 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200761}
762EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
763
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200764void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
765{
Jim Mattson91e86d22018-10-16 14:29:21 -0700766 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200767}
768EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
769
Carsten Ottea03490e2007-10-29 16:09:35 +0100770/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300771 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
772 * a #GP and return false.
773 */
774bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200775{
Jason Baronb36464772021-01-14 22:27:56 -0500776 if (static_call(kvm_x86_get_cpl)(vcpu) <= required_cpl)
Avi Kivity0a79b002009-09-01 12:03:25 +0300777 return true;
778 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
779 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100780}
Avi Kivity0a79b002009-09-01 12:03:25 +0300781EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100782
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300783bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
784{
785 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
786 return true;
787
788 kvm_queue_exception(vcpu, UD_VECTOR);
789 return false;
790}
791EXPORT_SYMBOL_GPL(kvm_require_dr);
792
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700793static inline u64 pdptr_rsvd_bits(struct kvm_vcpu *vcpu)
794{
Sean Christopherson5b7f5752021-02-03 16:01:13 -0800795 return vcpu->arch.reserved_gpa_bits | rsvd_bits(5, 8) | rsvd_bits(1, 2);
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700796}
797
Joerg Roedelec92fe42010-09-10 17:30:51 +0200798/*
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700799 * Load the pae pdptrs. Return 1 if they are all valid, 0 otherwise.
Carsten Ottea03490e2007-10-29 16:09:35 +0100800 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200801int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100802{
803 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700804 gpa_t real_gpa;
Carsten Ottea03490e2007-10-29 16:09:35 +0100805 int i;
806 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200807 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100808
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700809 /*
810 * If the MMU is nested, CR3 holds an L2 GPA and needs to be translated
811 * to an L1 GPA.
812 */
813 real_gpa = mmu->translate_gpa(vcpu, gfn_to_gpa(pdpt_gfn),
814 PFERR_USER_MASK | PFERR_WRITE_MASK, NULL);
815 if (real_gpa == UNMAPPED_GVA)
816 return 0;
817
Sean Christopherson94c641b2021-08-31 09:42:24 -0700818 /* Note the offset, PDPTRs are 32 byte aligned when using PAE paging. */
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700819 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(real_gpa), pdpte,
Sean Christopherson94c641b2021-08-31 09:42:24 -0700820 cr3 & GENMASK(11, 5), sizeof(pdpte));
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700821 if (ret < 0)
822 return 0;
823
Carsten Ottea03490e2007-10-29 16:09:35 +0100824 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400825 if ((pdpte[i] & PT_PRESENT_MASK) &&
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700826 (pdpte[i] & pdptr_rsvd_bits(vcpu))) {
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700827 return 0;
Carsten Ottea03490e2007-10-29 16:09:35 +0100828 }
829 }
Carsten Ottea03490e2007-10-29 16:09:35 +0100830
Joerg Roedelff03a072010-09-10 17:30:57 +0200831 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700832 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
Maxim Levitsky158a48e2021-06-07 12:02:03 +0300833 vcpu->arch.pdptrs_from_userspace = false;
834
Sean Christopherson15cabbc2021-08-31 09:42:23 -0700835 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100836}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100837EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100838
Tom Lendackyf27ad382020-12-10 11:09:56 -0600839void kvm_post_set_cr0(struct kvm_vcpu *vcpu, unsigned long old_cr0, unsigned long cr0)
840{
Tom Lendackyf27ad382020-12-10 11:09:56 -0600841 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
842 kvm_clear_async_pf_completion_queue(vcpu);
843 kvm_async_pf_hash_reset(vcpu);
844 }
845
Sean Christopherson20f632b2021-06-22 10:57:02 -0700846 if ((cr0 ^ old_cr0) & KVM_MMU_CR0_ROLE_BITS)
Tom Lendackyf27ad382020-12-10 11:09:56 -0600847 kvm_mmu_reset_context(vcpu);
848
849 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
850 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
851 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
852 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
853}
854EXPORT_SYMBOL_GPL(kvm_post_set_cr0);
855
Avi Kivity49a9b072010-06-10 17:02:14 +0300856int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100857{
Sheng Yangaad82702010-05-12 16:40:42 +0800858 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Jim Mattsond42e3fa2020-07-07 15:36:30 -0700859 unsigned long pdptr_bits = X86_CR0_CD | X86_CR0_NW | X86_CR0_PG;
Sheng Yangaad82702010-05-12 16:40:42 +0800860
Avi Kivityf9a48e62010-01-06 19:10:22 +0200861 cr0 |= X86_CR0_ET;
862
Gleb Natapovab344822010-01-21 15:28:46 +0200863#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300864 if (cr0 & 0xffffffff00000000UL)
865 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200866#endif
867
868 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100869
Gleb Natapov0f122442010-04-28 19:15:31 +0300870 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
871 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100872
Gleb Natapov0f122442010-04-28 19:15:31 +0300873 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
874 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100875
Carsten Ottea03490e2007-10-29 16:09:35 +0100876#ifdef CONFIG_X86_64
Sean Christopherson05487212020-07-13 18:57:32 -0700877 if ((vcpu->arch.efer & EFER_LME) && !is_paging(vcpu) &&
878 (cr0 & X86_CR0_PG)) {
879 int cs_db, cs_l;
Carsten Ottea03490e2007-10-29 16:09:35 +0100880
Sean Christopherson05487212020-07-13 18:57:32 -0700881 if (!is_pae(vcpu))
882 return 1;
Jason Baronb36464772021-01-14 22:27:56 -0500883 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Sean Christopherson05487212020-07-13 18:57:32 -0700884 if (cs_l)
Gleb Natapov0f122442010-04-28 19:15:31 +0300885 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100886 }
Sean Christopherson05487212020-07-13 18:57:32 -0700887#endif
888 if (!(vcpu->arch.efer & EFER_LME) && (cr0 & X86_CR0_PG) &&
889 is_pae(vcpu) && ((cr0 ^ old_cr0) & pdptr_bits) &&
890 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu)))
891 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100892
Mao, Junjiead756a12012-07-02 01:18:48 +0000893 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
894 return 1;
895
Jason Baronb36464772021-01-14 22:27:56 -0500896 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100897
Tom Lendackyf27ad382020-12-10 11:09:56 -0600898 kvm_post_set_cr0(vcpu, old_cr0, cr0);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800899
Gleb Natapov0f122442010-04-28 19:15:31 +0300900 return 0;
901}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200902EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100903
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200904void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100905{
Avi Kivity49a9b072010-06-10 17:02:14 +0300906 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100907}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200908EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100909
Aaron Lewis139a12c2019-10-21 16:30:25 -0700910void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu)
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300911{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600912 if (vcpu->arch.guest_state_protected)
913 return;
914
Aaron Lewis139a12c2019-10-21 16:30:25 -0700915 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300916
Aaron Lewis139a12c2019-10-21 16:30:25 -0700917 if (vcpu->arch.xcr0 != host_xcr0)
918 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
919
920 if (vcpu->arch.xsaves_enabled &&
921 vcpu->arch.ia32_xss != host_xss)
922 wrmsrl(MSR_IA32_XSS, vcpu->arch.ia32_xss);
923 }
Babu Moger37486132020-05-12 18:59:06 -0500924
925 if (static_cpu_has(X86_FEATURE_PKU) &&
926 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
927 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU)) &&
928 vcpu->arch.pkru != vcpu->arch.host_pkru)
Thomas Gleixner72a6c082021-06-23 14:02:23 +0200929 write_pkru(vcpu->arch.pkru);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300930}
Aaron Lewis139a12c2019-10-21 16:30:25 -0700931EXPORT_SYMBOL_GPL(kvm_load_guest_xsave_state);
932
933void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu)
934{
Tom Lendacky16809ec2020-12-10 11:10:08 -0600935 if (vcpu->arch.guest_state_protected)
936 return;
937
Babu Moger37486132020-05-12 18:59:06 -0500938 if (static_cpu_has(X86_FEATURE_PKU) &&
939 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
940 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU))) {
941 vcpu->arch.pkru = rdpkru();
942 if (vcpu->arch.pkru != vcpu->arch.host_pkru)
Thomas Gleixner72a6c082021-06-23 14:02:23 +0200943 write_pkru(vcpu->arch.host_pkru);
Babu Moger37486132020-05-12 18:59:06 -0500944 }
945
Aaron Lewis139a12c2019-10-21 16:30:25 -0700946 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
947
948 if (vcpu->arch.xcr0 != host_xcr0)
949 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
950
951 if (vcpu->arch.xsaves_enabled &&
952 vcpu->arch.ia32_xss != host_xss)
953 wrmsrl(MSR_IA32_XSS, host_xss);
954 }
955
956}
957EXPORT_SYMBOL_GPL(kvm_load_host_xsave_state);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300958
Fengguang Wu69b00492015-01-19 22:33:39 +0800959static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800960{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000961 u64 xcr0 = xcr;
962 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200963 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800964
965 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
966 if (index != XCR_XFEATURE_ENABLED_MASK)
967 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700968 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800969 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700970 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800971 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200972
973 /*
974 * Do not allow the guest to set bits that we do not support
975 * saving. However, xcr0 bit 0 is always set, even if the
Sean Christophersone8f65b92021-09-20 17:02:58 -0700976 * emulated CPU does not support XSAVE (see kvm_vcpu_reset()).
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200977 */
Dave Hansend91cab72015-09-02 16:31:26 -0700978 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200979 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800980 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200981
Dave Hansend91cab72015-09-02 16:31:26 -0700982 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
983 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +0000984 return 1;
985
Dave Hansend91cab72015-09-02 16:31:26 -0700986 if (xcr0 & XFEATURE_MASK_AVX512) {
987 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +0800988 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700989 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +0800990 return 1;
991 }
Dexuan Cui2acf9232010-06-10 11:27:12 +0800992 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000993
Dave Hansend91cab72015-09-02 16:31:26 -0700994 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800995 kvm_update_cpuid_runtime(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800996 return 0;
997}
998
Sean Christopherson92f98952021-02-04 16:57:46 -0800999int kvm_emulate_xsetbv(struct kvm_vcpu *vcpu)
Dexuan Cui2acf9232010-06-10 11:27:12 +08001000{
Sean Christopherson92f98952021-02-04 16:57:46 -08001001 if (static_call(kvm_x86_get_cpl)(vcpu) != 0 ||
1002 __kvm_set_xcr(vcpu, kvm_rcx_read(vcpu), kvm_read_edx_eax(vcpu))) {
1003 kvm_inject_gp(vcpu, 0);
1004 return 1;
1005 }
Paolo Bonzinibbefd4f2020-12-14 07:49:54 -05001006
Sean Christopherson92f98952021-02-04 16:57:46 -08001007 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001008}
Sean Christopherson92f98952021-02-04 16:57:46 -08001009EXPORT_SYMBOL_GPL(kvm_emulate_xsetbv);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001010
Sean Christophersonee69c922020-10-06 18:44:16 -07001011bool kvm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Wanpeng Li3ca94192019-09-18 17:50:10 +08001012{
Sean Christophersonb11306b2019-12-10 14:44:13 -08001013 if (cr4 & cr4_reserved_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001014 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001015
Krish Sadhukhanb899c132020-07-08 00:39:55 +00001016 if (cr4 & vcpu->arch.cr4_guest_rsvd_bits)
Sean Christophersonee69c922020-10-06 18:44:16 -07001017 return false;
Wanpeng Li3ca94192019-09-18 17:50:10 +08001018
Jason Baronb36464772021-01-14 22:27:56 -05001019 return static_call(kvm_x86_is_valid_cr4)(vcpu, cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001020}
Sean Christophersonee69c922020-10-06 18:44:16 -07001021EXPORT_SYMBOL_GPL(kvm_is_valid_cr4);
Wanpeng Li3ca94192019-09-18 17:50:10 +08001022
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001023void kvm_post_set_cr4(struct kvm_vcpu *vcpu, unsigned long old_cr4, unsigned long cr4)
1024{
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001025 /*
1026 * If any role bit is changed, the MMU needs to be reset.
1027 *
1028 * If CR4.PCIDE is changed 1 -> 0, the guest TLB must be flushed.
1029 * If CR4.PCIDE is changed 0 -> 1, there is no need to flush the TLB
1030 * according to the SDM; however, stale prev_roots could be reused
1031 * incorrectly in the future after a MOV to CR3 with NOFLUSH=1, so we
1032 * free them all. KVM_REQ_MMU_RELOAD is fit for the both cases; it
1033 * is slow, but changing CR4.PCIDE is a rare case.
1034 *
1035 * If CR4.PGE is changed, the guest TLB must be flushed.
1036 *
1037 * Note: resetting MMU is a superset of KVM_REQ_MMU_RELOAD and
1038 * KVM_REQ_MMU_RELOAD is a superset of KVM_REQ_TLB_FLUSH_GUEST, hence
1039 * the usage of "else if".
1040 */
Lai Jiangshan55261732021-09-19 10:42:45 +08001041 if ((cr4 ^ old_cr4) & KVM_MMU_CR4_ROLE_BITS)
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001042 kvm_mmu_reset_context(vcpu);
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001043 else if ((cr4 ^ old_cr4) & X86_CR4_PCIDE)
1044 kvm_make_request(KVM_REQ_MMU_RELOAD, vcpu);
1045 else if ((cr4 ^ old_cr4) & X86_CR4_PGE)
Lai Jiangshan55261732021-09-19 10:42:45 +08001046 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001047}
1048EXPORT_SYMBOL_GPL(kvm_post_set_cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001049
Avi Kivitya83b29c2010-06-10 17:02:15 +03001050int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +01001051{
Avi Kivityfc78f512009-12-07 12:16:48 +02001052 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +08001053 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
Jim Mattsoncb957ad2020-08-17 11:16:54 -07001054 X86_CR4_SMEP;
Xiao Guangrong0be02262015-05-11 22:55:21 +08001055
Sean Christophersonee69c922020-10-06 18:44:16 -07001056 if (!kvm_is_valid_cr4(vcpu, cr4))
Paolo Bonziniae3e61e2016-07-12 10:36:41 +02001057 return 1;
1058
Carsten Ottea03490e2007-10-29 16:09:35 +01001059 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +03001060 if (!(cr4 & X86_CR4_PAE))
1061 return 1;
Sean Christophersond74fcfc2020-07-02 19:17:14 -07001062 if ((cr4 ^ old_cr4) & X86_CR4_LA57)
1063 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +03001064 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
1065 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +02001066 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
1067 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +03001068 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001069
Mao, Junjiead756a12012-07-02 01:18:48 +00001070 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
Radim Krčmářd6321d42017-08-05 00:12:49 +02001071 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
Mao, Junjiead756a12012-07-02 01:18:48 +00001072 return 1;
1073
1074 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
1075 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
1076 return 1;
1077 }
1078
Jason Baronb36464772021-01-14 22:27:56 -05001079 static_call(kvm_x86_set_cr4)(vcpu, cr4);
Gleb Natapov0f122442010-04-28 19:15:31 +03001080
Tom Lendacky5b51cb12020-12-10 11:09:57 -06001081 kvm_post_set_cr4(vcpu, old_cr4, cr4);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001082
Gleb Natapov0f122442010-04-28 19:15:31 +03001083 return 0;
1084}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001085EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +01001086
Sean Christopherson21823fb2021-06-09 16:42:24 -07001087static void kvm_invalidate_pcid(struct kvm_vcpu *vcpu, unsigned long pcid)
1088{
1089 struct kvm_mmu *mmu = vcpu->arch.mmu;
1090 unsigned long roots_to_free = 0;
1091 int i;
1092
1093 /*
Lai Jiangshane45e9e32021-10-19 19:01:51 +08001094 * MOV CR3 and INVPCID are usually not intercepted when using TDP, but
1095 * this is reachable when running EPT=1 and unrestricted_guest=0, and
1096 * also via the emulator. KVM's TDP page tables are not in the scope of
1097 * the invalidation, but the guest's TLB entries need to be flushed as
1098 * the CPU may have cached entries in its TLB for the target PCID.
1099 */
1100 if (unlikely(tdp_enabled)) {
1101 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
1102 return;
1103 }
1104
1105 /*
Sean Christopherson21823fb2021-06-09 16:42:24 -07001106 * If neither the current CR3 nor any of the prev_roots use the given
1107 * PCID, then nothing needs to be done here because a resync will
1108 * happen anyway before switching to any other CR3.
1109 */
1110 if (kvm_get_active_pcid(vcpu) == pcid) {
Sean Christophersone62f1aa2021-06-09 16:42:32 -07001111 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001112 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
1113 }
1114
Lai Jiangshan509bfe32021-10-19 19:01:52 +08001115 /*
1116 * If PCID is disabled, there is no need to free prev_roots even if the
1117 * PCIDs for them are also 0, because MOV to CR3 always flushes the TLB
1118 * with PCIDE=0.
1119 */
1120 if (!kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
1121 return;
1122
Sean Christopherson21823fb2021-06-09 16:42:24 -07001123 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
1124 if (kvm_get_pcid(vcpu, mmu->prev_roots[i].pgd) == pcid)
1125 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
1126
1127 kvm_mmu_free_roots(vcpu, mmu, roots_to_free);
1128}
1129
Avi Kivity23902182010-06-10 17:02:16 +03001130int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +01001131{
Junaid Shahidade61e22018-06-27 14:59:15 -07001132 bool skip_tlb_flush = false;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001133 unsigned long pcid = 0;
Paolo Bonziniac146232014-11-10 13:53:25 +01001134#ifdef CONFIG_X86_64
Junaid Shahidc19986f2018-05-04 11:37:13 -07001135 bool pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
1136
Junaid Shahidade61e22018-06-27 14:59:15 -07001137 if (pcid_enabled) {
Junaid Shahid208320b2018-06-27 14:59:21 -07001138 skip_tlb_flush = cr3 & X86_CR3_PCID_NOFLUSH;
1139 cr3 &= ~X86_CR3_PCID_NOFLUSH;
Sean Christopherson21823fb2021-06-09 16:42:24 -07001140 pcid = cr3 & X86_CR3_PCID_MASK;
Junaid Shahidade61e22018-06-27 14:59:15 -07001141 }
Paolo Bonziniac146232014-11-10 13:53:25 +01001142#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +02001143
Sean Christophersonc7313152021-06-07 12:01:58 +03001144 /* PDPTRs are always reloaded for PAE paging. */
Sean Christopherson21823fb2021-06-09 16:42:24 -07001145 if (cr3 == kvm_read_cr3(vcpu) && !is_pae_paging(vcpu))
1146 goto handle_tlb_flush;
Avi Kivityd835dfe2007-11-21 02:57:59 +02001147
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001148 /*
1149 * Do not condition the GPA check on long mode, this helper is used to
1150 * stuff CR3, e.g. for RSM emulation, and there is no guarantee that
1151 * the current vCPU mode is accurate.
1152 */
1153 if (kvm_vcpu_is_illegal_gpa(vcpu, cr3))
Yu Zhangd1cd3ce2017-08-24 20:27:53 +08001154 return 1;
Sean Christopherson886bbcc2021-04-21 19:21:21 -07001155
1156 if (is_pae_paging(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +03001157 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001158
Sean Christopherson21823fb2021-06-09 16:42:24 -07001159 if (cr3 != kvm_read_cr3(vcpu))
Sean Christophersonb5129102021-06-09 16:42:27 -07001160 kvm_mmu_new_pgd(vcpu, cr3);
Sean Christopherson21823fb2021-06-09 16:42:24 -07001161
Gleb Natapov0f122442010-04-28 19:15:31 +03001162 vcpu->arch.cr3 = cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001163 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Junaid Shahid7c390d32018-06-27 14:59:06 -07001164
Sean Christopherson21823fb2021-06-09 16:42:24 -07001165handle_tlb_flush:
1166 /*
1167 * A load of CR3 that flushes the TLB flushes only the current PCID,
1168 * even if PCID is disabled, in which case PCID=0 is flushed. It's a
1169 * moot point in the end because _disabling_ PCID will flush all PCIDs,
1170 * and it's impossible to use a non-zero PCID when PCID is disabled,
1171 * i.e. only PCID=0 can be relevant.
1172 */
1173 if (!skip_tlb_flush)
1174 kvm_invalidate_pcid(vcpu, pcid);
1175
Gleb Natapov0f122442010-04-28 19:15:31 +03001176 return 0;
1177}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001178EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +01001179
Andre Przywaraeea1cff2010-12-21 11:12:00 +01001180int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +01001181{
Gleb Natapov0f122442010-04-28 19:15:31 +03001182 if (cr8 & CR8_RESERVED_BITS)
1183 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +02001184 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001185 kvm_lapic_set_tpr(vcpu, cr8);
1186 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001187 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +03001188 return 0;
1189}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001190EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001191
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001192unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +01001193{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001194 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001195 return kvm_lapic_get_cr8(vcpu);
1196 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001197 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +01001198}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001199EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001200
Nadav Amitae561ed2015-04-02 03:10:37 +03001201static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
1202{
1203 int i;
1204
1205 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
1206 for (i = 0; i < KVM_NR_DB_REGS; i++)
1207 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Nadav Amitae561ed2015-04-02 03:10:37 +03001208 }
1209}
1210
Paolo Bonzini7c866632020-05-16 08:42:28 -04001211void kvm_update_dr7(struct kvm_vcpu *vcpu)
Jan Kiszkac8639012012-09-21 05:42:55 +02001212{
1213 unsigned long dr7;
1214
1215 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1216 dr7 = vcpu->arch.guest_debug_dr7;
1217 else
1218 dr7 = vcpu->arch.dr7;
Jason Baronb36464772021-01-14 22:27:56 -05001219 static_call(kvm_x86_set_dr7)(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +01001220 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
1221 if (dr7 & DR7_BP_EN_MASK)
1222 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +02001223}
Paolo Bonzini7c866632020-05-16 08:42:28 -04001224EXPORT_SYMBOL_GPL(kvm_update_dr7);
Jan Kiszkac8639012012-09-21 05:42:55 +02001225
Nadav Amit6f43ed02014-07-15 17:37:46 +03001226static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
1227{
1228 u64 fixed = DR6_FIXED_1;
1229
Radim Krčmářd6321d42017-08-05 00:12:49 +02001230 if (!guest_cpuid_has(vcpu, X86_FEATURE_RTM))
Nadav Amit6f43ed02014-07-15 17:37:46 +03001231 fixed |= DR6_RTM;
Chenyi Qiange8ea85f2021-02-02 17:04:32 +08001232
1233 if (!guest_cpuid_has(vcpu, X86_FEATURE_BUS_LOCK_DETECT))
1234 fixed |= DR6_BUS_LOCK;
Nadav Amit6f43ed02014-07-15 17:37:46 +03001235 return fixed;
1236}
1237
Paolo Bonzini996ff542020-12-14 07:49:54 -05001238int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +03001239{
Marios Pomonisea740052019-12-11 12:47:52 -08001240 size_t size = ARRAY_SIZE(vcpu->arch.db);
1241
Gleb Natapov020df072010-04-13 10:05:23 +03001242 switch (dr) {
1243 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001244 vcpu->arch.db[array_index_nospec(dr, size)] = val;
Gleb Natapov020df072010-04-13 10:05:23 +03001245 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
1246 vcpu->arch.eff_db[dr] = val;
1247 break;
1248 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001249 case 6:
Krish Sadhukhanf5f61452020-05-22 18:19:51 -04001250 if (!kvm_dr6_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001251 return 1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +03001252 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001253 break;
1254 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001255 default: /* 7 */
Krish Sadhukhanb91991b2020-01-15 19:54:32 -05001256 if (!kvm_dr7_valid(val))
Paolo Bonzini996ff542020-12-14 07:49:54 -05001257 return 1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +03001258 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02001259 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001260 break;
1261 }
1262
1263 return 0;
1264}
1265EXPORT_SYMBOL_GPL(kvm_set_dr);
1266
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05001267void kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +03001268{
Marios Pomonisea740052019-12-11 12:47:52 -08001269 size_t size = ARRAY_SIZE(vcpu->arch.db);
1270
Gleb Natapov020df072010-04-13 10:05:23 +03001271 switch (dr) {
1272 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001273 *val = vcpu->arch.db[array_index_nospec(dr, size)];
Gleb Natapov020df072010-04-13 10:05:23 +03001274 break;
1275 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001276 case 6:
Paolo Bonzini5679b802020-05-04 11:28:25 -04001277 *val = vcpu->arch.dr6;
Gleb Natapov020df072010-04-13 10:05:23 +03001278 break;
1279 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001280 default: /* 7 */
1281 *val = vcpu->arch.dr7;
1282 break;
1283 }
Gleb Natapov338dbc92010-04-28 19:15:32 +03001284}
Gleb Natapov020df072010-04-13 10:05:23 +03001285EXPORT_SYMBOL_GPL(kvm_get_dr);
1286
Sean Christophersonc483c452021-02-04 16:57:48 -08001287int kvm_emulate_rdpmc(struct kvm_vcpu *vcpu)
Avi Kivity022cd0e2011-11-10 14:57:23 +02001288{
Sean Christophersonde3cd112019-04-30 10:36:17 -07001289 u32 ecx = kvm_rcx_read(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001290 u64 data;
Avi Kivity022cd0e2011-11-10 14:57:23 +02001291
Sean Christophersonc483c452021-02-04 16:57:48 -08001292 if (kvm_pmu_rdpmc(vcpu, ecx, &data)) {
1293 kvm_inject_gp(vcpu, 0);
1294 return 1;
1295 }
1296
Sean Christophersonde3cd112019-04-30 10:36:17 -07001297 kvm_rax_write(vcpu, (u32)data);
1298 kvm_rdx_write(vcpu, data >> 32);
Sean Christophersonc483c452021-02-04 16:57:48 -08001299 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001300}
Sean Christophersonc483c452021-02-04 16:57:48 -08001301EXPORT_SYMBOL_GPL(kvm_emulate_rdpmc);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001302
Carsten Otte043405e2007-10-10 17:16:19 +02001303/*
1304 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
1305 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
1306 *
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001307 * The three MSR lists(msrs_to_save, emulated_msrs, msr_based_features)
1308 * extract the supported MSRs from the related const lists.
1309 * msrs_to_save is selected from the msrs_to_save_all to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -04001310 * capabilities of the host cpu. This capabilities test skips MSRs that are
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001311 * kvm-specific. Those are put in emulated_msrs_all; filtering of emulated_msrs
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001312 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +02001313 */
Glauber Costae3267cb2009-10-06 13:24:50 -04001314
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001315static const u32 msrs_to_save_all[] = {
Carsten Otte043405e2007-10-10 17:16:19 +02001316 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -04001317 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +02001318#ifdef CONFIG_X86_64
1319 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
1320#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +08001321 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001322 MSR_IA32_FEAT_CTL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001323 MSR_IA32_SPEC_CTRL,
Chao Pengbf8c55d2018-10-24 16:05:14 +08001324 MSR_IA32_RTIT_CTL, MSR_IA32_RTIT_STATUS, MSR_IA32_RTIT_CR3_MATCH,
1325 MSR_IA32_RTIT_OUTPUT_BASE, MSR_IA32_RTIT_OUTPUT_MASK,
1326 MSR_IA32_RTIT_ADDR0_A, MSR_IA32_RTIT_ADDR0_B,
1327 MSR_IA32_RTIT_ADDR1_A, MSR_IA32_RTIT_ADDR1_B,
1328 MSR_IA32_RTIT_ADDR2_A, MSR_IA32_RTIT_ADDR2_B,
1329 MSR_IA32_RTIT_ADDR3_A, MSR_IA32_RTIT_ADDR3_B,
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001330 MSR_IA32_UMWAIT_CONTROL,
1331
Jim Mattsone2ada662019-08-21 11:20:04 -07001332 MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1,
1333 MSR_ARCH_PERFMON_FIXED_CTR0 + 2, MSR_ARCH_PERFMON_FIXED_CTR0 + 3,
1334 MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS,
1335 MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL,
1336 MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1,
1337 MSR_ARCH_PERFMON_PERFCTR0 + 2, MSR_ARCH_PERFMON_PERFCTR0 + 3,
1338 MSR_ARCH_PERFMON_PERFCTR0 + 4, MSR_ARCH_PERFMON_PERFCTR0 + 5,
1339 MSR_ARCH_PERFMON_PERFCTR0 + 6, MSR_ARCH_PERFMON_PERFCTR0 + 7,
1340 MSR_ARCH_PERFMON_PERFCTR0 + 8, MSR_ARCH_PERFMON_PERFCTR0 + 9,
1341 MSR_ARCH_PERFMON_PERFCTR0 + 10, MSR_ARCH_PERFMON_PERFCTR0 + 11,
1342 MSR_ARCH_PERFMON_PERFCTR0 + 12, MSR_ARCH_PERFMON_PERFCTR0 + 13,
1343 MSR_ARCH_PERFMON_PERFCTR0 + 14, MSR_ARCH_PERFMON_PERFCTR0 + 15,
1344 MSR_ARCH_PERFMON_PERFCTR0 + 16, MSR_ARCH_PERFMON_PERFCTR0 + 17,
Jim Mattsone2ada662019-08-21 11:20:04 -07001345 MSR_ARCH_PERFMON_EVENTSEL0, MSR_ARCH_PERFMON_EVENTSEL1,
1346 MSR_ARCH_PERFMON_EVENTSEL0 + 2, MSR_ARCH_PERFMON_EVENTSEL0 + 3,
1347 MSR_ARCH_PERFMON_EVENTSEL0 + 4, MSR_ARCH_PERFMON_EVENTSEL0 + 5,
1348 MSR_ARCH_PERFMON_EVENTSEL0 + 6, MSR_ARCH_PERFMON_EVENTSEL0 + 7,
1349 MSR_ARCH_PERFMON_EVENTSEL0 + 8, MSR_ARCH_PERFMON_EVENTSEL0 + 9,
1350 MSR_ARCH_PERFMON_EVENTSEL0 + 10, MSR_ARCH_PERFMON_EVENTSEL0 + 11,
1351 MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13,
1352 MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15,
1353 MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17,
Fares Mehannae1fc1552021-09-15 13:39:50 +00001354
1355 MSR_K7_EVNTSEL0, MSR_K7_EVNTSEL1, MSR_K7_EVNTSEL2, MSR_K7_EVNTSEL3,
1356 MSR_K7_PERFCTR0, MSR_K7_PERFCTR1, MSR_K7_PERFCTR2, MSR_K7_PERFCTR3,
1357 MSR_F15H_PERF_CTL0, MSR_F15H_PERF_CTL1, MSR_F15H_PERF_CTL2,
1358 MSR_F15H_PERF_CTL3, MSR_F15H_PERF_CTL4, MSR_F15H_PERF_CTL5,
1359 MSR_F15H_PERF_CTR0, MSR_F15H_PERF_CTR1, MSR_F15H_PERF_CTR2,
1360 MSR_F15H_PERF_CTR3, MSR_F15H_PERF_CTR4, MSR_F15H_PERF_CTR5,
Carsten Otte043405e2007-10-10 17:16:19 +02001361};
1362
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001363static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)];
Carsten Otte043405e2007-10-10 17:16:19 +02001364static unsigned num_msrs_to_save;
1365
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001366static const u32 emulated_msrs_all[] = {
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001367 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
1368 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
1369 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
1370 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Ladi Prosek72c139b2017-07-26 13:32:59 +02001371 HV_X64_MSR_TSC_FREQUENCY, HV_X64_MSR_APIC_FREQUENCY,
Andrey Smetanine7d95132015-07-03 15:01:37 +03001372 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
1373 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +03001374 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +03001375 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +03001376 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001377 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03001378 HV_X64_MSR_STIMER0_CONFIG,
Ladi Prosekd4abc572018-03-20 15:02:07 +01001379 HV_X64_MSR_VP_ASSIST_PAGE,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001380 HV_X64_MSR_REENLIGHTENMENT_CONTROL, HV_X64_MSR_TSC_EMULATION_CONTROL,
1381 HV_X64_MSR_TSC_EMULATION_STATUS,
Jon Doronf97f5a52020-05-29 16:45:40 +03001382 HV_X64_MSR_SYNDBG_OPTIONS,
1383 HV_X64_MSR_SYNDBG_CONTROL, HV_X64_MSR_SYNDBG_STATUS,
1384 HV_X64_MSR_SYNDBG_SEND_BUFFER, HV_X64_MSR_SYNDBG_RECV_BUFFER,
1385 HV_X64_MSR_SYNDBG_PENDING_BUFFER,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001386
1387 MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02001388 MSR_KVM_PV_EOI_EN, MSR_KVM_ASYNC_PF_INT, MSR_KVM_ASYNC_PF_ACK,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001389
Will Auldba904632012-11-29 12:42:50 -08001390 MSR_IA32_TSC_ADJUST,
Dave Hansen09141ec2020-03-05 09:47:06 -08001391 MSR_IA32_TSC_DEADLINE,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001392 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001393 MSR_IA32_PERF_CAPABILITIES,
Carsten Otte043405e2007-10-10 17:16:19 +02001394 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001395 MSR_IA32_MCG_STATUS,
1396 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001397 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001398 MSR_IA32_SMBASE,
Liran Alon52797bf2017-11-15 13:43:14 +02001399 MSR_SMI_COUNT,
Kyle Hueydb2336a2017-03-20 01:16:28 -07001400 MSR_PLATFORM_INFO,
1401 MSR_MISC_FEATURES_ENABLES,
Tom Lendackybc226f02018-05-10 22:06:39 +02001402 MSR_AMD64_VIRT_SPEC_CTRL,
Maxim Levitsky5228eb92021-09-14 18:48:24 +03001403 MSR_AMD64_TSC_RATIO,
Liran Alon6c6a2ab2019-04-15 18:45:26 +03001404 MSR_IA32_POWER_CTL,
Paolo Bonzini99634e32020-01-20 14:22:55 +01001405 MSR_IA32_UCODE_REV,
Borislav Petkov191c8132019-04-18 18:32:50 +02001406
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001407 /*
1408 * The following list leaves out MSRs whose values are determined
1409 * by arch/x86/kvm/vmx/nested.c based on CPUID or other MSRs.
1410 * We always support the "true" VMX control MSRs, even if the host
1411 * processor does not, so I am putting these registers here rather
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001412 * than in msrs_to_save_all.
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001413 */
1414 MSR_IA32_VMX_BASIC,
1415 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1416 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1417 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1418 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1419 MSR_IA32_VMX_MISC,
1420 MSR_IA32_VMX_CR0_FIXED0,
1421 MSR_IA32_VMX_CR4_FIXED0,
1422 MSR_IA32_VMX_VMCS_ENUM,
1423 MSR_IA32_VMX_PROCBASED_CTLS2,
1424 MSR_IA32_VMX_EPT_VPID_CAP,
1425 MSR_IA32_VMX_VMFUNC,
1426
Borislav Petkov191c8132019-04-18 18:32:50 +02001427 MSR_K7_HWCR,
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03001428 MSR_KVM_POLL_CONTROL,
Carsten Otte043405e2007-10-10 17:16:19 +02001429};
1430
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001431static u32 emulated_msrs[ARRAY_SIZE(emulated_msrs_all)];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001432static unsigned num_emulated_msrs;
1433
Tom Lendacky801e4592018-02-21 13:39:51 -06001434/*
1435 * List of msr numbers which are used to expose MSR-based features that
1436 * can be used by a hypervisor to validate requested CPU features.
1437 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001438static const u32 msr_based_features_all[] = {
Paolo Bonzini13893092018-02-26 13:40:09 +01001439 MSR_IA32_VMX_BASIC,
1440 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1441 MSR_IA32_VMX_PINBASED_CTLS,
1442 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1443 MSR_IA32_VMX_PROCBASED_CTLS,
1444 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1445 MSR_IA32_VMX_EXIT_CTLS,
1446 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1447 MSR_IA32_VMX_ENTRY_CTLS,
1448 MSR_IA32_VMX_MISC,
1449 MSR_IA32_VMX_CR0_FIXED0,
1450 MSR_IA32_VMX_CR0_FIXED1,
1451 MSR_IA32_VMX_CR4_FIXED0,
1452 MSR_IA32_VMX_CR4_FIXED1,
1453 MSR_IA32_VMX_VMCS_ENUM,
1454 MSR_IA32_VMX_PROCBASED_CTLS2,
1455 MSR_IA32_VMX_EPT_VPID_CAP,
1456 MSR_IA32_VMX_VMFUNC,
1457
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01001458 MSR_F10H_DECFG,
Wanpeng Li518e7b92018-02-28 14:03:31 +08001459 MSR_IA32_UCODE_REV,
Paolo Bonzinicd283252018-06-25 14:04:37 +02001460 MSR_IA32_ARCH_CAPABILITIES,
Like Xu27461da32020-05-29 15:43:45 +08001461 MSR_IA32_PERF_CAPABILITIES,
Tom Lendacky801e4592018-02-21 13:39:51 -06001462};
1463
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001464static u32 msr_based_features[ARRAY_SIZE(msr_based_features_all)];
Tom Lendacky801e4592018-02-21 13:39:51 -06001465static unsigned int num_msr_based_features;
1466
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001467static u64 kvm_get_arch_capabilities(void)
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001468{
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001469 u64 data = 0;
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001470
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001471 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
1472 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, data);
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001473
1474 /*
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001475 * If nx_huge_pages is enabled, KVM's shadow paging will ensure that
1476 * the nested hypervisor runs with NX huge pages. If it is not,
Ingo Molnard9f6e122021-03-18 15:28:01 +01001477 * L1 is anyway vulnerable to ITLB_MULTIHIT exploits from other
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001478 * L1 guests, so it need not worry about its own (L2) guests.
1479 */
1480 data |= ARCH_CAP_PSCHANGE_MC_NO;
1481
1482 /*
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001483 * If we're doing cache flushes (either "always" or "cond")
1484 * we will do one whenever the guest does a vmlaunch/vmresume.
1485 * If an outer hypervisor is doing the cache flush for us
1486 * (VMENTER_L1D_FLUSH_NESTED_VM), we can safely pass that
1487 * capability to the guest too, and if EPT is disabled we're not
1488 * vulnerable. Overall, only VMENTER_L1D_FLUSH_NEVER will
1489 * require a nested hypervisor to do a flush of its own.
1490 */
1491 if (l1tf_vmx_mitigation != VMENTER_L1D_FLUSH_NEVER)
1492 data |= ARCH_CAP_SKIP_VMENTRY_L1DFLUSH;
1493
Paolo Bonzini0c549142019-08-19 17:24:07 +02001494 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
1495 data |= ARCH_CAP_RDCL_NO;
1496 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1497 data |= ARCH_CAP_SSB_NO;
1498 if (!boot_cpu_has_bug(X86_BUG_MDS))
1499 data |= ARCH_CAP_MDS_NO;
1500
Paolo Bonzini71316362021-01-28 11:45:00 -05001501 if (!boot_cpu_has(X86_FEATURE_RTM)) {
1502 /*
1503 * If RTM=0 because the kernel has disabled TSX, the host might
1504 * have TAA_NO or TSX_CTRL. Clear TAA_NO (the guest sees RTM=0
1505 * and therefore knows that there cannot be TAA) but keep
1506 * TSX_CTRL: some buggy userspaces leave it set on tsx=on hosts,
1507 * and we want to allow migrating those guests to tsx=off hosts.
1508 */
1509 data &= ~ARCH_CAP_TAA_NO;
1510 } else if (!boot_cpu_has_bug(X86_BUG_TAA)) {
Paolo Bonzinicbbaa272019-11-18 18:58:26 +01001511 data |= ARCH_CAP_TAA_NO;
Paolo Bonzini71316362021-01-28 11:45:00 -05001512 } else {
1513 /*
1514 * Nothing to do here; we emulate TSX_CTRL if present on the
1515 * host so the guest can choose between disabling TSX or
1516 * using VERW to clear CPU buffers.
1517 */
1518 }
Pawan Guptae1d38b62019-10-23 12:23:33 +02001519
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001520 return data;
1521}
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001522
Wanpeng Li66421c12018-02-28 14:03:30 +08001523static int kvm_get_msr_feature(struct kvm_msr_entry *msr)
1524{
1525 switch (msr->index) {
Paolo Bonzinicd283252018-06-25 14:04:37 +02001526 case MSR_IA32_ARCH_CAPABILITIES:
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001527 msr->data = kvm_get_arch_capabilities();
1528 break;
1529 case MSR_IA32_UCODE_REV:
Paolo Bonzinicd283252018-06-25 14:04:37 +02001530 rdmsrl_safe(msr->index, &msr->data);
Wanpeng Li518e7b92018-02-28 14:03:31 +08001531 break;
Wanpeng Li66421c12018-02-28 14:03:30 +08001532 default:
Jason Baronb36464772021-01-14 22:27:56 -05001533 return static_call(kvm_x86_get_msr_feature)(msr);
Wanpeng Li66421c12018-02-28 14:03:30 +08001534 }
1535 return 0;
1536}
1537
Tom Lendacky801e4592018-02-21 13:39:51 -06001538static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1539{
1540 struct kvm_msr_entry msr;
Wanpeng Li66421c12018-02-28 14:03:30 +08001541 int r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001542
1543 msr.index = index;
Wanpeng Li66421c12018-02-28 14:03:30 +08001544 r = kvm_get_msr_feature(&msr);
Peter Xu12bc2132020-06-22 18:04:42 -04001545
1546 if (r == KVM_MSR_RET_INVALID) {
1547 /* Unconditionally clear the output for simplicity */
1548 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001549 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001550 r = 0;
Peter Xu12bc2132020-06-22 18:04:42 -04001551 }
1552
Wanpeng Li66421c12018-02-28 14:03:30 +08001553 if (r)
1554 return r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001555
1556 *data = msr.data;
1557
1558 return 0;
1559}
1560
Sean Christopherson11988492019-04-02 08:19:15 -07001561static bool __kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
1562{
1563 if (efer & EFER_FFXSR && !guest_cpuid_has(vcpu, X86_FEATURE_FXSR_OPT))
1564 return false;
1565
1566 if (efer & EFER_SVME && !guest_cpuid_has(vcpu, X86_FEATURE_SVM))
1567 return false;
1568
Sean Christopherson0a629562019-04-02 08:19:16 -07001569 if (efer & (EFER_LME | EFER_LMA) &&
1570 !guest_cpuid_has(vcpu, X86_FEATURE_LM))
1571 return false;
1572
1573 if (efer & EFER_NX && !guest_cpuid_has(vcpu, X86_FEATURE_NX))
1574 return false;
1575
Sean Christopherson11988492019-04-02 08:19:15 -07001576 return true;
1577
1578}
Jan Kiszka384bb782013-04-20 10:52:36 +02001579bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001580{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001581 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001582 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001583
Sean Christopherson11988492019-04-02 08:19:15 -07001584 return __kvm_valid_efer(vcpu, efer);
Jan Kiszka384bb782013-04-20 10:52:36 +02001585}
1586EXPORT_SYMBOL_GPL(kvm_valid_efer);
1587
Sean Christopherson11988492019-04-02 08:19:15 -07001588static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Jan Kiszka384bb782013-04-20 10:52:36 +02001589{
1590 u64 old_efer = vcpu->arch.efer;
Sean Christopherson11988492019-04-02 08:19:15 -07001591 u64 efer = msr_info->data;
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001592 int r;
Jan Kiszka384bb782013-04-20 10:52:36 +02001593
Sean Christopherson11988492019-04-02 08:19:15 -07001594 if (efer & efer_reserved_bits)
Paolo Bonzini66f61c92019-05-24 21:52:46 +02001595 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +02001596
Sean Christopherson11988492019-04-02 08:19:15 -07001597 if (!msr_info->host_initiated) {
1598 if (!__kvm_valid_efer(vcpu, efer))
1599 return 1;
1600
1601 if (is_paging(vcpu) &&
1602 (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1603 return 1;
1604 }
Jan Kiszka384bb782013-04-20 10:52:36 +02001605
Carsten Otte15c4a642007-10-30 18:44:17 +01001606 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001607 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001608
Jason Baronb36464772021-01-14 22:27:56 -05001609 r = static_call(kvm_x86_set_efer)(vcpu, efer);
Maxim Levitsky72f211e2020-10-01 14:29:53 +03001610 if (r) {
1611 WARN_ON(r > 0);
1612 return r;
1613 }
Sheng Yanga3d204e2010-05-12 16:40:40 +08001614
Sheng Yangaad82702010-05-12 16:40:42 +08001615 /* Update reserved bits */
1616 if ((efer ^ old_efer) & EFER_NX)
1617 kvm_mmu_reset_context(vcpu);
1618
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001619 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001620}
1621
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001622void kvm_enable_efer_bits(u64 mask)
1623{
1624 efer_reserved_bits &= ~mask;
1625}
1626EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1627
Alexander Graf51de8152020-09-25 16:34:17 +02001628bool kvm_msr_allowed(struct kvm_vcpu *vcpu, u32 index, u32 type)
1629{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001630 struct kvm_x86_msr_filter *msr_filter;
1631 struct msr_bitmap_range *ranges;
Alexander Graf1a1552542020-09-25 16:34:21 +02001632 struct kvm *kvm = vcpu->kvm;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001633 bool allowed;
Alexander Graf1a1552542020-09-25 16:34:21 +02001634 int idx;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001635 u32 i;
Alexander Graf1a1552542020-09-25 16:34:21 +02001636
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001637 /* x2APIC MSRs do not support filtering. */
1638 if (index >= 0x800 && index <= 0x8ff)
Alexander Graf1a1552542020-09-25 16:34:21 +02001639 return true;
1640
Alexander Graf1a1552542020-09-25 16:34:21 +02001641 idx = srcu_read_lock(&kvm->srcu);
1642
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001643 msr_filter = srcu_dereference(kvm->arch.msr_filter, &kvm->srcu);
1644 if (!msr_filter) {
1645 allowed = true;
1646 goto out;
1647 }
1648
1649 allowed = msr_filter->default_allow;
1650 ranges = msr_filter->ranges;
1651
1652 for (i = 0; i < msr_filter->count; i++) {
Alexander Graf1a1552542020-09-25 16:34:21 +02001653 u32 start = ranges[i].base;
1654 u32 end = start + ranges[i].nmsrs;
1655 u32 flags = ranges[i].flags;
1656 unsigned long *bitmap = ranges[i].bitmap;
1657
1658 if ((index >= start) && (index < end) && (flags & type)) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001659 allowed = !!test_bit(index - start, bitmap);
Alexander Graf1a1552542020-09-25 16:34:21 +02001660 break;
1661 }
1662 }
1663
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001664out:
Alexander Graf1a1552542020-09-25 16:34:21 +02001665 srcu_read_unlock(&kvm->srcu, idx);
1666
Sean Christophersonb318e8d2021-03-16 11:44:33 -07001667 return allowed;
Alexander Graf51de8152020-09-25 16:34:17 +02001668}
1669EXPORT_SYMBOL_GPL(kvm_msr_allowed);
1670
Carsten Otte15c4a642007-10-30 18:44:17 +01001671/*
Sean Christophersonf20935d2019-09-05 14:22:54 -07001672 * Write @data into the MSR specified by @index. Select MSR specific fault
1673 * checks are bypassed if @host_initiated is %true.
Carsten Otte15c4a642007-10-30 18:44:17 +01001674 * Returns 0 on success, non-0 otherwise.
1675 * Assumes vcpu_load() was already called.
1676 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001677static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data,
1678 bool host_initiated)
Carsten Otte15c4a642007-10-30 18:44:17 +01001679{
Sean Christophersonf20935d2019-09-05 14:22:54 -07001680 struct msr_data msr;
1681
Alexander Graf1a1552542020-09-25 16:34:21 +02001682 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_WRITE))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001683 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001684
Sean Christophersonf20935d2019-09-05 14:22:54 -07001685 switch (index) {
Nadav Amit854e8bb2014-09-16 03:24:05 +03001686 case MSR_FS_BASE:
1687 case MSR_GS_BASE:
1688 case MSR_KERNEL_GS_BASE:
1689 case MSR_CSTAR:
1690 case MSR_LSTAR:
Sean Christophersonf20935d2019-09-05 14:22:54 -07001691 if (is_noncanonical_address(data, vcpu))
Nadav Amit854e8bb2014-09-16 03:24:05 +03001692 return 1;
1693 break;
1694 case MSR_IA32_SYSENTER_EIP:
1695 case MSR_IA32_SYSENTER_ESP:
1696 /*
1697 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1698 * non-canonical address is written on Intel but not on
1699 * AMD (which ignores the top 32-bits, because it does
1700 * not implement 64-bit SYSENTER).
1701 *
1702 * 64-bit code should hence be able to write a non-canonical
1703 * value on AMD. Making the address canonical ensures that
1704 * vmentry does not fail on Intel after writing a non-canonical
1705 * value, and that something deterministic happens if the guest
1706 * invokes 64-bit SYSENTER.
1707 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001708 data = get_canonical(data, vcpu_virt_addr_bits(vcpu));
Sean Christopherson61a05d42021-05-04 10:17:33 -07001709 break;
1710 case MSR_TSC_AUX:
1711 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1712 return 1;
1713
1714 if (!host_initiated &&
1715 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1716 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1717 return 1;
1718
1719 /*
1720 * Per Intel's SDM, bits 63:32 are reserved, but AMD's APM has
1721 * incomplete and conflicting architectural behavior. Current
1722 * AMD CPUs completely ignore bits 63:32, i.e. they aren't
1723 * reserved and always read as zeros. Enforce Intel's reserved
1724 * bits check if and only if the guest CPU is Intel, and clear
1725 * the bits in all other cases. This ensures cross-vendor
1726 * migration will provide consistent behavior for the guest.
1727 */
1728 if (guest_cpuid_is_intel(vcpu) && (data >> 32) != 0)
1729 return 1;
1730
1731 data = (u32)data;
1732 break;
Nadav Amit854e8bb2014-09-16 03:24:05 +03001733 }
Sean Christophersonf20935d2019-09-05 14:22:54 -07001734
1735 msr.data = data;
1736 msr.index = index;
1737 msr.host_initiated = host_initiated;
1738
Jason Baronb36464772021-01-14 22:27:56 -05001739 return static_call(kvm_x86_set_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001740}
1741
Peter Xu6abe9c12020-06-22 18:04:41 -04001742static int kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu,
1743 u32 index, u64 data, bool host_initiated)
1744{
1745 int ret = __kvm_set_msr(vcpu, index, data, host_initiated);
1746
1747 if (ret == KVM_MSR_RET_INVALID)
Haiwei Lid6328262021-03-13 13:10:32 +08001748 if (kvm_msr_ignored_check(index, data, true))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001749 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001750
1751 return ret;
1752}
1753
Sean Christophersonf20935d2019-09-05 14:22:54 -07001754/*
1755 * Read the MSR specified by @index into @data. Select MSR specific fault
1756 * checks are bypassed if @host_initiated is %true.
1757 * Returns 0 on success, non-0 otherwise.
1758 * Assumes vcpu_load() was already called.
1759 */
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001760int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data,
1761 bool host_initiated)
Sean Christophersonf20935d2019-09-05 14:22:54 -07001762{
1763 struct msr_data msr;
1764 int ret;
1765
Alexander Graf1a1552542020-09-25 16:34:21 +02001766 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_READ))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001767 return KVM_MSR_RET_FILTERED;
Alexander Graf1a1552542020-09-25 16:34:21 +02001768
Sean Christopherson61a05d42021-05-04 10:17:33 -07001769 switch (index) {
1770 case MSR_TSC_AUX:
1771 if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX))
1772 return 1;
1773
1774 if (!host_initiated &&
1775 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) &&
1776 !guest_cpuid_has(vcpu, X86_FEATURE_RDPID))
1777 return 1;
1778 break;
1779 }
1780
Sean Christophersonf20935d2019-09-05 14:22:54 -07001781 msr.index = index;
1782 msr.host_initiated = host_initiated;
1783
Jason Baronb36464772021-01-14 22:27:56 -05001784 ret = static_call(kvm_x86_get_msr)(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001785 if (!ret)
1786 *data = msr.data;
1787 return ret;
1788}
1789
Peter Xu6abe9c12020-06-22 18:04:41 -04001790static int kvm_get_msr_ignored_check(struct kvm_vcpu *vcpu,
1791 u32 index, u64 *data, bool host_initiated)
1792{
1793 int ret = __kvm_get_msr(vcpu, index, data, host_initiated);
1794
1795 if (ret == KVM_MSR_RET_INVALID) {
1796 /* Unconditionally clear *data for simplicity */
1797 *data = 0;
Haiwei Lid6328262021-03-13 13:10:32 +08001798 if (kvm_msr_ignored_check(index, 0, false))
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001799 ret = 0;
Peter Xu6abe9c12020-06-22 18:04:41 -04001800 }
1801
1802 return ret;
1803}
1804
Sean Christophersonf20935d2019-09-05 14:22:54 -07001805int kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data)
1806{
Peter Xu6abe9c12020-06-22 18:04:41 -04001807 return kvm_get_msr_ignored_check(vcpu, index, data, false);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001808}
1809EXPORT_SYMBOL_GPL(kvm_get_msr);
1810
1811int kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data)
1812{
Peter Xu6abe9c12020-06-22 18:04:41 -04001813 return kvm_set_msr_ignored_check(vcpu, index, data, false);
Carsten Otte15c4a642007-10-30 18:44:17 +01001814}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001815EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001816
Paolo Bonzini8b474422020-12-14 07:44:46 -05001817static int complete_emulated_rdmsr(struct kvm_vcpu *vcpu)
Alexander Graf1ae09952020-09-25 16:34:16 +02001818{
Paolo Bonzini8b474422020-12-14 07:44:46 -05001819 int err = vcpu->run->msr.error;
1820 if (!err) {
Alexander Graf1ae09952020-09-25 16:34:16 +02001821 kvm_rax_write(vcpu, (u32)vcpu->run->msr.data);
1822 kvm_rdx_write(vcpu, vcpu->run->msr.data >> 32);
1823 }
1824
Jason Baronb36464772021-01-14 22:27:56 -05001825 return static_call(kvm_x86_complete_emulated_msr)(vcpu, err);
Alexander Graf1ae09952020-09-25 16:34:16 +02001826}
1827
1828static int complete_emulated_wrmsr(struct kvm_vcpu *vcpu)
1829{
Jason Baronb36464772021-01-14 22:27:56 -05001830 return static_call(kvm_x86_complete_emulated_msr)(vcpu, vcpu->run->msr.error);
Alexander Graf1ae09952020-09-25 16:34:16 +02001831}
1832
1833static u64 kvm_msr_reason(int r)
1834{
1835 switch (r) {
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001836 case KVM_MSR_RET_INVALID:
Alexander Graf1ae09952020-09-25 16:34:16 +02001837 return KVM_MSR_EXIT_REASON_UNKNOWN;
Maxim Levitskycc4cb012020-11-01 13:55:23 +02001838 case KVM_MSR_RET_FILTERED:
Alexander Graf1a1552542020-09-25 16:34:21 +02001839 return KVM_MSR_EXIT_REASON_FILTER;
Alexander Graf1ae09952020-09-25 16:34:16 +02001840 default:
1841 return KVM_MSR_EXIT_REASON_INVAL;
1842 }
1843}
1844
1845static int kvm_msr_user_space(struct kvm_vcpu *vcpu, u32 index,
1846 u32 exit_reason, u64 data,
1847 int (*completion)(struct kvm_vcpu *vcpu),
1848 int r)
1849{
1850 u64 msr_reason = kvm_msr_reason(r);
1851
1852 /* Check if the user wanted to know about this MSR fault */
1853 if (!(vcpu->kvm->arch.user_space_msr_mask & msr_reason))
1854 return 0;
1855
1856 vcpu->run->exit_reason = exit_reason;
1857 vcpu->run->msr.error = 0;
1858 memset(vcpu->run->msr.pad, 0, sizeof(vcpu->run->msr.pad));
1859 vcpu->run->msr.reason = msr_reason;
1860 vcpu->run->msr.index = index;
1861 vcpu->run->msr.data = data;
1862 vcpu->arch.complete_userspace_io = completion;
1863
1864 return 1;
1865}
1866
1867static int kvm_get_msr_user_space(struct kvm_vcpu *vcpu, u32 index, int r)
1868{
1869 return kvm_msr_user_space(vcpu, index, KVM_EXIT_X86_RDMSR, 0,
1870 complete_emulated_rdmsr, r);
1871}
1872
1873static int kvm_set_msr_user_space(struct kvm_vcpu *vcpu, u32 index, u64 data, int r)
1874{
1875 return kvm_msr_user_space(vcpu, index, KVM_EXIT_X86_WRMSR, data,
1876 complete_emulated_wrmsr, r);
1877}
1878
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001879int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu)
1880{
1881 u32 ecx = kvm_rcx_read(vcpu);
1882 u64 data;
Alexander Graf1ae09952020-09-25 16:34:16 +02001883 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001884
Alexander Graf1ae09952020-09-25 16:34:16 +02001885 r = kvm_get_msr(vcpu, ecx, &data);
1886
1887 /* MSR read failed? See if we should ask user space */
1888 if (r && kvm_get_msr_user_space(vcpu, ecx, r)) {
1889 /* Bounce to user space */
1890 return 0;
1891 }
1892
Paolo Bonzini8b474422020-12-14 07:44:46 -05001893 if (!r) {
1894 trace_kvm_msr_read(ecx, data);
1895
1896 kvm_rax_write(vcpu, data & -1u);
1897 kvm_rdx_write(vcpu, (data >> 32) & -1u);
1898 } else {
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001899 trace_kvm_msr_read_ex(ecx);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001900 }
1901
Jason Baronb36464772021-01-14 22:27:56 -05001902 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001903}
1904EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr);
1905
1906int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu)
1907{
1908 u32 ecx = kvm_rcx_read(vcpu);
1909 u64 data = kvm_read_edx_eax(vcpu);
Alexander Graf1ae09952020-09-25 16:34:16 +02001910 int r;
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001911
Alexander Graf1ae09952020-09-25 16:34:16 +02001912 r = kvm_set_msr(vcpu, ecx, data);
1913
1914 /* MSR write failed? See if we should ask user space */
Maxim Levitsky7dffeca2020-10-01 14:29:52 +03001915 if (r && kvm_set_msr_user_space(vcpu, ecx, data, r))
Alexander Graf1ae09952020-09-25 16:34:16 +02001916 /* Bounce to user space */
1917 return 0;
Maxim Levitsky7dffeca2020-10-01 14:29:52 +03001918
1919 /* Signal all other negative errors to userspace */
1920 if (r < 0)
1921 return r;
Alexander Graf1ae09952020-09-25 16:34:16 +02001922
Paolo Bonzini8b474422020-12-14 07:44:46 -05001923 if (!r)
1924 trace_kvm_msr_write(ecx, data);
1925 else
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001926 trace_kvm_msr_write_ex(ecx, data);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001927
Jason Baronb36464772021-01-14 22:27:56 -05001928 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001929}
1930EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr);
1931
Sean Christopherson5ff3a352021-02-04 16:57:47 -08001932int kvm_emulate_as_nop(struct kvm_vcpu *vcpu)
1933{
1934 return kvm_skip_emulated_instruction(vcpu);
1935}
1936EXPORT_SYMBOL_GPL(kvm_emulate_as_nop);
1937
1938int kvm_emulate_invd(struct kvm_vcpu *vcpu)
1939{
1940 /* Treat an INVD instruction as a NOP and just skip it. */
1941 return kvm_emulate_as_nop(vcpu);
1942}
1943EXPORT_SYMBOL_GPL(kvm_emulate_invd);
1944
1945int kvm_emulate_mwait(struct kvm_vcpu *vcpu)
1946{
1947 pr_warn_once("kvm: MWAIT instruction emulated as NOP!\n");
1948 return kvm_emulate_as_nop(vcpu);
1949}
1950EXPORT_SYMBOL_GPL(kvm_emulate_mwait);
1951
1952int kvm_handle_invalid_op(struct kvm_vcpu *vcpu)
1953{
1954 kvm_queue_exception(vcpu, UD_VECTOR);
1955 return 1;
1956}
1957EXPORT_SYMBOL_GPL(kvm_handle_invalid_op);
1958
1959int kvm_emulate_monitor(struct kvm_vcpu *vcpu)
1960{
1961 pr_warn_once("kvm: MONITOR instruction emulated as NOP!\n");
1962 return kvm_emulate_as_nop(vcpu);
1963}
1964EXPORT_SYMBOL_GPL(kvm_emulate_monitor);
1965
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05001966static inline bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu)
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001967{
Frederic Weisbecker4ae7dc92021-02-01 00:05:48 +01001968 xfer_to_guest_mode_prepare();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001969 return vcpu->mode == EXITING_GUEST_MODE || kvm_request_pending(vcpu) ||
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +02001970 xfer_to_guest_mode_work_pending();
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001971}
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001972
Carsten Otte313a3dc2007-10-11 19:16:52 +02001973/*
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001974 * The fast path for frequent and performance sensitive wrmsr emulation,
1975 * i.e. the sending of IPI, sending IPI early in the VM-Exit flow reduces
1976 * the latency of virtual IPI by avoiding the expensive bits of transitioning
1977 * from guest to host, e.g. reacquiring KVM's SRCU lock. In contrast to the
1978 * other cases which must be called after interrupts are enabled on the host.
1979 */
1980static int handle_fastpath_set_x2apic_icr_irqoff(struct kvm_vcpu *vcpu, u64 data)
1981{
Wanpeng Lie1be9ac2020-03-26 10:20:01 +08001982 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(vcpu->arch.apic))
1983 return 1;
1984
1985 if (((data & APIC_SHORT_MASK) == APIC_DEST_NOSHORT) &&
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001986 ((data & APIC_DEST_MASK) == APIC_DEST_PHYSICAL) &&
Wanpeng Li4064a4c2020-04-02 16:20:26 +08001987 ((data & APIC_MODE_MASK) == APIC_DM_FIXED) &&
1988 ((u32)(data >> 32) != X2APIC_BROADCAST)) {
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001989
Wanpeng Lid5361672020-03-26 10:20:02 +08001990 data &= ~(1 << 12);
1991 kvm_apic_send_ipi(vcpu->arch.apic, (u32)data, (u32)(data >> 32));
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001992 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR2, (u32)(data >> 32));
Wanpeng Lid5361672020-03-26 10:20:02 +08001993 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR, (u32)data);
1994 trace_kvm_apic_write(APIC_ICR, (u32)data);
1995 return 0;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001996 }
1997
1998 return 1;
1999}
2000
Wanpeng Liae95f562020-04-28 14:23:28 +08002001static int handle_fastpath_set_tscdeadline(struct kvm_vcpu *vcpu, u64 data)
2002{
2003 if (!kvm_can_use_hv_timer(vcpu))
2004 return 1;
2005
2006 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2007 return 0;
2008}
2009
Wanpeng Li404d5d72020-04-28 14:23:25 +08002010fastpath_t handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002011{
2012 u32 msr = kvm_rcx_read(vcpu);
Wanpeng Li8a1038d2020-03-26 10:20:00 +08002013 u64 data;
Wanpeng Li404d5d72020-04-28 14:23:25 +08002014 fastpath_t ret = EXIT_FASTPATH_NONE;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002015
2016 switch (msr) {
2017 case APIC_BASE_MSR + (APIC_ICR >> 4):
Wanpeng Li8a1038d2020-03-26 10:20:00 +08002018 data = kvm_read_edx_eax(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08002019 if (!handle_fastpath_set_x2apic_icr_irqoff(vcpu, data)) {
2020 kvm_skip_emulated_instruction(vcpu);
2021 ret = EXIT_FASTPATH_EXIT_HANDLED;
Haiwei Li80bc97f2020-05-18 09:31:38 +08002022 }
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002023 break;
Dave Hansen09141ec2020-03-05 09:47:06 -08002024 case MSR_IA32_TSC_DEADLINE:
Wanpeng Liae95f562020-04-28 14:23:28 +08002025 data = kvm_read_edx_eax(vcpu);
2026 if (!handle_fastpath_set_tscdeadline(vcpu, data)) {
2027 kvm_skip_emulated_instruction(vcpu);
2028 ret = EXIT_FASTPATH_REENTER_GUEST;
2029 }
2030 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002031 default:
Wanpeng Li404d5d72020-04-28 14:23:25 +08002032 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002033 }
2034
Wanpeng Li404d5d72020-04-28 14:23:25 +08002035 if (ret != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002036 trace_kvm_msr_write(msr, data);
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002037
Wanpeng Li404d5d72020-04-28 14:23:25 +08002038 return ret;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08002039}
2040EXPORT_SYMBOL_GPL(handle_fastpath_set_msr_irqoff);
2041
2042/*
Carsten Otte313a3dc2007-10-11 19:16:52 +02002043 * Adapt set_msr() to msr_io()'s calling convention
2044 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002045static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2046{
Peter Xu6abe9c12020-06-22 18:04:41 -04002047 return kvm_get_msr_ignored_check(vcpu, index, data, true);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02002048}
2049
Carsten Otte313a3dc2007-10-11 19:16:52 +02002050static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2051{
Peter Xu6abe9c12020-06-22 18:04:41 -04002052 return kvm_set_msr_ignored_check(vcpu, index, *data, true);
Carsten Otte313a3dc2007-10-11 19:16:52 +02002053}
2054
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002055#ifdef CONFIG_X86_64
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002056struct pvclock_clock {
2057 int vclock_mode;
2058 u64 cycle_last;
2059 u64 mask;
2060 u32 mult;
2061 u32 shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002062 u64 base_cycles;
2063 u64 offset;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002064};
2065
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002066struct pvclock_gtod_data {
2067 seqcount_t seq;
2068
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002069 struct pvclock_clock clock; /* extract of a clocksource struct */
2070 struct pvclock_clock raw_clock; /* extract of a clocksource struct */
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002071
Paolo Bonzini917f9472020-01-22 14:32:20 +01002072 ktime_t offs_boot;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002073 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002074};
2075
2076static struct pvclock_gtod_data pvclock_gtod_data;
2077
2078static void update_pvclock_gtod(struct timekeeper *tk)
2079{
2080 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
2081
2082 write_seqcount_begin(&vdata->seq);
2083
2084 /* copy pvclock gtod data */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002085 vdata->clock.vclock_mode = tk->tkr_mono.clock->vdso_clock_mode;
Peter Zijlstra876e7882015-03-19 10:09:06 +01002086 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
2087 vdata->clock.mask = tk->tkr_mono.mask;
2088 vdata->clock.mult = tk->tkr_mono.mult;
2089 vdata->clock.shift = tk->tkr_mono.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002090 vdata->clock.base_cycles = tk->tkr_mono.xtime_nsec;
2091 vdata->clock.offset = tk->tkr_mono.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002092
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002093 vdata->raw_clock.vclock_mode = tk->tkr_raw.clock->vdso_clock_mode;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002094 vdata->raw_clock.cycle_last = tk->tkr_raw.cycle_last;
2095 vdata->raw_clock.mask = tk->tkr_raw.mask;
2096 vdata->raw_clock.mult = tk->tkr_raw.mult;
2097 vdata->raw_clock.shift = tk->tkr_raw.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002098 vdata->raw_clock.base_cycles = tk->tkr_raw.xtime_nsec;
2099 vdata->raw_clock.offset = tk->tkr_raw.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002100
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002101 vdata->wall_time_sec = tk->xtime_sec;
2102
Paolo Bonzini917f9472020-01-22 14:32:20 +01002103 vdata->offs_boot = tk->offs_boot;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002104
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002105 write_seqcount_end(&vdata->seq);
2106}
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002107
2108static s64 get_kvmclock_base_ns(void)
2109{
2110 /* Count up from boot time, but with the frequency of the raw clock. */
2111 return ktime_to_ns(ktime_add(ktime_get_raw(), pvclock_gtod_data.offs_boot));
2112}
2113#else
2114static s64 get_kvmclock_base_ns(void)
2115{
2116 /* Master clock not used, so we can just use CLOCK_BOOTTIME. */
2117 return ktime_get_boottime_ns();
2118}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002119#endif
2120
Joao Martins629b5342018-06-28 15:06:43 -04002121void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock, int sec_hi_ofs)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002122{
Avi Kivity9ed3c442010-05-04 15:00:37 +03002123 int version;
2124 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002125 struct pvclock_wall_clock wc;
Joao Martins629b5342018-06-28 15:06:43 -04002126 u32 wc_sec_hi;
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002127 u64 wall_nsec;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002128
2129 if (!wall_clock)
2130 return;
2131
Avi Kivity9ed3c442010-05-04 15:00:37 +03002132 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
2133 if (r)
2134 return;
2135
2136 if (version & 1)
2137 ++version; /* first time write, random junk */
2138
2139 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002140
Nicholas Krause1dab1342015-12-30 13:08:46 -05002141 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
2142 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002143
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002144 /*
2145 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10002146 * system time (updated by kvm_guest_time_update below) to the
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002147 * wall clock specified here. We do the reverse here.
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002148 */
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002149 wall_nsec = ktime_get_real_ns() - get_kvmclock_ns(kvm);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002150
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002151 wc.nsec = do_div(wall_nsec, 1000000000);
2152 wc.sec = (u32)wall_nsec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002153 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002154
2155 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
2156
Joao Martins629b5342018-06-28 15:06:43 -04002157 if (sec_hi_ofs) {
2158 wc_sec_hi = wall_nsec >> 32;
2159 kvm_write_guest(kvm, wall_clock + sec_hi_ofs,
2160 &wc_sec_hi, sizeof(wc_sec_hi));
2161 }
2162
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002163 version++;
2164 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002165}
2166
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002167static void kvm_write_system_time(struct kvm_vcpu *vcpu, gpa_t system_time,
2168 bool old_msr, bool host_initiated)
2169{
2170 struct kvm_arch *ka = &vcpu->kvm->arch;
2171
2172 if (vcpu->vcpu_id == 0 && !host_initiated) {
Oliver Upton1e293d12020-10-27 16:10:43 -07002173 if (ka->boot_vcpu_runs_old_kvmclock != old_msr)
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00002174 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2175
2176 ka->boot_vcpu_runs_old_kvmclock = old_msr;
2177 }
2178
2179 vcpu->arch.time = system_time;
2180 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
2181
2182 /* we verify if the enable bit is set... */
2183 vcpu->arch.pv_time_enabled = false;
2184 if (!(system_time & 1))
2185 return;
2186
2187 if (!kvm_gfn_to_hva_cache_init(vcpu->kvm,
2188 &vcpu->arch.pv_time, system_time & ~1ULL,
2189 sizeof(struct pvclock_vcpu_time_info)))
2190 vcpu->arch.pv_time_enabled = true;
2191
2192 return;
2193}
2194
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002195static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
2196{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01002197 do_shl32_div32(dividend, divisor);
2198 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002199}
2200
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002201static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002202 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002203{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002204 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002205 int32_t shift = 0;
2206 uint64_t tps64;
2207 uint32_t tps32;
2208
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002209 tps64 = base_hz;
2210 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02002211 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002212 tps64 >>= 1;
2213 shift--;
2214 }
2215
2216 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02002217 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
2218 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002219 scaled64 >>= 1;
2220 else
2221 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002222 shift++;
2223 }
2224
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002225 *pshift = shift;
2226 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002227}
2228
Marcelo Tosattid8281992012-11-27 23:29:01 -02002229#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002230static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002231#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02002232
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002233static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08002234static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002235
Zachary Amsdencc578282012-02-03 15:43:50 -02002236static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10002237{
Zachary Amsdencc578282012-02-03 15:43:50 -02002238 u64 v = (u64)khz * (1000000 + ppm);
2239 do_div(v, 1000000);
2240 return v;
2241}
2242
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002243static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier);
2244
Haozhong Zhang381d5852015-10-20 15:39:04 +08002245static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
2246{
2247 u64 ratio;
2248
2249 /* Guest TSC same frequency as host TSC? */
2250 if (!scale) {
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002251 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002252 return 0;
2253 }
2254
2255 /* TSC scaling supported? */
2256 if (!kvm_has_tsc_control) {
2257 if (user_tsc_khz > tsc_khz) {
2258 vcpu->arch.tsc_catchup = 1;
2259 vcpu->arch.tsc_always_catchup = 1;
2260 return 0;
2261 } else {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002262 pr_warn_ratelimited("user requested TSC rate below hardware speed\n");
Haozhong Zhang381d5852015-10-20 15:39:04 +08002263 return -1;
2264 }
2265 }
2266
2267 /* TSC scaling required - calculate ratio */
2268 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
2269 user_tsc_khz, tsc_khz);
2270
2271 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02002272 pr_warn_ratelimited("Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
2273 user_tsc_khz);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002274 return -1;
2275 }
2276
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002277 kvm_vcpu_write_tsc_multiplier(vcpu, ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002278 return 0;
2279}
2280
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002281static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02002282{
2283 u32 thresh_lo, thresh_hi;
2284 int use_scaling = 0;
2285
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002286 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002287 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08002288 /* set tsc_scaling_ratio to a safe value */
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002289 kvm_vcpu_write_tsc_multiplier(vcpu, kvm_default_tsc_scaling_ratio);
Haozhong Zhang381d5852015-10-20 15:39:04 +08002290 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08002291 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002292
Zachary Amsdenc2855452010-09-18 14:38:15 -10002293 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002294 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02002295 &vcpu->arch.virtual_tsc_shift,
2296 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002297 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02002298
2299 /*
2300 * Compute the variation in TSC rate which is acceptable
2301 * within the range of tolerance and decide if the
2302 * rate being applied is within that bounds of the hardware
2303 * rate. If so, no scaling or compensation need be done.
2304 */
2305 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
2306 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002307 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
2308 pr_debug("kvm: requested TSC rate %u falls outside tolerance [%u,%u]\n", user_tsc_khz, thresh_lo, thresh_hi);
Zachary Amsdencc578282012-02-03 15:43:50 -02002309 use_scaling = 1;
2310 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01002311 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002312}
2313
2314static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
2315{
Zachary Amsdene26101b2012-02-03 15:43:57 -02002316 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02002317 vcpu->arch.virtual_tsc_mult,
2318 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002319 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10002320 return tsc;
2321}
2322
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002323static inline int gtod_is_based_on_tsc(int mode)
2324{
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002325 return mode == VDSO_CLOCKMODE_TSC || mode == VDSO_CLOCKMODE_HVCLOCK;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002326}
2327
Fengguang Wu69b00492015-01-19 22:33:39 +08002328static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002329{
2330#ifdef CONFIG_X86_64
2331 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002332 struct kvm_arch *ka = &vcpu->kvm->arch;
2333 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2334
2335 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2336 atomic_read(&vcpu->kvm->online_vcpus));
2337
Marcelo Tosatti7f187922014-11-04 21:30:44 -02002338 /*
2339 * Once the masterclock is enabled, always perform request in
2340 * order to update it.
2341 *
2342 * In order to enable masterclock, the host clocksource must be TSC
2343 * and the vcpus need to have matched TSCs. When that happens,
2344 * perform request to enable masterclock.
2345 */
2346 if (ka->use_master_clock ||
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002347 (gtod_is_based_on_tsc(gtod->clock.vclock_mode) && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002348 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2349
2350 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
2351 atomic_read(&vcpu->kvm->online_vcpus),
2352 ka->use_master_clock, gtod->clock.vclock_mode);
2353#endif
2354}
2355
Haozhong Zhang35181e82015-10-20 15:39:03 +08002356/*
2357 * Multiply tsc by a fixed point number represented by ratio.
2358 *
2359 * The most significant 64-N bits (mult) of ratio represent the
2360 * integral part of the fixed point number; the remaining N bits
2361 * (frac) represent the fractional part, ie. ratio represents a fixed
2362 * point number (mult + frac * 2^(-N)).
2363 *
2364 * N equals to kvm_tsc_scaling_ratio_frac_bits.
2365 */
2366static inline u64 __scale_tsc(u64 ratio, u64 tsc)
2367{
2368 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
2369}
2370
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002371u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc, u64 ratio)
Haozhong Zhang35181e82015-10-20 15:39:03 +08002372{
2373 u64 _tsc = tsc;
Haozhong Zhang35181e82015-10-20 15:39:03 +08002374
2375 if (ratio != kvm_default_tsc_scaling_ratio)
2376 _tsc = __scale_tsc(ratio, tsc);
2377
2378 return _tsc;
2379}
2380EXPORT_SYMBOL_GPL(kvm_scale_tsc);
2381
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002382static u64 kvm_compute_l1_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
Haozhong Zhang07c14192015-10-20 15:39:05 +08002383{
2384 u64 tsc;
2385
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002386 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang07c14192015-10-20 15:39:05 +08002387
2388 return target_tsc - tsc;
2389}
2390
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002391u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
2392{
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002393 return vcpu->arch.l1_tsc_offset +
2394 kvm_scale_tsc(vcpu, host_tsc, vcpu->arch.l1_tsc_scaling_ratio);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002395}
2396EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
2397
Ilias Stamatis83150f22021-05-26 19:44:14 +01002398u64 kvm_calc_nested_tsc_offset(u64 l1_offset, u64 l2_offset, u64 l2_multiplier)
2399{
2400 u64 nested_offset;
2401
2402 if (l2_multiplier == kvm_default_tsc_scaling_ratio)
2403 nested_offset = l1_offset;
2404 else
2405 nested_offset = mul_s64_u64_shr((s64) l1_offset, l2_multiplier,
2406 kvm_tsc_scaling_ratio_frac_bits);
2407
2408 nested_offset += l2_offset;
2409 return nested_offset;
2410}
2411EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_offset);
2412
2413u64 kvm_calc_nested_tsc_multiplier(u64 l1_multiplier, u64 l2_multiplier)
2414{
2415 if (l2_multiplier != kvm_default_tsc_scaling_ratio)
2416 return mul_u64_u64_shr(l1_multiplier, l2_multiplier,
2417 kvm_tsc_scaling_ratio_frac_bits);
2418
2419 return l1_multiplier;
2420}
2421EXPORT_SYMBOL_GPL(kvm_calc_nested_tsc_multiplier);
2422
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002423static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 l1_offset)
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002424{
Ilias Stamatisedcfe542021-05-26 19:44:15 +01002425 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2426 vcpu->arch.l1_tsc_offset,
2427 l1_offset);
2428
2429 vcpu->arch.l1_tsc_offset = l1_offset;
2430
2431 /*
2432 * If we are here because L1 chose not to trap WRMSR to TSC then
2433 * according to the spec this should set L1's TSC (as opposed to
2434 * setting L1's offset for L2).
2435 */
2436 if (is_guest_mode(vcpu))
2437 vcpu->arch.tsc_offset = kvm_calc_nested_tsc_offset(
2438 l1_offset,
2439 static_call(kvm_x86_get_l2_tsc_offset)(vcpu),
2440 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2441 else
2442 vcpu->arch.tsc_offset = l1_offset;
2443
2444 static_call(kvm_x86_write_tsc_offset)(vcpu, vcpu->arch.tsc_offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002445}
2446
Ilias Stamatis1ab92872021-06-07 11:54:38 +01002447static void kvm_vcpu_write_tsc_multiplier(struct kvm_vcpu *vcpu, u64 l1_multiplier)
2448{
2449 vcpu->arch.l1_tsc_scaling_ratio = l1_multiplier;
2450
2451 /* Userspace is changing the multiplier while L2 is active */
2452 if (is_guest_mode(vcpu))
2453 vcpu->arch.tsc_scaling_ratio = kvm_calc_nested_tsc_multiplier(
2454 l1_multiplier,
2455 static_call(kvm_x86_get_l2_tsc_multiplier)(vcpu));
2456 else
2457 vcpu->arch.tsc_scaling_ratio = l1_multiplier;
2458
2459 if (kvm_has_tsc_control)
2460 static_call(kvm_x86_write_tsc_multiplier)(
2461 vcpu, vcpu->arch.tsc_scaling_ratio);
2462}
2463
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002464static inline bool kvm_check_tsc_unstable(void)
2465{
2466#ifdef CONFIG_X86_64
2467 /*
2468 * TSC is marked unstable when we're running on Hyper-V,
2469 * 'TSC page' clocksource is good.
2470 */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002471 if (pvclock_gtod_data.clock.vclock_mode == VDSO_CLOCKMODE_HVCLOCK)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002472 return false;
2473#endif
2474 return check_tsc_unstable();
2475}
2476
Oliver Upton58d42772021-09-16 18:15:37 +00002477/*
2478 * Infers attempts to synchronize the guest's tsc from host writes. Sets the
2479 * offset for the vcpu and tracks the TSC matching generation that the vcpu
2480 * participates in.
2481 */
2482static void __kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 offset, u64 tsc,
2483 u64 ns, bool matched)
2484{
2485 struct kvm *kvm = vcpu->kvm;
2486
2487 lockdep_assert_held(&kvm->arch.tsc_write_lock);
2488
2489 /*
2490 * We also track th most recent recorded KHZ, write and time to
2491 * allow the matching interval to be extended at each write.
2492 */
2493 kvm->arch.last_tsc_nsec = ns;
2494 kvm->arch.last_tsc_write = tsc;
2495 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Oliver Upton828ca892021-09-16 18:15:38 +00002496 kvm->arch.last_tsc_offset = offset;
Oliver Upton58d42772021-09-16 18:15:37 +00002497
2498 vcpu->arch.last_guest_tsc = tsc;
2499
2500 kvm_vcpu_write_tsc_offset(vcpu, offset);
2501
2502 if (!matched) {
2503 /*
2504 * We split periods of matched TSC writes into generations.
2505 * For each generation, we track the original measured
2506 * nanosecond time, offset, and write, so if TSCs are in
2507 * sync, we can match exact offset, and if not, we can match
2508 * exact software computation in compute_guest_tsc()
2509 *
2510 * These values are tracked in kvm->arch.cur_xxx variables.
2511 */
2512 kvm->arch.cur_tsc_generation++;
2513 kvm->arch.cur_tsc_nsec = ns;
2514 kvm->arch.cur_tsc_write = tsc;
2515 kvm->arch.cur_tsc_offset = offset;
2516 kvm->arch.nr_vcpus_matched_tsc = 0;
2517 } else if (vcpu->arch.this_tsc_generation != kvm->arch.cur_tsc_generation) {
2518 kvm->arch.nr_vcpus_matched_tsc++;
2519 }
2520
2521 /* Keep track of which generation this VCPU has synchronized to */
2522 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
2523 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
2524 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
2525
2526 kvm_track_tsc_matching(vcpu);
2527}
2528
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002529static void kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 data)
Zachary Amsden99e3e302010-08-19 22:07:17 -10002530{
2531 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002532 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002533 unsigned long flags;
Oliver Upton58d42772021-09-16 18:15:37 +00002534 bool matched = false;
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002535 bool synchronizing = false;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002536
Jan Kiszka038f8c12011-02-04 10:49:11 +01002537 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002538 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002539 ns = get_kvmclock_base_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002540 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002541
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002542 if (vcpu->arch.virtual_tsc_khz) {
Paolo Bonzini0c899c22020-09-24 14:45:27 +02002543 if (data == 0) {
Denis Plotnikovbd8fab32017-04-07 12:09:53 +03002544 /*
2545 * detection of vcpu initialization -- need to sync
2546 * with other vCPUs. This particularly helps to keep
2547 * kvm_clock stable after CPU hotplug
2548 */
2549 synchronizing = true;
2550 } else {
2551 u64 tsc_exp = kvm->arch.last_tsc_write +
2552 nsec_to_cycles(vcpu, elapsed);
2553 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
2554 /*
2555 * Special case: TSC write with a small delta (1 second)
2556 * of virtual cycle time against real time is
2557 * interpreted as an attempt to synchronize the CPU.
2558 */
2559 synchronizing = data < tsc_exp + tsc_hz &&
2560 data + tsc_hz > tsc_exp;
2561 }
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002562 }
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002563
2564 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002565 * For a reliable TSC, we can match TSC offsets, and for an unstable
2566 * TSC, we add elapsed time in this computation. We could let the
2567 * compensation code attempt to catch up if we fall behind, but
2568 * it's better to try to match offsets from the beginning.
2569 */
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002570 if (synchronizing &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002571 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002572 if (!kvm_check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02002573 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002574 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01002575 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002576 data += delta;
Ilias Stamatis9b399df2021-05-26 19:44:10 +01002577 offset = kvm_compute_l1_tsc_offset(vcpu, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002578 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002579 matched = true;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002580 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02002581
Oliver Upton58d42772021-09-16 18:15:37 +00002582 __kvm_synchronize_tsc(vcpu, offset, data, ns, matched);
Paolo Bonzini869b4422021-09-16 18:15:36 +00002583 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002584}
Zachary Amsdene26101b2012-02-03 15:43:57 -02002585
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002586static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
2587 s64 adjustment)
2588{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07002589 u64 tsc_offset = vcpu->arch.l1_tsc_offset;
Leonid Shatz326e7422018-11-06 12:14:25 +02002590 kvm_vcpu_write_tsc_offset(vcpu, tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002591}
2592
2593static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
2594{
Ilias Stamatis805d7052021-05-26 19:44:09 +01002595 if (vcpu->arch.l1_tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002596 WARN_ON(adjustment < 0);
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01002597 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment,
2598 vcpu->arch.l1_tsc_scaling_ratio);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01002599 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002600}
2601
Marcelo Tosattid8281992012-11-27 23:29:01 -02002602#ifdef CONFIG_X86_64
2603
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002604static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002605{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002606 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02002607 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002608
2609 if (likely(ret >= last))
2610 return ret;
2611
2612 /*
2613 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08002614 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02002615 * very likely) and there's a data dependence, so force GCC
2616 * to generate a branch instead. I don't barrier() because
2617 * we don't actually need a barrier, and if this function
2618 * ever gets inlined it will generate worse code.
2619 */
2620 asm volatile ("");
2621 return last;
2622}
2623
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002624static inline u64 vgettsc(struct pvclock_clock *clock, u64 *tsc_timestamp,
2625 int *mode)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002626{
2627 long v;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002628 u64 tsc_pg_val;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002629
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002630 switch (clock->vclock_mode) {
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002631 case VDSO_CLOCKMODE_HVCLOCK:
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002632 tsc_pg_val = hv_read_tsc_page_tsc(hv_get_tsc_page(),
2633 tsc_timestamp);
2634 if (tsc_pg_val != U64_MAX) {
2635 /* TSC page valid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002636 *mode = VDSO_CLOCKMODE_HVCLOCK;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002637 v = (tsc_pg_val - clock->cycle_last) &
2638 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002639 } else {
2640 /* TSC page invalid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002641 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002642 }
2643 break;
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002644 case VDSO_CLOCKMODE_TSC:
2645 *mode = VDSO_CLOCKMODE_TSC;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002646 *tsc_timestamp = read_tsc();
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002647 v = (*tsc_timestamp - clock->cycle_last) &
2648 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002649 break;
2650 default:
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002651 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002652 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002653
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002654 if (*mode == VDSO_CLOCKMODE_NONE)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002655 *tsc_timestamp = v = 0;
2656
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002657 return v * clock->mult;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002658}
2659
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002660static int do_monotonic_raw(s64 *t, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002661{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002662 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002663 unsigned long seq;
2664 int mode;
2665 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002666
Marcelo Tosattid8281992012-11-27 23:29:01 -02002667 do {
2668 seq = read_seqcount_begin(&gtod->seq);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002669 ns = gtod->raw_clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002670 ns += vgettsc(&gtod->raw_clock, tsc_timestamp, &mode);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002671 ns >>= gtod->raw_clock.shift;
2672 ns += ktime_to_ns(ktime_add(gtod->raw_clock.offset, gtod->offs_boot));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002673 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002674 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002675
2676 return mode;
2677}
2678
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002679static int do_realtime(struct timespec64 *ts, u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002680{
2681 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2682 unsigned long seq;
2683 int mode;
2684 u64 ns;
2685
2686 do {
2687 seq = read_seqcount_begin(&gtod->seq);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002688 ts->tv_sec = gtod->wall_time_sec;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002689 ns = gtod->clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002690 ns += vgettsc(&gtod->clock, tsc_timestamp, &mode);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002691 ns >>= gtod->clock.shift;
2692 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
2693
2694 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
2695 ts->tv_nsec = ns;
2696
2697 return mode;
2698}
2699
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002700/* returns true if host is using TSC based clocksource */
2701static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002702{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002703 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002704 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosattid8281992012-11-27 23:29:01 -02002705 return false;
2706
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002707 return gtod_is_based_on_tsc(do_monotonic_raw(kernel_ns,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002708 tsc_timestamp));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002709}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002710
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002711/* returns true if host is using TSC based clocksource */
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002712static bool kvm_get_walltime_and_clockread(struct timespec64 *ts,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002713 u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002714{
2715 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002716 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002717 return false;
2718
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002719 return gtod_is_based_on_tsc(do_realtime(ts, tsc_timestamp));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002720}
Marcelo Tosattid8281992012-11-27 23:29:01 -02002721#endif
2722
2723/*
2724 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002725 * Assuming a stable TSC across physical CPUS, and a stable TSC
2726 * across virtual CPUs, the following condition is possible.
2727 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02002728 * CPUs at the next numbered event.
2729 *
2730 * "timespecX" represents host monotonic time. "tscX" represents
2731 * RDTSC value.
2732 *
2733 * VCPU0 on CPU0 | VCPU1 on CPU1
2734 *
2735 * 1. read timespec0,tsc0
2736 * 2. | timespec1 = timespec0 + N
2737 * | tsc1 = tsc0 + M
2738 * 3. transition to guest | transition to guest
2739 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
2740 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
2741 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
2742 *
2743 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
2744 *
2745 * - ret0 < ret1
2746 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
2747 * ...
2748 * - 0 < N - M => M < N
2749 *
2750 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
2751 * always the case (the difference between two distinct xtime instances
2752 * might be smaller then the difference between corresponding TSC reads,
2753 * when updating guest vcpus pvclock areas).
2754 *
2755 * To avoid that problem, do not allow visibility of distinct
2756 * system_timestamp/tsc_timestamp values simultaneously: use a master
2757 * copy of host monotonic time values. Update that master copy
2758 * in lockstep.
2759 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002760 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02002761 *
2762 */
2763
2764static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
2765{
2766#ifdef CONFIG_X86_64
2767 struct kvm_arch *ka = &kvm->arch;
2768 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002769 bool host_tsc_clocksource, vcpus_matched;
2770
Paolo Bonzini869b4422021-09-16 18:15:36 +00002771 lockdep_assert_held(&kvm->arch.tsc_write_lock);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002772 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2773 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002774
2775 /*
2776 * If the host uses TSC clock, then passthrough TSC as stable
2777 * to the guest.
2778 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002779 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02002780 &ka->master_kernel_ns,
2781 &ka->master_cycle_now);
2782
Marcelo Tosatti16a96022014-05-14 12:43:24 -03002783 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Ladi Proseka826faf2017-06-26 09:56:43 +02002784 && !ka->backwards_tsc_observed
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002785 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002786
Marcelo Tosattid8281992012-11-27 23:29:01 -02002787 if (ka->use_master_clock)
2788 atomic_set(&kvm_guest_has_master_clock, 1);
2789
2790 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002791 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
2792 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002793#endif
2794}
2795
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002796static void kvm_make_mclock_inprogress_request(struct kvm *kvm)
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002797{
2798 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
2799}
2800
Paolo Bonzini869b4422021-09-16 18:15:36 +00002801static void __kvm_start_pvclock_update(struct kvm *kvm)
2802{
2803 raw_spin_lock_irq(&kvm->arch.tsc_write_lock);
2804 write_seqcount_begin(&kvm->arch.pvclock_sc);
2805}
2806
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002807static void kvm_start_pvclock_update(struct kvm *kvm)
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002808{
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002809 kvm_make_mclock_inprogress_request(kvm);
Paolo Bonzinic2c647f2021-03-25 14:05:11 -04002810
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002811 /* no guest entries from this point */
Paolo Bonzini869b4422021-09-16 18:15:36 +00002812 __kvm_start_pvclock_update(kvm);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002813}
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002814
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002815static void kvm_end_pvclock_update(struct kvm *kvm)
2816{
2817 struct kvm_arch *ka = &kvm->arch;
2818 struct kvm_vcpu *vcpu;
2819 int i;
2820
Paolo Bonzini869b4422021-09-16 18:15:36 +00002821 write_seqcount_end(&ka->pvclock_sc);
2822 raw_spin_unlock_irq(&ka->tsc_write_lock);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002823 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002824 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002825
2826 /* guest entries allowed */
2827 kvm_for_each_vcpu(i, vcpu, kvm)
Radim Krčmář72875d82017-04-26 22:32:19 +02002828 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00002829}
2830
2831static void kvm_update_masterclock(struct kvm *kvm)
2832{
2833 kvm_hv_invalidate_tsc_page(kvm);
2834 kvm_start_pvclock_update(kvm);
2835 pvclock_update_vm_gtod_copy(kvm);
2836 kvm_end_pvclock_update(kvm);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002837}
2838
Paolo Bonzini869b4422021-09-16 18:15:36 +00002839/* Called within read_seqcount_begin/retry for kvm->pvclock_sc. */
2840static void __get_kvmclock(struct kvm *kvm, struct kvm_clock_data *data)
Paolo Bonzini108b2492016-09-01 14:21:03 +02002841{
Paolo Bonzini108b2492016-09-01 14:21:03 +02002842 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002843 struct pvclock_vcpu_time_info hv_clock;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002844
Wanpeng Lie2c22062017-05-11 18:12:05 -07002845 /* both __this_cpu_read() and rdtsc() should be on the same cpu */
2846 get_cpu();
2847
Paolo Bonzini869b4422021-09-16 18:15:36 +00002848 data->flags = 0;
2849 if (ka->use_master_clock && __this_cpu_read(cpu_tsc_khz)) {
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00002850#ifdef CONFIG_X86_64
2851 struct timespec64 ts;
2852
2853 if (kvm_get_walltime_and_clockread(&ts, &data->host_tsc)) {
2854 data->realtime = ts.tv_nsec + NSEC_PER_SEC * ts.tv_sec;
2855 data->flags |= KVM_CLOCK_REALTIME | KVM_CLOCK_HOST_TSC;
2856 } else
2857#endif
2858 data->host_tsc = rdtsc();
2859
Paolo Bonzini869b4422021-09-16 18:15:36 +00002860 data->flags |= KVM_CLOCK_TSC_STABLE;
2861 hv_clock.tsc_timestamp = ka->master_cycle_now;
2862 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
Wanpeng Lie70b57a2017-11-20 14:55:05 -08002863 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
2864 &hv_clock.tsc_shift,
2865 &hv_clock.tsc_to_system_mul);
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00002866 data->clock = __pvclock_read_cycles(&hv_clock, data->host_tsc);
Oliver Upton55c0cef2021-09-16 18:15:34 +00002867 } else {
2868 data->clock = get_kvmclock_base_ns() + ka->kvmclock_offset;
2869 }
Wanpeng Lie2c22062017-05-11 18:12:05 -07002870
2871 put_cpu();
Oliver Upton55c0cef2021-09-16 18:15:34 +00002872}
Wanpeng Lie2c22062017-05-11 18:12:05 -07002873
Paolo Bonzini869b4422021-09-16 18:15:36 +00002874static void get_kvmclock(struct kvm *kvm, struct kvm_clock_data *data)
2875{
2876 struct kvm_arch *ka = &kvm->arch;
2877 unsigned seq;
2878
2879 do {
2880 seq = read_seqcount_begin(&ka->pvclock_sc);
2881 __get_kvmclock(kvm, data);
2882 } while (read_seqcount_retry(&ka->pvclock_sc, seq));
2883}
2884
Oliver Upton55c0cef2021-09-16 18:15:34 +00002885u64 get_kvmclock_ns(struct kvm *kvm)
2886{
2887 struct kvm_clock_data data;
2888
Oliver Upton55c0cef2021-09-16 18:15:34 +00002889 get_kvmclock(kvm, &data);
2890 return data.clock;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002891}
2892
Joao Martinsaa096aa2019-02-01 13:01:45 -05002893static void kvm_setup_pvclock_page(struct kvm_vcpu *v,
2894 struct gfn_to_hva_cache *cache,
2895 unsigned int offset)
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002896{
2897 struct kvm_vcpu_arch *vcpu = &v->arch;
2898 struct pvclock_vcpu_time_info guest_hv_clock;
2899
Joao Martinsaa096aa2019-02-01 13:01:45 -05002900 if (unlikely(kvm_read_guest_offset_cached(v->kvm, cache,
2901 &guest_hv_clock, offset, sizeof(guest_hv_clock))))
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002902 return;
2903
2904 /* This VCPU is paused, but it's legal for a guest to read another
2905 * VCPU's kvmclock, so we really have to follow the specification where
2906 * it says that version is odd if data is being modified, and even after
2907 * it is consistent.
2908 *
2909 * Version field updates must be kept separate. This is because
2910 * kvm_write_guest_cached might use a "rep movs" instruction, and
2911 * writes within a string instruction are weakly ordered. So there
2912 * are three writes overall.
2913 *
2914 * As a small optimization, only write the version field in the first
2915 * and third write. The vcpu->pv_time cache is still valid, because the
2916 * version field is the first in the struct.
2917 */
2918 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
2919
Liran Alon51c4b8b2017-11-05 16:11:30 +02002920 if (guest_hv_clock.version & 1)
2921 ++guest_hv_clock.version; /* first time write, random junk */
2922
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002923 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002924 kvm_write_guest_offset_cached(v->kvm, cache,
2925 &vcpu->hv_clock, offset,
2926 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002927
2928 smp_wmb();
2929
2930 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
2931 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
2932
2933 if (vcpu->pvclock_set_guest_stopped_request) {
2934 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
2935 vcpu->pvclock_set_guest_stopped_request = false;
2936 }
2937
2938 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
2939
Joao Martinsaa096aa2019-02-01 13:01:45 -05002940 kvm_write_guest_offset_cached(v->kvm, cache,
2941 &vcpu->hv_clock, offset,
2942 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002943
2944 smp_wmb();
2945
2946 vcpu->hv_clock.version++;
Joao Martinsaa096aa2019-02-01 13:01:45 -05002947 kvm_write_guest_offset_cached(v->kvm, cache,
2948 &vcpu->hv_clock, offset,
2949 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002950}
2951
Zachary Amsden34c238a2010-09-18 14:38:14 -10002952static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002953{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002954 unsigned long flags, tgt_tsc_khz;
Paolo Bonzini869b4422021-09-16 18:15:36 +00002955 unsigned seq;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002956 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002957 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02002958 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002959 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002960 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002961 bool use_master_clock;
2962
2963 kernel_ns = 0;
2964 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002965
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002966 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02002967 * If the host uses TSC clock, then passthrough TSC as stable
2968 * to the guest.
2969 */
Paolo Bonzini869b4422021-09-16 18:15:36 +00002970 do {
2971 seq = read_seqcount_begin(&ka->pvclock_sc);
2972 use_master_clock = ka->use_master_clock;
2973 if (use_master_clock) {
2974 host_tsc = ka->master_cycle_now;
2975 kernel_ns = ka->master_kernel_ns;
2976 }
2977 } while (read_seqcount_retry(&ka->pvclock_sc, seq));
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002978
2979 /* Keep irq disabled to prevent changes to the clock */
2980 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002981 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
2982 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002983 local_irq_restore(flags);
2984 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
2985 return 1;
2986 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002987 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002988 host_tsc = rdtsc();
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002989 kernel_ns = get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02002990 }
2991
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002992 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002993
2994 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10002995 * We may have to catch up the TSC to match elapsed wall clock
2996 * time for two reasons, even if kvmclock is used.
2997 * 1) CPU could have been running below the maximum TSC rate
2998 * 2) Broken TSC compensation resets the base at each VCPU
2999 * entry to avoid unknown leaps of TSC even when running
3000 * again on the same CPU. This may cause apparent elapsed
3001 * time to disappear, and the guest to stand still or run
3002 * very slowly.
3003 */
3004 if (vcpu->tsc_catchup) {
3005 u64 tsc = compute_guest_tsc(v, kernel_ns);
3006 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02003007 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10003008 tsc_timestamp = tsc;
3009 }
3010 }
3011
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003012 local_irq_restore(flags);
3013
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02003014 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10003015
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003016 if (kvm_has_tsc_control)
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003017 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz,
3018 v->arch.l1_tsc_scaling_ratio);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003019
3020 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01003021 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10003022 &vcpu->hv_clock.tsc_shift,
3023 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01003024 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10003025 }
3026
Zachary Amsden1d5f0662010-08-19 22:07:30 -10003027 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10003028 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10003029 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03003030
Marcelo Tosattid8281992012-11-27 23:29:01 -02003031 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02003032 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02003033 if (use_master_clock)
3034 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
3035
Marcelo Tosatti78c03372012-11-27 23:28:47 -02003036 vcpu->hv_clock.flags = pvclock_flags;
3037
Paolo Bonzini095cf552016-02-08 12:54:12 +01003038 if (vcpu->pv_time_enabled)
Joao Martinsaa096aa2019-02-01 13:01:45 -05003039 kvm_setup_pvclock_page(v, &vcpu->pv_time, 0);
3040 if (vcpu->xen.vcpu_info_set)
3041 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_info_cache,
3042 offsetof(struct compat_vcpu_info, time));
Joao Martinsf2340cd2018-07-23 11:20:57 -04003043 if (vcpu->xen.vcpu_time_info_set)
3044 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_time_info_cache, 0);
Sean Christopherson94c245a2021-09-10 11:32:20 -07003045 if (!v->vcpu_idx)
Paolo Bonzini095cf552016-02-08 12:54:12 +01003046 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10003047 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01003048}
3049
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003050/*
3051 * kvmclock updates which are isolated to a given vcpu, such as
3052 * vcpu->cpu migration, should not allow system_timestamp from
3053 * the rest of the vcpus to remain static. Otherwise ntp frequency
3054 * correction applies to one vcpu's system_timestamp but not
3055 * the others.
3056 *
3057 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01003058 * We need to rate-limit these requests though, as they can
3059 * considerably slow guests that have a large number of vcpus.
3060 * The time for a remote vcpu to update its kvmclock is bound
3061 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003062 */
3063
Andrew Jones7e44e442014-02-28 12:52:54 +01003064#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
3065
3066static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003067{
3068 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01003069 struct delayed_work *dwork = to_delayed_work(work);
3070 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3071 kvmclock_update_work);
3072 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003073 struct kvm_vcpu *vcpu;
3074
3075 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003076 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003077 kvm_vcpu_kick(vcpu);
3078 }
3079}
3080
Andrew Jones7e44e442014-02-28 12:52:54 +01003081static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
3082{
3083 struct kvm *kvm = v->kvm;
3084
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003085 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01003086 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
3087 KVMCLOCK_UPDATE_DELAY);
3088}
3089
Andrew Jones332967a2014-02-28 12:52:55 +01003090#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
3091
3092static void kvmclock_sync_fn(struct work_struct *work)
3093{
3094 struct delayed_work *dwork = to_delayed_work(work);
3095 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
3096 kvmclock_sync_work);
3097 struct kvm *kvm = container_of(ka, struct kvm, arch);
3098
Marcelo Tosatti630994b2015-05-12 22:42:04 -03003099 if (!kvmclock_periodic_sync)
3100 return;
3101
Andrew Jones332967a2014-02-28 12:52:55 +01003102 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
3103 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
3104 KVMCLOCK_SYNC_PERIOD);
3105}
3106
Borislav Petkov191c8132019-04-18 18:32:50 +02003107/*
3108 * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP.
3109 */
3110static bool can_set_mci_status(struct kvm_vcpu *vcpu)
3111{
3112 /* McStatusWrEn enabled? */
Sean Christopherson23493d02020-03-04 17:34:33 -08003113 if (guest_cpuid_is_amd_or_hygon(vcpu))
Borislav Petkov191c8132019-04-18 18:32:50 +02003114 return !!(vcpu->arch.msr_hwcr & BIT_ULL(18));
3115
3116 return false;
3117}
3118
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003119static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Huang Ying890ca9a2009-05-11 16:48:15 +08003120{
3121 u64 mcg_cap = vcpu->arch.mcg_cap;
3122 unsigned bank_num = mcg_cap & 0xff;
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003123 u32 msr = msr_info->index;
3124 u64 data = msr_info->data;
Huang Ying890ca9a2009-05-11 16:48:15 +08003125
3126 switch (msr) {
3127 case MSR_IA32_MCG_STATUS:
3128 vcpu->arch.mcg_status = data;
3129 break;
3130 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003131 if (!(mcg_cap & MCG_CTL_P) &&
3132 (data || !msr_info->host_initiated))
Huang Ying890ca9a2009-05-11 16:48:15 +08003133 return 1;
3134 if (data != 0 && data != ~(u64)0)
Paolo Bonzini44883f02018-07-26 13:01:52 +02003135 return 1;
Huang Ying890ca9a2009-05-11 16:48:15 +08003136 vcpu->arch.mcg_ctl = data;
3137 break;
3138 default:
3139 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003140 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003141 u32 offset = array_index_nospec(
3142 msr - MSR_IA32_MC0_CTL,
3143 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3144
Andre Przywara114be422010-03-24 17:46:42 +01003145 /* only 0 or all 1s can be written to IA32_MCi_CTL
3146 * some Linux kernels though clear bit 10 in bank 4 to
3147 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
3148 * this to avoid an uncatched #GP in the guest
3149 */
Huang Ying890ca9a2009-05-11 16:48:15 +08003150 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01003151 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08003152 return -1;
Borislav Petkov191c8132019-04-18 18:32:50 +02003153
3154 /* MCi_STATUS */
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003155 if (!msr_info->host_initiated &&
Borislav Petkov191c8132019-04-18 18:32:50 +02003156 (offset & 0x3) == 1 && data != 0) {
3157 if (!can_set_mci_status(vcpu))
3158 return -1;
3159 }
3160
Huang Ying890ca9a2009-05-11 16:48:15 +08003161 vcpu->arch.mce_banks[offset] = data;
3162 break;
3163 }
3164 return 1;
3165 }
3166 return 0;
3167}
3168
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003169static inline bool kvm_pv_async_pf_enabled(struct kvm_vcpu *vcpu)
3170{
3171 u64 mask = KVM_ASYNC_PF_ENABLED | KVM_ASYNC_PF_DELIVERY_AS_INT;
3172
3173 return (vcpu->arch.apf.msr_en_val & mask) == mask;
3174}
3175
Gleb Natapov344d9582010-10-14 11:22:50 +02003176static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
3177{
3178 gpa_t gpa = data & ~0x3f;
3179
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003180 /* Bits 4:5 are reserved, Should be zero */
3181 if (data & 0x30)
Gleb Natapov344d9582010-10-14 11:22:50 +02003182 return 1;
3183
Oliver Upton66570e92020-08-18 15:24:28 +00003184 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_VMEXIT) &&
3185 (data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT))
3186 return 1;
3187
3188 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT) &&
3189 (data & KVM_ASYNC_PF_DELIVERY_AS_INT))
3190 return 1;
3191
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003192 if (!lapic_in_kernel(vcpu))
Vitaly Kuznetsovd831de12020-09-11 11:31:47 +02003193 return data ? 1 : 0;
Wanpeng Li9d3c4472020-06-29 18:26:31 +08003194
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003195 vcpu->arch.apf.msr_en_val = data;
Gleb Natapov344d9582010-10-14 11:22:50 +02003196
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003197 if (!kvm_pv_async_pf_enabled(vcpu)) {
Gleb Natapov344d9582010-10-14 11:22:50 +02003198 kvm_clear_async_pf_completion_queue(vcpu);
3199 kvm_async_pf_hash_reset(vcpu);
3200 return 0;
3201 }
3202
Paolo Bonzini4e335d92017-05-02 16:20:18 +02003203 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02003204 sizeof(u64)))
Gleb Natapov344d9582010-10-14 11:22:50 +02003205 return 1;
3206
Gleb Natapov6adba522010-10-14 11:22:55 +02003207 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Wanpeng Li52a5c152017-07-13 18:30:42 -07003208 vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003209
Gleb Natapov344d9582010-10-14 11:22:50 +02003210 kvm_async_pf_wakeup_all(vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003211
3212 return 0;
3213}
3214
3215static int kvm_pv_enable_async_pf_int(struct kvm_vcpu *vcpu, u64 data)
3216{
3217 /* Bits 8-63 are reserved */
3218 if (data >> 8)
3219 return 1;
3220
3221 if (!lapic_in_kernel(vcpu))
3222 return 1;
3223
3224 vcpu->arch.apf.msr_int_val = data;
3225
3226 vcpu->arch.apf.vec = data & KVM_ASYNC_PF_VEC_MASK;
3227
Gleb Natapov344d9582010-10-14 11:22:50 +02003228 return 0;
3229}
3230
Glauber Costa12f9a482011-02-01 14:16:40 -05003231static void kvmclock_reset(struct kvm_vcpu *vcpu)
3232{
Andy Honig0b794592013-02-20 14:48:10 -08003233 vcpu->arch.pv_time_enabled = false;
Paolo Bonzini49dedf02019-10-10 12:49:22 +02003234 vcpu->arch.time = 0;
Glauber Costa12f9a482011-02-01 14:16:40 -05003235}
3236
Sean Christopherson77809382020-03-20 14:28:18 -07003237static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003238{
3239 ++vcpu->stat.tlb_flush;
Jason Baronb36464772021-01-14 22:27:56 -05003240 static_call(kvm_x86_tlb_flush_all)(vcpu);
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003241}
3242
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003243static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
3244{
3245 ++vcpu->stat.tlb_flush;
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003246
3247 if (!tdp_enabled) {
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003248 /*
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003249 * A TLB flush on behalf of the guest is equivalent to
3250 * INVPCID(all), toggling CR4.PGE, etc., which requires
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003251 * a forced sync of the shadow page tables. Ensure all the
3252 * roots are synced and the guest TLB in hardware is clean.
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003253 */
Lai Jiangshan61b05a9f2021-10-19 19:01:54 +08003254 kvm_mmu_sync_roots(vcpu);
3255 kvm_mmu_sync_prev_roots(vcpu);
Lai Jiangshanb53e84e2021-06-01 01:22:56 +08003256 }
3257
Jason Baronb36464772021-01-14 22:27:56 -05003258 static_call(kvm_x86_tlb_flush_guest)(vcpu);
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04003259}
3260
Glauber Costac9aaa892011-07-11 15:28:14 -04003261static void record_steal_time(struct kvm_vcpu *vcpu)
3262{
David Woodhouse7e2175e2021-11-02 17:36:39 +00003263 struct gfn_to_hva_cache *ghc = &vcpu->arch.st.cache;
3264 struct kvm_steal_time __user *st;
3265 struct kvm_memslots *slots;
3266 u64 steal;
3267 u32 version;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003268
David Woodhouse30b5c852021-03-01 12:53:09 +00003269 if (kvm_xen_msr_enabled(vcpu->kvm)) {
3270 kvm_xen_runstate_set_running(vcpu);
3271 return;
3272 }
3273
Glauber Costac9aaa892011-07-11 15:28:14 -04003274 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
3275 return;
3276
David Woodhouse7e2175e2021-11-02 17:36:39 +00003277 if (WARN_ON_ONCE(current->mm != vcpu->kvm->mm))
Glauber Costac9aaa892011-07-11 15:28:14 -04003278 return;
3279
David Woodhouse7e2175e2021-11-02 17:36:39 +00003280 slots = kvm_memslots(vcpu->kvm);
3281
3282 if (unlikely(slots->generation != ghc->generation ||
3283 kvm_is_error_hva(ghc->hva) || !ghc->memslot)) {
3284 gfn_t gfn = vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS;
3285
3286 /* We rely on the fact that it fits in a single page. */
3287 BUILD_BUG_ON((sizeof(*st) - 1) & KVM_STEAL_VALID_BITS);
3288
3289 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, gfn, sizeof(*st)) ||
3290 kvm_is_error_hva(ghc->hva) || !ghc->memslot)
3291 return;
3292 }
3293
3294 st = (struct kvm_steal_time __user *)ghc->hva;
3295 if (!user_access_begin(st, sizeof(*st)))
3296 return;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003297
Wanpeng Lif38a7b72017-12-12 17:33:04 -08003298 /*
3299 * Doing a TLB flush here, on the guest's behalf, can avoid
3300 * expensive IPIs.
3301 */
Oliver Upton66570e92020-08-18 15:24:28 +00003302 if (guest_pv_has(vcpu, KVM_FEATURE_PV_TLB_FLUSH)) {
David Woodhouse7e2175e2021-11-02 17:36:39 +00003303 u8 st_preempted = 0;
3304 int err = -EFAULT;
3305
3306 asm volatile("1: xchgb %0, %2\n"
3307 "xor %1, %1\n"
3308 "2:\n"
3309 _ASM_EXTABLE_UA(1b, 2b)
3310 : "+r" (st_preempted),
3311 "+&r" (err)
3312 : "m" (st->preempted));
3313 if (err)
3314 goto out;
3315
3316 user_access_end();
3317
3318 vcpu->arch.st.preempted = 0;
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003319
Oliver Upton66570e92020-08-18 15:24:28 +00003320 trace_kvm_pv_tlb_flush(vcpu->vcpu_id,
Lai Jiangshanaf3511f2021-06-01 01:46:28 +08003321 st_preempted & KVM_VCPU_FLUSH_TLB);
3322 if (st_preempted & KVM_VCPU_FLUSH_TLB)
Oliver Upton66570e92020-08-18 15:24:28 +00003323 kvm_vcpu_flush_tlb_guest(vcpu);
David Woodhouse7e2175e2021-11-02 17:36:39 +00003324
3325 if (!user_access_begin(st, sizeof(*st)))
3326 goto dirty;
Wanpeng Li1eff0ad2021-05-18 05:00:33 -07003327 } else {
David Woodhouse7e2175e2021-11-02 17:36:39 +00003328 unsafe_put_user(0, &st->preempted, out);
3329 vcpu->arch.st.preempted = 0;
Oliver Upton66570e92020-08-18 15:24:28 +00003330 }
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003331
David Woodhouse7e2175e2021-11-02 17:36:39 +00003332 unsafe_get_user(version, &st->version, out);
3333 if (version & 1)
3334 version += 1; /* first time write, random junk */
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003335
David Woodhouse7e2175e2021-11-02 17:36:39 +00003336 version += 1;
3337 unsafe_put_user(version, &st->version, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003338
3339 smp_wmb();
3340
David Woodhouse7e2175e2021-11-02 17:36:39 +00003341 unsafe_get_user(steal, &st->steal, out);
3342 steal += current->sched_info.run_delay -
Liang Chenc54cdf12016-03-16 19:33:16 +08003343 vcpu->arch.st.last_steal;
3344 vcpu->arch.st.last_steal = current->sched_info.run_delay;
David Woodhouse7e2175e2021-11-02 17:36:39 +00003345 unsafe_put_user(steal, &st->steal, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003346
David Woodhouse7e2175e2021-11-02 17:36:39 +00003347 version += 1;
3348 unsafe_put_user(version, &st->version, out);
Wanpeng Li35f3fae12016-05-03 11:43:10 +08003349
David Woodhouse7e2175e2021-11-02 17:36:39 +00003350 out:
3351 user_access_end();
3352 dirty:
3353 mark_page_dirty_in_slot(vcpu->kvm, ghc->memslot, gpa_to_gfn(ghc->gpa));
Glauber Costac9aaa892011-07-11 15:28:14 -04003354}
3355
Will Auld8fe8ab42012-11-29 12:42:12 -08003356int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003357{
Gleb Natapov57537852012-01-15 14:17:22 +02003358 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08003359 u32 msr = msr_info->index;
3360 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02003361
Joao Martins1232f8e2018-06-13 06:10:37 -04003362 if (msr && msr == vcpu->kvm->arch.xen_hvm_config.msr)
Joao Martins23200b72018-06-13 09:55:44 -04003363 return kvm_xen_write_hypercall_page(vcpu, data);
Joao Martins1232f8e2018-06-13 06:10:37 -04003364
Carsten Otte15c4a642007-10-30 18:44:17 +01003365 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01003366 case MSR_AMD64_NB_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003367 case MSR_IA32_UCODE_WRITE:
3368 case MSR_VM_HSAVE_PA:
3369 case MSR_AMD64_PATCH_LOADER:
3370 case MSR_AMD64_BU_CFG2:
Ladi Prosek405a3532017-04-06 15:22:20 +02003371 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003372 case MSR_F15H_EX_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003373 break;
3374
Wanpeng Li518e7b92018-02-28 14:03:31 +08003375 case MSR_IA32_UCODE_REV:
3376 if (msr_info->host_initiated)
3377 vcpu->arch.microcode_version = data;
3378 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003379 case MSR_IA32_ARCH_CAPABILITIES:
3380 if (!msr_info->host_initiated)
3381 return 1;
3382 vcpu->arch.arch_capabilities = data;
3383 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003384 case MSR_IA32_PERF_CAPABILITIES: {
3385 struct kvm_msr_entry msr_ent = {.index = msr, .data = 0};
3386
3387 if (!msr_info->host_initiated)
3388 return 1;
3389 if (guest_cpuid_has(vcpu, X86_FEATURE_PDCM) && kvm_get_msr_feature(&msr_ent))
3390 return 1;
3391 if (data & ~msr_ent.data)
3392 return 1;
3393
3394 vcpu->arch.perf_capabilities = data;
3395
3396 return 0;
3397 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003398 case MSR_EFER:
Sean Christopherson11988492019-04-02 08:19:15 -07003399 return set_efer(vcpu, msr_info);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003400 case MSR_K7_HWCR:
3401 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01003402 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08003403 data &= ~(u64)0x8; /* ignore TLB cache disable */
Borislav Petkov191c8132019-04-18 18:32:50 +02003404
3405 /* Handle McStatusWrEn */
3406 if (data == BIT_ULL(18)) {
3407 vcpu->arch.msr_hwcr = data;
3408 } else if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003409 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
3410 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02003411 return 1;
3412 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003413 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003414 case MSR_FAM10H_MMIO_CONF_BASE:
3415 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03003416 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
3417 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003418 return 1;
3419 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003420 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03003421 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003422 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003423 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01003424 return kvm_set_apic_base(vcpu, msr_info);
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003425 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Gleb Natapov0105d1a2009-07-05 17:39:36 +03003426 return kvm_x2apic_msr_write(vcpu, msr, data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003427 case MSR_IA32_TSC_DEADLINE:
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003428 kvm_set_lapic_tscdeadline_msr(vcpu, data);
3429 break;
Will Auldba904632012-11-29 12:42:50 -08003430 case MSR_IA32_TSC_ADJUST:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003431 if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) {
Will Auldba904632012-11-29 12:42:50 -08003432 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06003433 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08003434 adjust_tsc_offset_guest(vcpu, adj);
Zelin Dengd9130a22021-04-28 10:22:01 +08003435 /* Before back to guest, tsc_timestamp must be adjusted
3436 * as well, otherwise guest's percpu pvclock time could jump.
3437 */
3438 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Will Auldba904632012-11-29 12:42:50 -08003439 }
3440 vcpu->arch.ia32_tsc_adjust_msr = data;
3441 }
3442 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003443 case MSR_IA32_MISC_ENABLE:
Wanpeng Li511a85562019-05-21 14:06:54 +08003444 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) &&
3445 ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) {
3446 if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3))
3447 return 1;
3448 vcpu->arch.ia32_misc_enable_msr = data;
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08003449 kvm_update_cpuid_runtime(vcpu);
Wanpeng Li511a85562019-05-21 14:06:54 +08003450 } else {
3451 vcpu->arch.ia32_misc_enable_msr = data;
3452 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003453 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003454 case MSR_IA32_SMBASE:
3455 if (!msr_info->host_initiated)
3456 return 1;
3457 vcpu->arch.smbase = data;
3458 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003459 case MSR_IA32_POWER_CTL:
3460 vcpu->arch.msr_ia32_power_ctl = data;
3461 break;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003462 case MSR_IA32_TSC:
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003463 if (msr_info->host_initiated) {
3464 kvm_synchronize_tsc(vcpu, data);
3465 } else {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01003466 u64 adj = kvm_compute_l1_tsc_offset(vcpu, data) - vcpu->arch.l1_tsc_offset;
Paolo Bonzini0c899c22020-09-24 14:45:27 +02003467 adjust_tsc_offset_guest(vcpu, adj);
3468 vcpu->arch.ia32_tsc_adjust_msr += adj;
3469 }
Paolo Bonzinidd259932018-04-13 11:38:35 +02003470 break;
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003471 case MSR_IA32_XSS:
3472 if (!msr_info->host_initiated &&
3473 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3474 return 1;
3475 /*
Sean Christophersona1bead22020-03-02 15:57:00 -08003476 * KVM supports exposing PT to the guest, but does not support
3477 * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than
3478 * XSAVES/XRSTORS to save/restore PT MSRs.
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003479 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01003480 if (data & ~supported_xss)
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003481 return 1;
3482 vcpu->arch.ia32_xss = data;
3483 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003484 case MSR_SMI_COUNT:
3485 if (!msr_info->host_initiated)
3486 return 1;
3487 vcpu->arch.smi_count = data;
3488 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003489 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003490 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3491 return 1;
3492
Joao Martins629b5342018-06-28 15:06:43 -04003493 vcpu->kvm->arch.wall_clock = data;
3494 kvm_write_wall_clock(vcpu->kvm, data, 0);
Oliver Upton66570e92020-08-18 15:24:28 +00003495 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003496 case MSR_KVM_WALL_CLOCK:
Oliver Upton66570e92020-08-18 15:24:28 +00003497 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3498 return 1;
3499
Joao Martins629b5342018-06-28 15:06:43 -04003500 vcpu->kvm->arch.wall_clock = data;
3501 kvm_write_wall_clock(vcpu->kvm, data, 0);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003502 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003503 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton66570e92020-08-18 15:24:28 +00003504 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3505 return 1;
3506
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003507 kvm_write_system_time(vcpu, data, false, msr_info->host_initiated);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003508 break;
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003509 case MSR_KVM_SYSTEM_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003510 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3511 return 1;
3512
3513 kvm_write_system_time(vcpu, data, true, msr_info->host_initiated);
Oliver Upton5b9bb0e2020-08-18 15:24:26 +00003514 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003515 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003516 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3517 return 1;
3518
Gleb Natapov344d9582010-10-14 11:22:50 +02003519 if (kvm_pv_enable_async_pf(vcpu, data))
3520 return 1;
3521 break;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003522 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton66570e92020-08-18 15:24:28 +00003523 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3524 return 1;
3525
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003526 if (kvm_pv_enable_async_pf_int(vcpu, data))
3527 return 1;
3528 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003529 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003530 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton66570e92020-08-18 15:24:28 +00003531 return 1;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003532 if (data & 0x1) {
3533 vcpu->arch.apf.pageready_pending = false;
3534 kvm_check_async_pf_completion(vcpu);
3535 }
3536 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003537 case MSR_KVM_STEAL_TIME:
Oliver Upton66570e92020-08-18 15:24:28 +00003538 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3539 return 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04003540
3541 if (unlikely(!sched_info_on()))
3542 return 1;
3543
3544 if (data & KVM_STEAL_RESERVED_MASK)
3545 return 1;
3546
Glauber Costac9aaa892011-07-11 15:28:14 -04003547 vcpu->arch.st.msr_val = data;
3548
3549 if (!(data & KVM_MSR_ENABLED))
3550 break;
3551
Glauber Costac9aaa892011-07-11 15:28:14 -04003552 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
3553
3554 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003555 case MSR_KVM_PV_EOI_EN:
Oliver Upton66570e92020-08-18 15:24:28 +00003556 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3557 return 1;
3558
Ladi Prosek72bbf932018-10-16 18:49:59 +02003559 if (kvm_lapic_enable_pv_eoi(vcpu, data, sizeof(u8)))
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03003560 return 1;
3561 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003562
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003563 case MSR_KVM_POLL_CONTROL:
Oliver Upton66570e92020-08-18 15:24:28 +00003564 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3565 return 1;
3566
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003567 /* only enable bit supported */
3568 if (data & (-1ULL << 1))
3569 return 1;
3570
3571 vcpu->arch.msr_kvm_poll_control = data;
3572 break;
3573
Huang Ying890ca9a2009-05-11 16:48:15 +08003574 case MSR_IA32_MCG_CTL:
3575 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003576 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Wanpeng Li9ffd9862017-10-19 06:47:56 -07003577 return set_msr_mce(vcpu, msr_info);
Andre Przywara71db6022009-06-12 22:01:29 +02003578
Wei Huang6912ac32015-06-12 01:34:56 -04003579 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3580 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003581 pr = true;
3582 fallthrough;
Wei Huang6912ac32015-06-12 01:34:56 -04003583 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3584 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003585 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003586 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02003587
3588 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03003589 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
3590 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02003591 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003592 case MSR_K7_CLK_CTL:
3593 /*
3594 * Ignore all writes to this no longer documented MSR.
3595 * Writes are only relevant for old K7 processors,
3596 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08003597 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003598 * affected processor models on the command line, hence
3599 * the need to ignore the workaround.
3600 */
3601 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003602 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003603 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3604 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003605 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3606 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003607 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003608 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3609 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3610 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003611 return kvm_hv_set_msr_common(vcpu, msr, data,
3612 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003613 case MSR_IA32_BBL_CR_CTL3:
3614 /* Drop writes to this legacy MSR -- see rdmsr
3615 * counterpart for further detail.
3616 */
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02003617 if (report_ignored_msrs)
3618 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
3619 msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05003620 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003621 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003622 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003623 return 1;
3624 vcpu->arch.osvw.length = data;
3625 break;
3626 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003627 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003628 return 1;
3629 vcpu->arch.osvw.status = data;
3630 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003631 case MSR_PLATFORM_INFO:
3632 if (!msr_info->host_initiated ||
Kyle Hueydb2336a2017-03-20 01:16:28 -07003633 (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) &&
3634 cpuid_fault_enabled(vcpu)))
3635 return 1;
3636 vcpu->arch.msr_platform_info = data;
3637 break;
3638 case MSR_MISC_FEATURES_ENABLES:
3639 if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT ||
3640 (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT &&
3641 !supports_cpuid_fault(vcpu)))
3642 return 1;
3643 vcpu->arch.msr_misc_features_enables = data;
3644 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003645 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003646 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003647 return kvm_pmu_set_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003648 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003649 }
3650 return 0;
3651}
3652EXPORT_SYMBOL_GPL(kvm_set_msr_common);
3653
Paolo Bonzini44883f02018-07-26 13:01:52 +02003654static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003655{
3656 u64 data;
3657 u64 mcg_cap = vcpu->arch.mcg_cap;
3658 unsigned bank_num = mcg_cap & 0xff;
3659
3660 switch (msr) {
3661 case MSR_IA32_P5_MC_ADDR:
3662 case MSR_IA32_P5_MC_TYPE:
3663 data = 0;
3664 break;
3665 case MSR_IA32_MCG_CAP:
3666 data = vcpu->arch.mcg_cap;
3667 break;
3668 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003669 if (!(mcg_cap & MCG_CTL_P) && !host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003670 return 1;
3671 data = vcpu->arch.mcg_ctl;
3672 break;
3673 case MSR_IA32_MCG_STATUS:
3674 data = vcpu->arch.mcg_status;
3675 break;
3676 default:
3677 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003678 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003679 u32 offset = array_index_nospec(
3680 msr - MSR_IA32_MC0_CTL,
3681 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3682
Huang Ying890ca9a2009-05-11 16:48:15 +08003683 data = vcpu->arch.mce_banks[offset];
3684 break;
3685 }
3686 return 1;
3687 }
3688 *pdata = data;
3689 return 0;
3690}
3691
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003692int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003693{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003694 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01003695 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01003696 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02003697 case MSR_IA32_LASTBRANCHFROMIP:
3698 case MSR_IA32_LASTBRANCHTOIP:
3699 case MSR_IA32_LASTINTFROMIP:
3700 case MSR_IA32_LASTINTTOIP:
Brijesh Singh059e5c32021-04-27 06:16:36 -05003701 case MSR_AMD64_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02003702 case MSR_K8_TSEG_ADDR:
3703 case MSR_K8_TSEG_MASK:
Avi Kivity61a6bd62008-12-29 17:32:28 +02003704 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02003705 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02003706 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003707 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003708 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03003709 case MSR_IA32_PERF_CTL:
Ladi Prosek405a3532017-04-06 15:22:20 +02003710 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003711 case MSR_F15H_EX_CFG:
Venkatesh Srinivas2ca1a062020-04-16 11:42:54 -07003712 /*
3713 * Intel Sandy Bridge CPUs must support the RAPL (running average power
3714 * limit) MSRs. Just return 0, as we do not want to expose the host
3715 * data here. Do not conditionalize this on CPUID, as KVM does not do
3716 * so for existing CPU-specific MSRs.
3717 */
3718 case MSR_RAPL_POWER_UNIT:
3719 case MSR_PP0_ENERGY_STATUS: /* Power plane 0 (core) */
3720 case MSR_PP1_ENERGY_STATUS: /* Power plane 1 (graphics uncore) */
3721 case MSR_PKG_ENERGY_STATUS: /* Total package */
3722 case MSR_DRAM_ENERGY_STATUS: /* DRAM controller */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003723 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01003724 break;
Janakarajan Natarajanc51eb522018-02-05 13:24:52 -06003725 case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5:
Vitaly Kuznetsovc28fa562021-03-29 14:48:04 +02003726 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
3727 return kvm_pmu_get_msr(vcpu, msr_info);
3728 if (!msr_info->host_initiated)
3729 return 1;
3730 msr_info->data = 0;
3731 break;
Wei Huang6912ac32015-06-12 01:34:56 -04003732 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3733 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3734 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
3735 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003736 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003737 return kvm_pmu_get_msr(vcpu, msr_info);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003738 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02003739 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003740 case MSR_IA32_UCODE_REV:
Wanpeng Li518e7b92018-02-28 14:03:31 +08003741 msr_info->data = vcpu->arch.microcode_version;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003742 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003743 case MSR_IA32_ARCH_CAPABILITIES:
3744 if (!msr_info->host_initiated &&
3745 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3746 return 1;
3747 msr_info->data = vcpu->arch.arch_capabilities;
3748 break;
Vitaly Kuznetsovd574c532020-07-10 17:25:59 +02003749 case MSR_IA32_PERF_CAPABILITIES:
3750 if (!msr_info->host_initiated &&
3751 !guest_cpuid_has(vcpu, X86_FEATURE_PDCM))
3752 return 1;
3753 msr_info->data = vcpu->arch.perf_capabilities;
3754 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003755 case MSR_IA32_POWER_CTL:
3756 msr_info->data = vcpu->arch.msr_ia32_power_ctl;
3757 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003758 case MSR_IA32_TSC: {
3759 /*
3760 * Intel SDM states that MSR_IA32_TSC read adds the TSC offset
3761 * even when not intercepted. AMD manual doesn't explicitly
3762 * state this but appears to behave the same.
3763 *
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003764 * On userspace reads and writes, however, we unconditionally
Paolo Bonzinic0623f52020-10-21 18:05:58 -04003765 * return L1's TSC value to ensure backwards-compatible
Maxim Levitskyee6fa052020-09-21 13:38:05 +03003766 * behavior for migration.
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003767 */
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003768 u64 offset, ratio;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003769
Ilias Stamatisfe3eb502021-05-26 19:44:11 +01003770 if (msr_info->host_initiated) {
3771 offset = vcpu->arch.l1_tsc_offset;
3772 ratio = vcpu->arch.l1_tsc_scaling_ratio;
3773 } else {
3774 offset = vcpu->arch.tsc_offset;
3775 ratio = vcpu->arch.tsc_scaling_ratio;
3776 }
3777
3778 msr_info->data = kvm_scale_tsc(vcpu, rdtsc(), ratio) + offset;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003779 break;
Maxim Levitskycc5b54d2020-09-21 13:38:05 +03003780 }
Avi Kivity9ba075a2008-05-26 20:06:35 +03003781 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03003782 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003783 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003784 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003785 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01003786 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02003787 /*
3788 * MSR_EBC_FREQUENCY_ID
3789 * Conservative value valid for even the basic CPU models.
3790 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
3791 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
3792 * and 266MHz for model 3, or 4. Set Core Clock
3793 * Frequency to System Bus Frequency Ratio to 1 (bits
3794 * 31:24) even though these are only valid for CPU
3795 * models > 2, however guests may end up dividing or
3796 * multiplying by zero otherwise.
3797 */
3798 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003799 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02003800 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003801 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003802 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01003803 break;
Xiaoyao Libf10bd02020-06-16 15:33:07 +08003804 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003805 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Dave Hansen09141ec2020-03-05 09:47:06 -08003806 case MSR_IA32_TSC_DEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003807 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003808 break;
Will Auldba904632012-11-29 12:42:50 -08003809 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003810 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08003811 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003812 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003813 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01003814 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003815 case MSR_IA32_SMBASE:
3816 if (!msr_info->host_initiated)
3817 return 1;
3818 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01003819 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003820 case MSR_SMI_COUNT:
3821 msr_info->data = vcpu->arch.smi_count;
3822 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003823 case MSR_IA32_PERF_STATUS:
3824 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003825 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003826 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08003827 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01003828 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003829 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003830 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01003831 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003832 case MSR_KVM_WALL_CLOCK:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003833 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3834 return 1;
3835
3836 msr_info->data = vcpu->kvm->arch.wall_clock;
3837 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003838 case MSR_KVM_WALL_CLOCK_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003839 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3840 return 1;
3841
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003842 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003843 break;
3844 case MSR_KVM_SYSTEM_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003845 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3846 return 1;
3847
3848 msr_info->data = vcpu->arch.time;
3849 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04003850 case MSR_KVM_SYSTEM_TIME_NEW:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003851 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3852 return 1;
3853
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003854 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003855 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003856 case MSR_KVM_ASYNC_PF_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003857 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3858 return 1;
3859
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003860 msr_info->data = vcpu->arch.apf.msr_en_val;
3861 break;
3862 case MSR_KVM_ASYNC_PF_INT:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003863 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3864 return 1;
3865
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +02003866 msr_info->data = vcpu->arch.apf.msr_int_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02003867 break;
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003868 case MSR_KVM_ASYNC_PF_ACK:
Vitaly Kuznetsov0a31df62021-07-22 14:30:18 +02003869 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
Oliver Upton1930e5d2020-10-27 16:10:41 -07003870 return 1;
3871
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02003872 msr_info->data = 0;
3873 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003874 case MSR_KVM_STEAL_TIME:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003875 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3876 return 1;
3877
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003878 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04003879 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003880 case MSR_KVM_PV_EOI_EN:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003881 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3882 return 1;
3883
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003884 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003885 break;
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003886 case MSR_KVM_POLL_CONTROL:
Oliver Upton1930e5d2020-10-27 16:10:41 -07003887 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3888 return 1;
3889
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003890 msr_info->data = vcpu->arch.msr_kvm_poll_control;
3891 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003892 case MSR_IA32_P5_MC_ADDR:
3893 case MSR_IA32_P5_MC_TYPE:
3894 case MSR_IA32_MCG_CAP:
3895 case MSR_IA32_MCG_CTL:
3896 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003897 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003898 return get_msr_mce(vcpu, msr_info->index, &msr_info->data,
3899 msr_info->host_initiated);
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003900 case MSR_IA32_XSS:
3901 if (!msr_info->host_initiated &&
3902 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3903 return 1;
3904 msr_info->data = vcpu->arch.ia32_xss;
3905 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003906 case MSR_K7_CLK_CTL:
3907 /*
3908 * Provide expected ramp-up count for K7. All other
3909 * are set to zero, indicating minimum divisors for
3910 * every field.
3911 *
3912 * This prevents guest kernels on AMD host with CPU
3913 * type 6, model 8 and higher from exploding due to
3914 * the rdmsr failing.
3915 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003916 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003917 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003918 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Jon Doronf97f5a52020-05-29 16:45:40 +03003919 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3920 case HV_X64_MSR_SYNDBG_OPTIONS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003921 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3922 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003923 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003924 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3925 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3926 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine83d5882015-07-03 15:01:34 +03003927 return kvm_hv_get_msr_common(vcpu,
Paolo Bonzini44883f02018-07-26 13:01:52 +02003928 msr_info->index, &msr_info->data,
3929 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003930 case MSR_IA32_BBL_CR_CTL3:
3931 /* This legacy MSR exists but isn't fully documented in current
3932 * silicon. It is however accessed by winxp in very narrow
3933 * scenarios where it sets bit #19, itself documented as
3934 * a "reserved" bit. Best effort attempt to source coherent
3935 * read data here should the balance of the register be
3936 * interpreted by the guest:
3937 *
3938 * L2 cache control register 3: 64GB range, 256KB size,
3939 * enabled, latency 0x1, configured
3940 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003941 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05003942 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003943 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003944 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003945 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003946 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003947 break;
3948 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003949 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003950 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003951 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003952 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003953 case MSR_PLATFORM_INFO:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07003954 if (!msr_info->host_initiated &&
3955 !vcpu->kvm->arch.guest_can_read_msr_platform_info)
3956 return 1;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003957 msr_info->data = vcpu->arch.msr_platform_info;
3958 break;
3959 case MSR_MISC_FEATURES_ENABLES:
3960 msr_info->data = vcpu->arch.msr_misc_features_enables;
3961 break;
Borislav Petkov191c8132019-04-18 18:32:50 +02003962 case MSR_K7_HWCR:
3963 msr_info->data = vcpu->arch.msr_hwcr;
3964 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003965 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003966 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Wei Wangcbd71752020-05-29 15:43:44 +08003967 return kvm_pmu_get_msr(vcpu, msr_info);
Peter Xu6abe9c12020-06-22 18:04:41 -04003968 return KVM_MSR_RET_INVALID;
Carsten Otte15c4a642007-10-30 18:44:17 +01003969 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003970 return 0;
3971}
3972EXPORT_SYMBOL_GPL(kvm_get_msr_common);
3973
Carsten Otte313a3dc2007-10-11 19:16:52 +02003974/*
3975 * Read or write a bunch of msrs. All parameters are kernel addresses.
3976 *
3977 * @return number of msrs set successfully.
3978 */
3979static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
3980 struct kvm_msr_entry *entries,
3981 int (*do_msr)(struct kvm_vcpu *vcpu,
3982 unsigned index, u64 *data))
3983{
Tom Lendacky801e4592018-02-21 13:39:51 -06003984 int i;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003985
Carsten Otte313a3dc2007-10-11 19:16:52 +02003986 for (i = 0; i < msrs->nmsrs; ++i)
3987 if (do_msr(vcpu, entries[i].index, &entries[i].data))
3988 break;
3989
Carsten Otte313a3dc2007-10-11 19:16:52 +02003990 return i;
3991}
3992
3993/*
3994 * Read or write a bunch of msrs. Parameters are user addresses.
3995 *
3996 * @return number of msrs set successfully.
3997 */
3998static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
3999 int (*do_msr)(struct kvm_vcpu *vcpu,
4000 unsigned index, u64 *data),
4001 int writeback)
4002{
4003 struct kvm_msrs msrs;
4004 struct kvm_msr_entry *entries;
4005 int r, n;
4006 unsigned size;
4007
4008 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004009 if (copy_from_user(&msrs, user_msrs, sizeof(msrs)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02004010 goto out;
4011
4012 r = -E2BIG;
4013 if (msrs.nmsrs >= MAX_IO_MSRS)
4014 goto out;
4015
Carsten Otte313a3dc2007-10-11 19:16:52 +02004016 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004017 entries = memdup_user(user_msrs->entries, size);
4018 if (IS_ERR(entries)) {
4019 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004020 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004021 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02004022
4023 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
4024 if (r < 0)
4025 goto out_free;
4026
4027 r = -EFAULT;
4028 if (writeback && copy_to_user(user_msrs->entries, entries, size))
4029 goto out_free;
4030
4031 r = n;
4032
4033out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03004034 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004035out:
4036 return r;
4037}
4038
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004039static inline bool kvm_can_mwait_in_guest(void)
4040{
4041 return boot_cpu_has(X86_FEATURE_MWAIT) &&
KarimAllah Ahmed8e9b29b2018-04-11 11:16:03 +02004042 !boot_cpu_has_bug(X86_BUG_MONITOR) &&
4043 boot_cpu_has(X86_FEATURE_ARAT);
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004044}
4045
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004046static int kvm_ioctl_get_supported_hv_cpuid(struct kvm_vcpu *vcpu,
4047 struct kvm_cpuid2 __user *cpuid_arg)
4048{
4049 struct kvm_cpuid2 cpuid;
4050 int r;
4051
4052 r = -EFAULT;
4053 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
4054 return r;
4055
4056 r = kvm_get_hv_cpuid(vcpu, &cpuid, cpuid_arg->entries);
4057 if (r)
4058 return r;
4059
4060 r = -EFAULT;
4061 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
4062 return r;
4063
4064 return 0;
4065}
4066
Alexander Graf784aa3d2014-07-14 18:27:35 +02004067int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004068{
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004069 int r = 0;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004070
4071 switch (ext) {
4072 case KVM_CAP_IRQCHIP:
4073 case KVM_CAP_HLT:
4074 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004075 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02004076 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004077 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01004078 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08004079 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05004080 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03004081 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03004082 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08004083 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004084 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02004085 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04004086 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03004087 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02004088 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04004089 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08004090 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004091 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02004092 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02004093 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02004094 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004095 case KVM_CAP_HYPERV_SYNIC:
Roman Kaganefc479e2017-06-22 16:51:01 +03004096 case KVM_CAP_HYPERV_SYNIC2:
Roman Kagand3457c82017-07-14 17:13:20 +03004097 case KVM_CAP_HYPERV_VP_INDEX:
Roman Kaganfaeb7832018-02-01 16:48:32 +03004098 case KVM_CAP_HYPERV_EVENTFD:
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02004099 case KVM_CAP_HYPERV_TLBFLUSH:
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02004100 case KVM_CAP_HYPERV_SEND_IPI:
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004101 case KVM_CAP_HYPERV_CPUID:
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02004102 case KVM_CAP_HYPERV_ENFORCE_CPUID:
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004103 case KVM_CAP_SYS_HYPERV_CPUID:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08004104 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004105 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01004106 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004107 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02004108 case KVM_CAP_ASYNC_PF:
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +02004109 case KVM_CAP_ASYNC_PF_INT:
Joerg Roedel92a1f122011-03-25 09:44:51 +01004110 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004111 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08004112 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01004113 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05004114 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01004115 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03004116 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02004117 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07004118 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01004119 case KVM_CAP_IMMEDIATE_EXIT:
Eric Hankland66bb8a02019-07-10 18:25:15 -07004120 case KVM_CAP_PMU_EVENT_FILTER:
Tom Lendacky801e4592018-02-21 13:39:51 -06004121 case KVM_CAP_GET_MSR_FEATURES:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07004122 case KVM_CAP_MSR_PLATFORM_INFO:
Jim Mattsonc4f55192018-10-16 14:29:24 -07004123 case KVM_CAP_EXCEPTION_PAYLOAD:
Peter Xub9b27822020-05-05 11:47:50 -04004124 case KVM_CAP_SET_GUEST_DEBUG:
Jim Mattson1aa561b2020-06-03 16:56:21 -07004125 case KVM_CAP_LAST_CPU:
Alexander Graf1ae09952020-09-25 16:34:16 +02004126 case KVM_CAP_X86_USER_SPACE_MSR:
Alexander Graf1a1552542020-09-25 16:34:21 +02004127 case KVM_CAP_X86_MSR_FILTER:
Oliver Upton66570e92020-08-18 15:24:28 +00004128 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
Sean Christophersonfe7e9482021-04-12 16:21:43 +12004129#ifdef CONFIG_X86_SGX_KVM
4130 case KVM_CAP_SGX_ATTRIBUTE:
4131#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00004132 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
Maxim Levitsky6dba9402021-06-07 12:02:02 +03004133 case KVM_CAP_SREGS2:
Aaron Lewis19238e72021-05-10 07:48:33 -07004134 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
Oliver Upton828ca892021-09-16 18:15:38 +00004135 case KVM_CAP_VCPU_ATTRIBUTES:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004136 r = 1;
4137 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00004138 case KVM_CAP_EXIT_HYPERCALL:
4139 r = KVM_EXIT_HYPERCALL_VALID_MASK;
4140 break;
Maxim Levitsky7e582cc2021-04-01 16:54:45 +03004141 case KVM_CAP_SET_GUEST_DEBUG2:
4142 return KVM_GUESTDBG_VALID_MASK;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004143#ifdef CONFIG_KVM_XEN
Joao Martins23200b72018-06-13 09:55:44 -04004144 case KVM_CAP_XEN_HVM:
4145 r = KVM_XEN_HVM_CONFIG_HYPERCALL_MSR |
David Woodhouse8d4e7e82020-12-04 01:02:04 +00004146 KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL |
4147 KVM_XEN_HVM_CONFIG_SHARED_INFO;
David Woodhouse30b5c852021-03-01 12:53:09 +00004148 if (sched_info_on())
4149 r |= KVM_XEN_HVM_CONFIG_RUNSTATE;
Joao Martins23200b72018-06-13 09:55:44 -04004150 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05004151#endif
Ken Hofsass01643c52018-01-31 16:03:36 -08004152 case KVM_CAP_SYNC_REGS:
4153 r = KVM_SYNC_X86_VALID_FIELDS;
4154 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004155 case KVM_CAP_ADJUST_CLOCK:
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00004156 r = KVM_CLOCK_VALID_FLAGS;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01004157 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004158 case KVM_CAP_X86_DISABLE_EXITS:
Wanpeng Lib5170062019-05-21 14:06:53 +08004159 r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE |
4160 KVM_X86_DISABLE_EXITS_CSTATE;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004161 if(kvm_can_mwait_in_guest())
4162 r |= KVM_X86_DISABLE_EXITS_MWAIT;
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02004163 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004164 case KVM_CAP_X86_SMM:
4165 /* SMBASE is usually relocated above 1M on modern chipsets,
4166 * and SMM handlers might indeed rely on 4G segment limits,
4167 * so do not report SMM to be available if real mode is
4168 * emulated via vm86 mode. Still, do not go to great lengths
4169 * to avoid userspace's usage of the feature, because it is a
4170 * fringe case that is not enabled except via specific settings
4171 * of the module parameters.
4172 */
Jason Baronb36464772021-01-14 22:27:56 -05004173 r = static_call(kvm_x86_has_emulated_msr)(kvm, MSR_IA32_SMBASE);
Paolo Bonzini6d396b52015-04-01 14:25:33 +02004174 break;
Avi Kivity774ead32007-12-26 13:57:04 +02004175 case KVM_CAP_VAPIC:
Jason Baronb36464772021-01-14 22:27:56 -05004176 r = !static_call(kvm_x86_cpu_has_accelerated_tpr)();
Avi Kivity774ead32007-12-26 13:57:04 +02004177 break;
Avi Kivityf7252302008-02-20 11:53:16 +02004178 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03004179 r = KVM_SOFT_MAX_VCPUS;
4180 break;
4181 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02004182 r = KVM_MAX_VCPUS;
4183 break;
Thomas Hutha86cb412019-05-23 18:43:08 +02004184 case KVM_CAP_MAX_VCPU_ID:
Juergen Grossa1c42dd2021-09-13 15:57:44 +02004185 r = KVM_MAX_VCPU_IDS;
Thomas Hutha86cb412019-05-23 18:43:08 +02004186 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03004187 case KVM_CAP_PV_MMU: /* obsolete */
4188 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05004189 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08004190 case KVM_CAP_MCE:
4191 r = KVM_MAX_MCE_BANKS;
4192 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004193 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02004194 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004195 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004196 case KVM_CAP_TSC_CONTROL:
4197 r = kvm_has_tsc_control;
4198 break;
Radim Krčmář371313132016-07-12 22:09:27 +02004199 case KVM_CAP_X2APIC_API:
4200 r = KVM_X2APIC_API_VALID_FLAGS;
4201 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004202 case KVM_CAP_NESTED_STATE:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004203 r = kvm_x86_ops.nested_ops->get_state ?
4204 kvm_x86_ops.nested_ops->get_state(NULL, NULL, 0) : 0;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004205 break;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004206 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004207 r = kvm_x86_ops.enable_direct_tlbflush != NULL;
Vitaly Kuznetsov5a0165f2019-08-28 09:59:05 +02004208 break;
4209 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004210 r = kvm_x86_ops.nested_ops->enable_evmcs != NULL;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004211 break;
Mohammed Gamal3edd6832020-07-10 17:48:11 +02004212 case KVM_CAP_SMALLER_MAXPHYADDR:
4213 r = (int) allow_smaller_maxphyaddr;
4214 break;
Andrew Jones004a0122020-08-04 19:06:04 +02004215 case KVM_CAP_STEAL_TIME:
4216 r = sched_info_on();
4217 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08004218 case KVM_CAP_X86_BUS_LOCK_EXIT:
4219 if (kvm_has_bus_lock_exit)
4220 r = KVM_BUS_LOCK_DETECTION_OFF |
4221 KVM_BUS_LOCK_DETECTION_EXIT;
4222 else
4223 r = 0;
4224 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004225 default:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08004226 break;
4227 }
4228 return r;
4229
4230}
4231
Carsten Otte043405e2007-10-10 17:16:19 +02004232long kvm_arch_dev_ioctl(struct file *filp,
4233 unsigned int ioctl, unsigned long arg)
4234{
4235 void __user *argp = (void __user *)arg;
4236 long r;
4237
4238 switch (ioctl) {
4239 case KVM_GET_MSR_INDEX_LIST: {
4240 struct kvm_msr_list __user *user_msr_list = argp;
4241 struct kvm_msr_list msr_list;
4242 unsigned n;
4243
4244 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004245 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004246 goto out;
4247 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004248 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004249 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02004250 goto out;
4251 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004252 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02004253 goto out;
4254 r = -EFAULT;
4255 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
4256 num_msrs_to_save * sizeof(u32)))
4257 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02004258 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02004259 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02004260 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02004261 goto out;
4262 r = 0;
4263 break;
4264 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004265 case KVM_GET_SUPPORTED_CPUID:
4266 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02004267 struct kvm_cpuid2 __user *cpuid_arg = argp;
4268 struct kvm_cpuid2 cpuid;
4269
4270 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004271 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004272 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02004273
4274 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
4275 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02004276 if (r)
4277 goto out;
4278
4279 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004280 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02004281 goto out;
4282 r = 0;
4283 break;
4284 }
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004285 case KVM_X86_GET_MCE_CAP_SUPPORTED:
Huang Ying890ca9a2009-05-11 16:48:15 +08004286 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004287 if (copy_to_user(argp, &kvm_mce_cap_supported,
4288 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004289 goto out;
4290 r = 0;
4291 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004292 case KVM_GET_MSR_FEATURE_INDEX_LIST: {
4293 struct kvm_msr_list __user *user_msr_list = argp;
4294 struct kvm_msr_list msr_list;
4295 unsigned int n;
4296
4297 r = -EFAULT;
4298 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
4299 goto out;
4300 n = msr_list.nmsrs;
4301 msr_list.nmsrs = num_msr_based_features;
4302 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
4303 goto out;
4304 r = -E2BIG;
4305 if (n < msr_list.nmsrs)
4306 goto out;
4307 r = -EFAULT;
4308 if (copy_to_user(user_msr_list->indices, &msr_based_features,
4309 num_msr_based_features * sizeof(u32)))
4310 goto out;
4311 r = 0;
4312 break;
4313 }
4314 case KVM_GET_MSRS:
4315 r = msr_io(NULL, argp, do_get_msr_feature, 1);
4316 break;
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02004317 case KVM_GET_SUPPORTED_HV_CPUID:
4318 r = kvm_ioctl_get_supported_hv_cpuid(NULL, argp);
4319 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004320 default:
4321 r = -EINVAL;
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08004322 break;
Carsten Otte043405e2007-10-10 17:16:19 +02004323 }
4324out:
4325 return r;
4326}
4327
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004328static void wbinvd_ipi(void *garbage)
4329{
4330 wbinvd();
4331}
4332
4333static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
4334{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06004335 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004336}
4337
Carsten Otte313a3dc2007-10-11 19:16:52 +02004338void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
4339{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004340 /* Address WBINVD may be executed by guest */
4341 if (need_emulate_wbinvd(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05004342 if (static_call(kvm_x86_has_wbinvd_exit)())
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004343 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
4344 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
4345 smp_call_function_single(vcpu->cpu,
4346 wbinvd_ipi, NULL, 1);
4347 }
4348
Jason Baronb36464772021-01-14 22:27:56 -05004349 static_call(kvm_x86_vcpu_load)(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004350
Babu Moger37486132020-05-12 18:59:06 -05004351 /* Save host pkru register if supported */
4352 vcpu->arch.host_pkru = read_pkru();
4353
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004354 /* Apply any externally detected TSC adjustments (due to suspend) */
4355 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
4356 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
4357 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08004358 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02004359 }
4360
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004361 if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02004362 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004363 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10004364 if (tsc_delta < 0)
4365 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07004366
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01004367 if (kvm_check_tsc_unstable()) {
Ilias Stamatis9b399df2021-05-26 19:44:10 +01004368 u64 offset = kvm_compute_l1_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02004369 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04004370 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004371 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10004372 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02004373
4374 if (kvm_lapic_hv_timer_in_use(vcpu))
4375 kvm_lapic_restart_hv_timer(vcpu);
4376
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02004377 /*
4378 * On a host with synchronized TSC, there is no need to update
4379 * kvmclock on vcpu->cpu migration
4380 */
4381 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03004382 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10004383 if (vcpu->cpu != cpu)
Radim Krčmář1bd20092017-04-26 22:32:20 +02004384 kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10004385 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10004386 }
Glauber Costac9aaa892011-07-11 15:28:14 -04004387
Glauber Costac9aaa892011-07-11 15:28:14 -04004388 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004389}
4390
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004391static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
4392{
David Woodhouse7e2175e2021-11-02 17:36:39 +00004393 struct gfn_to_hva_cache *ghc = &vcpu->arch.st.cache;
4394 struct kvm_steal_time __user *st;
4395 struct kvm_memslots *slots;
4396 static const u8 preempted = KVM_VCPU_PREEMPTED;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004397
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004398 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
4399 return;
4400
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00004401 if (vcpu->arch.st.preempted)
Boris Ostrovsky8c6de562019-10-30 19:01:31 +00004402 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004403
David Woodhouse7e2175e2021-11-02 17:36:39 +00004404 /* This happens on process exit */
4405 if (unlikely(current->mm != vcpu->kvm->mm))
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004406 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004407
David Woodhouse7e2175e2021-11-02 17:36:39 +00004408 slots = kvm_memslots(vcpu->kvm);
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004409
David Woodhouse7e2175e2021-11-02 17:36:39 +00004410 if (unlikely(slots->generation != ghc->generation ||
4411 kvm_is_error_hva(ghc->hva) || !ghc->memslot))
4412 return;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00004413
David Woodhouse7e2175e2021-11-02 17:36:39 +00004414 st = (struct kvm_steal_time __user *)ghc->hva;
4415 BUILD_BUG_ON(sizeof(st->preempted) != sizeof(preempted));
4416
4417 if (!copy_to_user_nofault(&st->preempted, &preempted, sizeof(preempted)))
4418 vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED;
4419
4420 mark_page_dirty_in_slot(vcpu->kvm, ghc->memslot, gpa_to_gfn(ghc->gpa));
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04004421}
4422
Carsten Otte313a3dc2007-10-11 19:16:52 +02004423void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
4424{
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004425 int idx;
4426
Tom Lendackyf1c63662020-12-14 10:29:50 -05004427 if (vcpu->preempted && !vcpu->arch.guest_state_protected)
Jason Baronb36464772021-01-14 22:27:56 -05004428 vcpu->arch.preempted_in_kernel = !static_call(kvm_x86_get_cpl)(vcpu);
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08004429
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004430 /*
4431 * Take the srcu lock as memslots will be accessed to check the gfn
4432 * cache generation against the memslots generation.
4433 */
4434 idx = srcu_read_lock(&vcpu->kvm->srcu);
David Woodhouse30b5c852021-03-01 12:53:09 +00004435 if (kvm_xen_msr_enabled(vcpu->kvm))
4436 kvm_xen_runstate_set_preempted(vcpu);
4437 else
4438 kvm_steal_time_set_preempted(vcpu);
Wanpeng Li9c1a0742021-04-23 16:23:20 +08004439 srcu_read_unlock(&vcpu->kvm->srcu, idx);
David Woodhouse30b5c852021-03-01 12:53:09 +00004440
Jason Baronb36464772021-01-14 22:27:56 -05004441 static_call(kvm_x86_vcpu_put)(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02004442 vcpu->arch.last_host_tsc = rdtsc();
Carsten Otte313a3dc2007-10-11 19:16:52 +02004443}
4444
Carsten Otte313a3dc2007-10-11 19:16:52 +02004445static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
4446 struct kvm_lapic_state *s)
4447{
Liran Alonfa59cc02017-12-24 18:12:53 +02004448 if (vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05004449 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03004450
Radim Krčmářa92e2542016-07-12 22:09:22 +02004451 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004452}
4453
4454static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
4455 struct kvm_lapic_state *s)
4456{
Radim Krčmářa92e2542016-07-12 22:09:22 +02004457 int r;
4458
4459 r = kvm_apic_set_state(vcpu, s);
4460 if (r)
4461 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03004462 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004463
4464 return 0;
4465}
4466
Matt Gingell127a4572015-11-17 17:32:05 +01004467static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
4468{
Paolo Bonzini71cc8492020-11-27 09:18:20 +01004469 /*
4470 * We can accept userspace's request for interrupt injection
4471 * as long as we have a place to store the interrupt number.
4472 * The actual injection will happen when the CPU is able to
4473 * deliver the interrupt.
4474 */
4475 if (kvm_cpu_has_extint(vcpu))
4476 return false;
4477
4478 /* Acknowledging ExtINT does not happen if LINT0 is masked. */
Matt Gingell127a4572015-11-17 17:32:05 +01004479 return (!lapic_in_kernel(vcpu) ||
4480 kvm_apic_accept_pic_intr(vcpu));
4481}
4482
Matt Gingell782d4222015-11-16 15:26:00 -08004483static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
4484{
Paolo Bonzinifa7a5492021-07-14 17:37:49 -04004485 /*
4486 * Do not cause an interrupt window exit if an exception
4487 * is pending or an event needs reinjection; userspace
4488 * might want to inject the interrupt manually using KVM_SET_REGS
4489 * or KVM_SET_SREGS. For that to work, we must be at an
4490 * instruction boundary and with no events half-injected.
4491 */
4492 return (kvm_arch_interrupt_allowed(vcpu) &&
4493 kvm_cpu_accept_dm_intr(vcpu) &&
4494 !kvm_event_needs_reinjection(vcpu) &&
4495 !vcpu->arch.exception.pending);
Matt Gingell782d4222015-11-16 15:26:00 -08004496}
4497
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004498static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
4499 struct kvm_interrupt *irq)
4500{
Chen Gang02cdb502013-02-27 11:33:25 +08004501 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004502 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004503
4504 if (!irqchip_in_kernel(vcpu->kvm)) {
4505 kvm_queue_interrupt(vcpu, irq->irq, false);
4506 kvm_make_request(KVM_REQ_EVENT, vcpu);
4507 return 0;
4508 }
4509
4510 /*
4511 * With in-kernel LAPIC, we only use this to inject EXTINT, so
4512 * fail for in-kernel 8259.
4513 */
4514 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004515 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004516
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004517 if (vcpu->arch.pending_external_vector != -1)
4518 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004519
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02004520 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08004521 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004522 return 0;
4523}
4524
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004525static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
4526{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004527 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004528
4529 return 0;
4530}
4531
Paolo Bonzinif0778252015-04-01 15:06:40 +02004532static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
4533{
Paolo Bonzini64d60672015-05-07 11:36:11 +02004534 kvm_make_request(KVM_REQ_SMI, vcpu);
4535
Paolo Bonzinif0778252015-04-01 15:06:40 +02004536 return 0;
4537}
4538
Avi Kivityb209749f2007-10-22 16:50:39 +02004539static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
4540 struct kvm_tpr_access_ctl *tac)
4541{
4542 if (tac->flags)
4543 return -EINVAL;
4544 vcpu->arch.tpr_access_reporting = !!tac->enabled;
4545 return 0;
4546}
4547
Huang Ying890ca9a2009-05-11 16:48:15 +08004548static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
4549 u64 mcg_cap)
4550{
4551 int r;
4552 unsigned bank_num = mcg_cap & 0xff, bank;
4553
4554 r = -EINVAL;
Jim Mattsonc4e0e4ab2020-05-11 15:56:16 -07004555 if (!bank_num || bank_num > KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08004556 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004557 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08004558 goto out;
4559 r = 0;
4560 vcpu->arch.mcg_cap = mcg_cap;
4561 /* Init IA32_MCG_CTL to all 1s */
4562 if (mcg_cap & MCG_CTL_P)
4563 vcpu->arch.mcg_ctl = ~(u64)0;
4564 /* Init IA32_MCi_CTL to all 1s */
4565 for (bank = 0; bank < bank_num; bank++)
4566 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08004567
Jason Baronb36464772021-01-14 22:27:56 -05004568 static_call(kvm_x86_setup_mce)(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004569out:
4570 return r;
4571}
4572
4573static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
4574 struct kvm_x86_mce *mce)
4575{
4576 u64 mcg_cap = vcpu->arch.mcg_cap;
4577 unsigned bank_num = mcg_cap & 0xff;
4578 u64 *banks = vcpu->arch.mce_banks;
4579
4580 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
4581 return -EINVAL;
4582 /*
4583 * if IA32_MCG_CTL is not all 1s, the uncorrected error
4584 * reporting is disabled
4585 */
4586 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
4587 vcpu->arch.mcg_ctl != ~(u64)0)
4588 return 0;
4589 banks += 4 * mce->bank;
4590 /*
4591 * if IA32_MCi_CTL is not all 1s, the uncorrected error
4592 * reporting is disabled for the bank
4593 */
4594 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
4595 return 0;
4596 if (mce->status & MCI_STATUS_UC) {
4597 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02004598 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03004599 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08004600 return 0;
4601 }
4602 if (banks[1] & MCI_STATUS_VAL)
4603 mce->status |= MCI_STATUS_OVER;
4604 banks[2] = mce->addr;
4605 banks[3] = mce->misc;
4606 vcpu->arch.mcg_status = mce->mcg_status;
4607 banks[1] = mce->status;
4608 kvm_queue_exception(vcpu, MC_VECTOR);
4609 } else if (!(banks[1] & MCI_STATUS_VAL)
4610 || !(banks[1] & MCI_STATUS_UC)) {
4611 if (banks[1] & MCI_STATUS_VAL)
4612 mce->status |= MCI_STATUS_OVER;
4613 banks[2] = mce->addr;
4614 banks[3] = mce->misc;
4615 banks[1] = mce->status;
4616 } else
4617 banks[1] |= MCI_STATUS_OVER;
4618 return 0;
4619}
4620
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004621static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
4622 struct kvm_vcpu_events *events)
4623{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004624 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004625
Jay Zhou1f7becf2021-01-18 16:47:20 +08004626 if (kvm_check_request(KVM_REQ_SMI, vcpu))
4627 process_smi(vcpu);
4628
Wanpeng Li664f8e22017-08-24 03:35:09 -07004629 /*
Oliver Uptona06230b2020-02-07 02:36:06 -08004630 * In guest mode, payload delivery should be deferred,
4631 * so that the L1 hypervisor can intercept #PF before
4632 * CR2 is modified (or intercept #DB before DR6 is
4633 * modified under nVMX). Unless the per-VM capability,
4634 * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of
4635 * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we
4636 * opportunistically defer the exception payload, deliver it if the
4637 * capability hasn't been requested before processing a
4638 * KVM_GET_VCPU_EVENTS.
4639 */
4640 if (!vcpu->kvm->arch.exception_payload_enabled &&
4641 vcpu->arch.exception.pending && vcpu->arch.exception.has_payload)
4642 kvm_deliver_exception_payload(vcpu);
4643
4644 /*
Jim Mattson59073aa2018-10-16 14:29:20 -07004645 * The API doesn't provide the instruction length for software
4646 * exceptions, so don't report them. As long as the guest RIP
4647 * isn't advanced, we should expect to encounter the exception
4648 * again.
Wanpeng Li664f8e22017-08-24 03:35:09 -07004649 */
Jim Mattson59073aa2018-10-16 14:29:20 -07004650 if (kvm_exception_is_soft(vcpu->arch.exception.nr)) {
4651 events->exception.injected = 0;
4652 events->exception.pending = 0;
4653 } else {
4654 events->exception.injected = vcpu->arch.exception.injected;
4655 events->exception.pending = vcpu->arch.exception.pending;
4656 /*
4657 * For ABI compatibility, deliberately conflate
4658 * pending and injected exceptions when
4659 * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled.
4660 */
4661 if (!vcpu->kvm->arch.exception_payload_enabled)
4662 events->exception.injected |=
4663 vcpu->arch.exception.pending;
4664 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004665 events->exception.nr = vcpu->arch.exception.nr;
4666 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
4667 events->exception.error_code = vcpu->arch.exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004668 events->exception_has_payload = vcpu->arch.exception.has_payload;
4669 events->exception_payload = vcpu->arch.exception.payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004670
Jan Kiszka03b82a32010-02-15 10:45:41 +01004671 events->interrupt.injected =
Liran Alon04140b42018-03-23 03:01:31 +03004672 vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004673 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01004674 events->interrupt.soft = 0;
Jason Baronb36464772021-01-14 22:27:56 -05004675 events->interrupt.shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004676
4677 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004678 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Jason Baronb36464772021-01-14 22:27:56 -05004679 events->nmi.masked = static_call(kvm_x86_get_nmi_mask)(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004680 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004681
Jan Kiszka66450a22013-03-13 12:42:34 +01004682 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004683
Paolo Bonzinif0778252015-04-01 15:06:40 +02004684 events->smi.smm = is_smm(vcpu);
4685 events->smi.pending = vcpu->arch.smi_pending;
4686 events->smi.smm_inside_nmi =
4687 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
4688 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
4689
Jan Kiszkadab4b912009-12-06 18:24:15 +01004690 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02004691 | KVM_VCPUEVENT_VALID_SHADOW
4692 | KVM_VCPUEVENT_VALID_SMM);
Jim Mattson59073aa2018-10-16 14:29:20 -07004693 if (vcpu->kvm->arch.exception_payload_enabled)
4694 events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD;
4695
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004696 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004697}
4698
Sean Christophersondc872752021-06-09 11:56:15 -07004699static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004700
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004701static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
4702 struct kvm_vcpu_events *events)
4703{
Jan Kiszkadab4b912009-12-06 18:24:15 +01004704 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01004705 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02004706 | KVM_VCPUEVENT_VALID_SHADOW
Jim Mattson59073aa2018-10-16 14:29:20 -07004707 | KVM_VCPUEVENT_VALID_SMM
4708 | KVM_VCPUEVENT_VALID_PAYLOAD))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004709 return -EINVAL;
4710
Jim Mattson59073aa2018-10-16 14:29:20 -07004711 if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) {
4712 if (!vcpu->kvm->arch.exception_payload_enabled)
4713 return -EINVAL;
4714 if (events->exception.pending)
4715 events->exception.injected = 0;
4716 else
4717 events->exception_has_payload = 0;
4718 } else {
4719 events->exception.pending = 0;
4720 events->exception_has_payload = 0;
4721 }
4722
4723 if ((events->exception.injected || events->exception.pending) &&
4724 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02004725 return -EINVAL;
4726
David Hildenbrand28bf2882017-03-23 11:46:03 +01004727 /* INITs are latched while in SMM */
4728 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
4729 (events->smi.smm || events->smi.pending) &&
4730 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
4731 return -EINVAL;
4732
Avi Kivity7460fb4a2011-09-20 13:43:14 +03004733 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07004734 vcpu->arch.exception.injected = events->exception.injected;
4735 vcpu->arch.exception.pending = events->exception.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004736 vcpu->arch.exception.nr = events->exception.nr;
4737 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
4738 vcpu->arch.exception.error_code = events->exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07004739 vcpu->arch.exception.has_payload = events->exception_has_payload;
4740 vcpu->arch.exception.payload = events->exception_payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004741
Liran Alon04140b42018-03-23 03:01:31 +03004742 vcpu->arch.interrupt.injected = events->interrupt.injected;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004743 vcpu->arch.interrupt.nr = events->interrupt.nr;
4744 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01004745 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
Jason Baronb36464772021-01-14 22:27:56 -05004746 static_call(kvm_x86_set_interrupt_shadow)(vcpu,
4747 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004748
4749 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01004750 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
4751 vcpu->arch.nmi_pending = events->nmi.pending;
Jason Baronb36464772021-01-14 22:27:56 -05004752 static_call(kvm_x86_set_nmi_mask)(vcpu, events->nmi.masked);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004753
Jan Kiszka66450a22013-03-13 12:42:34 +01004754 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004755 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01004756 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004757
Paolo Bonzinif0778252015-04-01 15:06:40 +02004758 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Sean Christophersondc872752021-06-09 11:56:15 -07004759 if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm)
4760 kvm_smm_changed(vcpu, events->smi.smm);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004761
Paolo Bonzinif0778252015-04-01 15:06:40 +02004762 vcpu->arch.smi_pending = events->smi.pending;
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004763
4764 if (events->smi.smm) {
4765 if (events->smi.smm_inside_nmi)
4766 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02004767 else
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004768 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Liran Alonff90afa2019-11-11 11:16:39 +02004769 }
4770
4771 if (lapic_in_kernel(vcpu)) {
4772 if (events->smi.latched_init)
4773 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
4774 else
4775 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
Paolo Bonzinif0778252015-04-01 15:06:40 +02004776 }
4777 }
4778
Avi Kivity3842d132010-07-27 12:30:24 +03004779 kvm_make_request(KVM_REQ_EVENT, vcpu);
4780
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004781 return 0;
4782}
4783
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004784static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
4785 struct kvm_debugregs *dbgregs)
4786{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004787 unsigned long val;
4788
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004789 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004790 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004791 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004792 dbgregs->dr7 = vcpu->arch.dr7;
4793 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004794 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004795}
4796
4797static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
4798 struct kvm_debugregs *dbgregs)
4799{
4800 if (dbgregs->flags)
4801 return -EINVAL;
4802
Paolo Bonzinifd238002020-11-13 08:31:09 -05004803 if (!kvm_dr6_valid(dbgregs->dr6))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004804 return -EINVAL;
Paolo Bonzinifd238002020-11-13 08:31:09 -05004805 if (!kvm_dr7_valid(dbgregs->dr7))
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004806 return -EINVAL;
4807
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004808 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03004809 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004810 vcpu->arch.dr6 = dbgregs->dr6;
4811 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01004812 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004813
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004814 return 0;
4815}
4816
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004817#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
4818
4819static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
4820{
Marc Orrb666a4b2018-11-06 14:53:56 -08004821 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02004822 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004823 u64 valid;
4824
4825 /*
4826 * Copy legacy XSAVE area, to avoid complications with CPUID
4827 * leaves 0 and 1 in the loop below.
4828 */
4829 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
4830
4831 /* Set XSTATE_BV */
Radim Krčmář00c87e92017-02-01 14:19:53 +01004832 xstate_bv &= vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004833 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
4834
4835 /*
4836 * Copy each region from the possibly compacted offset to the
4837 * non-compacted offset.
4838 */
Dave Hansend91cab72015-09-02 16:31:26 -07004839 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004840 while (valid) {
Dave Hansen71ef4532021-06-23 14:01:49 +02004841 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004842 u64 xfeature_mask = valid & -valid;
4843 int xfeature_nr = fls64(xfeature_mask) - 1;
Dave Hansen71ef4532021-06-23 14:01:49 +02004844 void *src;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004845
Dave Hansen71ef4532021-06-23 14:01:49 +02004846 cpuid_count(XSTATE_CPUID, xfeature_nr,
4847 &size, &offset, &ecx, &edx);
4848
4849 if (xfeature_nr == XFEATURE_PKRU) {
4850 memcpy(dest + offset, &vcpu->arch.pkru,
4851 sizeof(vcpu->arch.pkru));
4852 } else {
4853 src = get_xsave_addr(xsave, xfeature_nr);
4854 if (src)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004855 memcpy(dest + offset, src, size);
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004856 }
4857
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004858 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004859 }
4860}
4861
4862static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
4863{
Marc Orrb666a4b2018-11-06 14:53:56 -08004864 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004865 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
4866 u64 valid;
4867
4868 /*
4869 * Copy legacy XSAVE area, to avoid complications with CPUID
4870 * leaves 0 and 1 in the loop below.
4871 */
4872 memcpy(xsave, src, XSAVE_HDR_OFFSET);
4873
4874 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02004875 xsave->header.xfeatures = xstate_bv;
Borislav Petkov782511b2016-04-04 22:25:03 +02004876 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar3a544502015-04-24 10:14:36 +02004877 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004878
4879 /*
4880 * Copy each region from the non-compacted offset to the
4881 * possibly compacted offset.
4882 */
Dave Hansend91cab72015-09-02 16:31:26 -07004883 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004884 while (valid) {
Dave Hansen71ef4532021-06-23 14:01:49 +02004885 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004886 u64 xfeature_mask = valid & -valid;
4887 int xfeature_nr = fls64(xfeature_mask) - 1;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004888
Dave Hansen71ef4532021-06-23 14:01:49 +02004889 cpuid_count(XSTATE_CPUID, xfeature_nr,
4890 &size, &offset, &ecx, &edx);
4891
4892 if (xfeature_nr == XFEATURE_PKRU) {
4893 memcpy(&vcpu->arch.pkru, src + offset,
4894 sizeof(vcpu->arch.pkru));
4895 } else {
4896 void *dest = get_xsave_addr(xsave, xfeature_nr);
4897
4898 if (dest)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004899 memcpy(dest, src + offset, size);
Wanpeng Liee4100d2015-07-09 15:44:52 +08004900 }
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004901
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004902 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004903 }
4904}
4905
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004906static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
4907 struct kvm_xsave *guest_xsave)
4908{
Tom Lendackyed02b212020-12-10 11:10:01 -06004909 if (!vcpu->arch.guest_fpu)
4910 return;
4911
Borislav Petkovd366bf72016-04-04 22:25:02 +02004912 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004913 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
4914 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02004915 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004916 memcpy(guest_xsave->region,
Marc Orrb666a4b2018-11-06 14:53:56 -08004917 &vcpu->arch.guest_fpu->state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02004918 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004919 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
Dave Hansend91cab72015-09-02 16:31:26 -07004920 XFEATURE_MASK_FPSSE;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004921 }
4922}
4923
Wanpeng Lia5758132017-05-11 02:58:55 -07004924#define XSAVE_MXCSR_OFFSET 24
4925
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004926static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
4927 struct kvm_xsave *guest_xsave)
4928{
Tom Lendackyed02b212020-12-10 11:10:01 -06004929 u64 xstate_bv;
4930 u32 mxcsr;
4931
4932 if (!vcpu->arch.guest_fpu)
4933 return 0;
4934
4935 xstate_bv = *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
4936 mxcsr = *(u32 *)&guest_xsave->region[XSAVE_MXCSR_OFFSET / sizeof(u32)];
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004937
Borislav Petkovd366bf72016-04-04 22:25:02 +02004938 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004939 /*
4940 * Here we allow setting states that are not present in
4941 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
4942 * with old userspace.
4943 */
Sean Christophersoncfc48182020-03-02 15:56:23 -08004944 if (xstate_bv & ~supported_xcr0 || mxcsr & ~mxcsr_feature_mask)
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004945 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004946 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004947 } else {
Wanpeng Lia5758132017-05-11 02:58:55 -07004948 if (xstate_bv & ~XFEATURE_MASK_FPSSE ||
4949 mxcsr & ~mxcsr_feature_mask)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004950 return -EINVAL;
Marc Orrb666a4b2018-11-06 14:53:56 -08004951 memcpy(&vcpu->arch.guest_fpu->state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02004952 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004953 }
4954 return 0;
4955}
4956
4957static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
4958 struct kvm_xcrs *guest_xcrs)
4959{
Borislav Petkovd366bf72016-04-04 22:25:02 +02004960 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004961 guest_xcrs->nr_xcrs = 0;
4962 return;
4963 }
4964
4965 guest_xcrs->nr_xcrs = 1;
4966 guest_xcrs->flags = 0;
4967 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
4968 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
4969}
4970
4971static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
4972 struct kvm_xcrs *guest_xcrs)
4973{
4974 int i, r = 0;
4975
Borislav Petkovd366bf72016-04-04 22:25:02 +02004976 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004977 return -EINVAL;
4978
4979 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
4980 return -EINVAL;
4981
4982 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
4983 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004984 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004985 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004986 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004987 break;
4988 }
4989 if (r)
4990 r = -EINVAL;
4991 return r;
4992}
4993
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004994/*
4995 * kvm_set_guest_paused() indicates to the guest kernel that it has been
4996 * stopped by the hypervisor. This function will be called from the host only.
4997 * EINVAL is returned when the host attempts to set the flag for a guest that
4998 * does not support pv clocks.
4999 */
5000static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
5001{
Andy Honig0b794592013-02-20 14:48:10 -08005002 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005003 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03005004 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005005 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
5006 return 0;
5007}
5008
Oliver Upton828ca892021-09-16 18:15:38 +00005009static int kvm_arch_tsc_has_attr(struct kvm_vcpu *vcpu,
5010 struct kvm_device_attr *attr)
5011{
5012 int r;
5013
5014 switch (attr->attr) {
5015 case KVM_VCPU_TSC_OFFSET:
5016 r = 0;
5017 break;
5018 default:
5019 r = -ENXIO;
5020 }
5021
5022 return r;
5023}
5024
5025static int kvm_arch_tsc_get_attr(struct kvm_vcpu *vcpu,
5026 struct kvm_device_attr *attr)
5027{
5028 u64 __user *uaddr = (u64 __user *)(unsigned long)attr->addr;
5029 int r;
5030
5031 if ((u64)(unsigned long)uaddr != attr->addr)
5032 return -EFAULT;
5033
5034 switch (attr->attr) {
5035 case KVM_VCPU_TSC_OFFSET:
5036 r = -EFAULT;
5037 if (put_user(vcpu->arch.l1_tsc_offset, uaddr))
5038 break;
5039 r = 0;
5040 break;
5041 default:
5042 r = -ENXIO;
5043 }
5044
5045 return r;
5046}
5047
5048static int kvm_arch_tsc_set_attr(struct kvm_vcpu *vcpu,
5049 struct kvm_device_attr *attr)
5050{
5051 u64 __user *uaddr = (u64 __user *)(unsigned long)attr->addr;
5052 struct kvm *kvm = vcpu->kvm;
5053 int r;
5054
5055 if ((u64)(unsigned long)uaddr != attr->addr)
5056 return -EFAULT;
5057
5058 switch (attr->attr) {
5059 case KVM_VCPU_TSC_OFFSET: {
5060 u64 offset, tsc, ns;
5061 unsigned long flags;
5062 bool matched;
5063
5064 r = -EFAULT;
5065 if (get_user(offset, uaddr))
5066 break;
5067
5068 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
5069
5070 matched = (vcpu->arch.virtual_tsc_khz &&
5071 kvm->arch.last_tsc_khz == vcpu->arch.virtual_tsc_khz &&
5072 kvm->arch.last_tsc_offset == offset);
5073
5074 tsc = kvm_scale_tsc(vcpu, rdtsc(), vcpu->arch.l1_tsc_scaling_ratio) + offset;
5075 ns = get_kvmclock_base_ns();
5076
5077 __kvm_synchronize_tsc(vcpu, offset, tsc, ns, matched);
5078 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
5079
5080 r = 0;
5081 break;
5082 }
5083 default:
5084 r = -ENXIO;
5085 }
5086
5087 return r;
5088}
5089
5090static int kvm_vcpu_ioctl_device_attr(struct kvm_vcpu *vcpu,
5091 unsigned int ioctl,
5092 void __user *argp)
5093{
5094 struct kvm_device_attr attr;
5095 int r;
5096
5097 if (copy_from_user(&attr, argp, sizeof(attr)))
5098 return -EFAULT;
5099
5100 if (attr.group != KVM_VCPU_TSC_CTRL)
5101 return -ENXIO;
5102
5103 switch (ioctl) {
5104 case KVM_HAS_DEVICE_ATTR:
5105 r = kvm_arch_tsc_has_attr(vcpu, &attr);
5106 break;
5107 case KVM_GET_DEVICE_ATTR:
5108 r = kvm_arch_tsc_get_attr(vcpu, &attr);
5109 break;
5110 case KVM_SET_DEVICE_ATTR:
5111 r = kvm_arch_tsc_set_attr(vcpu, &attr);
5112 break;
5113 }
5114
5115 return r;
5116}
5117
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005118static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
5119 struct kvm_enable_cap *cap)
5120{
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005121 int r;
5122 uint16_t vmcs_version;
5123 void __user *user_ptr;
5124
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005125 if (cap->flags)
5126 return -EINVAL;
5127
5128 switch (cap->cap) {
Roman Kaganefc479e2017-06-22 16:51:01 +03005129 case KVM_CAP_HYPERV_SYNIC2:
5130 if (cap->args[0])
5131 return -EINVAL;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05005132 fallthrough;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06005133
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005134 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08005135 if (!irqchip_in_kernel(vcpu->kvm))
5136 return -EINVAL;
Roman Kaganefc479e2017-06-22 16:51:01 +03005137 return kvm_hv_activate_synic(vcpu, cap->cap ==
5138 KVM_CAP_HYPERV_SYNIC2);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005139 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04005140 if (!kvm_x86_ops.nested_ops->enable_evmcs)
Sean Christopherson51589172018-12-03 13:53:10 -08005141 return -ENOTTY;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005142 r = kvm_x86_ops.nested_ops->enable_evmcs(vcpu, &vmcs_version);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005143 if (!r) {
5144 user_ptr = (void __user *)(uintptr_t)cap->args[0];
5145 if (copy_to_user(user_ptr, &vmcs_version,
5146 sizeof(vmcs_version)))
5147 r = -EFAULT;
5148 }
5149 return r;
Tianyu Lan344c6c82019-08-22 22:30:20 +08005150 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005151 if (!kvm_x86_ops.enable_direct_tlbflush)
Tianyu Lan344c6c82019-08-22 22:30:20 +08005152 return -ENOTTY;
5153
Jason Baronb36464772021-01-14 22:27:56 -05005154 return static_call(kvm_x86_enable_direct_tlbflush)(vcpu);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02005155
Vitaly Kuznetsov644f7062021-05-21 11:51:36 +02005156 case KVM_CAP_HYPERV_ENFORCE_CPUID:
5157 return kvm_hv_set_enforce_cpuid(vcpu, cap->args[0]);
5158
Oliver Upton66570e92020-08-18 15:24:28 +00005159 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
5160 vcpu->arch.pv_cpuid.enforce = cap->args[0];
Oliver Upton01b4f512020-10-27 16:10:42 -07005161 if (vcpu->arch.pv_cpuid.enforce)
5162 kvm_update_pv_runtime(vcpu);
Oliver Upton66570e92020-08-18 15:24:28 +00005163
5164 return 0;
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005165 default:
5166 return -EINVAL;
5167 }
5168}
5169
Carsten Otte313a3dc2007-10-11 19:16:52 +02005170long kvm_arch_vcpu_ioctl(struct file *filp,
5171 unsigned int ioctl, unsigned long arg)
5172{
5173 struct kvm_vcpu *vcpu = filp->private_data;
5174 void __user *argp = (void __user *)arg;
5175 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005176 union {
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005177 struct kvm_sregs2 *sregs2;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005178 struct kvm_lapic_state *lapic;
5179 struct kvm_xsave *xsave;
5180 struct kvm_xcrs *xcrs;
5181 void *buffer;
5182 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005183
Christoffer Dall9b0624712017-12-04 21:35:36 +01005184 vcpu_load(vcpu);
5185
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005186 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005187 switch (ioctl) {
5188 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005189 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005190 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005191 goto out;
Ben Gardon254272c2019-02-11 11:02:50 -08005192 u.lapic = kzalloc(sizeof(struct kvm_lapic_state),
5193 GFP_KERNEL_ACCOUNT);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005194
Dave Hansenb772ff32008-08-11 10:01:47 -07005195 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005196 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07005197 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005198 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005199 if (r)
5200 goto out;
5201 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005202 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005203 goto out;
5204 r = 0;
5205 break;
5206 }
5207 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005208 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005209 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02005210 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005211 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005212 if (IS_ERR(u.lapic)) {
5213 r = PTR_ERR(u.lapic);
5214 goto out_nofree;
5215 }
Sasha Levinff5c2c02011-12-04 19:36:29 +02005216
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005217 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005218 break;
5219 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005220 case KVM_INTERRUPT: {
5221 struct kvm_interrupt irq;
5222
5223 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005224 if (copy_from_user(&irq, argp, sizeof(irq)))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005225 goto out;
5226 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08005227 break;
5228 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02005229 case KVM_NMI: {
5230 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02005231 break;
5232 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02005233 case KVM_SMI: {
5234 r = kvm_vcpu_ioctl_smi(vcpu);
5235 break;
5236 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02005237 case KVM_SET_CPUID: {
5238 struct kvm_cpuid __user *cpuid_arg = argp;
5239 struct kvm_cpuid cpuid;
5240
5241 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005242 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02005243 goto out;
5244 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005245 break;
5246 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02005247 case KVM_SET_CPUID2: {
5248 struct kvm_cpuid2 __user *cpuid_arg = argp;
5249 struct kvm_cpuid2 cpuid;
5250
5251 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005252 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005253 goto out;
5254 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005255 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005256 break;
5257 }
5258 case KVM_GET_CPUID2: {
5259 struct kvm_cpuid2 __user *cpuid_arg = argp;
5260 struct kvm_cpuid2 cpuid;
5261
5262 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005263 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005264 goto out;
5265 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00005266 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02005267 if (r)
5268 goto out;
5269 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005270 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02005271 goto out;
5272 r = 0;
5273 break;
5274 }
Tom Lendacky801e4592018-02-21 13:39:51 -06005275 case KVM_GET_MSRS: {
5276 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02005277 r = msr_io(vcpu, argp, do_get_msr, 1);
Tom Lendacky801e4592018-02-21 13:39:51 -06005278 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005279 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005280 }
5281 case KVM_SET_MSRS: {
5282 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005283 r = msr_io(vcpu, argp, do_set_msr, 0);
Tom Lendacky801e4592018-02-21 13:39:51 -06005284 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005285 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06005286 }
Avi Kivityb209749f2007-10-22 16:50:39 +02005287 case KVM_TPR_ACCESS_REPORTING: {
5288 struct kvm_tpr_access_ctl tac;
5289
5290 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005291 if (copy_from_user(&tac, argp, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005292 goto out;
5293 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
5294 if (r)
5295 goto out;
5296 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005297 if (copy_to_user(argp, &tac, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02005298 goto out;
5299 r = 0;
5300 break;
5301 };
Avi Kivityb93463a2007-10-25 16:52:32 +02005302 case KVM_SET_VAPIC_ADDR: {
5303 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005304 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02005305
5306 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02005307 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02005308 goto out;
5309 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005310 if (copy_from_user(&va, argp, sizeof(va)))
Avi Kivityb93463a2007-10-25 16:52:32 +02005311 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005312 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08005313 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01005314 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02005315 break;
5316 }
Huang Ying890ca9a2009-05-11 16:48:15 +08005317 case KVM_X86_SETUP_MCE: {
5318 u64 mcg_cap;
5319
5320 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005321 if (copy_from_user(&mcg_cap, argp, sizeof(mcg_cap)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005322 goto out;
5323 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
5324 break;
5325 }
5326 case KVM_X86_SET_MCE: {
5327 struct kvm_x86_mce mce;
5328
5329 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005330 if (copy_from_user(&mce, argp, sizeof(mce)))
Huang Ying890ca9a2009-05-11 16:48:15 +08005331 goto out;
5332 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
5333 break;
5334 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005335 case KVM_GET_VCPU_EVENTS: {
5336 struct kvm_vcpu_events events;
5337
5338 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
5339
5340 r = -EFAULT;
5341 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
5342 break;
5343 r = 0;
5344 break;
5345 }
5346 case KVM_SET_VCPU_EVENTS: {
5347 struct kvm_vcpu_events events;
5348
5349 r = -EFAULT;
5350 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
5351 break;
5352
5353 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
5354 break;
5355 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01005356 case KVM_GET_DEBUGREGS: {
5357 struct kvm_debugregs dbgregs;
5358
5359 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
5360
5361 r = -EFAULT;
5362 if (copy_to_user(argp, &dbgregs,
5363 sizeof(struct kvm_debugregs)))
5364 break;
5365 r = 0;
5366 break;
5367 }
5368 case KVM_SET_DEBUGREGS: {
5369 struct kvm_debugregs dbgregs;
5370
5371 r = -EFAULT;
5372 if (copy_from_user(&dbgregs, argp,
5373 sizeof(struct kvm_debugregs)))
5374 break;
5375
5376 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
5377 break;
5378 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005379 case KVM_GET_XSAVE: {
Ben Gardon254272c2019-02-11 11:02:50 -08005380 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005381 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005382 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005383 break;
5384
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005385 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005386
5387 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005388 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005389 break;
5390 r = 0;
5391 break;
5392 }
5393 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005394 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005395 if (IS_ERR(u.xsave)) {
5396 r = PTR_ERR(u.xsave);
5397 goto out_nofree;
5398 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005399
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005400 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005401 break;
5402 }
5403 case KVM_GET_XCRS: {
Ben Gardon254272c2019-02-11 11:02:50 -08005404 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005405 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005406 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005407 break;
5408
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005409 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005410
5411 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005412 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005413 sizeof(struct kvm_xcrs)))
5414 break;
5415 r = 0;
5416 break;
5417 }
5418 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02005419 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Christoffer Dall9b0624712017-12-04 21:35:36 +01005420 if (IS_ERR(u.xcrs)) {
5421 r = PTR_ERR(u.xcrs);
5422 goto out_nofree;
5423 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005424
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005425 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08005426 break;
5427 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01005428 case KVM_SET_TSC_KHZ: {
5429 u32 user_tsc_khz;
5430
5431 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005432 user_tsc_khz = (u32)arg;
5433
Marcelo Tosatti26769f92020-06-16 08:47:41 -03005434 if (kvm_has_tsc_control &&
5435 user_tsc_khz >= kvm_max_guest_tsc_khz)
Joerg Roedel92a1f122011-03-25 09:44:51 +01005436 goto out;
5437
Zachary Amsdencc578282012-02-03 15:43:50 -02005438 if (user_tsc_khz == 0)
5439 user_tsc_khz = tsc_khz;
5440
Haozhong Zhang381d5852015-10-20 15:39:04 +08005441 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
5442 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005443
Joerg Roedel92a1f122011-03-25 09:44:51 +01005444 goto out;
5445 }
5446 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02005447 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01005448 goto out;
5449 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05005450 case KVM_KVMCLOCK_CTRL: {
5451 r = kvm_set_guest_paused(vcpu);
5452 goto out;
5453 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03005454 case KVM_ENABLE_CAP: {
5455 struct kvm_enable_cap cap;
5456
5457 r = -EFAULT;
5458 if (copy_from_user(&cap, argp, sizeof(cap)))
5459 goto out;
5460 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
5461 break;
5462 }
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005463 case KVM_GET_NESTED_STATE: {
5464 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5465 u32 user_data_size;
5466
5467 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005468 if (!kvm_x86_ops.nested_ops->get_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005469 break;
5470
5471 BUILD_BUG_ON(sizeof(user_data_size) != sizeof(user_kvm_nested_state->size));
Liran Alon26b471c2018-09-16 14:28:20 +03005472 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005473 if (get_user(user_data_size, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005474 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005475
Paolo Bonzini33b22172020-04-17 10:24:18 -04005476 r = kvm_x86_ops.nested_ops->get_state(vcpu, user_kvm_nested_state,
5477 user_data_size);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005478 if (r < 0)
Liran Alon26b471c2018-09-16 14:28:20 +03005479 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005480
5481 if (r > user_data_size) {
5482 if (put_user(r, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03005483 r = -EFAULT;
5484 else
5485 r = -E2BIG;
5486 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005487 }
Liran Alon26b471c2018-09-16 14:28:20 +03005488
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005489 r = 0;
5490 break;
5491 }
5492 case KVM_SET_NESTED_STATE: {
5493 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5494 struct kvm_nested_state kvm_state;
Sean Christophersonad5996d2019-11-22 08:58:18 -08005495 int idx;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005496
5497 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04005498 if (!kvm_x86_ops.nested_ops->set_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005499 break;
5500
Liran Alon26b471c2018-09-16 14:28:20 +03005501 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005502 if (copy_from_user(&kvm_state, user_kvm_nested_state, sizeof(kvm_state)))
Liran Alon26b471c2018-09-16 14:28:20 +03005503 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005504
Liran Alon26b471c2018-09-16 14:28:20 +03005505 r = -EINVAL;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005506 if (kvm_state.size < sizeof(kvm_state))
Liran Alon26b471c2018-09-16 14:28:20 +03005507 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005508
5509 if (kvm_state.flags &
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005510 ~(KVM_STATE_NESTED_RUN_PENDING | KVM_STATE_NESTED_GUEST_MODE
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04005511 | KVM_STATE_NESTED_EVMCS | KVM_STATE_NESTED_MTF_PENDING
5512 | KVM_STATE_NESTED_GIF_SET))
Liran Alon26b471c2018-09-16 14:28:20 +03005513 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005514
5515 /* nested_run_pending implies guest_mode. */
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02005516 if ((kvm_state.flags & KVM_STATE_NESTED_RUN_PENDING)
5517 && !(kvm_state.flags & KVM_STATE_NESTED_GUEST_MODE))
Liran Alon26b471c2018-09-16 14:28:20 +03005518 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005519
Sean Christophersonad5996d2019-11-22 08:58:18 -08005520 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini33b22172020-04-17 10:24:18 -04005521 r = kvm_x86_ops.nested_ops->set_state(vcpu, user_kvm_nested_state, &kvm_state);
Sean Christophersonad5996d2019-11-22 08:58:18 -08005522 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02005523 break;
5524 }
Vitaly Kuznetsovc21d54f2020-09-29 17:09:43 +02005525 case KVM_GET_SUPPORTED_HV_CPUID:
5526 r = kvm_ioctl_get_supported_hv_cpuid(vcpu, argp);
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01005527 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005528#ifdef CONFIG_KVM_XEN
David Woodhouse3e324612021-02-02 16:53:25 +00005529 case KVM_XEN_VCPU_GET_ATTR: {
5530 struct kvm_xen_vcpu_attr xva;
5531
5532 r = -EFAULT;
5533 if (copy_from_user(&xva, argp, sizeof(xva)))
5534 goto out;
5535 r = kvm_xen_vcpu_get_attr(vcpu, &xva);
5536 if (!r && copy_to_user(argp, &xva, sizeof(xva)))
5537 r = -EFAULT;
5538 break;
5539 }
5540 case KVM_XEN_VCPU_SET_ATTR: {
5541 struct kvm_xen_vcpu_attr xva;
5542
5543 r = -EFAULT;
5544 if (copy_from_user(&xva, argp, sizeof(xva)))
5545 goto out;
5546 r = kvm_xen_vcpu_set_attr(vcpu, &xva);
5547 break;
5548 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05005549#endif
Maxim Levitsky6dba9402021-06-07 12:02:02 +03005550 case KVM_GET_SREGS2: {
5551 u.sregs2 = kzalloc(sizeof(struct kvm_sregs2), GFP_KERNEL);
5552 r = -ENOMEM;
5553 if (!u.sregs2)
5554 goto out;
5555 __get_sregs2(vcpu, u.sregs2);
5556 r = -EFAULT;
5557 if (copy_to_user(argp, u.sregs2, sizeof(struct kvm_sregs2)))
5558 goto out;
5559 r = 0;
5560 break;
5561 }
5562 case KVM_SET_SREGS2: {
5563 u.sregs2 = memdup_user(argp, sizeof(struct kvm_sregs2));
5564 if (IS_ERR(u.sregs2)) {
5565 r = PTR_ERR(u.sregs2);
5566 u.sregs2 = NULL;
5567 goto out;
5568 }
5569 r = __set_sregs2(vcpu, u.sregs2);
5570 break;
5571 }
Oliver Upton828ca892021-09-16 18:15:38 +00005572 case KVM_HAS_DEVICE_ATTR:
5573 case KVM_GET_DEVICE_ATTR:
5574 case KVM_SET_DEVICE_ATTR:
5575 r = kvm_vcpu_ioctl_device_attr(vcpu, ioctl, argp);
5576 break;
Carsten Otte313a3dc2007-10-11 19:16:52 +02005577 default:
5578 r = -EINVAL;
5579 }
5580out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03005581 kfree(u.buffer);
Christoffer Dall9b0624712017-12-04 21:35:36 +01005582out_nofree:
5583 vcpu_put(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02005584 return r;
5585}
5586
Souptick Joarder1499fa82018-04-19 00:49:58 +05305587vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
Carsten Otte5b1c1492012-01-04 10:25:23 +01005588{
5589 return VM_FAULT_SIGBUS;
5590}
5591
Carsten Otte1fe779f2007-10-29 16:08:35 +01005592static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
5593{
5594 int ret;
5595
5596 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08005597 return -EINVAL;
Jason Baronb36464772021-01-14 22:27:56 -05005598 ret = static_call(kvm_x86_set_tss_addr)(kvm, addr);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005599 return ret;
5600}
5601
Sheng Yangb927a3c2009-07-21 10:42:48 +08005602static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
5603 u64 ident_addr)
5604{
Jason Baronb36464772021-01-14 22:27:56 -05005605 return static_call(kvm_x86_set_identity_map_addr)(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08005606}
5607
Carsten Otte1fe779f2007-10-29 16:08:35 +01005608static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005609 unsigned long kvm_nr_mmu_pages)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005610{
5611 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
5612 return -EINVAL;
5613
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005614 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005615
5616 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08005617 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005618
Marcelo Tosatti79fac952009-12-23 14:35:26 -02005619 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005620 return 0;
5621}
5622
Ben Gardonbc8a3d82019-04-08 11:07:30 -07005623static unsigned long kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
Carsten Otte1fe779f2007-10-29 16:08:35 +01005624{
Dave Hansen39de71e2010-08-19 18:11:14 -07005625 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005626}
5627
Carsten Otte1fe779f2007-10-29 16:08:35 +01005628static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5629{
David Hildenbrand90bca052017-04-07 10:50:23 +02005630 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005631 int r;
5632
5633 r = 0;
5634 switch (chip->chip_id) {
5635 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005636 memcpy(&chip->chip.pic, &pic->pics[0],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005637 sizeof(struct kvm_pic_state));
5638 break;
5639 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005640 memcpy(&chip->chip.pic, &pic->pics[1],
Carsten Otte1fe779f2007-10-29 16:08:35 +01005641 sizeof(struct kvm_pic_state));
5642 break;
5643 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005644 kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005645 break;
5646 default:
5647 r = -EINVAL;
5648 break;
5649 }
5650 return r;
5651}
5652
5653static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5654{
David Hildenbrand90bca052017-04-07 10:50:23 +02005655 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005656 int r;
5657
5658 r = 0;
5659 switch (chip->chip_id) {
5660 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02005661 spin_lock(&pic->lock);
5662 memcpy(&pic->pics[0], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005663 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005664 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005665 break;
5666 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02005667 spin_lock(&pic->lock);
5668 memcpy(&pic->pics[1], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01005669 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02005670 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005671 break;
5672 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02005673 kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005674 break;
5675 default:
5676 r = -EINVAL;
5677 break;
5678 }
David Hildenbrand90bca052017-04-07 10:50:23 +02005679 kvm_pic_update_irq(pic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005680 return r;
5681}
5682
Sheng Yange0f63cb2008-03-04 00:50:59 +08005683static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5684{
Radim Krčmář34f39412016-03-02 22:56:50 +01005685 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
5686
5687 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
5688
5689 mutex_lock(&kps->lock);
5690 memcpy(ps, &kps->channels, sizeof(*ps));
5691 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305692 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005693}
5694
5695static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5696{
Andrew Honig01856042015-11-18 14:50:23 -08005697 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01005698 struct kvm_pit *pit = kvm->arch.vpit;
5699
5700 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01005701 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08005702 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005703 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
5704 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305705 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005706}
5707
5708static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5709{
Beth Kone9f42752009-07-07 11:50:38 -04005710 mutex_lock(&kvm->arch.vpit->pit_state.lock);
5711 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
5712 sizeof(ps->channels));
5713 ps->flags = kvm->arch.vpit->pit_state.flags;
5714 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04005715 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305716 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04005717}
5718
5719static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5720{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305721 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08005722 int i;
Beth Kone9f42752009-07-07 11:50:38 -04005723 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01005724 struct kvm_pit *pit = kvm->arch.vpit;
5725
5726 mutex_lock(&pit->pit_state.lock);
5727 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04005728 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
5729 if (!prev_legacy && cur_legacy)
5730 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01005731 memcpy(&pit->pit_state.channels, &ps->channels,
5732 sizeof(pit->pit_state.channels));
5733 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08005734 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01005735 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01005736 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01005737 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05305738 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08005739}
5740
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005741static int kvm_vm_ioctl_reinject(struct kvm *kvm,
5742 struct kvm_reinject_control *control)
5743{
Radim Krčmář71474e22016-03-02 22:56:45 +01005744 struct kvm_pit *pit = kvm->arch.vpit;
5745
Radim Krčmář71474e22016-03-02 22:56:45 +01005746 /* pit->pit_state.lock was overloaded to prevent userspace from getting
5747 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
5748 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
5749 */
5750 mutex_lock(&pit->pit_state.lock);
5751 kvm_pit_set_reinject(pit, control->pit_reinject);
5752 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01005753
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005754 return 0;
5755}
5756
Sean Christopherson0dff0842020-02-18 13:07:29 -08005757void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005758{
Sean Christophersona018eba2021-02-12 16:50:10 -08005759
Kai Huang88178fd2015-01-28 10:54:27 +08005760 /*
Sean Christophersona018eba2021-02-12 16:50:10 -08005761 * Flush all CPUs' dirty log buffers to the dirty_bitmap. Called
5762 * before reporting dirty_bitmap to userspace. KVM flushes the buffers
5763 * on all VM-Exits, thus we only need to kick running vCPUs to force a
5764 * VM-Exit.
Kai Huang88178fd2015-01-28 10:54:27 +08005765 */
Sean Christophersona018eba2021-02-12 16:50:10 -08005766 struct kvm_vcpu *vcpu;
5767 int i;
5768
5769 kvm_for_each_vcpu(i, vcpu, kvm)
5770 kvm_vcpu_kick(vcpu);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08005771}
5772
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005773int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
5774 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005775{
5776 if (!irqchip_in_kernel(kvm))
5777 return -ENXIO;
5778
5779 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08005780 irq_event->irq, irq_event->level,
5781 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04005782 return 0;
5783}
5784
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01005785int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
5786 struct kvm_enable_cap *cap)
Nadav Amit90de4a12015-04-13 01:53:41 +03005787{
5788 int r;
5789
5790 if (cap->flags)
5791 return -EINVAL;
5792
5793 switch (cap->cap) {
5794 case KVM_CAP_DISABLE_QUIRKS:
5795 kvm->arch.disabled_quirks = cap->args[0];
5796 r = 0;
5797 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07005798 case KVM_CAP_SPLIT_IRQCHIP: {
5799 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005800 r = -EINVAL;
5801 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
5802 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07005803 r = -EEXIST;
5804 if (irqchip_in_kernel(kvm))
5805 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02005806 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07005807 goto split_irqchip_unlock;
5808 r = kvm_setup_empty_irq_routing(kvm);
David Hildenbrand5c0aea02017-04-28 17:06:20 +02005809 if (r)
Steve Rutherford49df6392015-07-29 23:21:40 -07005810 goto split_irqchip_unlock;
5811 /* Pairs with irqchip_in_kernel. */
5812 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005813 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07005814 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Steve Rutherford49df6392015-07-29 23:21:40 -07005815 r = 0;
5816split_irqchip_unlock:
5817 mutex_unlock(&kvm->lock);
5818 break;
5819 }
Radim Krčmář371313132016-07-12 22:09:27 +02005820 case KVM_CAP_X2APIC_API:
5821 r = -EINVAL;
5822 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
5823 break;
5824
5825 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
5826 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02005827 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
5828 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02005829
5830 r = 0;
5831 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005832 case KVM_CAP_X86_DISABLE_EXITS:
5833 r = -EINVAL;
5834 if (cap->args[0] & ~KVM_X86_DISABLE_VALID_EXITS)
5835 break;
5836
5837 if ((cap->args[0] & KVM_X86_DISABLE_EXITS_MWAIT) &&
5838 kvm_can_mwait_in_guest())
5839 kvm->arch.mwait_in_guest = true;
Michael S. Tsirkin766d3572018-06-08 02:19:53 +03005840 if (cap->args[0] & KVM_X86_DISABLE_EXITS_HLT)
Wanpeng Licaa057a2018-03-12 04:53:03 -07005841 kvm->arch.hlt_in_guest = true;
Wanpeng Lib31c1142018-03-12 04:53:04 -07005842 if (cap->args[0] & KVM_X86_DISABLE_EXITS_PAUSE)
5843 kvm->arch.pause_in_guest = true;
Wanpeng Lib5170062019-05-21 14:06:53 +08005844 if (cap->args[0] & KVM_X86_DISABLE_EXITS_CSTATE)
5845 kvm->arch.cstate_in_guest = true;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07005846 r = 0;
5847 break;
Drew Schmitt6fbbde92018-08-20 10:32:15 -07005848 case KVM_CAP_MSR_PLATFORM_INFO:
5849 kvm->arch.guest_can_read_msr_platform_info = cap->args[0];
5850 r = 0;
5851 break;
Jim Mattsonc4f55192018-10-16 14:29:24 -07005852 case KVM_CAP_EXCEPTION_PAYLOAD:
5853 kvm->arch.exception_payload_enabled = cap->args[0];
5854 r = 0;
5855 break;
Alexander Graf1ae09952020-09-25 16:34:16 +02005856 case KVM_CAP_X86_USER_SPACE_MSR:
5857 kvm->arch.user_space_msr_mask = cap->args[0];
5858 r = 0;
5859 break;
Chenyi Qiangfe6b6bc2020-11-06 17:03:14 +08005860 case KVM_CAP_X86_BUS_LOCK_EXIT:
5861 r = -EINVAL;
5862 if (cap->args[0] & ~KVM_BUS_LOCK_DETECTION_VALID_MODE)
5863 break;
5864
5865 if ((cap->args[0] & KVM_BUS_LOCK_DETECTION_OFF) &&
5866 (cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT))
5867 break;
5868
5869 if (kvm_has_bus_lock_exit &&
5870 cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT)
5871 kvm->arch.bus_lock_detection_enabled = true;
5872 r = 0;
5873 break;
Sean Christophersonfe7e9482021-04-12 16:21:43 +12005874#ifdef CONFIG_X86_SGX_KVM
5875 case KVM_CAP_SGX_ATTRIBUTE: {
5876 unsigned long allowed_attributes = 0;
5877
5878 r = sgx_set_attribute(&allowed_attributes, cap->args[0]);
5879 if (r)
5880 break;
5881
5882 /* KVM only supports the PROVISIONKEY privileged attribute. */
5883 if ((allowed_attributes & SGX_ATTR_PROVISIONKEY) &&
5884 !(allowed_attributes & ~SGX_ATTR_PROVISIONKEY))
5885 kvm->arch.sgx_provisioning_allowed = true;
5886 else
5887 r = -EINVAL;
5888 break;
5889 }
5890#endif
Nathan Tempelman54526d12021-04-08 22:32:14 +00005891 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
5892 r = -EINVAL;
5893 if (kvm_x86_ops.vm_copy_enc_context_from)
5894 r = kvm_x86_ops.vm_copy_enc_context_from(kvm, cap->args[0]);
5895 return r;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00005896 case KVM_CAP_EXIT_HYPERCALL:
5897 if (cap->args[0] & ~KVM_EXIT_HYPERCALL_VALID_MASK) {
5898 r = -EINVAL;
5899 break;
5900 }
5901 kvm->arch.hypercall_exit_enabled = cap->args[0];
5902 r = 0;
5903 break;
Aaron Lewis19238e72021-05-10 07:48:33 -07005904 case KVM_CAP_EXIT_ON_EMULATION_FAILURE:
5905 r = -EINVAL;
5906 if (cap->args[0] & ~1)
5907 break;
5908 kvm->arch.exit_on_emulation_error = cap->args[0];
5909 r = 0;
5910 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03005911 default:
5912 r = -EINVAL;
5913 break;
5914 }
5915 return r;
5916}
5917
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005918static struct kvm_x86_msr_filter *kvm_alloc_msr_filter(bool default_allow)
Alexander Graf1a1552542020-09-25 16:34:21 +02005919{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005920 struct kvm_x86_msr_filter *msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005921
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005922 msr_filter = kzalloc(sizeof(*msr_filter), GFP_KERNEL_ACCOUNT);
5923 if (!msr_filter)
5924 return NULL;
Alexander Graf1a1552542020-09-25 16:34:21 +02005925
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005926 msr_filter->default_allow = default_allow;
5927 return msr_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005928}
5929
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005930static void kvm_free_msr_filter(struct kvm_x86_msr_filter *msr_filter)
Alexander Graf1a1552542020-09-25 16:34:21 +02005931{
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005932 u32 i;
5933
5934 if (!msr_filter)
5935 return;
5936
5937 for (i = 0; i < msr_filter->count; i++)
5938 kfree(msr_filter->ranges[i].bitmap);
5939
5940 kfree(msr_filter);
5941}
5942
5943static int kvm_add_msr_filter(struct kvm_x86_msr_filter *msr_filter,
5944 struct kvm_msr_filter_range *user_range)
5945{
Alexander Graf1a1552542020-09-25 16:34:21 +02005946 unsigned long *bitmap = NULL;
5947 size_t bitmap_size;
Alexander Graf1a1552542020-09-25 16:34:21 +02005948
5949 if (!user_range->nmsrs)
5950 return 0;
5951
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005952 if (user_range->flags & ~(KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE))
5953 return -EINVAL;
5954
5955 if (!user_range->flags)
5956 return -EINVAL;
5957
Alexander Graf1a1552542020-09-25 16:34:21 +02005958 bitmap_size = BITS_TO_LONGS(user_range->nmsrs) * sizeof(long);
5959 if (!bitmap_size || bitmap_size > KVM_MSR_FILTER_MAX_BITMAP_SIZE)
5960 return -EINVAL;
5961
5962 bitmap = memdup_user((__user u8*)user_range->bitmap, bitmap_size);
5963 if (IS_ERR(bitmap))
5964 return PTR_ERR(bitmap);
5965
Siddharth Chandrasekaranaca35282021-05-03 14:21:11 +02005966 msr_filter->ranges[msr_filter->count] = (struct msr_bitmap_range) {
Alexander Graf1a1552542020-09-25 16:34:21 +02005967 .flags = user_range->flags,
5968 .base = user_range->base,
5969 .nmsrs = user_range->nmsrs,
5970 .bitmap = bitmap,
5971 };
5972
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005973 msr_filter->count++;
Alexander Graf1a1552542020-09-25 16:34:21 +02005974 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005975}
5976
5977static int kvm_vm_ioctl_set_msr_filter(struct kvm *kvm, void __user *argp)
5978{
5979 struct kvm_msr_filter __user *user_msr_filter = argp;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005980 struct kvm_x86_msr_filter *new_filter, *old_filter;
Alexander Graf1a1552542020-09-25 16:34:21 +02005981 struct kvm_msr_filter filter;
5982 bool default_allow;
Paolo Bonzini043248b2020-10-20 10:57:01 -04005983 bool empty = true;
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005984 int r = 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02005985 u32 i;
5986
5987 if (copy_from_user(&filter, user_msr_filter, sizeof(filter)))
5988 return -EFAULT;
5989
Paolo Bonzini043248b2020-10-20 10:57:01 -04005990 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++)
5991 empty &= !filter.ranges[i].nmsrs;
Alexander Graf1a1552542020-09-25 16:34:21 +02005992
5993 default_allow = !(filter.flags & KVM_MSR_FILTER_DEFAULT_DENY);
Paolo Bonzini043248b2020-10-20 10:57:01 -04005994 if (empty && !default_allow)
5995 return -EINVAL;
5996
Sean Christophersonb318e8d2021-03-16 11:44:33 -07005997 new_filter = kvm_alloc_msr_filter(default_allow);
5998 if (!new_filter)
5999 return -ENOMEM;
Paolo Bonzini043248b2020-10-20 10:57:01 -04006000
Alexander Graf1a1552542020-09-25 16:34:21 +02006001 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++) {
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006002 r = kvm_add_msr_filter(new_filter, &filter.ranges[i]);
6003 if (r) {
6004 kvm_free_msr_filter(new_filter);
6005 return r;
6006 }
Alexander Graf1a1552542020-09-25 16:34:21 +02006007 }
6008
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006009 mutex_lock(&kvm->lock);
6010
6011 /* The per-VM filter is protected by kvm->lock... */
6012 old_filter = srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1);
6013
6014 rcu_assign_pointer(kvm->arch.msr_filter, new_filter);
6015 synchronize_srcu(&kvm->srcu);
6016
6017 kvm_free_msr_filter(old_filter);
6018
Alexander Graf1a1552542020-09-25 16:34:21 +02006019 kvm_make_all_cpus_request(kvm, KVM_REQ_MSR_FILTER_CHANGED);
6020 mutex_unlock(&kvm->lock);
6021
Sean Christophersonb318e8d2021-03-16 11:44:33 -07006022 return 0;
Alexander Graf1a1552542020-09-25 16:34:21 +02006023}
6024
Sergey Senozhatsky7d628742021-06-06 11:10:45 +09006025#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
6026static int kvm_arch_suspend_notifier(struct kvm *kvm)
6027{
6028 struct kvm_vcpu *vcpu;
6029 int i, ret = 0;
6030
6031 mutex_lock(&kvm->lock);
6032 kvm_for_each_vcpu(i, vcpu, kvm) {
6033 if (!vcpu->arch.pv_time_enabled)
6034 continue;
6035
6036 ret = kvm_set_guest_paused(vcpu);
6037 if (ret) {
6038 kvm_err("Failed to pause guest VCPU%d: %d\n",
6039 vcpu->vcpu_id, ret);
6040 break;
6041 }
6042 }
6043 mutex_unlock(&kvm->lock);
6044
6045 return ret ? NOTIFY_BAD : NOTIFY_DONE;
6046}
6047
6048int kvm_arch_pm_notifier(struct kvm *kvm, unsigned long state)
6049{
6050 switch (state) {
6051 case PM_HIBERNATION_PREPARE:
6052 case PM_SUSPEND_PREPARE:
6053 return kvm_arch_suspend_notifier(kvm);
6054 }
6055
6056 return NOTIFY_DONE;
6057}
6058#endif /* CONFIG_HAVE_KVM_PM_NOTIFIER */
6059
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006060static int kvm_vm_ioctl_get_clock(struct kvm *kvm, void __user *argp)
6061{
Paolo Bonzini869b4422021-09-16 18:15:36 +00006062 struct kvm_clock_data data = { 0 };
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006063
Oliver Upton55c0cef2021-09-16 18:15:34 +00006064 get_kvmclock(kvm, &data);
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006065 if (copy_to_user(argp, &data, sizeof(data)))
6066 return -EFAULT;
6067
6068 return 0;
6069}
6070
6071static int kvm_vm_ioctl_set_clock(struct kvm *kvm, void __user *argp)
6072{
6073 struct kvm_arch *ka = &kvm->arch;
6074 struct kvm_clock_data data;
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006075 u64 now_raw_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006076
6077 if (copy_from_user(&data, argp, sizeof(data)))
6078 return -EFAULT;
6079
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006080 /*
6081 * Only KVM_CLOCK_REALTIME is used, but allow passing the
6082 * result of KVM_GET_CLOCK back to KVM_SET_CLOCK.
6083 */
6084 if (data.flags & ~KVM_CLOCK_VALID_FLAGS)
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006085 return -EINVAL;
6086
6087 kvm_hv_invalidate_tsc_page(kvm);
6088 kvm_start_pvclock_update(kvm);
6089 pvclock_update_vm_gtod_copy(kvm);
6090
6091 /*
6092 * This pairs with kvm_guest_time_update(): when masterclock is
6093 * in use, we use master_kernel_ns + kvmclock_offset to set
6094 * unsigned 'system_time' so if we use get_kvmclock_ns() (which
6095 * is slightly ahead) here we risk going negative on unsigned
6096 * 'system_time' when 'data.clock' is very small.
6097 */
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006098 if (data.flags & KVM_CLOCK_REALTIME) {
6099 u64 now_real_ns = ktime_get_real_ns();
6100
6101 /*
6102 * Avoid stepping the kvmclock backwards.
6103 */
6104 if (now_real_ns > data.realtime)
6105 data.clock += now_real_ns - data.realtime;
6106 }
6107
6108 if (ka->use_master_clock)
6109 now_raw_ns = ka->master_kernel_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006110 else
Oliver Uptonc68dc1b2021-09-16 18:15:35 +00006111 now_raw_ns = get_kvmclock_base_ns();
6112 ka->kvmclock_offset = data.clock - now_raw_ns;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006113 kvm_end_pvclock_update(kvm);
6114 return 0;
6115}
6116
Carsten Otte1fe779f2007-10-29 16:08:35 +01006117long kvm_arch_vm_ioctl(struct file *filp,
6118 unsigned int ioctl, unsigned long arg)
6119{
6120 struct kvm *kvm = filp->private_data;
6121 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03006122 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07006123 /*
6124 * This union makes it completely explicit to gcc-3.x
6125 * that these two variables' stack usage should be
6126 * combined, not added together.
6127 */
6128 union {
6129 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04006130 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006131 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07006132 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006133
6134 switch (ioctl) {
6135 case KVM_SET_TSS_ADDR:
6136 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006137 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006138 case KVM_SET_IDENTITY_MAP_ADDR: {
6139 u64 ident_addr;
6140
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006141 mutex_lock(&kvm->lock);
6142 r = -EINVAL;
6143 if (kvm->created_vcpus)
6144 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006145 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006146 if (copy_from_user(&ident_addr, argp, sizeof(ident_addr)))
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006147 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006148 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
David Hildenbrand1af1ac92017-08-24 20:51:36 +02006149set_identity_unlock:
6150 mutex_unlock(&kvm->lock);
Sheng Yangb927a3c2009-07-21 10:42:48 +08006151 break;
6152 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01006153 case KVM_SET_NR_MMU_PAGES:
6154 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006155 break;
6156 case KVM_GET_NR_MMU_PAGES:
6157 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
6158 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006159 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006160 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01006161
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006162 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01006163 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006164 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006165
Avi Kivity3e515702012-03-05 14:23:29 +02006166 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02006167 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02006168 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006169
6170 r = kvm_pic_init(kvm);
6171 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006172 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01006173
6174 r = kvm_ioapic_init(kvm);
6175 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01006176 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01006177 goto create_irqchip_unlock;
6178 }
6179
Avi Kivity399ec802008-11-19 13:58:46 +02006180 r = kvm_setup_default_irq_routing(kvm);
6181 if (r) {
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08006182 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01006183 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02006184 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02006185 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01006186 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02006187 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01006188 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006189 create_irqchip_unlock:
6190 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006191 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02006192 }
Sheng Yang78376992008-01-28 05:10:22 +08006193 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006194 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
6195 goto create_pit;
6196 case KVM_CREATE_PIT2:
6197 r = -EFAULT;
6198 if (copy_from_user(&u.pit_config, argp,
6199 sizeof(struct kvm_pit_config)))
6200 goto out;
6201 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02006202 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02006203 r = -EEXIST;
6204 if (kvm->arch.vpit)
6205 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08006206 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02006207 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08006208 if (kvm->arch.vpit)
6209 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02006210 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02006211 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08006212 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006213 case KVM_GET_IRQCHIP: {
6214 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02006215 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006216
Sasha Levinff5c2c02011-12-04 19:36:29 +02006217 chip = memdup_user(argp, sizeof(*chip));
6218 if (IS_ERR(chip)) {
6219 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006220 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02006221 }
6222
Carsten Otte1fe779f2007-10-29 16:08:35 +01006223 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01006224 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07006225 goto get_irqchip_out;
6226 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
6227 if (r)
6228 goto get_irqchip_out;
6229 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006230 if (copy_to_user(argp, chip, sizeof(*chip)))
Dave Hansenf0d66272008-08-11 10:01:45 -07006231 goto get_irqchip_out;
6232 r = 0;
6233 get_irqchip_out:
6234 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006235 break;
6236 }
6237 case KVM_SET_IRQCHIP: {
6238 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02006239 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01006240
Sasha Levinff5c2c02011-12-04 19:36:29 +02006241 chip = memdup_user(argp, sizeof(*chip));
6242 if (IS_ERR(chip)) {
6243 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006244 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02006245 }
6246
Carsten Otte1fe779f2007-10-29 16:08:35 +01006247 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01006248 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07006249 goto set_irqchip_out;
6250 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
Dave Hansenf0d66272008-08-11 10:01:45 -07006251 set_irqchip_out:
6252 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01006253 break;
6254 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08006255 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08006256 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07006257 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006258 goto out;
6259 r = -ENXIO;
6260 if (!kvm->arch.vpit)
6261 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07006262 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006263 if (r)
6264 goto out;
6265 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07006266 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006267 goto out;
6268 r = 0;
6269 break;
6270 }
6271 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08006272 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00006273 if (copy_from_user(&u.ps, argp, sizeof(u.ps)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08006274 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006275 mutex_lock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006276 r = -ENXIO;
6277 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006278 goto set_pit_out;
Dave Hansenf0d66272008-08-11 10:01:45 -07006279 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006280set_pit_out:
6281 mutex_unlock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08006282 break;
6283 }
Beth Kone9f42752009-07-07 11:50:38 -04006284 case KVM_GET_PIT2: {
6285 r = -ENXIO;
6286 if (!kvm->arch.vpit)
6287 goto out;
6288 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
6289 if (r)
6290 goto out;
6291 r = -EFAULT;
6292 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
6293 goto out;
6294 r = 0;
6295 break;
6296 }
6297 case KVM_SET_PIT2: {
6298 r = -EFAULT;
6299 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
6300 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006301 mutex_lock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006302 r = -ENXIO;
6303 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006304 goto set_pit2_out;
Beth Kone9f42752009-07-07 11:50:38 -04006305 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07006306set_pit2_out:
6307 mutex_unlock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04006308 break;
6309 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006310 case KVM_REINJECT_CONTROL: {
6311 struct kvm_reinject_control control;
6312 r = -EFAULT;
6313 if (copy_from_user(&control, argp, sizeof(control)))
6314 goto out;
Miaohe Lincad23e72019-12-07 17:25:22 +08006315 r = -ENXIO;
6316 if (!kvm->arch.vpit)
6317 goto out;
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006318 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02006319 break;
6320 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006321 case KVM_SET_BOOT_CPU_ID:
6322 r = 0;
6323 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02006324 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02006325 r = -EBUSY;
6326 else
6327 kvm->arch.bsp_vcpu_id = arg;
6328 mutex_unlock(&kvm->lock);
6329 break;
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006330#ifdef CONFIG_KVM_XEN
Ed Swierkffde22a2009-10-15 15:21:43 -07006331 case KVM_XEN_HVM_CONFIG: {
Paolo Bonzini51776042017-10-26 15:45:47 +02006332 struct kvm_xen_hvm_config xhc;
Ed Swierkffde22a2009-10-15 15:21:43 -07006333 r = -EFAULT;
Paolo Bonzini51776042017-10-26 15:45:47 +02006334 if (copy_from_user(&xhc, argp, sizeof(xhc)))
Ed Swierkffde22a2009-10-15 15:21:43 -07006335 goto out;
David Woodhouse78e98782021-02-02 13:19:35 +00006336 r = kvm_xen_hvm_config(kvm, &xhc);
Ed Swierkffde22a2009-10-15 15:21:43 -07006337 break;
6338 }
Joao Martinsa76b9642020-12-03 15:52:25 +00006339 case KVM_XEN_HVM_GET_ATTR: {
6340 struct kvm_xen_hvm_attr xha;
6341
6342 r = -EFAULT;
6343 if (copy_from_user(&xha, argp, sizeof(xha)))
Hannes Edercded19f2009-02-21 02:19:13 +01006344 goto out;
Joao Martinsa76b9642020-12-03 15:52:25 +00006345 r = kvm_xen_hvm_get_attr(kvm, &xha);
6346 if (!r && copy_to_user(argp, &xha, sizeof(xha)))
6347 r = -EFAULT;
6348 break;
6349 }
6350 case KVM_XEN_HVM_SET_ATTR: {
6351 struct kvm_xen_hvm_attr xha;
6352
6353 r = -EFAULT;
6354 if (copy_from_user(&xha, argp, sizeof(xha)))
6355 goto out;
6356 r = kvm_xen_hvm_set_attr(kvm, &xha);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006357 break;
6358 }
Paolo Bonzinib59b1532021-02-26 04:54:45 -05006359#endif
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006360 case KVM_SET_CLOCK:
6361 r = kvm_vm_ioctl_set_clock(kvm, argp);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006362 break;
Paolo Bonzini45e6c2f2021-09-16 18:15:33 +00006363 case KVM_GET_CLOCK:
6364 r = kvm_vm_ioctl_get_clock(kvm, argp);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04006365 break;
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006366 case KVM_MEMORY_ENCRYPT_OP: {
6367 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006368 if (kvm_x86_ops.mem_enc_op)
Jason Baronb36464772021-01-14 22:27:56 -05006369 r = static_call(kvm_x86_mem_enc_op)(kvm, argp);
Brijesh Singh5acc5c02017-12-04 10:57:26 -06006370 break;
6371 }
Brijesh Singh69eaede2017-12-04 10:57:26 -06006372 case KVM_MEMORY_ENCRYPT_REG_REGION: {
6373 struct kvm_enc_region region;
6374
6375 r = -EFAULT;
6376 if (copy_from_user(&region, argp, sizeof(region)))
6377 goto out;
6378
6379 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006380 if (kvm_x86_ops.mem_enc_reg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006381 r = static_call(kvm_x86_mem_enc_reg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006382 break;
6383 }
6384 case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
6385 struct kvm_enc_region region;
6386
6387 r = -EFAULT;
6388 if (copy_from_user(&region, argp, sizeof(region)))
6389 goto out;
6390
6391 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006392 if (kvm_x86_ops.mem_enc_unreg_region)
Jason Baronb36464772021-01-14 22:27:56 -05006393 r = static_call(kvm_x86_mem_enc_unreg_region)(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06006394 break;
6395 }
Roman Kaganfaeb7832018-02-01 16:48:32 +03006396 case KVM_HYPERV_EVENTFD: {
6397 struct kvm_hyperv_eventfd hvevfd;
6398
6399 r = -EFAULT;
6400 if (copy_from_user(&hvevfd, argp, sizeof(hvevfd)))
6401 goto out;
6402 r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd);
6403 break;
6404 }
Eric Hankland66bb8a02019-07-10 18:25:15 -07006405 case KVM_SET_PMU_EVENT_FILTER:
6406 r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp);
6407 break;
Alexander Graf1a1552542020-09-25 16:34:21 +02006408 case KVM_X86_SET_MSR_FILTER:
6409 r = kvm_vm_ioctl_set_msr_filter(kvm, argp);
6410 break;
Carsten Otte043405e2007-10-10 17:16:19 +02006411 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02006412 r = -ENOTTY;
Carsten Otte043405e2007-10-10 17:16:19 +02006413 }
6414out:
6415 return r;
6416}
6417
6418static void kvm_init_msr_list(void)
6419{
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006420 struct x86_pmu_capability x86_pmu;
Carsten Otte043405e2007-10-10 17:16:19 +02006421 u32 dummy[2];
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006422 unsigned i;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006423
Jim Mattsone2ada662019-08-21 11:20:04 -07006424 BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4,
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006425 "Please update the fixed PMCs in msrs_to_saved_all[]");
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006426
6427 perf_get_x86_pmu_capability(&x86_pmu);
Jim Mattsone2ada662019-08-21 11:20:04 -07006428
Xiaoyao Li6cbee2b2019-11-13 09:15:21 +08006429 num_msrs_to_save = 0;
6430 num_emulated_msrs = 0;
6431 num_msr_based_features = 0;
6432
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006433 for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) {
6434 if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006435 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006436
6437 /*
6438 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006439 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006440 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006441 switch (msrs_to_save_all[i]) {
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006442 case MSR_IA32_BNDCFGS:
Liran Alon503234b2018-09-14 03:25:53 +03006443 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006444 continue;
6445 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006446 case MSR_TSC_AUX:
Sean Christopherson36fa06f2021-05-04 10:17:26 -07006447 if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP) &&
6448 !kvm_cpu_cap_has(X86_FEATURE_RDPID))
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01006449 continue;
6450 break;
Maxim Levitskyf4cfcd22020-05-23 19:14:55 +03006451 case MSR_IA32_UMWAIT_CONTROL:
6452 if (!kvm_cpu_cap_has(X86_FEATURE_WAITPKG))
6453 continue;
6454 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08006455 case MSR_IA32_RTIT_CTL:
6456 case MSR_IA32_RTIT_STATUS:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006457 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT))
Chao Pengbf8c55d2018-10-24 16:05:14 +08006458 continue;
6459 break;
6460 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006461 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006462 !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering))
6463 continue;
6464 break;
6465 case MSR_IA32_RTIT_OUTPUT_BASE:
6466 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006467 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08006468 (!intel_pt_validate_hw_cap(PT_CAP_topa_output) &&
6469 !intel_pt_validate_hw_cap(PT_CAP_single_range_output)))
6470 continue;
6471 break;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006472 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christopherson7b874c22020-03-02 15:56:59 -08006473 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006474 msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >=
Chao Pengbf8c55d2018-10-24 16:05:14 +08006475 intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2)
6476 continue;
6477 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006478 case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006479 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006480 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6481 continue;
6482 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02006483 case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006484 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02006485 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
6486 continue;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08006487 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01006488 default:
6489 break;
6490 }
6491
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006492 msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i];
Carsten Ottebbd9b642007-10-30 18:44:21 +01006493 }
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006494
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006495 for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
Jason Baronb36464772021-01-14 22:27:56 -05006496 if (!static_call(kvm_x86_has_emulated_msr)(NULL, emulated_msrs_all[i]))
Tom Lendackybc226f02018-05-10 22:06:39 +02006497 continue;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006498
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006499 emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02006500 }
Tom Lendacky801e4592018-02-21 13:39:51 -06006501
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006502 for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) {
Tom Lendacky801e4592018-02-21 13:39:51 -06006503 struct kvm_msr_entry msr;
6504
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006505 msr.index = msr_based_features_all[i];
Wanpeng Li66421c12018-02-28 14:03:30 +08006506 if (kvm_get_msr_feature(&msr))
Tom Lendacky801e4592018-02-21 13:39:51 -06006507 continue;
6508
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08006509 msr_based_features[num_msr_based_features++] = msr_based_features_all[i];
Tom Lendacky801e4592018-02-21 13:39:51 -06006510 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006511}
6512
6513static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
6514 const void *v)
6515{
Avi Kivity70252a12010-01-19 12:51:22 +02006516 int handled = 0;
6517 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006518
Avi Kivity70252a12010-01-19 12:51:22 +02006519 do {
6520 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006521 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006522 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
6523 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006524 break;
6525 handled += n;
6526 addr += n;
6527 len -= n;
6528 v += n;
6529 } while (len);
6530
6531 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006532}
6533
6534static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
6535{
Avi Kivity70252a12010-01-19 12:51:22 +02006536 int handled = 0;
6537 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006538
Avi Kivity70252a12010-01-19 12:51:22 +02006539 do {
6540 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01006541 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00006542 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
6543 addr, n, v))
6544 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02006545 break;
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006546 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v);
Avi Kivity70252a12010-01-19 12:51:22 +02006547 handled += n;
6548 addr += n;
6549 len -= n;
6550 v += n;
6551 } while (len);
6552
6553 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006554}
6555
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006556static void kvm_set_segment(struct kvm_vcpu *vcpu,
6557 struct kvm_segment *var, int seg)
6558{
Jason Baronb36464772021-01-14 22:27:56 -05006559 static_call(kvm_x86_set_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006560}
6561
6562void kvm_get_segment(struct kvm_vcpu *vcpu,
6563 struct kvm_segment *var, int seg)
6564{
Jason Baronb36464772021-01-14 22:27:56 -05006565 static_call(kvm_x86_get_segment)(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006566}
6567
Paolo Bonzini54987b72014-09-02 13:23:06 +02006568gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
6569 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006570{
6571 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006572
6573 BUG_ON(!mmu_is_nested(vcpu));
6574
6575 /* NPT walks are always user-walks */
6576 access |= PFERR_USER_MASK;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02006577 t_gpa = vcpu->arch.mmu->gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02006578
6579 return t_gpa;
6580}
6581
Avi Kivityab9ae312010-11-22 17:53:26 +02006582gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
6583 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006584{
Jason Baronb36464772021-01-14 22:27:56 -05006585 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02006586 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006587}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006588EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_read);
Gleb Natapov1871c602010-02-10 14:21:32 +02006589
Avi Kivityab9ae312010-11-22 17:53:26 +02006590 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
6591 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006592{
Jason Baronb36464772021-01-14 22:27:56 -05006593 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006594 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02006595 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006596}
6597
Avi Kivityab9ae312010-11-22 17:53:26 +02006598gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
6599 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006600{
Jason Baronb36464772021-01-14 22:27:56 -05006601 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02006602 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02006603 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006604}
Sean Christopherson54f958c2021-04-12 16:21:33 +12006605EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_write);
Gleb Natapov1871c602010-02-10 14:21:32 +02006606
6607/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02006608gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
6609 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006610{
Avi Kivityab9ae312010-11-22 17:53:26 +02006611 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006612}
6613
6614static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6615 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006616 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006617{
6618 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006619 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006620
6621 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02006622 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02006623 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006624 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02006625 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006626 int ret;
6627
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006628 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006629 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006630 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
6631 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006632 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006633 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006634 goto out;
6635 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01006636
Izik Eidus77c20022008-12-29 01:42:19 +02006637 bytes -= toread;
6638 data += toread;
6639 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006640 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006641out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05006642 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006643}
Izik Eidus77c20022008-12-29 01:42:19 +02006644
Gleb Natapov1871c602010-02-10 14:21:32 +02006645/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03006646static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
6647 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006648 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006649{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006650 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Jason Baronb36464772021-01-14 22:27:56 -05006651 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006652 unsigned offset;
6653 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006654
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006655 /* Inline kvm_read_guest_virt_helper for speed. */
6656 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
6657 exception);
6658 if (unlikely(gpa == UNMAPPED_GVA))
6659 return X86EMUL_PROPAGATE_FAULT;
6660
6661 offset = addr & (PAGE_SIZE-1);
6662 if (WARN_ON(offset + bytes > PAGE_SIZE))
6663 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006664 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
6665 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02006666 if (unlikely(ret < 0))
6667 return X86EMUL_IO_NEEDED;
6668
6669 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02006670}
6671
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006672int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
Avi Kivity0f65dd72011-04-20 13:37:53 +03006673 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006674 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02006675{
Jason Baronb36464772021-01-14 22:27:56 -05006676 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006677
Paolo Bonzini353c0952019-01-29 18:41:16 +01006678 /*
6679 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
6680 * is returned, but our callers are not ready for that and they blindly
6681 * call kvm_inject_page_fault. Ensure that they at least do not leak
6682 * uninitialized kernel stack memory into cr2 and error code.
6683 */
6684 memset(exception, 0, sizeof(*exception));
Gleb Natapov1871c602010-02-10 14:21:32 +02006685 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006686 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006687}
Nadav Har'El064aea72011-05-25 23:04:56 +03006688EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02006689
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006690static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
6691 gva_t addr, void *val, unsigned int bytes,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006692 struct x86_exception *exception, bool system)
Gleb Natapov1871c602010-02-10 14:21:32 +02006693{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006694 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006695 u32 access = 0;
6696
Jason Baronb36464772021-01-14 22:27:56 -05006697 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006698 access |= PFERR_USER_MASK;
6699
6700 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02006701}
6702
Radim Krčmář7a036a62015-10-30 16:36:24 +01006703static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
6704 unsigned long addr, void *val, unsigned int bytes)
6705{
6706 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6707 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
6708
6709 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
6710}
6711
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006712static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6713 struct kvm_vcpu *vcpu, u32 access,
6714 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02006715{
6716 void *data = val;
6717 int r = X86EMUL_CONTINUE;
6718
6719 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02006720 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006721 access,
Avi Kivityab9ae312010-11-22 17:53:26 +02006722 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02006723 unsigned offset = addr & (PAGE_SIZE-1);
6724 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
6725 int ret;
6726
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006727 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02006728 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006729 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02006730 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006731 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02006732 goto out;
6733 }
6734
6735 bytes -= towrite;
6736 data += towrite;
6737 addr += towrite;
6738 }
6739out:
6740 return r;
6741}
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006742
6743static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006744 unsigned int bytes, struct x86_exception *exception,
6745 bool system)
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006746{
6747 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006748 u32 access = PFERR_WRITE_MASK;
6749
Jason Baronb36464772021-01-14 22:27:56 -05006750 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006751 access |= PFERR_USER_MASK;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006752
6753 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006754 access, exception);
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006755}
6756
6757int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val,
6758 unsigned int bytes, struct x86_exception *exception)
6759{
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006760 /* kvm_write_guest_virt_system can pull in tons of pages. */
6761 vcpu->arch.l1tf_flush_l1d = true;
6762
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006763 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
6764 PFERR_WRITE_MASK, exception);
6765}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03006766EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02006767
Wanpeng Li082d06e2018-04-03 16:28:48 -07006768int handle_ud(struct kvm_vcpu *vcpu)
6769{
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006770 static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX };
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006771 int emul_type = EMULTYPE_TRAP_UD;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006772 char sig[5]; /* ud2; .ascii "kvm" */
6773 struct x86_exception e;
Wanpeng Li082d06e2018-04-03 16:28:48 -07006774
Jason Baronb36464772021-01-14 22:27:56 -05006775 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, NULL, 0)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07006776 return 1;
6777
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006778 if (force_emulation_prefix &&
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02006779 kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu),
6780 sig, sizeof(sig), &e) == 0 &&
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09006781 memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) {
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006782 kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig));
Sean Christophersonb4000602019-08-27 14:40:32 -07006783 emul_type = EMULTYPE_TRAP_UD_FORCED;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07006784 }
6785
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006786 return kvm_emulate_instruction(vcpu, emul_type);
Wanpeng Li082d06e2018-04-03 16:28:48 -07006787}
6788EXPORT_SYMBOL_GPL(handle_ud);
6789
Tom Lendacky0f89b202016-12-14 14:59:23 -05006790static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6791 gpa_t gpa, bool write)
6792{
6793 /* For APIC access vmexit */
6794 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6795 return 1;
6796
6797 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
6798 trace_vcpu_match_mmio(gva, gpa, write, true);
6799 return 1;
6800 }
6801
6802 return 0;
6803}
6804
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006805static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6806 gpa_t *gpa, struct x86_exception *exception,
6807 bool write)
6808{
Jason Baronb36464772021-01-14 22:27:56 -05006809 u32 access = ((static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0)
Avi Kivity97d64b72012-09-12 14:52:00 +03006810 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006811
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08006812 /*
6813 * currently PKRU is only applied to ept enabled guest so
6814 * there is no pkey in EPT page table for L1 guest or EPT
6815 * shadow page table for L2 guest.
6816 */
Sean Christopherson908b7d42021-07-13 09:33:04 -07006817 if (vcpu_match_mmio_gva(vcpu, gva) && (!is_paging(vcpu) ||
6818 !permission_fault(vcpu, vcpu->arch.walk_mmu,
6819 vcpu->arch.mmio_access, 0, access))) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006820 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
6821 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08006822 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08006823 return 1;
6824 }
6825
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006826 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
6827
6828 if (*gpa == UNMAPPED_GVA)
6829 return -1;
6830
Tom Lendacky0f89b202016-12-14 14:59:23 -05006831 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006832}
6833
Marcelo Tosatti3200f402008-03-29 20:17:59 -03006834int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02006835 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02006836{
6837 int ret;
6838
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006839 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006840 if (ret < 0)
6841 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08006842 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02006843 return 1;
6844}
6845
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006846struct read_write_emulator_ops {
6847 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
6848 int bytes);
6849 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
6850 void *val, int bytes);
6851 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6852 int bytes, void *val);
6853 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6854 void *val, int bytes);
6855 bool write;
6856};
6857
6858static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
6859{
6860 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006861 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006862 vcpu->mmio_fragments[0].gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006863 vcpu->mmio_read_completed = 0;
6864 return 1;
6865 }
6866
6867 return 0;
6868}
6869
6870static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6871 void *val, int bytes)
6872{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02006873 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006874}
6875
6876static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6877 void *val, int bytes)
6878{
6879 return emulator_write_phys(vcpu, gpa, val, bytes);
6880}
6881
6882static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
6883{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006884 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006885 return vcpu_mmio_write(vcpu, gpa, bytes, val);
6886}
6887
6888static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6889 void *val, int bytes)
6890{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08006891 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006892 return X86EMUL_IO_NEEDED;
6893}
6894
6895static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6896 void *val, int bytes)
6897{
Avi Kivityf78146b2012-04-18 19:22:47 +03006898 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
6899
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006900 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006901 return X86EMUL_CONTINUE;
6902}
6903
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006904static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006905 .read_write_prepare = read_prepare,
6906 .read_write_emulate = read_emulate,
6907 .read_write_mmio = vcpu_mmio_read,
6908 .read_write_exit_mmio = read_exit_mmio,
6909};
6910
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006911static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08006912 .read_write_emulate = write_emulate,
6913 .read_write_mmio = write_mmio,
6914 .read_write_exit_mmio = write_exit_mmio,
6915 .write = true,
6916};
6917
Xiao Guangrong22388a32011-07-13 14:32:31 +08006918static int emulator_read_write_onepage(unsigned long addr, void *val,
6919 unsigned int bytes,
6920 struct x86_exception *exception,
6921 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006922 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006923{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08006924 gpa_t gpa;
6925 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006926 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03006927 struct kvm_mmio_fragment *frag;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006928 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006929
6930 /*
6931 * If the exit was due to a NPF we may already have a GPA.
6932 * If the GPA is present, use it to avoid the GVA to GPA table walk.
6933 * Note, this cannot be used on string operations since string
6934 * operation using rep will only have the initial GPA from the NPF
6935 * occurred.
6936 */
Sean Christopherson744e6992020-02-18 15:03:09 -08006937 if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) &&
6938 (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) {
6939 gpa = ctxt->gpa_val;
Brijesh Singh618232e2017-08-17 18:36:57 +02006940 ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write);
6941 } else {
6942 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
6943 if (ret < 0)
6944 return X86EMUL_PROPAGATE_FAULT;
Tom Lendacky0f89b202016-12-14 14:59:23 -05006945 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08006946
Brijesh Singh618232e2017-08-17 18:36:57 +02006947 if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01006948 return X86EMUL_CONTINUE;
6949
Carsten Ottebbd9b642007-10-30 18:44:21 +01006950 /*
6951 * Is this MMIO handled locally?
6952 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08006953 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02006954 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006955 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006956
Avi Kivity70252a12010-01-19 12:51:22 +02006957 gpa += handled;
6958 bytes -= handled;
6959 val += handled;
6960
Xiao Guangrong87da7e62012-10-24 14:07:59 +08006961 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
6962 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
6963 frag->gpa = gpa;
6964 frag->data = val;
6965 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03006966 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006967}
6968
Xiubo Li52eb5a62015-03-13 17:39:45 +08006969static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
6970 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08006971 void *val, unsigned int bytes,
6972 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02006973 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006974{
Avi Kivity0f65dd72011-04-20 13:37:53 +03006975 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03006976 gpa_t gpa;
6977 int rc;
6978
6979 if (ops->read_write_prepare &&
6980 ops->read_write_prepare(vcpu, val, bytes))
6981 return X86EMUL_CONTINUE;
6982
6983 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03006984
Carsten Ottebbd9b642007-10-30 18:44:21 +01006985 /* Crossing a page boundary? */
6986 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03006987 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006988
6989 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08006990 rc = emulator_read_write_onepage(addr, val, now, exception,
6991 vcpu, ops);
6992
Carsten Ottebbd9b642007-10-30 18:44:21 +01006993 if (rc != X86EMUL_CONTINUE)
6994 return rc;
6995 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02006996 if (ctxt->mode != X86EMUL_MODE_PROT64)
6997 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006998 val += now;
6999 bytes -= now;
7000 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08007001
Avi Kivityf78146b2012-04-18 19:22:47 +03007002 rc = emulator_read_write_onepage(addr, val, bytes, exception,
7003 vcpu, ops);
7004 if (rc != X86EMUL_CONTINUE)
7005 return rc;
7006
7007 if (!vcpu->mmio_nr_fragments)
7008 return rc;
7009
7010 gpa = vcpu->mmio_fragments[0].gpa;
7011
7012 vcpu->mmio_needed = 1;
7013 vcpu->mmio_cur_fragment = 0;
7014
Xiao Guangrong87da7e62012-10-24 14:07:59 +08007015 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03007016 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
7017 vcpu->run->exit_reason = KVM_EXIT_MMIO;
7018 vcpu->run->mmio.phys_addr = gpa;
7019
7020 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08007021}
7022
7023static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
7024 unsigned long addr,
7025 void *val,
7026 unsigned int bytes,
7027 struct x86_exception *exception)
7028{
7029 return emulator_read_write(ctxt, addr, val, bytes,
7030 exception, &read_emultor);
7031}
7032
Xiubo Li52eb5a62015-03-13 17:39:45 +08007033static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08007034 unsigned long addr,
7035 const void *val,
7036 unsigned int bytes,
7037 struct x86_exception *exception)
7038{
7039 return emulator_read_write(ctxt, addr, (void *)val, bytes,
7040 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007041}
Carsten Ottebbd9b642007-10-30 18:44:21 +01007042
Avi Kivitydaea3e72010-03-15 13:59:54 +02007043#define CMPXCHG_TYPE(t, ptr, old, new) \
7044 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
7045
7046#ifdef CONFIG_X86_64
7047# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
7048#else
7049# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01007050 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02007051#endif
7052
Avi Kivity0f65dd72011-04-20 13:37:53 +03007053static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
7054 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007055 const void *old,
7056 const void *new,
7057 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03007058 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007059{
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007060 struct kvm_host_map map;
Avi Kivity0f65dd72011-04-20 13:37:53 +03007061 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02007062 u64 page_line_mask;
Avi Kivitydaea3e72010-03-15 13:59:54 +02007063 gpa_t gpa;
Avi Kivitydaea3e72010-03-15 13:59:54 +02007064 char *kaddr;
7065 bool exchanged;
7066
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007067 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02007068 if (bytes > 8 || (bytes & (bytes - 1)))
7069 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007070
Avi Kivitydaea3e72010-03-15 13:59:54 +02007071 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05007072
Avi Kivitydaea3e72010-03-15 13:59:54 +02007073 if (gpa == UNMAPPED_GVA ||
7074 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
7075 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007076
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02007077 /*
7078 * Emulate the atomic as a straight write to avoid #AC if SLD is
7079 * enabled in the host and the access splits a cache line.
7080 */
7081 if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
7082 page_line_mask = ~(cache_line_size() - 1);
7083 else
7084 page_line_mask = PAGE_MASK;
7085
7086 if (((gpa + bytes - 1) & page_line_mask) != (gpa & page_line_mask))
Avi Kivitydaea3e72010-03-15 13:59:54 +02007087 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007088
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007089 if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08007090 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02007091
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007092 kaddr = map.hva + offset_in_page(gpa);
7093
Avi Kivitydaea3e72010-03-15 13:59:54 +02007094 switch (bytes) {
7095 case 1:
7096 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
7097 break;
7098 case 2:
7099 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
7100 break;
7101 case 4:
7102 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
7103 break;
7104 case 8:
7105 exchanged = CMPXCHG64(kaddr, old, new);
7106 break;
7107 default:
7108 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007109 }
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01007110
7111 kvm_vcpu_unmap(vcpu, &map, true);
Avi Kivitydaea3e72010-03-15 13:59:54 +02007112
7113 if (!exchanged)
7114 return X86EMUL_CMPXCHG_FAILED;
7115
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08007116 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03007117
7118 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02007119
Marcelo Tosatti3200f402008-03-29 20:17:59 -03007120emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02007121 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05007122
Avi Kivity0f65dd72011-04-20 13:37:53 +03007123 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007124}
7125
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007126static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
7127{
Wanpeng Licbfc6c92017-05-19 02:46:56 -07007128 int r = 0, i;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007129
Wanpeng Licbfc6c92017-05-19 02:46:56 -07007130 for (i = 0; i < vcpu->arch.pio.count; i++) {
7131 if (vcpu->arch.pio.in)
7132 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
7133 vcpu->arch.pio.size, pd);
7134 else
7135 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
7136 vcpu->arch.pio.port, vcpu->arch.pio.size,
7137 pd);
7138 if (r)
7139 break;
7140 pd += vcpu->arch.pio.size;
7141 }
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007142 return r;
7143}
7144
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007145static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
7146 unsigned short port, void *val,
7147 unsigned int count, bool in)
7148{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007149 vcpu->arch.pio.port = port;
7150 vcpu->arch.pio.in = in;
7151 vcpu->arch.pio.count = count;
7152 vcpu->arch.pio.size = size;
7153
7154 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
7155 vcpu->arch.pio.count = 0;
7156 return 1;
7157 }
7158
7159 vcpu->run->exit_reason = KVM_EXIT_IO;
7160 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
7161 vcpu->run->io.size = size;
7162 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
7163 vcpu->run->io.count = count;
7164 vcpu->run->io.port = port;
7165
7166 return 0;
7167}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007168
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007169static int emulator_pio_in(struct kvm_vcpu *vcpu, int size,
7170 unsigned short port, void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007171{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007172 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03007173
Gleb Natapov79729952010-03-18 15:20:24 +02007174 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007175 goto data_avail;
7176
Wanpeng Licbfc6c92017-05-19 02:46:56 -07007177 memset(vcpu->arch.pio_data, 0, size * count);
7178
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007179 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
7180 if (ret) {
7181data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007182 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02007183 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02007184 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007185 return 1;
7186 }
7187
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007188 return 0;
7189}
7190
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007191static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
7192 int size, unsigned short port, void *val,
7193 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007194{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007195 return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count);
Avi Kivityca1d4a92011-04-20 13:37:53 +03007196
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007197}
7198
7199static int emulator_pio_out(struct kvm_vcpu *vcpu, int size,
7200 unsigned short port, const void *val,
7201 unsigned int count)
7202{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007203 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02007204 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08007205 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007206}
7207
Carsten Ottebbd9b642007-10-30 18:44:21 +01007208static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
7209 int size, unsigned short port,
7210 const void *val, unsigned int count)
7211{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007212 return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007213}
7214
7215static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
7216{
Jason Baronb36464772021-01-14 22:27:56 -05007217 return static_call(kvm_x86_get_segment_base)(vcpu, seg);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007218}
7219
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007220static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007221{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007222 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007223}
7224
Jiang Biaoae6a2372016-11-07 08:54:51 +08007225static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007226{
7227 if (!need_emulate_wbinvd(vcpu))
7228 return X86EMUL_CONTINUE;
7229
Jason Baronb36464772021-01-14 22:27:56 -05007230 if (static_call(kvm_x86_has_wbinvd_exit)()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01007231 int cpu = get_cpu();
7232
7233 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Wanpeng Lic2162e12021-03-12 10:45:51 +08007234 on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007235 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01007236 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007237 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01007238 } else
7239 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007240 return X86EMUL_CONTINUE;
7241}
Joel Schopp5cb56052015-03-02 13:43:31 -06007242
7243int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
7244{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007245 kvm_emulate_wbinvd_noskip(vcpu);
7246 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06007247}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007248EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
7249
Joel Schopp5cb56052015-03-02 13:43:31 -06007250
7251
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007252static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
7253{
Joel Schopp5cb56052015-03-02 13:43:31 -06007254 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007255}
7256
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007257static void emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
7258 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007259{
Paolo Bonzini29d6ca42021-02-03 03:42:41 -05007260 kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007261}
7262
Xiubo Li52eb5a62015-03-13 17:39:45 +08007263static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
7264 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01007265{
Gleb Natapov338dbc92010-04-28 19:15:32 +03007266
Paolo Bonzini996ff542020-12-14 07:49:54 -05007267 return kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007268}
7269
Gleb Natapov52a46612010-03-18 15:20:03 +02007270static u64 mk_cr_64(u64 curr_cr, u32 new_val)
7271{
7272 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
7273}
7274
Avi Kivity717746e2011-04-20 13:37:53 +03007275static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02007276{
Avi Kivity717746e2011-04-20 13:37:53 +03007277 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02007278 unsigned long value;
7279
7280 switch (cr) {
7281 case 0:
7282 value = kvm_read_cr0(vcpu);
7283 break;
7284 case 2:
7285 value = vcpu->arch.cr2;
7286 break;
7287 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02007288 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02007289 break;
7290 case 4:
7291 value = kvm_read_cr4(vcpu);
7292 break;
7293 case 8:
7294 value = kvm_get_cr8(vcpu);
7295 break;
7296 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007297 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02007298 return 0;
7299 }
7300
7301 return value;
7302}
7303
Avi Kivity717746e2011-04-20 13:37:53 +03007304static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02007305{
Avi Kivity717746e2011-04-20 13:37:53 +03007306 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03007307 int res = 0;
7308
Gleb Natapov52a46612010-03-18 15:20:03 +02007309 switch (cr) {
7310 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03007311 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007312 break;
7313 case 2:
7314 vcpu->arch.cr2 = val;
7315 break;
7316 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03007317 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007318 break;
7319 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03007320 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02007321 break;
7322 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01007323 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02007324 break;
7325 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03007326 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03007327 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02007328 }
Gleb Natapov0f122442010-04-28 19:15:31 +03007329
7330 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02007331}
7332
Avi Kivity717746e2011-04-20 13:37:53 +03007333static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02007334{
Jason Baronb36464772021-01-14 22:27:56 -05007335 return static_call(kvm_x86_get_cpl)(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02007336}
7337
Avi Kivity4bff1e862011-04-20 13:37:53 +03007338static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007339{
Jason Baronb36464772021-01-14 22:27:56 -05007340 static_call(kvm_x86_get_gdt)(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007341}
7342
Avi Kivity4bff1e862011-04-20 13:37:53 +03007343static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007344{
Jason Baronb36464772021-01-14 22:27:56 -05007345 static_call(kvm_x86_get_idt)(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007346}
7347
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007348static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7349{
Jason Baronb36464772021-01-14 22:27:56 -05007350 static_call(kvm_x86_set_gdt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007351}
7352
7353static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
7354{
Jason Baronb36464772021-01-14 22:27:56 -05007355 static_call(kvm_x86_set_idt)(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007356}
7357
Avi Kivity4bff1e862011-04-20 13:37:53 +03007358static unsigned long emulator_get_cached_segment_base(
7359 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03007360{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007361 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03007362}
7363
Avi Kivity1aa36612011-04-27 13:20:30 +03007364static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
7365 struct desc_struct *desc, u32 *base3,
7366 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007367{
7368 struct kvm_segment var;
7369
Avi Kivity4bff1e862011-04-20 13:37:53 +03007370 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03007371 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007372
Gleb Natapov378a8b02013-01-21 15:36:48 +02007373 if (var.unusable) {
7374 memset(desc, 0, sizeof(*desc));
Radim Krčmářf0367ee2017-05-18 19:37:30 +02007375 if (base3)
7376 *base3 = 0;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007377 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02007378 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007379
7380 if (var.g)
7381 var.limit >>= 12;
7382 set_desc_limit(desc, var.limit);
7383 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02007384#ifdef CONFIG_X86_64
7385 if (base3)
7386 *base3 = var.base >> 32;
7387#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007388 desc->type = var.type;
7389 desc->s = var.s;
7390 desc->dpl = var.dpl;
7391 desc->p = var.present;
7392 desc->avl = var.avl;
7393 desc->l = var.l;
7394 desc->d = var.db;
7395 desc->g = var.g;
7396
7397 return true;
7398}
7399
Avi Kivity1aa36612011-04-27 13:20:30 +03007400static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
7401 struct desc_struct *desc, u32 base3,
7402 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007403{
Avi Kivity4bff1e862011-04-20 13:37:53 +03007404 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007405 struct kvm_segment var;
7406
Avi Kivity1aa36612011-04-27 13:20:30 +03007407 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007408 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02007409#ifdef CONFIG_X86_64
7410 var.base |= ((u64)base3) << 32;
7411#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007412 var.limit = get_desc_limit(desc);
7413 if (desc->g)
7414 var.limit = (var.limit << 12) | 0xfff;
7415 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007416 var.dpl = desc->dpl;
7417 var.db = desc->d;
7418 var.s = desc->s;
7419 var.l = desc->l;
7420 var.g = desc->g;
7421 var.avl = desc->avl;
7422 var.present = desc->p;
7423 var.unusable = !var.present;
7424 var.padding = 0;
7425
7426 kvm_set_segment(vcpu, &var, seg);
7427 return;
7428}
7429
Avi Kivity717746e2011-04-20 13:37:53 +03007430static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
7431 u32 msr_index, u64 *pdata)
7432{
Alexander Graf1ae09952020-09-25 16:34:16 +02007433 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7434 int r;
7435
7436 r = kvm_get_msr(vcpu, msr_index, pdata);
7437
7438 if (r && kvm_get_msr_user_space(vcpu, msr_index, r)) {
7439 /* Bounce to user space */
7440 return X86EMUL_IO_NEEDED;
7441 }
7442
7443 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007444}
7445
7446static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
7447 u32 msr_index, u64 data)
7448{
Alexander Graf1ae09952020-09-25 16:34:16 +02007449 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7450 int r;
7451
7452 r = kvm_set_msr(vcpu, msr_index, data);
7453
7454 if (r && kvm_set_msr_user_space(vcpu, msr_index, data, r)) {
7455 /* Bounce to user space */
7456 return X86EMUL_IO_NEEDED;
7457 }
7458
7459 return r;
Avi Kivity717746e2011-04-20 13:37:53 +03007460}
7461
Paolo Bonzini64d60672015-05-07 11:36:11 +02007462static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
7463{
7464 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7465
7466 return vcpu->arch.smbase;
7467}
7468
7469static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
7470{
7471 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7472
7473 vcpu->arch.smbase = smbase;
7474}
7475
Nadav Amit67f4d422014-06-02 18:34:09 +03007476static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
7477 u32 pmc)
7478{
Jim Mattsone6cd31f2021-11-05 13:20:58 -07007479 if (kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc))
7480 return 0;
7481 return -EINVAL;
Nadav Amit67f4d422014-06-02 18:34:09 +03007482}
7483
Avi Kivity222d21a2011-11-10 14:57:30 +02007484static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
7485 u32 pmc, u64 *pdata)
7486{
Wei Huangc6702c92015-06-19 13:44:45 +02007487 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02007488}
7489
Avi Kivity6c3287f2011-04-20 15:43:05 +03007490static void emulator_halt(struct x86_emulate_ctxt *ctxt)
7491{
7492 emul_to_vcpu(ctxt)->arch.halt_request = 1;
7493}
7494
Avi Kivity29535382011-04-20 13:37:53 +03007495static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007496 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007497 enum x86_intercept_stage stage)
7498{
Jason Baronb36464772021-01-14 22:27:56 -05007499 return static_call(kvm_x86_check_intercept)(emul_to_vcpu(ctxt), info, stage,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08007500 &ctxt->exception);
Avi Kivityc4f035c2011-04-04 12:39:22 +02007501}
7502
Yu Zhange911eb32017-08-24 20:27:52 +08007503static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Sean Christophersonf91af512020-03-04 17:34:37 -08007504 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx,
7505 bool exact_only)
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007506{
Sean Christophersonf91af512020-03-04 17:34:37 -08007507 return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007508}
7509
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007510static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt)
7511{
7512 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM);
7513}
7514
7515static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt)
7516{
7517 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE);
7518}
7519
7520static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt)
7521{
7522 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR);
7523}
7524
Avi Kivitydd856ef2012-08-27 23:46:17 +03007525static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
7526{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007527 return kvm_register_read_raw(emul_to_vcpu(ctxt), reg);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007528}
7529
7530static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
7531{
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07007532 kvm_register_write_raw(emul_to_vcpu(ctxt), reg, val);
Avi Kivitydd856ef2012-08-27 23:46:17 +03007533}
7534
Nadav Amit801806d2015-01-26 09:32:23 +02007535static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
7536{
Jason Baronb36464772021-01-14 22:27:56 -05007537 static_call(kvm_x86_set_nmi_mask)(emul_to_vcpu(ctxt), masked);
Nadav Amit801806d2015-01-26 09:32:23 +02007538}
7539
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007540static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt)
7541{
7542 return emul_to_vcpu(ctxt)->arch.hflags;
7543}
7544
Sean Christophersonedce4652021-06-09 11:56:13 -07007545static void emulator_exiting_smm(struct x86_emulate_ctxt *ctxt)
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007546{
Sean Christopherson78fcb2c2021-06-09 11:56:11 -07007547 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
7548
Sean Christophersondc872752021-06-09 11:56:15 -07007549 kvm_smm_changed(vcpu, false);
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007550}
7551
Sean Christophersonecc513e2021-06-09 11:56:19 -07007552static int emulator_leave_smm(struct x86_emulate_ctxt *ctxt,
Sean Christophersoned193212019-04-02 08:03:09 -07007553 const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02007554{
Sean Christophersonecc513e2021-06-09 11:56:19 -07007555 return static_call(kvm_x86_leave_smm)(emul_to_vcpu(ctxt), smstate);
Ladi Prosek0234bf82017-10-11 16:54:40 +02007556}
7557
Sean Christopherson25b17222021-06-09 11:56:12 -07007558static void emulator_triple_fault(struct x86_emulate_ctxt *ctxt)
7559{
7560 kvm_make_request(KVM_REQ_TRIPLE_FAULT, emul_to_vcpu(ctxt));
7561}
7562
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007563static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr)
7564{
7565 return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr);
7566}
7567
Mathias Krause0225fb52012-08-30 01:30:16 +02007568static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03007569 .read_gpr = emulator_read_gpr,
7570 .write_gpr = emulator_write_gpr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02007571 .read_std = emulator_read_std,
7572 .write_std = emulator_write_std,
Radim Krčmář7a036a62015-10-30 16:36:24 +01007573 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02007574 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007575 .read_emulated = emulator_read_emulated,
7576 .write_emulated = emulator_write_emulated,
7577 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03007578 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02007579 .pio_in_emulated = emulator_pio_in_emulated,
7580 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03007581 .get_segment = emulator_get_segment,
7582 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03007583 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02007584 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03007585 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03007586 .set_gdt = emulator_set_gdt,
7587 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02007588 .get_cr = emulator_get_cr,
7589 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02007590 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03007591 .get_dr = emulator_get_dr,
7592 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02007593 .get_smbase = emulator_get_smbase,
7594 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03007595 .set_msr = emulator_set_msr,
7596 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03007597 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02007598 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03007599 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03007600 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03007601 .fix_hypercall = emulator_fix_hypercall,
Avi Kivityc4f035c2011-04-04 12:39:22 +02007602 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01007603 .get_cpuid = emulator_get_cpuid,
Sean Christopherson5ae78e92019-12-17 13:32:38 -08007604 .guest_has_long_mode = emulator_guest_has_long_mode,
7605 .guest_has_movbe = emulator_guest_has_movbe,
7606 .guest_has_fxsr = emulator_guest_has_fxsr,
Nadav Amit801806d2015-01-26 09:32:23 +02007607 .set_nmi_mask = emulator_set_nmi_mask,
Ladi Prosek6ed071f2017-04-25 16:42:44 +02007608 .get_hflags = emulator_get_hflags,
Sean Christophersonedce4652021-06-09 11:56:13 -07007609 .exiting_smm = emulator_exiting_smm,
Sean Christophersonecc513e2021-06-09 11:56:19 -07007610 .leave_smm = emulator_leave_smm,
Sean Christopherson25b17222021-06-09 11:56:12 -07007611 .triple_fault = emulator_triple_fault,
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02007612 .set_xcr = emulator_set_xcr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01007613};
7614
Gleb Natapov95cb2292010-04-28 19:15:43 +03007615static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
7616{
Jason Baronb36464772021-01-14 22:27:56 -05007617 u32 int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03007618 /*
7619 * an sti; sti; sequence only disable interrupts for the first
7620 * instruction. So, if the last instruction, be it emulated or
7621 * not, left the system with the INT_STI flag enabled, it
7622 * means that the last instruction is an sti. We should not
7623 * leave the flag on in this case. The same goes for mov ss
7624 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02007625 if (int_shadow & mask)
7626 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007627 if (unlikely(int_shadow || mask)) {
Jason Baronb36464772021-01-14 22:27:56 -05007628 static_call(kvm_x86_set_interrupt_shadow)(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01007629 if (!mask)
7630 kvm_make_request(KVM_REQ_EVENT, vcpu);
7631 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03007632}
7633
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007634static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03007635{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007636 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02007637 if (ctxt->exception.vector == PF_VECTOR)
Sean Christopherson53b3d8e2020-03-20 14:28:01 -07007638 return kvm_inject_emulated_page_fault(vcpu, &ctxt->exception);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007639
7640 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02007641 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
7642 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03007643 else
Avi Kivityda9cb572010-11-22 17:53:21 +02007644 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02007645 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03007646}
7647
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007648static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu)
7649{
7650 struct x86_emulate_ctxt *ctxt;
7651
7652 ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT);
7653 if (!ctxt) {
7654 pr_err("kvm: failed to allocate vcpu's emulator\n");
7655 return NULL;
7656 }
7657
7658 ctxt->vcpu = vcpu;
7659 ctxt->ops = &emulate_ops;
7660 vcpu->arch.emulate_ctxt = ctxt;
7661
7662 return ctxt;
7663}
7664
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007665static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
7666{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007667 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007668 int cs_db, cs_l;
7669
Jason Baronb36464772021-01-14 22:27:56 -05007670 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007671
Sean Christopherson744e6992020-02-18 15:03:09 -08007672 ctxt->gpa_available = false;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007673 ctxt->eflags = kvm_get_rflags(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007674 ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0;
7675
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007676 ctxt->eip = kvm_rip_read(vcpu);
7677 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
7678 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03007679 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007680 cs_db ? X86EMUL_MODE_PROT32 :
7681 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02007682 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007683 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
7684 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09007685
Wanpeng Lida6393c2021-05-27 17:01:36 -07007686 ctxt->interruptibility = 0;
7687 ctxt->have_exception = false;
7688 ctxt->exception.vector = -1;
7689 ctxt->perm_ok = false;
7690
Avi Kivitydd856ef2012-08-27 23:46:17 +03007691 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02007692 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03007693}
7694
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007695void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02007696{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007697 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02007698 int ret;
7699
7700 init_emulate_ctxt(vcpu);
7701
Avi Kivity9dac77f2011-06-01 15:34:25 +03007702 ctxt->op_bytes = 2;
7703 ctxt->ad_bytes = 2;
7704 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09007705 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02007706
Sean Christopherson9497e1f2019-08-27 14:40:36 -07007707 if (ret != X86EMUL_CONTINUE) {
7708 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7709 } else {
7710 ctxt->eip = ctxt->_eip;
7711 kvm_rip_write(vcpu, ctxt->eip);
7712 kvm_set_rflags(vcpu, ctxt->eflags);
7713 }
Mohammed Gamal63995652010-09-19 14:34:06 +02007714}
7715EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
7716
David Edmondsone615e352021-09-20 11:37:36 +01007717static void prepare_emulation_failure_exit(struct kvm_vcpu *vcpu, u64 *data,
7718 u8 ndata, u8 *insn_bytes, u8 insn_size)
Aaron Lewis19238e72021-05-10 07:48:33 -07007719{
Aaron Lewis19238e72021-05-10 07:48:33 -07007720 struct kvm_run *run = vcpu->run;
David Edmondsone615e352021-09-20 11:37:36 +01007721 u64 info[5];
7722 u8 info_start;
7723
7724 /*
7725 * Zero the whole array used to retrieve the exit info, as casting to
7726 * u32 for select entries will leave some chunks uninitialized.
7727 */
7728 memset(&info, 0, sizeof(info));
7729
7730 static_call(kvm_x86_get_exit_info)(vcpu, (u32 *)&info[0], &info[1],
7731 &info[2], (u32 *)&info[3],
7732 (u32 *)&info[4]);
Aaron Lewis19238e72021-05-10 07:48:33 -07007733
7734 run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7735 run->emulation_failure.suberror = KVM_INTERNAL_ERROR_EMULATION;
David Edmondsone615e352021-09-20 11:37:36 +01007736
7737 /*
7738 * There's currently space for 13 entries, but 5 are used for the exit
7739 * reason and info. Restrict to 4 to reduce the maintenance burden
7740 * when expanding kvm_run.emulation_failure in the future.
7741 */
7742 if (WARN_ON_ONCE(ndata > 4))
7743 ndata = 4;
7744
7745 /* Always include the flags as a 'data' entry. */
7746 info_start = 1;
Aaron Lewis19238e72021-05-10 07:48:33 -07007747 run->emulation_failure.flags = 0;
7748
7749 if (insn_size) {
David Edmondsone615e352021-09-20 11:37:36 +01007750 BUILD_BUG_ON((sizeof(run->emulation_failure.insn_size) +
7751 sizeof(run->emulation_failure.insn_bytes) != 16));
7752 info_start += 2;
Aaron Lewis19238e72021-05-10 07:48:33 -07007753 run->emulation_failure.flags |=
7754 KVM_INTERNAL_ERROR_EMULATION_FLAG_INSTRUCTION_BYTES;
7755 run->emulation_failure.insn_size = insn_size;
7756 memset(run->emulation_failure.insn_bytes, 0x90,
7757 sizeof(run->emulation_failure.insn_bytes));
David Edmondsone615e352021-09-20 11:37:36 +01007758 memcpy(run->emulation_failure.insn_bytes, insn_bytes, insn_size);
Aaron Lewis19238e72021-05-10 07:48:33 -07007759 }
David Edmondsone615e352021-09-20 11:37:36 +01007760
7761 memcpy(&run->internal.data[info_start], info, sizeof(info));
7762 memcpy(&run->internal.data[info_start + ARRAY_SIZE(info)], data,
7763 ndata * sizeof(data[0]));
7764
7765 run->emulation_failure.ndata = info_start + ARRAY_SIZE(info) + ndata;
Aaron Lewis19238e72021-05-10 07:48:33 -07007766}
7767
David Edmondsone615e352021-09-20 11:37:36 +01007768static void prepare_emulation_ctxt_failure_exit(struct kvm_vcpu *vcpu)
7769{
7770 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7771
7772 prepare_emulation_failure_exit(vcpu, NULL, 0, ctxt->fetch.data,
7773 ctxt->fetch.end - ctxt->fetch.data);
7774}
7775
7776void __kvm_prepare_emulation_failure_exit(struct kvm_vcpu *vcpu, u64 *data,
7777 u8 ndata)
7778{
7779 prepare_emulation_failure_exit(vcpu, data, ndata, NULL, 0);
7780}
7781EXPORT_SYMBOL_GPL(__kvm_prepare_emulation_failure_exit);
7782
7783void kvm_prepare_emulation_failure_exit(struct kvm_vcpu *vcpu)
7784{
7785 __kvm_prepare_emulation_failure_exit(vcpu, NULL, 0);
7786}
7787EXPORT_SYMBOL_GPL(kvm_prepare_emulation_failure_exit);
7788
Liran Alone2366172018-03-12 13:12:49 +02007789static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007790{
Aaron Lewis19238e72021-05-10 07:48:33 -07007791 struct kvm *kvm = vcpu->kvm;
7792
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007793 ++vcpu->stat.insn_emulation_fail;
7794 trace_kvm_emulate_insn_failed(vcpu);
Liran Alone2366172018-03-12 13:12:49 +02007795
Sean Christopherson42cbf062019-08-27 14:40:31 -07007796 if (emulation_type & EMULTYPE_VMWARE_GP) {
7797 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007798 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07007799 }
Liran Alone2366172018-03-12 13:12:49 +02007800
Aaron Lewis19238e72021-05-10 07:48:33 -07007801 if (kvm->arch.exit_on_emulation_error ||
7802 (emulation_type & EMULTYPE_SKIP)) {
David Edmondsone615e352021-09-20 11:37:36 +01007803 prepare_emulation_ctxt_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007804 return 0;
Sean Christopherson738fece2019-08-27 14:40:34 -07007805 }
7806
Sean Christopherson22da61c2019-08-27 14:40:28 -07007807 kvm_queue_exception(vcpu, UD_VECTOR);
7808
Jason Baronb36464772021-01-14 22:27:56 -05007809 if (!is_guest_mode(vcpu) && static_call(kvm_x86_get_cpl)(vcpu) == 0) {
David Edmondsone615e352021-09-20 11:37:36 +01007810 prepare_emulation_ctxt_failure_exit(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007811 return 0;
Joerg Roedelfc3a9152010-11-29 17:51:49 +01007812 }
Liran Alone2366172018-03-12 13:12:49 +02007813
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007814 return 1;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03007815}
7816
Sean Christopherson736c2912019-12-06 15:57:14 -08007817static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
Gleb Natapov991eebf2013-04-11 12:10:51 +03007818 bool write_fault_to_shadow_pgtable,
7819 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03007820{
Sean Christopherson736c2912019-12-06 15:57:14 -08007821 gpa_t gpa = cr2_or_gpa;
Dan Williamsba049e92016-01-15 16:56:11 -08007822 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007823
Sean Christopherson92daa482020-02-18 15:03:08 -08007824 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Gleb Natapov991eebf2013-04-11 12:10:51 +03007825 return false;
7826
Sean Christopherson92daa482020-02-18 15:03:08 -08007827 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7828 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007829 return false;
7830
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007831 if (!vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007832 /*
7833 * Write permission should be allowed since only
7834 * write access need to be emulated.
7835 */
Sean Christopherson736c2912019-12-06 15:57:14 -08007836 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03007837
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007838 /*
7839 * If the mapping is invalid in guest, let cpu retry
7840 * it to generate fault.
7841 */
7842 if (gpa == UNMAPPED_GVA)
7843 return true;
7844 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007845
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007846 /*
7847 * Do not retry the unhandleable instruction if it faults on the
7848 * readonly host memory, otherwise it will goto a infinite loop:
7849 * retry instruction -> write #PF -> emulation fail -> retry
7850 * instruction -> ...
7851 */
7852 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007853
7854 /*
7855 * If the instruction failed on the error pfn, it can not be fixed,
7856 * report the error to userspace.
7857 */
7858 if (is_error_noslot_pfn(pfn))
7859 return false;
7860
7861 kvm_release_pfn_clean(pfn);
7862
7863 /* The instructions are well-emulated on direct mmu. */
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007864 if (vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007865 unsigned int indirect_shadow_pages;
7866
Ben Gardon531810c2021-02-02 10:57:24 -08007867 write_lock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007868 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
Ben Gardon531810c2021-02-02 10:57:24 -08007869 write_unlock(&vcpu->kvm->mmu_lock);
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007870
7871 if (indirect_shadow_pages)
7872 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
7873
Gleb Natapova6f177e2010-07-08 12:41:12 +03007874 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08007875 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03007876
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08007877 /*
7878 * if emulation was due to access to shadowed page table
7879 * and it failed try to unshadow page and re-enter the
7880 * guest to let CPU execute the instruction.
7881 */
7882 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08007883
7884 /*
7885 * If the access faults on its page table, it can not
7886 * be fixed by unprotecting shadow page and it should
7887 * be reported to userspace.
7888 */
7889 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03007890}
7891
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007892static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
Sean Christopherson736c2912019-12-06 15:57:14 -08007893 gpa_t cr2_or_gpa, int emulation_type)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007894{
7895 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christopherson736c2912019-12-06 15:57:14 -08007896 unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007897
7898 last_retry_eip = vcpu->arch.last_retry_eip;
7899 last_retry_addr = vcpu->arch.last_retry_addr;
7900
7901 /*
7902 * If the emulation is caused by #PF and it is non-page_table
7903 * writing instruction, it means the VM-EXIT is caused by shadow
7904 * page protected, we can zap the shadow page and retry this
7905 * instruction directly.
7906 *
7907 * Note: if the guest uses a non-page-table modifying instruction
7908 * on the PDE that points to the instruction, then we will unmap
7909 * the instruction and go to an infinite loop. So, we cache the
7910 * last retried eip and the last fault address, if we meet the eip
7911 * and the address again, we can break out of the potential infinite
7912 * loop.
7913 */
7914 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
7915
Sean Christopherson92daa482020-02-18 15:03:08 -08007916 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007917 return false;
7918
Sean Christopherson92daa482020-02-18 15:03:08 -08007919 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7920 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07007921 return false;
7922
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007923 if (x86_page_table_writing_insn(ctxt))
7924 return false;
7925
Sean Christopherson736c2912019-12-06 15:57:14 -08007926 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007927 return false;
7928
7929 vcpu->arch.last_retry_eip = ctxt->eip;
Sean Christopherson736c2912019-12-06 15:57:14 -08007930 vcpu->arch.last_retry_addr = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007931
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02007932 if (!vcpu->arch.mmu->direct_map)
Sean Christopherson736c2912019-12-06 15:57:14 -08007933 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007934
Xiao Guangrong22368022013-01-13 23:44:12 +08007935 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08007936
7937 return true;
7938}
7939
Gleb Natapov716d51a2012-09-03 15:24:26 +03007940static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
7941static int complete_emulated_pio(struct kvm_vcpu *vcpu);
7942
Sean Christophersondc872752021-06-09 11:56:15 -07007943static void kvm_smm_changed(struct kvm_vcpu *vcpu, bool entering_smm)
Paolo Bonzinia5845392015-04-01 18:18:53 +02007944{
Sean Christopherson1270e642021-06-09 11:56:17 -07007945 trace_kvm_smm_transition(vcpu->vcpu_id, vcpu->arch.smbase, entering_smm);
Sean Christopherson0d7ee6f2021-06-09 11:56:16 -07007946
Sean Christophersondc872752021-06-09 11:56:15 -07007947 if (entering_smm) {
7948 vcpu->arch.hflags |= HF_SMM_MASK;
7949 } else {
7950 vcpu->arch.hflags &= ~(HF_SMM_MASK | HF_SMM_INSIDE_NMI_MASK);
7951
Paolo Bonzinic43203c2016-06-01 22:26:00 +02007952 /* Process a latched INIT or SMI, if any. */
7953 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitsky37687c42021-09-13 17:09:50 +03007954
7955 /*
7956 * Even if KVM_SET_SREGS2 loaded PDPTRs out of band,
7957 * on SMM exit we still need to reload them from
7958 * guest memory
7959 */
7960 vcpu->arch.pdptrs_from_userspace = false;
Paolo Bonzini64d60672015-05-07 11:36:11 +02007961 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02007962
7963 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02007964}
7965
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02007966static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
7967 unsigned long *db)
7968{
7969 u32 dr6 = 0;
7970 int i;
7971 u32 enable, rwlen;
7972
7973 enable = dr7;
7974 rwlen = dr7 >> 16;
7975 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
7976 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
7977 dr6 |= (1 << i);
7978 return dr6;
7979}
7980
Sean Christopherson120c2c42019-08-27 14:40:29 -07007981static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007982{
7983 struct kvm_run *kvm_run = vcpu->run;
7984
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007985 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08007986 kvm_run->debug.arch.dr6 = DR6_BS | DR6_ACTIVE_LOW;
Peter Xud5d260c2020-05-05 16:49:59 -04007987 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02007988 kvm_run->debug.arch.exception = DB_VECTOR;
7989 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007990 return 0;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007991 }
Sean Christopherson120c2c42019-08-27 14:40:29 -07007992 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07007993 return 1;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02007994}
7995
Kyle Huey6affcbe2016-11-29 12:40:40 -08007996int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
7997{
Jason Baronb36464772021-01-14 22:27:56 -05007998 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02007999 int r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08008000
Jason Baronb36464772021-01-14 22:27:56 -05008001 r = static_call(kvm_x86_skip_emulated_instruction)(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008002 if (unlikely(!r))
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02008003 return 0;
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02008004
8005 /*
8006 * rflags is the old, "raw" value of the flags. The new value has
8007 * not been saved yet.
8008 *
8009 * This is correct even for TF set by the guest, because "the
8010 * processor will not generate this exception after the instruction
8011 * that sets the TF flag".
8012 */
8013 if (unlikely(rflags & X86_EFLAGS_TF))
Sean Christopherson120c2c42019-08-27 14:40:29 -07008014 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008015 return r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08008016}
8017EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
8018
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008019static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
8020{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008021 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
8022 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02008023 struct kvm_run *kvm_run = vcpu->run;
8024 unsigned long eip = kvm_get_linear_rip(vcpu);
8025 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008026 vcpu->arch.guest_debug_dr7,
8027 vcpu->arch.eff_db);
8028
8029 if (dr6 != 0) {
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +08008030 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
Nadav Amit82b32772014-11-02 11:54:45 +02008031 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008032 kvm_run->debug.arch.exception = DB_VECTOR;
8033 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008034 *r = 0;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008035 return true;
8036 }
8037 }
8038
Nadav Amit4161a562014-07-17 01:19:31 +03008039 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
8040 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02008041 unsigned long eip = kvm_get_linear_rip(vcpu);
8042 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008043 vcpu->arch.dr7,
8044 vcpu->arch.db);
8045
8046 if (dr6 != 0) {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04008047 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008048 *r = 1;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008049 return true;
8050 }
8051 }
8052
8053 return false;
8054}
8055
Liran Alon04789b62018-03-12 13:12:50 +02008056static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt)
8057{
Arbel Moshe2d7921c2018-03-12 13:12:53 +02008058 switch (ctxt->opcode_len) {
8059 case 1:
8060 switch (ctxt->b) {
8061 case 0xe4: /* IN */
8062 case 0xe5:
8063 case 0xec:
8064 case 0xed:
8065 case 0xe6: /* OUT */
8066 case 0xe7:
8067 case 0xee:
8068 case 0xef:
8069 case 0x6c: /* INS */
8070 case 0x6d:
8071 case 0x6e: /* OUTS */
8072 case 0x6f:
8073 return true;
8074 }
8075 break;
8076 case 2:
8077 switch (ctxt->b) {
8078 case 0x33: /* RDPMC */
8079 return true;
8080 }
8081 break;
Liran Alon04789b62018-03-12 13:12:50 +02008082 }
8083
8084 return false;
8085}
8086
Wei Huang4aa26912021-01-26 03:18:28 -05008087/*
8088 * Decode to be emulated instruction. Return EMULATION_OK if success.
8089 */
8090int x86_decode_emulated_instruction(struct kvm_vcpu *vcpu, int emulation_type,
8091 void *insn, int insn_len)
8092{
8093 int r = EMULATION_OK;
8094 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
8095
8096 init_emulate_ctxt(vcpu);
8097
8098 /*
8099 * We will reenter on the same instruction since we do not set
8100 * complete_userspace_io. This does not handle watchpoints yet,
8101 * those would be handled in the emulate_ops.
8102 */
8103 if (!(emulation_type & EMULTYPE_SKIP) &&
8104 kvm_vcpu_check_breakpoint(vcpu, &r))
8105 return r;
8106
Wanpeng Lib35491e2021-05-27 17:01:37 -07008107 r = x86_decode_insn(ctxt, insn, insn_len, emulation_type);
Wei Huang4aa26912021-01-26 03:18:28 -05008108
8109 trace_kvm_emulate_insn_start(vcpu);
8110 ++vcpu->stat.insn_emulation;
8111
8112 return r;
8113}
8114EXPORT_SYMBOL_GPL(x86_decode_emulated_instruction);
8115
Sean Christopherson736c2912019-12-06 15:57:14 -08008116int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
8117 int emulation_type, void *insn, int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01008118{
Gleb Natapov95cb2292010-04-28 19:15:43 +03008119 int r;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008120 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008121 bool writeback = true;
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008122 bool write_fault_to_spt;
8123
Jason Baronb36464772021-01-14 22:27:56 -05008124 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, insn, insn_len)))
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008125 return 1;
Carsten Ottebbd9b642007-10-30 18:44:21 +01008126
Paolo Bonzinic595cee2018-07-02 13:07:14 +02008127 vcpu->arch.l1tf_flush_l1d = true;
8128
Xiao Guangrong93c05d32013-01-13 23:49:07 +08008129 /*
8130 * Clear write_fault_to_shadow_pgtable here to ensure it is
8131 * never reused.
8132 */
Sean Christopherson09e3e2a2020-09-15 16:27:02 -07008133 write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08008134 vcpu->arch.write_fault_to_shadow_pgtable = false;
Gleb Natapov8d7d81022011-04-12 12:36:21 +03008135
Sheng Yang571008d2008-01-02 14:49:22 +08008136 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Wei Huang4aa26912021-01-26 03:18:28 -05008137 kvm_clear_exception_queue(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02008138
Wei Huang4aa26912021-01-26 03:18:28 -05008139 r = x86_decode_emulated_instruction(vcpu, emulation_type,
8140 insn, insn_len);
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09008141 if (r != EMULATION_OK) {
Sean Christophersonb4000602019-08-27 14:40:32 -07008142 if ((emulation_type & EMULTYPE_TRAP_UD) ||
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07008143 (emulation_type & EMULTYPE_TRAP_UD_FORCED)) {
8144 kvm_queue_exception(vcpu, UD_VECTOR);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008145 return 1;
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07008146 }
Sean Christopherson736c2912019-12-06 15:57:14 -08008147 if (reexecute_instruction(vcpu, cr2_or_gpa,
8148 write_fault_to_spt,
8149 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008150 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00008151 if (ctxt->have_exception) {
Jan Dakinevichc8848ce2019-08-27 13:07:08 +00008152 /*
8153 * #UD should result in just EMULATION_FAILED, and trap-like
8154 * exception should not be encountered during decode.
8155 */
8156 WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR ||
8157 exception_type(ctxt->exception.vector) == EXCPT_TRAP);
Jan Dakinevich8530a792019-08-27 13:07:09 +00008158 inject_emulated_exception(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008159 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00008160 }
Liran Alone2366172018-03-12 13:12:49 +02008161 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008162 }
8163 }
8164
Sean Christopherson42cbf062019-08-27 14:40:31 -07008165 if ((emulation_type & EMULTYPE_VMWARE_GP) &&
8166 !is_vmware_backdoor_opcode(ctxt)) {
8167 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008168 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07008169 }
Liran Alon04789b62018-03-12 13:12:50 +02008170
Sean Christopherson1957aa62019-08-27 14:40:39 -07008171 /*
8172 * Note, EMULTYPE_SKIP is intended for use *only* by vendor callbacks
8173 * for kvm_skip_emulated_instruction(). The caller is responsible for
8174 * updating interruptibility state and injecting single-step #DBs.
8175 */
Gleb Natapovba8afb62009-04-12 13:36:57 +03008176 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03008177 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03008178 if (ctxt->eflags & X86_EFLAGS_RF)
8179 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008180 return 1;
Gleb Natapovba8afb62009-04-12 13:36:57 +03008181 }
8182
Sean Christopherson736c2912019-12-06 15:57:14 -08008183 if (retry_instruction(ctxt, cr2_or_gpa, emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008184 return 1;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08008185
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008186 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03008187 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008188 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
8189 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03008190 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008191 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03008192
Gleb Natapov5cd21912010-03-18 15:20:26 +02008193restart:
Sean Christopherson92daa482020-02-18 15:03:08 -08008194 if (emulation_type & EMULTYPE_PF) {
8195 /* Save the faulting GPA (cr2) in the address field */
8196 ctxt->exception.address = cr2_or_gpa;
8197
8198 /* With shadow page tables, cr2 contains a GVA or nGPA. */
8199 if (vcpu->arch.mmu->direct_map) {
Sean Christopherson744e6992020-02-18 15:03:09 -08008200 ctxt->gpa_available = true;
8201 ctxt->gpa_val = cr2_or_gpa;
Sean Christopherson92daa482020-02-18 15:03:08 -08008202 }
8203 } else {
8204 /* Sanitize the address out of an abundance of paranoia. */
8205 ctxt->exception.address = 0;
8206 }
Tom Lendacky0f89b202016-12-14 14:59:23 -05008207
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008208 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03008209
Joerg Roedel775fde82011-04-04 12:39:24 +02008210 if (r == EMULATION_INTERCEPTED)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008211 return 1;
Joerg Roedel775fde82011-04-04 12:39:24 +02008212
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008213 if (r == EMULATION_FAILED) {
Sean Christopherson736c2912019-12-06 15:57:14 -08008214 if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt,
Gleb Natapov991eebf2013-04-11 12:10:51 +03008215 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008216 return 1;
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03008217
Liran Alone2366172018-03-12 13:12:49 +02008218 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008219 }
8220
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008221 if (ctxt->have_exception) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008222 r = 1;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02008223 if (inject_emulated_exception(vcpu))
8224 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008225 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02008226 if (!vcpu->arch.pio.in) {
8227 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03008228 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02008229 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008230 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008231 vcpu->arch.complete_userspace_io = complete_emulated_pio;
8232 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008233 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008234 } else if (vcpu->mmio_needed) {
Sean Christophersonbc8a0aa2019-08-27 14:40:27 -07008235 ++vcpu->stat.mmio_exits;
8236
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008237 if (!vcpu->mmio_is_write)
8238 writeback = false;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008239 r = 0;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008240 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008241 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03008242 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03008243 else
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008244 r = 1;
Gleb Natapove85d28f2010-07-29 15:11:52 +03008245
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008246 if (writeback) {
Jason Baronb36464772021-01-14 22:27:56 -05008247 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09008248 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008249 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Nadav Amit38827db2014-11-02 11:54:53 +02008250 if (!ctxt->have_exception ||
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008251 exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
8252 kvm_rip_write(vcpu, ctxt->eip);
Felipe Franciosi384dea12020-05-19 08:11:22 +00008253 if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)))
Sean Christopherson120c2c42019-08-27 14:40:29 -07008254 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008255 if (kvm_x86_ops.update_emulated_instruction)
Jason Baronb36464772021-01-14 22:27:56 -05008256 static_call(kvm_x86_update_emulated_instruction)(vcpu);
Nadav Amit38827db2014-11-02 11:54:53 +02008257 __kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07008258 }
Paolo Bonzini6addfc42014-03-27 11:29:28 +01008259
8260 /*
8261 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
8262 * do nothing, and it will be requested again as soon as
8263 * the shadow expires. But we still need to check here,
8264 * because POPF has no interrupt shadow.
8265 */
8266 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
8267 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008268 } else
8269 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03008270
Gleb Natapove85d28f2010-07-29 15:11:52 +03008271 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01008272}
Sean Christophersonc60658d2018-08-23 13:56:53 -07008273
8274int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type)
8275{
8276 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
8277}
8278EXPORT_SYMBOL_GPL(kvm_emulate_instruction);
8279
8280int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
8281 void *insn, int insn_len)
8282{
8283 return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len);
8284}
8285EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer);
Carsten Ottebbd9b642007-10-30 18:44:21 +01008286
Sean Christopherson8764ed52019-04-29 07:04:15 -07008287static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu)
8288{
8289 vcpu->arch.pio.count = 0;
8290 return 1;
8291}
8292
Sean Christopherson45def772019-03-11 20:01:05 -07008293static int complete_fast_pio_out(struct kvm_vcpu *vcpu)
8294{
8295 vcpu->arch.pio.count = 0;
8296
8297 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip)))
8298 return 1;
8299
8300 return kvm_skip_emulated_instruction(vcpu);
8301}
8302
Sean Christophersondca7f122018-03-08 08:57:27 -08008303static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size,
8304 unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01008305{
Sean Christophersonde3cd112019-04-30 10:36:17 -07008306 unsigned long val = kvm_rax_read(vcpu);
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008307 int ret = emulator_pio_out(vcpu, size, port, &val, 1);
8308
Sean Christopherson8764ed52019-04-29 07:04:15 -07008309 if (ret)
8310 return ret;
Sean Christopherson45def772019-03-11 20:01:05 -07008311
Sean Christopherson8764ed52019-04-29 07:04:15 -07008312 /*
8313 * Workaround userspace that relies on old KVM behavior of %rip being
8314 * incremented prior to exiting to userspace to handle "OUT 0x7e".
8315 */
8316 if (port == 0x7e &&
8317 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) {
8318 vcpu->arch.complete_userspace_io =
8319 complete_fast_pio_out_port_0x7e;
8320 kvm_skip_emulated_instruction(vcpu);
8321 } else {
Sean Christopherson45def772019-03-11 20:01:05 -07008322 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
8323 vcpu->arch.complete_userspace_io = complete_fast_pio_out;
8324 }
Sean Christopherson8764ed52019-04-29 07:04:15 -07008325 return 0;
Carsten Ottede7d7892007-10-30 18:44:25 +01008326}
Carsten Ottede7d7892007-10-30 18:44:25 +01008327
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008328static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
8329{
8330 unsigned long val;
8331
8332 /* We should only ever be called with arch.pio.count equal to 1 */
8333 BUG_ON(vcpu->arch.pio.count != 1);
8334
Sean Christopherson45def772019-03-11 20:01:05 -07008335 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) {
8336 vcpu->arch.pio.count = 0;
8337 return 1;
8338 }
8339
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008340 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008341 val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008342
8343 /*
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008344 * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008345 * the copy and tracing
8346 */
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008347 emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1);
Sean Christophersonde3cd112019-04-30 10:36:17 -07008348 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008349
Sean Christopherson45def772019-03-11 20:01:05 -07008350 return kvm_skip_emulated_instruction(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008351}
8352
Sean Christophersondca7f122018-03-08 08:57:27 -08008353static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size,
8354 unsigned short port)
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008355{
8356 unsigned long val;
8357 int ret;
8358
8359 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07008360 val = (size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008361
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08008362 ret = emulator_pio_in(vcpu, size, port, &val, 1);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008363 if (ret) {
Sean Christophersonde3cd112019-04-30 10:36:17 -07008364 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008365 return ret;
8366 }
8367
Sean Christopherson45def772019-03-11 20:01:05 -07008368 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008369 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
8370
8371 return 0;
8372}
Sean Christophersondca7f122018-03-08 08:57:27 -08008373
8374int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in)
8375{
Sean Christopherson45def772019-03-11 20:01:05 -07008376 int ret;
Sean Christophersondca7f122018-03-08 08:57:27 -08008377
Sean Christophersondca7f122018-03-08 08:57:27 -08008378 if (in)
Sean Christopherson45def772019-03-11 20:01:05 -07008379 ret = kvm_fast_pio_in(vcpu, size, port);
Sean Christophersondca7f122018-03-08 08:57:27 -08008380 else
Sean Christopherson45def772019-03-11 20:01:05 -07008381 ret = kvm_fast_pio_out(vcpu, size, port);
8382 return ret && kvm_skip_emulated_instruction(vcpu);
Sean Christophersondca7f122018-03-08 08:57:27 -08008383}
8384EXPORT_SYMBOL_GPL(kvm_fast_pio);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05008385
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008386static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008387{
Tejun Heo0a3aee02010-12-18 16:28:55 +01008388 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008389 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008390}
8391
8392static void tsc_khz_changed(void *data)
8393{
8394 struct cpufreq_freqs *freq = data;
8395 unsigned long khz = 0;
8396
8397 if (data)
8398 khz = freq->new;
8399 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8400 khz = cpufreq_quick_get(raw_smp_processor_id());
8401 if (!khz)
8402 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01008403 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008404}
8405
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008406#ifdef CONFIG_X86_64
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008407static void kvm_hyperv_tsc_notifier(void)
8408{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008409 struct kvm *kvm;
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008410 int cpu;
8411
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008412 mutex_lock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008413 list_for_each_entry(kvm, &vm_list, vm_list)
8414 kvm_make_mclock_inprogress_request(kvm);
8415
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008416 /* no guest entries from this point */
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008417 hyperv_stop_tsc_emulation();
8418
8419 /* TSC frequency always matches when on Hyper-V */
8420 for_each_present_cpu(cpu)
8421 per_cpu(cpu_tsc_khz, cpu) = tsc_khz;
8422 kvm_max_guest_tsc_khz = tsc_khz;
8423
8424 list_for_each_entry(kvm, &vm_list, vm_list) {
Paolo Bonzini869b4422021-09-16 18:15:36 +00008425 __kvm_start_pvclock_update(kvm);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008426 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008427 kvm_end_pvclock_update(kvm);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008428 }
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00008429
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008430 mutex_unlock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008431}
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008432#endif
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008433
Viresh Kumardf240142019-04-29 15:03:58 +05308434static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008435{
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008436 struct kvm *kvm;
8437 struct kvm_vcpu *vcpu;
8438 int i, send_ipi = 0;
8439
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008440 /*
8441 * We allow guests to temporarily run on slowing clocks,
8442 * provided we notify them after, or to run on accelerating
8443 * clocks, provided we notify them before. Thus time never
8444 * goes backwards.
8445 *
8446 * However, we have a problem. We can't atomically update
8447 * the frequency of a given CPU from this function; it is
8448 * merely a notifier, which can be called from any CPU.
8449 * Changing the TSC frequency at arbitrary points in time
8450 * requires a recomputation of local variables related to
8451 * the TSC for each VCPU. We must flag these local variables
8452 * to be updated and be sure the update takes place with the
8453 * new frequency before any guests proceed.
8454 *
8455 * Unfortunately, the combination of hotplug CPU and frequency
8456 * change creates an intractable locking scenario; the order
8457 * of when these callouts happen is undefined with respect to
8458 * CPU hotplug, and they can race with each other. As such,
8459 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
8460 * undefined; you can actually have a CPU frequency change take
8461 * place in between the computation of X and the setting of the
8462 * variable. To protect against this problem, all updates of
8463 * the per_cpu tsc_khz variable are done in an interrupt
8464 * protected IPI, and all callers wishing to update the value
8465 * must wait for a synchronous IPI to complete (which is trivial
8466 * if the caller is on the CPU already). This establishes the
8467 * necessary total order on variable updates.
8468 *
8469 * Note that because a guest time update may take place
8470 * anytime after the setting of the VCPU's request bit, the
8471 * correct TSC value must be set before the request. However,
8472 * to ensure the update actually makes it to any guest which
8473 * starts running in hardware virtualization between the set
8474 * and the acquisition of the spinlock, we must also ping the
8475 * CPU after setting the request bit.
8476 *
8477 */
8478
Viresh Kumardf240142019-04-29 15:03:58 +05308479 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008480
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008481 mutex_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008482 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03008483 kvm_for_each_vcpu(i, vcpu, kvm) {
Viresh Kumardf240142019-04-29 15:03:58 +05308484 if (vcpu->cpu != cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008485 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10008486 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008487 if (vcpu->cpu != raw_smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008488 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008489 }
8490 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008491 mutex_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008492
8493 if (freq->old < freq->new && send_ipi) {
8494 /*
8495 * We upscale the frequency. Must make the guest
8496 * doesn't see old kvmclock values while running with
8497 * the new frequency, otherwise we risk the guest sees
8498 * time go backwards.
8499 *
8500 * In case we update the frequency for another cpu
8501 * (which might be in guest context) send an interrupt
8502 * to kick the cpu out of guest context. Next time
8503 * guest context is entered kvmclock will be updated,
8504 * so the guest will not see stale values.
8505 */
Viresh Kumardf240142019-04-29 15:03:58 +05308506 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008507 }
Viresh Kumardf240142019-04-29 15:03:58 +05308508}
8509
8510static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
8511 void *data)
8512{
8513 struct cpufreq_freqs *freq = data;
8514 int cpu;
8515
8516 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
8517 return 0;
8518 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
8519 return 0;
8520
8521 for_each_cpu(cpu, freq->policy->cpus)
8522 __kvmclock_cpufreq_notifier(freq, cpu);
8523
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008524 return 0;
8525}
8526
8527static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008528 .notifier_call = kvmclock_cpufreq_notifier
8529};
8530
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008531static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008532{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008533 tsc_khz_changed(NULL);
8534 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008535}
8536
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008537static void kvm_timer_init(void)
8538{
Zachary Amsdenc2855452010-09-18 14:38:15 -10008539 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308540
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008541 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10008542#ifdef CONFIG_CPU_FREQ
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008543 struct cpufreq_policy *policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02008544 int cpu;
8545
Avi Kivity3e26f232010-12-16 12:16:34 +02008546 cpu = get_cpu();
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01008547 policy = cpufreq_cpu_get(cpu);
Wanpeng Li9a119972020-03-02 15:15:36 +08008548 if (policy) {
8549 if (policy->cpuinfo.max_freq)
8550 max_tsc_khz = policy->cpuinfo.max_freq;
8551 cpufreq_cpu_put(policy);
8552 }
Avi Kivity3e26f232010-12-16 12:16:34 +02008553 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10008554#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008555 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
8556 CPUFREQ_TRANSITION_NOTIFIER);
8557 }
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05308558
Thomas Gleixner73c1b412016-12-21 20:19:54 +01008559 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008560 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008561}
8562
Andi Kleendd60d212017-07-25 17:20:32 -07008563DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
8564EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008565
Gleb Natapovf5132b02011-11-10 14:57:22 +02008566int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008567{
Alex,Shi086c9852011-10-20 15:34:01 +08008568 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008569}
8570
8571static int kvm_is_user_mode(void)
8572{
8573 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008574
Alex,Shi086c9852011-10-20 15:34:01 +08008575 if (__this_cpu_read(current_vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05008576 user_mode = static_call(kvm_x86_get_cpl)(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008577
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008578 return user_mode != 0;
8579}
8580
8581static unsigned long kvm_get_guest_ip(void)
8582{
8583 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008584
Alex,Shi086c9852011-10-20 15:34:01 +08008585 if (__this_cpu_read(current_vcpu))
8586 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08008587
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008588 return ip;
8589}
8590
Luwei Kang8479e042019-02-18 19:26:07 -05008591static void kvm_handle_intel_pt_intr(void)
8592{
8593 struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu);
8594
8595 kvm_make_request(KVM_REQ_PMI, vcpu);
8596 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
8597 (unsigned long *)&vcpu->arch.pmu.global_status);
8598}
8599
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008600static struct perf_guest_info_callbacks kvm_guest_cbs = {
8601 .is_in_guest = kvm_is_in_guest,
8602 .is_user_mode = kvm_is_user_mode,
8603 .get_guest_ip = kvm_get_guest_ip,
Luwei Kang8479e042019-02-18 19:26:07 -05008604 .handle_intel_pt_intr = kvm_handle_intel_pt_intr,
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008605};
8606
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008607#ifdef CONFIG_X86_64
8608static void pvclock_gtod_update_fn(struct work_struct *work)
8609{
Marcelo Tosattid8281992012-11-27 23:29:01 -02008610 struct kvm *kvm;
8611
8612 struct kvm_vcpu *vcpu;
8613 int i;
8614
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008615 mutex_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008616 list_for_each_entry(kvm, &vm_list, vm_list)
8617 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08008618 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008619 atomic_set(&kvm_guest_has_master_clock, 0);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08008620 mutex_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008621}
8622
8623static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
8624
8625/*
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008626 * Indirection to move queue_work() out of the tk_core.seq write held
8627 * region to prevent possible deadlocks against time accessors which
8628 * are invoked with work related locks held.
8629 */
8630static void pvclock_irq_work_fn(struct irq_work *w)
8631{
8632 queue_work(system_long_wq, &pvclock_gtod_work);
8633}
8634
8635static DEFINE_IRQ_WORK(pvclock_irq_work, pvclock_irq_work_fn);
8636
8637/*
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008638 * Notification about pvclock gtod data update.
8639 */
8640static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
8641 void *priv)
8642{
8643 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
8644 struct timekeeper *tk = priv;
8645
8646 update_pvclock_gtod(tk);
8647
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008648 /*
8649 * Disable master clock if host does not trust, or does not use,
8650 * TSC based clocksource. Delegate queue_work() to irq_work as
8651 * this is invoked with tk_core.seq write held.
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008652 */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01008653 if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) &&
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008654 atomic_read(&kvm_guest_has_master_clock) != 0)
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008655 irq_work_queue(&pvclock_irq_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008656 return 0;
8657}
8658
8659static struct notifier_block pvclock_gtod_notifier = {
8660 .notifier_call = pvclock_gtod_notify,
8661};
8662#endif
8663
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008664int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02008665{
Sean Christophersond008dfd2020-03-21 13:25:56 -07008666 struct kvm_x86_init_ops *ops = opaque;
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008667 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008668
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008669 if (kvm_x86_ops.hardware_enable) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008670 pr_err("kvm: already loaded vendor module '%s'\n", kvm_x86_ops.name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008671 r = -EEXIST;
8672 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008673 }
8674
8675 if (!ops->cpu_has_kvm_support()) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008676 pr_err_ratelimited("kvm: no hardware support for '%s'\n",
8677 ops->runtime_ops->name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008678 r = -EOPNOTSUPP;
8679 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008680 }
8681 if (ops->disabled_by_bios()) {
Sean Christopherson9dadfc42021-10-18 11:39:28 -07008682 pr_err_ratelimited("kvm: support for '%s' disabled by bios\n",
8683 ops->runtime_ops->name);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008684 r = -EOPNOTSUPP;
8685 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008686 }
8687
Marc Orrb666a4b2018-11-06 14:53:56 -08008688 /*
8689 * KVM explicitly assumes that the guest has an FPU and
8690 * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the
8691 * vCPU's FPU state as a fxregs_state struct.
8692 */
8693 if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) {
8694 printk(KERN_ERR "kvm: inadequate fpu\n");
8695 r = -EOPNOTSUPP;
8696 goto out;
8697 }
8698
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008699 r = -ENOMEM;
Paolo Bonzinied8e4812018-12-21 11:25:59 +01008700 x86_fpu_cache = kmem_cache_create("x86_fpu", sizeof(struct fpu),
Marc Orrb666a4b2018-11-06 14:53:56 -08008701 __alignof__(struct fpu), SLAB_ACCOUNT,
8702 NULL);
8703 if (!x86_fpu_cache) {
8704 printk(KERN_ERR "kvm: failed to allocate cache for x86 fpu\n");
8705 goto out;
8706 }
8707
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008708 x86_emulator_cache = kvm_alloc_emulator_cache();
8709 if (!x86_emulator_cache) {
8710 pr_err("kvm: failed to allocate cache for x86 emulator\n");
8711 goto out_free_x86_fpu_cache;
8712 }
8713
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008714 user_return_msrs = alloc_percpu(struct kvm_user_return_msrs);
8715 if (!user_return_msrs) {
8716 printk(KERN_ERR "kvm: failed to allocate percpu kvm_user_return_msrs\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008717 goto out_free_x86_emulator_cache;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008718 }
Sean Christophersone5fda4b2021-05-04 10:17:32 -07008719 kvm_nr_uret_msrs = 0;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008720
Avi Kivity97db56c2008-01-13 13:23:56 +02008721 r = kvm_mmu_module_init();
8722 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008723 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02008724
Zachary Amsdenb820cc02009-09-29 11:38:34 -10008725 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01008726
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008727 perf_register_guest_info_callbacks(&kvm_guest_cbs);
8728
Sean Christophersoncfc48182020-03-02 15:56:23 -08008729 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +08008730 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
Sean Christophersoncfc48182020-03-02 15:56:23 -08008731 supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0;
8732 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08008733
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08008734 if (pi_inject_timer == -1)
8735 pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008736#ifdef CONFIG_X86_64
8737 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008738
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008739 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008740 set_hv_tscchange_cb(kvm_hyperv_tsc_notifier);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008741#endif
8742
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008743 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008744
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02008745out_free_percpu:
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008746 free_percpu(user_return_msrs);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008747out_free_x86_emulator_cache:
8748 kmem_cache_destroy(x86_emulator_cache);
Marc Orrb666a4b2018-11-06 14:53:56 -08008749out_free_x86_fpu_cache:
8750 kmem_cache_destroy(x86_fpu_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008751out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008752 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02008753}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008754
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008755void kvm_arch_exit(void)
8756{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008757#ifdef CONFIG_X86_64
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01008758 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01008759 clear_hv_tscchange_cb();
8760#endif
David Matlackcef84c32016-12-16 14:30:36 -08008761 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08008762 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
8763
Jan Kiszka888d2562009-04-17 19:24:58 +02008764 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8765 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
8766 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00008767 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008768#ifdef CONFIG_X86_64
8769 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
Thomas Gleixner3f804f62021-05-06 15:21:37 +02008770 irq_work_sync(&pvclock_irq_work);
Thomas Gleixner594b27e2021-05-05 23:48:17 +02008771 cancel_work_sync(&pvclock_gtod_work);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02008772#endif
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008773 kvm_x86_ops.hardware_enable = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008774 kvm_mmu_module_exit();
Sean Christopherson7e34fbd2020-09-23 11:03:55 -07008775 free_percpu(user_return_msrs);
Wanpeng Lidfdc0a72021-06-10 21:59:33 -07008776 kmem_cache_destroy(x86_emulator_cache);
Marc Orrb666a4b2018-11-06 14:53:56 -08008777 kmem_cache_destroy(x86_fpu_cache);
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008778#ifdef CONFIG_KVM_XEN
Paolo Bonzinic462f852021-02-26 04:49:06 -05008779 static_key_deferred_flush(&kvm_xen_enabled);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +00008780 WARN_ON(static_branch_unlikely(&kvm_xen_enabled.key));
Paolo Bonzinib59b1532021-02-26 04:54:45 -05008781#endif
Zhang Xiantao56c6d282007-11-18 20:43:21 +08008782}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08008783
Paolo Bonzini872f36e2021-01-08 05:54:44 -05008784static int __kvm_vcpu_halt(struct kvm_vcpu *vcpu, int state, int reason)
Hollis Blanchard8776e512007-10-31 17:24:24 -05008785{
8786 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02008787 if (lapic_in_kernel(vcpu)) {
Tom Lendacky647daca2021-01-04 14:20:01 -06008788 vcpu->arch.mp_state = state;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008789 return 1;
8790 } else {
Tom Lendacky647daca2021-01-04 14:20:01 -06008791 vcpu->run->exit_reason = reason;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008792 return 0;
8793 }
8794}
Tom Lendacky647daca2021-01-04 14:20:01 -06008795
8796int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
8797{
8798 return __kvm_vcpu_halt(vcpu, KVM_MP_STATE_HALTED, KVM_EXIT_HLT);
8799}
Joel Schopp5cb56052015-03-02 13:43:31 -06008800EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
8801
8802int kvm_emulate_halt(struct kvm_vcpu *vcpu)
8803{
Kyle Huey6affcbe2016-11-29 12:40:40 -08008804 int ret = kvm_skip_emulated_instruction(vcpu);
8805 /*
8806 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
8807 * KVM_EXIT_DEBUG here.
8808 */
8809 return kvm_vcpu_halt(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06008810}
Hollis Blanchard8776e512007-10-31 17:24:24 -05008811EXPORT_SYMBOL_GPL(kvm_emulate_halt);
8812
Tom Lendacky647daca2021-01-04 14:20:01 -06008813int kvm_emulate_ap_reset_hold(struct kvm_vcpu *vcpu)
8814{
8815 int ret = kvm_skip_emulated_instruction(vcpu);
8816
8817 return __kvm_vcpu_halt(vcpu, KVM_MP_STATE_AP_RESET_HOLD, KVM_EXIT_AP_RESET_HOLD) && ret;
8818}
8819EXPORT_SYMBOL_GPL(kvm_emulate_ap_reset_hold);
8820
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008821#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008822static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
8823 unsigned long clock_type)
8824{
8825 struct kvm_clock_pairing clock_pairing;
Arnd Bergmann899a31f2018-04-23 10:04:26 +02008826 struct timespec64 ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01008827 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008828 int ret;
8829
8830 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
8831 return -KVM_EOPNOTSUPP;
8832
YANG LI7ca7f3b2021-01-11 17:32:58 +08008833 if (!kvm_get_walltime_and_clockread(&ts, &cycle))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008834 return -KVM_EOPNOTSUPP;
8835
8836 clock_pairing.sec = ts.tv_sec;
8837 clock_pairing.nsec = ts.tv_nsec;
8838 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
8839 clock_pairing.flags = 0;
Liran Alonbcbfbd82018-11-08 00:43:06 +02008840 memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008841
8842 ret = 0;
8843 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
8844 sizeof(struct kvm_clock_pairing)))
8845 ret = -KVM_EFAULT;
8846
8847 return ret;
8848}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008849#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008850
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308851/*
8852 * kvm_pv_kick_cpu_op: Kick a vcpu.
8853 *
8854 * @apicid - apicid of vcpu to be kicked.
8855 */
8856static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
8857{
Raghavendra K T24d21662013-08-26 14:18:35 +05308858 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308859
Peter Xu150a84f2019-12-04 20:07:21 +01008860 lapic_irq.shorthand = APIC_DEST_NOSHORT;
Peter Xuc96001c2019-12-04 20:07:18 +01008861 lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
Longpeng(Mike)ebd28fc2017-08-02 11:20:51 +08008862 lapic_irq.level = 0;
Raghavendra K T24d21662013-08-26 14:18:35 +05308863 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06008864 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308865
Raghavendra K T24d21662013-08-26 14:18:35 +05308866 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08008867 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308868}
8869
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008870bool kvm_apicv_activated(struct kvm *kvm)
8871{
8872 return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0);
8873}
8874EXPORT_SYMBOL_GPL(kvm_apicv_activated);
8875
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008876static void kvm_apicv_init(struct kvm *kvm)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008877{
Sean Christopherson187c8832021-10-21 17:49:27 -07008878 init_rwsem(&kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03008879
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +02008880 if (enable_apicv)
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008881 clear_bit(APICV_INHIBIT_REASON_DISABLE,
8882 &kvm->arch.apicv_inhibit_reasons);
8883 else
8884 set_bit(APICV_INHIBIT_REASON_DISABLE,
8885 &kvm->arch.apicv_inhibit_reasons);
8886}
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06008887
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008888static void kvm_sched_yield(struct kvm_vcpu *vcpu, unsigned long dest_id)
Wanpeng Li71506292019-06-11 20:23:49 +08008889{
8890 struct kvm_vcpu *target = NULL;
8891 struct kvm_apic_map *map;
8892
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008893 vcpu->stat.directed_yield_attempted++;
8894
Wanpeng Li72b268a2021-05-18 05:00:32 -07008895 if (single_task_running())
8896 goto no_yield;
8897
Wanpeng Li71506292019-06-11 20:23:49 +08008898 rcu_read_lock();
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008899 map = rcu_dereference(vcpu->kvm->arch.apic_map);
Wanpeng Li71506292019-06-11 20:23:49 +08008900
8901 if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id])
8902 target = map->phys_map[dest_id]->vcpu;
8903
8904 rcu_read_unlock();
8905
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008906 if (!target || !READ_ONCE(target->ready))
8907 goto no_yield;
8908
Wanpeng Lia1fa4cb2021-04-09 12:18:31 +08008909 /* Ignore requests to yield to self */
8910 if (vcpu == target)
8911 goto no_yield;
8912
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008913 if (kvm_vcpu_yield_to(target) <= 0)
8914 goto no_yield;
8915
8916 vcpu->stat.directed_yield_successful++;
8917
8918no_yield:
8919 return;
Wanpeng Li71506292019-06-11 20:23:49 +08008920}
8921
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008922static int complete_hypercall_exit(struct kvm_vcpu *vcpu)
8923{
8924 u64 ret = vcpu->run->hypercall.ret;
8925
8926 if (!is_64_bit_mode(vcpu))
8927 ret = (u32)ret;
8928 kvm_rax_write(vcpu, ret);
8929 ++vcpu->stat.hypercalls;
8930 return kvm_skip_emulated_instruction(vcpu);
8931}
8932
Hollis Blanchard8776e512007-10-31 17:24:24 -05008933int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
8934{
8935 unsigned long nr, a0, a1, a2, a3, ret;
Marian Rotariu6356ee02018-04-30 12:23:01 +03008936 int op_64_bit;
Hollis Blanchard8776e512007-10-31 17:24:24 -05008937
Joao Martins23200b72018-06-13 09:55:44 -04008938 if (kvm_xen_hypercall_enabled(vcpu->kvm))
8939 return kvm_xen_hypercall(vcpu);
8940
Vitaly Kuznetsov8f014552021-01-26 14:48:14 +01008941 if (kvm_hv_hypercall_enabled(vcpu))
Radim Krčmář696ca772018-05-24 17:50:56 +02008942 return kvm_hv_hypercall(vcpu);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02008943
Sean Christophersonde3cd112019-04-30 10:36:17 -07008944 nr = kvm_rax_read(vcpu);
8945 a0 = kvm_rbx_read(vcpu);
8946 a1 = kvm_rcx_read(vcpu);
8947 a2 = kvm_rdx_read(vcpu);
8948 a3 = kvm_rsi_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05008949
Marcelo Tosatti229456f2009-06-17 09:22:14 -03008950 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04008951
Nadav Amita449c7a2014-06-18 17:19:24 +03008952 op_64_bit = is_64_bit_mode(vcpu);
8953 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05008954 nr &= 0xFFFFFFFF;
8955 a0 &= 0xFFFFFFFF;
8956 a1 &= 0xFFFFFFFF;
8957 a2 &= 0xFFFFFFFF;
8958 a3 &= 0xFFFFFFFF;
8959 }
8960
Jason Baronb36464772021-01-14 22:27:56 -05008961 if (static_call(kvm_x86_get_cpl)(vcpu) != 0) {
Jan Kiszka07708c42009-08-03 18:43:28 +02008962 ret = -KVM_EPERM;
Radim Krčmář696ca772018-05-24 17:50:56 +02008963 goto out;
Jan Kiszka07708c42009-08-03 18:43:28 +02008964 }
8965
Oliver Upton66570e92020-08-18 15:24:28 +00008966 ret = -KVM_ENOSYS;
8967
Hollis Blanchard8776e512007-10-31 17:24:24 -05008968 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02008969 case KVM_HC_VAPIC_POLL_IRQ:
8970 ret = 0;
8971 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308972 case KVM_HC_KICK_CPU:
Oliver Upton66570e92020-08-18 15:24:28 +00008973 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT))
8974 break;
8975
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308976 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008977 kvm_sched_yield(vcpu, a1);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308978 ret = 0;
8979 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01008980#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02008981 case KVM_HC_CLOCK_PAIRING:
8982 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
8983 break;
Sean Christopherson1ed199a2019-01-23 09:22:39 -08008984#endif
Wanpeng Li4180bf12018-07-23 14:39:54 +08008985 case KVM_HC_SEND_IPI:
Oliver Upton66570e92020-08-18 15:24:28 +00008986 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SEND_IPI))
8987 break;
8988
Wanpeng Li4180bf12018-07-23 14:39:54 +08008989 ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit);
8990 break;
Wanpeng Li71506292019-06-11 20:23:49 +08008991 case KVM_HC_SCHED_YIELD:
Oliver Upton66570e92020-08-18 15:24:28 +00008992 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SCHED_YIELD))
8993 break;
8994
Wanpeng Li4a7132e2021-04-09 12:18:30 +08008995 kvm_sched_yield(vcpu, a0);
Wanpeng Li71506292019-06-11 20:23:49 +08008996 ret = 0;
8997 break;
Ashish Kalra0dbb1122021-06-08 18:05:43 +00008998 case KVM_HC_MAP_GPA_RANGE: {
8999 u64 gpa = a0, npages = a1, attrs = a2;
9000
9001 ret = -KVM_ENOSYS;
9002 if (!(vcpu->kvm->arch.hypercall_exit_enabled & (1 << KVM_HC_MAP_GPA_RANGE)))
9003 break;
9004
9005 if (!PAGE_ALIGNED(gpa) || !npages ||
9006 gpa_to_gfn(gpa) + npages <= gpa_to_gfn(gpa)) {
9007 ret = -KVM_EINVAL;
9008 break;
9009 }
9010
9011 vcpu->run->exit_reason = KVM_EXIT_HYPERCALL;
9012 vcpu->run->hypercall.nr = KVM_HC_MAP_GPA_RANGE;
9013 vcpu->run->hypercall.args[0] = gpa;
9014 vcpu->run->hypercall.args[1] = npages;
9015 vcpu->run->hypercall.args[2] = attrs;
9016 vcpu->run->hypercall.longmode = op_64_bit;
9017 vcpu->arch.complete_userspace_io = complete_hypercall_exit;
9018 return 0;
9019 }
Hollis Blanchard8776e512007-10-31 17:24:24 -05009020 default:
9021 ret = -KVM_ENOSYS;
9022 break;
9023 }
Radim Krčmář696ca772018-05-24 17:50:56 +02009024out:
Nadav Amita449c7a2014-06-18 17:19:24 +03009025 if (!op_64_bit)
9026 ret = (u32)ret;
Sean Christophersonde3cd112019-04-30 10:36:17 -07009027 kvm_rax_write(vcpu, ret);
Marian Rotariu6356ee02018-04-30 12:23:01 +03009028
Amit Shahf11c3a82008-02-21 01:00:30 +05309029 ++vcpu->stat.hypercalls;
Marian Rotariu6356ee02018-04-30 12:23:01 +03009030 return kvm_skip_emulated_instruction(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009031}
9032EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
9033
Jan Kiszkab6785de2012-09-20 07:43:17 +02009034static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05009035{
Avi Kivityd6aa1002011-04-20 15:47:13 +03009036 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009037 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009038 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009039
Jason Baronb36464772021-01-14 22:27:56 -05009040 static_call(kvm_x86_patch_hypercall)(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009041
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01009042 return emulator_write_emulated(ctxt, rip, instruction, 3,
9043 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05009044}
9045
Avi Kivity851ba692009-08-24 11:10:17 +03009046static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009047{
Matt Gingell782d4222015-11-16 15:26:00 -08009048 return vcpu->run->request_interrupt_window &&
9049 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009050}
9051
Avi Kivity851ba692009-08-24 11:10:17 +03009052static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009053{
Avi Kivity851ba692009-08-24 11:10:17 +03009054 struct kvm_run *kvm_run = vcpu->run;
9055
Tom Lendackyf1c63662020-12-14 10:29:50 -05009056 /*
9057 * if_flag is obsolete and useless, so do not bother
9058 * setting it for SEV-ES guests. Userspace can just
9059 * use kvm_run->ready_for_interrupt_injection.
9060 */
9061 kvm_run->if_flag = !vcpu->arch.guest_state_protected
9062 && (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
9063
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02009064 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009065 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01009066 kvm_run->ready_for_interrupt_injection =
9067 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08009068 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +08009069
9070 if (is_smm(vcpu))
9071 kvm_run->flags |= KVM_RUN_X86_SMM;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009072}
9073
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009074static void update_cr8_intercept(struct kvm_vcpu *vcpu)
9075{
9076 int max_irr, tpr;
9077
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009078 if (!kvm_x86_ops.update_cr8_intercept)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009079 return;
9080
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01009081 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03009082 return;
9083
Andrey Smetanind62caab2015-11-10 15:36:33 +03009084 if (vcpu->arch.apicv_active)
9085 return;
9086
Gleb Natapov8db3baa2009-05-11 13:35:54 +03009087 if (!vcpu->arch.apic->vapic_addr)
9088 max_irr = kvm_lapic_find_highest_irr(vcpu);
9089 else
9090 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009091
9092 if (max_irr != -1)
9093 max_irr >>= 4;
9094
9095 tpr = kvm_lapic_get_cr8(vcpu);
9096
Jason Baronb36464772021-01-14 22:27:56 -05009097 static_call(kvm_x86_update_cr8_intercept)(vcpu, tpr, max_irr);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009098}
9099
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009100
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009101int kvm_check_nested_events(struct kvm_vcpu *vcpu)
9102{
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009103 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
9104 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9105 return 1;
9106 }
9107
9108 return kvm_x86_ops.nested_ops->check_events(vcpu);
9109}
9110
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009111static void kvm_inject_exception(struct kvm_vcpu *vcpu)
9112{
9113 if (vcpu->arch.exception.error_code && !is_protmode(vcpu))
9114 vcpu->arch.exception.error_code = false;
9115 static_call(kvm_x86_queue_exception)(vcpu);
9116}
9117
Jim Mattsona5f69092021-06-04 10:26:03 -07009118static int inject_pending_event(struct kvm_vcpu *vcpu, bool *req_immediate_exit)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009119{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01009120 int r;
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009121 bool can_inject = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +01009122
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009123 /* try to reinject previous events if any */
Wanpeng Li664f8e22017-08-24 03:35:09 -07009124
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009125 if (vcpu->arch.exception.injected) {
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009126 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009127 can_inject = false;
9128 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07009129 /*
Liran Alona042c262018-03-23 03:01:32 +03009130 * Do not inject an NMI or interrupt if there is a pending
9131 * exception. Exceptions and interrupts are recognized at
9132 * instruction boundaries, i.e. the start of an instruction.
9133 * Trap-like exceptions, e.g. #DB, have higher priority than
9134 * NMIs and interrupts, i.e. traps are recognized before an
9135 * NMI/interrupt that's pending on the same instruction.
9136 * Fault-like exceptions, e.g. #GP and #PF, are the lowest
9137 * priority, but are only generated (pended) during instruction
9138 * execution, i.e. a pending fault-like exception means the
9139 * fault occurred on the *previous* instruction and must be
9140 * serviced prior to recognizing any new events in order to
9141 * fully complete the previous instruction.
Wanpeng Li664f8e22017-08-24 03:35:09 -07009142 */
Liran Alon1a680e32018-03-23 03:01:33 +03009143 else if (!vcpu->arch.exception.pending) {
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009144 if (vcpu->arch.nmi_injected) {
Jason Baronb36464772021-01-14 22:27:56 -05009145 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009146 can_inject = false;
9147 } else if (vcpu->arch.interrupt.injected) {
Jason Baronb36464772021-01-14 22:27:56 -05009148 static_call(kvm_x86_set_irq)(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009149 can_inject = false;
9150 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07009151 }
9152
Sean Christopherson3b82b8d2020-04-22 19:25:47 -07009153 WARN_ON_ONCE(vcpu->arch.exception.injected &&
9154 vcpu->arch.exception.pending);
9155
Liran Alon1a680e32018-03-23 03:01:33 +03009156 /*
9157 * Call check_nested_events() even if we reinjected a previous event
9158 * in order for caller to determine if it should require immediate-exit
9159 * from L2 to L1 due to pending L1 events which require exit
9160 * from L2 to L1.
9161 */
Paolo Bonzini56083bd2020-04-17 10:32:53 -04009162 if (is_guest_mode(vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009163 r = kvm_check_nested_events(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009164 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009165 goto out;
Wanpeng Li664f8e22017-08-24 03:35:09 -07009166 }
9167
9168 /* try to inject new event if pending */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03009169 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02009170 trace_kvm_inj_exception(vcpu->arch.exception.nr,
9171 vcpu->arch.exception.has_error_code,
9172 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03009173
Wanpeng Li664f8e22017-08-24 03:35:09 -07009174 vcpu->arch.exception.pending = false;
9175 vcpu->arch.exception.injected = true;
9176
Nadav Amitd6e8c852014-07-24 14:51:24 +03009177 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
9178 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
9179 X86_EFLAGS_RF);
9180
Jim Mattsonf10c7292018-10-16 14:29:23 -07009181 if (vcpu->arch.exception.nr == DB_VECTOR) {
Jim Mattsonf10c7292018-10-16 14:29:23 -07009182 kvm_deliver_exception_payload(vcpu);
9183 if (vcpu->arch.dr7 & DR7_GD) {
9184 vcpu->arch.dr7 &= ~DR7_GD;
9185 kvm_update_dr7(vcpu);
9186 }
Nadav Amit6bdf0662014-09-30 20:49:14 +03009187 }
9188
Maxim Levitskyb97f0742021-02-25 17:41:32 +02009189 kvm_inject_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04009190 can_inject = false;
Liran Alon1a680e32018-03-23 03:01:33 +03009191 }
9192
Maxim Levitsky61e5f692021-08-11 15:29:26 +03009193 /* Don't inject interrupts if the user asked to avoid doing so */
9194 if (vcpu->guest_debug & KVM_GUESTDBG_BLOCKIRQ)
9195 return 0;
9196
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009197 /*
9198 * Finally, inject interrupt events. If an event cannot be injected
9199 * due to architectural conditions (e.g. IF=0) a window-open exit
9200 * will re-request KVM_REQ_EVENT. Sometimes however an event is pending
9201 * and can architecturally be injected, but we cannot do it right now:
9202 * an interrupt could have arrived just now and we have to inject it
9203 * as a vmexit, or there could already an event in the queue, which is
9204 * indicated by can_inject. In that case we request an immediate exit
9205 * in order to make progress and get back here for another iteration.
9206 * The kvm_x86_ops hooks communicate this by returning -EBUSY.
9207 */
9208 if (vcpu->arch.smi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05009209 r = can_inject ? static_call(kvm_x86_smi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009210 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009211 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009212 if (r) {
9213 vcpu->arch.smi_pending = false;
9214 ++vcpu->arch.smi_count;
9215 enter_smm(vcpu);
9216 can_inject = false;
9217 } else
Jason Baronb36464772021-01-14 22:27:56 -05009218 static_call(kvm_x86_enable_smi_window)(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009219 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009220
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009221 if (vcpu->arch.nmi_pending) {
Jason Baronb36464772021-01-14 22:27:56 -05009222 r = can_inject ? static_call(kvm_x86_nmi_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009223 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009224 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009225 if (r) {
9226 --vcpu->arch.nmi_pending;
9227 vcpu->arch.nmi_injected = true;
Jason Baronb36464772021-01-14 22:27:56 -05009228 static_call(kvm_x86_set_nmi)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009229 can_inject = false;
Jason Baronb36464772021-01-14 22:27:56 -05009230 WARN_ON(static_call(kvm_x86_nmi_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009231 }
9232 if (vcpu->arch.nmi_pending)
Jason Baronb36464772021-01-14 22:27:56 -05009233 static_call(kvm_x86_enable_nmi_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009234 }
9235
9236 if (kvm_cpu_has_injectable_intr(vcpu)) {
Jason Baronb36464772021-01-14 22:27:56 -05009237 r = can_inject ? static_call(kvm_x86_interrupt_allowed)(vcpu, true) : -EBUSY;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009238 if (r < 0)
Jim Mattsona5f69092021-06-04 10:26:03 -07009239 goto out;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009240 if (r) {
9241 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), false);
Jason Baronb36464772021-01-14 22:27:56 -05009242 static_call(kvm_x86_set_irq)(vcpu);
9243 WARN_ON(static_call(kvm_x86_interrupt_allowed)(vcpu, true) < 0);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009244 }
9245 if (kvm_cpu_has_injectable_intr(vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009246 static_call(kvm_x86_enable_irq_window)(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009247 }
9248
9249 if (is_guest_mode(vcpu) &&
9250 kvm_x86_ops.nested_ops->hv_timer_pending &&
9251 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
9252 *req_immediate_exit = true;
9253
9254 WARN_ON(vcpu->arch.exception.pending);
Jim Mattsona5f69092021-06-04 10:26:03 -07009255 return 0;
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009256
Jim Mattsona5f69092021-06-04 10:26:03 -07009257out:
9258 if (r == -EBUSY) {
9259 *req_immediate_exit = true;
9260 r = 0;
9261 }
9262 return r;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009263}
9264
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009265static void process_nmi(struct kvm_vcpu *vcpu)
9266{
9267 unsigned limit = 2;
9268
9269 /*
9270 * x86 is limited to one NMI running, and one NMI pending after it.
9271 * If an NMI is already in progress, limit further NMIs to just one.
9272 * Otherwise, allow two (and we'll inject the first one immediately).
9273 */
Jason Baronb36464772021-01-14 22:27:56 -05009274 if (static_call(kvm_x86_get_nmi_mask)(vcpu) || vcpu->arch.nmi_injected)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009275 limit = 1;
9276
9277 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
9278 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
9279 kvm_make_request(KVM_REQ_EVENT, vcpu);
9280}
9281
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009282static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009283{
9284 u32 flags = 0;
9285 flags |= seg->g << 23;
9286 flags |= seg->db << 22;
9287 flags |= seg->l << 21;
9288 flags |= seg->avl << 20;
9289 flags |= seg->present << 15;
9290 flags |= seg->dpl << 13;
9291 flags |= seg->s << 12;
9292 flags |= seg->type << 8;
9293 return flags;
9294}
9295
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009296static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009297{
9298 struct kvm_segment seg;
9299 int offset;
9300
9301 kvm_get_segment(vcpu, &seg, n);
9302 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
9303
9304 if (n < 3)
9305 offset = 0x7f84 + n * 12;
9306 else
9307 offset = 0x7f2c + (n - 3) * 12;
9308
9309 put_smstate(u32, buf, offset + 8, seg.base);
9310 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009311 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009312}
9313
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009314#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009315static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009316{
9317 struct kvm_segment seg;
9318 int offset;
9319 u16 flags;
9320
9321 kvm_get_segment(vcpu, &seg, n);
9322 offset = 0x7e00 + n * 16;
9323
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009324 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009325 put_smstate(u16, buf, offset, seg.selector);
9326 put_smstate(u16, buf, offset + 2, flags);
9327 put_smstate(u32, buf, offset + 4, seg.limit);
9328 put_smstate(u64, buf, offset + 8, seg.base);
9329}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06009330#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009331
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009332static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009333{
9334 struct desc_ptr dt;
9335 struct kvm_segment seg;
9336 unsigned long val;
9337 int i;
9338
9339 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
9340 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
9341 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
9342 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
9343
9344 for (i = 0; i < 8; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009345 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009346
9347 kvm_get_dr(vcpu, 6, &val);
9348 put_smstate(u32, buf, 0x7fcc, (u32)val);
9349 kvm_get_dr(vcpu, 7, &val);
9350 put_smstate(u32, buf, 0x7fc8, (u32)val);
9351
9352 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9353 put_smstate(u32, buf, 0x7fc4, seg.selector);
9354 put_smstate(u32, buf, 0x7f64, seg.base);
9355 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009356 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009357
9358 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9359 put_smstate(u32, buf, 0x7fc0, seg.selector);
9360 put_smstate(u32, buf, 0x7f80, seg.base);
9361 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009362 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009363
Jason Baronb36464772021-01-14 22:27:56 -05009364 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009365 put_smstate(u32, buf, 0x7f74, dt.address);
9366 put_smstate(u32, buf, 0x7f70, dt.size);
9367
Jason Baronb36464772021-01-14 22:27:56 -05009368 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009369 put_smstate(u32, buf, 0x7f58, dt.address);
9370 put_smstate(u32, buf, 0x7f54, dt.size);
9371
9372 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009373 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009374
9375 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
9376
9377 /* revision id */
9378 put_smstate(u32, buf, 0x7efc, 0x00020000);
9379 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
9380}
9381
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009382#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009383static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009384{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009385 struct desc_ptr dt;
9386 struct kvm_segment seg;
9387 unsigned long val;
9388 int i;
9389
9390 for (i = 0; i < 16; i++)
Sean Christopherson27b4a9c42021-04-21 19:21:28 -07009391 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read_raw(vcpu, i));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009392
9393 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
9394 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
9395
9396 kvm_get_dr(vcpu, 6, &val);
9397 put_smstate(u64, buf, 0x7f68, val);
9398 kvm_get_dr(vcpu, 7, &val);
9399 put_smstate(u64, buf, 0x7f60, val);
9400
9401 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
9402 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
9403 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
9404
9405 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
9406
9407 /* revision id */
9408 put_smstate(u32, buf, 0x7efc, 0x00020064);
9409
9410 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
9411
9412 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
9413 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009414 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009415 put_smstate(u32, buf, 0x7e94, seg.limit);
9416 put_smstate(u64, buf, 0x7e98, seg.base);
9417
Jason Baronb36464772021-01-14 22:27:56 -05009418 static_call(kvm_x86_get_idt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009419 put_smstate(u32, buf, 0x7e84, dt.size);
9420 put_smstate(u64, buf, 0x7e88, dt.address);
9421
9422 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
9423 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009424 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009425 put_smstate(u32, buf, 0x7e74, seg.limit);
9426 put_smstate(u64, buf, 0x7e78, seg.base);
9427
Jason Baronb36464772021-01-14 22:27:56 -05009428 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009429 put_smstate(u32, buf, 0x7e64, dt.size);
9430 put_smstate(u64, buf, 0x7e68, dt.address);
9431
9432 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009433 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009434}
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009435#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009436
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009437static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02009438{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009439 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02009440 struct desc_ptr dt;
Sean Christophersondbc47392021-06-22 10:56:59 -07009441 unsigned long cr0;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009442 char buf[512];
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009443
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009444 memset(buf, 0, 512);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009445#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009446 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009447 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009448 else
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009449#endif
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009450 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009451
Ladi Prosek0234bf82017-10-11 16:54:40 +02009452 /*
Sean Christophersonecc513e2021-06-09 11:56:19 -07009453 * Give enter_smm() a chance to make ISA-specific changes to the vCPU
9454 * state (e.g. leave guest mode) after we've saved the state into the
9455 * SMM state-save area.
Ladi Prosek0234bf82017-10-11 16:54:40 +02009456 */
Sean Christophersonecc513e2021-06-09 11:56:19 -07009457 static_call(kvm_x86_enter_smm)(vcpu, buf);
Ladi Prosek0234bf82017-10-11 16:54:40 +02009458
Sean Christophersondc872752021-06-09 11:56:15 -07009459 kvm_smm_changed(vcpu, true);
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02009460 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009461
Jason Baronb36464772021-01-14 22:27:56 -05009462 if (static_call(kvm_x86_get_nmi_mask)(vcpu))
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009463 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
9464 else
Jason Baronb36464772021-01-14 22:27:56 -05009465 static_call(kvm_x86_set_nmi_mask)(vcpu, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009466
9467 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
9468 kvm_rip_write(vcpu, 0x8000);
9469
9470 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
Jason Baronb36464772021-01-14 22:27:56 -05009471 static_call(kvm_x86_set_cr0)(vcpu, cr0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009472 vcpu->arch.cr0 = cr0;
9473
Jason Baronb36464772021-01-14 22:27:56 -05009474 static_call(kvm_x86_set_cr4)(vcpu, 0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009475
Paolo Bonzini18c36262015-08-07 12:27:54 +02009476 /* Undocumented: IDT limit is set to zero on entry to SMM. */
9477 dt.address = dt.size = 0;
Jason Baronb36464772021-01-14 22:27:56 -05009478 static_call(kvm_x86_set_idt)(vcpu, &dt);
Paolo Bonzini18c36262015-08-07 12:27:54 +02009479
Paolo Bonzini996ff542020-12-14 07:49:54 -05009480 kvm_set_dr(vcpu, 7, DR7_FIXED_1);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009481
9482 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
9483 cs.base = vcpu->arch.smbase;
9484
9485 ds.selector = 0;
9486 ds.base = 0;
9487
9488 cs.limit = ds.limit = 0xffffffff;
9489 cs.type = ds.type = 0x3;
9490 cs.dpl = ds.dpl = 0;
9491 cs.db = ds.db = 0;
9492 cs.s = ds.s = 1;
9493 cs.l = ds.l = 0;
9494 cs.g = ds.g = 1;
9495 cs.avl = ds.avl = 0;
9496 cs.present = ds.present = 1;
9497 cs.unusable = ds.unusable = 0;
9498 cs.padding = ds.padding = 0;
9499
9500 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
9501 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
9502 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
9503 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
9504 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
9505 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
9506
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009507#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02009508 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Jason Baronb36464772021-01-14 22:27:56 -05009509 static_call(kvm_x86_set_efer)(vcpu, 0);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07009510#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009511
Xiaoyao Liaedbaf42020-07-09 12:34:23 +08009512 kvm_update_cpuid_runtime(vcpu);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02009513 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009514}
9515
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02009516static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009517{
9518 vcpu->arch.smi_pending = true;
9519 kvm_make_request(KVM_REQ_EVENT, vcpu);
9520}
9521
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009522void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
9523 unsigned long *vcpu_bitmap)
9524{
Vitaly Kuznetsov620b2432021-09-03 09:51:41 +02009525 kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC, vcpu_bitmap);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05009526}
9527
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01009528void kvm_make_scan_ioapic_request(struct kvm *kvm)
9529{
9530 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
9531}
9532
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009533void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
9534{
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009535 bool activate;
9536
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009537 if (!lapic_in_kernel(vcpu))
9538 return;
9539
Sean Christopherson187c8832021-10-21 17:49:27 -07009540 down_read(&vcpu->kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009541
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009542 activate = kvm_apicv_activated(vcpu->kvm);
9543 if (vcpu->arch.apicv_active == activate)
9544 goto out;
9545
9546 vcpu->arch.apicv_active = activate;
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009547 kvm_apic_update_apicv(vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009548 static_call(kvm_x86_refresh_apicv_exec_ctrl)(vcpu);
Vitaly Kuznetsovbca66db2021-06-09 17:09:10 +02009549
9550 /*
9551 * When APICv gets disabled, we may still have injected interrupts
9552 * pending. At the same time, KVM_REQ_EVENT may not be set as APICv was
9553 * still active when the interrupt got accepted. Make sure
9554 * inject_pending_event() is called to check for that.
9555 */
9556 if (!vcpu->arch.apicv_active)
9557 kvm_make_request(KVM_REQ_EVENT, vcpu);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009558
Maxim Levitsky06ef8132021-08-10 23:52:48 +03009559out:
Sean Christopherson187c8832021-10-21 17:49:27 -07009560 up_read(&vcpu->kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009561}
9562EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv);
9563
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009564void __kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009565{
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009566 unsigned long old, new;
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009567
Sean Christopherson187c8832021-10-21 17:49:27 -07009568 lockdep_assert_held_write(&kvm->arch.apicv_update_lock);
9569
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009570 if (!kvm_x86_ops.check_apicv_inhibit_reasons ||
Jason Baronb36464772021-01-14 22:27:56 -05009571 !static_call(kvm_x86_check_apicv_inhibit_reasons)(bit))
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06009572 return;
9573
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009574 old = new = kvm->arch.apicv_inhibit_reasons;
9575
9576 if (activate)
9577 __clear_bit(bit, &new);
9578 else
9579 __set_bit(bit, &new);
Paolo Bonzini8e205a62020-03-14 12:29:23 +01009580
Maxim Levitsky36222b12021-08-10 23:52:43 +03009581 if (!!old != !!new) {
9582 trace_kvm_apicv_update_request(activate, bit);
Sean Christophersonee49a892021-10-21 17:49:25 -07009583 /*
9584 * Kick all vCPUs before setting apicv_inhibit_reasons to avoid
9585 * false positives in the sanity check WARN in svm_vcpu_run().
9586 * This task will wait for all vCPUs to ack the kick IRQ before
9587 * updating apicv_inhibit_reasons, and all other vCPUs will
9588 * block on acquiring apicv_update_lock so that vCPUs can't
9589 * redo svm_vcpu_run() without seeing the new inhibit state.
9590 *
9591 * Note, holding apicv_update_lock and taking it in the read
9592 * side (handling the request) also prevents other vCPUs from
9593 * servicing the request with a stale apicv_inhibit_reasons.
9594 */
Maxim Levitsky36222b12021-08-10 23:52:43 +03009595 kvm_make_all_cpus_request(kvm, KVM_REQ_APICV_UPDATE);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009596 kvm->arch.apicv_inhibit_reasons = new;
Maxim Levitsky36222b12021-08-10 23:52:43 +03009597 if (new) {
9598 unsigned long gfn = gpa_to_gfn(APIC_DEFAULT_PHYS_BASE);
Maxim Levitsky36222b12021-08-10 23:52:43 +03009599 kvm_zap_gfn_range(kvm, gfn, gfn+1);
9600 }
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009601 } else
9602 kvm->arch.apicv_inhibit_reasons = new;
9603}
9604EXPORT_SYMBOL_GPL(__kvm_request_apicv_update);
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05009605
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009606void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
9607{
Sean Christopherson187c8832021-10-21 17:49:27 -07009608 down_write(&kvm->arch.apicv_update_lock);
Maxim Levitskyb0a16372021-08-10 23:52:44 +03009609 __kvm_request_apicv_update(kvm, activate, bit);
Sean Christopherson187c8832021-10-21 17:49:27 -07009610 up_write(&kvm->arch.apicv_update_lock);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009611}
9612EXPORT_SYMBOL_GPL(kvm_request_apicv_update);
9613
Yang Zhang3d81bc72013-04-11 19:25:13 +08009614static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08009615{
Wanpeng Lidcbd3e42018-12-17 10:43:23 +08009616 if (!kvm_apic_present(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08009617 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08009618
Andrey Smetanin63086302015-11-10 15:36:32 +03009619 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009620
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07009621 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03009622 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009623 else {
Liran Alonfa59cc02017-12-24 18:12:53 +02009624 if (vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05009625 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Wanpeng Lie97f8522018-11-20 16:34:18 +08009626 if (ioapic_in_kernel(vcpu->kvm))
9627 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02009628 }
Liran Alone40ff1d2018-03-21 02:50:31 +02009629
9630 if (is_guest_mode(vcpu))
9631 vcpu->arch.load_eoi_exitmap_pending = true;
9632 else
9633 kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu);
9634}
9635
9636static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
9637{
9638 u64 eoi_exit_bitmap[4];
9639
9640 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
9641 return;
9642
Vitaly Kuznetsovf2bc14b2021-01-26 14:48:12 +01009643 if (to_hv_vcpu(vcpu))
9644 bitmap_or((ulong *)eoi_exit_bitmap,
9645 vcpu->arch.ioapic_handled_vectors,
9646 to_hv_synic(vcpu)->vec_bitmap, 256);
9647
Jason Baronb36464772021-01-14 22:27:56 -05009648 static_call(kvm_x86_load_eoi_exitmap)(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08009649}
9650
Eiichi Tsukatae649b3f2020-06-06 13:26:27 +09009651void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
9652 unsigned long start, unsigned long end)
Radim Krčmářb1394e72017-11-30 19:05:45 +01009653{
9654 unsigned long apic_address;
9655
9656 /*
9657 * The physical address of apic access page is stored in the VMCS.
9658 * Update it when it becomes invalid.
9659 */
9660 apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
9661 if (start <= apic_address && apic_address < end)
9662 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
9663}
9664
Tang Chen4256f432014-09-24 15:57:54 +08009665void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
9666{
Paolo Bonzini35754c92015-07-29 12:05:37 +02009667 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02009668 return;
9669
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009670 if (!kvm_x86_ops.set_apic_access_page_addr)
Tang Chen4256f432014-09-24 15:57:54 +08009671 return;
9672
Jason Baronb36464772021-01-14 22:27:56 -05009673 static_call(kvm_x86_set_apic_access_page_addr)(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009674}
Tang Chen4256f432014-09-24 15:57:54 +08009675
Sean Christophersond264ee02018-08-27 15:21:12 -07009676void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu)
9677{
9678 smp_send_reschedule(vcpu->cpu);
9679}
9680EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit);
9681
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009682/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01009683 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09009684 * exiting to the userspace. Otherwise, the value will be returned to the
9685 * userspace.
9686 */
Avi Kivity851ba692009-08-24 11:10:17 +03009687static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009688{
9689 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08009690 bool req_int_win =
9691 dm_request_for_irq_injection(vcpu) &&
9692 kvm_cpu_accept_dm_intr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08009693 fastpath_t exit_fastpath;
Matt Gingell62a193e2015-11-16 15:26:07 -08009694
Jan Kiszka730dca42013-04-28 10:50:52 +02009695 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009696
Peter Xufb04a1e2020-09-30 21:22:22 -04009697 /* Forbid vmenter if vcpu dirty ring is soft-full */
9698 if (unlikely(vcpu->kvm->dirty_ring_size &&
9699 kvm_dirty_ring_soft_full(&vcpu->dirty_ring))) {
9700 vcpu->run->exit_reason = KVM_EXIT_DIRTY_RING_FULL;
9701 trace_kvm_dirty_ring_exit(vcpu);
9702 r = 0;
9703 goto out;
9704 }
9705
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02009706 if (kvm_request_pending(vcpu)) {
Sean Christopherson67369272021-07-02 15:04:25 -07009707 if (kvm_check_request(KVM_REQ_VM_BUGGED, vcpu)) {
9708 r = -EIO;
9709 goto out;
9710 }
Paolo Bonzini729c15c2020-09-22 06:53:57 -04009711 if (kvm_check_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu)) {
Paolo Bonzini9a78e152021-01-08 11:43:08 -05009712 if (unlikely(!kvm_x86_ops.nested_ops->get_nested_state_pages(vcpu))) {
Jim Mattson671ddc72019-10-15 10:44:05 -07009713 r = 0;
9714 goto out;
9715 }
9716 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009717 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05009718 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03009719 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03009720 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02009721 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
Paolo Bonzini6b6fcd22021-09-16 18:15:32 +00009722 kvm_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03009723 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
9724 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10009725 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
9726 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10009727 if (unlikely(r))
9728 goto out;
9729 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009730 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03009731 kvm_mmu_sync_roots(vcpu);
Paolo Bonzini727a7e22020-03-05 03:52:50 -05009732 if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu))
9733 kvm_mmu_load_pgd(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009734 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
Sean Christopherson77809382020-03-20 14:28:18 -07009735 kvm_vcpu_flush_tlb_all(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009736
9737 /* Flushing all ASIDs flushes the current ASID... */
9738 kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
9739 }
9740 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
9741 kvm_vcpu_flush_tlb_current(vcpu);
Sean Christopherson07ffaf32021-06-09 16:42:21 -07009742 if (kvm_check_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu))
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04009743 kvm_vcpu_flush_tlb_guest(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07009744
Avi Kivitya8eeb042010-05-10 12:34:53 +03009745 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03009746 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02009747 r = 0;
9748 goto out;
9749 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03009750 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08009751 if (is_guest_mode(vcpu)) {
9752 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9753 } else {
9754 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
9755 vcpu->mmio_needed = 0;
9756 r = 0;
9757 goto out;
9758 }
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01009759 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02009760 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
9761 /* Page is swapped out. Do synthetic halt */
9762 vcpu->arch.apf.halted = true;
9763 r = 1;
9764 goto out;
9765 }
Glauber Costac9aaa892011-07-11 15:28:14 -04009766 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
9767 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009768 if (kvm_check_request(KVM_REQ_SMI, vcpu))
9769 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009770 if (kvm_check_request(KVM_REQ_NMI, vcpu))
9771 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009772 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009773 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02009774 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02009775 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07009776 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
9777 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
9778 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03009779 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07009780 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
9781 vcpu->run->eoi.vector =
9782 vcpu->arch.pending_ioapic_eoi;
9783 r = 0;
9784 goto out;
9785 }
9786 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08009787 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
9788 vcpu_scan_ioapic(vcpu);
Liran Alone40ff1d2018-03-21 02:50:31 +02009789 if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu))
9790 vcpu_load_eoi_exitmap(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08009791 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
9792 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03009793 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
9794 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9795 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
9796 r = 0;
9797 goto out;
9798 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03009799 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
9800 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9801 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
9802 r = 0;
9803 goto out;
9804 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03009805 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009806 struct kvm_vcpu_hv *hv_vcpu = to_hv_vcpu(vcpu);
9807
Andrey Smetanindb3975712015-11-10 15:36:35 +03009808 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
Vitaly Kuznetsov9ff5e032021-01-26 14:48:11 +01009809 vcpu->run->hyperv = hv_vcpu->exit;
Andrey Smetanindb3975712015-11-10 15:36:35 +03009810 r = 0;
9811 goto out;
9812 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03009813
9814 /*
9815 * KVM_REQ_HV_STIMER has to be processed after
9816 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
9817 * depend on the guest clock being up-to-date
9818 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03009819 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
9820 kvm_hv_process_stimers(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06009821 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
9822 kvm_vcpu_update_apicv(vcpu);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +02009823 if (kvm_check_request(KVM_REQ_APF_READY, vcpu))
9824 kvm_check_async_pf_completion(vcpu);
Alexander Graf1a1552542020-09-25 16:34:21 +02009825 if (kvm_check_request(KVM_REQ_MSR_FILTER_CHANGED, vcpu))
Jason Baronb36464772021-01-14 22:27:56 -05009826 static_call(kvm_x86_msr_filter_changed)(vcpu);
Makarand Sonarea85863c2021-02-12 16:50:12 -08009827
9828 if (kvm_check_request(KVM_REQ_UPDATE_CPU_DIRTY_LOGGING, vcpu))
9829 static_call(kvm_x86_update_cpu_dirty_logging)(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02009830 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009831
David Woodhouse40da8cc2020-12-09 20:08:30 +00009832 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win ||
9833 kvm_xen_has_interrupt(vcpu)) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01009834 ++vcpu->stat.req_event;
Jim Mattson4fe09bc2021-06-04 10:26:04 -07009835 r = kvm_apic_accept_events(vcpu);
9836 if (r < 0) {
9837 r = 0;
9838 goto out;
9839 }
Jan Kiszka66450a22013-03-13 12:42:34 +01009840 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
9841 r = 1;
9842 goto out;
9843 }
9844
Jim Mattsona5f69092021-06-04 10:26:03 -07009845 r = inject_pending_event(vcpu, &req_immediate_exit);
9846 if (r < 0) {
9847 r = 0;
9848 goto out;
9849 }
Paolo Bonzinic9d40912020-05-22 11:21:49 -04009850 if (req_int_win)
Jason Baronb36464772021-01-14 22:27:56 -05009851 static_call(kvm_x86_enable_irq_window)(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03009852
Avi Kivity3842d132010-07-27 12:30:24 +03009853 if (kvm_lapic_enabled(vcpu)) {
9854 update_cr8_intercept(vcpu);
9855 kvm_lapic_sync_to_vapic(vcpu);
9856 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03009857 }
Avi Kivityb93463a2007-10-25 16:52:32 +02009858
Avi Kivityd8368af2012-05-14 18:07:56 +03009859 r = kvm_mmu_reload(vcpu);
9860 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009861 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03009862 }
9863
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009864 preempt_disable();
9865
Jason Baronb36464772021-01-14 22:27:56 -05009866 static_call(kvm_x86_prepare_guest_switch)(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009867
9868 /*
9869 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
9870 * IPI are then delayed after guest entry, which ensures that they
9871 * result in virtual interrupt delivery.
9872 */
9873 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009874 vcpu->mode = IN_GUEST_MODE;
9875
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009876 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
9877
Lan Tianyu0f127d12016-03-13 11:10:29 +08009878 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009879 * 1) We should set ->mode before checking ->requests. Please see
Andrew Jonescde9af62017-04-26 22:32:24 +02009880 * the comment in kvm_vcpu_exiting_guest_mode().
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009881 *
Luwei Kang81b01662019-01-31 16:52:02 +08009882 * 2) For APICv, we should set ->mode before checking PID.ON. This
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009883 * pairs with the memory barrier implicit in pi_test_and_set_on
9884 * (see vmx_deliver_posted_interrupt).
9885 *
9886 * 3) This also orders the write to mode from any reads to the page
9887 * tables done while the VCPU is running. Please see the comment
9888 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009889 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009890 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009891
Paolo Bonzinib95234c2016-12-19 13:57:33 +01009892 /*
9893 * This handles the case where a posted interrupt was
9894 * notified with kvm_vcpu_kick.
9895 */
Liran Alonfa59cc02017-12-24 18:12:53 +02009896 if (kvm_lapic_enabled(vcpu) && vcpu->arch.apicv_active)
Jason Baronb36464772021-01-14 22:27:56 -05009897 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009898
Wanpeng Li5a9f5442020-04-28 14:23:26 +08009899 if (kvm_vcpu_exit_request(vcpu)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009900 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009901 smp_wmb();
9902 local_irq_enable();
9903 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02009904 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009905 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03009906 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009907 }
9908
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009909 if (req_immediate_exit) {
9910 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -05009911 static_call(kvm_x86_request_immediate_exit)(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009912 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03009913
Sean Christopherson2620fe22020-01-17 11:30:51 -08009914 fpregs_assert_state_consistent();
9915 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9916 switch_fpu_return();
Rik van Riel5f409e22019-04-03 18:41:52 +02009917
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009918 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009919 set_debugreg(0, 7);
9920 set_debugreg(vcpu->arch.eff_db[0], 0);
9921 set_debugreg(vcpu->arch.eff_db[1], 1);
9922 set_debugreg(vcpu->arch.eff_db[2], 2);
9923 set_debugreg(vcpu->arch.eff_db[3], 3);
Lai Jiangshanf85d4012021-06-29 01:26:32 +08009924 } else if (unlikely(hw_breakpoint_active())) {
9925 set_debugreg(0, 7);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009926 }
9927
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05009928 for (;;) {
Sean Christophersonee49a892021-10-21 17:49:25 -07009929 /*
9930 * Assert that vCPU vs. VM APICv state is consistent. An APICv
9931 * update must kick and wait for all vCPUs before toggling the
9932 * per-VM state, and responsing vCPUs must wait for the update
9933 * to complete before servicing KVM_REQ_APICV_UPDATE.
9934 */
9935 WARN_ON_ONCE(kvm_apicv_activated(vcpu->kvm) != kvm_vcpu_apicv_active(vcpu));
9936
Paolo Bonzinid89d04a2021-02-02 10:44:23 -05009937 exit_fastpath = static_call(kvm_x86_run)(vcpu);
9938 if (likely(exit_fastpath != EXIT_FASTPATH_REENTER_GUEST))
9939 break;
9940
9941 if (unlikely(kvm_vcpu_exit_request(vcpu))) {
9942 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
9943 break;
9944 }
9945
9946 if (vcpu->arch.apicv_active)
9947 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
9948 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009949
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009950 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009951 * Do this here before restoring debug registers on the host. And
9952 * since we do this before handling the vmexit, a DR access vmexit
9953 * can (a) read the correct value of the debug registers, (b) set
9954 * KVM_DEBUGREG_WONT_EXIT again.
9955 */
9956 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009957 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
Jason Baronb36464772021-01-14 22:27:56 -05009958 static_call(kvm_x86_sync_dirty_debug_regs)(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009959 kvm_update_dr0123(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01009960 kvm_update_dr7(vcpu);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01009961 }
9962
9963 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009964 * If the guest has used debug registers, at least dr7
9965 * will be disabled while returning to the host.
9966 * If we don't have active breakpoints in the host, we don't
9967 * care about the messed up debug address registers. But if
9968 * we have some of them active, restore the old state.
9969 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01009970 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02009971 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009972
Jim Mattsonc9671182020-06-03 16:56:23 -07009973 vcpu->arch.last_vmentry_cpu = vcpu->cpu;
Haozhong Zhang4ba76532015-10-20 15:39:07 +08009974 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10009975
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08009976 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03009977 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08009978
Jason Baronb36464772021-01-14 22:27:56 -05009979 static_call(kvm_x86_handle_exit_irqoff)(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009980
Sean Christophersond7a08882019-07-10 09:07:34 -07009981 /*
9982 * Consume any pending interrupts, including the possible source of
9983 * VM-Exit on SVM and any ticks that occur between VM-Exit and now.
9984 * An instruction is required after local_irq_enable() to fully unblock
9985 * interrupts on processors that implement an interrupt shadow, the
9986 * stat.exits increment will do nicely.
9987 */
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009988 kvm_before_interrupt(vcpu);
Sean Christophersond7a08882019-07-10 09:07:34 -07009989 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009990 ++vcpu->stat.exits;
Sean Christophersond7a08882019-07-10 09:07:34 -07009991 local_irq_disable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009992 kvm_after_interrupt(vcpu);
9993
Wanpeng Li16045712021-05-04 17:27:30 -07009994 /*
9995 * Wait until after servicing IRQs to account guest time so that any
9996 * ticks that occurred while running the guest are properly accounted
9997 * to the guest. Waiting until IRQs are enabled degrades the accuracy
9998 * of accounting via context tracking, but the loss of accuracy is
9999 * acceptable for all known use cases.
10000 */
10001 vtime_account_guest_exit();
10002
Wanpeng Liec0671d2019-05-20 16:18:08 +080010003 if (lapic_in_kernel(vcpu)) {
10004 s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta;
10005 if (delta != S64_MIN) {
10006 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta);
10007 vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN;
10008 }
10009 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010010
Paolo Bonzinif2485b32016-06-15 15:23:11 +020010011 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010012 preempt_enable();
10013
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010014 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -030010015
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010016 /*
10017 * Profile KVM exit RIPs:
10018 */
10019 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010020 unsigned long rip = kvm_rip_read(vcpu);
10021 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010022 }
10023
Zachary Amsdencc578282012-02-03 15:43:50 -020010024 if (unlikely(vcpu->arch.tsc_always_catchup))
10025 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +020010026
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +030010027 if (vcpu->arch.apic_attention)
10028 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +020010029
Jason Baronb36464772021-01-14 22:27:56 -050010030 r = static_call(kvm_x86_handle_exit)(vcpu, exit_fastpath);
Michael S. Tsirkind905c062012-06-24 19:25:00 +030010031 return r;
10032
10033cancel_injection:
Sean Christopherson8081ad02020-04-22 19:25:40 -070010034 if (req_immediate_exit)
10035 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jason Baronb36464772021-01-14 22:27:56 -050010036 static_call(kvm_x86_cancel_injection)(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +030010037 if (unlikely(vcpu->arch.apic_attention))
10038 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010039out:
Marcelo Tosattid7690172008-09-08 15:23:48 -030010040 return r;
10041}
10042
Paolo Bonzini362c6982015-02-06 12:48:04 +010010043static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
10044{
Feng Wubf9f6ac2015-09-18 22:29:55 +080010045 if (!kvm_arch_vcpu_runnable(vcpu) &&
Jason Baronb36464772021-01-14 22:27:56 -050010046 (!kvm_x86_ops.pre_block || static_call(kvm_x86_pre_block)(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010047 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
10048 kvm_vcpu_block(vcpu);
10049 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010050
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010051 if (kvm_x86_ops.post_block)
Jason Baronb36464772021-01-14 22:27:56 -050010052 static_call(kvm_x86_post_block)(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010053
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +010010054 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
10055 return 1;
10056 }
Gleb Natapov09cec752009-03-23 15:11:44 +020010057
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010058 if (kvm_apic_accept_events(vcpu) < 0)
10059 return 0;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010060 switch(vcpu->arch.mp_state) {
10061 case KVM_MP_STATE_HALTED:
Tom Lendacky647daca2021-01-04 14:20:01 -060010062 case KVM_MP_STATE_AP_RESET_HOLD:
Paolo Bonzini362c6982015-02-06 12:48:04 +010010063 vcpu->arch.pv.pv_unhalted = false;
10064 vcpu->arch.mp_state =
10065 KVM_MP_STATE_RUNNABLE;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -050010066 fallthrough;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010067 case KVM_MP_STATE_RUNNABLE:
10068 vcpu->arch.apf.halted = false;
10069 break;
10070 case KVM_MP_STATE_INIT_RECEIVED:
10071 break;
10072 default:
10073 return -EINTR;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010074 }
10075 return 1;
10076}
10077
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010078static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
10079{
Paolo Bonzini56083bd2020-04-17 10:32:53 -040010080 if (is_guest_mode(vcpu))
Sean Christophersoncb6a32c2021-03-02 09:45:14 -080010081 kvm_check_nested_events(vcpu);
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +010010082
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010083 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
10084 !vcpu->arch.apf.halted);
10085}
10086
Paolo Bonzini362c6982015-02-06 12:48:04 +010010087static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -030010088{
10089 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010090 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -030010091
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010092 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +020010093 vcpu->arch.l1tf_flush_l1d = true;
Marcelo Tosattid7690172008-09-08 15:23:48 -030010094
Paolo Bonzini362c6982015-02-06 12:48:04 +010010095 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +020010096 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +030010097 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010098 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +010010099 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +080010100 }
10101
Gleb Natapov09cec752009-03-23 15:11:44 +020010102 if (r <= 0)
10103 break;
10104
Marcelo Tosatti084071d2021-05-25 10:41:17 -030010105 kvm_clear_request(KVM_REQ_UNBLOCK, vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +020010106 if (kvm_cpu_has_pending_timer(vcpu))
10107 kvm_inject_pending_timer_irqs(vcpu);
10108
Matt Gingell782d4222015-11-16 15:26:00 -080010109 if (dm_request_for_irq_injection(vcpu) &&
10110 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +020010111 r = 0;
10112 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +020010113 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +010010114 break;
Gleb Natapov09cec752009-03-23 15:11:44 +020010115 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020010116
Thomas Gleixnerf3020b82020-07-30 09:19:01 +020010117 if (__xfer_to_guest_mode_work_pending()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010118 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Thomas Gleixner72c3c0f2020-07-23 00:00:09 +020010119 r = xfer_to_guest_mode_handle_work(vcpu);
10120 if (r)
10121 return r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010122 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -030010123 }
10124 }
10125
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010126 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010127
10128 return r;
10129}
10130
Gleb Natapov716d51a2012-09-03 15:24:26 +030010131static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
10132{
10133 int r;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010134
Gleb Natapov716d51a2012-09-03 15:24:26 +030010135 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Sean Christopherson0ce97a22018-08-23 13:56:52 -070010136 r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010137 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010138 return r;
Gleb Natapov716d51a2012-09-03 15:24:26 +030010139}
10140
10141static int complete_emulated_pio(struct kvm_vcpu *vcpu)
10142{
10143 BUG_ON(!vcpu->arch.pio.count);
10144
10145 return complete_emulated_io(vcpu);
10146}
10147
Avi Kivityf78146b2012-04-18 19:22:47 +030010148/*
10149 * Implements the following, as a state machine:
10150 *
10151 * read:
10152 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010153 * for each mmio piece in the fragment
10154 * write gpa, len
10155 * exit
10156 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +030010157 * execute insn
10158 *
10159 * write:
10160 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010161 * for each mmio piece in the fragment
10162 * write gpa, len
10163 * copy data
10164 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +030010165 */
Gleb Natapov716d51a2012-09-03 15:24:26 +030010166static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +020010167{
10168 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +030010169 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010170 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +020010171
Gleb Natapov716d51a2012-09-03 15:24:26 +030010172 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +020010173
Gleb Natapov716d51a2012-09-03 15:24:26 +030010174 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010175 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
10176 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010177 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010178 memcpy(frag->data, run->mmio.data, len);
10179
10180 if (frag->len <= 8) {
10181 /* Switch to the next fragment. */
10182 frag++;
10183 vcpu->mmio_cur_fragment++;
10184 } else {
10185 /* Go forward to the next mmio piece. */
10186 frag->data += len;
10187 frag->gpa += len;
10188 frag->len -= len;
10189 }
10190
Andrew Honiga08d3b32014-02-27 19:35:14 +010010191 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +030010192 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +020010193
10194 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +020010195 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +030010196 return 1;
10197 vcpu->mmio_read_completed = 1;
10198 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +020010199 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010200
Gleb Natapov716d51a2012-09-03 15:24:26 +030010201 run->exit_reason = KVM_EXIT_MMIO;
10202 run->mmio.phys_addr = frag->gpa;
10203 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +080010204 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
10205 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +030010206 run->mmio.is_write = vcpu->mmio_is_write;
10207 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
10208 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +020010209}
10210
Sean Christophersonc9aef3b2020-01-17 11:30:49 -080010211static void kvm_save_current_fpu(struct fpu *fpu)
10212{
10213 /*
10214 * If the target FPU state is not resident in the CPU registers, just
10215 * memcpy() from current, else save CPU state directly to the target.
10216 */
10217 if (test_thread_flag(TIF_NEED_FPU_LOAD))
10218 memcpy(&fpu->state, &current->thread.fpu.state,
10219 fpu_kernel_xstate_size);
10220 else
Thomas Gleixnerebe72342021-06-23 14:01:59 +020010221 save_fpregs_to_fpstate(fpu);
Sean Christophersonc9aef3b2020-01-17 11:30:49 -080010222}
10223
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010224/* Swap (qemu) user FPU context for the guest FPU context. */
10225static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
10226{
Rik van Riel5f409e22019-04-03 18:41:52 +020010227 fpregs_lock();
10228
Sean Christophersonc9aef3b2020-01-17 11:30:49 -080010229 kvm_save_current_fpu(vcpu->arch.user_fpu);
10230
Tom Lendackyed02b212020-12-10 11:10:01 -060010231 /*
10232 * Guests with protected state can't have it set by the hypervisor,
10233 * so skip trying to set it.
10234 */
10235 if (vcpu->arch.guest_fpu)
10236 /* PKRU is separately restored in kvm_x86_ops.run. */
Thomas Gleixner1c61fad2021-06-23 14:02:01 +020010237 __restore_fpregs_from_fpstate(&vcpu->arch.guest_fpu->state,
Tom Lendackyed02b212020-12-10 11:10:01 -060010238 ~XFEATURE_MASK_PKRU);
Rik van Riel5f409e22019-04-03 18:41:52 +020010239
10240 fpregs_mark_activate();
10241 fpregs_unlock();
10242
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010243 trace_kvm_fpu(1);
10244}
10245
10246/* When vcpu_run ends, restore user space FPU context. */
10247static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
10248{
Rik van Riel5f409e22019-04-03 18:41:52 +020010249 fpregs_lock();
10250
Tom Lendackyed02b212020-12-10 11:10:01 -060010251 /*
10252 * Guests with protected state can't have it read by the hypervisor,
10253 * so skip trying to save it.
10254 */
10255 if (vcpu->arch.guest_fpu)
10256 kvm_save_current_fpu(vcpu->arch.guest_fpu);
Sean Christophersonc9aef3b2020-01-17 11:30:49 -080010257
Thomas Gleixner1c61fad2021-06-23 14:02:01 +020010258 restore_fpregs_from_fpstate(&vcpu->arch.user_fpu->state);
Rik van Riel5f409e22019-04-03 18:41:52 +020010259
10260 fpregs_mark_activate();
10261 fpregs_unlock();
10262
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +020010263 ++vcpu->stat.fpu_reload;
10264 trace_kvm_fpu(0);
10265}
10266
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010267int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010268{
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010269 struct kvm_run *kvm_run = vcpu->run;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010270 int r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010271
Christoffer Dallaccb7572017-12-04 21:35:25 +010010272 vcpu_load(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010273 kvm_sigset_activate(vcpu);
Chenyi Qiang15aad3b2020-11-06 17:03:13 +080010274 kvm_run->flags = 0;
Peter Xu5663d8f2017-12-12 17:15:02 +010010275 kvm_load_guest_fpu(vcpu);
10276
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010277 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
Jan H. Schönherr2f173d22017-09-06 18:34:06 +020010278 if (kvm_run->immediate_exit) {
10279 r = -EINTR;
10280 goto out;
10281 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010282 kvm_vcpu_block(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010283 if (kvm_apic_accept_events(vcpu) < 0) {
10284 r = 0;
10285 goto out;
10286 }
Radim Krčmář72875d82017-04-26 22:32:19 +020010287 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010288 r = -EAGAIN;
Jan H. Schönherra0595002017-09-06 00:27:19 +020010289 if (signal_pending(current)) {
10290 r = -EINTR;
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010291 kvm_run->exit_reason = KVM_EXIT_INTR;
Jan H. Schönherra0595002017-09-06 00:27:19 +020010292 ++vcpu->stat.signal_exits;
10293 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +030010294 goto out;
10295 }
10296
Sean Christophersone489a4a2021-07-02 15:04:29 -070010297 if ((kvm_run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) ||
10298 (kvm_run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS)) {
Ken Hofsass01643c52018-01-31 16:03:36 -080010299 r = -EINVAL;
10300 goto out;
10301 }
10302
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010303 if (kvm_run->kvm_dirty_regs) {
Ken Hofsass01643c52018-01-31 16:03:36 -080010304 r = sync_regs(vcpu);
10305 if (r != 0)
10306 goto out;
10307 }
10308
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010309 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +020010310 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +010010311 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
10312 r = -EINVAL;
10313 goto out;
10314 }
10315 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010316
Gleb Natapov716d51a2012-09-03 15:24:26 +030010317 if (unlikely(vcpu->arch.complete_userspace_io)) {
10318 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
10319 vcpu->arch.complete_userspace_io = NULL;
10320 r = cui(vcpu);
10321 if (r <= 0)
Peter Xu5663d8f2017-12-12 17:15:02 +010010322 goto out;
Gleb Natapov716d51a2012-09-03 15:24:26 +030010323 } else
10324 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +020010325
Paolo Bonzini460df4c2017-02-08 11:50:15 +010010326 if (kvm_run->immediate_exit)
10327 r = -EINTR;
10328 else
10329 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010330
10331out:
Peter Xu5663d8f2017-12-12 17:15:02 +010010332 kvm_put_guest_fpu(vcpu);
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +080010333 if (kvm_run->kvm_valid_regs)
Ken Hofsass01643c52018-01-31 16:03:36 -080010334 store_regs(vcpu);
Marcelo Tosattif1d86e42010-05-03 23:04:27 -030010335 post_kvm_run_save(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +010010336 kvm_sigset_deactivate(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010337
Christoffer Dallaccb7572017-12-04 21:35:25 +010010338 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010339 return r;
10340}
10341
Ken Hofsass01643c52018-01-31 16:03:36 -080010342static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010343{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010344 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
10345 /*
10346 * We are here if userspace calls get_regs() in the middle of
10347 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +080010348 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010349 * that usually, but some bad designed PV devices (vmware
10350 * backdoor interface) need this to work
10351 */
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010352 emulator_writeback_register_cache(vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010353 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10354 }
Sean Christophersonde3cd112019-04-30 10:36:17 -070010355 regs->rax = kvm_rax_read(vcpu);
10356 regs->rbx = kvm_rbx_read(vcpu);
10357 regs->rcx = kvm_rcx_read(vcpu);
10358 regs->rdx = kvm_rdx_read(vcpu);
10359 regs->rsi = kvm_rsi_read(vcpu);
10360 regs->rdi = kvm_rdi_read(vcpu);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010361 regs->rsp = kvm_rsp_read(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010362 regs->rbp = kvm_rbp_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010363#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010364 regs->r8 = kvm_r8_read(vcpu);
10365 regs->r9 = kvm_r9_read(vcpu);
10366 regs->r10 = kvm_r10_read(vcpu);
10367 regs->r11 = kvm_r11_read(vcpu);
10368 regs->r12 = kvm_r12_read(vcpu);
10369 regs->r13 = kvm_r13_read(vcpu);
10370 regs->r14 = kvm_r14_read(vcpu);
10371 regs->r15 = kvm_r15_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010372#endif
10373
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010374 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +020010375 regs->rflags = kvm_get_rflags(vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010376}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010377
Ken Hofsass01643c52018-01-31 16:03:36 -080010378int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10379{
10380 vcpu_load(vcpu);
10381 __get_regs(vcpu, regs);
Christoffer Dall1fc9b762017-12-04 21:35:26 +010010382 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010383 return 0;
10384}
10385
Ken Hofsass01643c52018-01-31 16:03:36 -080010386static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010387{
Gleb Natapov7ae441e2011-03-31 12:06:41 +020010388 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
10389 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
10390
Sean Christophersonde3cd112019-04-30 10:36:17 -070010391 kvm_rax_write(vcpu, regs->rax);
10392 kvm_rbx_write(vcpu, regs->rbx);
10393 kvm_rcx_write(vcpu, regs->rcx);
10394 kvm_rdx_write(vcpu, regs->rdx);
10395 kvm_rsi_write(vcpu, regs->rsi);
10396 kvm_rdi_write(vcpu, regs->rdi);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +020010397 kvm_rsp_write(vcpu, regs->rsp);
Sean Christophersonde3cd112019-04-30 10:36:17 -070010398 kvm_rbp_write(vcpu, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010399#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -070010400 kvm_r8_write(vcpu, regs->r8);
10401 kvm_r9_write(vcpu, regs->r9);
10402 kvm_r10_write(vcpu, regs->r10);
10403 kvm_r11_write(vcpu, regs->r11);
10404 kvm_r12_write(vcpu, regs->r12);
10405 kvm_r13_write(vcpu, regs->r13);
10406 kvm_r14_write(vcpu, regs->r14);
10407 kvm_r15_write(vcpu, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010408#endif
10409
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030010410 kvm_rip_write(vcpu, regs->rip);
Wanpeng Lid73235d2017-12-07 00:30:08 -080010411 kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010412
Jan Kiszkab4f14ab2008-04-30 17:59:04 +020010413 vcpu->arch.exception.pending = false;
10414
Avi Kivity3842d132010-07-27 12:30:24 +030010415 kvm_make_request(KVM_REQ_EVENT, vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -080010416}
Avi Kivity3842d132010-07-27 12:30:24 +030010417
Ken Hofsass01643c52018-01-31 16:03:36 -080010418int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
10419{
10420 vcpu_load(vcpu);
10421 __set_regs(vcpu, regs);
Christoffer Dall875656f2017-12-04 21:35:27 +010010422 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010423 return 0;
10424}
10425
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010426void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
10427{
10428 struct kvm_segment cs;
10429
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010430 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010431 *db = cs.db;
10432 *l = cs.l;
10433}
10434EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
10435
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010436static void __get_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010437{
Gleb Natapov89a27f42010-02-16 10:51:48 +020010438 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010439
Tom Lendacky52657132020-12-10 11:09:59 -060010440 if (vcpu->arch.guest_state_protected)
10441 goto skip_protected_regs;
10442
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010443 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10444 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10445 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10446 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10447 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10448 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010449
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010450 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10451 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010452
Jason Baronb36464772021-01-14 22:27:56 -050010453 static_call(kvm_x86_get_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010454 sregs->idt.limit = dt.size;
10455 sregs->idt.base = dt.address;
Jason Baronb36464772021-01-14 22:27:56 -050010456 static_call(kvm_x86_get_gdt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010457 sregs->gdt.limit = dt.size;
10458 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010459
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010460 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +020010461 sregs->cr3 = kvm_read_cr3(vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010462
10463skip_protected_regs:
10464 sregs->cr0 = kvm_read_cr0(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +020010465 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010466 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +020010467 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010468 sregs->apic_base = kvm_get_apic_base(vcpu);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010469}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010470
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010471static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10472{
10473 __get_sregs_common(vcpu, sregs);
10474
10475 if (vcpu->arch.guest_state_protected)
10476 return;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010477
Liran Alon04140b42018-03-23 03:01:31 +030010478 if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +030010479 set_bit(vcpu->arch.interrupt.nr,
10480 (unsigned long *)sregs->interrupt_bitmap);
Ken Hofsass01643c52018-01-31 16:03:36 -080010481}
Gleb Natapov16d7a192009-04-21 17:45:10 +030010482
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010483static void __get_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10484{
10485 int i;
10486
10487 __get_sregs_common(vcpu, (struct kvm_sregs *)sregs2);
10488
10489 if (vcpu->arch.guest_state_protected)
10490 return;
10491
10492 if (is_pae_paging(vcpu)) {
10493 for (i = 0 ; i < 4 ; i++)
10494 sregs2->pdptrs[i] = kvm_pdptr_read(vcpu, i);
10495 sregs2->flags |= KVM_SREGS2_FLAGS_PDPTRS_VALID;
10496 }
10497}
10498
Ken Hofsass01643c52018-01-31 16:03:36 -080010499int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
10500 struct kvm_sregs *sregs)
10501{
10502 vcpu_load(vcpu);
10503 __get_sregs(vcpu, sregs);
Christoffer Dallbcdec412017-12-04 21:35:28 +010010504 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010505 return 0;
10506}
10507
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010508int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
10509 struct kvm_mp_state *mp_state)
10510{
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010511 int r;
10512
Christoffer Dallfd232562017-12-04 21:35:30 +010010513 vcpu_load(vcpu);
Sean Christophersonf958bd22019-12-09 12:19:31 -080010514 if (kvm_mpx_supported())
10515 kvm_load_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010516
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010517 r = kvm_apic_accept_events(vcpu);
10518 if (r < 0)
10519 goto out;
10520 r = 0;
10521
Tom Lendacky647daca2021-01-04 14:20:01 -060010522 if ((vcpu->arch.mp_state == KVM_MP_STATE_HALTED ||
10523 vcpu->arch.mp_state == KVM_MP_STATE_AP_RESET_HOLD) &&
10524 vcpu->arch.pv.pv_unhalted)
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +053010525 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
10526 else
10527 mp_state->mp_state = vcpu->arch.mp_state;
10528
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010529out:
Sean Christophersonf958bd22019-12-09 12:19:31 -080010530 if (kvm_mpx_supported())
10531 kvm_put_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +010010532 vcpu_put(vcpu);
Jim Mattson4fe09bc2021-06-04 10:26:04 -070010533 return r;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010534}
10535
10536int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
10537 struct kvm_mp_state *mp_state)
10538{
Christoffer Dalle83dff52017-12-04 21:35:31 +010010539 int ret = -EINVAL;
10540
10541 vcpu_load(vcpu);
10542
Paolo Bonzinibce87cc2016-01-08 13:48:51 +010010543 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +010010544 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
Christoffer Dalle83dff52017-12-04 21:35:31 +010010545 goto out;
Jan Kiszka66450a22013-03-13 12:42:34 +010010546
Liran Alon27cbe7d2019-11-11 11:16:40 +020010547 /*
10548 * KVM_MP_STATE_INIT_RECEIVED means the processor is in
10549 * INIT state; latched init should be reported using
10550 * KVM_SET_VCPU_EVENTS, so reject it here.
10551 */
10552 if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) &&
David Hildenbrand28bf2882017-03-23 11:46:03 +010010553 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
10554 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
Christoffer Dalle83dff52017-12-04 21:35:31 +010010555 goto out;
David Hildenbrand28bf2882017-03-23 11:46:03 +010010556
Jan Kiszka66450a22013-03-13 12:42:34 +010010557 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
10558 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
10559 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
10560 } else
10561 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +030010562 kvm_make_request(KVM_REQ_EVENT, vcpu);
Christoffer Dalle83dff52017-12-04 21:35:31 +010010563
10564 ret = 0;
10565out:
10566 vcpu_put(vcpu);
10567 return ret;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -030010568}
10569
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010570int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
10571 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010572{
Sean Christophersonc9b8b072020-02-18 15:29:48 -080010573 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010574 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010575
Mohammed Gamal8ec47222010-08-16 00:47:01 +030010576 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +020010577
Kevin Wolf7f3d35f2012-02-08 14:34:38 +010010578 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010579 has_error_code, error_code);
Sean Christopherson10517782019-08-27 14:40:35 -070010580 if (ret) {
10581 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
10582 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
10583 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010584 return 0;
Sean Christopherson10517782019-08-27 14:40:35 -070010585 }
Gleb Natapovc6975182010-02-18 12:15:01 +020010586
Takuya Yoshikawa9d741912011-05-29 21:53:48 +090010587 kvm_rip_write(vcpu, ctxt->eip);
10588 kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson60fc3d02019-08-27 14:40:38 -070010589 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +020010590}
10591EXPORT_SYMBOL_GPL(kvm_task_switch);
10592
Sean Christophersonee69c922020-10-06 18:44:16 -070010593static bool kvm_is_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Lan Tianyuf2981032017-12-14 03:01:52 -050010594{
Tianyu Lan37b95952018-01-16 17:34:07 +080010595 if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) {
Lan Tianyuf2981032017-12-14 03:01:52 -050010596 /*
10597 * When EFER.LME and CR0.PG are set, the processor is in
10598 * 64-bit mode (though maybe in a 32-bit code segment).
10599 * CR4.PAE and EFER.LMA must be set.
10600 */
Sean Christophersonee69c922020-10-06 18:44:16 -070010601 if (!(sregs->cr4 & X86_CR4_PAE) || !(sregs->efer & EFER_LMA))
10602 return false;
Sean Christophersonca29e142021-02-03 16:01:12 -080010603 if (kvm_vcpu_is_illegal_gpa(vcpu, sregs->cr3))
Paolo Bonzinic1c35cf2020-11-13 08:30:38 -050010604 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010605 } else {
10606 /*
10607 * Not in 64-bit mode: EFER.LMA is clear and the code
10608 * segment cannot be 64-bit.
10609 */
10610 if (sregs->efer & EFER_LMA || sregs->cs.l)
Sean Christophersonee69c922020-10-06 18:44:16 -070010611 return false;
Lan Tianyuf2981032017-12-14 03:01:52 -050010612 }
10613
Sean Christophersonee69c922020-10-06 18:44:16 -070010614 return kvm_is_valid_cr4(vcpu, sregs->cr4);
Lan Tianyuf2981032017-12-14 03:01:52 -050010615}
10616
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010617static int __set_sregs_common(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs,
10618 int *mmu_reset_needed, bool update_pdptrs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010619{
Jan Kiszka58cb6282014-01-24 16:48:44 +010010620 struct msr_data apic_base_msr;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010621 int idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +020010622 struct desc_ptr dt;
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010623
Sean Christophersonee69c922020-10-06 18:44:16 -070010624 if (!kvm_is_valid_sregs(vcpu, sregs))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010625 return -EINVAL;
Lan Tianyuf2981032017-12-14 03:01:52 -050010626
Jim Mattsond3802282017-08-10 10:14:13 -070010627 apic_base_msr.data = sregs->apic_base;
10628 apic_base_msr.host_initiated = true;
10629 if (kvm_set_apic_base(vcpu, &apic_base_msr))
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010630 return -EINVAL;
Petr Matousek6d1068b2012-11-06 19:24:07 +010010631
Tom Lendacky52657132020-12-10 11:09:59 -060010632 if (vcpu->arch.guest_state_protected)
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010633 return 0;
Tom Lendacky52657132020-12-10 11:09:59 -060010634
Gleb Natapov89a27f42010-02-16 10:51:48 +020010635 dt.size = sregs->idt.limit;
10636 dt.address = sregs->idt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010637 static_call(kvm_x86_set_idt)(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +020010638 dt.size = sregs->gdt.limit;
10639 dt.address = sregs->gdt.base;
Jason Baronb36464772021-01-14 22:27:56 -050010640 static_call(kvm_x86_set_gdt)(vcpu, &dt);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010641
Zhang Xiantaoad312c72007-12-13 23:50:52 +080010642 vcpu->arch.cr2 = sregs->cr2;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010643 *mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +020010644 vcpu->arch.cr3 = sregs->cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -070010645 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010646
Avi Kivity2d3ad1f2008-02-24 11:20:43 +020010647 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010648
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010649 *mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Jason Baronb36464772021-01-14 22:27:56 -050010650 static_call(kvm_x86_set_efer)(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010651
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010652 *mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Jason Baronb36464772021-01-14 22:27:56 -050010653 static_call(kvm_x86_set_cr0)(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +000010654 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010655
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010656 *mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Jason Baronb36464772021-01-14 22:27:56 -050010657 static_call(kvm_x86_set_cr4)(vcpu, sregs->cr4);
Xiao Guangrong63f42e02011-01-12 15:39:18 +080010658
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010659 if (update_pdptrs) {
10660 idx = srcu_read_lock(&vcpu->kvm->srcu);
10661 if (is_pae_paging(vcpu)) {
10662 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
10663 *mmu_reset_needed = 1;
10664 }
10665 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Marcelo Tosatti7c93be442009-10-26 16:48:33 -020010666 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010667
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010668 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
10669 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
10670 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
10671 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
10672 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
10673 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010674
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +020010675 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
10676 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010677
Mikhail Ershov5f0269f2009-08-03 14:58:25 +030010678 update_cr8_intercept(vcpu);
10679
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010680 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +030010681 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010682 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +020010683 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -030010684 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10685
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010686 return 0;
10687}
10688
10689static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
10690{
10691 int pending_vec, max_bits;
10692 int mmu_reset_needed = 0;
10693 int ret = __set_sregs_common(vcpu, sregs, &mmu_reset_needed, true);
10694
10695 if (ret)
10696 return ret;
10697
10698 if (mmu_reset_needed)
10699 kvm_mmu_reset_context(vcpu);
10700
Tom Lendacky52657132020-12-10 11:09:59 -060010701 max_bits = KVM_NR_INTERRUPTS;
10702 pending_vec = find_first_bit(
10703 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010704
Tom Lendacky52657132020-12-10 11:09:59 -060010705 if (pending_vec < max_bits) {
10706 kvm_queue_interrupt(vcpu, pending_vec, false);
10707 pr_debug("Set back pending irq %d\n", pending_vec);
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010708 kvm_make_request(KVM_REQ_EVENT, vcpu);
Tom Lendacky52657132020-12-10 11:09:59 -060010709 }
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010710 return 0;
10711}
Tom Lendacky52657132020-12-10 11:09:59 -060010712
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010713static int __set_sregs2(struct kvm_vcpu *vcpu, struct kvm_sregs2 *sregs2)
10714{
10715 int mmu_reset_needed = 0;
10716 bool valid_pdptrs = sregs2->flags & KVM_SREGS2_FLAGS_PDPTRS_VALID;
10717 bool pae = (sregs2->cr0 & X86_CR0_PG) && (sregs2->cr4 & X86_CR4_PAE) &&
10718 !(sregs2->efer & EFER_LMA);
10719 int i, ret;
Avi Kivity3842d132010-07-27 12:30:24 +030010720
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010721 if (sregs2->flags & ~KVM_SREGS2_FLAGS_PDPTRS_VALID)
10722 return -EINVAL;
10723
10724 if (valid_pdptrs && (!pae || vcpu->arch.guest_state_protected))
10725 return -EINVAL;
10726
10727 ret = __set_sregs_common(vcpu, (struct kvm_sregs *)sregs2,
10728 &mmu_reset_needed, !valid_pdptrs);
10729 if (ret)
10730 return ret;
10731
10732 if (valid_pdptrs) {
10733 for (i = 0; i < 4 ; i++)
10734 kvm_pdptr_write(vcpu, i, sregs2->pdptrs[i]);
10735
10736 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
10737 mmu_reset_needed = 1;
Maxim Levitsky158a48e2021-06-07 12:02:03 +030010738 vcpu->arch.pdptrs_from_userspace = true;
Maxim Levitsky6dba9402021-06-07 12:02:02 +030010739 }
10740 if (mmu_reset_needed)
10741 kvm_mmu_reset_context(vcpu);
10742 return 0;
Ken Hofsass01643c52018-01-31 16:03:36 -080010743}
10744
10745int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
10746 struct kvm_sregs *sregs)
10747{
10748 int ret;
10749
10750 vcpu_load(vcpu);
10751 ret = __set_sregs(vcpu, sregs);
Christoffer Dallb4ef9d42017-12-04 21:35:29 +010010752 vcpu_put(vcpu);
10753 return ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010754}
10755
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010756static void kvm_arch_vcpu_guestdbg_update_apicv_inhibit(struct kvm *kvm)
10757{
10758 bool inhibit = false;
10759 struct kvm_vcpu *vcpu;
10760 int i;
10761
10762 down_write(&kvm->arch.apicv_update_lock);
10763
10764 kvm_for_each_vcpu(i, vcpu, kvm) {
10765 if (vcpu->guest_debug & KVM_GUESTDBG_BLOCKIRQ) {
10766 inhibit = true;
10767 break;
10768 }
10769 }
10770 __kvm_request_apicv_update(kvm, !inhibit, APICV_INHIBIT_REASON_BLOCKIRQ);
10771 up_write(&kvm->arch.apicv_update_lock);
10772}
10773
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010774int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
10775 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010776{
Jan Kiszka355be0b2009-10-03 00:31:21 +020010777 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010778 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010779
Tom Lendacky8d4846b2020-12-10 11:09:43 -060010780 if (vcpu->arch.guest_state_protected)
10781 return -EINVAL;
10782
Christoffer Dall66b56562017-12-04 21:35:33 +010010783 vcpu_load(vcpu);
10784
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010785 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
10786 r = -EBUSY;
10787 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +030010788 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010789 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
10790 kvm_queue_exception(vcpu, DB_VECTOR);
10791 else
10792 kvm_queue_exception(vcpu, BP_VECTOR);
10793 }
10794
Jan Kiszka91586a32009-10-05 13:07:21 +020010795 /*
10796 * Read rflags as long as potentially injected trace flags are still
10797 * filtered out.
10798 */
10799 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010800
10801 vcpu->guest_debug = dbg->control;
10802 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
10803 vcpu->guest_debug = 0;
10804
10805 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010806 for (i = 0; i < KVM_NR_DB_REGS; ++i)
10807 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +020010808 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010809 } else {
10810 for (i = 0; i < KVM_NR_DB_REGS; i++)
10811 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010812 }
Jan Kiszkac8639012012-09-21 05:42:55 +020010813 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +010010814
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010815 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Yuan Yaoe87e46d2021-05-26 14:38:28 +080010816 vcpu->arch.singlestep_rip = kvm_get_linear_rip(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010817
Jan Kiszka91586a32009-10-05 13:07:21 +020010818 /*
10819 * Trigger an rflags update that will inject or remove the trace
10820 * flags.
10821 */
10822 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +010010823
Jason Baronb36464772021-01-14 22:27:56 -050010824 static_call(kvm_x86_update_exception_bitmap)(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +020010825
Maxim Levitskycae72dc2021-11-08 11:02:45 +020010826 kvm_arch_vcpu_guestdbg_update_apicv_inhibit(vcpu->kvm);
10827
Jan Kiszka4f926bf22009-10-30 12:46:59 +010010828 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010829
Avi Kivity2122ff52010-05-13 11:25:04 +030010830out:
Christoffer Dall66b56562017-12-04 21:35:33 +010010831 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -050010832 return r;
10833}
10834
10835/*
Zhang Xiantao8b006792007-11-16 13:05:55 +080010836 * Translate a guest virtual address to a guest physical address.
10837 */
10838int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
10839 struct kvm_translation *tr)
10840{
10841 unsigned long vaddr = tr->linear_address;
10842 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010843 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010844
Christoffer Dall1da5b612017-12-04 21:35:32 +010010845 vcpu_load(vcpu);
10846
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010847 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +020010848 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -020010849 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010850 tr->physical_address = gpa;
10851 tr->valid = gpa != UNMAPPED_GVA;
10852 tr->writeable = 1;
10853 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +080010854
Christoffer Dall1da5b612017-12-04 21:35:32 +010010855 vcpu_put(vcpu);
Zhang Xiantao8b006792007-11-16 13:05:55 +080010856 return 0;
10857}
10858
Hollis Blanchardd0752062007-10-31 17:24:25 -050010859int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10860{
Christoffer Dall13931232017-12-04 21:35:34 +010010861 struct fxregs_state *fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010862
Tom Lendackyed02b212020-12-10 11:10:01 -060010863 if (!vcpu->arch.guest_fpu)
10864 return 0;
10865
Christoffer Dall13931232017-12-04 21:35:34 +010010866 vcpu_load(vcpu);
10867
Marc Orrb666a4b2018-11-06 14:53:56 -080010868 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010869 memcpy(fpu->fpr, fxsave->st_space, 128);
10870 fpu->fcw = fxsave->cwd;
10871 fpu->fsw = fxsave->swd;
10872 fpu->ftwx = fxsave->twd;
10873 fpu->last_opcode = fxsave->fop;
10874 fpu->last_ip = fxsave->rip;
10875 fpu->last_dp = fxsave->rdp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010876 memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010877
Christoffer Dall13931232017-12-04 21:35:34 +010010878 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010879 return 0;
10880}
10881
10882int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10883{
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010884 struct fxregs_state *fxsave;
10885
Tom Lendackyed02b212020-12-10 11:10:01 -060010886 if (!vcpu->arch.guest_fpu)
10887 return 0;
10888
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010889 vcpu_load(vcpu);
10890
Marc Orrb666a4b2018-11-06 14:53:56 -080010891 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -050010892
Hollis Blanchardd0752062007-10-31 17:24:25 -050010893 memcpy(fxsave->st_space, fpu->fpr, 128);
10894 fxsave->cwd = fpu->fcw;
10895 fxsave->swd = fpu->fsw;
10896 fxsave->twd = fpu->ftwx;
10897 fxsave->fop = fpu->last_opcode;
10898 fxsave->rip = fpu->last_ip;
10899 fxsave->rdp = fpu->last_dp;
Jordan Borgner0e96f312018-10-28 12:58:28 +000010900 memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -050010901
Christoffer Dall6a96bc72017-12-04 21:35:35 +010010902 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -050010903 return 0;
10904}
10905
Ken Hofsass01643c52018-01-31 16:03:36 -080010906static void store_regs(struct kvm_vcpu *vcpu)
10907{
10908 BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES);
10909
10910 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS)
10911 __get_regs(vcpu, &vcpu->run->s.regs.regs);
10912
10913 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS)
10914 __get_sregs(vcpu, &vcpu->run->s.regs.sregs);
10915
10916 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS)
10917 kvm_vcpu_ioctl_x86_get_vcpu_events(
10918 vcpu, &vcpu->run->s.regs.events);
10919}
10920
10921static int sync_regs(struct kvm_vcpu *vcpu)
10922{
Ken Hofsass01643c52018-01-31 16:03:36 -080010923 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) {
10924 __set_regs(vcpu, &vcpu->run->s.regs.regs);
10925 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS;
10926 }
10927 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) {
10928 if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs))
10929 return -EINVAL;
10930 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS;
10931 }
10932 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) {
10933 if (kvm_vcpu_ioctl_x86_set_vcpu_events(
10934 vcpu, &vcpu->run->s.regs.events))
10935 return -EINVAL;
10936 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS;
10937 }
10938
10939 return 0;
10940}
10941
Tom Lendackyed02b212020-12-10 11:10:01 -060010942void kvm_free_guest_fpu(struct kvm_vcpu *vcpu)
10943{
10944 if (vcpu->arch.guest_fpu) {
10945 kmem_cache_free(x86_fpu_cache, vcpu->arch.guest_fpu);
10946 vcpu->arch.guest_fpu = NULL;
10947 }
10948}
10949EXPORT_SYMBOL_GPL(kvm_free_guest_fpu);
10950
Sean Christopherson897cc382019-12-18 13:55:09 -080010951int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010952{
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010010953 if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
Sean Christopherson897cc382019-12-18 13:55:09 -080010954 pr_warn_once("kvm: SMP vm created on host with unstable TSC; "
10955 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +080010956
Sean Christopherson897cc382019-12-18 13:55:09 -080010957 return 0;
Avi Kivity26e52152007-11-20 15:30:24 +020010958}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010959
Sean Christophersone529ef62019-12-18 13:55:15 -080010960int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
Avi Kivity26e52152007-11-20 15:30:24 +020010961{
Sean Christopherson95a0d012019-12-18 13:55:23 -080010962 struct page *page;
10963 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080010964
Sean Christopherson63f5a192021-06-22 10:56:52 -070010965 vcpu->arch.last_vmentry_cpu = -1;
Sean Christopherson71170032021-09-20 17:02:54 -070010966 vcpu->arch.regs_avail = ~0;
10967 vcpu->arch.regs_dirty = ~0;
Sean Christopherson63f5a192021-06-22 10:56:52 -070010968
Sean Christopherson95a0d012019-12-18 13:55:23 -080010969 if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu))
10970 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10971 else
10972 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
10973
Sean Christopherson95a0d012019-12-18 13:55:23 -080010974 r = kvm_mmu_create(vcpu);
10975 if (r < 0)
10976 return r;
10977
10978 if (irqchip_in_kernel(vcpu->kvm)) {
Sean Christopherson95a0d012019-12-18 13:55:23 -080010979 r = kvm_create_lapic(vcpu, lapic_timer_advance_ns);
10980 if (r < 0)
10981 goto fail_mmu_destroy;
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -060010982 if (kvm_apicv_activated(vcpu->kvm))
10983 vcpu->arch.apicv_active = true;
Sean Christopherson95a0d012019-12-18 13:55:23 -080010984 } else
Cun Li6e4e3b42021-01-11 23:24:35 +080010985 static_branch_inc(&kvm_has_noapic_vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010986
10987 r = -ENOMEM;
10988
Shakeel Butt93bb59c2020-12-18 14:01:38 -080010989 page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Sean Christopherson95a0d012019-12-18 13:55:23 -080010990 if (!page)
10991 goto fail_free_lapic;
10992 vcpu->arch.pio_data = page_address(page);
10993
10994 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
10995 GFP_KERNEL_ACCOUNT);
10996 if (!vcpu->arch.mce_banks)
10997 goto fail_free_pio_data;
10998 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
10999
11000 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask,
11001 GFP_KERNEL_ACCOUNT))
11002 goto fail_free_mce_banks;
11003
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011004 if (!alloc_emulate_ctxt(vcpu))
11005 goto free_wbinvd_dirty_mask;
11006
Sean Christopherson95a0d012019-12-18 13:55:23 -080011007 vcpu->arch.user_fpu = kmem_cache_zalloc(x86_fpu_cache,
11008 GFP_KERNEL_ACCOUNT);
11009 if (!vcpu->arch.user_fpu) {
11010 pr_err("kvm: failed to allocate userspace's fpu\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011011 goto free_emulate_ctxt;
Sean Christopherson95a0d012019-12-18 13:55:23 -080011012 }
11013
11014 vcpu->arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
11015 GFP_KERNEL_ACCOUNT);
11016 if (!vcpu->arch.guest_fpu) {
11017 pr_err("kvm: failed to allocate vcpu's fpu\n");
11018 goto free_user_fpu;
11019 }
Sean Christopherson583d3692021-09-20 17:02:59 -070011020 fpstate_init(&vcpu->arch.guest_fpu->state);
11021 if (boot_cpu_has(X86_FEATURE_XSAVES))
11022 vcpu->arch.guest_fpu->state.xsave.header.xcomp_bv =
11023 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Sean Christopherson95a0d012019-12-18 13:55:23 -080011024
Sean Christopherson95a0d012019-12-18 13:55:23 -080011025 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Sean Christophersona8ac8642021-02-03 16:01:15 -080011026 vcpu->arch.reserved_gpa_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011027
11028 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
11029
11030 kvm_async_pf_hash_reset(vcpu);
11031 kvm_pmu_init(vcpu);
11032
11033 vcpu->arch.pending_external_vector = -1;
11034 vcpu->arch.preempted_in_kernel = false;
11035
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000011036#if IS_ENABLED(CONFIG_HYPERV)
11037 vcpu->arch.hv_root_tdp = INVALID_PAGE;
11038#endif
11039
Jason Baronb36464772021-01-14 22:27:56 -050011040 r = static_call(kvm_x86_vcpu_create)(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011041 if (r)
11042 goto free_guest_fpu;
Sean Christopherson5f73db12019-12-18 13:55:18 -080011043
Sean Christopherson0cf91352019-03-07 15:43:02 -080011044 vcpu->arch.arch_capabilities = kvm_get_arch_capabilities();
Jim Mattsone53d88af2018-10-30 12:20:21 -070011045 vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT;
Xiao Guangrong19efffa2015-06-15 16:55:31 +080011046 kvm_vcpu_mtrr_init(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010011047 vcpu_load(vcpu);
Ilias Stamatis1ab92872021-06-07 11:54:38 +010011048 kvm_set_tsc_khz(vcpu, max_tsc_khz);
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011049 kvm_vcpu_reset(vcpu, false);
Sean Christophersonc9060662021-06-09 16:42:33 -070011050 kvm_init_mmu(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011051 vcpu_put(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +010011052 return 0;
Sean Christopherson95a0d012019-12-18 13:55:23 -080011053
11054free_guest_fpu:
Tom Lendackyed02b212020-12-10 11:10:01 -060011055 kvm_free_guest_fpu(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011056free_user_fpu:
11057 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011058free_emulate_ctxt:
11059 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011060free_wbinvd_dirty_mask:
11061 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
11062fail_free_mce_banks:
11063 kfree(vcpu->arch.mce_banks);
11064fail_free_pio_data:
11065 free_page((unsigned long)vcpu->arch.pio_data);
11066fail_free_lapic:
11067 kvm_free_lapic(vcpu);
11068fail_mmu_destroy:
11069 kvm_mmu_destroy(vcpu);
11070 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011071}
11072
Dominik Dingel31928aa2014-12-04 15:47:07 +010011073void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011074{
Andrew Jones332967a2014-02-28 12:52:55 +010011075 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011076
Christoffer Dallec7660c2017-12-04 21:35:23 +010011077 if (mutex_lock_killable(&vcpu->mutex))
Dominik Dingel31928aa2014-12-04 15:47:07 +010011078 return;
Christoffer Dallec7660c2017-12-04 21:35:23 +010011079 vcpu_load(vcpu);
Paolo Bonzini0c899c22020-09-24 14:45:27 +020011080 kvm_synchronize_tsc(vcpu, 0);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011081 vcpu_put(vcpu);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030011082
11083 /* poll control enabled by default */
11084 vcpu->arch.msr_kvm_poll_control = 1;
11085
Christoffer Dallec7660c2017-12-04 21:35:23 +010011086 mutex_unlock(&vcpu->mutex);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011087
Wanpeng Lib34de572020-02-28 11:18:41 +080011088 if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0)
11089 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
11090 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -020011091}
11092
Hollis Blanchardd40ccc62007-11-19 14:04:43 -060011093void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011094{
Sean Christopherson95a0d012019-12-18 13:55:23 -080011095 int idx;
Gleb Natapov344d9582010-10-14 11:22:50 +020011096
Sean Christopherson50b143e2019-12-18 13:55:07 -080011097 kvmclock_reset(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011098
Jason Baronb36464772021-01-14 22:27:56 -050011099 static_call(kvm_x86_vcpu_free)(vcpu);
Sean Christopherson50b143e2019-12-18 13:55:07 -080011100
Sean Christophersonc9b8b072020-02-18 15:29:48 -080011101 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson50b143e2019-12-18 13:55:07 -080011102 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
11103 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
Tom Lendackyed02b212020-12-10 11:10:01 -060011104 kvm_free_guest_fpu(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011105
11106 kvm_hv_vcpu_uninit(vcpu);
11107 kvm_pmu_destroy(vcpu);
11108 kfree(vcpu->arch.mce_banks);
11109 kvm_free_lapic(vcpu);
11110 idx = srcu_read_lock(&vcpu->kvm->srcu);
11111 kvm_mmu_destroy(vcpu);
11112 srcu_read_unlock(&vcpu->kvm->srcu, idx);
11113 free_page((unsigned long)vcpu->arch.pio_data);
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +020011114 kvfree(vcpu->arch.cpuid_entries);
Sean Christopherson95a0d012019-12-18 13:55:23 -080011115 if (!lapic_in_kernel(vcpu))
Cun Li6e4e3b42021-01-11 23:24:35 +080011116 static_branch_dec(&kvm_has_noapic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011117}
11118
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011119void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011120{
Sean Christopherson25b97842021-09-29 15:24:26 -070011121 struct kvm_cpuid_entry2 *cpuid_0x1;
Sean Christopherson0aa18372021-06-22 10:56:48 -070011122 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Sean Christopherson4c72ab52021-07-13 09:33:24 -070011123 unsigned long new_cr0;
Sean Christopherson0aa18372021-06-22 10:56:48 -070011124
Sean Christopherson62dd57d2021-09-20 17:03:03 -070011125 /*
11126 * Several of the "set" flows, e.g. ->set_cr0(), read other registers
11127 * to handle side effects. RESET emulation hits those flows and relies
11128 * on emulated/virtualized registers, including those that are loaded
11129 * into hardware, to be zeroed at vCPU creation. Use CRs as a sentinel
11130 * to detect improper or missing initialization.
11131 */
11132 WARN_ON_ONCE(!init_event &&
11133 (old_cr0 || kvm_read_cr3(vcpu) || kvm_read_cr4(vcpu)));
11134
Radim Krčmářb7e31be2018-03-01 15:24:25 +010011135 kvm_lapic_reset(vcpu, init_event);
11136
Paolo Bonzinie69fab52015-06-04 10:44:44 +020011137 vcpu->arch.hflags = 0;
11138
Paolo Bonzinic43203c2016-06-01 22:26:00 +020011139 vcpu->arch.smi_pending = 0;
Liran Alon52797bf2017-11-15 13:43:14 +020011140 vcpu->arch.smi_count = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +030011141 atomic_set(&vcpu->arch.nmi_queued, 0);
11142 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +020011143 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +030011144 kvm_clear_interrupt_queue(vcpu);
11145 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +020011146
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011147 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +030011148 kvm_update_dr0123(vcpu);
Chenyi Qiang9a3ecd52021-02-02 17:04:31 +080011149 vcpu->arch.dr6 = DR6_ACTIVE_LOW;
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011150 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +020011151 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +010011152
Nadav Amit11190222015-04-02 03:10:38 +030011153 vcpu->arch.cr2 = 0;
11154
Avi Kivity3842d132010-07-27 12:30:24 +030011155 kvm_make_request(KVM_REQ_EVENT, vcpu);
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020011156 vcpu->arch.apf.msr_en_val = 0;
11157 vcpu->arch.apf.msr_int_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -040011158 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +030011159
Glauber Costa12f9a482011-02-01 14:16:40 -050011160 kvmclock_reset(vcpu);
11161
Gleb Natapovaf585b92010-10-14 11:22:46 +020011162 kvm_clear_async_pf_completion_queue(vcpu);
11163 kvm_async_pf_hash_reset(vcpu);
11164 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011165
Tom Lendackyed02b212020-12-10 11:10:01 -060011166 if (vcpu->arch.guest_fpu && kvm_mpx_supported()) {
Wanpeng Lia554d202017-10-11 05:10:19 -070011167 void *mpx_state_buffer;
11168
11169 /*
11170 * To avoid have the INIT path from kvm_apic_has_events() that be
11171 * called with loaded FPU and does not let userspace fix the state.
11172 */
Rik van Rielf775b132017-11-14 16:54:23 -050011173 if (init_event)
11174 kvm_put_guest_fpu(vcpu);
Marc Orrb666a4b2018-11-06 14:53:56 -080011175 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +020011176 XFEATURE_BNDREGS);
Wanpeng Lia554d202017-10-11 05:10:19 -070011177 if (mpx_state_buffer)
11178 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndreg_state));
Marc Orrb666a4b2018-11-06 14:53:56 -080011179 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +020011180 XFEATURE_BNDCSR);
Wanpeng Lia554d202017-10-11 05:10:19 -070011181 if (mpx_state_buffer)
11182 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndcsr));
Rik van Rielf775b132017-11-14 16:54:23 -050011183 if (init_event)
11184 kvm_load_guest_fpu(vcpu);
Wanpeng Lia554d202017-10-11 05:10:19 -070011185 }
11186
Paolo Bonzini64d60672015-05-07 11:36:11 +020011187 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +030011188 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +020011189 vcpu->arch.smbase = 0x30000;
Kyle Hueydb2336a2017-03-20 01:16:28 -070011190
Kyle Hueydb2336a2017-03-20 01:16:28 -070011191 vcpu->arch.msr_misc_features_enables = 0;
Wanpeng Lia554d202017-10-11 05:10:19 -070011192
11193 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Paolo Bonzini64d60672015-05-07 11:36:11 +020011194 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020011195
Sean Christophersonff8828c2021-09-20 17:02:56 -070011196 /* All GPRs except RDX (handled below) are zeroed on RESET/INIT. */
Julian Stecklina66f7b722012-12-05 15:26:19 +010011197 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
Sean Christophersonff8828c2021-09-20 17:02:56 -070011198 kvm_register_mark_dirty(vcpu, VCPU_REGS_RSP);
Julian Stecklina66f7b722012-12-05 15:26:19 +010011199
Sean Christopherson49d86652021-07-13 09:32:57 -070011200 /*
11201 * Fall back to KVM's default Family/Model/Stepping of 0x600 (P6/Athlon)
11202 * if no CPUID match is found. Note, it's impossible to get a match at
11203 * RESET since KVM emulates RESET before exposing the vCPU to userspace,
Sean Christopherson25b97842021-09-29 15:24:26 -070011204 * i.e. it's impossible for kvm_find_cpuid_entry() to find a valid entry
11205 * on RESET. But, go through the motions in case that's ever remedied.
Sean Christopherson49d86652021-07-13 09:32:57 -070011206 */
Sean Christopherson25b97842021-09-29 15:24:26 -070011207 cpuid_0x1 = kvm_find_cpuid_entry(vcpu, 1, 0);
11208 kvm_rdx_write(vcpu, cpuid_0x1 ? cpuid_0x1->eax : 0x600);
Sean Christopherson49d86652021-07-13 09:32:57 -070011209
Wanpeng Lia554d202017-10-11 05:10:19 -070011210 vcpu->arch.ia32_xss = 0;
11211
Jason Baronb36464772021-01-14 22:27:56 -050011212 static_call(kvm_x86_vcpu_reset)(vcpu, init_event);
Sean Christopherson0aa18372021-06-22 10:56:48 -070011213
Sean Christophersonf39e8052021-07-13 09:33:14 -070011214 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
11215 kvm_rip_write(vcpu, 0xfff0);
11216
Sean Christopherson03a6e842021-09-20 17:02:55 -070011217 vcpu->arch.cr3 = 0;
11218 kvm_register_mark_dirty(vcpu, VCPU_EXREG_CR3);
11219
Sean Christopherson4c72ab52021-07-13 09:33:24 -070011220 /*
11221 * CR0.CD/NW are set on RESET, preserved on INIT. Note, some versions
11222 * of Intel's SDM list CD/NW as being set on INIT, but they contradict
11223 * (or qualify) that with a footnote stating that CD/NW are preserved.
11224 */
11225 new_cr0 = X86_CR0_ET;
11226 if (init_event)
11227 new_cr0 |= (old_cr0 & (X86_CR0_NW | X86_CR0_CD));
11228 else
11229 new_cr0 |= X86_CR0_NW | X86_CR0_CD;
11230
11231 static_call(kvm_x86_set_cr0)(vcpu, new_cr0);
Sean Christophersonf39e8052021-07-13 09:33:14 -070011232 static_call(kvm_x86_set_cr4)(vcpu, 0);
11233 static_call(kvm_x86_set_efer)(vcpu, 0);
11234 static_call(kvm_x86_update_exception_bitmap)(vcpu);
11235
Sean Christopherson0aa18372021-06-22 10:56:48 -070011236 /*
11237 * Reset the MMU context if paging was enabled prior to INIT (which is
11238 * implied if CR0.PG=1 as CR0 will be '0' prior to RESET). Unlike the
11239 * standard CR0/CR4/EFER modification paths, only CR0.PG needs to be
11240 * checked because it is unconditionally cleared on INIT and all other
11241 * paging related bits are ignored if paging is disabled, i.e. CR0.WP,
11242 * CR4, and EFER changes are all irrelevant if CR0.PG was '0'.
11243 */
11244 if (old_cr0 & X86_CR0_PG)
11245 kvm_mmu_reset_context(vcpu);
Sean Christophersondf37ed32021-07-13 09:32:39 -070011246
11247 /*
11248 * Intel's SDM states that all TLB entries are flushed on INIT. AMD's
11249 * APM states the TLBs are untouched by INIT, but it also states that
11250 * the TLBs are flushed on "External initialization of the processor."
11251 * Flush the guest TLB regardless of vendor, there is no meaningful
11252 * benefit in relying on the guest to flush the TLB immediately after
11253 * INIT. A spurious TLB flush is benign and likely negligible from a
11254 * performance perspective.
11255 */
11256 if (init_event)
11257 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011258}
Sean Christopherson265e4352021-07-13 09:33:22 -070011259EXPORT_SYMBOL_GPL(kvm_vcpu_reset);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011260
Paolo Bonzini2b4a2732014-11-24 14:35:24 +010011261void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +010011262{
11263 struct kvm_segment cs;
11264
11265 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
11266 cs.selector = vector << 8;
11267 cs.base = vector << 12;
11268 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
11269 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011270}
Tom Lendacky647daca2021-01-04 14:20:01 -060011271EXPORT_SYMBOL_GPL(kvm_vcpu_deliver_sipi_vector);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011272
Radim Krčmář13a34e02014-08-28 15:13:03 +020011273int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011274{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -100011275 struct kvm *kvm;
11276 struct kvm_vcpu *vcpu;
11277 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011278 int ret;
11279 u64 local_tsc;
11280 u64 max_tsc = 0;
11281 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +030011282
Sean Christopherson7e34fbd2020-09-23 11:03:55 -070011283 kvm_user_return_msr_cpu_online();
Jason Baronb36464772021-01-14 22:27:56 -050011284 ret = static_call(kvm_x86_hardware_enable)();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011285 if (ret != 0)
11286 return ret;
11287
Andy Lutomirski4ea16362015-06-25 18:44:07 +020011288 local_tsc = rdtsc();
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010011289 stable = !kvm_check_tsc_unstable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011290 list_for_each_entry(kvm, &vm_list, vm_list) {
11291 kvm_for_each_vcpu(i, vcpu, kvm) {
11292 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +080011293 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011294 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
11295 backwards_tsc = true;
11296 if (vcpu->arch.last_host_tsc > max_tsc)
11297 max_tsc = vcpu->arch.last_host_tsc;
11298 }
11299 }
11300 }
11301
11302 /*
11303 * Sometimes, even reliable TSCs go backwards. This happens on
11304 * platforms that reset TSC during suspend or hibernate actions, but
11305 * maintain synchronization. We must compensate. Fortunately, we can
11306 * detect that condition here, which happens early in CPU bringup,
11307 * before any KVM threads can be running. Unfortunately, we can't
11308 * bring the TSCs fully up to date with real time, as we aren't yet far
11309 * enough into CPU bringup that we know how much real time has actually
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +020011310 * elapsed; our helper function, ktime_get_boottime_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011311 * variables that haven't been updated yet.
11312 *
11313 * So we simply find the maximum observed TSC above, then record the
11314 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
11315 * the adjustment will be applied. Note that we accumulate
11316 * adjustments, in case multiple suspend cycles happen before some VCPU
11317 * gets a chance to run again. In the event that no KVM threads get a
11318 * chance to run, we will miss the entire elapsed period, as we'll have
11319 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
11320 * loose cycle time. This isn't too big a deal, since the loss will be
11321 * uniform across all VCPUs (not to mention the scenario is extremely
11322 * unlikely). It is possible that a second hibernate recovery happens
11323 * much faster than a first, causing the observed TSC here to be
11324 * smaller; this would require additional padding adjustment, which is
11325 * why we set last_host_tsc to the local tsc observed here.
11326 *
11327 * N.B. - this code below runs only on platforms with reliable TSC,
11328 * as that is the only way backwards_tsc is set above. Also note
11329 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
11330 * have the same delta_cyc adjustment applied if backwards_tsc
11331 * is detected. Note further, this adjustment is only done once,
11332 * as we reset last_host_tsc on all VCPUs to stop this from being
11333 * called multiple times (one for each physical CPU bringup).
11334 *
Guo Chao4a969982012-06-28 15:17:27 +080011335 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011336 * will be compensated by the logic in vcpu_load, which sets the TSC to
11337 * catchup mode. This will catchup all VCPUs to real time, but cannot
11338 * guarantee that they stay in perfect synchronization.
11339 */
11340 if (backwards_tsc) {
11341 u64 delta_cyc = max_tsc - local_tsc;
11342 list_for_each_entry(kvm, &vm_list, vm_list) {
Ladi Proseka826faf2017-06-26 09:56:43 +020011343 kvm->arch.backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011344 kvm_for_each_vcpu(i, vcpu, kvm) {
11345 vcpu->arch.tsc_offset_adjustment += delta_cyc;
11346 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +080011347 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -020011348 }
11349
11350 /*
11351 * We have to disable TSC offset matching.. if you were
11352 * booting a VM while issuing an S4 host suspend....
11353 * you may have some problem. Solving this issue is
11354 * left as an exercise to the reader.
11355 */
11356 kvm->arch.last_tsc_nsec = 0;
11357 kvm->arch.last_tsc_write = 0;
11358 }
11359
11360 }
11361 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011362}
11363
Radim Krčmář13a34e02014-08-28 15:13:03 +020011364void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011365{
Jason Baronb36464772021-01-14 22:27:56 -050011366 static_call(kvm_x86_hardware_disable)();
Radim Krčmář13a34e02014-08-28 15:13:03 +020011367 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011368}
11369
Sean Christophersonb9904082020-03-21 13:25:55 -070011370int kvm_arch_hardware_setup(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011371{
Sean Christophersond008dfd2020-03-21 13:25:56 -070011372 struct kvm_x86_init_ops *ops = opaque;
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011373 int r;
11374
Sean Christopherson91661982020-03-02 15:57:06 -080011375 rdmsrl_safe(MSR_EFER, &host_efer);
11376
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011377 if (boot_cpu_has(X86_FEATURE_XSAVES))
11378 rdmsrl(MSR_IA32_XSS, host_xss);
11379
Sean Christophersond008dfd2020-03-21 13:25:56 -070011380 r = ops->hardware_setup();
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011381 if (r != 0)
11382 return r;
11383
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011384 memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops));
Jason Baronb36464772021-01-14 22:27:56 -050011385 kvm_ops_static_call_update();
Sean Christopherson69c6f692020-03-21 13:25:59 -070011386
Paolo Bonzini408e9a32020-03-05 16:11:56 +010011387 if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES))
11388 supported_xss = 0;
11389
Paolo Bonzini139f7422020-05-05 09:40:46 -040011390#define __kvm_cpu_cap_has(UNUSED_, f) kvm_cpu_cap_has(f)
11391 cr4_reserved_bits = __cr4_reserved_bits(__kvm_cpu_cap_has, UNUSED_);
11392#undef __kvm_cpu_cap_has
Sean Christophersonb11306b2019-12-10 14:44:13 -080011393
Haozhong Zhang35181e82015-10-20 15:39:03 +080011394 if (kvm_has_tsc_control) {
11395 /*
11396 * Make sure the user can only configure tsc_khz values that
11397 * fit into a signed integer.
Marcelo Tosatti273ba452018-06-11 14:12:10 -030011398 * A min value is not calculated because it will always
Haozhong Zhang35181e82015-10-20 15:39:03 +080011399 * be 1 on all machines.
11400 */
11401 u64 max = min(0x7fffffffULL,
11402 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
11403 kvm_max_guest_tsc_khz = max;
11404
Haozhong Zhangad7218832015-10-20 15:39:02 +080011405 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +080011406 }
Haozhong Zhangad7218832015-10-20 15:39:02 +080011407
Nadav Amit9e9c3fe2015-04-12 21:47:15 +030011408 kvm_init_msr_list();
11409 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011410}
11411
11412void kvm_arch_hardware_unsetup(void)
11413{
Jason Baronb36464772021-01-14 22:27:56 -050011414 static_call(kvm_x86_hardware_unsetup)();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011415}
11416
Sean Christophersonb9904082020-03-21 13:25:55 -070011417int kvm_arch_check_processor_compat(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011418{
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011419 struct cpuinfo_x86 *c = &cpu_data(smp_processor_id());
Sean Christophersond008dfd2020-03-21 13:25:56 -070011420 struct kvm_x86_init_ops *ops = opaque;
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011421
11422 WARN_ON(!irqs_disabled());
11423
Paolo Bonzini139f7422020-05-05 09:40:46 -040011424 if (__cr4_reserved_bits(cpu_has, c) !=
11425 __cr4_reserved_bits(cpu_has, &boot_cpu_data))
Sean Christophersonf1cdecf2019-12-10 14:44:14 -080011426 return -EIO;
11427
Sean Christophersond008dfd2020-03-21 13:25:56 -070011428 return ops->check_processor_compatibility();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080011429}
11430
Paolo Bonzinid71ba782015-07-29 11:56:48 +020011431bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
11432{
11433 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
11434}
11435EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
11436
11437bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
11438{
11439 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
11440}
11441
Cun Li6e4e3b42021-01-11 23:24:35 +080011442__read_mostly DEFINE_STATIC_KEY_FALSE(kvm_has_noapic_vcpu);
11443EXPORT_SYMBOL_GPL(kvm_has_noapic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +030011444
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011445void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
11446{
Like Xub35e5542019-10-27 18:52:43 +080011447 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
11448
Paolo Bonzinic595cee2018-07-02 13:07:14 +020011449 vcpu->arch.l1tf_flush_l1d = true;
Like Xub35e5542019-10-27 18:52:43 +080011450 if (pmu->version && unlikely(pmu->event_count)) {
11451 pmu->need_cleanup = true;
11452 kvm_make_request(KVM_REQ_PMU, vcpu);
11453 }
Jason Baronb36464772021-01-14 22:27:56 -050011454 static_call(kvm_x86_sched_in)(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +020011455}
11456
Sean Christopherson562b6b02020-01-26 16:41:13 -080011457void kvm_arch_free_vm(struct kvm *kvm)
11458{
Vitaly Kuznetsov05f04ae2021-01-26 14:48:09 +010011459 kfree(to_kvm_hv(kvm)->hv_pa_pg);
Juergen Gross78b497f2021-09-03 15:08:05 +020011460 __kvm_arch_free_vm(kvm);
Sean Christopherson562b6b02020-01-26 16:41:13 -080011461}
11462
11463
Carsten Ottee08b9632012-01-04 10:25:20 +010011464int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011465{
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011466 int ret;
Paolo Bonzini869b4422021-09-16 18:15:36 +000011467 unsigned long flags;
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011468
Carsten Ottee08b9632012-01-04 10:25:20 +010011469 if (type)
11470 return -EINVAL;
11471
Haimin Zhangeb7511b2021-09-03 10:37:06 +080011472 ret = kvm_page_track_init(kvm);
11473 if (ret)
11474 return ret;
11475
Paolo Bonzini6ef768f2014-11-20 13:45:31 +010011476 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +080011477 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Sean Christopherson10605202019-09-12 19:46:10 -070011478 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011479 INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030011480 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060011481 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011482
Sheng Yang5550af42008-10-15 20:15:06 +080011483 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
11484 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -060011485 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
11486 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
11487 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +080011488
Jan Kiszka038f8c12011-02-04 10:49:11 +010011489 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +030011490 mutex_init(&kvm->arch.apic_map_lock);
Paolo Bonzini869b4422021-09-16 18:15:36 +000011491 seqcount_raw_spinlock_init(&kvm->arch.pvclock_sc, &kvm->arch.tsc_write_lock);
Paolo Bonzini8171cd62020-01-22 14:36:09 +010011492 kvm->arch.kvmclock_offset = -get_kvmclock_base_ns();
Paolo Bonzini869b4422021-09-16 18:15:36 +000011493
11494 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattid8281992012-11-27 23:29:01 -020011495 pvclock_update_vm_gtod_copy(kvm);
Paolo Bonzini869b4422021-09-16 18:15:36 +000011496 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +010011497
Drew Schmitt6fbbde92018-08-20 10:32:15 -070011498 kvm->arch.guest_can_read_msr_platform_info = true;
11499
Vineeth Pillai3c86c0d2021-06-03 15:14:36 +000011500#if IS_ENABLED(CONFIG_HYPERV)
11501 spin_lock_init(&kvm->arch.hv_root_tdp_lock);
11502 kvm->arch.hv_root_tdp = INVALID_PAGE;
11503#endif
11504
Andrew Jones7e44e442014-02-28 12:52:54 +010011505 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +010011506 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +010011507
Vitaly Kuznetsov4651fc52021-06-09 17:09:09 +020011508 kvm_apicv_init(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011509 kvm_hv_init_vm(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011510 kvm_mmu_init_vm(kvm);
Paolo Bonzini319afe62021-08-04 12:48:41 -040011511 kvm_xen_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +080011512
Jason Baronb36464772021-01-14 22:27:56 -050011513 return static_call(kvm_x86_vm_init)(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011514}
11515
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011516int kvm_arch_post_init_vm(struct kvm *kvm)
11517{
11518 return kvm_mmu_post_init_vm(kvm);
11519}
11520
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011521static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
11522{
Christoffer Dallec7660c2017-12-04 21:35:23 +010011523 vcpu_load(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011524 kvm_mmu_unload(vcpu);
11525 vcpu_put(vcpu);
11526}
11527
11528static void kvm_free_vcpus(struct kvm *kvm)
11529{
11530 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011531 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011532
11533 /*
11534 * Unpin any mmu pages first.
11535 */
Gleb Natapovaf585b92010-10-14 11:22:46 +020011536 kvm_for_each_vcpu(i, vcpu, kvm) {
11537 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011538 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020011539 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011540 kvm_for_each_vcpu(i, vcpu, kvm)
Sean Christopherson4543bdc2019-12-18 13:55:14 -080011541 kvm_vcpu_destroy(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011542
Gleb Natapov988a2ca2009-06-09 15:56:29 +030011543 mutex_lock(&kvm->lock);
11544 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
11545 kvm->vcpus[i] = NULL;
11546
11547 atomic_set(&kvm->online_vcpus, 0);
11548 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011549}
11550
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011551void kvm_arch_sync_events(struct kvm *kvm)
11552{
Andrew Jones332967a2014-02-28 12:52:55 +010011553 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +010011554 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +080011555 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +080011556}
11557
Peter Xuff5a9832020-09-30 21:20:33 -040011558#define ERR_PTR_USR(e) ((void __user *)ERR_PTR(e))
11559
11560/**
11561 * __x86_set_memory_region: Setup KVM internal memory slot
11562 *
11563 * @kvm: the kvm pointer to the VM.
11564 * @id: the slot ID to setup.
11565 * @gpa: the GPA to install the slot (unused when @size == 0).
11566 * @size: the size of the slot. Set to zero to uninstall a slot.
11567 *
11568 * This function helps to setup a KVM internal memory slot. Specify
11569 * @size > 0 to install a new slot, while @size == 0 to uninstall a
11570 * slot. The return code can be one of the following:
11571 *
11572 * HVA: on success (uninstall will return a bogus HVA)
11573 * -errno: on error
11574 *
11575 * The caller should always use IS_ERR() to check the return value
11576 * before use. Note, the KVM internal memory slots are guaranteed to
11577 * remain valid and unchanged until the VM is destroyed, i.e., the
11578 * GPA->HVA translation will not change. However, the HVA is a user
11579 * address, i.e. its accessibility is not guaranteed, and must be
11580 * accessed via __copy_{to,from}_user().
11581 */
11582void __user * __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa,
11583 u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011584{
11585 int i, r;
Kees Cook3f649ab2020-06-03 13:09:38 -070011586 unsigned long hva, old_npages;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011587 struct kvm_memslots *slots = kvm_memslots(kvm);
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011588 struct kvm_memory_slot *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011589
11590 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011591 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
Peter Xuff5a9832020-09-30 21:20:33 -040011592 return ERR_PTR_USR(-EINVAL);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011593
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011594 slot = id_to_memslot(slots, id);
11595 if (size) {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011596 if (slot && slot->npages)
Peter Xuff5a9832020-09-30 21:20:33 -040011597 return ERR_PTR_USR(-EEXIST);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011598
11599 /*
11600 * MAP_SHARED to prevent internal slot pages from being moved
11601 * by fork()/COW.
11602 */
11603 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
11604 MAP_SHARED | MAP_ANONYMOUS, 0);
11605 if (IS_ERR((void *)hva))
Peter Xuff5a9832020-09-30 21:20:33 -040011606 return (void __user *)hva;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011607 } else {
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011608 if (!slot || !slot->npages)
Muhammad Usama Anjum46914532021-03-05 23:08:16 +050011609 return NULL;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011610
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011611 old_npages = slot->npages;
Zheng Zhan Liangb66f9ba2021-02-01 13:53:10 +080011612 hva = slot->userspace_addr;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011613 }
11614
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011615 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011616 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011617
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011618 m.slot = id | (i << 16);
11619 m.flags = 0;
11620 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011621 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +020011622 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011623 r = __kvm_set_memory_region(kvm, &m);
11624 if (r < 0)
Peter Xuff5a9832020-09-30 21:20:33 -040011625 return ERR_PTR_USR(r);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011626 }
11627
Eric Biggers103c7632018-01-31 17:30:21 -080011628 if (!size)
Sean Christopherson0577d1a2020-02-18 13:07:31 -080011629 vm_munmap(hva, old_npages * PAGE_SIZE);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +020011630
Peter Xuff5a9832020-09-30 21:20:33 -040011631 return (void __user *)hva;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +020011632}
11633EXPORT_SYMBOL_GPL(__x86_set_memory_region);
11634
Junaid Shahid1aa9b952019-11-04 20:26:00 +010011635void kvm_arch_pre_destroy_vm(struct kvm *kvm)
11636{
11637 kvm_mmu_pre_destroy_vm(kvm);
11638}
11639
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011640void kvm_arch_destroy_vm(struct kvm *kvm)
11641{
Andrew Honig27469d22013-04-18 09:38:14 -070011642 if (current->mm == kvm->mm) {
11643 /*
11644 * Free memory regions allocated on behalf of userspace,
11645 * unless the the memory map has changed due to process exit
11646 * or fd copying.
11647 */
Peter Xu6a3c6232020-01-09 09:57:16 -050011648 mutex_lock(&kvm->slots_lock);
11649 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
11650 0, 0);
11651 __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
11652 0, 0);
11653 __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
11654 mutex_unlock(&kvm->slots_lock);
Andrew Honig27469d22013-04-18 09:38:14 -070011655 }
Jason Baronb36464772021-01-14 22:27:56 -050011656 static_call_cond(kvm_x86_vm_destroy)(kvm);
Sean Christophersonb318e8d2021-03-16 11:44:33 -070011657 kvm_free_msr_filter(srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1));
Peter Xuc7611592017-03-15 16:01:19 +080011658 kvm_pic_destroy(kvm);
11659 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011660 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +020011661 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Eric Hankland66bb8a02019-07-10 18:25:15 -070011662 kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +080011663 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +020011664 kvm_page_track_cleanup(kvm);
David Woodhouse7d6bbeb2021-02-02 15:48:05 +000011665 kvm_xen_destroy_vm(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +030011666 kvm_hv_destroy_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +080011667}
Zhang Xiantao0de10342007-11-20 16:25:04 +080011668
Ben Gardonc9b929b2021-05-18 10:34:08 -070011669static void memslot_rmap_free(struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011670{
11671 int i;
11672
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011673 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011674 kvfree(slot->arch.rmap[i]);
11675 slot->arch.rmap[i] = NULL;
Ben Gardonc9b929b2021-05-18 10:34:08 -070011676 }
11677}
Sean Christophersone96c81e2020-02-18 13:07:27 -080011678
Ben Gardonc9b929b2021-05-18 10:34:08 -070011679void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
11680{
11681 int i;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011682
Ben Gardonc9b929b2021-05-18 10:34:08 -070011683 memslot_rmap_free(slot);
11684
11685 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -080011686 kvfree(slot->arch.lpage_info[i - 1]);
11687 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011688 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011689
Sean Christophersone96c81e2020-02-18 13:07:27 -080011690 kvm_page_track_free_memslot(slot);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011691}
11692
David Stevens1e76a3c2021-10-15 12:30:21 -040011693int memslot_rmap_alloc(struct kvm_memory_slot *slot, unsigned long npages)
Ben Gardon56dd1012021-05-18 10:34:09 -070011694{
11695 const int sz = sizeof(*slot->arch.rmap[0]);
11696 int i;
11697
11698 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
11699 int level = i + 1;
Peter Xu4139b192021-07-30 18:04:51 -040011700 int lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Ben Gardon56dd1012021-05-18 10:34:09 -070011701
Paolo Bonzinifa138432021-10-15 13:05:00 -040011702 if (slot->arch.rmap[i])
11703 continue;
Ben Gardond501f742021-05-18 10:34:14 -070011704
Ben Gardon56dd1012021-05-18 10:34:09 -070011705 slot->arch.rmap[i] = kvcalloc(lpages, sz, GFP_KERNEL_ACCOUNT);
11706 if (!slot->arch.rmap[i]) {
11707 memslot_rmap_free(slot);
11708 return -ENOMEM;
11709 }
11710 }
11711
11712 return 0;
11713}
11714
Ben Gardona2557402021-05-18 10:34:12 -070011715static int kvm_alloc_memslot_metadata(struct kvm *kvm,
11716 struct kvm_memory_slot *slot,
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011717 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011718{
Ben Gardon56dd1012021-05-18 10:34:09 -070011719 int i, r;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011720
Sean Christophersonedd4fa32020-02-18 13:07:15 -080011721 /*
11722 * Clear out the previous array pointers for the KVM_MR_MOVE case. The
11723 * old arrays will be freed by __kvm_set_memory_region() if installing
11724 * the new memslot is successful.
11725 */
11726 memset(&slot->arch, 0, sizeof(slot->arch));
11727
Ben Gardone2209712021-05-18 10:34:13 -070011728 if (kvm_memslots_have_rmaps(kvm)) {
Ben Gardona2557402021-05-18 10:34:12 -070011729 r = memslot_rmap_alloc(slot, npages);
11730 if (r)
11731 return r;
11732 }
Ben Gardon56dd1012021-05-18 10:34:09 -070011733
11734 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011735 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011736 unsigned long ugfn;
11737 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011738 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011739
Peter Xu4139b192021-07-30 18:04:51 -040011740 lpages = __kvm_mmu_slot_lpages(slot, npages, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011741
Ben Gardon254272c2019-02-11 11:02:50 -080011742 linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT);
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011743 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011744 goto out_free;
11745
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011746 slot->arch.lpage_info[i - 1] = linfo;
11747
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011748 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011749 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011750 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011751 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011752 ugfn = slot->userspace_addr >> PAGE_SHIFT;
11753 /*
11754 * If the gfn and userspace address are not aligned wrt each
Sean Christopherson600087b2020-03-02 15:57:05 -080011755 * other, disable large page support for this slot.
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011756 */
Sean Christopherson600087b2020-03-02 15:57:05 -080011757 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011758 unsigned long j;
11759
11760 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +080011761 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011762 }
11763 }
11764
David Stevensdeae4a12021-09-22 13:58:59 +090011765 if (kvm_page_track_create_memslot(kvm, slot, npages))
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080011766 goto out_free;
11767
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011768 return 0;
11769
11770out_free:
Ben Gardonc9b929b2021-05-18 10:34:08 -070011771 memslot_rmap_free(slot);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011772
Ben Gardonc9b929b2021-05-18 10:34:08 -070011773 for (i = 1; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +010011774 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090011775 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090011776 }
11777 return -ENOMEM;
11778}
11779
Sean Christopherson15248252019-02-05 12:54:17 -080011780void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011781{
Boris Ostrovsky91724812019-12-05 01:30:51 +000011782 struct kvm_vcpu *vcpu;
11783 int i;
11784
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +090011785 /*
11786 * memslots->generation has been incremented.
11787 * mmio generation may have reached its maximum value.
11788 */
Sean Christopherson15248252019-02-05 12:54:17 -080011789 kvm_mmu_invalidate_mmio_sptes(kvm, gen);
Boris Ostrovsky91724812019-12-05 01:30:51 +000011790
11791 /* Force re-initialization of steal_time cache */
11792 kvm_for_each_vcpu(i, vcpu, kvm)
11793 kvm_vcpu_kick(vcpu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090011794}
11795
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011796int kvm_arch_prepare_memory_region(struct kvm *kvm,
11797 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +020011798 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +090011799 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +080011800{
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011801 if (change == KVM_MR_CREATE || change == KVM_MR_MOVE)
Ben Gardona2557402021-05-18 10:34:12 -070011802 return kvm_alloc_memslot_metadata(kvm, memslot,
Sean Christopherson0dab98b2020-02-18 13:07:19 -080011803 mem->memory_size >> PAGE_SHIFT);
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011804 return 0;
11805}
11806
Makarand Sonarea85863c2021-02-12 16:50:12 -080011807
11808static void kvm_mmu_update_cpu_dirty_logging(struct kvm *kvm, bool enable)
11809{
11810 struct kvm_arch *ka = &kvm->arch;
11811
11812 if (!kvm_x86_ops.cpu_dirty_log_size)
11813 return;
11814
11815 if ((enable && ++ka->cpu_dirty_logging_count == 1) ||
11816 (!enable && --ka->cpu_dirty_logging_count == 0))
11817 kvm_make_all_cpus_request(kvm, KVM_REQ_UPDATE_CPU_DIRTY_LOGGING);
11818
11819 WARN_ON_ONCE(ka->cpu_dirty_logging_count < 0);
11820}
11821
Kai Huang88178fd2015-01-28 10:54:27 +080011822static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
Anthony Yznaga37416792020-06-02 13:07:30 -070011823 struct kvm_memory_slot *old,
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011824 const struct kvm_memory_slot *new,
Anthony Yznaga37416792020-06-02 13:07:30 -070011825 enum kvm_mr_change change)
Kai Huang88178fd2015-01-28 10:54:27 +080011826{
Makarand Sonarea85863c2021-02-12 16:50:12 -080011827 bool log_dirty_pages = new->flags & KVM_MEM_LOG_DIRTY_PAGES;
11828
Anthony Yznaga37416792020-06-02 13:07:30 -070011829 /*
Makarand Sonarea85863c2021-02-12 16:50:12 -080011830 * Update CPU dirty logging if dirty logging is being toggled. This
11831 * applies to all operations.
11832 */
11833 if ((old->flags ^ new->flags) & KVM_MEM_LOG_DIRTY_PAGES)
11834 kvm_mmu_update_cpu_dirty_logging(kvm, log_dirty_pages);
11835
11836 /*
11837 * Nothing more to do for RO slots (which can't be dirtied and can't be
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011838 * made writable) or CREATE/MOVE/DELETE of a slot.
11839 *
11840 * For a memslot with dirty logging disabled:
11841 * CREATE: No dirty mappings will already exist.
11842 * MOVE/DELETE: The old mappings will already have been cleaned up by
11843 * kvm_arch_flush_shadow_memslot()
11844 *
11845 * For a memslot with dirty logging enabled:
11846 * CREATE: No shadow pages exist, thus nothing to write-protect
11847 * and no dirty bits to clear.
11848 * MOVE/DELETE: The old mappings will already have been cleaned up by
11849 * kvm_arch_flush_shadow_memslot().
Anthony Yznaga37416792020-06-02 13:07:30 -070011850 */
11851 if ((change != KVM_MR_FLAGS_ONLY) || (new->flags & KVM_MEM_READONLY))
Kai Huang88178fd2015-01-28 10:54:27 +080011852 return;
Kai Huang88178fd2015-01-28 10:54:27 +080011853
11854 /*
Sean Christopherson52f460792021-02-12 16:50:11 -080011855 * READONLY and non-flags changes were filtered out above, and the only
11856 * other flag is LOG_DIRTY_PAGES, i.e. something is wrong if dirty
11857 * logging isn't being toggled on or off.
Anthony Yznaga37416792020-06-02 13:07:30 -070011858 */
Sean Christopherson52f460792021-02-12 16:50:11 -080011859 if (WARN_ON_ONCE(!((old->flags ^ new->flags) & KVM_MEM_LOG_DIRTY_PAGES)))
11860 return;
11861
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011862 if (!log_dirty_pages) {
11863 /*
11864 * Dirty logging tracks sptes in 4k granularity, meaning that
11865 * large sptes have to be split. If live migration succeeds,
11866 * the guest in the source machine will be destroyed and large
11867 * sptes will be created in the destination. However, if the
11868 * guest continues to run in the source machine (for example if
11869 * live migration fails), small sptes will remain around and
11870 * cause bad performance.
11871 *
11872 * Scan sptes if dirty logging has been stopped, dropping those
11873 * which can be collapsed into a single large-page spte. Later
11874 * page faults will create the large-page sptes.
11875 */
Anthony Yznaga37416792020-06-02 13:07:30 -070011876 kvm_mmu_zap_collapsible_sptes(kvm, new);
Sean Christophersonb6e16ae2021-02-12 16:50:13 -080011877 } else {
Keqian Zhu89212912021-04-29 11:41:15 +080011878 /*
11879 * Initially-all-set does not require write protecting any page,
11880 * because they're all assumed to be dirty.
11881 */
11882 if (kvm_dirty_log_manual_protect_and_init_set(kvm))
11883 return;
Anthony Yznaga37416792020-06-02 13:07:30 -070011884
Sean Christophersona018eba2021-02-12 16:50:10 -080011885 if (kvm_x86_ops.cpu_dirty_log_size) {
Keqian Zhu89212912021-04-29 11:41:15 +080011886 kvm_mmu_slot_leaf_clear_dirty(kvm, new);
11887 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_2M);
11888 } else {
11889 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_4K);
Jay Zhou3c9bd402020-02-27 09:32:27 +080011890 }
Kai Huang88178fd2015-01-28 10:54:27 +080011891 }
11892}
11893
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011894void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +020011895 const struct kvm_userspace_memory_region *mem,
Sean Christopherson9d4c1972020-02-18 13:07:24 -080011896 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020011897 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +090011898 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -020011899{
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +080011900 if (!kvm->arch.n_requested_mmu_pages)
Wei Yang4d666232018-09-27 08:31:26 +080011901 kvm_mmu_change_mmu_pages(kvm,
11902 kvm_mmu_calculate_default_mmu_pages(kvm));
Kai Huang1c91cad42015-01-28 10:54:26 +080011903
Hamza Mahfooz269e9552021-07-12 22:33:38 -040011904 kvm_mmu_slot_apply_flags(kvm, old, new, change);
Sean Christopherson21198842020-02-18 13:07:25 -080011905
11906 /* Free the arrays associated with the old memslot. */
11907 if (change == KVM_MR_MOVE)
Sean Christophersone96c81e2020-02-18 13:07:27 -080011908 kvm_arch_free_memslot(kvm, old);
Zhang Xiantao0de10342007-11-20 16:25:04 +080011909}
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011910
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011911void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011912{
Sean Christopherson7390de12019-02-05 13:01:31 -080011913 kvm_mmu_zap_all(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030011914}
11915
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011916void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
11917 struct kvm_memory_slot *slot)
11918{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +080011919 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030011920}
11921
Liran Alone6c67d82018-09-04 10:56:52 +030011922static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
11923{
11924 return (is_guest_mode(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -070011925 kvm_x86_ops.guest_apic_has_interrupt &&
Jason Baronb36464772021-01-14 22:27:56 -050011926 static_call(kvm_x86_guest_apic_has_interrupt)(vcpu));
Liran Alone6c67d82018-09-04 10:56:52 +030011927}
11928
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011929static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
11930{
11931 if (!list_empty_careful(&vcpu->async_pf.done))
11932 return true;
11933
11934 if (kvm_apic_has_events(vcpu))
11935 return true;
11936
11937 if (vcpu->arch.pv.pv_unhalted)
11938 return true;
11939
Wanpeng Lia5f01f82017-09-13 04:04:01 -070011940 if (vcpu->arch.exception.pending)
11941 return true;
11942
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011943 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11944 (vcpu->arch.nmi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011945 static_call(kvm_x86_nmi_allowed)(vcpu, false)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011946 return true;
11947
ZhuangYanying47a66ee2017-05-26 13:16:48 +080011948 if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -040011949 (vcpu->arch.smi_pending &&
Jason Baronb36464772021-01-14 22:27:56 -050011950 static_call(kvm_x86_smi_allowed)(vcpu, false)))
Paolo Bonzini73917732015-10-13 10:19:35 +020011951 return true;
11952
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011953 if (kvm_arch_interrupt_allowed(vcpu) &&
Liran Alone6c67d82018-09-04 10:56:52 +030011954 (kvm_cpu_has_interrupt(vcpu) ||
11955 kvm_guest_apic_has_interrupt(vcpu)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011956 return true;
11957
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +030011958 if (kvm_hv_has_stimer_pending(vcpu))
11959 return true;
11960
Sean Christophersond2060bd2020-04-22 19:25:39 -070011961 if (is_guest_mode(vcpu) &&
11962 kvm_x86_ops.nested_ops->hv_timer_pending &&
11963 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
11964 return true;
11965
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011966 return false;
11967}
11968
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011969int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
11970{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020011971 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +080011972}
Zhang Xiantao57361992007-12-17 14:21:40 +080011973
Haiwei Li10dbdf92021-04-21 11:25:13 +080011974bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu)
11975{
11976 if (vcpu->arch.apicv_active && static_call(kvm_x86_dy_apicv_has_pending_interrupt)(vcpu))
11977 return true;
11978
11979 return false;
11980}
11981
Wanpeng Li17e433b2019-08-05 10:03:19 +080011982bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
11983{
11984 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
11985 return true;
11986
11987 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11988 kvm_test_request(KVM_REQ_SMI, vcpu) ||
11989 kvm_test_request(KVM_REQ_EVENT, vcpu))
11990 return true;
11991
Haiwei Li10dbdf92021-04-21 11:25:13 +080011992 return kvm_arch_dy_has_pending_interrupt(vcpu);
Wanpeng Li17e433b2019-08-05 10:03:19 +080011993}
11994
Longpeng(Mike)199b5762017-08-08 12:05:32 +080011995bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
11996{
Wanpeng Lib86bb112021-04-22 16:34:19 +080011997 if (vcpu->arch.guest_state_protected)
11998 return true;
11999
Longpeng(Mike)de63ad42017-08-08 12:05:33 +080012000 return vcpu->arch.preempted_in_kernel;
Longpeng(Mike)199b5762017-08-08 12:05:32 +080012001}
12002
Christoffer Dallb6d33832012-03-08 16:44:24 -050012003int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +080012004{
Christoffer Dallb6d33832012-03-08 16:44:24 -050012005 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +080012006}
Gleb Natapov78646122009-03-23 12:12:11 +020012007
12008int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
12009{
Jason Baronb36464772021-01-14 22:27:56 -050012010 return static_call(kvm_x86_interrupt_allowed)(vcpu, false);
Gleb Natapov78646122009-03-23 12:12:11 +020012011}
Marcelo Tosatti229456f2009-06-17 09:22:14 -030012012
Nadav Amit82b32772014-11-02 11:54:45 +020012013unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
12014{
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012015 /* Can't read the RIP when guest state is protected, just return 0 */
12016 if (vcpu->arch.guest_state_protected)
12017 return 0;
12018
Nadav Amit82b32772014-11-02 11:54:45 +020012019 if (is_64_bit_mode(vcpu))
12020 return kvm_rip_read(vcpu);
12021 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
12022 kvm_rip_read(vcpu));
12023}
12024EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
12025
Jan Kiszkaf92653e2010-02-23 17:47:55 +010012026bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
12027{
Nadav Amit82b32772014-11-02 11:54:45 +020012028 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +010012029}
12030EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
12031
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012032unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
12033{
12034 unsigned long rflags;
12035
Jason Baronb36464772021-01-14 22:27:56 -050012036 rflags = static_call(kvm_x86_get_rflags)(vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012037 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +010012038 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012039 return rflags;
12040}
12041EXPORT_SYMBOL_GPL(kvm_get_rflags);
12042
Paolo Bonzini6addfc42014-03-27 11:29:28 +010012043static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012044{
12045 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +010012046 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +010012047 rflags |= X86_EFLAGS_TF;
Jason Baronb36464772021-01-14 22:27:56 -050012048 static_call(kvm_x86_set_rflags)(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010012049}
12050
12051void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
12052{
12053 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +030012054 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020012055}
12056EXPORT_SYMBOL_GPL(kvm_set_rflags);
12057
Gleb Natapov56028d02010-10-17 18:13:42 +020012058void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
12059{
12060 int r;
12061
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020012062 if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +080012063 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +020012064 return;
12065
12066 r = kvm_mmu_reload(vcpu);
12067 if (unlikely(r))
12068 return;
12069
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020012070 if (!vcpu->arch.mmu->direct_map &&
Sean Christophersond8dd54e2020-03-02 18:02:39 -080012071 work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu))
Xiao Guangrongfb67e142010-12-07 10:35:25 +080012072 return;
12073
Sean Christopherson7a026742020-02-06 14:14:34 -080012074 kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true);
Gleb Natapov56028d02010-10-17 18:13:42 +020012075}
12076
Gleb Natapovaf585b92010-10-14 11:22:46 +020012077static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
12078{
Peter Xudd03bca2020-04-16 11:58:59 -040012079 BUILD_BUG_ON(!is_power_of_2(ASYNC_PF_PER_VCPU));
12080
Gleb Natapovaf585b92010-10-14 11:22:46 +020012081 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
12082}
12083
12084static inline u32 kvm_async_pf_next_probe(u32 key)
12085{
Peter Xudd03bca2020-04-16 11:58:59 -040012086 return (key + 1) & (ASYNC_PF_PER_VCPU - 1);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012087}
12088
12089static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12090{
12091 u32 key = kvm_async_pf_hash_fn(gfn);
12092
12093 while (vcpu->arch.apf.gfns[key] != ~0)
12094 key = kvm_async_pf_next_probe(key);
12095
12096 vcpu->arch.apf.gfns[key] = gfn;
12097}
12098
12099static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
12100{
12101 int i;
12102 u32 key = kvm_async_pf_hash_fn(gfn);
12103
Peter Xudd03bca2020-04-16 11:58:59 -040012104 for (i = 0; i < ASYNC_PF_PER_VCPU &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +080012105 (vcpu->arch.apf.gfns[key] != gfn &&
12106 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +020012107 key = kvm_async_pf_next_probe(key);
12108
12109 return key;
12110}
12111
12112bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12113{
12114 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
12115}
12116
12117static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
12118{
12119 u32 i, j, k;
12120
12121 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
Peter Xu0fd46042020-04-16 11:59:10 -040012122
12123 if (WARN_ON_ONCE(vcpu->arch.apf.gfns[i] != gfn))
12124 return;
12125
Gleb Natapovaf585b92010-10-14 11:22:46 +020012126 while (true) {
12127 vcpu->arch.apf.gfns[i] = ~0;
12128 do {
12129 j = kvm_async_pf_next_probe(j);
12130 if (vcpu->arch.apf.gfns[j] == ~0)
12131 return;
12132 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
12133 /*
12134 * k lies cyclically in ]i,j]
12135 * | i.k.j |
12136 * |....j i.k.| or |.k..j i...|
12137 */
12138 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
12139 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
12140 i = j;
12141 }
12142}
12143
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012144static inline int apf_put_user_notpresent(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020012145{
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012146 u32 reason = KVM_PV_REASON_PAGE_NOT_PRESENT;
12147
12148 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &reason,
12149 sizeof(reason));
12150}
12151
12152static inline int apf_put_user_ready(struct kvm_vcpu *vcpu, u32 token)
12153{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012154 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
Paolo Bonzini4e335d92017-05-02 16:20:18 +020012155
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012156 return kvm_write_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
12157 &token, offset, sizeof(token));
12158}
12159
12160static inline bool apf_pageready_slot_free(struct kvm_vcpu *vcpu)
12161{
12162 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
12163 u32 val;
12164
12165 if (kvm_read_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
12166 &val, offset, sizeof(val)))
12167 return false;
12168
12169 return !val;
Gleb Natapov7c907052010-10-14 11:22:53 +020012170}
12171
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012172static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
12173{
12174 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
12175 return false;
12176
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012177 if (!kvm_pv_async_pf_enabled(vcpu) ||
Jason Baronb36464772021-01-14 22:27:56 -050012178 (vcpu->arch.apf.send_user_only && static_call(kvm_x86_get_cpl)(vcpu) == 0))
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012179 return false;
12180
12181 return true;
12182}
12183
12184bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
12185{
12186 if (unlikely(!lapic_in_kernel(vcpu) ||
12187 kvm_event_needs_reinjection(vcpu) ||
12188 vcpu->arch.exception.pending))
12189 return false;
12190
12191 if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu))
12192 return false;
12193
12194 /*
12195 * If interrupts are off we cannot even use an artificial
12196 * halt state.
12197 */
Paolo Bonzinic300ab92020-04-23 14:08:58 -040012198 return kvm_arch_interrupt_allowed(vcpu);
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012199}
12200
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012201bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
Gleb Natapovaf585b92010-10-14 11:22:46 +020012202 struct kvm_async_pf *work)
12203{
Avi Kivity6389ee92010-11-29 16:12:30 +020012204 struct x86_exception fault;
12205
Sean Christopherson736c2912019-12-06 15:57:14 -080012206 trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012207 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +020012208
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012209 if (kvm_can_deliver_async_pf(vcpu) &&
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +020012210 !apf_put_user_notpresent(vcpu)) {
Avi Kivity6389ee92010-11-29 16:12:30 +020012211 fault.vector = PF_VECTOR;
12212 fault.error_code_valid = true;
12213 fault.error_code = 0;
12214 fault.nested_page_fault = false;
12215 fault.address = work->arch.token;
Wanpeng Liadfe20f2017-07-13 18:30:41 -070012216 fault.async_page_fault = true;
Avi Kivity6389ee92010-11-29 16:12:30 +020012217 kvm_inject_page_fault(vcpu, &fault);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012218 return true;
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020012219 } else {
12220 /*
12221 * It is not possible to deliver a paravirtualized asynchronous
12222 * page fault, but putting the guest in an artificial halt state
12223 * can be beneficial nevertheless: if an interrupt arrives, we
12224 * can deliver it timely and perhaps the guest will schedule
12225 * another process. When the instruction that triggered a page
12226 * fault is retried, hopefully the page will be ready in the host.
12227 */
12228 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012229 return false;
Gleb Natapov7c907052010-10-14 11:22:53 +020012230 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020012231}
12232
12233void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
12234 struct kvm_async_pf *work)
12235{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012236 struct kvm_lapic_irq irq = {
12237 .delivery_mode = APIC_DM_FIXED,
12238 .vector = vcpu->arch.apf.vec
12239 };
Avi Kivity6389ee92010-11-29 16:12:30 +020012240
chai wenf2e10662013-10-14 22:22:33 +080012241 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +020012242 work->arch.token = ~0; /* broadcast wakeup */
12243 else
12244 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Sean Christopherson736c2912019-12-06 15:57:14 -080012245 trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa);
Gleb Natapov7c907052010-10-14 11:22:53 +020012246
Vitaly Kuznetsov2a18b7e2020-06-10 19:55:32 +020012247 if ((work->wakeup_all || work->notpresent_injected) &&
12248 kvm_pv_async_pf_enabled(vcpu) &&
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012249 !apf_put_user_ready(vcpu, work->arch.token)) {
12250 vcpu->arch.apf.pageready_pending = true;
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012251 kvm_apic_set_irq(vcpu, &irq, NULL);
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012252 }
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012253
Xiao Guangronge6d53e32010-11-01 17:01:28 +080012254 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +030012255 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +020012256}
12257
Vitaly Kuznetsov557a9612020-05-25 16:41:21 +020012258void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu)
12259{
12260 kvm_make_request(KVM_REQ_APF_READY, vcpu);
12261 if (!vcpu->arch.apf.pageready_pending)
12262 kvm_vcpu_kick(vcpu);
12263}
12264
Vitaly Kuznetsov7c0ade62020-05-25 16:41:18 +020012265bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu)
Gleb Natapov7c907052010-10-14 11:22:53 +020012266{
Vitaly Kuznetsov2635b5c2020-05-25 16:41:20 +020012267 if (!kvm_pv_async_pf_enabled(vcpu))
Gleb Natapov7c907052010-10-14 11:22:53 +020012268 return true;
12269 else
Vitaly Kuznetsov2f15d022021-04-22 11:29:48 +020012270 return kvm_lapic_enabled(vcpu) && apf_pageready_slot_free(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020012271}
12272
Paolo Bonzini5544eb92015-07-07 15:41:58 +020012273void kvm_arch_start_assignment(struct kvm *kvm)
12274{
Marcelo Tosatti57ab8792021-05-25 10:41:16 -030012275 if (atomic_inc_return(&kvm->arch.assigned_device_count) == 1)
12276 static_call_cond(kvm_x86_start_assignment)(kvm);
Paolo Bonzini5544eb92015-07-07 15:41:58 +020012277}
12278EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
12279
12280void kvm_arch_end_assignment(struct kvm *kvm)
12281{
12282 atomic_dec(&kvm->arch.assigned_device_count);
12283}
12284EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
12285
12286bool kvm_arch_has_assigned_device(struct kvm *kvm)
12287{
12288 return atomic_read(&kvm->arch.assigned_device_count);
12289}
12290EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
12291
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060012292void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
12293{
12294 atomic_inc(&kvm->arch.noncoherent_dma_count);
12295}
12296EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
12297
12298void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
12299{
12300 atomic_dec(&kvm->arch.noncoherent_dma_count);
12301}
12302EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
12303
12304bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
12305{
12306 return atomic_read(&kvm->arch.noncoherent_dma_count);
12307}
12308EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
12309
Alex Williamson14717e22016-05-05 11:58:35 -060012310bool kvm_arch_has_irq_bypass(void)
12311{
Sean Christopherson92735b12019-08-02 15:06:17 -070012312 return true;
Alex Williamson14717e22016-05-05 11:58:35 -060012313}
12314
Feng Wu87276882015-09-18 22:29:40 +080012315int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
12316 struct irq_bypass_producer *prod)
12317{
12318 struct kvm_kernel_irqfd *irqfd =
12319 container_of(cons, struct kvm_kernel_irqfd, consumer);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012320 int ret;
Feng Wu87276882015-09-18 22:29:40 +080012321
Alex Williamson14717e22016-05-05 11:58:35 -060012322 irqfd->producer = prod;
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012323 kvm_arch_start_assignment(irqfd->kvm);
Jason Baronb36464772021-01-14 22:27:56 -050012324 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm,
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012325 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +080012326
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012327 if (ret)
12328 kvm_arch_end_assignment(irqfd->kvm);
12329
12330 return ret;
Feng Wu87276882015-09-18 22:29:40 +080012331}
12332
12333void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
12334 struct irq_bypass_producer *prod)
12335{
12336 int ret;
12337 struct kvm_kernel_irqfd *irqfd =
12338 container_of(cons, struct kvm_kernel_irqfd, consumer);
12339
Feng Wu87276882015-09-18 22:29:40 +080012340 WARN_ON(irqfd->producer != prod);
12341 irqfd->producer = NULL;
12342
12343 /*
12344 * When producer of consumer is unregistered, we change back to
12345 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +020012346 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +080012347 * int this case doesn't want to receive the interrupts.
12348 */
Jason Baronb36464772021-01-14 22:27:56 -050012349 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm, prod->irq, irqfd->gsi, 0);
Feng Wu87276882015-09-18 22:29:40 +080012350 if (ret)
12351 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
12352 " fails: %d\n", irqfd->consumer.token, ret);
Zhu Lingshan2edd9cb2020-07-31 14:55:29 +080012353
12354 kvm_arch_end_assignment(irqfd->kvm);
Feng Wu87276882015-09-18 22:29:40 +080012355}
12356
12357int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
12358 uint32_t guest_irq, bool set)
12359{
Jason Baronb36464772021-01-14 22:27:56 -050012360 return static_call(kvm_x86_update_pi_irte)(kvm, host_irq, guest_irq, set);
Feng Wu87276882015-09-18 22:29:40 +080012361}
12362
Longpeng(Mike)515a0c72021-08-27 16:00:03 +080012363bool kvm_arch_irqfd_route_changed(struct kvm_kernel_irq_routing_entry *old,
12364 struct kvm_kernel_irq_routing_entry *new)
12365{
12366 if (new->type != KVM_IRQ_ROUTING_MSI)
12367 return true;
12368
12369 return !!memcmp(&old->msi, &new->msi, sizeof(new->msi));
12370}
12371
Feng Wu520040142016-01-25 16:53:33 +080012372bool kvm_vector_hashing_enabled(void)
12373{
12374 return vector_hashing;
12375}
Feng Wu520040142016-01-25 16:53:33 +080012376
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012377bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
12378{
12379 return (vcpu->arch.msr_kvm_poll_control & 1) == 0;
12380}
12381EXPORT_SYMBOL_GPL(kvm_arch_no_poll);
12382
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012383
12384int kvm_spec_ctrl_test_value(u64 value)
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012385{
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012386 /*
12387 * test that setting IA32_SPEC_CTRL to given value
12388 * is allowed by the host processor
12389 */
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012390
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012391 u64 saved_value;
12392 unsigned long flags;
12393 int ret = 0;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012394
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012395 local_irq_save(flags);
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012396
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012397 if (rdmsrl_safe(MSR_IA32_SPEC_CTRL, &saved_value))
12398 ret = 1;
12399 else if (wrmsrl_safe(MSR_IA32_SPEC_CTRL, value))
12400 ret = 1;
12401 else
12402 wrmsrl(MSR_IA32_SPEC_CTRL, saved_value);
12403
12404 local_irq_restore(flags);
12405
12406 return ret;
Paolo Bonzini6441fa62020-01-20 16:33:06 +010012407}
Maxim Levitsky841c2be2020-07-08 14:57:31 +030012408EXPORT_SYMBOL_GPL(kvm_spec_ctrl_test_value);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030012409
Mohammed Gamal89786142020-07-10 17:48:03 +020012410void kvm_fixup_and_inject_pf_error(struct kvm_vcpu *vcpu, gva_t gva, u16 error_code)
12411{
12412 struct x86_exception fault;
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012413 u32 access = error_code &
12414 (PFERR_WRITE_MASK | PFERR_FETCH_MASK | PFERR_USER_MASK);
Mohammed Gamal89786142020-07-10 17:48:03 +020012415
12416 if (!(error_code & PFERR_PRESENT_MASK) ||
Paolo Bonzini19cf4b72020-08-17 13:53:04 -040012417 vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, &fault) != UNMAPPED_GVA) {
Mohammed Gamal89786142020-07-10 17:48:03 +020012418 /*
12419 * If vcpu->arch.walk_mmu->gva_to_gpa succeeded, the page
12420 * tables probably do not match the TLB. Just proceed
12421 * with the error code that the processor gave.
12422 */
12423 fault.vector = PF_VECTOR;
12424 fault.error_code_valid = true;
12425 fault.error_code = error_code;
12426 fault.nested_page_fault = false;
12427 fault.address = gva;
12428 }
12429 vcpu->arch.walk_mmu->inject_page_fault(vcpu, &fault);
12430}
12431EXPORT_SYMBOL_GPL(kvm_fixup_and_inject_pf_error);
Carsten Otte043405e2007-10-10 17:16:19 +020012432
Babu Moger3f3393b2020-09-11 14:29:05 -050012433/*
12434 * Handles kvm_read/write_guest_virt*() result and either injects #PF or returns
12435 * KVM_EXIT_INTERNAL_ERROR for cases not currently handled by KVM. Return value
12436 * indicates whether exit to userspace is needed.
12437 */
12438int kvm_handle_memory_failure(struct kvm_vcpu *vcpu, int r,
12439 struct x86_exception *e)
12440{
12441 if (r == X86EMUL_PROPAGATE_FAULT) {
12442 kvm_inject_emulated_page_fault(vcpu, e);
12443 return 1;
12444 }
12445
12446 /*
12447 * In case kvm_read/write_guest_virt*() failed with X86EMUL_IO_NEEDED
12448 * while handling a VMX instruction KVM could've handled the request
12449 * correctly by exiting to userspace and performing I/O but there
12450 * doesn't seem to be a real use-case behind such requests, just return
12451 * KVM_EXIT_INTERNAL_ERROR for now.
12452 */
David Edmondsone615e352021-09-20 11:37:36 +010012453 kvm_prepare_emulation_failure_exit(vcpu);
Babu Moger3f3393b2020-09-11 14:29:05 -050012454
12455 return 0;
12456}
12457EXPORT_SYMBOL_GPL(kvm_handle_memory_failure);
12458
Babu Moger97150922020-09-11 14:29:12 -050012459int kvm_handle_invpcid(struct kvm_vcpu *vcpu, unsigned long type, gva_t gva)
12460{
12461 bool pcid_enabled;
12462 struct x86_exception e;
Babu Moger97150922020-09-11 14:29:12 -050012463 struct {
12464 u64 pcid;
12465 u64 gla;
12466 } operand;
12467 int r;
12468
12469 r = kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e);
12470 if (r != X86EMUL_CONTINUE)
12471 return kvm_handle_memory_failure(vcpu, r, &e);
12472
12473 if (operand.pcid >> 12 != 0) {
12474 kvm_inject_gp(vcpu, 0);
12475 return 1;
12476 }
12477
12478 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
12479
12480 switch (type) {
12481 case INVPCID_TYPE_INDIV_ADDR:
12482 if ((!pcid_enabled && (operand.pcid != 0)) ||
12483 is_noncanonical_address(operand.gla, vcpu)) {
12484 kvm_inject_gp(vcpu, 0);
12485 return 1;
12486 }
12487 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
12488 return kvm_skip_emulated_instruction(vcpu);
12489
12490 case INVPCID_TYPE_SINGLE_CTXT:
12491 if (!pcid_enabled && (operand.pcid != 0)) {
12492 kvm_inject_gp(vcpu, 0);
12493 return 1;
12494 }
12495
Sean Christopherson21823fb2021-06-09 16:42:24 -070012496 kvm_invalidate_pcid(vcpu, operand.pcid);
Babu Moger97150922020-09-11 14:29:12 -050012497 return kvm_skip_emulated_instruction(vcpu);
12498
12499 case INVPCID_TYPE_ALL_NON_GLOBAL:
12500 /*
12501 * Currently, KVM doesn't mark global entries in the shadow
12502 * page tables, so a non-global flush just degenerates to a
12503 * global flush. If needed, we could optimize this later by
12504 * keeping track of global entries in shadow page tables.
12505 */
12506
12507 fallthrough;
12508 case INVPCID_TYPE_ALL_INCL_GLOBAL:
Sean Christopherson28f28d42021-06-09 16:42:30 -070012509 kvm_make_request(KVM_REQ_TLB_FLUSH_GUEST, vcpu);
Babu Moger97150922020-09-11 14:29:12 -050012510 return kvm_skip_emulated_instruction(vcpu);
12511
12512 default:
12513 BUG(); /* We have already checked above that type <= 3 */
12514 }
12515}
12516EXPORT_SYMBOL_GPL(kvm_handle_invpcid);
12517
Tom Lendacky8f423a82020-12-10 11:09:53 -060012518static int complete_sev_es_emulated_mmio(struct kvm_vcpu *vcpu)
12519{
12520 struct kvm_run *run = vcpu->run;
12521 struct kvm_mmio_fragment *frag;
12522 unsigned int len;
12523
12524 BUG_ON(!vcpu->mmio_needed);
12525
12526 /* Complete previous fragment */
12527 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
12528 len = min(8u, frag->len);
12529 if (!vcpu->mmio_is_write)
12530 memcpy(frag->data, run->mmio.data, len);
12531
12532 if (frag->len <= 8) {
12533 /* Switch to the next fragment. */
12534 frag++;
12535 vcpu->mmio_cur_fragment++;
12536 } else {
12537 /* Go forward to the next mmio piece. */
12538 frag->data += len;
12539 frag->gpa += len;
12540 frag->len -= len;
12541 }
12542
12543 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
12544 vcpu->mmio_needed = 0;
12545
12546 // VMG change, at this point, we're always done
12547 // RIP has already been advanced
12548 return 1;
12549 }
12550
12551 // More MMIO is needed
12552 run->mmio.phys_addr = frag->gpa;
12553 run->mmio.len = min(8u, frag->len);
12554 run->mmio.is_write = vcpu->mmio_is_write;
12555 if (run->mmio.is_write)
12556 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
12557 run->exit_reason = KVM_EXIT_MMIO;
12558
12559 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12560
12561 return 0;
12562}
12563
12564int kvm_sev_es_mmio_write(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12565 void *data)
12566{
12567 int handled;
12568 struct kvm_mmio_fragment *frag;
12569
12570 if (!data)
12571 return -EINVAL;
12572
12573 handled = write_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12574 if (handled == bytes)
12575 return 1;
12576
12577 bytes -= handled;
12578 gpa += handled;
12579 data += handled;
12580
12581 /*TODO: Check if need to increment number of frags */
12582 frag = vcpu->mmio_fragments;
12583 vcpu->mmio_nr_fragments = 1;
12584 frag->len = bytes;
12585 frag->gpa = gpa;
12586 frag->data = data;
12587
12588 vcpu->mmio_needed = 1;
12589 vcpu->mmio_cur_fragment = 0;
12590
12591 vcpu->run->mmio.phys_addr = gpa;
12592 vcpu->run->mmio.len = min(8u, frag->len);
12593 vcpu->run->mmio.is_write = 1;
12594 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
12595 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12596
12597 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12598
12599 return 0;
12600}
12601EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_write);
12602
12603int kvm_sev_es_mmio_read(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
12604 void *data)
12605{
12606 int handled;
12607 struct kvm_mmio_fragment *frag;
12608
12609 if (!data)
12610 return -EINVAL;
12611
12612 handled = read_emultor.read_write_mmio(vcpu, gpa, bytes, data);
12613 if (handled == bytes)
12614 return 1;
12615
12616 bytes -= handled;
12617 gpa += handled;
12618 data += handled;
12619
12620 /*TODO: Check if need to increment number of frags */
12621 frag = vcpu->mmio_fragments;
12622 vcpu->mmio_nr_fragments = 1;
12623 frag->len = bytes;
12624 frag->gpa = gpa;
12625 frag->data = data;
12626
12627 vcpu->mmio_needed = 1;
12628 vcpu->mmio_cur_fragment = 0;
12629
12630 vcpu->run->mmio.phys_addr = gpa;
12631 vcpu->run->mmio.len = min(8u, frag->len);
12632 vcpu->run->mmio.is_write = 0;
12633 vcpu->run->exit_reason = KVM_EXIT_MMIO;
12634
12635 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
12636
12637 return 0;
12638}
12639EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_read);
12640
Tom Lendacky7ed9abf2020-12-10 11:09:54 -060012641static int complete_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
12642{
12643 memcpy(vcpu->arch.guest_ins_data, vcpu->arch.pio_data,
12644 vcpu->arch.pio.count * vcpu->arch.pio.size);
12645 vcpu->arch.pio.count = 0;
12646
12647 return 1;
12648}
12649
12650static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
12651 unsigned int port, void *data, unsigned int count)
12652{
12653 int ret;
12654
12655 ret = emulator_pio_out_emulated(vcpu->arch.emulate_ctxt, size, port,
12656 data, count);
12657 if (ret)
12658 return ret;
12659
12660 vcpu->arch.pio.count = 0;
12661
12662 return 0;
12663}
12664
12665static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
12666 unsigned int port, void *data, unsigned int count)
12667{
12668 int ret;
12669
12670 ret = emulator_pio_in_emulated(vcpu->arch.emulate_ctxt, size, port,
12671 data, count);
12672 if (ret) {
12673 vcpu->arch.pio.count = 0;
12674 } else {
12675 vcpu->arch.guest_ins_data = data;
12676 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_ins;
12677 }
12678
12679 return 0;
12680}
12681
12682int kvm_sev_es_string_io(struct kvm_vcpu *vcpu, unsigned int size,
12683 unsigned int port, void *data, unsigned int count,
12684 int in)
12685{
12686 return in ? kvm_sev_es_ins(vcpu, size, port, data, count)
12687 : kvm_sev_es_outs(vcpu, size, port, data, count);
12688}
12689EXPORT_SYMBOL_GPL(kvm_sev_es_string_io);
12690
Lorenzo Bresciad95df952020-12-23 14:45:07 +000012691EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_entry);
Carsten Otte043405e2007-10-10 17:16:19 +020012692EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
12693EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
12694EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
12695EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
12696EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
12697EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
12698EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
12699EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
12700EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
12701EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Sean Christopherson5497b952019-07-11 08:58:29 -070012702EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed);
Carsten Otte043405e2007-10-10 17:16:19 +020012703EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
12704EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
12705EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
12706EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Peter Xu4f75bcc2019-09-06 10:17:22 +080012707EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update);
Carsten Otte043405e2007-10-10 17:16:19 +020012708EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
12709EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
12710EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
12711EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);
Suravee Suthikulpanitab56f8e2020-03-12 05:39:28 -050012712EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log);
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -060012713EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request);
Tom Lendackyd523ab6b2020-12-10 11:09:48 -060012714EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_enter);
12715EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_exit);
Tom Lendacky59e38b52020-12-10 11:09:52 -060012716EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_enter);
12717EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_exit);