blob: d4aa7dc662d5ee4bd88f5e251a723617b399adba [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"
Carsten Otte313a3dc2007-10-11 19:16:52 +020032
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020033#include <linux/clocksource.h>
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +030034#include <linux/interrupt.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020035#include <linux/kvm.h>
36#include <linux/fs.h>
37#include <linux/vmalloc.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040038#include <linux/export.h>
39#include <linux/moduleparam.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080040#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050041#include <linux/highmem.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010042#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030043#include <linux/intel-iommu.h>
Gerd Hoffmannc8076602009-02-04 17:52:04 +010044#include <linux/cpufreq.h>
Avi Kivity18863bd2009-09-07 11:12:18 +030045#include <linux/user-return-notifier.h>
Marcelo Tosattia983fb22009-12-23 14:35:23 -020046#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090047#include <linux/slab.h>
Zhang, Yanminff9d07a2010-04-19 13:32:45 +080048#include <linux/perf_event.h>
Lai Jiangshan7bee3422010-06-02 17:06:03 +080049#include <linux/uaccess.h>
Gleb Natapovaf585b92010-10-14 11:22:46 +020050#include <linux/hash.h>
Joerg Roedela1b60c12011-09-06 18:46:34 +020051#include <linux/pci.h>
Marcelo Tosatti16e8d742012-11-27 23:29:00 -020052#include <linux/timekeeper_internal.h>
53#include <linux/pvclock_gtod.h>
Feng Wu87276882015-09-18 22:29:40 +080054#include <linux/kvm_irqfd.h>
55#include <linux/irqbypass.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010056#include <linux/sched/stat.h>
Wanpeng Li0c5f81d2019-07-06 09:26:51 +080057#include <linux/sched/isolation.h>
Tom Lendackyd0ec49d2017-07-17 16:10:27 -050058#include <linux/mem_encrypt.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010059
Avi Kivityaec51dc2009-07-01 16:01:02 +030060#include <trace/events/kvm.h>
Xiao Guangrong2ed152a2010-03-10 19:00:43 +080061
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +020062#include <asm/debugreg.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080063#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020064#include <asm/desc.h>
Huang Ying890ca9a2009-05-11 16:48:15 +080065#include <asm/mce.h>
Ingo Molnarf89e32e2015-04-22 10:58:10 +020066#include <linux/kernel_stat.h>
Ingo Molnar78f7f1e2015-04-24 02:54:44 +020067#include <asm/fpu/internal.h> /* Ugh! */
Zachary Amsden1d5f0662010-08-19 22:07:30 -100068#include <asm/pvclock.h>
Avi Kivity217fc9c2010-08-26 13:38:03 +030069#include <asm/div64.h>
Feng Wuefc64402015-09-18 22:29:51 +080070#include <asm/irq_remapping.h>
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +010071#include <asm/mshyperv.h>
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +010072#include <asm/hypervisor.h>
Chao Pengbf8c55d2018-10-24 16:05:14 +080073#include <asm/intel_pt.h>
Masami Hiramatsub3dc0692019-09-06 22:13:59 +090074#include <asm/emulate_prefix.h>
Michael Kelleydd2cb342019-07-01 04:26:06 +000075#include <clocksource/hyperv_timer.h>
Carsten Otte043405e2007-10-10 17:16:19 +020076
Dave Hansend1898b72016-06-01 10:42:20 -070077#define CREATE_TRACE_POINTS
78#include "trace.h"
79
Carsten Otte313a3dc2007-10-11 19:16:52 +020080#define MAX_IO_MSRS 256
Huang Ying890ca9a2009-05-11 16:48:15 +080081#define KVM_MAX_MCE_BANKS 32
Ashok Rajc45dcc72016-06-22 14:59:56 +080082u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
83EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
Huang Ying890ca9a2009-05-11 16:48:15 +080084
Avi Kivity0f65dd72011-04-20 13:37:53 +030085#define emul_to_vcpu(ctxt) \
Sean Christophersonc9b8b072020-02-18 15:29:48 -080086 ((struct kvm_vcpu *)(ctxt)->vcpu)
Avi Kivity0f65dd72011-04-20 13:37:53 +030087
Joerg Roedel50a37eb2008-01-31 14:57:38 +010088/* EFER defaults:
89 * - enable syscall per default because its emulated by KVM
90 * - enable LME and LMA per default on 64 bit KVM
91 */
92#ifdef CONFIG_X86_64
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080093static
94u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
Joerg Roedel50a37eb2008-01-31 14:57:38 +010095#else
Lai Jiangshan1260edbe2011-02-21 11:51:35 +080096static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
Joerg Roedel50a37eb2008-01-31 14:57:38 +010097#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +020098
Sean Christophersonb11306b2019-12-10 14:44:13 -080099static u64 __read_mostly cr4_reserved_bits = CR4_RESERVED_BITS;
100
Radim Krčmářc5192652016-07-12 22:09:28 +0200101#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
102 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
Radim Krčmář371313132016-07-12 22:09:27 +0200103
Gleb Natapovcb142eb2009-08-09 15:17:40 +0300104static void update_cr8_intercept(struct kvm_vcpu *vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300105static void process_nmi(struct kvm_vcpu *vcpu);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +0200106static void enter_smm(struct kvm_vcpu *vcpu);
Paolo Bonzini6addfc42014-03-27 11:29:28 +0100107static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
Ken Hofsass01643c52018-01-31 16:03:36 -0800108static void store_regs(struct kvm_vcpu *vcpu);
109static int sync_regs(struct kvm_vcpu *vcpu);
Avi Kivity674eea02008-02-11 18:37:23 +0200110
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700111struct kvm_x86_ops kvm_x86_ops __read_mostly;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300112EXPORT_SYMBOL_GPL(kvm_x86_ops);
Zhang Xiantao97896d02007-11-14 20:09:30 +0800113
Paolo Bonzini893590c2015-11-06 11:46:24 +0100114static bool __read_mostly ignore_msrs = 0;
Rusty Russell476bc002012-01-13 09:32:18 +1030115module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
Andre Przywaraed85c062009-06-25 12:36:49 +0200116
Eyal Moscovicifab0aa32017-11-08 14:32:08 +0200117static bool __read_mostly report_ignored_msrs = true;
118module_param(report_ignored_msrs, bool, S_IRUGO | S_IWUSR);
119
Wanpeng Li4c276252018-05-05 04:02:32 -0700120unsigned int min_timer_period_us = 200;
Marcelo Tosatti9ed96e82014-01-06 12:00:02 -0200121module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
122
Marcelo Tosatti630994b2015-05-12 22:42:04 -0300123static bool __read_mostly kvmclock_periodic_sync = true;
124module_param(kvmclock_periodic_sync, bool, S_IRUGO);
125
Paolo Bonzini893590c2015-11-06 11:46:24 +0100126bool __read_mostly kvm_has_tsc_control;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100127EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
Paolo Bonzini893590c2015-11-06 11:46:24 +0100128u32 __read_mostly kvm_max_guest_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +0100129EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
Haozhong Zhangbc9b9612015-10-20 15:39:01 +0800130u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
131EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
132u64 __read_mostly kvm_max_tsc_scaling_ratio;
133EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
Yunhong Jiang64672c92016-06-13 14:19:59 -0700134u64 __read_mostly kvm_default_tsc_scaling_ratio;
135EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
Joerg Roedel92a1f122011-03-25 09:44:51 +0100136
Zachary Amsdencc578282012-02-03 15:43:50 -0200137/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
Paolo Bonzini893590c2015-11-06 11:46:24 +0100138static u32 __read_mostly tsc_tolerance_ppm = 250;
Zachary Amsdencc578282012-02-03 15:43:50 -0200139module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
140
Sean Christophersonc3941d92019-04-17 10:15:33 -0700141/*
142 * lapic timer advance (tscdeadline mode only) in nanoseconds. '-1' enables
143 * adaptive tuning starting from default advancment of 1000ns. '0' disables
144 * advancement entirely. Any other value is used as-is and disables adaptive
145 * tuning, i.e. allows priveleged userspace to set an exact advancement time.
146 */
147static int __read_mostly lapic_timer_advance_ns = -1;
Wanpeng Li0e6edce2019-05-20 16:18:06 +0800148module_param(lapic_timer_advance_ns, int, S_IRUGO | S_IWUSR);
Marcelo Tosattid0659d92014-12-16 09:08:15 -0500149
Feng Wu520040142016-01-25 16:53:33 +0800150static bool __read_mostly vector_hashing = true;
151module_param(vector_hashing, bool, S_IRUGO);
152
Liran Alonc4ae60e2018-03-12 13:12:47 +0200153bool __read_mostly enable_vmware_backdoor = false;
154module_param(enable_vmware_backdoor, bool, S_IRUGO);
155EXPORT_SYMBOL_GPL(enable_vmware_backdoor);
156
Wanpeng Li6c86eed2018-04-03 16:28:49 -0700157static bool __read_mostly force_emulation_prefix = false;
158module_param(force_emulation_prefix, bool, S_IRUGO);
159
Wanpeng Li0c5f81d2019-07-06 09:26:51 +0800160int __read_mostly pi_inject_timer = -1;
161module_param(pi_inject_timer, bint, S_IRUGO | S_IWUSR);
162
Avi Kivity18863bd2009-09-07 11:12:18 +0300163#define KVM_NR_SHARED_MSRS 16
164
165struct kvm_shared_msrs_global {
166 int nr;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800167 u32 msrs[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300168};
169
170struct kvm_shared_msrs {
171 struct user_return_notifier urn;
172 bool registered;
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800173 struct kvm_shared_msr_values {
174 u64 host;
175 u64 curr;
176 } values[KVM_NR_SHARED_MSRS];
Avi Kivity18863bd2009-09-07 11:12:18 +0300177};
178
179static struct kvm_shared_msrs_global __read_mostly shared_msrs_global;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200180static struct kvm_shared_msrs __percpu *shared_msrs;
Avi Kivity18863bd2009-09-07 11:12:18 +0300181
Sean Christophersoncfc48182020-03-02 15:56:23 -0800182#define KVM_SUPPORTED_XCR0 (XFEATURE_MASK_FP | XFEATURE_MASK_SSE \
183 | XFEATURE_MASK_YMM | XFEATURE_MASK_BNDREGS \
184 | XFEATURE_MASK_BNDCSR | XFEATURE_MASK_AVX512 \
185 | XFEATURE_MASK_PKRU)
186
Sean Christopherson91661982020-03-02 15:57:06 -0800187u64 __read_mostly host_efer;
188EXPORT_SYMBOL_GPL(host_efer);
189
Aaron Lewis139a12c2019-10-21 16:30:25 -0700190static u64 __read_mostly host_xss;
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100191u64 __read_mostly supported_xss;
192EXPORT_SYMBOL_GPL(supported_xss);
Aaron Lewis139a12c2019-10-21 16:30:25 -0700193
Hollis Blanchard417bc302007-10-31 17:24:23 -0500194struct kvm_stats_debugfs_item debugfs_entries[] = {
Emanuele Giuseppe Esposito812756a2020-04-14 17:56:25 +0200195 VCPU_STAT("pf_fixed", pf_fixed),
196 VCPU_STAT("pf_guest", pf_guest),
197 VCPU_STAT("tlb_flush", tlb_flush),
198 VCPU_STAT("invlpg", invlpg),
199 VCPU_STAT("exits", exits),
200 VCPU_STAT("io_exits", io_exits),
201 VCPU_STAT("mmio_exits", mmio_exits),
202 VCPU_STAT("signal_exits", signal_exits),
203 VCPU_STAT("irq_window", irq_window_exits),
204 VCPU_STAT("nmi_window", nmi_window_exits),
205 VCPU_STAT("halt_exits", halt_exits),
206 VCPU_STAT("halt_successful_poll", halt_successful_poll),
207 VCPU_STAT("halt_attempted_poll", halt_attempted_poll),
208 VCPU_STAT("halt_poll_invalid", halt_poll_invalid),
209 VCPU_STAT("halt_wakeup", halt_wakeup),
210 VCPU_STAT("hypercalls", hypercalls),
211 VCPU_STAT("request_irq", request_irq_exits),
212 VCPU_STAT("irq_exits", irq_exits),
213 VCPU_STAT("host_state_reload", host_state_reload),
214 VCPU_STAT("fpu_reload", fpu_reload),
215 VCPU_STAT("insn_emulation", insn_emulation),
216 VCPU_STAT("insn_emulation_fail", insn_emulation_fail),
217 VCPU_STAT("irq_injections", irq_injections),
218 VCPU_STAT("nmi_injections", nmi_injections),
219 VCPU_STAT("req_event", req_event),
220 VCPU_STAT("l1d_flush", l1d_flush),
David Matlackcb953122020-05-08 11:22:40 -0700221 VCPU_STAT("halt_poll_success_ns", halt_poll_success_ns),
222 VCPU_STAT("halt_poll_fail_ns", halt_poll_fail_ns),
Emanuele Giuseppe Esposito812756a2020-04-14 17:56:25 +0200223 VM_STAT("mmu_shadow_zapped", mmu_shadow_zapped),
224 VM_STAT("mmu_pte_write", mmu_pte_write),
225 VM_STAT("mmu_pte_updated", mmu_pte_updated),
226 VM_STAT("mmu_pde_zapped", mmu_pde_zapped),
227 VM_STAT("mmu_flooded", mmu_flooded),
228 VM_STAT("mmu_recycled", mmu_recycled),
229 VM_STAT("mmu_cache_miss", mmu_cache_miss),
230 VM_STAT("mmu_unsync", mmu_unsync),
231 VM_STAT("remote_tlb_flush", remote_tlb_flush),
232 VM_STAT("largepages", lpages, .mode = 0444),
233 VM_STAT("nx_largepages_splitted", nx_lpage_splits, .mode = 0444),
234 VM_STAT("max_mmu_page_hash_collisions", max_mmu_page_hash_collisions),
Hollis Blanchard417bc302007-10-31 17:24:23 -0500235 { NULL }
236};
237
Dexuan Cui2acf9232010-06-10 11:27:12 +0800238u64 __read_mostly host_xcr0;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800239u64 __read_mostly supported_xcr0;
240EXPORT_SYMBOL_GPL(supported_xcr0);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800241
Marc Orrb666a4b2018-11-06 14:53:56 -0800242struct kmem_cache *x86_fpu_cache;
243EXPORT_SYMBOL_GPL(x86_fpu_cache);
244
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800245static struct kmem_cache *x86_emulator_cache;
246
247static struct kmem_cache *kvm_alloc_emulator_cache(void)
248{
Sean Christopherson06add252020-02-18 15:29:50 -0800249 unsigned int useroffset = offsetof(struct x86_emulate_ctxt, src);
250 unsigned int size = sizeof(struct x86_emulate_ctxt);
251
252 return kmem_cache_create_usercopy("x86_emulator", size,
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800253 __alignof__(struct x86_emulate_ctxt),
Sean Christopherson06add252020-02-18 15:29:50 -0800254 SLAB_ACCOUNT, useroffset,
255 size - useroffset, NULL);
Sean Christophersonc9b8b072020-02-18 15:29:48 -0800256}
257
Jan Kiszkab6785de2012-09-20 07:43:17 +0200258static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
Avi Kivityd6aa1002011-04-20 15:47:13 +0300259
Gleb Natapovaf585b92010-10-14 11:22:46 +0200260static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
261{
262 int i;
Peter Xudd03bca2020-04-16 11:58:59 -0400263 for (i = 0; i < ASYNC_PF_PER_VCPU; i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +0200264 vcpu->arch.apf.gfns[i] = ~0;
265}
266
Avi Kivity18863bd2009-09-07 11:12:18 +0300267static void kvm_on_user_return(struct user_return_notifier *urn)
268{
269 unsigned slot;
Avi Kivity18863bd2009-09-07 11:12:18 +0300270 struct kvm_shared_msrs *locals
271 = container_of(urn, struct kvm_shared_msrs, urn);
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800272 struct kvm_shared_msr_values *values;
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700273 unsigned long flags;
Avi Kivity18863bd2009-09-07 11:12:18 +0300274
Ignacio Alvarado1650b4e2016-11-04 12:15:55 -0700275 /*
276 * Disabling irqs at this point since the following code could be
277 * interrupted and executed through kvm_arch_hardware_disable()
278 */
279 local_irq_save(flags);
280 if (locals->registered) {
281 locals->registered = false;
282 user_return_notifier_unregister(urn);
283 }
284 local_irq_restore(flags);
Avi Kivity18863bd2009-09-07 11:12:18 +0300285 for (slot = 0; slot < shared_msrs_global.nr; ++slot) {
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800286 values = &locals->values[slot];
287 if (values->host != values->curr) {
288 wrmsrl(shared_msrs_global.msrs[slot], values->host);
289 values->curr = values->host;
Avi Kivity18863bd2009-09-07 11:12:18 +0300290 }
291 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300292}
293
Sheng Yang2bf78fa2009-12-18 16:48:44 +0800294void kvm_define_shared_msr(unsigned slot, u32 msr)
295{
Nadav Amit0123be42014-07-24 15:06:56 +0300296 BUG_ON(slot >= KVM_NR_SHARED_MSRS);
Paolo Bonzinic847fe82015-07-29 11:06:34 +0200297 shared_msrs_global.msrs[slot] = msr;
Avi Kivity18863bd2009-09-07 11:12:18 +0300298 if (slot >= shared_msrs_global.nr)
299 shared_msrs_global.nr = slot + 1;
Avi Kivity18863bd2009-09-07 11:12:18 +0300300}
301EXPORT_SYMBOL_GPL(kvm_define_shared_msr);
302
303static void kvm_shared_msr_cpu_online(void)
304{
Sean Christopherson05c19c22019-11-22 12:04:50 -0800305 unsigned int cpu = smp_processor_id();
306 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
307 u64 value;
308 int i;
Avi Kivity18863bd2009-09-07 11:12:18 +0300309
Sean Christopherson05c19c22019-11-22 12:04:50 -0800310 for (i = 0; i < shared_msrs_global.nr; ++i) {
311 rdmsrl_safe(shared_msrs_global.msrs[i], &value);
312 smsr->values[i].host = value;
313 smsr->values[i].curr = value;
314 }
Avi Kivity18863bd2009-09-07 11:12:18 +0300315}
316
Andy Honig8b3c3102014-08-27 11:16:44 -0700317int kvm_set_shared_msr(unsigned slot, u64 value, u64 mask)
Avi Kivity18863bd2009-09-07 11:12:18 +0300318{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200319 unsigned int cpu = smp_processor_id();
320 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Andy Honig8b3c3102014-08-27 11:16:44 -0700321 int err;
Avi Kivity18863bd2009-09-07 11:12:18 +0300322
Paolo Bonzinide1fca52019-11-18 12:23:00 -0500323 value = (value & mask) | (smsr->values[slot].host & ~mask);
324 if (value == smsr->values[slot].curr)
Andy Honig8b3c3102014-08-27 11:16:44 -0700325 return 0;
Andy Honig8b3c3102014-08-27 11:16:44 -0700326 err = wrmsrl_safe(shared_msrs_global.msrs[slot], value);
327 if (err)
328 return 1;
329
Paolo Bonzinide1fca52019-11-18 12:23:00 -0500330 smsr->values[slot].curr = value;
Avi Kivity18863bd2009-09-07 11:12:18 +0300331 if (!smsr->registered) {
332 smsr->urn.on_user_return = kvm_on_user_return;
333 user_return_notifier_register(&smsr->urn);
334 smsr->registered = true;
335 }
Andy Honig8b3c3102014-08-27 11:16:44 -0700336 return 0;
Avi Kivity18863bd2009-09-07 11:12:18 +0300337}
338EXPORT_SYMBOL_GPL(kvm_set_shared_msr);
339
Radim Krčmář13a34e02014-08-28 15:13:03 +0200340static void drop_user_return_notifiers(void)
Avi Kivity3548bab2009-11-28 14:18:47 +0200341{
Marcelo Tosatti013f6a52013-01-03 11:41:39 -0200342 unsigned int cpu = smp_processor_id();
343 struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu);
Avi Kivity3548bab2009-11-28 14:18:47 +0200344
345 if (smsr->registered)
346 kvm_on_user_return(&smsr->urn);
347}
348
Carsten Otte6866b832007-10-29 16:09:10 +0100349u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
350{
Gleb Natapov8a5a87d2012-08-05 15:58:26 +0300351 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100352}
353EXPORT_SYMBOL_GPL(kvm_get_apic_base);
354
Jim Mattson58871642018-05-09 16:56:04 -0400355enum lapic_mode kvm_get_apic_mode(struct kvm_vcpu *vcpu)
356{
357 return kvm_apic_mode(kvm_get_apic_base(vcpu));
358}
359EXPORT_SYMBOL_GPL(kvm_get_apic_mode);
360
Jan Kiszka58cb6282014-01-24 16:48:44 +0100361int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte6866b832007-10-29 16:09:10 +0100362{
Jim Mattson58871642018-05-09 16:56:04 -0400363 enum lapic_mode old_mode = kvm_get_apic_mode(vcpu);
364 enum lapic_mode new_mode = kvm_apic_mode(msr_info->data);
Radim Krčmářd6321d42017-08-05 00:12:49 +0200365 u64 reserved_bits = ((~0ULL) << cpuid_maxphyaddr(vcpu)) | 0x2ff |
366 (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) ? 0 : X2APIC_ENABLE);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100367
Jim Mattson58871642018-05-09 16:56:04 -0400368 if ((msr_info->data & reserved_bits) != 0 || new_mode == LAPIC_MODE_INVALID)
Jim Mattsond3802282017-08-10 10:14:13 -0700369 return 1;
Jim Mattson58871642018-05-09 16:56:04 -0400370 if (!msr_info->host_initiated) {
371 if (old_mode == LAPIC_MODE_X2APIC && new_mode == LAPIC_MODE_XAPIC)
372 return 1;
373 if (old_mode == LAPIC_MODE_DISABLED && new_mode == LAPIC_MODE_X2APIC)
374 return 1;
375 }
Jan Kiszka58cb6282014-01-24 16:48:44 +0100376
377 kvm_lapic_set_base(vcpu, msr_info->data);
Wanpeng Li4abaffc2020-02-26 10:41:02 +0800378 kvm_recalculate_apic_map(vcpu->kvm);
Jan Kiszka58cb6282014-01-24 16:48:44 +0100379 return 0;
Carsten Otte6866b832007-10-29 16:09:10 +0100380}
381EXPORT_SYMBOL_GPL(kvm_set_apic_base);
382
Andi Kleen2605fc22014-05-02 00:44:37 +0200383asmlinkage __visible void kvm_spurious_fault(void)
Geoff Levande3ba45b2013-04-05 19:20:30 +0000384{
385 /* Fault while not rebooting. We want the trace. */
kbuild test robotb4fdcf62019-09-29 18:43:28 +0200386 BUG_ON(!kvm_rebooting);
Geoff Levande3ba45b2013-04-05 19:20:30 +0000387}
388EXPORT_SYMBOL_GPL(kvm_spurious_fault);
389
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200390#define EXCPT_BENIGN 0
391#define EXCPT_CONTRIBUTORY 1
392#define EXCPT_PF 2
393
394static int exception_class(int vector)
395{
396 switch (vector) {
397 case PF_VECTOR:
398 return EXCPT_PF;
399 case DE_VECTOR:
400 case TS_VECTOR:
401 case NP_VECTOR:
402 case SS_VECTOR:
403 case GP_VECTOR:
404 return EXCPT_CONTRIBUTORY;
405 default:
406 break;
407 }
408 return EXCPT_BENIGN;
409}
410
Nadav Amitd6e8c852014-07-24 14:51:24 +0300411#define EXCPT_FAULT 0
412#define EXCPT_TRAP 1
413#define EXCPT_ABORT 2
414#define EXCPT_INTERRUPT 3
415
416static int exception_type(int vector)
417{
418 unsigned int mask;
419
420 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
421 return EXCPT_INTERRUPT;
422
423 mask = 1 << vector;
424
425 /* #DB is trap, as instruction watchpoints are handled elsewhere */
426 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
427 return EXCPT_TRAP;
428
429 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
430 return EXCPT_ABORT;
431
432 /* Reserved exceptions will result in fault */
433 return EXCPT_FAULT;
434}
435
Jim Mattsonda998b42018-10-16 14:29:22 -0700436void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu)
437{
438 unsigned nr = vcpu->arch.exception.nr;
439 bool has_payload = vcpu->arch.exception.has_payload;
440 unsigned long payload = vcpu->arch.exception.payload;
441
442 if (!has_payload)
443 return;
444
445 switch (nr) {
Jim Mattsonf10c7292018-10-16 14:29:23 -0700446 case DB_VECTOR:
447 /*
448 * "Certain debug exceptions may clear bit 0-3. The
449 * remaining contents of the DR6 register are never
450 * cleared by the processor".
451 */
452 vcpu->arch.dr6 &= ~DR_TRAP_BITS;
453 /*
454 * DR6.RTM is set by all #DB exceptions that don't clear it.
455 */
456 vcpu->arch.dr6 |= DR6_RTM;
457 vcpu->arch.dr6 |= payload;
458 /*
459 * Bit 16 should be set in the payload whenever the #DB
460 * exception should clear DR6.RTM. This makes the payload
461 * compatible with the pending debug exceptions under VMX.
462 * Though not currently documented in the SDM, this also
463 * makes the payload compatible with the exit qualification
464 * for #DB exceptions under VMX.
465 */
466 vcpu->arch.dr6 ^= payload & DR6_RTM;
Oliver Upton307f1cf2020-02-07 02:36:04 -0800467
468 /*
469 * The #DB payload is defined as compatible with the 'pending
470 * debug exceptions' field under VMX, not DR6. While bit 12 is
471 * defined in the 'pending debug exceptions' field (enabled
472 * breakpoint), it is reserved and must be zero in DR6.
473 */
474 vcpu->arch.dr6 &= ~BIT(12);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700475 break;
Jim Mattsonda998b42018-10-16 14:29:22 -0700476 case PF_VECTOR:
477 vcpu->arch.cr2 = payload;
478 break;
479 }
480
481 vcpu->arch.exception.has_payload = false;
482 vcpu->arch.exception.payload = 0;
483}
484EXPORT_SYMBOL_GPL(kvm_deliver_exception_payload);
485
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200486static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200487 unsigned nr, bool has_error, u32 error_code,
Jim Mattson91e86d22018-10-16 14:29:21 -0700488 bool has_payload, unsigned long payload, bool reinject)
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200489{
490 u32 prev_nr;
491 int class1, class2;
492
Avi Kivity3842d132010-07-27 12:30:24 +0300493 kvm_make_request(KVM_REQ_EVENT, vcpu);
494
Wanpeng Li664f8e22017-08-24 03:35:09 -0700495 if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) {
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200496 queue:
Nadav Amit3ffb2462014-11-02 11:54:42 +0200497 if (has_error && !is_protmode(vcpu))
498 has_error = false;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700499 if (reinject) {
500 /*
501 * On vmentry, vcpu->arch.exception.pending is only
502 * true if an event injection was blocked by
503 * nested_run_pending. In that case, however,
504 * vcpu_enter_guest requests an immediate exit,
505 * and the guest shouldn't proceed far enough to
506 * need reinjection.
507 */
508 WARN_ON_ONCE(vcpu->arch.exception.pending);
509 vcpu->arch.exception.injected = true;
Jim Mattson91e86d22018-10-16 14:29:21 -0700510 if (WARN_ON_ONCE(has_payload)) {
511 /*
512 * A reinjected event has already
513 * delivered its payload.
514 */
515 has_payload = false;
516 payload = 0;
517 }
Wanpeng Li664f8e22017-08-24 03:35:09 -0700518 } else {
519 vcpu->arch.exception.pending = true;
520 vcpu->arch.exception.injected = false;
521 }
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200522 vcpu->arch.exception.has_error_code = has_error;
523 vcpu->arch.exception.nr = nr;
524 vcpu->arch.exception.error_code = error_code;
Jim Mattson91e86d22018-10-16 14:29:21 -0700525 vcpu->arch.exception.has_payload = has_payload;
526 vcpu->arch.exception.payload = payload;
Oliver Uptona06230b2020-02-07 02:36:06 -0800527 if (!is_guest_mode(vcpu))
Jim Mattsonda998b42018-10-16 14:29:22 -0700528 kvm_deliver_exception_payload(vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200529 return;
530 }
531
532 /* to check exception */
533 prev_nr = vcpu->arch.exception.nr;
534 if (prev_nr == DF_VECTOR) {
535 /* triple fault -> shutdown */
Avi Kivitya8eeb042010-05-10 12:34:53 +0300536 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200537 return;
538 }
539 class1 = exception_class(prev_nr);
540 class2 = exception_class(nr);
541 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
542 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
Wanpeng Li664f8e22017-08-24 03:35:09 -0700543 /*
544 * Generate double fault per SDM Table 5-5. Set
545 * exception.pending = true so that the double fault
546 * can trigger a nested vmexit.
547 */
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200548 vcpu->arch.exception.pending = true;
Wanpeng Li664f8e22017-08-24 03:35:09 -0700549 vcpu->arch.exception.injected = false;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200550 vcpu->arch.exception.has_error_code = true;
551 vcpu->arch.exception.nr = DF_VECTOR;
552 vcpu->arch.exception.error_code = 0;
Jim Mattsonc8514362018-10-16 14:29:19 -0700553 vcpu->arch.exception.has_payload = false;
554 vcpu->arch.exception.payload = 0;
Eddie Dong3fd28fc2009-11-19 17:54:07 +0200555 } else
556 /* replace previous exception with a new one in a hope
557 that instruction re-execution will regenerate lost
558 exception */
559 goto queue;
560}
561
Avi Kivity298101d2007-11-25 13:41:11 +0200562void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
563{
Jim Mattson91e86d22018-10-16 14:29:21 -0700564 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200565}
566EXPORT_SYMBOL_GPL(kvm_queue_exception);
567
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200568void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
569{
Jim Mattson91e86d22018-10-16 14:29:21 -0700570 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200571}
572EXPORT_SYMBOL_GPL(kvm_requeue_exception);
573
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400574void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr,
575 unsigned long payload)
Jim Mattsonf10c7292018-10-16 14:29:23 -0700576{
577 kvm_multiple_exception(vcpu, nr, false, 0, true, payload, false);
578}
Paolo Bonzini4d5523c2020-05-05 07:33:20 -0400579EXPORT_SYMBOL_GPL(kvm_queue_exception_p);
Jim Mattsonf10c7292018-10-16 14:29:23 -0700580
Jim Mattsonda998b42018-10-16 14:29:22 -0700581static void kvm_queue_exception_e_p(struct kvm_vcpu *vcpu, unsigned nr,
582 u32 error_code, unsigned long payload)
583{
584 kvm_multiple_exception(vcpu, nr, true, error_code,
585 true, payload, false);
586}
587
Kyle Huey6affcbe2016-11-29 12:40:40 -0800588int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200589{
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100590 if (err)
591 kvm_inject_gp(vcpu, 0);
592 else
Kyle Huey6affcbe2016-11-29 12:40:40 -0800593 return kvm_skip_emulated_instruction(vcpu);
594
595 return 1;
Andre Przywaradb8fcef2010-12-21 11:12:01 +0100596}
597EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
Joerg Roedel8df25a32010-09-10 17:30:46 +0200598
Avi Kivity6389ee92010-11-29 16:12:30 +0200599void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200600{
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200601 ++vcpu->stat.pf_guest;
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700602 vcpu->arch.exception.nested_apf =
603 is_guest_mode(vcpu) && fault->async_page_fault;
Jim Mattsonda998b42018-10-16 14:29:22 -0700604 if (vcpu->arch.exception.nested_apf) {
Wanpeng Liadfe20f2017-07-13 18:30:41 -0700605 vcpu->arch.apf.nested_apf_token = fault->address;
Jim Mattsonda998b42018-10-16 14:29:22 -0700606 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
607 } else {
608 kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code,
609 fault->address);
610 }
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200611}
Nadav Har'El27d6c862011-05-25 23:06:59 +0300612EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200613
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700614bool kvm_inject_emulated_page_fault(struct kvm_vcpu *vcpu,
615 struct x86_exception *fault)
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200616{
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400617 struct kvm_mmu *fault_mmu;
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700618 WARN_ON_ONCE(fault->vector != PF_VECTOR);
619
Paolo Bonzini0cd665b2020-03-25 12:50:03 -0400620 fault_mmu = fault->nested_page_fault ? vcpu->arch.mmu :
621 vcpu->arch.walk_mmu;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200622
Junaid Shahidee1fa202020-03-20 14:28:03 -0700623 /*
624 * Invalidate the TLB entry for the faulting address, if it exists,
625 * else the access will fault indefinitely (and to emulate hardware).
626 */
627 if ((fault->error_code & PFERR_PRESENT_MASK) &&
628 !(fault->error_code & PFERR_RSVD_MASK))
629 kvm_mmu_invalidate_gva(vcpu, fault_mmu, fault->address,
630 fault_mmu->root_hpa);
631
632 fault_mmu->inject_page_fault(vcpu, fault);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +0200633 return fault->nested_page_fault;
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200634}
Sean Christopherson53b3d8e2020-03-20 14:28:01 -0700635EXPORT_SYMBOL_GPL(kvm_inject_emulated_page_fault);
Joerg Roedeld4f8cf62010-09-10 17:30:55 +0200636
Sheng Yang3419ffc2008-05-15 09:52:48 +0800637void kvm_inject_nmi(struct kvm_vcpu *vcpu)
638{
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300639 atomic_inc(&vcpu->arch.nmi_queued);
640 kvm_make_request(KVM_REQ_NMI, vcpu);
Sheng Yang3419ffc2008-05-15 09:52:48 +0800641}
642EXPORT_SYMBOL_GPL(kvm_inject_nmi);
643
Avi Kivity298101d2007-11-25 13:41:11 +0200644void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
645{
Jim Mattson91e86d22018-10-16 14:29:21 -0700646 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, false);
Avi Kivity298101d2007-11-25 13:41:11 +0200647}
648EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
649
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200650void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
651{
Jim Mattson91e86d22018-10-16 14:29:21 -0700652 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, true);
Joerg Roedelce7ddec2010-04-22 12:33:13 +0200653}
654EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
655
Carsten Ottea03490e2007-10-29 16:09:35 +0100656/*
Avi Kivity0a79b002009-09-01 12:03:25 +0300657 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
658 * a #GP and return false.
659 */
660bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
Carsten Otte043405e2007-10-10 17:16:19 +0200661{
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700662 if (kvm_x86_ops.get_cpl(vcpu) <= required_cpl)
Avi Kivity0a79b002009-09-01 12:03:25 +0300663 return true;
664 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
665 return false;
Carsten Ottea03490e2007-10-29 16:09:35 +0100666}
Avi Kivity0a79b002009-09-01 12:03:25 +0300667EXPORT_SYMBOL_GPL(kvm_require_cpl);
Carsten Ottea03490e2007-10-29 16:09:35 +0100668
Nadav Amit16f8a6f2014-10-03 01:10:05 +0300669bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
670{
671 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
672 return true;
673
674 kvm_queue_exception(vcpu, UD_VECTOR);
675 return false;
676}
677EXPORT_SYMBOL_GPL(kvm_require_dr);
678
Carsten Ottea03490e2007-10-29 16:09:35 +0100679/*
Joerg Roedelec92fe42010-09-10 17:30:51 +0200680 * This function will be used to read from the physical memory of the currently
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200681 * running guest. The difference to kvm_vcpu_read_guest_page is that this function
Joerg Roedelec92fe42010-09-10 17:30:51 +0200682 * can read from guest physical or from the guest's guest physical memory.
683 */
684int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
685 gfn_t ngfn, void *data, int offset, int len,
686 u32 access)
687{
Paolo Bonzini54987b72014-09-02 13:23:06 +0200688 struct x86_exception exception;
Joerg Roedelec92fe42010-09-10 17:30:51 +0200689 gfn_t real_gfn;
690 gpa_t ngpa;
691
692 ngpa = gfn_to_gpa(ngfn);
Paolo Bonzini54987b72014-09-02 13:23:06 +0200693 real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200694 if (real_gfn == UNMAPPED_GVA)
695 return -EFAULT;
696
697 real_gfn = gpa_to_gfn(real_gfn);
698
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200699 return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len);
Joerg Roedelec92fe42010-09-10 17:30:51 +0200700}
701EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
702
Fengguang Wu69b00492015-01-19 22:33:39 +0800703static int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200704 void *data, int offset, int len, u32 access)
705{
706 return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn,
707 data, offset, len, access);
708}
709
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700710static inline u64 pdptr_rsvd_bits(struct kvm_vcpu *vcpu)
711{
712 return rsvd_bits(cpuid_maxphyaddr(vcpu), 63) | rsvd_bits(5, 8) |
713 rsvd_bits(1, 2);
714}
715
Joerg Roedelec92fe42010-09-10 17:30:51 +0200716/*
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700717 * Load the pae pdptrs. Return 1 if they are all valid, 0 otherwise.
Carsten Ottea03490e2007-10-29 16:09:35 +0100718 */
Joerg Roedelff03a072010-09-10 17:30:57 +0200719int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100720{
721 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
722 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
723 int i;
724 int ret;
Joerg Roedelff03a072010-09-10 17:30:57 +0200725 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100726
Joerg Roedelff03a072010-09-10 17:30:57 +0200727 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
728 offset * sizeof(u64), sizeof(pdpte),
729 PFERR_USER_MASK|PFERR_WRITE_MASK);
Carsten Ottea03490e2007-10-29 16:09:35 +0100730 if (ret < 0) {
731 ret = 0;
732 goto out;
733 }
734 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
Bandan Das812f30b2016-07-12 18:18:50 -0400735 if ((pdpte[i] & PT_PRESENT_MASK) &&
Sean Christopherson16cfacc2019-09-03 16:36:45 -0700736 (pdpte[i] & pdptr_rsvd_bits(vcpu))) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100737 ret = 0;
738 goto out;
739 }
740 }
741 ret = 1;
742
Joerg Roedelff03a072010-09-10 17:30:57 +0200743 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700744 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
745
Carsten Ottea03490e2007-10-29 16:09:35 +0100746out:
Carsten Ottea03490e2007-10-29 16:09:35 +0100747
748 return ret;
749}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100750EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100751
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +0100752bool pdptrs_changed(struct kvm_vcpu *vcpu)
Avi Kivityd835dfe2007-11-21 02:57:59 +0200753{
Joerg Roedelff03a072010-09-10 17:30:57 +0200754 u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)];
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200755 int offset;
756 gfn_t gfn;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200757 int r;
758
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +0200759 if (!is_pae_paging(vcpu))
Avi Kivityd835dfe2007-11-21 02:57:59 +0200760 return false;
761
Sean Christophersoncb3c1e22019-09-27 14:45:22 -0700762 if (!kvm_register_is_available(vcpu, VCPU_EXREG_PDPTR))
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300763 return true;
764
Paolo Bonzinia5121772017-07-24 18:54:38 +0200765 gfn = (kvm_read_cr3(vcpu) & 0xffffffe0ul) >> PAGE_SHIFT;
766 offset = (kvm_read_cr3(vcpu) & 0xffffffe0ul) & (PAGE_SIZE - 1);
Joerg Roedel3d06b8b2010-09-10 17:30:53 +0200767 r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte),
768 PFERR_USER_MASK | PFERR_WRITE_MASK);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200769 if (r < 0)
Miaohe Lin7f7f0d92019-10-25 18:54:34 +0800770 return true;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200771
Miaohe Lin7f7f0d92019-10-25 18:54:34 +0800772 return memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200773}
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +0100774EXPORT_SYMBOL_GPL(pdptrs_changed);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200775
Avi Kivity49a9b072010-06-10 17:02:14 +0300776int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100777{
Sheng Yangaad82702010-05-12 16:40:42 +0800778 unsigned long old_cr0 = kvm_read_cr0(vcpu);
Xiao Guangrongd81135a2015-05-13 14:42:28 +0800779 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP;
Sheng Yangaad82702010-05-12 16:40:42 +0800780
Avi Kivityf9a48e62010-01-06 19:10:22 +0200781 cr0 |= X86_CR0_ET;
782
Gleb Natapovab344822010-01-21 15:28:46 +0200783#ifdef CONFIG_X86_64
Gleb Natapov0f122442010-04-28 19:15:31 +0300784 if (cr0 & 0xffffffff00000000UL)
785 return 1;
Gleb Natapovab344822010-01-21 15:28:46 +0200786#endif
787
788 cr0 &= ~CR0_RESERVED_BITS;
Carsten Ottea03490e2007-10-29 16:09:35 +0100789
Gleb Natapov0f122442010-04-28 19:15:31 +0300790 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
791 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100792
Gleb Natapov0f122442010-04-28 19:15:31 +0300793 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
794 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100795
796 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
797#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +0200798 if ((vcpu->arch.efer & EFER_LME)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100799 int cs_db, cs_l;
800
Gleb Natapov0f122442010-04-28 19:15:31 +0300801 if (!is_pae(vcpu))
802 return 1;
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700803 kvm_x86_ops.get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Gleb Natapov0f122442010-04-28 19:15:31 +0300804 if (cs_l)
805 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100806 } else
807#endif
Joerg Roedelff03a072010-09-10 17:30:57 +0200808 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
Avi Kivity9f8fe502010-12-05 17:30:00 +0200809 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300810 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100811 }
812
Mao, Junjiead756a12012-07-02 01:18:48 +0000813 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
814 return 1;
815
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700816 kvm_x86_ops.set_cr0(vcpu, cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100817
Lai Jiangshand170c412011-02-21 11:21:30 +0800818 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800819 kvm_clear_async_pf_completion_queue(vcpu);
Lai Jiangshand170c412011-02-21 11:21:30 +0800820 kvm_async_pf_hash_reset(vcpu);
821 }
Xiao Guangronge5f3f022010-11-12 14:47:01 +0800822
Sheng Yangaad82702010-05-12 16:40:42 +0800823 if ((cr0 ^ old_cr0) & update_bits)
824 kvm_mmu_reset_context(vcpu);
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800825
Laszlo Ersek879ae182015-11-04 12:54:41 +0100826 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
827 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
828 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongb18d5432015-06-15 16:55:21 +0800829 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
830
Gleb Natapov0f122442010-04-28 19:15:31 +0300831 return 0;
832}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200833EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100834
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200835void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100836{
Avi Kivity49a9b072010-06-10 17:02:14 +0300837 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100838}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200839EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100840
Aaron Lewis139a12c2019-10-21 16:30:25 -0700841void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu)
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300842{
Aaron Lewis139a12c2019-10-21 16:30:25 -0700843 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300844
Aaron Lewis139a12c2019-10-21 16:30:25 -0700845 if (vcpu->arch.xcr0 != host_xcr0)
846 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
847
848 if (vcpu->arch.xsaves_enabled &&
849 vcpu->arch.ia32_xss != host_xss)
850 wrmsrl(MSR_IA32_XSS, vcpu->arch.ia32_xss);
851 }
Babu Moger37486132020-05-12 18:59:06 -0500852
853 if (static_cpu_has(X86_FEATURE_PKU) &&
854 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
855 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU)) &&
856 vcpu->arch.pkru != vcpu->arch.host_pkru)
857 __write_pkru(vcpu->arch.pkru);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300858}
Aaron Lewis139a12c2019-10-21 16:30:25 -0700859EXPORT_SYMBOL_GPL(kvm_load_guest_xsave_state);
860
861void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu)
862{
Babu Moger37486132020-05-12 18:59:06 -0500863 if (static_cpu_has(X86_FEATURE_PKU) &&
864 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
865 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU))) {
866 vcpu->arch.pkru = rdpkru();
867 if (vcpu->arch.pkru != vcpu->arch.host_pkru)
868 __write_pkru(vcpu->arch.host_pkru);
869 }
870
Aaron Lewis139a12c2019-10-21 16:30:25 -0700871 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
872
873 if (vcpu->arch.xcr0 != host_xcr0)
874 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
875
876 if (vcpu->arch.xsaves_enabled &&
877 vcpu->arch.ia32_xss != host_xss)
878 wrmsrl(MSR_IA32_XSS, host_xss);
879 }
880
881}
882EXPORT_SYMBOL_GPL(kvm_load_host_xsave_state);
Marcelo Tosatti42bdf992013-04-15 23:30:13 -0300883
Fengguang Wu69b00492015-01-19 22:33:39 +0800884static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800885{
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000886 u64 xcr0 = xcr;
887 u64 old_xcr0 = vcpu->arch.xcr0;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200888 u64 valid_bits;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800889
890 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
891 if (index != XCR_XFEATURE_ENABLED_MASK)
892 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700893 if (!(xcr0 & XFEATURE_MASK_FP))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800894 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700895 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
Dexuan Cui2acf9232010-06-10 11:27:12 +0800896 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200897
898 /*
899 * Do not allow the guest to set bits that we do not support
900 * saving. However, xcr0 bit 0 is always set, even if the
901 * emulated CPU does not support XSAVE (see fx_init).
902 */
Dave Hansend91cab72015-09-02 16:31:26 -0700903 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200904 if (xcr0 & ~valid_bits)
Dexuan Cui2acf9232010-06-10 11:27:12 +0800905 return 1;
Paolo Bonzini46c34cb2013-10-17 16:50:46 +0200906
Dave Hansend91cab72015-09-02 16:31:26 -0700907 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
908 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
Liu, Jinsong390bd522014-02-24 10:58:09 +0000909 return 1;
910
Dave Hansend91cab72015-09-02 16:31:26 -0700911 if (xcr0 & XFEATURE_MASK_AVX512) {
912 if (!(xcr0 & XFEATURE_MASK_YMM))
Chao Peng612263b2014-10-22 17:35:24 +0800913 return 1;
Dave Hansend91cab72015-09-02 16:31:26 -0700914 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
Chao Peng612263b2014-10-22 17:35:24 +0800915 return 1;
916 }
Dexuan Cui2acf9232010-06-10 11:27:12 +0800917 vcpu->arch.xcr0 = xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000918
Dave Hansend91cab72015-09-02 16:31:26 -0700919 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
Liu, Jinsong56c103e2014-02-21 17:39:02 +0000920 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +0800921 return 0;
922}
923
924int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
925{
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700926 if (kvm_x86_ops.get_cpl(vcpu) != 0 ||
Zhanghaoyu (A)764bcbc2013-06-14 07:36:13 +0000927 __kvm_set_xcr(vcpu, index, xcr)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +0800928 kvm_inject_gp(vcpu, 0);
929 return 1;
930 }
931 return 0;
932}
933EXPORT_SYMBOL_GPL(kvm_set_xcr);
934
Sean Christopherson345599f2019-12-10 14:44:16 -0800935#define __cr4_reserved_bits(__cpu_has, __c) \
936({ \
937 u64 __reserved_bits = CR4_RESERVED_BITS; \
938 \
939 if (!__cpu_has(__c, X86_FEATURE_XSAVE)) \
940 __reserved_bits |= X86_CR4_OSXSAVE; \
941 if (!__cpu_has(__c, X86_FEATURE_SMEP)) \
942 __reserved_bits |= X86_CR4_SMEP; \
943 if (!__cpu_has(__c, X86_FEATURE_SMAP)) \
944 __reserved_bits |= X86_CR4_SMAP; \
945 if (!__cpu_has(__c, X86_FEATURE_FSGSBASE)) \
946 __reserved_bits |= X86_CR4_FSGSBASE; \
947 if (!__cpu_has(__c, X86_FEATURE_PKU)) \
948 __reserved_bits |= X86_CR4_PKE; \
949 if (!__cpu_has(__c, X86_FEATURE_LA57)) \
950 __reserved_bits |= X86_CR4_LA57; \
Sean Christophersond76c7fb2020-01-28 15:53:44 -0800951 if (!__cpu_has(__c, X86_FEATURE_UMIP)) \
952 __reserved_bits |= X86_CR4_UMIP; \
Sean Christopherson345599f2019-12-10 14:44:16 -0800953 __reserved_bits; \
954})
955
Wanpeng Li3ca94192019-09-18 17:50:10 +0800956static int kvm_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
957{
Sean Christophersonb11306b2019-12-10 14:44:13 -0800958 if (cr4 & cr4_reserved_bits)
Wanpeng Li3ca94192019-09-18 17:50:10 +0800959 return -EINVAL;
960
Sean Christopherson345599f2019-12-10 14:44:16 -0800961 if (cr4 & __cr4_reserved_bits(guest_cpuid_has, vcpu))
Wanpeng Li3ca94192019-09-18 17:50:10 +0800962 return -EINVAL;
963
964 return 0;
965}
966
Avi Kivitya83b29c2010-06-10 17:02:15 +0300967int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +0100968{
Avi Kivityfc78f512009-12-07 12:16:48 +0200969 unsigned long old_cr4 = kvm_read_cr4(vcpu);
Xiao Guangrong0be02262015-05-11 22:55:21 +0800970 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
Huaitong Hanb9baba82016-03-22 16:51:21 +0800971 X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE;
Xiao Guangrong0be02262015-05-11 22:55:21 +0800972
Wanpeng Li3ca94192019-09-18 17:50:10 +0800973 if (kvm_valid_cr4(vcpu, cr4))
Paolo Bonziniae3e61e2016-07-12 10:36:41 +0200974 return 1;
975
Carsten Ottea03490e2007-10-29 16:09:35 +0100976 if (is_long_mode(vcpu)) {
Gleb Natapov0f122442010-04-28 19:15:31 +0300977 if (!(cr4 & X86_CR4_PAE))
978 return 1;
Avi Kivitya2edf572009-05-24 22:19:00 +0300979 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
980 && ((cr4 ^ old_cr4) & pdptr_bits)
Avi Kivity9f8fe502010-12-05 17:30:00 +0200981 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
982 kvm_read_cr3(vcpu)))
Gleb Natapov0f122442010-04-28 19:15:31 +0300983 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +0100984
Mao, Junjiead756a12012-07-02 01:18:48 +0000985 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
Radim Krčmářd6321d42017-08-05 00:12:49 +0200986 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
Mao, Junjiead756a12012-07-02 01:18:48 +0000987 return 1;
988
989 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
990 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
991 return 1;
992 }
993
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700994 if (kvm_x86_ops.set_cr4(vcpu, cr4))
Gleb Natapov0f122442010-04-28 19:15:31 +0300995 return 1;
996
Mao, Junjiead756a12012-07-02 01:18:48 +0000997 if (((cr4 ^ old_cr4) & pdptr_bits) ||
998 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
Sheng Yangaad82702010-05-12 16:40:42 +0800999 kvm_mmu_reset_context(vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +03001000
Huaitong Hanb9baba82016-03-22 16:51:21 +08001001 if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE))
Avi Kivity00b27a32011-11-23 16:30:32 +02001002 kvm_update_cpuid(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08001003
Gleb Natapov0f122442010-04-28 19:15:31 +03001004 return 0;
1005}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001006EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +01001007
Avi Kivity23902182010-06-10 17:02:16 +03001008int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +01001009{
Junaid Shahidade61e22018-06-27 14:59:15 -07001010 bool skip_tlb_flush = false;
Paolo Bonziniac146232014-11-10 13:53:25 +01001011#ifdef CONFIG_X86_64
Junaid Shahidc19986f2018-05-04 11:37:13 -07001012 bool pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
1013
Junaid Shahidade61e22018-06-27 14:59:15 -07001014 if (pcid_enabled) {
Junaid Shahid208320b2018-06-27 14:59:21 -07001015 skip_tlb_flush = cr3 & X86_CR3_PCID_NOFLUSH;
1016 cr3 &= ~X86_CR3_PCID_NOFLUSH;
Junaid Shahidade61e22018-06-27 14:59:15 -07001017 }
Paolo Bonziniac146232014-11-10 13:53:25 +01001018#endif
Nadav Amit9d88fca2014-11-02 11:54:52 +02001019
Avi Kivity9f8fe502010-12-05 17:30:00 +02001020 if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) {
Junaid Shahid956bf352018-06-27 14:59:18 -07001021 if (!skip_tlb_flush) {
1022 kvm_mmu_sync_roots(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07001023 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
Junaid Shahid956bf352018-06-27 14:59:18 -07001024 }
Gleb Natapov0f122442010-04-28 19:15:31 +03001025 return 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +02001026 }
1027
Yu Zhangd1cd3ce2017-08-24 20:27:53 +08001028 if (is_long_mode(vcpu) &&
Wanpeng Lia780a3e2018-05-13 02:24:47 -07001029 (cr3 & rsvd_bits(cpuid_maxphyaddr(vcpu), 63)))
Yu Zhangd1cd3ce2017-08-24 20:27:53 +08001030 return 1;
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +02001031 else if (is_pae_paging(vcpu) &&
1032 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
Nadav Amit346874c2014-04-18 03:35:09 +03001033 return 1;
Carsten Ottea03490e2007-10-29 16:09:35 +01001034
Sean Christophersonbe01e8e2020-03-20 14:28:32 -07001035 kvm_mmu_new_pgd(vcpu, cr3, skip_tlb_flush, skip_tlb_flush);
Gleb Natapov0f122442010-04-28 19:15:31 +03001036 vcpu->arch.cr3 = cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001037 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Junaid Shahid7c390d32018-06-27 14:59:06 -07001038
Gleb Natapov0f122442010-04-28 19:15:31 +03001039 return 0;
1040}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001041EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +01001042
Andre Przywaraeea1cff2010-12-21 11:12:00 +01001043int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +01001044{
Gleb Natapov0f122442010-04-28 19:15:31 +03001045 if (cr8 & CR8_RESERVED_BITS)
1046 return 1;
Paolo Bonzini35754c92015-07-29 12:05:37 +02001047 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001048 kvm_lapic_set_tpr(vcpu, cr8);
1049 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001050 vcpu->arch.cr8 = cr8;
Gleb Natapov0f122442010-04-28 19:15:31 +03001051 return 0;
1052}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001053EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001054
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001055unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +01001056{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001057 if (lapic_in_kernel(vcpu))
Carsten Ottea03490e2007-10-29 16:09:35 +01001058 return kvm_lapic_get_cr8(vcpu);
1059 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001060 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +01001061}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02001062EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +01001063
Nadav Amitae561ed2015-04-02 03:10:37 +03001064static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
1065{
1066 int i;
1067
1068 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
1069 for (i = 0; i < KVM_NR_DB_REGS; i++)
1070 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
1071 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
1072 }
1073}
1074
Paolo Bonzini7c866632020-05-16 08:42:28 -04001075void kvm_update_dr7(struct kvm_vcpu *vcpu)
Jan Kiszkac8639012012-09-21 05:42:55 +02001076{
1077 unsigned long dr7;
1078
1079 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1080 dr7 = vcpu->arch.guest_debug_dr7;
1081 else
1082 dr7 = vcpu->arch.dr7;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001083 kvm_x86_ops.set_dr7(vcpu, dr7);
Paolo Bonzini360b9482014-02-21 09:55:56 +01001084 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
1085 if (dr7 & DR7_BP_EN_MASK)
1086 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
Jan Kiszkac8639012012-09-21 05:42:55 +02001087}
Paolo Bonzini7c866632020-05-16 08:42:28 -04001088EXPORT_SYMBOL_GPL(kvm_update_dr7);
Jan Kiszkac8639012012-09-21 05:42:55 +02001089
Nadav Amit6f43ed02014-07-15 17:37:46 +03001090static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
1091{
1092 u64 fixed = DR6_FIXED_1;
1093
Radim Krčmářd6321d42017-08-05 00:12:49 +02001094 if (!guest_cpuid_has(vcpu, X86_FEATURE_RTM))
Nadav Amit6f43ed02014-07-15 17:37:46 +03001095 fixed |= DR6_RTM;
1096 return fixed;
1097}
1098
Gleb Natapov338dbc92010-04-28 19:15:32 +03001099static int __kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
Gleb Natapov020df072010-04-13 10:05:23 +03001100{
Marios Pomonisea740052019-12-11 12:47:52 -08001101 size_t size = ARRAY_SIZE(vcpu->arch.db);
1102
Gleb Natapov020df072010-04-13 10:05:23 +03001103 switch (dr) {
1104 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001105 vcpu->arch.db[array_index_nospec(dr, size)] = val;
Gleb Natapov020df072010-04-13 10:05:23 +03001106 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
1107 vcpu->arch.eff_db[dr] = val;
1108 break;
1109 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001110 /* fall through */
1111 case 6:
Gleb Natapov338dbc92010-04-28 19:15:32 +03001112 if (val & 0xffffffff00000000ULL)
1113 return -1; /* #GP */
Nadav Amit6f43ed02014-07-15 17:37:46 +03001114 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001115 break;
1116 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001117 /* fall through */
1118 default: /* 7 */
Krish Sadhukhanb91991b2020-01-15 19:54:32 -05001119 if (!kvm_dr7_valid(val))
Gleb Natapov338dbc92010-04-28 19:15:32 +03001120 return -1; /* #GP */
Gleb Natapov020df072010-04-13 10:05:23 +03001121 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02001122 kvm_update_dr7(vcpu);
Gleb Natapov020df072010-04-13 10:05:23 +03001123 break;
1124 }
1125
1126 return 0;
1127}
Gleb Natapov338dbc92010-04-28 19:15:32 +03001128
1129int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
1130{
Nadav Amit16f8a6f2014-10-03 01:10:05 +03001131 if (__kvm_set_dr(vcpu, dr, val)) {
Gleb Natapov338dbc92010-04-28 19:15:32 +03001132 kvm_inject_gp(vcpu, 0);
Nadav Amit16f8a6f2014-10-03 01:10:05 +03001133 return 1;
1134 }
1135 return 0;
Gleb Natapov338dbc92010-04-28 19:15:32 +03001136}
Gleb Natapov020df072010-04-13 10:05:23 +03001137EXPORT_SYMBOL_GPL(kvm_set_dr);
1138
Nadav Amit16f8a6f2014-10-03 01:10:05 +03001139int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
Gleb Natapov020df072010-04-13 10:05:23 +03001140{
Marios Pomonisea740052019-12-11 12:47:52 -08001141 size_t size = ARRAY_SIZE(vcpu->arch.db);
1142
Gleb Natapov020df072010-04-13 10:05:23 +03001143 switch (dr) {
1144 case 0 ... 3:
Marios Pomonisea740052019-12-11 12:47:52 -08001145 *val = vcpu->arch.db[array_index_nospec(dr, size)];
Gleb Natapov020df072010-04-13 10:05:23 +03001146 break;
1147 case 4:
Gleb Natapov020df072010-04-13 10:05:23 +03001148 /* fall through */
1149 case 6:
Paolo Bonzini5679b802020-05-04 11:28:25 -04001150 *val = vcpu->arch.dr6;
Gleb Natapov020df072010-04-13 10:05:23 +03001151 break;
1152 case 5:
Gleb Natapov020df072010-04-13 10:05:23 +03001153 /* fall through */
1154 default: /* 7 */
1155 *val = vcpu->arch.dr7;
1156 break;
1157 }
Gleb Natapov338dbc92010-04-28 19:15:32 +03001158 return 0;
1159}
Gleb Natapov020df072010-04-13 10:05:23 +03001160EXPORT_SYMBOL_GPL(kvm_get_dr);
1161
Avi Kivity022cd0e2011-11-10 14:57:23 +02001162bool kvm_rdpmc(struct kvm_vcpu *vcpu)
1163{
Sean Christophersonde3cd112019-04-30 10:36:17 -07001164 u32 ecx = kvm_rcx_read(vcpu);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001165 u64 data;
1166 int err;
1167
Wei Huangc6702c92015-06-19 13:44:45 +02001168 err = kvm_pmu_rdpmc(vcpu, ecx, &data);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001169 if (err)
1170 return err;
Sean Christophersonde3cd112019-04-30 10:36:17 -07001171 kvm_rax_write(vcpu, (u32)data);
1172 kvm_rdx_write(vcpu, data >> 32);
Avi Kivity022cd0e2011-11-10 14:57:23 +02001173 return err;
1174}
1175EXPORT_SYMBOL_GPL(kvm_rdpmc);
1176
Carsten Otte043405e2007-10-10 17:16:19 +02001177/*
1178 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
1179 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
1180 *
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001181 * The three MSR lists(msrs_to_save, emulated_msrs, msr_based_features)
1182 * extract the supported MSRs from the related const lists.
1183 * msrs_to_save is selected from the msrs_to_save_all to reflect the
Glauber Costae3267cb2009-10-06 13:24:50 -04001184 * capabilities of the host cpu. This capabilities test skips MSRs that are
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001185 * kvm-specific. Those are put in emulated_msrs_all; filtering of emulated_msrs
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001186 * may depend on host virtualization features rather than host cpu features.
Carsten Otte043405e2007-10-10 17:16:19 +02001187 */
Glauber Costae3267cb2009-10-06 13:24:50 -04001188
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001189static const u32 msrs_to_save_all[] = {
Carsten Otte043405e2007-10-10 17:16:19 +02001190 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
Brian Gerst8c065852010-07-17 09:03:26 -04001191 MSR_STAR,
Carsten Otte043405e2007-10-10 17:16:19 +02001192#ifdef CONFIG_X86_64
1193 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
1194#endif
Nadav Har'Elb3897a42013-07-08 19:12:35 +08001195 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
Sean Christopherson32ad73d2019-12-20 20:44:55 -08001196 MSR_IA32_FEAT_CTL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001197 MSR_IA32_SPEC_CTRL,
Chao Pengbf8c55d2018-10-24 16:05:14 +08001198 MSR_IA32_RTIT_CTL, MSR_IA32_RTIT_STATUS, MSR_IA32_RTIT_CR3_MATCH,
1199 MSR_IA32_RTIT_OUTPUT_BASE, MSR_IA32_RTIT_OUTPUT_MASK,
1200 MSR_IA32_RTIT_ADDR0_A, MSR_IA32_RTIT_ADDR0_B,
1201 MSR_IA32_RTIT_ADDR1_A, MSR_IA32_RTIT_ADDR1_B,
1202 MSR_IA32_RTIT_ADDR2_A, MSR_IA32_RTIT_ADDR2_B,
1203 MSR_IA32_RTIT_ADDR3_A, MSR_IA32_RTIT_ADDR3_B,
Tao Xu6e3ba4a2019-07-16 14:55:50 +08001204 MSR_IA32_UMWAIT_CONTROL,
1205
Jim Mattsone2ada662019-08-21 11:20:04 -07001206 MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1,
1207 MSR_ARCH_PERFMON_FIXED_CTR0 + 2, MSR_ARCH_PERFMON_FIXED_CTR0 + 3,
1208 MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS,
1209 MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL,
1210 MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1,
1211 MSR_ARCH_PERFMON_PERFCTR0 + 2, MSR_ARCH_PERFMON_PERFCTR0 + 3,
1212 MSR_ARCH_PERFMON_PERFCTR0 + 4, MSR_ARCH_PERFMON_PERFCTR0 + 5,
1213 MSR_ARCH_PERFMON_PERFCTR0 + 6, MSR_ARCH_PERFMON_PERFCTR0 + 7,
1214 MSR_ARCH_PERFMON_PERFCTR0 + 8, MSR_ARCH_PERFMON_PERFCTR0 + 9,
1215 MSR_ARCH_PERFMON_PERFCTR0 + 10, MSR_ARCH_PERFMON_PERFCTR0 + 11,
1216 MSR_ARCH_PERFMON_PERFCTR0 + 12, MSR_ARCH_PERFMON_PERFCTR0 + 13,
1217 MSR_ARCH_PERFMON_PERFCTR0 + 14, MSR_ARCH_PERFMON_PERFCTR0 + 15,
1218 MSR_ARCH_PERFMON_PERFCTR0 + 16, MSR_ARCH_PERFMON_PERFCTR0 + 17,
Jim Mattsone2ada662019-08-21 11:20:04 -07001219 MSR_ARCH_PERFMON_EVENTSEL0, MSR_ARCH_PERFMON_EVENTSEL1,
1220 MSR_ARCH_PERFMON_EVENTSEL0 + 2, MSR_ARCH_PERFMON_EVENTSEL0 + 3,
1221 MSR_ARCH_PERFMON_EVENTSEL0 + 4, MSR_ARCH_PERFMON_EVENTSEL0 + 5,
1222 MSR_ARCH_PERFMON_EVENTSEL0 + 6, MSR_ARCH_PERFMON_EVENTSEL0 + 7,
1223 MSR_ARCH_PERFMON_EVENTSEL0 + 8, MSR_ARCH_PERFMON_EVENTSEL0 + 9,
1224 MSR_ARCH_PERFMON_EVENTSEL0 + 10, MSR_ARCH_PERFMON_EVENTSEL0 + 11,
1225 MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13,
1226 MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15,
1227 MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17,
Carsten Otte043405e2007-10-10 17:16:19 +02001228};
1229
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001230static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)];
Carsten Otte043405e2007-10-10 17:16:19 +02001231static unsigned num_msrs_to_save;
1232
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001233static const u32 emulated_msrs_all[] = {
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001234 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
1235 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
1236 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
1237 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
Ladi Prosek72c139b2017-07-26 13:32:59 +02001238 HV_X64_MSR_TSC_FREQUENCY, HV_X64_MSR_APIC_FREQUENCY,
Andrey Smetanine7d95132015-07-03 15:01:37 +03001239 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
1240 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
Andrey Smetanine516ceb2015-09-16 12:29:48 +03001241 HV_X64_MSR_RESET,
Andrey Smetanin11c4b1c2015-09-16 12:29:49 +03001242 HV_X64_MSR_VP_INDEX,
Andrey Smetanin9eec50b2015-09-16 12:29:50 +03001243 HV_X64_MSR_VP_RUNTIME,
Andrey Smetanin5c9194122015-11-10 15:36:34 +03001244 HV_X64_MSR_SCONTROL,
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03001245 HV_X64_MSR_STIMER0_CONFIG,
Ladi Prosekd4abc572018-03-20 15:02:07 +01001246 HV_X64_MSR_VP_ASSIST_PAGE,
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01001247 HV_X64_MSR_REENLIGHTENMENT_CONTROL, HV_X64_MSR_TSC_EMULATION_CONTROL,
1248 HV_X64_MSR_TSC_EMULATION_STATUS,
1249
1250 MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001251 MSR_KVM_PV_EOI_EN,
1252
Will Auldba904632012-11-29 12:42:50 -08001253 MSR_IA32_TSC_ADJUST,
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08001254 MSR_IA32_TSCDEADLINE,
Xiaoyao Li2bdb76c2019-03-08 15:57:20 +08001255 MSR_IA32_ARCH_CAPABILITIES,
Carsten Otte043405e2007-10-10 17:16:19 +02001256 MSR_IA32_MISC_ENABLE,
Avi Kivity908e75f2010-07-07 14:09:38 +03001257 MSR_IA32_MCG_STATUS,
1258 MSR_IA32_MCG_CTL,
Ashok Rajc45dcc72016-06-22 14:59:56 +08001259 MSR_IA32_MCG_EXT_CTL,
Paolo Bonzini64d60672015-05-07 11:36:11 +02001260 MSR_IA32_SMBASE,
Liran Alon52797bf2017-11-15 13:43:14 +02001261 MSR_SMI_COUNT,
Kyle Hueydb2336a2017-03-20 01:16:28 -07001262 MSR_PLATFORM_INFO,
1263 MSR_MISC_FEATURES_ENABLES,
Tom Lendackybc226f02018-05-10 22:06:39 +02001264 MSR_AMD64_VIRT_SPEC_CTRL,
Liran Alon6c6a2ab2019-04-15 18:45:26 +03001265 MSR_IA32_POWER_CTL,
Paolo Bonzini99634e32020-01-20 14:22:55 +01001266 MSR_IA32_UCODE_REV,
Borislav Petkov191c8132019-04-18 18:32:50 +02001267
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001268 /*
1269 * The following list leaves out MSRs whose values are determined
1270 * by arch/x86/kvm/vmx/nested.c based on CPUID or other MSRs.
1271 * We always support the "true" VMX control MSRs, even if the host
1272 * processor does not, so I am putting these registers here rather
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001273 * than in msrs_to_save_all.
Paolo Bonzini95c5c7c2019-07-02 14:45:24 +02001274 */
1275 MSR_IA32_VMX_BASIC,
1276 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1277 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1278 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1279 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1280 MSR_IA32_VMX_MISC,
1281 MSR_IA32_VMX_CR0_FIXED0,
1282 MSR_IA32_VMX_CR4_FIXED0,
1283 MSR_IA32_VMX_VMCS_ENUM,
1284 MSR_IA32_VMX_PROCBASED_CTLS2,
1285 MSR_IA32_VMX_EPT_VPID_CAP,
1286 MSR_IA32_VMX_VMFUNC,
1287
Borislav Petkov191c8132019-04-18 18:32:50 +02001288 MSR_K7_HWCR,
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03001289 MSR_KVM_POLL_CONTROL,
Carsten Otte043405e2007-10-10 17:16:19 +02001290};
1291
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001292static u32 emulated_msrs[ARRAY_SIZE(emulated_msrs_all)];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02001293static unsigned num_emulated_msrs;
1294
Tom Lendacky801e4592018-02-21 13:39:51 -06001295/*
1296 * List of msr numbers which are used to expose MSR-based features that
1297 * can be used by a hypervisor to validate requested CPU features.
1298 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001299static const u32 msr_based_features_all[] = {
Paolo Bonzini13893092018-02-26 13:40:09 +01001300 MSR_IA32_VMX_BASIC,
1301 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1302 MSR_IA32_VMX_PINBASED_CTLS,
1303 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1304 MSR_IA32_VMX_PROCBASED_CTLS,
1305 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1306 MSR_IA32_VMX_EXIT_CTLS,
1307 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1308 MSR_IA32_VMX_ENTRY_CTLS,
1309 MSR_IA32_VMX_MISC,
1310 MSR_IA32_VMX_CR0_FIXED0,
1311 MSR_IA32_VMX_CR0_FIXED1,
1312 MSR_IA32_VMX_CR4_FIXED0,
1313 MSR_IA32_VMX_CR4_FIXED1,
1314 MSR_IA32_VMX_VMCS_ENUM,
1315 MSR_IA32_VMX_PROCBASED_CTLS2,
1316 MSR_IA32_VMX_EPT_VPID_CAP,
1317 MSR_IA32_VMX_VMFUNC,
1318
Tom Lendackyd1d93fa2018-02-24 00:18:20 +01001319 MSR_F10H_DECFG,
Wanpeng Li518e7b92018-02-28 14:03:31 +08001320 MSR_IA32_UCODE_REV,
Paolo Bonzinicd283252018-06-25 14:04:37 +02001321 MSR_IA32_ARCH_CAPABILITIES,
Tom Lendacky801e4592018-02-21 13:39:51 -06001322};
1323
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08001324static u32 msr_based_features[ARRAY_SIZE(msr_based_features_all)];
Tom Lendacky801e4592018-02-21 13:39:51 -06001325static unsigned int num_msr_based_features;
1326
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001327static u64 kvm_get_arch_capabilities(void)
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001328{
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001329 u64 data = 0;
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001330
Xiaoyao Li4d22c172019-04-19 10:16:24 +08001331 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
1332 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, data);
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001333
1334 /*
Paolo Bonzinib8e8c832019-11-04 12:22:02 +01001335 * If nx_huge_pages is enabled, KVM's shadow paging will ensure that
1336 * the nested hypervisor runs with NX huge pages. If it is not,
1337 * L1 is anyway vulnerable to ITLB_MULTIHIT explots from other
1338 * L1 guests, so it need not worry about its own (L2) guests.
1339 */
1340 data |= ARCH_CAP_PSCHANGE_MC_NO;
1341
1342 /*
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001343 * If we're doing cache flushes (either "always" or "cond")
1344 * we will do one whenever the guest does a vmlaunch/vmresume.
1345 * If an outer hypervisor is doing the cache flush for us
1346 * (VMENTER_L1D_FLUSH_NESTED_VM), we can safely pass that
1347 * capability to the guest too, and if EPT is disabled we're not
1348 * vulnerable. Overall, only VMENTER_L1D_FLUSH_NEVER will
1349 * require a nested hypervisor to do a flush of its own.
1350 */
1351 if (l1tf_vmx_mitigation != VMENTER_L1D_FLUSH_NEVER)
1352 data |= ARCH_CAP_SKIP_VMENTRY_L1DFLUSH;
1353
Paolo Bonzini0c549142019-08-19 17:24:07 +02001354 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
1355 data |= ARCH_CAP_RDCL_NO;
1356 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1357 data |= ARCH_CAP_SSB_NO;
1358 if (!boot_cpu_has_bug(X86_BUG_MDS))
1359 data |= ARCH_CAP_MDS_NO;
1360
Pawan Guptae1d38b62019-10-23 12:23:33 +02001361 /*
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001362 * On TAA affected systems:
1363 * - nothing to do if TSX is disabled on the host.
1364 * - we emulate TSX_CTRL if present on the host.
1365 * This lets the guest use VERW to clear CPU buffers.
Pawan Guptae1d38b62019-10-23 12:23:33 +02001366 */
Paolo Bonzinicbbaa272019-11-18 18:58:26 +01001367 if (!boot_cpu_has(X86_FEATURE_RTM))
Paolo Bonzinic11f83e2019-11-18 12:23:00 -05001368 data &= ~(ARCH_CAP_TAA_NO | ARCH_CAP_TSX_CTRL_MSR);
Paolo Bonzinicbbaa272019-11-18 18:58:26 +01001369 else if (!boot_cpu_has_bug(X86_BUG_TAA))
1370 data |= ARCH_CAP_TAA_NO;
Pawan Guptae1d38b62019-10-23 12:23:33 +02001371
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001372 return data;
1373}
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001374
Wanpeng Li66421c12018-02-28 14:03:30 +08001375static int kvm_get_msr_feature(struct kvm_msr_entry *msr)
1376{
1377 switch (msr->index) {
Paolo Bonzinicd283252018-06-25 14:04:37 +02001378 case MSR_IA32_ARCH_CAPABILITIES:
Paolo Bonzini5b76a3c2018-08-05 16:07:47 +02001379 msr->data = kvm_get_arch_capabilities();
1380 break;
1381 case MSR_IA32_UCODE_REV:
Paolo Bonzinicd283252018-06-25 14:04:37 +02001382 rdmsrl_safe(msr->index, &msr->data);
Wanpeng Li518e7b92018-02-28 14:03:31 +08001383 break;
Wanpeng Li66421c12018-02-28 14:03:30 +08001384 default:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001385 if (kvm_x86_ops.get_msr_feature(msr))
Wanpeng Li66421c12018-02-28 14:03:30 +08001386 return 1;
1387 }
1388 return 0;
1389}
1390
Tom Lendacky801e4592018-02-21 13:39:51 -06001391static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1392{
1393 struct kvm_msr_entry msr;
Wanpeng Li66421c12018-02-28 14:03:30 +08001394 int r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001395
1396 msr.index = index;
Wanpeng Li66421c12018-02-28 14:03:30 +08001397 r = kvm_get_msr_feature(&msr);
1398 if (r)
1399 return r;
Tom Lendacky801e4592018-02-21 13:39:51 -06001400
1401 *data = msr.data;
1402
1403 return 0;
1404}
1405
Sean Christopherson11988492019-04-02 08:19:15 -07001406static bool __kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
1407{
1408 if (efer & EFER_FFXSR && !guest_cpuid_has(vcpu, X86_FEATURE_FXSR_OPT))
1409 return false;
1410
1411 if (efer & EFER_SVME && !guest_cpuid_has(vcpu, X86_FEATURE_SVM))
1412 return false;
1413
Sean Christopherson0a629562019-04-02 08:19:16 -07001414 if (efer & (EFER_LME | EFER_LMA) &&
1415 !guest_cpuid_has(vcpu, X86_FEATURE_LM))
1416 return false;
1417
1418 if (efer & EFER_NX && !guest_cpuid_has(vcpu, X86_FEATURE_NX))
1419 return false;
1420
Sean Christopherson11988492019-04-02 08:19:15 -07001421 return true;
1422
1423}
Jan Kiszka384bb782013-04-20 10:52:36 +02001424bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
Carsten Otte15c4a642007-10-30 18:44:17 +01001425{
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001426 if (efer & efer_reserved_bits)
Jan Kiszka384bb782013-04-20 10:52:36 +02001427 return false;
Carsten Otte15c4a642007-10-30 18:44:17 +01001428
Sean Christopherson11988492019-04-02 08:19:15 -07001429 return __kvm_valid_efer(vcpu, efer);
Jan Kiszka384bb782013-04-20 10:52:36 +02001430}
1431EXPORT_SYMBOL_GPL(kvm_valid_efer);
1432
Sean Christopherson11988492019-04-02 08:19:15 -07001433static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Jan Kiszka384bb782013-04-20 10:52:36 +02001434{
1435 u64 old_efer = vcpu->arch.efer;
Sean Christopherson11988492019-04-02 08:19:15 -07001436 u64 efer = msr_info->data;
Jan Kiszka384bb782013-04-20 10:52:36 +02001437
Sean Christopherson11988492019-04-02 08:19:15 -07001438 if (efer & efer_reserved_bits)
Paolo Bonzini66f61c92019-05-24 21:52:46 +02001439 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +02001440
Sean Christopherson11988492019-04-02 08:19:15 -07001441 if (!msr_info->host_initiated) {
1442 if (!__kvm_valid_efer(vcpu, efer))
1443 return 1;
1444
1445 if (is_paging(vcpu) &&
1446 (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1447 return 1;
1448 }
Jan Kiszka384bb782013-04-20 10:52:36 +02001449
Carsten Otte15c4a642007-10-30 18:44:17 +01001450 efer &= ~EFER_LMA;
Avi Kivityf6801df2010-01-21 15:31:50 +02001451 efer |= vcpu->arch.efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +01001452
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001453 kvm_x86_ops.set_efer(vcpu, efer);
Sheng Yanga3d204e2010-05-12 16:40:40 +08001454
Sheng Yangaad82702010-05-12 16:40:42 +08001455 /* Update reserved bits */
1456 if ((efer ^ old_efer) & EFER_NX)
1457 kvm_mmu_reset_context(vcpu);
1458
Roedel, Joergb69e8ca2010-05-06 11:38:43 +02001459 return 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01001460}
1461
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +01001462void kvm_enable_efer_bits(u64 mask)
1463{
1464 efer_reserved_bits &= ~mask;
1465}
1466EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1467
Carsten Otte15c4a642007-10-30 18:44:17 +01001468/*
Sean Christophersonf20935d2019-09-05 14:22:54 -07001469 * Write @data into the MSR specified by @index. Select MSR specific fault
1470 * checks are bypassed if @host_initiated is %true.
Carsten Otte15c4a642007-10-30 18:44:17 +01001471 * Returns 0 on success, non-0 otherwise.
1472 * Assumes vcpu_load() was already called.
1473 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001474static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data,
1475 bool host_initiated)
Carsten Otte15c4a642007-10-30 18:44:17 +01001476{
Sean Christophersonf20935d2019-09-05 14:22:54 -07001477 struct msr_data msr;
1478
1479 switch (index) {
Nadav Amit854e8bb2014-09-16 03:24:05 +03001480 case MSR_FS_BASE:
1481 case MSR_GS_BASE:
1482 case MSR_KERNEL_GS_BASE:
1483 case MSR_CSTAR:
1484 case MSR_LSTAR:
Sean Christophersonf20935d2019-09-05 14:22:54 -07001485 if (is_noncanonical_address(data, vcpu))
Nadav Amit854e8bb2014-09-16 03:24:05 +03001486 return 1;
1487 break;
1488 case MSR_IA32_SYSENTER_EIP:
1489 case MSR_IA32_SYSENTER_ESP:
1490 /*
1491 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1492 * non-canonical address is written on Intel but not on
1493 * AMD (which ignores the top 32-bits, because it does
1494 * not implement 64-bit SYSENTER).
1495 *
1496 * 64-bit code should hence be able to write a non-canonical
1497 * value on AMD. Making the address canonical ensures that
1498 * vmentry does not fail on Intel after writing a non-canonical
1499 * value, and that something deterministic happens if the guest
1500 * invokes 64-bit SYSENTER.
1501 */
Sean Christophersonf20935d2019-09-05 14:22:54 -07001502 data = get_canonical(data, vcpu_virt_addr_bits(vcpu));
Nadav Amit854e8bb2014-09-16 03:24:05 +03001503 }
Sean Christophersonf20935d2019-09-05 14:22:54 -07001504
1505 msr.data = data;
1506 msr.index = index;
1507 msr.host_initiated = host_initiated;
1508
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001509 return kvm_x86_ops.set_msr(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001510}
1511
1512/*
1513 * Read the MSR specified by @index into @data. Select MSR specific fault
1514 * checks are bypassed if @host_initiated is %true.
1515 * Returns 0 on success, non-0 otherwise.
1516 * Assumes vcpu_load() was already called.
1517 */
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001518int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data,
1519 bool host_initiated)
Sean Christophersonf20935d2019-09-05 14:22:54 -07001520{
1521 struct msr_data msr;
1522 int ret;
1523
1524 msr.index = index;
1525 msr.host_initiated = host_initiated;
1526
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001527 ret = kvm_x86_ops.get_msr(vcpu, &msr);
Sean Christophersonf20935d2019-09-05 14:22:54 -07001528 if (!ret)
1529 *data = msr.data;
1530 return ret;
1531}
1532
1533int kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data)
1534{
1535 return __kvm_get_msr(vcpu, index, data, false);
1536}
1537EXPORT_SYMBOL_GPL(kvm_get_msr);
1538
1539int kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data)
1540{
1541 return __kvm_set_msr(vcpu, index, data, false);
Carsten Otte15c4a642007-10-30 18:44:17 +01001542}
Nadav Amit854e8bb2014-09-16 03:24:05 +03001543EXPORT_SYMBOL_GPL(kvm_set_msr);
Carsten Otte15c4a642007-10-30 18:44:17 +01001544
Sean Christopherson1edce0a2019-09-05 14:22:55 -07001545int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu)
1546{
1547 u32 ecx = kvm_rcx_read(vcpu);
1548 u64 data;
1549
1550 if (kvm_get_msr(vcpu, ecx, &data)) {
1551 trace_kvm_msr_read_ex(ecx);
1552 kvm_inject_gp(vcpu, 0);
1553 return 1;
1554 }
1555
1556 trace_kvm_msr_read(ecx, data);
1557
1558 kvm_rax_write(vcpu, data & -1u);
1559 kvm_rdx_write(vcpu, (data >> 32) & -1u);
1560 return kvm_skip_emulated_instruction(vcpu);
1561}
1562EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr);
1563
1564int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu)
1565{
1566 u32 ecx = kvm_rcx_read(vcpu);
1567 u64 data = kvm_read_edx_eax(vcpu);
1568
1569 if (kvm_set_msr(vcpu, ecx, data)) {
1570 trace_kvm_msr_write_ex(ecx, data);
1571 kvm_inject_gp(vcpu, 0);
1572 return 1;
1573 }
1574
1575 trace_kvm_msr_write(ecx, data);
1576 return kvm_skip_emulated_instruction(vcpu);
1577}
1578EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr);
1579
Wanpeng Li5a9f5442020-04-28 14:23:26 +08001580bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu)
1581{
1582 return vcpu->mode == EXITING_GUEST_MODE || kvm_request_pending(vcpu) ||
1583 need_resched() || signal_pending(current);
1584}
1585EXPORT_SYMBOL_GPL(kvm_vcpu_exit_request);
1586
Carsten Otte313a3dc2007-10-11 19:16:52 +02001587/*
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001588 * The fast path for frequent and performance sensitive wrmsr emulation,
1589 * i.e. the sending of IPI, sending IPI early in the VM-Exit flow reduces
1590 * the latency of virtual IPI by avoiding the expensive bits of transitioning
1591 * from guest to host, e.g. reacquiring KVM's SRCU lock. In contrast to the
1592 * other cases which must be called after interrupts are enabled on the host.
1593 */
1594static int handle_fastpath_set_x2apic_icr_irqoff(struct kvm_vcpu *vcpu, u64 data)
1595{
Wanpeng Lie1be9ac2020-03-26 10:20:01 +08001596 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(vcpu->arch.apic))
1597 return 1;
1598
1599 if (((data & APIC_SHORT_MASK) == APIC_DEST_NOSHORT) &&
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001600 ((data & APIC_DEST_MASK) == APIC_DEST_PHYSICAL) &&
Wanpeng Li4064a4c2020-04-02 16:20:26 +08001601 ((data & APIC_MODE_MASK) == APIC_DM_FIXED) &&
1602 ((u32)(data >> 32) != X2APIC_BROADCAST)) {
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001603
Wanpeng Lid5361672020-03-26 10:20:02 +08001604 data &= ~(1 << 12);
1605 kvm_apic_send_ipi(vcpu->arch.apic, (u32)data, (u32)(data >> 32));
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001606 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR2, (u32)(data >> 32));
Wanpeng Lid5361672020-03-26 10:20:02 +08001607 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR, (u32)data);
1608 trace_kvm_apic_write(APIC_ICR, (u32)data);
1609 return 0;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001610 }
1611
1612 return 1;
1613}
1614
Wanpeng Liae95f562020-04-28 14:23:28 +08001615static int handle_fastpath_set_tscdeadline(struct kvm_vcpu *vcpu, u64 data)
1616{
1617 if (!kvm_can_use_hv_timer(vcpu))
1618 return 1;
1619
1620 kvm_set_lapic_tscdeadline_msr(vcpu, data);
1621 return 0;
1622}
1623
Wanpeng Li404d5d72020-04-28 14:23:25 +08001624fastpath_t handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001625{
1626 u32 msr = kvm_rcx_read(vcpu);
Wanpeng Li8a1038d2020-03-26 10:20:00 +08001627 u64 data;
Wanpeng Li404d5d72020-04-28 14:23:25 +08001628 fastpath_t ret = EXIT_FASTPATH_NONE;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001629
1630 switch (msr) {
1631 case APIC_BASE_MSR + (APIC_ICR >> 4):
Wanpeng Li8a1038d2020-03-26 10:20:00 +08001632 data = kvm_read_edx_eax(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08001633 if (!handle_fastpath_set_x2apic_icr_irqoff(vcpu, data)) {
1634 kvm_skip_emulated_instruction(vcpu);
1635 ret = EXIT_FASTPATH_EXIT_HANDLED;
Haiwei Li80bc97f2020-05-18 09:31:38 +08001636 }
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001637 break;
Wanpeng Liae95f562020-04-28 14:23:28 +08001638 case MSR_IA32_TSCDEADLINE:
1639 data = kvm_read_edx_eax(vcpu);
1640 if (!handle_fastpath_set_tscdeadline(vcpu, data)) {
1641 kvm_skip_emulated_instruction(vcpu);
1642 ret = EXIT_FASTPATH_REENTER_GUEST;
1643 }
1644 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001645 default:
Wanpeng Li404d5d72020-04-28 14:23:25 +08001646 break;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001647 }
1648
Wanpeng Li404d5d72020-04-28 14:23:25 +08001649 if (ret != EXIT_FASTPATH_NONE)
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001650 trace_kvm_msr_write(msr, data);
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001651
Wanpeng Li404d5d72020-04-28 14:23:25 +08001652 return ret;
Wanpeng Li1e9e2622019-11-21 11:17:11 +08001653}
1654EXPORT_SYMBOL_GPL(handle_fastpath_set_msr_irqoff);
1655
1656/*
Carsten Otte313a3dc2007-10-11 19:16:52 +02001657 * Adapt set_msr() to msr_io()'s calling convention
1658 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001659static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1660{
Sean Christophersonf20935d2019-09-05 14:22:54 -07001661 return __kvm_get_msr(vcpu, index, data, true);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02001662}
1663
Carsten Otte313a3dc2007-10-11 19:16:52 +02001664static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1665{
Sean Christophersonf20935d2019-09-05 14:22:54 -07001666 return __kvm_set_msr(vcpu, index, *data, true);
Carsten Otte313a3dc2007-10-11 19:16:52 +02001667}
1668
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001669#ifdef CONFIG_X86_64
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02001670struct pvclock_clock {
1671 int vclock_mode;
1672 u64 cycle_last;
1673 u64 mask;
1674 u32 mult;
1675 u32 shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01001676 u64 base_cycles;
1677 u64 offset;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02001678};
1679
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001680struct pvclock_gtod_data {
1681 seqcount_t seq;
1682
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02001683 struct pvclock_clock clock; /* extract of a clocksource struct */
1684 struct pvclock_clock raw_clock; /* extract of a clocksource struct */
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001685
Paolo Bonzini917f9472020-01-22 14:32:20 +01001686 ktime_t offs_boot;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001687 u64 wall_time_sec;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001688};
1689
1690static struct pvclock_gtod_data pvclock_gtod_data;
1691
1692static void update_pvclock_gtod(struct timekeeper *tk)
1693{
1694 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
1695
1696 write_seqcount_begin(&vdata->seq);
1697
1698 /* copy pvclock gtod data */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01001699 vdata->clock.vclock_mode = tk->tkr_mono.clock->vdso_clock_mode;
Peter Zijlstra876e7882015-03-19 10:09:06 +01001700 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
1701 vdata->clock.mask = tk->tkr_mono.mask;
1702 vdata->clock.mult = tk->tkr_mono.mult;
1703 vdata->clock.shift = tk->tkr_mono.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01001704 vdata->clock.base_cycles = tk->tkr_mono.xtime_nsec;
1705 vdata->clock.offset = tk->tkr_mono.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001706
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01001707 vdata->raw_clock.vclock_mode = tk->tkr_raw.clock->vdso_clock_mode;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02001708 vdata->raw_clock.cycle_last = tk->tkr_raw.cycle_last;
1709 vdata->raw_clock.mask = tk->tkr_raw.mask;
1710 vdata->raw_clock.mult = tk->tkr_raw.mult;
1711 vdata->raw_clock.shift = tk->tkr_raw.shift;
Paolo Bonzini917f9472020-01-22 14:32:20 +01001712 vdata->raw_clock.base_cycles = tk->tkr_raw.xtime_nsec;
1713 vdata->raw_clock.offset = tk->tkr_raw.base;
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001714
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02001715 vdata->wall_time_sec = tk->xtime_sec;
1716
Paolo Bonzini917f9472020-01-22 14:32:20 +01001717 vdata->offs_boot = tk->offs_boot;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02001718
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001719 write_seqcount_end(&vdata->seq);
1720}
Paolo Bonzini8171cd62020-01-22 14:36:09 +01001721
1722static s64 get_kvmclock_base_ns(void)
1723{
1724 /* Count up from boot time, but with the frequency of the raw clock. */
1725 return ktime_to_ns(ktime_add(ktime_get_raw(), pvclock_gtod_data.offs_boot));
1726}
1727#else
1728static s64 get_kvmclock_base_ns(void)
1729{
1730 /* Master clock not used, so we can just use CLOCK_BOOTTIME. */
1731 return ktime_get_boottime_ns();
1732}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001733#endif
1734
Nicholas Krausebab5bb32015-01-01 22:05:18 -05001735void kvm_set_pending_timer(struct kvm_vcpu *vcpu)
1736{
Nicholas Krausebab5bb32015-01-01 22:05:18 -05001737 kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu);
Wanpeng Li4d151bf2019-07-06 09:26:50 +08001738 kvm_vcpu_kick(vcpu);
Nicholas Krausebab5bb32015-01-01 22:05:18 -05001739}
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001740
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001741static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
1742{
Avi Kivity9ed3c442010-05-04 15:00:37 +03001743 int version;
1744 int r;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001745 struct pvclock_wall_clock wc;
Paolo Bonzini8171cd62020-01-22 14:36:09 +01001746 u64 wall_nsec;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001747
1748 if (!wall_clock)
1749 return;
1750
Avi Kivity9ed3c442010-05-04 15:00:37 +03001751 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
1752 if (r)
1753 return;
1754
1755 if (version & 1)
1756 ++version; /* first time write, random junk */
1757
1758 ++version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001759
Nicholas Krause1dab1342015-12-30 13:08:46 -05001760 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
1761 return;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001762
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001763 /*
1764 * The guest calculates current wall clock time by adding
Zachary Amsden34c238a2010-09-18 14:38:14 -10001765 * system time (updated by kvm_guest_time_update below) to the
Paolo Bonzini8171cd62020-01-22 14:36:09 +01001766 * wall clock specified here. We do the reverse here.
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001767 */
Paolo Bonzini8171cd62020-01-22 14:36:09 +01001768 wall_nsec = ktime_get_real_ns() - get_kvmclock_ns(kvm);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001769
Paolo Bonzini8171cd62020-01-22 14:36:09 +01001770 wc.nsec = do_div(wall_nsec, 1000000000);
1771 wc.sec = (u32)wall_nsec; /* overflow in 2106 guest time */
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001772 wc.version = version;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001773
1774 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
1775
1776 version++;
1777 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02001778}
1779
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001780static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
1781{
Paolo Bonzinib51012d2016-01-22 11:39:22 +01001782 do_shl32_div32(dividend, divisor);
1783 return dividend;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001784}
1785
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001786static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001787 s8 *pshift, u32 *pmultiplier)
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001788{
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001789 uint64_t scaled64;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001790 int32_t shift = 0;
1791 uint64_t tps64;
1792 uint32_t tps32;
1793
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001794 tps64 = base_hz;
1795 scaled64 = scaled_hz;
Jan Kiszka50933622010-09-26 13:00:53 +02001796 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001797 tps64 >>= 1;
1798 shift--;
1799 }
1800
1801 tps32 = (uint32_t)tps64;
Jan Kiszka50933622010-09-26 13:00:53 +02001802 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
1803 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001804 scaled64 >>= 1;
1805 else
1806 tps32 <<= 1;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001807 shift++;
1808 }
1809
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10001810 *pshift = shift;
1811 *pmultiplier = div_frac(scaled64, tps32);
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02001812}
1813
Marcelo Tosattid8281992012-11-27 23:29:01 -02001814#ifdef CONFIG_X86_64
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001815static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
Marcelo Tosattid8281992012-11-27 23:29:01 -02001816#endif
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02001817
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001818static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
Fengguang Wu69b00492015-01-19 22:33:39 +08001819static unsigned long max_tsc_khz;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01001820
Zachary Amsdencc578282012-02-03 15:43:50 -02001821static u32 adjust_tsc_khz(u32 khz, s32 ppm)
Zachary Amsdenc2855452010-09-18 14:38:15 -10001822{
Zachary Amsdencc578282012-02-03 15:43:50 -02001823 u64 v = (u64)khz * (1000000 + ppm);
1824 do_div(v, 1000000);
1825 return v;
1826}
1827
Haozhong Zhang381d5852015-10-20 15:39:04 +08001828static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
1829{
1830 u64 ratio;
1831
1832 /* Guest TSC same frequency as host TSC? */
1833 if (!scale) {
1834 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
1835 return 0;
1836 }
1837
1838 /* TSC scaling supported? */
1839 if (!kvm_has_tsc_control) {
1840 if (user_tsc_khz > tsc_khz) {
1841 vcpu->arch.tsc_catchup = 1;
1842 vcpu->arch.tsc_always_catchup = 1;
1843 return 0;
1844 } else {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02001845 pr_warn_ratelimited("user requested TSC rate below hardware speed\n");
Haozhong Zhang381d5852015-10-20 15:39:04 +08001846 return -1;
1847 }
1848 }
1849
1850 /* TSC scaling required - calculate ratio */
1851 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
1852 user_tsc_khz, tsc_khz);
1853
1854 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
Paolo Bonzini3f16a5c2019-06-26 14:16:13 +02001855 pr_warn_ratelimited("Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
1856 user_tsc_khz);
Haozhong Zhang381d5852015-10-20 15:39:04 +08001857 return -1;
1858 }
1859
1860 vcpu->arch.tsc_scaling_ratio = ratio;
1861 return 0;
1862}
1863
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001864static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
Zachary Amsdencc578282012-02-03 15:43:50 -02001865{
1866 u32 thresh_lo, thresh_hi;
1867 int use_scaling = 0;
1868
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001869 /* tsc_khz can be zero if TSC calibration fails */
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001870 if (user_tsc_khz == 0) {
Haozhong Zhangad7218832015-10-20 15:39:02 +08001871 /* set tsc_scaling_ratio to a safe value */
1872 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
Haozhong Zhang381d5852015-10-20 15:39:04 +08001873 return -1;
Haozhong Zhangad7218832015-10-20 15:39:02 +08001874 }
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03001875
Zachary Amsdenc2855452010-09-18 14:38:15 -10001876 /* Compute a scale to convert nanoseconds in TSC cycles */
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01001877 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
Zachary Amsdencc578282012-02-03 15:43:50 -02001878 &vcpu->arch.virtual_tsc_shift,
1879 &vcpu->arch.virtual_tsc_mult);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001880 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
Zachary Amsdencc578282012-02-03 15:43:50 -02001881
1882 /*
1883 * Compute the variation in TSC rate which is acceptable
1884 * within the range of tolerance and decide if the
1885 * rate being applied is within that bounds of the hardware
1886 * rate. If so, no scaling or compensation need be done.
1887 */
1888 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
1889 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001890 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
1891 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 -02001892 use_scaling = 1;
1893 }
Paolo Bonzini4941b8c2016-02-08 14:51:12 +01001894 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
Zachary Amsdenc2855452010-09-18 14:38:15 -10001895}
1896
1897static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
1898{
Zachary Amsdene26101b2012-02-03 15:43:57 -02001899 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
Zachary Amsdencc578282012-02-03 15:43:50 -02001900 vcpu->arch.virtual_tsc_mult,
1901 vcpu->arch.virtual_tsc_shift);
Zachary Amsdene26101b2012-02-03 15:43:57 -02001902 tsc += vcpu->arch.this_tsc_write;
Zachary Amsdenc2855452010-09-18 14:38:15 -10001903 return tsc;
1904}
1905
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01001906static inline int gtod_is_based_on_tsc(int mode)
1907{
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01001908 return mode == VDSO_CLOCKMODE_TSC || mode == VDSO_CLOCKMODE_HVCLOCK;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01001909}
1910
Fengguang Wu69b00492015-01-19 22:33:39 +08001911static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001912{
1913#ifdef CONFIG_X86_64
1914 bool vcpus_matched;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001915 struct kvm_arch *ka = &vcpu->kvm->arch;
1916 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
1917
1918 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
1919 atomic_read(&vcpu->kvm->online_vcpus));
1920
Marcelo Tosatti7f187922014-11-04 21:30:44 -02001921 /*
1922 * Once the masterclock is enabled, always perform request in
1923 * order to update it.
1924 *
1925 * In order to enable masterclock, the host clocksource must be TSC
1926 * and the vcpus need to have matched TSCs. When that happens,
1927 * perform request to enable masterclock.
1928 */
1929 if (ka->use_master_clock ||
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01001930 (gtod_is_based_on_tsc(gtod->clock.vclock_mode) && vcpus_matched))
Marcelo Tosattib48aa972012-11-27 23:29:03 -02001931 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
1932
1933 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
1934 atomic_read(&vcpu->kvm->online_vcpus),
1935 ka->use_master_clock, gtod->clock.vclock_mode);
1936#endif
1937}
1938
Will Auldba904632012-11-29 12:42:50 -08001939static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset)
1940{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07001941 u64 curr_offset = vcpu->arch.l1_tsc_offset;
Will Auldba904632012-11-29 12:42:50 -08001942 vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset;
1943}
1944
Haozhong Zhang35181e82015-10-20 15:39:03 +08001945/*
1946 * Multiply tsc by a fixed point number represented by ratio.
1947 *
1948 * The most significant 64-N bits (mult) of ratio represent the
1949 * integral part of the fixed point number; the remaining N bits
1950 * (frac) represent the fractional part, ie. ratio represents a fixed
1951 * point number (mult + frac * 2^(-N)).
1952 *
1953 * N equals to kvm_tsc_scaling_ratio_frac_bits.
1954 */
1955static inline u64 __scale_tsc(u64 ratio, u64 tsc)
1956{
1957 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
1958}
1959
1960u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc)
1961{
1962 u64 _tsc = tsc;
1963 u64 ratio = vcpu->arch.tsc_scaling_ratio;
1964
1965 if (ratio != kvm_default_tsc_scaling_ratio)
1966 _tsc = __scale_tsc(ratio, tsc);
1967
1968 return _tsc;
1969}
1970EXPORT_SYMBOL_GPL(kvm_scale_tsc);
1971
Haozhong Zhang07c14192015-10-20 15:39:05 +08001972static u64 kvm_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1973{
1974 u64 tsc;
1975
1976 tsc = kvm_scale_tsc(vcpu, rdtsc());
1977
1978 return target_tsc - tsc;
1979}
1980
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001981u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
1982{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07001983 return vcpu->arch.l1_tsc_offset + kvm_scale_tsc(vcpu, host_tsc);
Haozhong Zhang4ba76532015-10-20 15:39:07 +08001984}
1985EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
1986
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04001987static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
1988{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07001989 vcpu->arch.l1_tsc_offset = offset;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07001990 vcpu->arch.tsc_offset = kvm_x86_ops.write_l1_tsc_offset(vcpu, offset);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04001991}
1992
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01001993static inline bool kvm_check_tsc_unstable(void)
1994{
1995#ifdef CONFIG_X86_64
1996 /*
1997 * TSC is marked unstable when we're running on Hyper-V,
1998 * 'TSC page' clocksource is good.
1999 */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002000 if (pvclock_gtod_data.clock.vclock_mode == VDSO_CLOCKMODE_HVCLOCK)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002001 return false;
2002#endif
2003 return check_tsc_unstable();
2004}
2005
Will Auld8fe8ab42012-11-29 12:42:12 -08002006void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr)
Zachary Amsden99e3e302010-08-19 22:07:17 -10002007{
2008 struct kvm *kvm = vcpu->kvm;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002009 u64 offset, ns, elapsed;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002010 unsigned long flags;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002011 bool matched;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002012 bool already_matched;
Will Auld8fe8ab42012-11-29 12:42:12 -08002013 u64 data = msr->data;
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002014 bool synchronizing = false;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002015
Jan Kiszka038f8c12011-02-04 10:49:11 +01002016 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
Haozhong Zhang07c14192015-10-20 15:39:05 +08002017 offset = kvm_compute_tsc_offset(vcpu, data);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002018 ns = get_kvmclock_base_ns();
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002019 elapsed = ns - kvm->arch.last_tsc_nsec;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002020
Marcelo Tosatti03ba32c2013-03-11 23:10:24 -03002021 if (vcpu->arch.virtual_tsc_khz) {
Denis Plotnikovbd8fab32017-04-07 12:09:53 +03002022 if (data == 0 && msr->host_initiated) {
2023 /*
2024 * detection of vcpu initialization -- need to sync
2025 * with other vCPUs. This particularly helps to keep
2026 * kvm_clock stable after CPU hotplug
2027 */
2028 synchronizing = true;
2029 } else {
2030 u64 tsc_exp = kvm->arch.last_tsc_write +
2031 nsec_to_cycles(vcpu, elapsed);
2032 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
2033 /*
2034 * Special case: TSC write with a small delta (1 second)
2035 * of virtual cycle time against real time is
2036 * interpreted as an attempt to synchronize the CPU.
2037 */
2038 synchronizing = data < tsc_exp + tsc_hz &&
2039 data + tsc_hz > tsc_exp;
2040 }
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002041 }
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002042
2043 /*
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002044 * For a reliable TSC, we can match TSC offsets, and for an unstable
2045 * TSC, we add elapsed time in this computation. We could let the
2046 * compensation code attempt to catch up if we fall behind, but
2047 * it's better to try to match offsets from the beginning.
2048 */
Denis Plotnikovc5e8ec82017-04-07 12:09:52 +03002049 if (synchronizing &&
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002050 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002051 if (!kvm_check_tsc_unstable()) {
Zachary Amsdene26101b2012-02-03 15:43:57 -02002052 offset = kvm->arch.cur_tsc_offset;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002053 } else {
Joerg Roedel857e4092011-03-25 09:44:50 +01002054 u64 delta = nsec_to_cycles(vcpu, elapsed);
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002055 data += delta;
Haozhong Zhang07c14192015-10-20 15:39:05 +08002056 offset = kvm_compute_tsc_offset(vcpu, data);
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002057 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002058 matched = true;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002059 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002060 } else {
2061 /*
2062 * We split periods of matched TSC writes into generations.
2063 * For each generation, we track the original measured
2064 * nanosecond time, offset, and write, so if TSCs are in
2065 * sync, we can match exact offset, and if not, we can match
Guo Chao4a969982012-06-28 15:17:27 +08002066 * exact software computation in compute_guest_tsc()
Zachary Amsdene26101b2012-02-03 15:43:57 -02002067 *
2068 * These values are tracked in kvm->arch.cur_xxx variables.
2069 */
2070 kvm->arch.cur_tsc_generation++;
2071 kvm->arch.cur_tsc_nsec = ns;
2072 kvm->arch.cur_tsc_write = data;
2073 kvm->arch.cur_tsc_offset = offset;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002074 matched = false;
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002075 }
Zachary Amsdene26101b2012-02-03 15:43:57 -02002076
2077 /*
2078 * We also track th most recent recorded KHZ, write and time to
2079 * allow the matching interval to be extended at each write.
2080 */
Zachary Amsdenf38e0982010-08-19 22:07:20 -10002081 kvm->arch.last_tsc_nsec = ns;
2082 kvm->arch.last_tsc_write = data;
Zachary Amsden5d3cb0f62012-02-03 15:43:51 -02002083 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
Zachary Amsden99e3e302010-08-19 22:07:17 -10002084
Zachary Amsdenb183aa52012-02-03 15:43:53 -02002085 vcpu->arch.last_guest_tsc = data;
Zachary Amsdene26101b2012-02-03 15:43:57 -02002086
2087 /* Keep track of which generation this VCPU has synchronized to */
2088 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
2089 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
2090 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
2091
Radim Krčmářd6321d42017-08-05 00:12:49 +02002092 if (!msr->host_initiated && guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST))
Will Auldba904632012-11-29 12:42:50 -08002093 update_ia32_tsc_adjust_msr(vcpu, offset);
Radim Krčmářd6321d42017-08-05 00:12:49 +02002094
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04002095 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdene26101b2012-02-03 15:43:57 -02002096 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002097
2098 spin_lock(&kvm->arch.pvclock_gtod_sync_lock);
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002099 if (!matched) {
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002100 kvm->arch.nr_vcpus_matched_tsc = 0;
Tomasz Grabiec0d3da0d2014-06-24 09:42:43 +02002101 } else if (!already_matched) {
2102 kvm->arch.nr_vcpus_matched_tsc++;
2103 }
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002104
2105 kvm_track_tsc_matching(vcpu);
2106 spin_unlock(&kvm->arch.pvclock_gtod_sync_lock);
Zachary Amsden99e3e302010-08-19 22:07:17 -10002107}
Zachary Amsdene26101b2012-02-03 15:43:57 -02002108
Zachary Amsden99e3e302010-08-19 22:07:17 -10002109EXPORT_SYMBOL_GPL(kvm_write_tsc);
2110
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002111static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
2112 s64 adjustment)
2113{
Sean Christopherson56ba77a2020-05-01 21:32:25 -07002114 u64 tsc_offset = vcpu->arch.l1_tsc_offset;
Leonid Shatz326e7422018-11-06 12:14:25 +02002115 kvm_vcpu_write_tsc_offset(vcpu, tsc_offset + adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002116}
2117
2118static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
2119{
2120 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
2121 WARN_ON(adjustment < 0);
2122 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +01002123 adjust_tsc_offset_guest(vcpu, adjustment);
Haozhong Zhang58ea6762015-10-20 15:39:06 +08002124}
2125
Marcelo Tosattid8281992012-11-27 23:29:01 -02002126#ifdef CONFIG_X86_64
2127
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002128static u64 read_tsc(void)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002129{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01002130 u64 ret = (u64)rdtsc_ordered();
Andy Lutomirski03b97302015-06-25 18:44:08 +02002131 u64 last = pvclock_gtod_data.clock.cycle_last;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002132
2133 if (likely(ret >= last))
2134 return ret;
2135
2136 /*
2137 * GCC likes to generate cmov here, but this branch is extremely
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08002138 * predictable (it's just a function of time and the likely is
Marcelo Tosattid8281992012-11-27 23:29:01 -02002139 * very likely) and there's a data dependence, so force GCC
2140 * to generate a branch instead. I don't barrier() because
2141 * we don't actually need a barrier, and if this function
2142 * ever gets inlined it will generate worse code.
2143 */
2144 asm volatile ("");
2145 return last;
2146}
2147
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002148static inline u64 vgettsc(struct pvclock_clock *clock, u64 *tsc_timestamp,
2149 int *mode)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002150{
2151 long v;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002152 u64 tsc_pg_val;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002153
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002154 switch (clock->vclock_mode) {
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002155 case VDSO_CLOCKMODE_HVCLOCK:
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002156 tsc_pg_val = hv_read_tsc_page_tsc(hv_get_tsc_page(),
2157 tsc_timestamp);
2158 if (tsc_pg_val != U64_MAX) {
2159 /* TSC page valid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002160 *mode = VDSO_CLOCKMODE_HVCLOCK;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002161 v = (tsc_pg_val - clock->cycle_last) &
2162 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002163 } else {
2164 /* TSC page invalid */
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002165 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002166 }
2167 break;
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002168 case VDSO_CLOCKMODE_TSC:
2169 *mode = VDSO_CLOCKMODE_TSC;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002170 *tsc_timestamp = read_tsc();
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002171 v = (*tsc_timestamp - clock->cycle_last) &
2172 clock->mask;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002173 break;
2174 default:
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002175 *mode = VDSO_CLOCKMODE_NONE;
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002176 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002177
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +01002178 if (*mode == VDSO_CLOCKMODE_NONE)
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002179 *tsc_timestamp = v = 0;
2180
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002181 return v * clock->mult;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002182}
2183
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002184static int do_monotonic_raw(s64 *t, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002185{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002186 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002187 unsigned long seq;
2188 int mode;
2189 u64 ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002190
Marcelo Tosattid8281992012-11-27 23:29:01 -02002191 do {
2192 seq = read_seqcount_begin(&gtod->seq);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002193 ns = gtod->raw_clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002194 ns += vgettsc(&gtod->raw_clock, tsc_timestamp, &mode);
Paolo Bonzini917f9472020-01-22 14:32:20 +01002195 ns >>= gtod->raw_clock.shift;
2196 ns += ktime_to_ns(ktime_add(gtod->raw_clock.offset, gtod->offs_boot));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002197 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
Thomas Gleixnercbcf2dd2014-07-16 21:04:54 +00002198 *t = ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002199
2200 return mode;
2201}
2202
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002203static int do_realtime(struct timespec64 *ts, u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002204{
2205 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2206 unsigned long seq;
2207 int mode;
2208 u64 ns;
2209
2210 do {
2211 seq = read_seqcount_begin(&gtod->seq);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002212 ts->tv_sec = gtod->wall_time_sec;
Paolo Bonzini917f9472020-01-22 14:32:20 +01002213 ns = gtod->clock.base_cycles;
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002214 ns += vgettsc(&gtod->clock, tsc_timestamp, &mode);
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002215 ns >>= gtod->clock.shift;
2216 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
2217
2218 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
2219 ts->tv_nsec = ns;
2220
2221 return mode;
2222}
2223
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002224/* returns true if host is using TSC based clocksource */
2225static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *tsc_timestamp)
Marcelo Tosattid8281992012-11-27 23:29:01 -02002226{
Marcelo Tosattid8281992012-11-27 23:29:01 -02002227 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002228 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosattid8281992012-11-27 23:29:01 -02002229 return false;
2230
Marcelo Tosatti53fafdb2019-10-28 12:36:22 -02002231 return gtod_is_based_on_tsc(do_monotonic_raw(kernel_ns,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002232 tsc_timestamp));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002233}
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002234
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002235/* returns true if host is using TSC based clocksource */
Arnd Bergmann899a31f2018-04-23 10:04:26 +02002236static bool kvm_get_walltime_and_clockread(struct timespec64 *ts,
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002237 u64 *tsc_timestamp)
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002238{
2239 /* checked again under seqlock below */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002240 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002241 return false;
2242
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01002243 return gtod_is_based_on_tsc(do_realtime(ts, tsc_timestamp));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02002244}
Marcelo Tosattid8281992012-11-27 23:29:01 -02002245#endif
2246
2247/*
2248 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002249 * Assuming a stable TSC across physical CPUS, and a stable TSC
2250 * across virtual CPUs, the following condition is possible.
2251 * Each numbered line represents an event visible to both
Marcelo Tosattid8281992012-11-27 23:29:01 -02002252 * CPUs at the next numbered event.
2253 *
2254 * "timespecX" represents host monotonic time. "tscX" represents
2255 * RDTSC value.
2256 *
2257 * VCPU0 on CPU0 | VCPU1 on CPU1
2258 *
2259 * 1. read timespec0,tsc0
2260 * 2. | timespec1 = timespec0 + N
2261 * | tsc1 = tsc0 + M
2262 * 3. transition to guest | transition to guest
2263 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
2264 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
2265 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
2266 *
2267 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
2268 *
2269 * - ret0 < ret1
2270 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
2271 * ...
2272 * - 0 < N - M => M < N
2273 *
2274 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
2275 * always the case (the difference between two distinct xtime instances
2276 * might be smaller then the difference between corresponding TSC reads,
2277 * when updating guest vcpus pvclock areas).
2278 *
2279 * To avoid that problem, do not allow visibility of distinct
2280 * system_timestamp/tsc_timestamp values simultaneously: use a master
2281 * copy of host monotonic time values. Update that master copy
2282 * in lockstep.
2283 *
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002284 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
Marcelo Tosattid8281992012-11-27 23:29:01 -02002285 *
2286 */
2287
2288static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
2289{
2290#ifdef CONFIG_X86_64
2291 struct kvm_arch *ka = &kvm->arch;
2292 int vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002293 bool host_tsc_clocksource, vcpus_matched;
2294
2295 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2296 atomic_read(&kvm->online_vcpus));
Marcelo Tosattid8281992012-11-27 23:29:01 -02002297
2298 /*
2299 * If the host uses TSC clock, then passthrough TSC as stable
2300 * to the guest.
2301 */
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002302 host_tsc_clocksource = kvm_get_time_and_clockread(
Marcelo Tosattid8281992012-11-27 23:29:01 -02002303 &ka->master_kernel_ns,
2304 &ka->master_cycle_now);
2305
Marcelo Tosatti16a96022014-05-14 12:43:24 -03002306 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
Ladi Proseka826faf2017-06-26 09:56:43 +02002307 && !ka->backwards_tsc_observed
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002308 && !ka->boot_vcpu_runs_old_kvmclock;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002309
Marcelo Tosattid8281992012-11-27 23:29:01 -02002310 if (ka->use_master_clock)
2311 atomic_set(&kvm_guest_has_master_clock, 1);
2312
2313 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
Marcelo Tosattib48aa972012-11-27 23:29:03 -02002314 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
2315 vcpus_matched);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002316#endif
2317}
2318
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01002319void kvm_make_mclock_inprogress_request(struct kvm *kvm)
2320{
2321 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
2322}
2323
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002324static void kvm_gen_update_masterclock(struct kvm *kvm)
2325{
2326#ifdef CONFIG_X86_64
2327 int i;
2328 struct kvm_vcpu *vcpu;
2329 struct kvm_arch *ka = &kvm->arch;
2330
2331 spin_lock(&ka->pvclock_gtod_sync_lock);
2332 kvm_make_mclock_inprogress_request(kvm);
2333 /* no guest entries from this point */
2334 pvclock_update_vm_gtod_copy(kvm);
2335
2336 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002337 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002338
2339 /* guest entries allowed */
2340 kvm_for_each_vcpu(i, vcpu, kvm)
Radim Krčmář72875d82017-04-26 22:32:19 +02002341 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
Marcelo Tosatti2e762ff2013-08-27 23:55:29 -03002342
2343 spin_unlock(&ka->pvclock_gtod_sync_lock);
2344#endif
2345}
2346
Marcelo Tosattie891a322017-04-17 12:51:37 -03002347u64 get_kvmclock_ns(struct kvm *kvm)
Paolo Bonzini108b2492016-09-01 14:21:03 +02002348{
Paolo Bonzini108b2492016-09-01 14:21:03 +02002349 struct kvm_arch *ka = &kvm->arch;
Paolo Bonzini8b953442016-11-16 18:31:30 +01002350 struct pvclock_vcpu_time_info hv_clock;
Wanpeng Lie2c22062017-05-11 18:12:05 -07002351 u64 ret;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002352
Paolo Bonzini8b953442016-11-16 18:31:30 +01002353 spin_lock(&ka->pvclock_gtod_sync_lock);
2354 if (!ka->use_master_clock) {
2355 spin_unlock(&ka->pvclock_gtod_sync_lock);
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002356 return get_kvmclock_base_ns() + ka->kvmclock_offset;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002357 }
2358
Paolo Bonzini8b953442016-11-16 18:31:30 +01002359 hv_clock.tsc_timestamp = ka->master_cycle_now;
2360 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
2361 spin_unlock(&ka->pvclock_gtod_sync_lock);
2362
Wanpeng Lie2c22062017-05-11 18:12:05 -07002363 /* both __this_cpu_read() and rdtsc() should be on the same cpu */
2364 get_cpu();
2365
Wanpeng Lie70b57a2017-11-20 14:55:05 -08002366 if (__this_cpu_read(cpu_tsc_khz)) {
2367 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
2368 &hv_clock.tsc_shift,
2369 &hv_clock.tsc_to_system_mul);
2370 ret = __pvclock_read_cycles(&hv_clock, rdtsc());
2371 } else
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002372 ret = get_kvmclock_base_ns() + ka->kvmclock_offset;
Wanpeng Lie2c22062017-05-11 18:12:05 -07002373
2374 put_cpu();
2375
2376 return ret;
Paolo Bonzini108b2492016-09-01 14:21:03 +02002377}
2378
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002379static void kvm_setup_pvclock_page(struct kvm_vcpu *v)
2380{
2381 struct kvm_vcpu_arch *vcpu = &v->arch;
2382 struct pvclock_vcpu_time_info guest_hv_clock;
2383
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002384 if (unlikely(kvm_read_guest_cached(v->kvm, &vcpu->pv_time,
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002385 &guest_hv_clock, sizeof(guest_hv_clock))))
2386 return;
2387
2388 /* This VCPU is paused, but it's legal for a guest to read another
2389 * VCPU's kvmclock, so we really have to follow the specification where
2390 * it says that version is odd if data is being modified, and even after
2391 * it is consistent.
2392 *
2393 * Version field updates must be kept separate. This is because
2394 * kvm_write_guest_cached might use a "rep movs" instruction, and
2395 * writes within a string instruction are weakly ordered. So there
2396 * are three writes overall.
2397 *
2398 * As a small optimization, only write the version field in the first
2399 * and third write. The vcpu->pv_time cache is still valid, because the
2400 * version field is the first in the struct.
2401 */
2402 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
2403
Liran Alon51c4b8b2017-11-05 16:11:30 +02002404 if (guest_hv_clock.version & 1)
2405 ++guest_hv_clock.version; /* first time write, random junk */
2406
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002407 vcpu->hv_clock.version = guest_hv_clock.version + 1;
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002408 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
2409 &vcpu->hv_clock,
2410 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002411
2412 smp_wmb();
2413
2414 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
2415 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
2416
2417 if (vcpu->pvclock_set_guest_stopped_request) {
2418 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
2419 vcpu->pvclock_set_guest_stopped_request = false;
2420 }
2421
2422 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
2423
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002424 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
2425 &vcpu->hv_clock,
2426 sizeof(vcpu->hv_clock));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002427
2428 smp_wmb();
2429
2430 vcpu->hv_clock.version++;
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002431 kvm_write_guest_cached(v->kvm, &vcpu->pv_time,
2432 &vcpu->hv_clock,
2433 sizeof(vcpu->hv_clock.version));
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002434}
2435
Zachary Amsden34c238a2010-09-18 14:38:14 -10002436static int kvm_guest_time_update(struct kvm_vcpu *v)
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002437{
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002438 unsigned long flags, tgt_tsc_khz;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002439 struct kvm_vcpu_arch *vcpu = &v->arch;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002440 struct kvm_arch *ka = &v->kvm->arch;
Marcelo Tosattif25e6562014-01-06 12:18:59 -02002441 s64 kernel_ns;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002442 u64 tsc_timestamp, host_tsc;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002443 u8 pvclock_flags;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002444 bool use_master_clock;
2445
2446 kernel_ns = 0;
2447 host_tsc = 0;
Gerd Hoffmann50d0a0f2008-06-03 16:17:31 +02002448
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002449 /*
Marcelo Tosattid8281992012-11-27 23:29:01 -02002450 * If the host uses TSC clock, then passthrough TSC as stable
2451 * to the guest.
2452 */
2453 spin_lock(&ka->pvclock_gtod_sync_lock);
2454 use_master_clock = ka->use_master_clock;
2455 if (use_master_clock) {
2456 host_tsc = ka->master_cycle_now;
2457 kernel_ns = ka->master_kernel_ns;
2458 }
2459 spin_unlock(&ka->pvclock_gtod_sync_lock);
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002460
2461 /* Keep irq disabled to prevent changes to the clock */
2462 local_irq_save(flags);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002463 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
2464 if (unlikely(tgt_tsc_khz == 0)) {
Marcelo Tosattic09664b2013-03-18 13:54:32 -03002465 local_irq_restore(flags);
2466 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
2467 return 1;
2468 }
Marcelo Tosattid8281992012-11-27 23:29:01 -02002469 if (!use_master_clock) {
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002470 host_tsc = rdtsc();
Paolo Bonzini8171cd62020-01-22 14:36:09 +01002471 kernel_ns = get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02002472 }
2473
Haozhong Zhang4ba76532015-10-20 15:39:07 +08002474 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
Marcelo Tosattid8281992012-11-27 23:29:01 -02002475
2476 /*
Zachary Amsdenc2855452010-09-18 14:38:15 -10002477 * We may have to catch up the TSC to match elapsed wall clock
2478 * time for two reasons, even if kvmclock is used.
2479 * 1) CPU could have been running below the maximum TSC rate
2480 * 2) Broken TSC compensation resets the base at each VCPU
2481 * entry to avoid unknown leaps of TSC even when running
2482 * again on the same CPU. This may cause apparent elapsed
2483 * time to disappear, and the guest to stand still or run
2484 * very slowly.
2485 */
2486 if (vcpu->tsc_catchup) {
2487 u64 tsc = compute_guest_tsc(v, kernel_ns);
2488 if (tsc > tsc_timestamp) {
Marcelo Tosattif1e2b262012-02-03 15:43:55 -02002489 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
Zachary Amsdenc2855452010-09-18 14:38:15 -10002490 tsc_timestamp = tsc;
2491 }
2492 }
2493
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002494 local_irq_restore(flags);
2495
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002496 /* With all the info we got, fill in the values */
Zachary Amsdenc2855452010-09-18 14:38:15 -10002497
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002498 if (kvm_has_tsc_control)
2499 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz);
2500
2501 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
Paolo Bonzini3ae13fa2016-02-08 15:11:15 +01002502 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
Zachary Amsden5f4e3f82010-09-18 14:38:13 -10002503 &vcpu->hv_clock.tsc_shift,
2504 &vcpu->hv_clock.tsc_to_system_mul);
Paolo Bonzini78db6a52016-02-08 14:51:40 +01002505 vcpu->hw_tsc_khz = tgt_tsc_khz;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10002506 }
2507
Zachary Amsden1d5f0662010-08-19 22:07:30 -10002508 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
Zachary Amsden759379d2010-08-19 22:07:25 -10002509 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
Zachary Amsden28e46392010-09-18 14:38:12 -10002510 vcpu->last_guest_tsc = tsc_timestamp;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03002511
Marcelo Tosattid8281992012-11-27 23:29:01 -02002512 /* If the host uses TSC clocksource, then it is stable */
Paolo Bonzini0d6dd2f2016-09-01 14:20:09 +02002513 pvclock_flags = 0;
Marcelo Tosattid8281992012-11-27 23:29:01 -02002514 if (use_master_clock)
2515 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
2516
Marcelo Tosatti78c03372012-11-27 23:28:47 -02002517 vcpu->hv_clock.flags = pvclock_flags;
2518
Paolo Bonzini095cf552016-02-08 12:54:12 +01002519 if (vcpu->pv_time_enabled)
2520 kvm_setup_pvclock_page(v);
2521 if (v == kvm_get_vcpu(v->kvm, 0))
2522 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10002523 return 0;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01002524}
2525
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002526/*
2527 * kvmclock updates which are isolated to a given vcpu, such as
2528 * vcpu->cpu migration, should not allow system_timestamp from
2529 * the rest of the vcpus to remain static. Otherwise ntp frequency
2530 * correction applies to one vcpu's system_timestamp but not
2531 * the others.
2532 *
2533 * So in those cases, request a kvmclock update for all vcpus.
Andrew Jones7e44e442014-02-28 12:52:54 +01002534 * We need to rate-limit these requests though, as they can
2535 * considerably slow guests that have a large number of vcpus.
2536 * The time for a remote vcpu to update its kvmclock is bound
2537 * by the delay we use to rate-limit the updates.
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002538 */
2539
Andrew Jones7e44e442014-02-28 12:52:54 +01002540#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
2541
2542static void kvmclock_update_fn(struct work_struct *work)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002543{
2544 int i;
Andrew Jones7e44e442014-02-28 12:52:54 +01002545 struct delayed_work *dwork = to_delayed_work(work);
2546 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
2547 kvmclock_update_work);
2548 struct kvm *kvm = container_of(ka, struct kvm, arch);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002549 struct kvm_vcpu *vcpu;
2550
2551 kvm_for_each_vcpu(i, vcpu, kvm) {
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002552 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002553 kvm_vcpu_kick(vcpu);
2554 }
2555}
2556
Andrew Jones7e44e442014-02-28 12:52:54 +01002557static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
2558{
2559 struct kvm *kvm = v->kvm;
2560
Guo Hui Liu105b21b2014-09-12 13:43:19 +08002561 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
Andrew Jones7e44e442014-02-28 12:52:54 +01002562 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
2563 KVMCLOCK_UPDATE_DELAY);
2564}
2565
Andrew Jones332967a2014-02-28 12:52:55 +01002566#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
2567
2568static void kvmclock_sync_fn(struct work_struct *work)
2569{
2570 struct delayed_work *dwork = to_delayed_work(work);
2571 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
2572 kvmclock_sync_work);
2573 struct kvm *kvm = container_of(ka, struct kvm, arch);
2574
Marcelo Tosatti630994b2015-05-12 22:42:04 -03002575 if (!kvmclock_periodic_sync)
2576 return;
2577
Andrew Jones332967a2014-02-28 12:52:55 +01002578 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
2579 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
2580 KVMCLOCK_SYNC_PERIOD);
2581}
2582
Borislav Petkov191c8132019-04-18 18:32:50 +02002583/*
2584 * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP.
2585 */
2586static bool can_set_mci_status(struct kvm_vcpu *vcpu)
2587{
2588 /* McStatusWrEn enabled? */
Sean Christopherson23493d02020-03-04 17:34:33 -08002589 if (guest_cpuid_is_amd_or_hygon(vcpu))
Borislav Petkov191c8132019-04-18 18:32:50 +02002590 return !!(vcpu->arch.msr_hwcr & BIT_ULL(18));
2591
2592 return false;
2593}
2594
Wanpeng Li9ffd9862017-10-19 06:47:56 -07002595static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Huang Ying890ca9a2009-05-11 16:48:15 +08002596{
2597 u64 mcg_cap = vcpu->arch.mcg_cap;
2598 unsigned bank_num = mcg_cap & 0xff;
Wanpeng Li9ffd9862017-10-19 06:47:56 -07002599 u32 msr = msr_info->index;
2600 u64 data = msr_info->data;
Huang Ying890ca9a2009-05-11 16:48:15 +08002601
2602 switch (msr) {
2603 case MSR_IA32_MCG_STATUS:
2604 vcpu->arch.mcg_status = data;
2605 break;
2606 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02002607 if (!(mcg_cap & MCG_CTL_P) &&
2608 (data || !msr_info->host_initiated))
Huang Ying890ca9a2009-05-11 16:48:15 +08002609 return 1;
2610 if (data != 0 && data != ~(u64)0)
Paolo Bonzini44883f02018-07-26 13:01:52 +02002611 return 1;
Huang Ying890ca9a2009-05-11 16:48:15 +08002612 vcpu->arch.mcg_ctl = data;
2613 break;
2614 default:
2615 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08002616 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08002617 u32 offset = array_index_nospec(
2618 msr - MSR_IA32_MC0_CTL,
2619 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
2620
Andre Przywara114be422010-03-24 17:46:42 +01002621 /* only 0 or all 1s can be written to IA32_MCi_CTL
2622 * some Linux kernels though clear bit 10 in bank 4 to
2623 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
2624 * this to avoid an uncatched #GP in the guest
2625 */
Huang Ying890ca9a2009-05-11 16:48:15 +08002626 if ((offset & 0x3) == 0 &&
Andre Przywara114be422010-03-24 17:46:42 +01002627 data != 0 && (data | (1 << 10)) != ~(u64)0)
Huang Ying890ca9a2009-05-11 16:48:15 +08002628 return -1;
Borislav Petkov191c8132019-04-18 18:32:50 +02002629
2630 /* MCi_STATUS */
Wanpeng Li9ffd9862017-10-19 06:47:56 -07002631 if (!msr_info->host_initiated &&
Borislav Petkov191c8132019-04-18 18:32:50 +02002632 (offset & 0x3) == 1 && data != 0) {
2633 if (!can_set_mci_status(vcpu))
2634 return -1;
2635 }
2636
Huang Ying890ca9a2009-05-11 16:48:15 +08002637 vcpu->arch.mce_banks[offset] = data;
2638 break;
2639 }
2640 return 1;
2641 }
2642 return 0;
2643}
2644
Ed Swierkffde22a2009-10-15 15:21:43 -07002645static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
2646{
2647 struct kvm *kvm = vcpu->kvm;
2648 int lm = is_long_mode(vcpu);
2649 u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64
2650 : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32;
2651 u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64
2652 : kvm->arch.xen_hvm_config.blob_size_32;
2653 u32 page_num = data & ~PAGE_MASK;
2654 u64 page_addr = data & PAGE_MASK;
2655 u8 *page;
2656 int r;
2657
2658 r = -E2BIG;
2659 if (page_num >= blob_size)
2660 goto out;
2661 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002662 page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE);
2663 if (IS_ERR(page)) {
2664 r = PTR_ERR(page);
Ed Swierkffde22a2009-10-15 15:21:43 -07002665 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002666 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002667 if (kvm_vcpu_write_guest(vcpu, page_addr, page, PAGE_SIZE))
Ed Swierkffde22a2009-10-15 15:21:43 -07002668 goto out_free;
2669 r = 0;
2670out_free:
2671 kfree(page);
2672out:
2673 return r;
2674}
2675
Gleb Natapov344d9582010-10-14 11:22:50 +02002676static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
2677{
2678 gpa_t gpa = data & ~0x3f;
2679
Wanpeng Li52a5c152017-07-13 18:30:42 -07002680 /* Bits 3:5 are reserved, Should be zero */
2681 if (data & 0x38)
Gleb Natapov344d9582010-10-14 11:22:50 +02002682 return 1;
2683
2684 vcpu->arch.apf.msr_val = data;
2685
2686 if (!(data & KVM_ASYNC_PF_ENABLED)) {
2687 kvm_clear_async_pf_completion_queue(vcpu);
2688 kvm_async_pf_hash_reset(vcpu);
2689 return 0;
2690 }
2691
Paolo Bonzini4e335d92017-05-02 16:20:18 +02002692 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
Andrew Honig8f964522013-03-29 09:35:21 -07002693 sizeof(u32)))
Gleb Natapov344d9582010-10-14 11:22:50 +02002694 return 1;
2695
Gleb Natapov6adba522010-10-14 11:22:55 +02002696 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
Wanpeng Li52a5c152017-07-13 18:30:42 -07002697 vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
Gleb Natapov344d9582010-10-14 11:22:50 +02002698 kvm_async_pf_wakeup_all(vcpu);
2699 return 0;
2700}
2701
Glauber Costa12f9a482011-02-01 14:16:40 -05002702static void kvmclock_reset(struct kvm_vcpu *vcpu)
2703{
Andy Honig0b794592013-02-20 14:48:10 -08002704 vcpu->arch.pv_time_enabled = false;
Paolo Bonzini49dedf02019-10-10 12:49:22 +02002705 vcpu->arch.time = 0;
Glauber Costa12f9a482011-02-01 14:16:40 -05002706}
2707
Sean Christopherson77809382020-03-20 14:28:18 -07002708static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
Wanpeng Lif38a7b72017-12-12 17:33:04 -08002709{
2710 ++vcpu->stat.tlb_flush;
Sean Christopherson77809382020-03-20 14:28:18 -07002711 kvm_x86_ops.tlb_flush_all(vcpu);
Wanpeng Lif38a7b72017-12-12 17:33:04 -08002712}
2713
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04002714static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
2715{
2716 ++vcpu->stat.tlb_flush;
2717 kvm_x86_ops.tlb_flush_guest(vcpu);
2718}
2719
Glauber Costac9aaa892011-07-11 15:28:14 -04002720static void record_steal_time(struct kvm_vcpu *vcpu)
2721{
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002722 struct kvm_host_map map;
2723 struct kvm_steal_time *st;
2724
Glauber Costac9aaa892011-07-11 15:28:14 -04002725 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
2726 return;
2727
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002728 /* -EAGAIN is returned in atomic context so we can just return. */
2729 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT,
2730 &map, &vcpu->arch.st.cache, false))
Glauber Costac9aaa892011-07-11 15:28:14 -04002731 return;
2732
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002733 st = map.hva +
2734 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
2735
Wanpeng Lif38a7b72017-12-12 17:33:04 -08002736 /*
2737 * Doing a TLB flush here, on the guest's behalf, can avoid
2738 * expensive IPIs.
2739 */
Wanpeng Lib382f442019-08-05 10:03:24 +08002740 trace_kvm_pv_tlb_flush(vcpu->vcpu_id,
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002741 st->preempted & KVM_VCPU_FLUSH_TLB);
2742 if (xchg(&st->preempted, 0) & KVM_VCPU_FLUSH_TLB)
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04002743 kvm_vcpu_flush_tlb_guest(vcpu);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04002744
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00002745 vcpu->arch.st.preempted = 0;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002746
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002747 if (st->version & 1)
2748 st->version += 1; /* first time write, random junk */
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002749
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002750 st->version += 1;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002751
2752 smp_wmb();
2753
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002754 st->steal += current->sched_info.run_delay -
Liang Chenc54cdf12016-03-16 19:33:16 +08002755 vcpu->arch.st.last_steal;
2756 vcpu->arch.st.last_steal = current->sched_info.run_delay;
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002757
Wanpeng Li35f3fae12016-05-03 11:43:10 +08002758 smp_wmb();
2759
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002760 st->version += 1;
Glauber Costac9aaa892011-07-11 15:28:14 -04002761
Boris Ostrovskyb0431382019-12-05 03:45:32 +00002762 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, false);
Glauber Costac9aaa892011-07-11 15:28:14 -04002763}
2764
Will Auld8fe8ab42012-11-29 12:42:12 -08002765int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01002766{
Gleb Natapov57537852012-01-15 14:17:22 +02002767 bool pr = false;
Will Auld8fe8ab42012-11-29 12:42:12 -08002768 u32 msr = msr_info->index;
2769 u64 data = msr_info->data;
Gleb Natapov57537852012-01-15 14:17:22 +02002770
Carsten Otte15c4a642007-10-30 18:44:17 +01002771 switch (msr) {
Borislav Petkov2e32b712013-02-19 19:33:13 +01002772 case MSR_AMD64_NB_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002773 case MSR_IA32_UCODE_WRITE:
2774 case MSR_VM_HSAVE_PA:
2775 case MSR_AMD64_PATCH_LOADER:
2776 case MSR_AMD64_BU_CFG2:
Ladi Prosek405a3532017-04-06 15:22:20 +02002777 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02002778 case MSR_F15H_EX_CFG:
Borislav Petkov2e32b712013-02-19 19:33:13 +01002779 break;
2780
Wanpeng Li518e7b92018-02-28 14:03:31 +08002781 case MSR_IA32_UCODE_REV:
2782 if (msr_info->host_initiated)
2783 vcpu->arch.microcode_version = data;
2784 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08002785 case MSR_IA32_ARCH_CAPABILITIES:
2786 if (!msr_info->host_initiated)
2787 return 1;
2788 vcpu->arch.arch_capabilities = data;
2789 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002790 case MSR_EFER:
Sean Christopherson11988492019-04-02 08:19:15 -07002791 return set_efer(vcpu, msr_info);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002792 case MSR_K7_HWCR:
2793 data &= ~(u64)0x40; /* ignore flush filter disable */
Joerg Roedel82494022010-02-24 18:59:16 +01002794 data &= ~(u64)0x100; /* ignore ignne emulation enable */
Nicolae Mogoreanua223c312012-02-21 13:44:21 -08002795 data &= ~(u64)0x8; /* ignore TLB cache disable */
Borislav Petkov191c8132019-04-18 18:32:50 +02002796
2797 /* Handle McStatusWrEn */
2798 if (data == BIT_ULL(18)) {
2799 vcpu->arch.msr_hwcr = data;
2800 } else if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002801 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
2802 data);
Andre Przywara8f1589d2009-06-24 12:44:33 +02002803 return 1;
2804 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002805 break;
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002806 case MSR_FAM10H_MMIO_CONF_BASE:
2807 if (data != 0) {
Christoffer Dalla737f252012-06-03 21:17:48 +03002808 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
2809 "0x%llx\n", data);
Andre Przywaraf7c6d142009-07-02 15:04:14 +02002810 return 1;
2811 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002812 break;
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002813 case MSR_IA32_DEBUGCTLMSR:
2814 if (!data) {
2815 /* We support the non-activated case already */
2816 break;
2817 } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) {
2818 /* Values other than LBR and BTF are vendor-specific,
2819 thus reserved and should throw a #GP */
2820 return 1;
2821 }
Christoffer Dalla737f252012-06-03 21:17:48 +03002822 vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
2823 __func__, data);
Alexander Grafb5e2fec2008-07-22 08:00:45 +02002824 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03002825 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08002826 return kvm_mtrr_set_msr(vcpu, msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +01002827 case MSR_IA32_APICBASE:
Jan Kiszka58cb6282014-01-24 16:48:44 +01002828 return kvm_set_apic_base(vcpu, msr_info);
Gleb Natapov0105d1a2009-07-05 17:39:36 +03002829 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
2830 return kvm_x2apic_msr_write(vcpu, msr, data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08002831 case MSR_IA32_TSCDEADLINE:
2832 kvm_set_lapic_tscdeadline_msr(vcpu, data);
2833 break;
Will Auldba904632012-11-29 12:42:50 -08002834 case MSR_IA32_TSC_ADJUST:
Radim Krčmářd6321d42017-08-05 00:12:49 +02002835 if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) {
Will Auldba904632012-11-29 12:42:50 -08002836 if (!msr_info->host_initiated) {
Chris J Argesd913b902014-11-12 21:00:39 -06002837 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
Haozhong Zhangd7add052015-08-07 11:24:32 +08002838 adjust_tsc_offset_guest(vcpu, adj);
Will Auldba904632012-11-29 12:42:50 -08002839 }
2840 vcpu->arch.ia32_tsc_adjust_msr = data;
2841 }
2842 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01002843 case MSR_IA32_MISC_ENABLE:
Wanpeng Li511a85562019-05-21 14:06:54 +08002844 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) &&
2845 ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) {
2846 if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3))
2847 return 1;
2848 vcpu->arch.ia32_misc_enable_msr = data;
2849 kvm_update_cpuid(vcpu);
2850 } else {
2851 vcpu->arch.ia32_misc_enable_msr = data;
2852 }
Carsten Otte15c4a642007-10-30 18:44:17 +01002853 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02002854 case MSR_IA32_SMBASE:
2855 if (!msr_info->host_initiated)
2856 return 1;
2857 vcpu->arch.smbase = data;
2858 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02002859 case MSR_IA32_POWER_CTL:
2860 vcpu->arch.msr_ia32_power_ctl = data;
2861 break;
Paolo Bonzinidd259932018-04-13 11:38:35 +02002862 case MSR_IA32_TSC:
2863 kvm_write_tsc(vcpu, msr_info);
2864 break;
Aaron Lewis864e2ab2019-10-21 16:30:26 -07002865 case MSR_IA32_XSS:
2866 if (!msr_info->host_initiated &&
2867 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
2868 return 1;
2869 /*
Sean Christophersona1bead22020-03-02 15:57:00 -08002870 * KVM supports exposing PT to the guest, but does not support
2871 * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than
2872 * XSAVES/XRSTORS to save/restore PT MSRs.
Aaron Lewis864e2ab2019-10-21 16:30:26 -07002873 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +01002874 if (data & ~supported_xss)
Aaron Lewis864e2ab2019-10-21 16:30:26 -07002875 return 1;
2876 vcpu->arch.ia32_xss = data;
2877 break;
Liran Alon52797bf2017-11-15 13:43:14 +02002878 case MSR_SMI_COUNT:
2879 if (!msr_info->host_initiated)
2880 return 1;
2881 vcpu->arch.smi_count = data;
2882 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002883 case MSR_KVM_WALL_CLOCK_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002884 case MSR_KVM_WALL_CLOCK:
2885 vcpu->kvm->arch.wall_clock = data;
2886 kvm_write_wall_clock(vcpu->kvm, data);
2887 break;
Glauber Costa11c6bff2010-05-11 12:17:41 -04002888 case MSR_KVM_SYSTEM_TIME_NEW:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002889 case MSR_KVM_SYSTEM_TIME: {
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002890 struct kvm_arch *ka = &vcpu->kvm->arch;
2891
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002892 if (vcpu->vcpu_id == 0 && !msr_info->host_initiated) {
2893 bool tmp = (msr == MSR_KVM_SYSTEM_TIME);
2894
2895 if (ka->boot_vcpu_runs_old_kvmclock != tmp)
Radim Krčmář1bd20092017-04-26 22:32:20 +02002896 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosatti54750f22015-01-20 15:54:52 -02002897
2898 ka->boot_vcpu_runs_old_kvmclock = tmp;
2899 }
2900
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002901 vcpu->arch.time = data;
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03002902 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002903
2904 /* we verify if the enable bit is set... */
Paolo Bonzini49dedf02019-10-10 12:49:22 +02002905 vcpu->arch.pv_time_enabled = false;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002906 if (!(data & 1))
2907 break;
2908
Paolo Bonzini49dedf02019-10-10 12:49:22 +02002909 if (!kvm_gfn_to_hva_cache_init(vcpu->kvm,
Andrew Honig8f964522013-03-29 09:35:21 -07002910 &vcpu->arch.pv_time, data & ~1ULL,
2911 sizeof(struct pvclock_vcpu_time_info)))
Andy Honig0b794592013-02-20 14:48:10 -08002912 vcpu->arch.pv_time_enabled = true;
Xiao Guangrong32cad842012-08-03 15:42:52 +08002913
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02002914 break;
2915 }
Gleb Natapov344d9582010-10-14 11:22:50 +02002916 case MSR_KVM_ASYNC_PF_EN:
2917 if (kvm_pv_enable_async_pf(vcpu, data))
2918 return 1;
2919 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002920 case MSR_KVM_STEAL_TIME:
2921
2922 if (unlikely(!sched_info_on()))
2923 return 1;
2924
2925 if (data & KVM_STEAL_RESERVED_MASK)
2926 return 1;
2927
Glauber Costac9aaa892011-07-11 15:28:14 -04002928 vcpu->arch.st.msr_val = data;
2929
2930 if (!(data & KVM_MSR_ENABLED))
2931 break;
2932
Glauber Costac9aaa892011-07-11 15:28:14 -04002933 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
2934
2935 break;
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002936 case MSR_KVM_PV_EOI_EN:
Ladi Prosek72bbf932018-10-16 18:49:59 +02002937 if (kvm_lapic_enable_pv_eoi(vcpu, data, sizeof(u8)))
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03002938 return 1;
2939 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04002940
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03002941 case MSR_KVM_POLL_CONTROL:
2942 /* only enable bit supported */
2943 if (data & (-1ULL << 1))
2944 return 1;
2945
2946 vcpu->arch.msr_kvm_poll_control = data;
2947 break;
2948
Huang Ying890ca9a2009-05-11 16:48:15 +08002949 case MSR_IA32_MCG_CTL:
2950 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08002951 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Wanpeng Li9ffd9862017-10-19 06:47:56 -07002952 return set_msr_mce(vcpu, msr_info);
Andre Przywara71db6022009-06-12 22:01:29 +02002953
Wei Huang6912ac32015-06-12 01:34:56 -04002954 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
2955 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
2956 pr = true; /* fall through */
2957 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
2958 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02002959 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01002960 return kvm_pmu_set_msr(vcpu, msr_info);
Gleb Natapov57537852012-01-15 14:17:22 +02002961
2962 if (pr || data != 0)
Christoffer Dalla737f252012-06-03 21:17:48 +03002963 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
2964 "0x%x data 0x%llx\n", msr, data);
Gleb Natapov57537852012-01-15 14:17:22 +02002965 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002966 case MSR_K7_CLK_CTL:
2967 /*
2968 * Ignore all writes to this no longer documented MSR.
2969 * Writes are only relevant for old K7 processors,
2970 * all pre-dating SVM, but a recommended workaround from
Guo Chao4a969982012-06-28 15:17:27 +08002971 * AMD for these chips. It is possible to specify the
Jes Sorensen84e0cef2010-09-01 11:42:04 +02002972 * affected processor models on the command line, hence
2973 * the need to ignore the workaround.
2974 */
2975 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02002976 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002977 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
2978 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03002979 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01002980 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
2981 case HV_X64_MSR_TSC_EMULATION_CONTROL:
2982 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine7d95132015-07-03 15:01:37 +03002983 return kvm_hv_set_msr_common(vcpu, msr, data,
2984 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05002985 case MSR_IA32_BBL_CR_CTL3:
2986 /* Drop writes to this legacy MSR -- see rdmsr
2987 * counterpart for further detail.
2988 */
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02002989 if (report_ignored_msrs)
2990 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
2991 msr, data);
john cooper91c9c3e2011-01-21 00:21:00 -05002992 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002993 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02002994 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05002995 return 1;
2996 vcpu->arch.osvw.length = data;
2997 break;
2998 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02002999 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003000 return 1;
3001 vcpu->arch.osvw.status = data;
3002 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003003 case MSR_PLATFORM_INFO:
3004 if (!msr_info->host_initiated ||
Kyle Hueydb2336a2017-03-20 01:16:28 -07003005 (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) &&
3006 cpuid_fault_enabled(vcpu)))
3007 return 1;
3008 vcpu->arch.msr_platform_info = data;
3009 break;
3010 case MSR_MISC_FEATURES_ENABLES:
3011 if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT ||
3012 (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT &&
3013 !supports_cpuid_fault(vcpu)))
3014 return 1;
3015 vcpu->arch.msr_misc_features_enables = data;
3016 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003017 default:
Ed Swierkffde22a2009-10-15 15:21:43 -07003018 if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr))
3019 return xen_hvm_config(vcpu, data);
Wei Huangc6702c92015-06-19 13:44:45 +02003020 if (kvm_pmu_is_valid_msr(vcpu, msr))
Paolo Bonziniafd80d82013-03-28 17:18:35 +01003021 return kvm_pmu_set_msr(vcpu, msr_info);
Andre Przywaraed85c062009-06-25 12:36:49 +02003022 if (!ignore_msrs) {
Bandan Dasae0f5492016-11-15 01:36:18 -05003023 vcpu_debug_ratelimited(vcpu, "unhandled wrmsr: 0x%x data 0x%llx\n",
Christoffer Dalla737f252012-06-03 21:17:48 +03003024 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02003025 return 1;
3026 } else {
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02003027 if (report_ignored_msrs)
3028 vcpu_unimpl(vcpu,
3029 "ignored wrmsr: 0x%x data 0x%llx\n",
3030 msr, data);
Andre Przywaraed85c062009-06-25 12:36:49 +02003031 break;
3032 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003033 }
3034 return 0;
3035}
3036EXPORT_SYMBOL_GPL(kvm_set_msr_common);
3037
Paolo Bonzini44883f02018-07-26 13:01:52 +02003038static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003039{
3040 u64 data;
3041 u64 mcg_cap = vcpu->arch.mcg_cap;
3042 unsigned bank_num = mcg_cap & 0xff;
3043
3044 switch (msr) {
3045 case MSR_IA32_P5_MC_ADDR:
3046 case MSR_IA32_P5_MC_TYPE:
3047 data = 0;
3048 break;
3049 case MSR_IA32_MCG_CAP:
3050 data = vcpu->arch.mcg_cap;
3051 break;
3052 case MSR_IA32_MCG_CTL:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003053 if (!(mcg_cap & MCG_CTL_P) && !host)
Huang Ying890ca9a2009-05-11 16:48:15 +08003054 return 1;
3055 data = vcpu->arch.mcg_ctl;
3056 break;
3057 case MSR_IA32_MCG_STATUS:
3058 data = vcpu->arch.mcg_status;
3059 break;
3060 default:
3061 if (msr >= MSR_IA32_MC0_CTL &&
Chen Yucong81760dc2014-09-23 10:44:35 +08003062 msr < MSR_IA32_MCx_CTL(bank_num)) {
Marios Pomonis6ec4c5e2019-12-11 12:47:49 -08003063 u32 offset = array_index_nospec(
3064 msr - MSR_IA32_MC0_CTL,
3065 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3066
Huang Ying890ca9a2009-05-11 16:48:15 +08003067 data = vcpu->arch.mce_banks[offset];
3068 break;
3069 }
3070 return 1;
3071 }
3072 *pdata = data;
3073 return 0;
3074}
3075
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003076int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Carsten Otte15c4a642007-10-30 18:44:17 +01003077{
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003078 switch (msr_info->index) {
Carsten Otte15c4a642007-10-30 18:44:17 +01003079 case MSR_IA32_PLATFORM_ID:
Carsten Otte15c4a642007-10-30 18:44:17 +01003080 case MSR_IA32_EBL_CR_POWERON:
Alexander Grafb5e2fec2008-07-22 08:00:45 +02003081 case MSR_IA32_DEBUGCTLMSR:
3082 case MSR_IA32_LASTBRANCHFROMIP:
3083 case MSR_IA32_LASTBRANCHTOIP:
3084 case MSR_IA32_LASTINTFROMIP:
3085 case MSR_IA32_LASTINTTOIP:
Jaswinder Singh Rajput60af2ec2009-05-14 11:00:10 +05303086 case MSR_K8_SYSCFG:
Paolo Bonzini3afb1122015-09-18 17:33:04 +02003087 case MSR_K8_TSEG_ADDR:
3088 case MSR_K8_TSEG_MASK:
Avi Kivity61a6bd62008-12-29 17:32:28 +02003089 case MSR_VM_HSAVE_PA:
Andre Przywara1fdbd482009-06-24 12:44:34 +02003090 case MSR_K8_INT_PENDING_MSG:
Andre Przywarac323c0e2009-06-24 15:37:05 +02003091 case MSR_AMD64_NB_CFG:
Andre Przywaraf7c6d142009-07-02 15:04:14 +02003092 case MSR_FAM10H_MMIO_CONF_BASE:
Borislav Petkov2e32b712013-02-19 19:33:13 +01003093 case MSR_AMD64_BU_CFG2:
Dmitry Bilunov0c2df2a2016-05-31 17:38:24 +03003094 case MSR_IA32_PERF_CTL:
Ladi Prosek405a3532017-04-06 15:22:20 +02003095 case MSR_AMD64_DC_CFG:
Eduardo Habkost0e1b8692018-12-17 22:34:18 -02003096 case MSR_F15H_EX_CFG:
Venkatesh Srinivas2ca1a062020-04-16 11:42:54 -07003097 /*
3098 * Intel Sandy Bridge CPUs must support the RAPL (running average power
3099 * limit) MSRs. Just return 0, as we do not want to expose the host
3100 * data here. Do not conditionalize this on CPUID, as KVM does not do
3101 * so for existing CPU-specific MSRs.
3102 */
3103 case MSR_RAPL_POWER_UNIT:
3104 case MSR_PP0_ENERGY_STATUS: /* Power plane 0 (core) */
3105 case MSR_PP1_ENERGY_STATUS: /* Power plane 1 (graphics uncore) */
3106 case MSR_PKG_ENERGY_STATUS: /* Total package */
3107 case MSR_DRAM_ENERGY_STATUS: /* DRAM controller */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003108 msr_info->data = 0;
Carsten Otte15c4a642007-10-30 18:44:17 +01003109 break;
Janakarajan Natarajanc51eb522018-02-05 13:24:52 -06003110 case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5:
Wei Huang6912ac32015-06-12 01:34:56 -04003111 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3112 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3113 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
3114 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
Wei Huangc6702c92015-06-19 13:44:45 +02003115 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003116 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
3117 msr_info->data = 0;
Gleb Natapov57537852012-01-15 14:17:22 +02003118 break;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003119 case MSR_IA32_UCODE_REV:
Wanpeng Li518e7b92018-02-28 14:03:31 +08003120 msr_info->data = vcpu->arch.microcode_version;
Marcelo Tosatti742bc672011-07-29 19:44:21 -03003121 break;
Sean Christopherson0cf91352019-03-07 15:43:02 -08003122 case MSR_IA32_ARCH_CAPABILITIES:
3123 if (!msr_info->host_initiated &&
3124 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3125 return 1;
3126 msr_info->data = vcpu->arch.arch_capabilities;
3127 break;
Paolo Bonzini73f624f2019-06-06 14:32:59 +02003128 case MSR_IA32_POWER_CTL:
3129 msr_info->data = vcpu->arch.msr_ia32_power_ctl;
3130 break;
Paolo Bonzinidd259932018-04-13 11:38:35 +02003131 case MSR_IA32_TSC:
3132 msr_info->data = kvm_scale_tsc(vcpu, rdtsc()) + vcpu->arch.tsc_offset;
3133 break;
Avi Kivity9ba075a2008-05-26 20:06:35 +03003134 case MSR_MTRRcap:
Avi Kivity9ba075a2008-05-26 20:06:35 +03003135 case 0x200 ... 0x2ff:
Xiao Guangrongff536042015-06-15 16:55:22 +08003136 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
Carsten Otte15c4a642007-10-30 18:44:17 +01003137 case 0xcd: /* fsb frequency */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003138 msr_info->data = 3;
Carsten Otte15c4a642007-10-30 18:44:17 +01003139 break;
Jes Sorensen7b914092010-09-09 12:06:46 +02003140 /*
3141 * MSR_EBC_FREQUENCY_ID
3142 * Conservative value valid for even the basic CPU models.
3143 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
3144 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
3145 * and 266MHz for model 3, or 4. Set Core Clock
3146 * Frequency to System Bus Frequency Ratio to 1 (bits
3147 * 31:24) even though these are only valid for CPU
3148 * models > 2, however guests may end up dividing or
3149 * multiplying by zero otherwise.
3150 */
3151 case MSR_EBC_FREQUENCY_ID:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003152 msr_info->data = 1 << 24;
Jes Sorensen7b914092010-09-09 12:06:46 +02003153 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003154 case MSR_IA32_APICBASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003155 msr_info->data = kvm_get_apic_base(vcpu);
Carsten Otte15c4a642007-10-30 18:44:17 +01003156 break;
Gleb Natapov0105d1a2009-07-05 17:39:36 +03003157 case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003158 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003159 case MSR_IA32_TSCDEADLINE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003160 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
Liu, Jinsonga3e06bb2011-09-22 16:55:52 +08003161 break;
Will Auldba904632012-11-29 12:42:50 -08003162 case MSR_IA32_TSC_ADJUST:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003163 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
Will Auldba904632012-11-29 12:42:50 -08003164 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003165 case MSR_IA32_MISC_ENABLE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003166 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +01003167 break;
Paolo Bonzini64d60672015-05-07 11:36:11 +02003168 case MSR_IA32_SMBASE:
3169 if (!msr_info->host_initiated)
3170 return 1;
3171 msr_info->data = vcpu->arch.smbase;
Carsten Otte15c4a642007-10-30 18:44:17 +01003172 break;
Liran Alon52797bf2017-11-15 13:43:14 +02003173 case MSR_SMI_COUNT:
3174 msr_info->data = vcpu->arch.smi_count;
3175 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003176 case MSR_IA32_PERF_STATUS:
3177 /* TSC increment by tick */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003178 msr_info->data = 1000ULL;
Alexander Graf847f0ad2008-02-21 12:11:01 +01003179 /* CPU multiplier */
Nicolas Ioossb0996ae2015-06-29 18:39:23 +08003180 msr_info->data |= (((uint64_t)4ULL) << 40);
Alexander Graf847f0ad2008-02-21 12:11:01 +01003181 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003182 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003183 msr_info->data = vcpu->arch.efer;
Carsten Otte15c4a642007-10-30 18:44:17 +01003184 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003185 case MSR_KVM_WALL_CLOCK:
Glauber Costa11c6bff2010-05-11 12:17:41 -04003186 case MSR_KVM_WALL_CLOCK_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003187 msr_info->data = vcpu->kvm->arch.wall_clock;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003188 break;
3189 case MSR_KVM_SYSTEM_TIME:
Glauber Costa11c6bff2010-05-11 12:17:41 -04003190 case MSR_KVM_SYSTEM_TIME_NEW:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003191 msr_info->data = vcpu->arch.time;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -02003192 break;
Gleb Natapov344d9582010-10-14 11:22:50 +02003193 case MSR_KVM_ASYNC_PF_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003194 msr_info->data = vcpu->arch.apf.msr_val;
Gleb Natapov344d9582010-10-14 11:22:50 +02003195 break;
Glauber Costac9aaa892011-07-11 15:28:14 -04003196 case MSR_KVM_STEAL_TIME:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003197 msr_info->data = vcpu->arch.st.msr_val;
Glauber Costac9aaa892011-07-11 15:28:14 -04003198 break;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003199 case MSR_KVM_PV_EOI_EN:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003200 msr_info->data = vcpu->arch.pv_eoi.msr_val;
Michael S. Tsirkin1d921282012-08-26 18:00:29 +03003201 break;
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03003202 case MSR_KVM_POLL_CONTROL:
3203 msr_info->data = vcpu->arch.msr_kvm_poll_control;
3204 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003205 case MSR_IA32_P5_MC_ADDR:
3206 case MSR_IA32_P5_MC_TYPE:
3207 case MSR_IA32_MCG_CAP:
3208 case MSR_IA32_MCG_CTL:
3209 case MSR_IA32_MCG_STATUS:
Chen Yucong81760dc2014-09-23 10:44:35 +08003210 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
Paolo Bonzini44883f02018-07-26 13:01:52 +02003211 return get_msr_mce(vcpu, msr_info->index, &msr_info->data,
3212 msr_info->host_initiated);
Aaron Lewis864e2ab2019-10-21 16:30:26 -07003213 case MSR_IA32_XSS:
3214 if (!msr_info->host_initiated &&
3215 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3216 return 1;
3217 msr_info->data = vcpu->arch.ia32_xss;
3218 break;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003219 case MSR_K7_CLK_CTL:
3220 /*
3221 * Provide expected ramp-up count for K7. All other
3222 * are set to zero, indicating minimum divisors for
3223 * every field.
3224 *
3225 * This prevents guest kernels on AMD host with CPU
3226 * type 6, model 8 and higher from exploding due to
3227 * the rdmsr failing.
3228 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003229 msr_info->data = 0x20000000;
Jes Sorensen84e0cef2010-09-01 11:42:04 +02003230 break;
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003231 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
Andrey Smetanine7d95132015-07-03 15:01:37 +03003232 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3233 case HV_X64_MSR_CRASH_CTL:
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03003234 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
Vitaly Kuznetsova2e164e2018-03-01 15:15:12 +01003235 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3236 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3237 case HV_X64_MSR_TSC_EMULATION_STATUS:
Andrey Smetanine83d5882015-07-03 15:01:34 +03003238 return kvm_hv_get_msr_common(vcpu,
Paolo Bonzini44883f02018-07-26 13:01:52 +02003239 msr_info->index, &msr_info->data,
3240 msr_info->host_initiated);
john cooper91c9c3e2011-01-21 00:21:00 -05003241 case MSR_IA32_BBL_CR_CTL3:
3242 /* This legacy MSR exists but isn't fully documented in current
3243 * silicon. It is however accessed by winxp in very narrow
3244 * scenarios where it sets bit #19, itself documented as
3245 * a "reserved" bit. Best effort attempt to source coherent
3246 * read data here should the balance of the register be
3247 * interpreted by the guest:
3248 *
3249 * L2 cache control register 3: 64GB range, 256KB size,
3250 * enabled, latency 0x1, configured
3251 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003252 msr_info->data = 0xbe702111;
john cooper91c9c3e2011-01-21 00:21:00 -05003253 break;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003254 case MSR_AMD64_OSVW_ID_LENGTH:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003255 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003256 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003257 msr_info->data = vcpu->arch.osvw.length;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003258 break;
3259 case MSR_AMD64_OSVW_STATUS:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003260 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003261 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003262 msr_info->data = vcpu->arch.osvw.status;
Boris Ostrovsky2b036c62012-01-09 14:00:35 -05003263 break;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003264 case MSR_PLATFORM_INFO:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07003265 if (!msr_info->host_initiated &&
3266 !vcpu->kvm->arch.guest_can_read_msr_platform_info)
3267 return 1;
Kyle Hueydb2336a2017-03-20 01:16:28 -07003268 msr_info->data = vcpu->arch.msr_platform_info;
3269 break;
3270 case MSR_MISC_FEATURES_ENABLES:
3271 msr_info->data = vcpu->arch.msr_misc_features_enables;
3272 break;
Borislav Petkov191c8132019-04-18 18:32:50 +02003273 case MSR_K7_HWCR:
3274 msr_info->data = vcpu->arch.msr_hwcr;
3275 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003276 default:
Wei Huangc6702c92015-06-19 13:44:45 +02003277 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003278 return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data);
Andre Przywaraed85c062009-06-25 12:36:49 +02003279 if (!ignore_msrs) {
Bandan Dasae0f5492016-11-15 01:36:18 -05003280 vcpu_debug_ratelimited(vcpu, "unhandled rdmsr: 0x%x\n",
3281 msr_info->index);
Andre Przywaraed85c062009-06-25 12:36:49 +02003282 return 1;
3283 } else {
Eyal Moscovicifab0aa32017-11-08 14:32:08 +02003284 if (report_ignored_msrs)
3285 vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n",
3286 msr_info->index);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003287 msr_info->data = 0;
Andre Przywaraed85c062009-06-25 12:36:49 +02003288 }
3289 break;
Carsten Otte15c4a642007-10-30 18:44:17 +01003290 }
Carsten Otte15c4a642007-10-30 18:44:17 +01003291 return 0;
3292}
3293EXPORT_SYMBOL_GPL(kvm_get_msr_common);
3294
Carsten Otte313a3dc2007-10-11 19:16:52 +02003295/*
3296 * Read or write a bunch of msrs. All parameters are kernel addresses.
3297 *
3298 * @return number of msrs set successfully.
3299 */
3300static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
3301 struct kvm_msr_entry *entries,
3302 int (*do_msr)(struct kvm_vcpu *vcpu,
3303 unsigned index, u64 *data))
3304{
Tom Lendacky801e4592018-02-21 13:39:51 -06003305 int i;
Carsten Otte313a3dc2007-10-11 19:16:52 +02003306
Carsten Otte313a3dc2007-10-11 19:16:52 +02003307 for (i = 0; i < msrs->nmsrs; ++i)
3308 if (do_msr(vcpu, entries[i].index, &entries[i].data))
3309 break;
3310
Carsten Otte313a3dc2007-10-11 19:16:52 +02003311 return i;
3312}
3313
3314/*
3315 * Read or write a bunch of msrs. Parameters are user addresses.
3316 *
3317 * @return number of msrs set successfully.
3318 */
3319static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
3320 int (*do_msr)(struct kvm_vcpu *vcpu,
3321 unsigned index, u64 *data),
3322 int writeback)
3323{
3324 struct kvm_msrs msrs;
3325 struct kvm_msr_entry *entries;
3326 int r, n;
3327 unsigned size;
3328
3329 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003330 if (copy_from_user(&msrs, user_msrs, sizeof(msrs)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02003331 goto out;
3332
3333 r = -E2BIG;
3334 if (msrs.nmsrs >= MAX_IO_MSRS)
3335 goto out;
3336
Carsten Otte313a3dc2007-10-11 19:16:52 +02003337 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003338 entries = memdup_user(user_msrs->entries, size);
3339 if (IS_ERR(entries)) {
3340 r = PTR_ERR(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003341 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02003342 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02003343
3344 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
3345 if (r < 0)
3346 goto out_free;
3347
3348 r = -EFAULT;
3349 if (writeback && copy_to_user(user_msrs->entries, entries, size))
3350 goto out_free;
3351
3352 r = n;
3353
3354out_free:
Avi Kivity7a73c022010-07-22 23:24:52 +03003355 kfree(entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003356out:
3357 return r;
3358}
3359
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003360static inline bool kvm_can_mwait_in_guest(void)
3361{
3362 return boot_cpu_has(X86_FEATURE_MWAIT) &&
KarimAllah Ahmed8e9b29b2018-04-11 11:16:03 +02003363 !boot_cpu_has_bug(X86_BUG_MONITOR) &&
3364 boot_cpu_has(X86_FEATURE_ARAT);
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003365}
3366
Alexander Graf784aa3d2014-07-14 18:27:35 +02003367int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003368{
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003369 int r = 0;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003370
3371 switch (ext) {
3372 case KVM_CAP_IRQCHIP:
3373 case KVM_CAP_HLT:
3374 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003375 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +02003376 case KVM_CAP_EXT_CPUID:
Borislav Petkov9c15bb12013-09-22 16:44:50 +02003377 case KVM_CAP_EXT_EMUL_CPUID:
Gerd Hoffmannc8076602009-02-04 17:52:04 +01003378 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +08003379 case KVM_CAP_PIT:
Marcelo Tosattia28e4f52008-02-22 12:21:36 -05003380 case KVM_CAP_NOP_IO_DELAY:
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03003381 case KVM_CAP_MP_STATE:
Avi Kivityed848622008-07-29 11:30:57 +03003382 case KVM_CAP_SYNC_MMU:
Lai Jiangshana355c852010-12-14 17:57:47 +08003383 case KVM_CAP_USER_NMI:
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02003384 case KVM_CAP_REINJECT_CONTROL:
Gleb Natapov49256632009-02-04 17:28:14 +02003385 case KVM_CAP_IRQ_INJECT_STATUS:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003386 case KVM_CAP_IOEVENTFD:
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +03003387 case KVM_CAP_IOEVENTFD_NO_LENGTH:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02003388 case KVM_CAP_PIT2:
Beth Kone9f42752009-07-07 11:50:38 -04003389 case KVM_CAP_PIT_STATE2:
Sheng Yangb927a3c2009-07-21 10:42:48 +08003390 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
Ed Swierkffde22a2009-10-15 15:21:43 -07003391 case KVM_CAP_XEN_HVM:
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003392 case KVM_CAP_VCPU_EVENTS:
Gleb Natapov55cd8e52010-01-17 15:51:22 +02003393 case KVM_CAP_HYPERV:
Gleb Natapov10388a02010-01-17 15:51:23 +02003394 case KVM_CAP_HYPERV_VAPIC:
Gleb Natapovc25bc162010-01-17 15:51:24 +02003395 case KVM_CAP_HYPERV_SPIN:
Andrey Smetanin5c9194122015-11-10 15:36:34 +03003396 case KVM_CAP_HYPERV_SYNIC:
Roman Kaganefc479e2017-06-22 16:51:01 +03003397 case KVM_CAP_HYPERV_SYNIC2:
Roman Kagand3457c82017-07-14 17:13:20 +03003398 case KVM_CAP_HYPERV_VP_INDEX:
Roman Kaganfaeb7832018-02-01 16:48:32 +03003399 case KVM_CAP_HYPERV_EVENTFD:
Vitaly Kuznetsovc1aea912018-05-16 17:21:31 +02003400 case KVM_CAP_HYPERV_TLBFLUSH:
Vitaly Kuznetsov214ff832018-09-26 19:02:59 +02003401 case KVM_CAP_HYPERV_SEND_IPI:
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01003402 case KVM_CAP_HYPERV_CPUID:
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +08003403 case KVM_CAP_PCI_SEGMENT:
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01003404 case KVM_CAP_DEBUGREGS:
Jan Kiszkad2be1652010-02-23 17:47:57 +01003405 case KVM_CAP_X86_ROBUST_SINGLESTEP:
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003406 case KVM_CAP_XSAVE:
Gleb Natapov344d9582010-10-14 11:22:50 +02003407 case KVM_CAP_ASYNC_PF:
Joerg Roedel92a1f122011-03-25 09:44:51 +01003408 case KVM_CAP_GET_TSC_KHZ:
Eric B Munson1c0b28c2012-03-10 14:37:27 -05003409 case KVM_CAP_KVMCLOCK_CTRL:
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08003410 case KVM_CAP_READONLY_MEM:
Paolo Bonzini5f66b622014-01-29 18:10:45 +01003411 case KVM_CAP_HYPERV_TIME:
Gabriel L. Somlo100943c2014-02-27 23:06:17 -05003412 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
Radim Krčmářdefcf512015-01-08 15:59:30 +01003413 case KVM_CAP_TSC_DEADLINE_TIMER:
Nadav Amit90de4a12015-04-13 01:53:41 +03003414 case KVM_CAP_DISABLE_QUIRKS:
Paolo Bonzinid71ba782015-07-29 11:56:48 +02003415 case KVM_CAP_SET_BOOT_CPU_ID:
Steve Rutherford49df6392015-07-29 23:21:40 -07003416 case KVM_CAP_SPLIT_IRQCHIP:
Paolo Bonzini460df4c2017-02-08 11:50:15 +01003417 case KVM_CAP_IMMEDIATE_EXIT:
Eric Hankland66bb8a02019-07-10 18:25:15 -07003418 case KVM_CAP_PMU_EVENT_FILTER:
Tom Lendacky801e4592018-02-21 13:39:51 -06003419 case KVM_CAP_GET_MSR_FEATURES:
Drew Schmitt6fbbde92018-08-20 10:32:15 -07003420 case KVM_CAP_MSR_PLATFORM_INFO:
Jim Mattsonc4f55192018-10-16 14:29:24 -07003421 case KVM_CAP_EXCEPTION_PAYLOAD:
Peter Xub9b27822020-05-05 11:47:50 -04003422 case KVM_CAP_SET_GUEST_DEBUG:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003423 r = 1;
3424 break;
Ken Hofsass01643c52018-01-31 16:03:36 -08003425 case KVM_CAP_SYNC_REGS:
3426 r = KVM_SYNC_X86_VALID_FIELDS;
3427 break;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01003428 case KVM_CAP_ADJUST_CLOCK:
3429 r = KVM_CLOCK_TSC_STABLE;
3430 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003431 case KVM_CAP_X86_DISABLE_EXITS:
Wanpeng Lib5170062019-05-21 14:06:53 +08003432 r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE |
3433 KVM_X86_DISABLE_EXITS_CSTATE;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07003434 if(kvm_can_mwait_in_guest())
3435 r |= KVM_X86_DISABLE_EXITS_MWAIT;
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02003436 break;
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003437 case KVM_CAP_X86_SMM:
3438 /* SMBASE is usually relocated above 1M on modern chipsets,
3439 * and SMM handlers might indeed rely on 4G segment limits,
3440 * so do not report SMM to be available if real mode is
3441 * emulated via vm86 mode. Still, do not go to great lengths
3442 * to avoid userspace's usage of the feature, because it is a
3443 * fringe case that is not enabled except via specific settings
3444 * of the module parameters.
3445 */
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003446 r = kvm_x86_ops.has_emulated_msr(MSR_IA32_SMBASE);
Paolo Bonzini6d396b52015-04-01 14:25:33 +02003447 break;
Avi Kivity774ead32007-12-26 13:57:04 +02003448 case KVM_CAP_VAPIC:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003449 r = !kvm_x86_ops.cpu_has_accelerated_tpr();
Avi Kivity774ead32007-12-26 13:57:04 +02003450 break;
Avi Kivityf7252302008-02-20 11:53:16 +02003451 case KVM_CAP_NR_VCPUS:
Sasha Levin8c3ba332011-07-18 17:17:15 +03003452 r = KVM_SOFT_MAX_VCPUS;
3453 break;
3454 case KVM_CAP_MAX_VCPUS:
Avi Kivityf7252302008-02-20 11:53:16 +02003455 r = KVM_MAX_VCPUS;
3456 break;
Thomas Hutha86cb412019-05-23 18:43:08 +02003457 case KVM_CAP_MAX_VCPU_ID:
3458 r = KVM_MAX_VCPU_ID;
3459 break;
Marcelo Tosattia68a6a72009-10-01 19:28:39 -03003460 case KVM_CAP_PV_MMU: /* obsolete */
3461 r = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05003462 break;
Huang Ying890ca9a2009-05-11 16:48:15 +08003463 case KVM_CAP_MCE:
3464 r = KVM_MAX_MCE_BANKS;
3465 break;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003466 case KVM_CAP_XCRS:
Borislav Petkovd366bf72016-04-04 22:25:02 +02003467 r = boot_cpu_has(X86_FEATURE_XSAVE);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08003468 break;
Joerg Roedel92a1f122011-03-25 09:44:51 +01003469 case KVM_CAP_TSC_CONTROL:
3470 r = kvm_has_tsc_control;
3471 break;
Radim Krčmář371313132016-07-12 22:09:27 +02003472 case KVM_CAP_X2APIC_API:
3473 r = KVM_X2APIC_API_VALID_FLAGS;
3474 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02003475 case KVM_CAP_NESTED_STATE:
Paolo Bonzini33b22172020-04-17 10:24:18 -04003476 r = kvm_x86_ops.nested_ops->get_state ?
3477 kvm_x86_ops.nested_ops->get_state(NULL, NULL, 0) : 0;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02003478 break;
Tianyu Lan344c6c82019-08-22 22:30:20 +08003479 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003480 r = kvm_x86_ops.enable_direct_tlbflush != NULL;
Vitaly Kuznetsov5a0165f2019-08-28 09:59:05 +02003481 break;
3482 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04003483 r = kvm_x86_ops.nested_ops->enable_evmcs != NULL;
Tianyu Lan344c6c82019-08-22 22:30:20 +08003484 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003485 default:
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003486 break;
3487 }
3488 return r;
3489
3490}
3491
Carsten Otte043405e2007-10-10 17:16:19 +02003492long kvm_arch_dev_ioctl(struct file *filp,
3493 unsigned int ioctl, unsigned long arg)
3494{
3495 void __user *argp = (void __user *)arg;
3496 long r;
3497
3498 switch (ioctl) {
3499 case KVM_GET_MSR_INDEX_LIST: {
3500 struct kvm_msr_list __user *user_msr_list = argp;
3501 struct kvm_msr_list msr_list;
3502 unsigned n;
3503
3504 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003505 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02003506 goto out;
3507 n = msr_list.nmsrs;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02003508 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003509 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
Carsten Otte043405e2007-10-10 17:16:19 +02003510 goto out;
3511 r = -E2BIG;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02003512 if (n < msr_list.nmsrs)
Carsten Otte043405e2007-10-10 17:16:19 +02003513 goto out;
3514 r = -EFAULT;
3515 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
3516 num_msrs_to_save * sizeof(u32)))
3517 goto out;
Jan Kiszkae125e7b2009-07-02 21:45:47 +02003518 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
Carsten Otte043405e2007-10-10 17:16:19 +02003519 &emulated_msrs,
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02003520 num_emulated_msrs * sizeof(u32)))
Carsten Otte043405e2007-10-10 17:16:19 +02003521 goto out;
3522 r = 0;
3523 break;
3524 }
Borislav Petkov9c15bb12013-09-22 16:44:50 +02003525 case KVM_GET_SUPPORTED_CPUID:
3526 case KVM_GET_EMULATED_CPUID: {
Avi Kivity674eea02008-02-11 18:37:23 +02003527 struct kvm_cpuid2 __user *cpuid_arg = argp;
3528 struct kvm_cpuid2 cpuid;
3529
3530 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003531 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02003532 goto out;
Borislav Petkov9c15bb12013-09-22 16:44:50 +02003533
3534 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
3535 ioctl);
Avi Kivity674eea02008-02-11 18:37:23 +02003536 if (r)
3537 goto out;
3538
3539 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00003540 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Avi Kivity674eea02008-02-11 18:37:23 +02003541 goto out;
3542 r = 0;
3543 break;
3544 }
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08003545 case KVM_X86_GET_MCE_CAP_SUPPORTED:
Huang Ying890ca9a2009-05-11 16:48:15 +08003546 r = -EFAULT;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003547 if (copy_to_user(argp, &kvm_mce_cap_supported,
3548 sizeof(kvm_mce_cap_supported)))
Huang Ying890ca9a2009-05-11 16:48:15 +08003549 goto out;
3550 r = 0;
3551 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06003552 case KVM_GET_MSR_FEATURE_INDEX_LIST: {
3553 struct kvm_msr_list __user *user_msr_list = argp;
3554 struct kvm_msr_list msr_list;
3555 unsigned int n;
3556
3557 r = -EFAULT;
3558 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
3559 goto out;
3560 n = msr_list.nmsrs;
3561 msr_list.nmsrs = num_msr_based_features;
3562 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
3563 goto out;
3564 r = -E2BIG;
3565 if (n < msr_list.nmsrs)
3566 goto out;
3567 r = -EFAULT;
3568 if (copy_to_user(user_msr_list->indices, &msr_based_features,
3569 num_msr_based_features * sizeof(u32)))
3570 goto out;
3571 r = 0;
3572 break;
3573 }
3574 case KVM_GET_MSRS:
3575 r = msr_io(NULL, argp, do_get_msr_feature, 1);
3576 break;
Carsten Otte043405e2007-10-10 17:16:19 +02003577 default:
3578 r = -EINVAL;
Xiaoyao Licf6c26e2020-02-29 10:52:12 +08003579 break;
Carsten Otte043405e2007-10-10 17:16:19 +02003580 }
3581out:
3582 return r;
3583}
3584
Sheng Yangf5f48ee2010-06-30 12:25:15 +08003585static void wbinvd_ipi(void *garbage)
3586{
3587 wbinvd();
3588}
3589
3590static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
3591{
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06003592 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08003593}
3594
Carsten Otte313a3dc2007-10-11 19:16:52 +02003595void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
3596{
Sheng Yangf5f48ee2010-06-30 12:25:15 +08003597 /* Address WBINVD may be executed by guest */
3598 if (need_emulate_wbinvd(vcpu)) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003599 if (kvm_x86_ops.has_wbinvd_exit())
Sheng Yangf5f48ee2010-06-30 12:25:15 +08003600 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
3601 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
3602 smp_call_function_single(vcpu->cpu,
3603 wbinvd_ipi, NULL, 1);
3604 }
3605
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003606 kvm_x86_ops.vcpu_load(vcpu, cpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02003607
Babu Moger37486132020-05-12 18:59:06 -05003608 /* Save host pkru register if supported */
3609 vcpu->arch.host_pkru = read_pkru();
3610
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02003611 /* Apply any externally detected TSC adjustments (due to suspend) */
3612 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
3613 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
3614 vcpu->arch.tsc_offset_adjustment = 0;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08003615 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02003616 }
3617
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01003618 if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) {
Zachary Amsden6f526ec2012-02-03 15:43:54 -02003619 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
Andy Lutomirski4ea16362015-06-25 18:44:07 +02003620 rdtsc() - vcpu->arch.last_host_tsc;
Zachary Amsdene48672f2010-08-19 22:07:23 -10003621 if (tsc_delta < 0)
3622 mark_tsc_unstable("KVM discovered backwards TSC");
Yunhong Jiangce7a0582016-06-13 14:20:01 -07003623
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01003624 if (kvm_check_tsc_unstable()) {
Haozhong Zhang07c14192015-10-20 15:39:05 +08003625 u64 offset = kvm_compute_tsc_offset(vcpu,
Zachary Amsdenb183aa52012-02-03 15:43:53 -02003626 vcpu->arch.last_guest_tsc);
Luiz Capitulinoa545ab62016-09-07 14:47:19 -04003627 kvm_vcpu_write_tsc_offset(vcpu, offset);
Zachary Amsdenc2855452010-09-18 14:38:15 -10003628 vcpu->arch.tsc_catchup = 1;
Zachary Amsdenc2855452010-09-18 14:38:15 -10003629 }
Paolo Bonzinia749e242017-06-29 17:14:50 +02003630
3631 if (kvm_lapic_hv_timer_in_use(vcpu))
3632 kvm_lapic_restart_hv_timer(vcpu);
3633
Marcelo Tosattid98d07c2012-11-27 23:29:04 -02003634 /*
3635 * On a host with synchronized TSC, there is no need to update
3636 * kvmclock on vcpu->cpu migration
3637 */
3638 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03003639 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
Zachary Amsdenc2855452010-09-18 14:38:15 -10003640 if (vcpu->cpu != cpu)
Radim Krčmář1bd20092017-04-26 22:32:20 +02003641 kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10003642 vcpu->cpu = cpu;
Zachary Amsden6b7d7e72009-10-09 16:26:08 -10003643 }
Glauber Costac9aaa892011-07-11 15:28:14 -04003644
Glauber Costac9aaa892011-07-11 15:28:14 -04003645 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003646}
3647
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003648static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
3649{
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003650 struct kvm_host_map map;
3651 struct kvm_steal_time *st;
3652
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003653 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
3654 return;
3655
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00003656 if (vcpu->arch.st.preempted)
Boris Ostrovsky8c6de562019-10-30 19:01:31 +00003657 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003658
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003659 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT, &map,
3660 &vcpu->arch.st.cache, true))
3661 return;
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003662
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003663 st = map.hva +
3664 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
3665
Boris Ostrovskya6bd8112019-12-06 15:36:12 +00003666 st->preempted = vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED;
Boris Ostrovskyb0431382019-12-05 03:45:32 +00003667
3668 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, true);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003669}
3670
Carsten Otte313a3dc2007-10-11 19:16:52 +02003671void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
3672{
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01003673 int idx;
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08003674
3675 if (vcpu->preempted)
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003676 vcpu->arch.preempted_in_kernel = !kvm_x86_ops.get_cpl(vcpu);
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08003677
Andrea Arcangeli931f2612016-12-17 18:43:52 +01003678 /*
3679 * Disable page faults because we're in atomic context here.
3680 * kvm_write_guest_offset_cached() would call might_fault()
3681 * that relies on pagefault_disable() to tell if there's a
3682 * bug. NOTE: the write to guest memory may not go through if
3683 * during postcopy live migration or if there's heavy guest
3684 * paging.
3685 */
3686 pagefault_disable();
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01003687 /*
3688 * kvm_memslots() will be called by
3689 * kvm_write_guest_offset_cached() so take the srcu lock.
3690 */
3691 idx = srcu_read_lock(&vcpu->kvm->srcu);
Pan Xinhui0b9f6c42016-11-02 05:08:35 -04003692 kvm_steal_time_set_preempted(vcpu);
Andrea Arcangelicc0d9072016-12-17 19:13:32 +01003693 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Andrea Arcangeli931f2612016-12-17 18:43:52 +01003694 pagefault_enable();
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003695 kvm_x86_ops.vcpu_put(vcpu);
Andy Lutomirski4ea16362015-06-25 18:44:07 +02003696 vcpu->arch.last_host_tsc = rdtsc();
Wanpeng Liefdab992017-12-13 10:46:40 +01003697 /*
Radim Krčmářf9dcf082018-10-23 16:31:38 +02003698 * If userspace has set any breakpoints or watchpoints, dr6 is restored
3699 * on every vmexit, but if not, we might have a stale dr6 from the
3700 * guest. do_debug expects dr6 to be cleared after it runs, do the same.
Wanpeng Liefdab992017-12-13 10:46:40 +01003701 */
Radim Krčmářf9dcf082018-10-23 16:31:38 +02003702 set_debugreg(0, 6);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003703}
3704
Carsten Otte313a3dc2007-10-11 19:16:52 +02003705static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
3706 struct kvm_lapic_state *s)
3707{
Liran Alonfa59cc02017-12-24 18:12:53 +02003708 if (vcpu->arch.apicv_active)
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003709 kvm_x86_ops.sync_pir_to_irr(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03003710
Radim Krčmářa92e2542016-07-12 22:09:22 +02003711 return kvm_apic_get_state(vcpu, s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003712}
3713
3714static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
3715 struct kvm_lapic_state *s)
3716{
Radim Krčmářa92e2542016-07-12 22:09:22 +02003717 int r;
3718
3719 r = kvm_apic_set_state(vcpu, s);
3720 if (r)
3721 return r;
Gleb Natapovcb142eb2009-08-09 15:17:40 +03003722 update_cr8_intercept(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02003723
3724 return 0;
3725}
3726
Matt Gingell127a4572015-11-17 17:32:05 +01003727static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
3728{
3729 return (!lapic_in_kernel(vcpu) ||
3730 kvm_apic_accept_pic_intr(vcpu));
3731}
3732
Matt Gingell782d4222015-11-16 15:26:00 -08003733/*
3734 * if userspace requested an interrupt window, check that the
3735 * interrupt window is open.
3736 *
3737 * No need to exit to userspace if we already have an interrupt queued.
3738 */
3739static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
3740{
3741 return kvm_arch_interrupt_allowed(vcpu) &&
3742 !kvm_cpu_has_interrupt(vcpu) &&
3743 !kvm_event_needs_reinjection(vcpu) &&
3744 kvm_cpu_accept_dm_intr(vcpu);
3745}
3746
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003747static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
3748 struct kvm_interrupt *irq)
3749{
Chen Gang02cdb502013-02-27 11:33:25 +08003750 if (irq->irq >= KVM_NR_INTERRUPTS)
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003751 return -EINVAL;
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02003752
3753 if (!irqchip_in_kernel(vcpu->kvm)) {
3754 kvm_queue_interrupt(vcpu, irq->irq, false);
3755 kvm_make_request(KVM_REQ_EVENT, vcpu);
3756 return 0;
3757 }
3758
3759 /*
3760 * With in-kernel LAPIC, we only use this to inject EXTINT, so
3761 * fail for in-kernel 8259.
3762 */
3763 if (pic_in_kernel(vcpu->kvm))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003764 return -ENXIO;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003765
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02003766 if (vcpu->arch.pending_external_vector != -1)
3767 return -EEXIST;
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003768
Steve Rutherford1c1a9ce2015-07-30 11:27:16 +02003769 vcpu->arch.pending_external_vector = irq->irq;
Matt Gingell934bf652015-11-16 15:26:05 -08003770 kvm_make_request(KVM_REQ_EVENT, vcpu);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08003771 return 0;
3772}
3773
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003774static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
3775{
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003776 kvm_inject_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02003777
3778 return 0;
3779}
3780
Paolo Bonzinif0778252015-04-01 15:06:40 +02003781static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
3782{
Paolo Bonzini64d60672015-05-07 11:36:11 +02003783 kvm_make_request(KVM_REQ_SMI, vcpu);
3784
Paolo Bonzinif0778252015-04-01 15:06:40 +02003785 return 0;
3786}
3787
Avi Kivityb209749f2007-10-22 16:50:39 +02003788static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
3789 struct kvm_tpr_access_ctl *tac)
3790{
3791 if (tac->flags)
3792 return -EINVAL;
3793 vcpu->arch.tpr_access_reporting = !!tac->enabled;
3794 return 0;
3795}
3796
Huang Ying890ca9a2009-05-11 16:48:15 +08003797static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
3798 u64 mcg_cap)
3799{
3800 int r;
3801 unsigned bank_num = mcg_cap & 0xff, bank;
3802
3803 r = -EINVAL;
Jim Mattsonc4e0e4ab2020-05-11 15:56:16 -07003804 if (!bank_num || bank_num > KVM_MAX_MCE_BANKS)
Huang Ying890ca9a2009-05-11 16:48:15 +08003805 goto out;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003806 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
Huang Ying890ca9a2009-05-11 16:48:15 +08003807 goto out;
3808 r = 0;
3809 vcpu->arch.mcg_cap = mcg_cap;
3810 /* Init IA32_MCG_CTL to all 1s */
3811 if (mcg_cap & MCG_CTL_P)
3812 vcpu->arch.mcg_ctl = ~(u64)0;
3813 /* Init IA32_MCi_CTL to all 1s */
3814 for (bank = 0; bank < bank_num; bank++)
3815 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003816
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003817 kvm_x86_ops.setup_mce(vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08003818out:
3819 return r;
3820}
3821
3822static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
3823 struct kvm_x86_mce *mce)
3824{
3825 u64 mcg_cap = vcpu->arch.mcg_cap;
3826 unsigned bank_num = mcg_cap & 0xff;
3827 u64 *banks = vcpu->arch.mce_banks;
3828
3829 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
3830 return -EINVAL;
3831 /*
3832 * if IA32_MCG_CTL is not all 1s, the uncorrected error
3833 * reporting is disabled
3834 */
3835 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
3836 vcpu->arch.mcg_ctl != ~(u64)0)
3837 return 0;
3838 banks += 4 * mce->bank;
3839 /*
3840 * if IA32_MCi_CTL is not all 1s, the uncorrected error
3841 * reporting is disabled for the bank
3842 */
3843 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
3844 return 0;
3845 if (mce->status & MCI_STATUS_UC) {
3846 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
Avi Kivityfc78f512009-12-07 12:16:48 +02003847 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03003848 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Huang Ying890ca9a2009-05-11 16:48:15 +08003849 return 0;
3850 }
3851 if (banks[1] & MCI_STATUS_VAL)
3852 mce->status |= MCI_STATUS_OVER;
3853 banks[2] = mce->addr;
3854 banks[3] = mce->misc;
3855 vcpu->arch.mcg_status = mce->mcg_status;
3856 banks[1] = mce->status;
3857 kvm_queue_exception(vcpu, MC_VECTOR);
3858 } else if (!(banks[1] & MCI_STATUS_VAL)
3859 || !(banks[1] & MCI_STATUS_UC)) {
3860 if (banks[1] & MCI_STATUS_VAL)
3861 mce->status |= MCI_STATUS_OVER;
3862 banks[2] = mce->addr;
3863 banks[3] = mce->misc;
3864 banks[1] = mce->status;
3865 } else
3866 banks[1] |= MCI_STATUS_OVER;
3867 return 0;
3868}
3869
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003870static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
3871 struct kvm_vcpu_events *events)
3872{
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003873 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07003874
Wanpeng Li664f8e22017-08-24 03:35:09 -07003875 /*
Oliver Uptona06230b2020-02-07 02:36:06 -08003876 * In guest mode, payload delivery should be deferred,
3877 * so that the L1 hypervisor can intercept #PF before
3878 * CR2 is modified (or intercept #DB before DR6 is
3879 * modified under nVMX). Unless the per-VM capability,
3880 * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of
3881 * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we
3882 * opportunistically defer the exception payload, deliver it if the
3883 * capability hasn't been requested before processing a
3884 * KVM_GET_VCPU_EVENTS.
3885 */
3886 if (!vcpu->kvm->arch.exception_payload_enabled &&
3887 vcpu->arch.exception.pending && vcpu->arch.exception.has_payload)
3888 kvm_deliver_exception_payload(vcpu);
3889
3890 /*
Jim Mattson59073aa2018-10-16 14:29:20 -07003891 * The API doesn't provide the instruction length for software
3892 * exceptions, so don't report them. As long as the guest RIP
3893 * isn't advanced, we should expect to encounter the exception
3894 * again.
Wanpeng Li664f8e22017-08-24 03:35:09 -07003895 */
Jim Mattson59073aa2018-10-16 14:29:20 -07003896 if (kvm_exception_is_soft(vcpu->arch.exception.nr)) {
3897 events->exception.injected = 0;
3898 events->exception.pending = 0;
3899 } else {
3900 events->exception.injected = vcpu->arch.exception.injected;
3901 events->exception.pending = vcpu->arch.exception.pending;
3902 /*
3903 * For ABI compatibility, deliberately conflate
3904 * pending and injected exceptions when
3905 * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled.
3906 */
3907 if (!vcpu->kvm->arch.exception_payload_enabled)
3908 events->exception.injected |=
3909 vcpu->arch.exception.pending;
3910 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003911 events->exception.nr = vcpu->arch.exception.nr;
3912 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
3913 events->exception.error_code = vcpu->arch.exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07003914 events->exception_has_payload = vcpu->arch.exception.has_payload;
3915 events->exception_payload = vcpu->arch.exception.payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003916
Jan Kiszka03b82a32010-02-15 10:45:41 +01003917 events->interrupt.injected =
Liran Alon04140b42018-03-23 03:01:31 +03003918 vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003919 events->interrupt.nr = vcpu->arch.interrupt.nr;
Jan Kiszka03b82a32010-02-15 10:45:41 +01003920 events->interrupt.soft = 0;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003921 events->interrupt.shadow = kvm_x86_ops.get_interrupt_shadow(vcpu);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003922
3923 events->nmi.injected = vcpu->arch.nmi_injected;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003924 events->nmi.pending = vcpu->arch.nmi_pending != 0;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003925 events->nmi.masked = kvm_x86_ops.get_nmi_mask(vcpu);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003926 events->nmi.pad = 0;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003927
Jan Kiszka66450a22013-03-13 12:42:34 +01003928 events->sipi_vector = 0; /* never valid when reporting to user space */
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003929
Paolo Bonzinif0778252015-04-01 15:06:40 +02003930 events->smi.smm = is_smm(vcpu);
3931 events->smi.pending = vcpu->arch.smi_pending;
3932 events->smi.smm_inside_nmi =
3933 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
3934 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
3935
Jan Kiszkadab4b912009-12-06 18:24:15 +01003936 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
Paolo Bonzinif0778252015-04-01 15:06:40 +02003937 | KVM_VCPUEVENT_VALID_SHADOW
3938 | KVM_VCPUEVENT_VALID_SMM);
Jim Mattson59073aa2018-10-16 14:29:20 -07003939 if (vcpu->kvm->arch.exception_payload_enabled)
3940 events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD;
3941
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04003942 memset(&events->reserved, 0, sizeof(events->reserved));
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003943}
3944
Sean Christophersonc5833c72019-04-02 08:03:10 -07003945static void kvm_smm_changed(struct kvm_vcpu *vcpu);
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01003946
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003947static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
3948 struct kvm_vcpu_events *events)
3949{
Jan Kiszkadab4b912009-12-06 18:24:15 +01003950 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
Jan Kiszka48005f62010-02-19 19:38:07 +01003951 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
Paolo Bonzinif0778252015-04-01 15:06:40 +02003952 | KVM_VCPUEVENT_VALID_SHADOW
Jim Mattson59073aa2018-10-16 14:29:20 -07003953 | KVM_VCPUEVENT_VALID_SMM
3954 | KVM_VCPUEVENT_VALID_PAYLOAD))
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003955 return -EINVAL;
3956
Jim Mattson59073aa2018-10-16 14:29:20 -07003957 if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) {
3958 if (!vcpu->kvm->arch.exception_payload_enabled)
3959 return -EINVAL;
3960 if (events->exception.pending)
3961 events->exception.injected = 0;
3962 else
3963 events->exception_has_payload = 0;
3964 } else {
3965 events->exception.pending = 0;
3966 events->exception_has_payload = 0;
3967 }
3968
3969 if ((events->exception.injected || events->exception.pending) &&
3970 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
Paolo Bonzini78e546c2016-06-01 14:09:20 +02003971 return -EINVAL;
3972
David Hildenbrand28bf2882017-03-23 11:46:03 +01003973 /* INITs are latched while in SMM */
3974 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
3975 (events->smi.smm || events->smi.pending) &&
3976 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
3977 return -EINVAL;
3978
Avi Kivity7460fb4a2011-09-20 13:43:14 +03003979 process_nmi(vcpu);
Jim Mattson59073aa2018-10-16 14:29:20 -07003980 vcpu->arch.exception.injected = events->exception.injected;
3981 vcpu->arch.exception.pending = events->exception.pending;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003982 vcpu->arch.exception.nr = events->exception.nr;
3983 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
3984 vcpu->arch.exception.error_code = events->exception.error_code;
Jim Mattson59073aa2018-10-16 14:29:20 -07003985 vcpu->arch.exception.has_payload = events->exception_has_payload;
3986 vcpu->arch.exception.payload = events->exception_payload;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003987
Liran Alon04140b42018-03-23 03:01:31 +03003988 vcpu->arch.interrupt.injected = events->interrupt.injected;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003989 vcpu->arch.interrupt.nr = events->interrupt.nr;
3990 vcpu->arch.interrupt.soft = events->interrupt.soft;
Jan Kiszka48005f62010-02-19 19:38:07 +01003991 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003992 kvm_x86_ops.set_interrupt_shadow(vcpu,
Jan Kiszka48005f62010-02-19 19:38:07 +01003993 events->interrupt.shadow);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003994
3995 vcpu->arch.nmi_injected = events->nmi.injected;
Jan Kiszkadab4b912009-12-06 18:24:15 +01003996 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
3997 vcpu->arch.nmi_pending = events->nmi.pending;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07003998 kvm_x86_ops.set_nmi_mask(vcpu, events->nmi.masked);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003999
Jan Kiszka66450a22013-03-13 12:42:34 +01004000 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004001 lapic_in_kernel(vcpu))
Jan Kiszka66450a22013-03-13 12:42:34 +01004002 vcpu->arch.apic->sipi_vector = events->sipi_vector;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004003
Paolo Bonzinif0778252015-04-01 15:06:40 +02004004 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
Sean Christophersonc5833c72019-04-02 08:03:10 -07004005 if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm) {
4006 if (events->smi.smm)
4007 vcpu->arch.hflags |= HF_SMM_MASK;
4008 else
4009 vcpu->arch.hflags &= ~HF_SMM_MASK;
4010 kvm_smm_changed(vcpu);
4011 }
Xiao Guangrong6ef4e072016-12-24 10:00:42 +01004012
Paolo Bonzinif0778252015-04-01 15:06:40 +02004013 vcpu->arch.smi_pending = events->smi.pending;
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004014
4015 if (events->smi.smm) {
4016 if (events->smi.smm_inside_nmi)
4017 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
Paolo Bonzinif0778252015-04-01 15:06:40 +02004018 else
Wanpeng Lif4ef1912017-08-01 16:05:25 -07004019 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
Liran Alonff90afa2019-11-11 11:16:39 +02004020 }
4021
4022 if (lapic_in_kernel(vcpu)) {
4023 if (events->smi.latched_init)
4024 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
4025 else
4026 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
Paolo Bonzinif0778252015-04-01 15:06:40 +02004027 }
4028 }
4029
Avi Kivity3842d132010-07-27 12:30:24 +03004030 kvm_make_request(KVM_REQ_EVENT, vcpu);
4031
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004032 return 0;
4033}
4034
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004035static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
4036 struct kvm_debugregs *dbgregs)
4037{
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004038 unsigned long val;
4039
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004040 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
Nadav Amit16f8a6f2014-10-03 01:10:05 +03004041 kvm_get_dr(vcpu, 6, &val);
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01004042 dbgregs->dr6 = val;
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004043 dbgregs->dr7 = vcpu->arch.dr7;
4044 dbgregs->flags = 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004045 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004046}
4047
4048static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
4049 struct kvm_debugregs *dbgregs)
4050{
4051 if (dbgregs->flags)
4052 return -EINVAL;
4053
Paolo Bonzinid14bdb52016-06-01 14:09:23 +02004054 if (dbgregs->dr6 & ~0xffffffffull)
4055 return -EINVAL;
4056 if (dbgregs->dr7 & ~0xffffffffull)
4057 return -EINVAL;
4058
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004059 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03004060 kvm_update_dr0123(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004061 vcpu->arch.dr6 = dbgregs->dr6;
4062 vcpu->arch.dr7 = dbgregs->dr7;
Jan Kiszka9926c9f2014-01-04 18:47:15 +01004063 kvm_update_dr7(vcpu);
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004064
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004065 return 0;
4066}
4067
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004068#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
4069
4070static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
4071{
Marc Orrb666a4b2018-11-06 14:53:56 -08004072 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Ingo Molnar400e4b22015-04-24 10:19:47 +02004073 u64 xstate_bv = xsave->header.xfeatures;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004074 u64 valid;
4075
4076 /*
4077 * Copy legacy XSAVE area, to avoid complications with CPUID
4078 * leaves 0 and 1 in the loop below.
4079 */
4080 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
4081
4082 /* Set XSTATE_BV */
Radim Krčmář00c87e92017-02-01 14:19:53 +01004083 xstate_bv &= vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004084 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
4085
4086 /*
4087 * Copy each region from the possibly compacted offset to the
4088 * non-compacted offset.
4089 */
Dave Hansend91cab72015-09-02 16:31:26 -07004090 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004091 while (valid) {
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004092 u64 xfeature_mask = valid & -valid;
4093 int xfeature_nr = fls64(xfeature_mask) - 1;
4094 void *src = get_xsave_addr(xsave, xfeature_nr);
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004095
4096 if (src) {
4097 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004098 cpuid_count(XSTATE_CPUID, xfeature_nr,
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004099 &size, &offset, &ecx, &edx);
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004100 if (xfeature_nr == XFEATURE_PKRU)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004101 memcpy(dest + offset, &vcpu->arch.pkru,
4102 sizeof(vcpu->arch.pkru));
4103 else
4104 memcpy(dest + offset, src, size);
4105
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004106 }
4107
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004108 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004109 }
4110}
4111
4112static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
4113{
Marc Orrb666a4b2018-11-06 14:53:56 -08004114 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004115 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
4116 u64 valid;
4117
4118 /*
4119 * Copy legacy XSAVE area, to avoid complications with CPUID
4120 * leaves 0 and 1 in the loop below.
4121 */
4122 memcpy(xsave, src, XSAVE_HDR_OFFSET);
4123
4124 /* Set XSTATE_BV and possibly XCOMP_BV. */
Ingo Molnar400e4b22015-04-24 10:19:47 +02004125 xsave->header.xfeatures = xstate_bv;
Borislav Petkov782511b2016-04-04 22:25:03 +02004126 if (boot_cpu_has(X86_FEATURE_XSAVES))
Ingo Molnar3a544502015-04-24 10:14:36 +02004127 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004128
4129 /*
4130 * Copy each region from the non-compacted offset to the
4131 * possibly compacted offset.
4132 */
Dave Hansend91cab72015-09-02 16:31:26 -07004133 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004134 while (valid) {
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004135 u64 xfeature_mask = valid & -valid;
4136 int xfeature_nr = fls64(xfeature_mask) - 1;
4137 void *dest = get_xsave_addr(xsave, xfeature_nr);
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004138
4139 if (dest) {
4140 u32 size, offset, ecx, edx;
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004141 cpuid_count(XSTATE_CPUID, xfeature_nr,
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004142 &size, &offset, &ecx, &edx);
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004143 if (xfeature_nr == XFEATURE_PKRU)
Paolo Bonzini38cfd5e2017-08-23 23:16:29 +02004144 memcpy(&vcpu->arch.pkru, src + offset,
4145 sizeof(vcpu->arch.pkru));
4146 else
4147 memcpy(dest, src + offset, size);
Wanpeng Liee4100d2015-07-09 15:44:52 +08004148 }
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004149
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02004150 valid -= xfeature_mask;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004151 }
4152}
4153
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004154static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
4155 struct kvm_xsave *guest_xsave)
4156{
Borislav Petkovd366bf72016-04-04 22:25:02 +02004157 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004158 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
4159 fill_xsave((u8 *) guest_xsave->region, vcpu);
Paolo Bonzini4344ee92013-10-02 16:06:16 +02004160 } else {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004161 memcpy(guest_xsave->region,
Marc Orrb666a4b2018-11-06 14:53:56 -08004162 &vcpu->arch.guest_fpu->state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02004163 sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004164 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
Dave Hansend91cab72015-09-02 16:31:26 -07004165 XFEATURE_MASK_FPSSE;
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004166 }
4167}
4168
Wanpeng Lia5758132017-05-11 02:58:55 -07004169#define XSAVE_MXCSR_OFFSET 24
4170
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004171static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
4172 struct kvm_xsave *guest_xsave)
4173{
4174 u64 xstate_bv =
4175 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
Wanpeng Lia5758132017-05-11 02:58:55 -07004176 u32 mxcsr = *(u32 *)&guest_xsave->region[XSAVE_MXCSR_OFFSET / sizeof(u32)];
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004177
Borislav Petkovd366bf72016-04-04 22:25:02 +02004178 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004179 /*
4180 * Here we allow setting states that are not present in
4181 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
4182 * with old userspace.
4183 */
Sean Christophersoncfc48182020-03-02 15:56:23 -08004184 if (xstate_bv & ~supported_xcr0 || mxcsr & ~mxcsr_feature_mask)
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004185 return -EINVAL;
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01004186 load_xsave(vcpu, (u8 *)guest_xsave->region);
Paolo Bonzinid7876f12013-10-02 16:06:15 +02004187 } else {
Wanpeng Lia5758132017-05-11 02:58:55 -07004188 if (xstate_bv & ~XFEATURE_MASK_FPSSE ||
4189 mxcsr & ~mxcsr_feature_mask)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004190 return -EINVAL;
Marc Orrb666a4b2018-11-06 14:53:56 -08004191 memcpy(&vcpu->arch.guest_fpu->state.fxsave,
Ingo Molnarc47ada32015-04-30 17:15:32 +02004192 guest_xsave->region, sizeof(struct fxregs_state));
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004193 }
4194 return 0;
4195}
4196
4197static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
4198 struct kvm_xcrs *guest_xcrs)
4199{
Borislav Petkovd366bf72016-04-04 22:25:02 +02004200 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004201 guest_xcrs->nr_xcrs = 0;
4202 return;
4203 }
4204
4205 guest_xcrs->nr_xcrs = 1;
4206 guest_xcrs->flags = 0;
4207 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
4208 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
4209}
4210
4211static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
4212 struct kvm_xcrs *guest_xcrs)
4213{
4214 int i, r = 0;
4215
Borislav Petkovd366bf72016-04-04 22:25:02 +02004216 if (!boot_cpu_has(X86_FEATURE_XSAVE))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004217 return -EINVAL;
4218
4219 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
4220 return -EINVAL;
4221
4222 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
4223 /* Only support XCR0 currently */
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004224 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004225 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
Paolo Bonzinic67a04c2013-10-17 16:50:47 +02004226 guest_xcrs->xcrs[i].value);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004227 break;
4228 }
4229 if (r)
4230 r = -EINVAL;
4231 return r;
4232}
4233
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004234/*
4235 * kvm_set_guest_paused() indicates to the guest kernel that it has been
4236 * stopped by the hypervisor. This function will be called from the host only.
4237 * EINVAL is returned when the host attempts to set the flag for a guest that
4238 * does not support pv clocks.
4239 */
4240static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
4241{
Andy Honig0b794592013-02-20 14:48:10 -08004242 if (!vcpu->arch.pv_time_enabled)
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004243 return -EINVAL;
Marcelo Tosatti51d59c62012-08-03 15:57:49 -03004244 vcpu->arch.pvclock_set_guest_stopped_request = true;
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004245 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
4246 return 0;
4247}
4248
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004249static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
4250 struct kvm_enable_cap *cap)
4251{
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004252 int r;
4253 uint16_t vmcs_version;
4254 void __user *user_ptr;
4255
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004256 if (cap->flags)
4257 return -EINVAL;
4258
4259 switch (cap->cap) {
Roman Kaganefc479e2017-06-22 16:51:01 +03004260 case KVM_CAP_HYPERV_SYNIC2:
4261 if (cap->args[0])
4262 return -EINVAL;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06004263 /* fall through */
4264
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004265 case KVM_CAP_HYPERV_SYNIC:
Wanpeng Li546d87e2017-01-03 18:56:19 -08004266 if (!irqchip_in_kernel(vcpu->kvm))
4267 return -EINVAL;
Roman Kaganefc479e2017-06-22 16:51:01 +03004268 return kvm_hv_activate_synic(vcpu, cap->cap ==
4269 KVM_CAP_HYPERV_SYNIC2);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004270 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
Paolo Bonzini33b22172020-04-17 10:24:18 -04004271 if (!kvm_x86_ops.nested_ops->enable_evmcs)
Sean Christopherson51589172018-12-03 13:53:10 -08004272 return -ENOTTY;
Paolo Bonzini33b22172020-04-17 10:24:18 -04004273 r = kvm_x86_ops.nested_ops->enable_evmcs(vcpu, &vmcs_version);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004274 if (!r) {
4275 user_ptr = (void __user *)(uintptr_t)cap->args[0];
4276 if (copy_to_user(user_ptr, &vmcs_version,
4277 sizeof(vmcs_version)))
4278 r = -EFAULT;
4279 }
4280 return r;
Tianyu Lan344c6c82019-08-22 22:30:20 +08004281 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004282 if (!kvm_x86_ops.enable_direct_tlbflush)
Tianyu Lan344c6c82019-08-22 22:30:20 +08004283 return -ENOTTY;
4284
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004285 return kvm_x86_ops.enable_direct_tlbflush(vcpu);
Vitaly Kuznetsov57b119d2018-10-16 18:50:01 +02004286
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004287 default:
4288 return -EINVAL;
4289 }
4290}
4291
Carsten Otte313a3dc2007-10-11 19:16:52 +02004292long kvm_arch_vcpu_ioctl(struct file *filp,
4293 unsigned int ioctl, unsigned long arg)
4294{
4295 struct kvm_vcpu *vcpu = filp->private_data;
4296 void __user *argp = (void __user *)arg;
4297 int r;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004298 union {
4299 struct kvm_lapic_state *lapic;
4300 struct kvm_xsave *xsave;
4301 struct kvm_xcrs *xcrs;
4302 void *buffer;
4303 } u;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004304
Christoffer Dall9b0624712017-12-04 21:35:36 +01004305 vcpu_load(vcpu);
4306
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004307 u.buffer = NULL;
Carsten Otte313a3dc2007-10-11 19:16:52 +02004308 switch (ioctl) {
4309 case KVM_GET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004310 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004311 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004312 goto out;
Ben Gardon254272c2019-02-11 11:02:50 -08004313 u.lapic = kzalloc(sizeof(struct kvm_lapic_state),
4314 GFP_KERNEL_ACCOUNT);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004315
Dave Hansenb772ff32008-08-11 10:01:47 -07004316 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004317 if (!u.lapic)
Dave Hansenb772ff32008-08-11 10:01:47 -07004318 goto out;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004319 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004320 if (r)
4321 goto out;
4322 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004323 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02004324 goto out;
4325 r = 0;
4326 break;
4327 }
4328 case KVM_SET_LAPIC: {
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004329 r = -EINVAL;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01004330 if (!lapic_in_kernel(vcpu))
Marcelo Tosatti2204ae32009-10-29 13:44:16 -02004331 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02004332 u.lapic = memdup_user(argp, sizeof(*u.lapic));
Christoffer Dall9b0624712017-12-04 21:35:36 +01004333 if (IS_ERR(u.lapic)) {
4334 r = PTR_ERR(u.lapic);
4335 goto out_nofree;
4336 }
Sasha Levinff5c2c02011-12-04 19:36:29 +02004337
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004338 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004339 break;
4340 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004341 case KVM_INTERRUPT: {
4342 struct kvm_interrupt irq;
4343
4344 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004345 if (copy_from_user(&irq, argp, sizeof(irq)))
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004346 goto out;
4347 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08004348 break;
4349 }
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004350 case KVM_NMI: {
4351 r = kvm_vcpu_ioctl_nmi(vcpu);
Jan Kiszkac4abb7c2008-09-26 09:30:55 +02004352 break;
4353 }
Paolo Bonzinif0778252015-04-01 15:06:40 +02004354 case KVM_SMI: {
4355 r = kvm_vcpu_ioctl_smi(vcpu);
4356 break;
4357 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02004358 case KVM_SET_CPUID: {
4359 struct kvm_cpuid __user *cpuid_arg = argp;
4360 struct kvm_cpuid cpuid;
4361
4362 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004363 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Carsten Otte313a3dc2007-10-11 19:16:52 +02004364 goto out;
4365 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004366 break;
4367 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02004368 case KVM_SET_CPUID2: {
4369 struct kvm_cpuid2 __user *cpuid_arg = argp;
4370 struct kvm_cpuid2 cpuid;
4371
4372 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004373 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02004374 goto out;
4375 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00004376 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02004377 break;
4378 }
4379 case KVM_GET_CPUID2: {
4380 struct kvm_cpuid2 __user *cpuid_arg = argp;
4381 struct kvm_cpuid2 cpuid;
4382
4383 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004384 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02004385 goto out;
4386 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
Amit Shah19355472009-01-14 16:56:00 +00004387 cpuid_arg->entries);
Dan Kenigsberg07716712007-11-21 17:10:04 +02004388 if (r)
4389 goto out;
4390 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004391 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02004392 goto out;
4393 r = 0;
4394 break;
4395 }
Tom Lendacky801e4592018-02-21 13:39:51 -06004396 case KVM_GET_MSRS: {
4397 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini609e36d2015-04-08 15:30:38 +02004398 r = msr_io(vcpu, argp, do_get_msr, 1);
Tom Lendacky801e4592018-02-21 13:39:51 -06004399 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004400 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004401 }
4402 case KVM_SET_MSRS: {
4403 int idx = srcu_read_lock(&vcpu->kvm->srcu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004404 r = msr_io(vcpu, argp, do_set_msr, 0);
Tom Lendacky801e4592018-02-21 13:39:51 -06004405 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004406 break;
Tom Lendacky801e4592018-02-21 13:39:51 -06004407 }
Avi Kivityb209749f2007-10-22 16:50:39 +02004408 case KVM_TPR_ACCESS_REPORTING: {
4409 struct kvm_tpr_access_ctl tac;
4410
4411 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004412 if (copy_from_user(&tac, argp, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02004413 goto out;
4414 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
4415 if (r)
4416 goto out;
4417 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004418 if (copy_to_user(argp, &tac, sizeof(tac)))
Avi Kivityb209749f2007-10-22 16:50:39 +02004419 goto out;
4420 r = 0;
4421 break;
4422 };
Avi Kivityb93463a2007-10-25 16:52:32 +02004423 case KVM_SET_VAPIC_ADDR: {
4424 struct kvm_vapic_addr va;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01004425 int idx;
Avi Kivityb93463a2007-10-25 16:52:32 +02004426
4427 r = -EINVAL;
Paolo Bonzini35754c92015-07-29 12:05:37 +02004428 if (!lapic_in_kernel(vcpu))
Avi Kivityb93463a2007-10-25 16:52:32 +02004429 goto out;
4430 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004431 if (copy_from_user(&va, argp, sizeof(va)))
Avi Kivityb93463a2007-10-25 16:52:32 +02004432 goto out;
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01004433 idx = srcu_read_lock(&vcpu->kvm->srcu);
Andy Honigfda4e2e2013-11-20 10:23:22 -08004434 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
Paolo Bonzini7301d6a2016-11-17 15:55:46 +01004435 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivityb93463a2007-10-25 16:52:32 +02004436 break;
4437 }
Huang Ying890ca9a2009-05-11 16:48:15 +08004438 case KVM_X86_SETUP_MCE: {
4439 u64 mcg_cap;
4440
4441 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004442 if (copy_from_user(&mcg_cap, argp, sizeof(mcg_cap)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004443 goto out;
4444 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
4445 break;
4446 }
4447 case KVM_X86_SET_MCE: {
4448 struct kvm_x86_mce mce;
4449
4450 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004451 if (copy_from_user(&mce, argp, sizeof(mce)))
Huang Ying890ca9a2009-05-11 16:48:15 +08004452 goto out;
4453 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
4454 break;
4455 }
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004456 case KVM_GET_VCPU_EVENTS: {
4457 struct kvm_vcpu_events events;
4458
4459 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
4460
4461 r = -EFAULT;
4462 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
4463 break;
4464 r = 0;
4465 break;
4466 }
4467 case KVM_SET_VCPU_EVENTS: {
4468 struct kvm_vcpu_events events;
4469
4470 r = -EFAULT;
4471 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
4472 break;
4473
4474 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
4475 break;
4476 }
Jan Kiszkaa1efbe72010-02-15 10:45:43 +01004477 case KVM_GET_DEBUGREGS: {
4478 struct kvm_debugregs dbgregs;
4479
4480 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
4481
4482 r = -EFAULT;
4483 if (copy_to_user(argp, &dbgregs,
4484 sizeof(struct kvm_debugregs)))
4485 break;
4486 r = 0;
4487 break;
4488 }
4489 case KVM_SET_DEBUGREGS: {
4490 struct kvm_debugregs dbgregs;
4491
4492 r = -EFAULT;
4493 if (copy_from_user(&dbgregs, argp,
4494 sizeof(struct kvm_debugregs)))
4495 break;
4496
4497 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
4498 break;
4499 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004500 case KVM_GET_XSAVE: {
Ben Gardon254272c2019-02-11 11:02:50 -08004501 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004502 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004503 if (!u.xsave)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004504 break;
4505
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004506 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004507
4508 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004509 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004510 break;
4511 r = 0;
4512 break;
4513 }
4514 case KVM_SET_XSAVE: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02004515 u.xsave = memdup_user(argp, sizeof(*u.xsave));
Christoffer Dall9b0624712017-12-04 21:35:36 +01004516 if (IS_ERR(u.xsave)) {
4517 r = PTR_ERR(u.xsave);
4518 goto out_nofree;
4519 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004520
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004521 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004522 break;
4523 }
4524 case KVM_GET_XCRS: {
Ben Gardon254272c2019-02-11 11:02:50 -08004525 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL_ACCOUNT);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004526 r = -ENOMEM;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004527 if (!u.xcrs)
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004528 break;
4529
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004530 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004531
4532 r = -EFAULT;
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004533 if (copy_to_user(argp, u.xcrs,
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004534 sizeof(struct kvm_xcrs)))
4535 break;
4536 r = 0;
4537 break;
4538 }
4539 case KVM_SET_XCRS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02004540 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
Christoffer Dall9b0624712017-12-04 21:35:36 +01004541 if (IS_ERR(u.xcrs)) {
4542 r = PTR_ERR(u.xcrs);
4543 goto out_nofree;
4544 }
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004545
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004546 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
Sheng Yang2d5b5a62010-06-13 17:29:39 +08004547 break;
4548 }
Joerg Roedel92a1f122011-03-25 09:44:51 +01004549 case KVM_SET_TSC_KHZ: {
4550 u32 user_tsc_khz;
4551
4552 r = -EINVAL;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004553 user_tsc_khz = (u32)arg;
4554
4555 if (user_tsc_khz >= kvm_max_guest_tsc_khz)
4556 goto out;
4557
Zachary Amsdencc578282012-02-03 15:43:50 -02004558 if (user_tsc_khz == 0)
4559 user_tsc_khz = tsc_khz;
4560
Haozhong Zhang381d5852015-10-20 15:39:04 +08004561 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
4562 r = 0;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004563
Joerg Roedel92a1f122011-03-25 09:44:51 +01004564 goto out;
4565 }
4566 case KVM_GET_TSC_KHZ: {
Zachary Amsdencc578282012-02-03 15:43:50 -02004567 r = vcpu->arch.virtual_tsc_khz;
Joerg Roedel92a1f122011-03-25 09:44:51 +01004568 goto out;
4569 }
Eric B Munson1c0b28c2012-03-10 14:37:27 -05004570 case KVM_KVMCLOCK_CTRL: {
4571 r = kvm_set_guest_paused(vcpu);
4572 goto out;
4573 }
Andrey Smetanin5c9194122015-11-10 15:36:34 +03004574 case KVM_ENABLE_CAP: {
4575 struct kvm_enable_cap cap;
4576
4577 r = -EFAULT;
4578 if (copy_from_user(&cap, argp, sizeof(cap)))
4579 goto out;
4580 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
4581 break;
4582 }
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004583 case KVM_GET_NESTED_STATE: {
4584 struct kvm_nested_state __user *user_kvm_nested_state = argp;
4585 u32 user_data_size;
4586
4587 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04004588 if (!kvm_x86_ops.nested_ops->get_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004589 break;
4590
4591 BUILD_BUG_ON(sizeof(user_data_size) != sizeof(user_kvm_nested_state->size));
Liran Alon26b471c2018-09-16 14:28:20 +03004592 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004593 if (get_user(user_data_size, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03004594 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004595
Paolo Bonzini33b22172020-04-17 10:24:18 -04004596 r = kvm_x86_ops.nested_ops->get_state(vcpu, user_kvm_nested_state,
4597 user_data_size);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004598 if (r < 0)
Liran Alon26b471c2018-09-16 14:28:20 +03004599 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004600
4601 if (r > user_data_size) {
4602 if (put_user(r, &user_kvm_nested_state->size))
Liran Alon26b471c2018-09-16 14:28:20 +03004603 r = -EFAULT;
4604 else
4605 r = -E2BIG;
4606 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004607 }
Liran Alon26b471c2018-09-16 14:28:20 +03004608
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004609 r = 0;
4610 break;
4611 }
4612 case KVM_SET_NESTED_STATE: {
4613 struct kvm_nested_state __user *user_kvm_nested_state = argp;
4614 struct kvm_nested_state kvm_state;
Sean Christophersonad5996d2019-11-22 08:58:18 -08004615 int idx;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004616
4617 r = -EINVAL;
Paolo Bonzini33b22172020-04-17 10:24:18 -04004618 if (!kvm_x86_ops.nested_ops->set_state)
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004619 break;
4620
Liran Alon26b471c2018-09-16 14:28:20 +03004621 r = -EFAULT;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004622 if (copy_from_user(&kvm_state, user_kvm_nested_state, sizeof(kvm_state)))
Liran Alon26b471c2018-09-16 14:28:20 +03004623 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004624
Liran Alon26b471c2018-09-16 14:28:20 +03004625 r = -EINVAL;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004626 if (kvm_state.size < sizeof(kvm_state))
Liran Alon26b471c2018-09-16 14:28:20 +03004627 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004628
4629 if (kvm_state.flags &
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02004630 ~(KVM_STATE_NESTED_RUN_PENDING | KVM_STATE_NESTED_GUEST_MODE
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04004631 | KVM_STATE_NESTED_EVMCS | KVM_STATE_NESTED_MTF_PENDING
4632 | KVM_STATE_NESTED_GIF_SET))
Liran Alon26b471c2018-09-16 14:28:20 +03004633 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004634
4635 /* nested_run_pending implies guest_mode. */
Vitaly Kuznetsov8cab6502018-10-16 18:50:09 +02004636 if ((kvm_state.flags & KVM_STATE_NESTED_RUN_PENDING)
4637 && !(kvm_state.flags & KVM_STATE_NESTED_GUEST_MODE))
Liran Alon26b471c2018-09-16 14:28:20 +03004638 break;
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004639
Sean Christophersonad5996d2019-11-22 08:58:18 -08004640 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzini33b22172020-04-17 10:24:18 -04004641 r = kvm_x86_ops.nested_ops->set_state(vcpu, user_kvm_nested_state, &kvm_state);
Sean Christophersonad5996d2019-11-22 08:58:18 -08004642 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Jim Mattson8fcc4b52018-07-10 11:27:20 +02004643 break;
4644 }
Vitaly Kuznetsov2bc39972018-12-10 18:21:56 +01004645 case KVM_GET_SUPPORTED_HV_CPUID: {
4646 struct kvm_cpuid2 __user *cpuid_arg = argp;
4647 struct kvm_cpuid2 cpuid;
4648
4649 r = -EFAULT;
4650 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
4651 goto out;
4652
4653 r = kvm_vcpu_ioctl_get_hv_cpuid(vcpu, &cpuid,
4654 cpuid_arg->entries);
4655 if (r)
4656 goto out;
4657
4658 r = -EFAULT;
4659 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
4660 goto out;
4661 r = 0;
4662 break;
4663 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02004664 default:
4665 r = -EINVAL;
4666 }
4667out:
Avi Kivityd1ac91d2010-06-20 15:54:43 +03004668 kfree(u.buffer);
Christoffer Dall9b0624712017-12-04 21:35:36 +01004669out_nofree:
4670 vcpu_put(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +02004671 return r;
4672}
4673
Souptick Joarder1499fa82018-04-19 00:49:58 +05304674vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
Carsten Otte5b1c1492012-01-04 10:25:23 +01004675{
4676 return VM_FAULT_SIGBUS;
4677}
4678
Carsten Otte1fe779f2007-10-29 16:08:35 +01004679static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
4680{
4681 int ret;
4682
4683 if (addr > (unsigned int)(-3 * PAGE_SIZE))
Guo Chao951179c2012-11-02 18:33:22 +08004684 return -EINVAL;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004685 ret = kvm_x86_ops.set_tss_addr(kvm, addr);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004686 return ret;
4687}
4688
Sheng Yangb927a3c2009-07-21 10:42:48 +08004689static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
4690 u64 ident_addr)
4691{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004692 return kvm_x86_ops.set_identity_map_addr(kvm, ident_addr);
Sheng Yangb927a3c2009-07-21 10:42:48 +08004693}
4694
Carsten Otte1fe779f2007-10-29 16:08:35 +01004695static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
Ben Gardonbc8a3d82019-04-08 11:07:30 -07004696 unsigned long kvm_nr_mmu_pages)
Carsten Otte1fe779f2007-10-29 16:08:35 +01004697{
4698 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
4699 return -EINVAL;
4700
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004701 mutex_lock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004702
4703 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08004704 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004705
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004706 mutex_unlock(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004707 return 0;
4708}
4709
Ben Gardonbc8a3d82019-04-08 11:07:30 -07004710static unsigned long kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
Carsten Otte1fe779f2007-10-29 16:08:35 +01004711{
Dave Hansen39de71e2010-08-19 18:11:14 -07004712 return kvm->arch.n_max_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004713}
4714
Carsten Otte1fe779f2007-10-29 16:08:35 +01004715static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
4716{
David Hildenbrand90bca052017-04-07 10:50:23 +02004717 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004718 int r;
4719
4720 r = 0;
4721 switch (chip->chip_id) {
4722 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02004723 memcpy(&chip->chip.pic, &pic->pics[0],
Carsten Otte1fe779f2007-10-29 16:08:35 +01004724 sizeof(struct kvm_pic_state));
4725 break;
4726 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02004727 memcpy(&chip->chip.pic, &pic->pics[1],
Carsten Otte1fe779f2007-10-29 16:08:35 +01004728 sizeof(struct kvm_pic_state));
4729 break;
4730 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02004731 kvm_get_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004732 break;
4733 default:
4734 r = -EINVAL;
4735 break;
4736 }
4737 return r;
4738}
4739
4740static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
4741{
David Hildenbrand90bca052017-04-07 10:50:23 +02004742 struct kvm_pic *pic = kvm->arch.vpic;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004743 int r;
4744
4745 r = 0;
4746 switch (chip->chip_id) {
4747 case KVM_IRQCHIP_PIC_MASTER:
David Hildenbrand90bca052017-04-07 10:50:23 +02004748 spin_lock(&pic->lock);
4749 memcpy(&pic->pics[0], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01004750 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02004751 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004752 break;
4753 case KVM_IRQCHIP_PIC_SLAVE:
David Hildenbrand90bca052017-04-07 10:50:23 +02004754 spin_lock(&pic->lock);
4755 memcpy(&pic->pics[1], &chip->chip.pic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01004756 sizeof(struct kvm_pic_state));
David Hildenbrand90bca052017-04-07 10:50:23 +02004757 spin_unlock(&pic->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004758 break;
4759 case KVM_IRQCHIP_IOAPIC:
David Hildenbrand33392b42017-04-07 10:50:27 +02004760 kvm_set_ioapic(kvm, &chip->chip.ioapic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004761 break;
4762 default:
4763 r = -EINVAL;
4764 break;
4765 }
David Hildenbrand90bca052017-04-07 10:50:23 +02004766 kvm_pic_update_irq(pic);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004767 return r;
4768}
4769
Sheng Yange0f63cb2008-03-04 00:50:59 +08004770static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
4771{
Radim Krčmář34f39412016-03-02 22:56:50 +01004772 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
4773
4774 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
4775
4776 mutex_lock(&kps->lock);
4777 memcpy(ps, &kps->channels, sizeof(*ps));
4778 mutex_unlock(&kps->lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05304779 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08004780}
4781
4782static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
4783{
Andrew Honig01856042015-11-18 14:50:23 -08004784 int i;
Radim Krčmář09edea72016-03-02 22:56:43 +01004785 struct kvm_pit *pit = kvm->arch.vpit;
4786
4787 mutex_lock(&pit->pit_state.lock);
Radim Krčmář34f39412016-03-02 22:56:50 +01004788 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
Andrew Honig01856042015-11-18 14:50:23 -08004789 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01004790 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
4791 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05304792 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04004793}
4794
4795static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
4796{
Beth Kone9f42752009-07-07 11:50:38 -04004797 mutex_lock(&kvm->arch.vpit->pit_state.lock);
4798 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
4799 sizeof(ps->channels));
4800 ps->flags = kvm->arch.vpit->pit_state.flags;
4801 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04004802 memset(&ps->reserved, 0, sizeof(ps->reserved));
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05304803 return 0;
Beth Kone9f42752009-07-07 11:50:38 -04004804}
4805
4806static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
4807{
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05304808 int start = 0;
Andrew Honig01856042015-11-18 14:50:23 -08004809 int i;
Beth Kone9f42752009-07-07 11:50:38 -04004810 u32 prev_legacy, cur_legacy;
Radim Krčmář09edea72016-03-02 22:56:43 +01004811 struct kvm_pit *pit = kvm->arch.vpit;
4812
4813 mutex_lock(&pit->pit_state.lock);
4814 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
Beth Kone9f42752009-07-07 11:50:38 -04004815 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
4816 if (!prev_legacy && cur_legacy)
4817 start = 1;
Radim Krčmář09edea72016-03-02 22:56:43 +01004818 memcpy(&pit->pit_state.channels, &ps->channels,
4819 sizeof(pit->pit_state.channels));
4820 pit->pit_state.flags = ps->flags;
Andrew Honig01856042015-11-18 14:50:23 -08004821 for (i = 0; i < 3; i++)
Radim Krčmář09edea72016-03-02 22:56:43 +01004822 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
Paolo Bonzinie5e57e72016-01-07 13:50:38 +01004823 start && i == 0);
Radim Krčmář09edea72016-03-02 22:56:43 +01004824 mutex_unlock(&pit->pit_state.lock);
Saurabh Sengar2da29bc2015-10-30 12:56:11 +05304825 return 0;
Sheng Yange0f63cb2008-03-04 00:50:59 +08004826}
4827
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004828static int kvm_vm_ioctl_reinject(struct kvm *kvm,
4829 struct kvm_reinject_control *control)
4830{
Radim Krčmář71474e22016-03-02 22:56:45 +01004831 struct kvm_pit *pit = kvm->arch.vpit;
4832
Radim Krčmář71474e22016-03-02 22:56:45 +01004833 /* pit->pit_state.lock was overloaded to prevent userspace from getting
4834 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
4835 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
4836 */
4837 mutex_lock(&pit->pit_state.lock);
4838 kvm_pit_set_reinject(pit, control->pit_reinject);
4839 mutex_unlock(&pit->pit_state.lock);
Radim Krčmářb39c90b2016-03-02 22:56:44 +01004840
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02004841 return 0;
4842}
4843
Sean Christopherson0dff0842020-02-18 13:07:29 -08004844void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot)
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08004845{
Kai Huang88178fd2015-01-28 10:54:27 +08004846 /*
4847 * Flush potentially hardware-cached dirty pages to dirty_bitmap.
4848 */
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004849 if (kvm_x86_ops.flush_log_dirty)
4850 kvm_x86_ops.flush_log_dirty(kvm);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08004851}
4852
Yang Zhangaa2fbe62013-04-11 19:21:40 +08004853int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
4854 bool line_status)
Christoffer Dall23d43cf2012-07-24 08:51:20 -04004855{
4856 if (!irqchip_in_kernel(kvm))
4857 return -ENXIO;
4858
4859 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +08004860 irq_event->irq, irq_event->level,
4861 line_status);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04004862 return 0;
4863}
4864
Paolo Bonzinie5d83c72017-02-16 10:40:56 +01004865int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
4866 struct kvm_enable_cap *cap)
Nadav Amit90de4a12015-04-13 01:53:41 +03004867{
4868 int r;
4869
4870 if (cap->flags)
4871 return -EINVAL;
4872
4873 switch (cap->cap) {
4874 case KVM_CAP_DISABLE_QUIRKS:
4875 kvm->arch.disabled_quirks = cap->args[0];
4876 r = 0;
4877 break;
Steve Rutherford49df6392015-07-29 23:21:40 -07004878 case KVM_CAP_SPLIT_IRQCHIP: {
4879 mutex_lock(&kvm->lock);
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07004880 r = -EINVAL;
4881 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
4882 goto split_irqchip_unlock;
Steve Rutherford49df6392015-07-29 23:21:40 -07004883 r = -EEXIST;
4884 if (irqchip_in_kernel(kvm))
4885 goto split_irqchip_unlock;
Paolo Bonzini557abc42016-06-13 14:50:04 +02004886 if (kvm->created_vcpus)
Steve Rutherford49df6392015-07-29 23:21:40 -07004887 goto split_irqchip_unlock;
4888 r = kvm_setup_empty_irq_routing(kvm);
David Hildenbrand5c0aea02017-04-28 17:06:20 +02004889 if (r)
Steve Rutherford49df6392015-07-29 23:21:40 -07004890 goto split_irqchip_unlock;
4891 /* Pairs with irqchip_in_kernel. */
4892 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01004893 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07004894 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
Steve Rutherford49df6392015-07-29 23:21:40 -07004895 r = 0;
4896split_irqchip_unlock:
4897 mutex_unlock(&kvm->lock);
4898 break;
4899 }
Radim Krčmář371313132016-07-12 22:09:27 +02004900 case KVM_CAP_X2APIC_API:
4901 r = -EINVAL;
4902 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
4903 break;
4904
4905 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
4906 kvm->arch.x2apic_format = true;
Radim Krčmářc5192652016-07-12 22:09:28 +02004907 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
4908 kvm->arch.x2apic_broadcast_quirk_disabled = true;
Radim Krčmář371313132016-07-12 22:09:27 +02004909
4910 r = 0;
4911 break;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004912 case KVM_CAP_X86_DISABLE_EXITS:
4913 r = -EINVAL;
4914 if (cap->args[0] & ~KVM_X86_DISABLE_VALID_EXITS)
4915 break;
4916
4917 if ((cap->args[0] & KVM_X86_DISABLE_EXITS_MWAIT) &&
4918 kvm_can_mwait_in_guest())
4919 kvm->arch.mwait_in_guest = true;
Michael S. Tsirkin766d3572018-06-08 02:19:53 +03004920 if (cap->args[0] & KVM_X86_DISABLE_EXITS_HLT)
Wanpeng Licaa057a2018-03-12 04:53:03 -07004921 kvm->arch.hlt_in_guest = true;
Wanpeng Lib31c1142018-03-12 04:53:04 -07004922 if (cap->args[0] & KVM_X86_DISABLE_EXITS_PAUSE)
4923 kvm->arch.pause_in_guest = true;
Wanpeng Lib5170062019-05-21 14:06:53 +08004924 if (cap->args[0] & KVM_X86_DISABLE_EXITS_CSTATE)
4925 kvm->arch.cstate_in_guest = true;
Wanpeng Li4d5422c2018-03-12 04:53:02 -07004926 r = 0;
4927 break;
Drew Schmitt6fbbde92018-08-20 10:32:15 -07004928 case KVM_CAP_MSR_PLATFORM_INFO:
4929 kvm->arch.guest_can_read_msr_platform_info = cap->args[0];
4930 r = 0;
4931 break;
Jim Mattsonc4f55192018-10-16 14:29:24 -07004932 case KVM_CAP_EXCEPTION_PAYLOAD:
4933 kvm->arch.exception_payload_enabled = cap->args[0];
4934 r = 0;
4935 break;
Nadav Amit90de4a12015-04-13 01:53:41 +03004936 default:
4937 r = -EINVAL;
4938 break;
4939 }
4940 return r;
4941}
4942
Carsten Otte1fe779f2007-10-29 16:08:35 +01004943long kvm_arch_vm_ioctl(struct file *filp,
4944 unsigned int ioctl, unsigned long arg)
4945{
4946 struct kvm *kvm = filp->private_data;
4947 void __user *argp = (void __user *)arg;
Avi Kivity367e1312009-08-26 14:57:07 +03004948 int r = -ENOTTY;
Dave Hansenf0d66272008-08-11 10:01:45 -07004949 /*
4950 * This union makes it completely explicit to gcc-3.x
4951 * that these two variables' stack usage should be
4952 * combined, not added together.
4953 */
4954 union {
4955 struct kvm_pit_state ps;
Beth Kone9f42752009-07-07 11:50:38 -04004956 struct kvm_pit_state2 ps2;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02004957 struct kvm_pit_config pit_config;
Dave Hansenf0d66272008-08-11 10:01:45 -07004958 } u;
Carsten Otte1fe779f2007-10-29 16:08:35 +01004959
4960 switch (ioctl) {
4961 case KVM_SET_TSS_ADDR:
4962 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004963 break;
Sheng Yangb927a3c2009-07-21 10:42:48 +08004964 case KVM_SET_IDENTITY_MAP_ADDR: {
4965 u64 ident_addr;
4966
David Hildenbrand1af1ac92017-08-24 20:51:36 +02004967 mutex_lock(&kvm->lock);
4968 r = -EINVAL;
4969 if (kvm->created_vcpus)
4970 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08004971 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00004972 if (copy_from_user(&ident_addr, argp, sizeof(ident_addr)))
David Hildenbrand1af1ac92017-08-24 20:51:36 +02004973 goto set_identity_unlock;
Sheng Yangb927a3c2009-07-21 10:42:48 +08004974 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
David Hildenbrand1af1ac92017-08-24 20:51:36 +02004975set_identity_unlock:
4976 mutex_unlock(&kvm->lock);
Sheng Yangb927a3c2009-07-21 10:42:48 +08004977 break;
4978 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01004979 case KVM_SET_NR_MMU_PAGES:
4980 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
Carsten Otte1fe779f2007-10-29 16:08:35 +01004981 break;
4982 case KVM_GET_NR_MMU_PAGES:
4983 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
4984 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004985 case KVM_CREATE_IRQCHIP: {
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004986 mutex_lock(&kvm->lock);
Radim Krčmář09941362016-12-16 16:10:03 +01004987
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004988 r = -EEXIST;
Radim Krčmář35e6eaa2016-12-16 16:10:01 +01004989 if (irqchip_in_kernel(kvm))
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004990 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01004991
Avi Kivity3e515702012-03-05 14:23:29 +02004992 r = -EINVAL;
Paolo Bonzini557abc42016-06-13 14:50:04 +02004993 if (kvm->created_vcpus)
Avi Kivity3e515702012-03-05 14:23:29 +02004994 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01004995
4996 r = kvm_pic_init(kvm);
4997 if (r)
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02004998 goto create_irqchip_unlock;
Radim Krčmář09941362016-12-16 16:10:03 +01004999
5000 r = kvm_ioapic_init(kvm);
5001 if (r) {
Radim Krčmář09941362016-12-16 16:10:03 +01005002 kvm_pic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01005003 goto create_irqchip_unlock;
5004 }
5005
Avi Kivity399ec802008-11-19 13:58:46 +02005006 r = kvm_setup_default_irq_routing(kvm);
5007 if (r) {
Wei Yongjun72bb2fc2010-02-09 10:33:03 +08005008 kvm_ioapic_destroy(kvm);
Radim Krčmář09941362016-12-16 16:10:03 +01005009 kvm_pic_destroy(kvm);
Paolo Bonzini71ba9942015-07-29 12:31:15 +02005010 goto create_irqchip_unlock;
Avi Kivity399ec802008-11-19 13:58:46 +02005011 }
Radim Krčmář49776fa2016-12-16 16:10:02 +01005012 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
Paolo Bonzini71ba9942015-07-29 12:31:15 +02005013 smp_wmb();
Radim Krčmář49776fa2016-12-16 16:10:02 +01005014 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005015 create_irqchip_unlock:
5016 mutex_unlock(&kvm->lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005017 break;
Marcelo Tosatti3ddea122009-10-29 13:44:15 -02005018 }
Sheng Yang78376992008-01-28 05:10:22 +08005019 case KVM_CREATE_PIT:
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005020 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
5021 goto create_pit;
5022 case KVM_CREATE_PIT2:
5023 r = -EFAULT;
5024 if (copy_from_user(&u.pit_config, argp,
5025 sizeof(struct kvm_pit_config)))
5026 goto out;
5027 create_pit:
Paolo Bonzini250715a2016-06-01 14:09:24 +02005028 mutex_lock(&kvm->lock);
Avi Kivity269e05e2009-01-05 15:21:42 +02005029 r = -EEXIST;
5030 if (kvm->arch.vpit)
5031 goto create_pit_unlock;
Sheng Yang78376992008-01-28 05:10:22 +08005032 r = -ENOMEM;
Jan Kiszkac5ff41c2009-05-14 22:42:53 +02005033 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
Sheng Yang78376992008-01-28 05:10:22 +08005034 if (kvm->arch.vpit)
5035 r = 0;
Avi Kivity269e05e2009-01-05 15:21:42 +02005036 create_pit_unlock:
Paolo Bonzini250715a2016-06-01 14:09:24 +02005037 mutex_unlock(&kvm->lock);
Sheng Yang78376992008-01-28 05:10:22 +08005038 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005039 case KVM_GET_IRQCHIP: {
5040 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02005041 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005042
Sasha Levinff5c2c02011-12-04 19:36:29 +02005043 chip = memdup_user(argp, sizeof(*chip));
5044 if (IS_ERR(chip)) {
5045 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005046 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005047 }
5048
Carsten Otte1fe779f2007-10-29 16:08:35 +01005049 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01005050 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07005051 goto get_irqchip_out;
5052 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
5053 if (r)
5054 goto get_irqchip_out;
5055 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005056 if (copy_to_user(argp, chip, sizeof(*chip)))
Dave Hansenf0d66272008-08-11 10:01:45 -07005057 goto get_irqchip_out;
5058 r = 0;
5059 get_irqchip_out:
5060 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005061 break;
5062 }
5063 case KVM_SET_IRQCHIP: {
5064 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
Sasha Levinff5c2c02011-12-04 19:36:29 +02005065 struct kvm_irqchip *chip;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005066
Sasha Levinff5c2c02011-12-04 19:36:29 +02005067 chip = memdup_user(argp, sizeof(*chip));
5068 if (IS_ERR(chip)) {
5069 r = PTR_ERR(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005070 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02005071 }
5072
Carsten Otte1fe779f2007-10-29 16:08:35 +01005073 r = -ENXIO;
Radim Krčmář826da322016-12-16 16:10:06 +01005074 if (!irqchip_kernel(kvm))
Dave Hansenf0d66272008-08-11 10:01:45 -07005075 goto set_irqchip_out;
5076 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
Dave Hansenf0d66272008-08-11 10:01:45 -07005077 set_irqchip_out:
5078 kfree(chip);
Carsten Otte1fe779f2007-10-29 16:08:35 +01005079 break;
5080 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08005081 case KVM_GET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08005082 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07005083 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005084 goto out;
5085 r = -ENXIO;
5086 if (!kvm->arch.vpit)
5087 goto out;
Dave Hansenf0d66272008-08-11 10:01:45 -07005088 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005089 if (r)
5090 goto out;
5091 r = -EFAULT;
Dave Hansenf0d66272008-08-11 10:01:45 -07005092 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005093 goto out;
5094 r = 0;
5095 break;
5096 }
5097 case KVM_SET_PIT: {
Sheng Yange0f63cb2008-03-04 00:50:59 +08005098 r = -EFAULT;
Jordan Borgner0e96f312018-10-28 12:58:28 +00005099 if (copy_from_user(&u.ps, argp, sizeof(u.ps)))
Sheng Yange0f63cb2008-03-04 00:50:59 +08005100 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005101 mutex_lock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005102 r = -ENXIO;
5103 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005104 goto set_pit_out;
Dave Hansenf0d66272008-08-11 10:01:45 -07005105 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005106set_pit_out:
5107 mutex_unlock(&kvm->lock);
Sheng Yange0f63cb2008-03-04 00:50:59 +08005108 break;
5109 }
Beth Kone9f42752009-07-07 11:50:38 -04005110 case KVM_GET_PIT2: {
5111 r = -ENXIO;
5112 if (!kvm->arch.vpit)
5113 goto out;
5114 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
5115 if (r)
5116 goto out;
5117 r = -EFAULT;
5118 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
5119 goto out;
5120 r = 0;
5121 break;
5122 }
5123 case KVM_SET_PIT2: {
5124 r = -EFAULT;
5125 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
5126 goto out;
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005127 mutex_lock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04005128 r = -ENXIO;
5129 if (!kvm->arch.vpit)
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005130 goto set_pit2_out;
Beth Kone9f42752009-07-07 11:50:38 -04005131 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
Steve Rutherford7289fdb2020-04-16 12:11:52 -07005132set_pit2_out:
5133 mutex_unlock(&kvm->lock);
Beth Kone9f42752009-07-07 11:50:38 -04005134 break;
5135 }
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005136 case KVM_REINJECT_CONTROL: {
5137 struct kvm_reinject_control control;
5138 r = -EFAULT;
5139 if (copy_from_user(&control, argp, sizeof(control)))
5140 goto out;
Miaohe Lincad23e72019-12-07 17:25:22 +08005141 r = -ENXIO;
5142 if (!kvm->arch.vpit)
5143 goto out;
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005144 r = kvm_vm_ioctl_reinject(kvm, &control);
Marcelo Tosatti52d939a2008-12-30 15:55:06 -02005145 break;
5146 }
Paolo Bonzinid71ba782015-07-29 11:56:48 +02005147 case KVM_SET_BOOT_CPU_ID:
5148 r = 0;
5149 mutex_lock(&kvm->lock);
Paolo Bonzini557abc42016-06-13 14:50:04 +02005150 if (kvm->created_vcpus)
Paolo Bonzinid71ba782015-07-29 11:56:48 +02005151 r = -EBUSY;
5152 else
5153 kvm->arch.bsp_vcpu_id = arg;
5154 mutex_unlock(&kvm->lock);
5155 break;
Ed Swierkffde22a2009-10-15 15:21:43 -07005156 case KVM_XEN_HVM_CONFIG: {
Paolo Bonzini51776042017-10-26 15:45:47 +02005157 struct kvm_xen_hvm_config xhc;
Ed Swierkffde22a2009-10-15 15:21:43 -07005158 r = -EFAULT;
Paolo Bonzini51776042017-10-26 15:45:47 +02005159 if (copy_from_user(&xhc, argp, sizeof(xhc)))
Ed Swierkffde22a2009-10-15 15:21:43 -07005160 goto out;
5161 r = -EINVAL;
Paolo Bonzini51776042017-10-26 15:45:47 +02005162 if (xhc.flags)
Ed Swierkffde22a2009-10-15 15:21:43 -07005163 goto out;
Paolo Bonzini51776042017-10-26 15:45:47 +02005164 memcpy(&kvm->arch.xen_hvm_config, &xhc, sizeof(xhc));
Ed Swierkffde22a2009-10-15 15:21:43 -07005165 r = 0;
5166 break;
5167 }
Glauber Costaafbcf7a2009-10-16 15:28:36 -04005168 case KVM_SET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04005169 struct kvm_clock_data user_ns;
5170 u64 now_ns;
Glauber Costaafbcf7a2009-10-16 15:28:36 -04005171
5172 r = -EFAULT;
5173 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
5174 goto out;
5175
5176 r = -EINVAL;
5177 if (user_ns.flags)
5178 goto out;
5179
5180 r = 0;
Radim Krčmář0bc48be2017-05-16 22:50:00 +02005181 /*
5182 * TODO: userspace has to take care of races with VCPU_RUN, so
5183 * kvm_gen_update_masterclock() can be cut down to locked
5184 * pvclock_update_vm_gtod_copy().
5185 */
5186 kvm_gen_update_masterclock(kvm);
Marcelo Tosattie891a322017-04-17 12:51:37 -03005187 now_ns = get_kvmclock_ns(kvm);
Paolo Bonzini108b2492016-09-01 14:21:03 +02005188 kvm->arch.kvmclock_offset += user_ns.clock - now_ns;
Radim Krčmář0bc48be2017-05-16 22:50:00 +02005189 kvm_make_all_cpus_request(kvm, KVM_REQ_CLOCK_UPDATE);
Glauber Costaafbcf7a2009-10-16 15:28:36 -04005190 break;
5191 }
5192 case KVM_GET_CLOCK: {
Glauber Costaafbcf7a2009-10-16 15:28:36 -04005193 struct kvm_clock_data user_ns;
5194 u64 now_ns;
5195
Marcelo Tosattie891a322017-04-17 12:51:37 -03005196 now_ns = get_kvmclock_ns(kvm);
Paolo Bonzini108b2492016-09-01 14:21:03 +02005197 user_ns.clock = now_ns;
Paolo Bonzinie3fd9a92016-11-09 17:48:15 +01005198 user_ns.flags = kvm->arch.use_master_clock ? KVM_CLOCK_TSC_STABLE : 0;
Vasiliy Kulikov97e69aa2010-10-30 22:54:47 +04005199 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
Glauber Costaafbcf7a2009-10-16 15:28:36 -04005200
5201 r = -EFAULT;
5202 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
5203 goto out;
5204 r = 0;
5205 break;
5206 }
Brijesh Singh5acc5c02017-12-04 10:57:26 -06005207 case KVM_MEMORY_ENCRYPT_OP: {
5208 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005209 if (kvm_x86_ops.mem_enc_op)
5210 r = kvm_x86_ops.mem_enc_op(kvm, argp);
Brijesh Singh5acc5c02017-12-04 10:57:26 -06005211 break;
5212 }
Brijesh Singh69eaede2017-12-04 10:57:26 -06005213 case KVM_MEMORY_ENCRYPT_REG_REGION: {
5214 struct kvm_enc_region region;
5215
5216 r = -EFAULT;
5217 if (copy_from_user(&region, argp, sizeof(region)))
5218 goto out;
5219
5220 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005221 if (kvm_x86_ops.mem_enc_reg_region)
5222 r = kvm_x86_ops.mem_enc_reg_region(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06005223 break;
5224 }
5225 case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
5226 struct kvm_enc_region region;
5227
5228 r = -EFAULT;
5229 if (copy_from_user(&region, argp, sizeof(region)))
5230 goto out;
5231
5232 r = -ENOTTY;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005233 if (kvm_x86_ops.mem_enc_unreg_region)
5234 r = kvm_x86_ops.mem_enc_unreg_region(kvm, &region);
Brijesh Singh69eaede2017-12-04 10:57:26 -06005235 break;
5236 }
Roman Kaganfaeb7832018-02-01 16:48:32 +03005237 case KVM_HYPERV_EVENTFD: {
5238 struct kvm_hyperv_eventfd hvevfd;
5239
5240 r = -EFAULT;
5241 if (copy_from_user(&hvevfd, argp, sizeof(hvevfd)))
5242 goto out;
5243 r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd);
5244 break;
5245 }
Eric Hankland66bb8a02019-07-10 18:25:15 -07005246 case KVM_SET_PMU_EVENT_FILTER:
5247 r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp);
5248 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005249 default:
Paolo Bonziniad6260d2017-03-27 14:30:40 +02005250 r = -ENOTTY;
Carsten Otte1fe779f2007-10-29 16:08:35 +01005251 }
5252out:
5253 return r;
5254}
5255
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08005256static void kvm_init_msr_list(void)
Carsten Otte043405e2007-10-10 17:16:19 +02005257{
Paolo Bonzini24c29b72019-10-01 15:18:26 +02005258 struct x86_pmu_capability x86_pmu;
Carsten Otte043405e2007-10-10 17:16:19 +02005259 u32 dummy[2];
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005260 unsigned i;
Carsten Otte043405e2007-10-10 17:16:19 +02005261
Jim Mattsone2ada662019-08-21 11:20:04 -07005262 BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4,
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005263 "Please update the fixed PMCs in msrs_to_saved_all[]");
Paolo Bonzini24c29b72019-10-01 15:18:26 +02005264
5265 perf_get_x86_pmu_capability(&x86_pmu);
Jim Mattsone2ada662019-08-21 11:20:04 -07005266
Xiaoyao Li6cbee2b2019-11-13 09:15:21 +08005267 num_msrs_to_save = 0;
5268 num_emulated_msrs = 0;
5269 num_msr_based_features = 0;
5270
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005271 for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) {
5272 if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0)
Carsten Otte043405e2007-10-10 17:16:19 +02005273 continue;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005274
5275 /*
5276 * Even MSRs that are valid in the host may not be exposed
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01005277 * to the guests in some cases.
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005278 */
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005279 switch (msrs_to_save_all[i]) {
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005280 case MSR_IA32_BNDCFGS:
Liran Alon503234b2018-09-14 03:25:53 +03005281 if (!kvm_mpx_supported())
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005282 continue;
5283 break;
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01005284 case MSR_TSC_AUX:
Sean Christopherson13908512020-03-02 15:56:57 -08005285 if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP))
Paolo Bonzini9dbe6cf2015-11-12 14:49:17 +01005286 continue;
5287 break;
Maxim Levitskyf4cfcd22020-05-23 19:14:55 +03005288 case MSR_IA32_UMWAIT_CONTROL:
5289 if (!kvm_cpu_cap_has(X86_FEATURE_WAITPKG))
5290 continue;
5291 break;
Chao Pengbf8c55d2018-10-24 16:05:14 +08005292 case MSR_IA32_RTIT_CTL:
5293 case MSR_IA32_RTIT_STATUS:
Sean Christopherson7b874c22020-03-02 15:56:59 -08005294 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT))
Chao Pengbf8c55d2018-10-24 16:05:14 +08005295 continue;
5296 break;
5297 case MSR_IA32_RTIT_CR3_MATCH:
Sean Christopherson7b874c22020-03-02 15:56:59 -08005298 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08005299 !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering))
5300 continue;
5301 break;
5302 case MSR_IA32_RTIT_OUTPUT_BASE:
5303 case MSR_IA32_RTIT_OUTPUT_MASK:
Sean Christopherson7b874c22020-03-02 15:56:59 -08005304 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chao Pengbf8c55d2018-10-24 16:05:14 +08005305 (!intel_pt_validate_hw_cap(PT_CAP_topa_output) &&
5306 !intel_pt_validate_hw_cap(PT_CAP_single_range_output)))
5307 continue;
5308 break;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08005309 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
Sean Christopherson7b874c22020-03-02 15:56:59 -08005310 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005311 msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >=
Chao Pengbf8c55d2018-10-24 16:05:14 +08005312 intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2)
5313 continue;
5314 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02005315 case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005316 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02005317 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
5318 continue;
5319 break;
Paolo Bonzinicf05a672019-10-01 15:33:07 +02005320 case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17:
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005321 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >=
Paolo Bonzini24c29b72019-10-01 15:18:26 +02005322 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
5323 continue;
Sean Christopherson7cb85fc2020-02-18 15:40:10 -08005324 break;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01005325 default:
5326 break;
5327 }
5328
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005329 msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i];
Carsten Otte043405e2007-10-10 17:16:19 +02005330 }
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02005331
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005332 for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005333 if (!kvm_x86_ops.has_emulated_msr(emulated_msrs_all[i]))
Tom Lendackybc226f02018-05-10 22:06:39 +02005334 continue;
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02005335
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005336 emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
Paolo Bonzini62ef68b2015-05-05 12:08:55 +02005337 }
Tom Lendacky801e4592018-02-21 13:39:51 -06005338
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005339 for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) {
Tom Lendacky801e4592018-02-21 13:39:51 -06005340 struct kvm_msr_entry msr;
5341
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005342 msr.index = msr_based_features_all[i];
Wanpeng Li66421c12018-02-28 14:03:30 +08005343 if (kvm_get_msr_feature(&msr))
Tom Lendacky801e4592018-02-21 13:39:51 -06005344 continue;
5345
Chenyi Qiang7a5ee6e2019-11-06 14:35:20 +08005346 msr_based_features[num_msr_based_features++] = msr_based_features_all[i];
Tom Lendacky801e4592018-02-21 13:39:51 -06005347 }
Carsten Otte043405e2007-10-10 17:16:19 +02005348}
5349
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03005350static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
5351 const void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005352{
Avi Kivity70252a12010-01-19 12:51:22 +02005353 int handled = 0;
5354 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005355
Avi Kivity70252a12010-01-19 12:51:22 +02005356 do {
5357 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005358 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00005359 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
5360 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02005361 break;
5362 handled += n;
5363 addr += n;
5364 len -= n;
5365 v += n;
5366 } while (len);
5367
5368 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005369}
5370
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03005371static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005372{
Avi Kivity70252a12010-01-19 12:51:22 +02005373 int handled = 0;
5374 int n;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005375
Avi Kivity70252a12010-01-19 12:51:22 +02005376 do {
5377 n = min(len, 8);
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01005378 if (!(lapic_in_kernel(vcpu) &&
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00005379 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
5380 addr, n, v))
5381 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
Avi Kivity70252a12010-01-19 12:51:22 +02005382 break;
Wanpeng Lie39d200f2017-12-14 17:40:50 -08005383 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v);
Avi Kivity70252a12010-01-19 12:51:22 +02005384 handled += n;
5385 addr += n;
5386 len -= n;
5387 v += n;
5388 } while (len);
5389
5390 return handled;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005391}
5392
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005393static void kvm_set_segment(struct kvm_vcpu *vcpu,
5394 struct kvm_segment *var, int seg)
5395{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005396 kvm_x86_ops.set_segment(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005397}
5398
5399void kvm_get_segment(struct kvm_vcpu *vcpu,
5400 struct kvm_segment *var, int seg)
5401{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005402 kvm_x86_ops.get_segment(vcpu, var, seg);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02005403}
5404
Paolo Bonzini54987b72014-09-02 13:23:06 +02005405gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
5406 struct x86_exception *exception)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02005407{
5408 gpa_t t_gpa;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02005409
5410 BUG_ON(!mmu_is_nested(vcpu));
5411
5412 /* NPT walks are always user-walks */
5413 access |= PFERR_USER_MASK;
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02005414 t_gpa = vcpu->arch.mmu->gva_to_gpa(vcpu, gpa, access, exception);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02005415
5416 return t_gpa;
5417}
5418
Avi Kivityab9ae312010-11-22 17:53:26 +02005419gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
5420 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02005421{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005422 u32 access = (kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivityab9ae312010-11-22 17:53:26 +02005423 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02005424}
5425
Avi Kivityab9ae312010-11-22 17:53:26 +02005426 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
5427 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02005428{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005429 u32 access = (kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02005430 access |= PFERR_FETCH_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02005431 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02005432}
5433
Avi Kivityab9ae312010-11-22 17:53:26 +02005434gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
5435 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02005436{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005437 u32 access = (kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Gleb Natapov1871c602010-02-10 14:21:32 +02005438 access |= PFERR_WRITE_MASK;
Avi Kivityab9ae312010-11-22 17:53:26 +02005439 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02005440}
5441
5442/* uses this to access any guest's mapped memory without checking CPL */
Avi Kivityab9ae312010-11-22 17:53:26 +02005443gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
5444 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02005445{
Avi Kivityab9ae312010-11-22 17:53:26 +02005446 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02005447}
5448
5449static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
5450 struct kvm_vcpu *vcpu, u32 access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005451 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005452{
5453 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005454 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005455
5456 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02005457 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
Avi Kivityab9ae312010-11-22 17:53:26 +02005458 exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005459 unsigned offset = addr & (PAGE_SIZE-1);
Izik Eidus77c20022008-12-29 01:42:19 +02005460 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005461 int ret;
5462
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005463 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02005464 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005465 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
5466 offset, toread);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005467 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005468 r = X86EMUL_IO_NEEDED;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005469 goto out;
5470 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01005471
Izik Eidus77c20022008-12-29 01:42:19 +02005472 bytes -= toread;
5473 data += toread;
5474 addr += toread;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005475 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005476out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005477 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005478}
Izik Eidus77c20022008-12-29 01:42:19 +02005479
Gleb Natapov1871c602010-02-10 14:21:32 +02005480/* used for instruction fetching */
Avi Kivity0f65dd72011-04-20 13:37:53 +03005481static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
5482 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005483 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02005484{
Avi Kivity0f65dd72011-04-20 13:37:53 +03005485 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005486 u32 access = (kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Paolo Bonzini44583cb2014-05-13 14:02:13 +02005487 unsigned offset;
5488 int ret;
Avi Kivity0f65dd72011-04-20 13:37:53 +03005489
Paolo Bonzini44583cb2014-05-13 14:02:13 +02005490 /* Inline kvm_read_guest_virt_helper for speed. */
5491 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
5492 exception);
5493 if (unlikely(gpa == UNMAPPED_GVA))
5494 return X86EMUL_PROPAGATE_FAULT;
5495
5496 offset = addr & (PAGE_SIZE-1);
5497 if (WARN_ON(offset + bytes > PAGE_SIZE))
5498 bytes = (unsigned)PAGE_SIZE - offset;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005499 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
5500 offset, bytes);
Paolo Bonzini44583cb2014-05-13 14:02:13 +02005501 if (unlikely(ret < 0))
5502 return X86EMUL_IO_NEEDED;
5503
5504 return X86EMUL_CONTINUE;
Gleb Natapov1871c602010-02-10 14:21:32 +02005505}
5506
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005507int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
Avi Kivity0f65dd72011-04-20 13:37:53 +03005508 gva_t addr, void *val, unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005509 struct x86_exception *exception)
Gleb Natapov1871c602010-02-10 14:21:32 +02005510{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005511 u32 access = (kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03005512
Paolo Bonzini353c0952019-01-29 18:41:16 +01005513 /*
5514 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
5515 * is returned, but our callers are not ready for that and they blindly
5516 * call kvm_inject_page_fault. Ensure that they at least do not leak
5517 * uninitialized kernel stack memory into cr2 and error code.
5518 */
5519 memset(exception, 0, sizeof(*exception));
Gleb Natapov1871c602010-02-10 14:21:32 +02005520 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005521 exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02005522}
Nadav Har'El064aea72011-05-25 23:04:56 +03005523EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
Gleb Natapov1871c602010-02-10 14:21:32 +02005524
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005525static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
5526 gva_t addr, void *val, unsigned int bytes,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005527 struct x86_exception *exception, bool system)
Gleb Natapov1871c602010-02-10 14:21:32 +02005528{
Avi Kivity0f65dd72011-04-20 13:37:53 +03005529 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005530 u32 access = 0;
5531
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005532 if (!system && kvm_x86_ops.get_cpl(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005533 access |= PFERR_USER_MASK;
5534
5535 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
Gleb Natapov1871c602010-02-10 14:21:32 +02005536}
5537
Radim Krčmář7a036a62015-10-30 16:36:24 +01005538static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
5539 unsigned long addr, void *val, unsigned int bytes)
5540{
5541 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
5542 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
5543
5544 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
5545}
5546
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005547static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
5548 struct kvm_vcpu *vcpu, u32 access,
5549 struct x86_exception *exception)
Izik Eidus77c20022008-12-29 01:42:19 +02005550{
5551 void *data = val;
5552 int r = X86EMUL_CONTINUE;
5553
5554 while (bytes) {
Joerg Roedel14dfe852010-09-10 17:30:49 +02005555 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005556 access,
Avi Kivityab9ae312010-11-22 17:53:26 +02005557 exception);
Izik Eidus77c20022008-12-29 01:42:19 +02005558 unsigned offset = addr & (PAGE_SIZE-1);
5559 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
5560 int ret;
5561
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005562 if (gpa == UNMAPPED_GVA)
Avi Kivityab9ae312010-11-22 17:53:26 +02005563 return X86EMUL_PROPAGATE_FAULT;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005564 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
Izik Eidus77c20022008-12-29 01:42:19 +02005565 if (ret < 0) {
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03005566 r = X86EMUL_IO_NEEDED;
Izik Eidus77c20022008-12-29 01:42:19 +02005567 goto out;
5568 }
5569
5570 bytes -= towrite;
5571 data += towrite;
5572 addr += towrite;
5573 }
5574out:
5575 return r;
5576}
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005577
5578static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005579 unsigned int bytes, struct x86_exception *exception,
5580 bool system)
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005581{
5582 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005583 u32 access = PFERR_WRITE_MASK;
5584
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005585 if (!system && kvm_x86_ops.get_cpl(vcpu) == 3)
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005586 access |= PFERR_USER_MASK;
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005587
5588 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005589 access, exception);
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005590}
5591
5592int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val,
5593 unsigned int bytes, struct x86_exception *exception)
5594{
Paolo Bonzinic595cee2018-07-02 13:07:14 +02005595 /* kvm_write_guest_virt_system can pull in tons of pages. */
5596 vcpu->arch.l1tf_flush_l1d = true;
5597
Fuqian Huang541ab2a2019-09-12 12:18:17 +08005598 /*
5599 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
5600 * is returned, but our callers are not ready for that and they blindly
5601 * call kvm_inject_page_fault. Ensure that they at least do not leak
5602 * uninitialized kernel stack memory into cr2 and error code.
5603 */
5604 memset(exception, 0, sizeof(*exception));
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02005605 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
5606 PFERR_WRITE_MASK, exception);
5607}
Nadav Har'El6a4d7552011-05-25 23:08:00 +03005608EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
Izik Eidus77c20022008-12-29 01:42:19 +02005609
Wanpeng Li082d06e2018-04-03 16:28:48 -07005610int handle_ud(struct kvm_vcpu *vcpu)
5611{
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09005612 static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX };
Wanpeng Li6c86eed2018-04-03 16:28:49 -07005613 int emul_type = EMULTYPE_TRAP_UD;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07005614 char sig[5]; /* ud2; .ascii "kvm" */
5615 struct x86_exception e;
Wanpeng Li082d06e2018-04-03 16:28:48 -07005616
Wanpeng Li6c86eed2018-04-03 16:28:49 -07005617 if (force_emulation_prefix &&
Paolo Bonzini3c9fa242018-06-06 17:38:09 +02005618 kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu),
5619 sig, sizeof(sig), &e) == 0 &&
Masami Hiramatsub3dc0692019-09-06 22:13:59 +09005620 memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) {
Wanpeng Li6c86eed2018-04-03 16:28:49 -07005621 kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig));
Sean Christophersonb4000602019-08-27 14:40:32 -07005622 emul_type = EMULTYPE_TRAP_UD_FORCED;
Wanpeng Li6c86eed2018-04-03 16:28:49 -07005623 }
5624
Sean Christopherson60fc3d02019-08-27 14:40:38 -07005625 return kvm_emulate_instruction(vcpu, emul_type);
Wanpeng Li082d06e2018-04-03 16:28:48 -07005626}
5627EXPORT_SYMBOL_GPL(handle_ud);
5628
Tom Lendacky0f89b202016-12-14 14:59:23 -05005629static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
5630 gpa_t gpa, bool write)
5631{
5632 /* For APIC access vmexit */
5633 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
5634 return 1;
5635
5636 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
5637 trace_vcpu_match_mmio(gva, gpa, write, true);
5638 return 1;
5639 }
5640
5641 return 0;
5642}
5643
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08005644static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
5645 gpa_t *gpa, struct x86_exception *exception,
5646 bool write)
5647{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07005648 u32 access = ((kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0)
Avi Kivity97d64b72012-09-12 14:52:00 +03005649 | (write ? PFERR_WRITE_MASK : 0);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08005650
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08005651 /*
5652 * currently PKRU is only applied to ept enabled guest so
5653 * there is no pkey in EPT page table for L1 guest or EPT
5654 * shadow page table for L2 guest.
5655 */
Avi Kivity97d64b72012-09-12 14:52:00 +03005656 if (vcpu_match_mmio_gva(vcpu, gva)
Feng Wu97ec8c02014-04-01 17:46:34 +08005657 && !permission_fault(vcpu, vcpu->arch.walk_mmu,
Sean Christopherson871bd032019-08-01 13:35:21 -07005658 vcpu->arch.mmio_access, 0, access)) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08005659 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
5660 (gva & (PAGE_SIZE - 1));
Xiao Guangrong4f022642011-07-12 03:34:24 +08005661 trace_vcpu_match_mmio(gva, *gpa, write, false);
Xiao Guangrongbebb1062011-07-12 03:23:20 +08005662 return 1;
5663 }
5664
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08005665 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
5666
5667 if (*gpa == UNMAPPED_GVA)
5668 return -1;
5669
Tom Lendacky0f89b202016-12-14 14:59:23 -05005670 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08005671}
5672
Marcelo Tosatti3200f402008-03-29 20:17:59 -03005673int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivitybcc55cb2010-11-22 17:53:22 +02005674 const void *val, int bytes)
Avi Kivity9f811282008-03-02 14:06:05 +02005675{
5676 int ret;
5677
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005678 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02005679 if (ret < 0)
5680 return 0;
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08005681 kvm_page_track_write(vcpu, gpa, val, bytes);
Avi Kivity9f811282008-03-02 14:06:05 +02005682 return 1;
5683}
5684
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005685struct read_write_emulator_ops {
5686 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
5687 int bytes);
5688 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
5689 void *val, int bytes);
5690 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
5691 int bytes, void *val);
5692 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
5693 void *val, int bytes);
5694 bool write;
5695};
5696
5697static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
5698{
5699 if (vcpu->mmio_read_completed) {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005700 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
Wanpeng Lie39d200f2017-12-14 17:40:50 -08005701 vcpu->mmio_fragments[0].gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005702 vcpu->mmio_read_completed = 0;
5703 return 1;
5704 }
5705
5706 return 0;
5707}
5708
5709static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
5710 void *val, int bytes)
5711{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005712 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005713}
5714
5715static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
5716 void *val, int bytes)
5717{
5718 return emulator_write_phys(vcpu, gpa, val, bytes);
5719}
5720
5721static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
5722{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08005723 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005724 return vcpu_mmio_write(vcpu, gpa, bytes, val);
5725}
5726
5727static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
5728 void *val, int bytes)
5729{
Wanpeng Lie39d200f2017-12-14 17:40:50 -08005730 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL);
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005731 return X86EMUL_IO_NEEDED;
5732}
5733
5734static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
5735 void *val, int bytes)
5736{
Avi Kivityf78146b2012-04-18 19:22:47 +03005737 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
5738
Xiao Guangrong87da7e62012-10-24 14:07:59 +08005739 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005740 return X86EMUL_CONTINUE;
5741}
5742
Mathias Krause0fbe9b02012-08-30 01:30:17 +02005743static const struct read_write_emulator_ops read_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005744 .read_write_prepare = read_prepare,
5745 .read_write_emulate = read_emulate,
5746 .read_write_mmio = vcpu_mmio_read,
5747 .read_write_exit_mmio = read_exit_mmio,
5748};
5749
Mathias Krause0fbe9b02012-08-30 01:30:17 +02005750static const struct read_write_emulator_ops write_emultor = {
Xiao Guangrong77d197b2011-07-13 14:31:50 +08005751 .read_write_emulate = write_emulate,
5752 .read_write_mmio = write_mmio,
5753 .read_write_exit_mmio = write_exit_mmio,
5754 .write = true,
5755};
5756
Xiao Guangrong22388a32011-07-13 14:32:31 +08005757static int emulator_read_write_onepage(unsigned long addr, void *val,
5758 unsigned int bytes,
5759 struct x86_exception *exception,
5760 struct kvm_vcpu *vcpu,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02005761 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005762{
Xiao Guangrongaf7cc7d2011-07-12 03:22:46 +08005763 gpa_t gpa;
5764 int handled, ret;
Xiao Guangrong22388a32011-07-13 14:32:31 +08005765 bool write = ops->write;
Avi Kivityf78146b2012-04-18 19:22:47 +03005766 struct kvm_mmio_fragment *frag;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08005767 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Tom Lendacky0f89b202016-12-14 14:59:23 -05005768
5769 /*
5770 * If the exit was due to a NPF we may already have a GPA.
5771 * If the GPA is present, use it to avoid the GVA to GPA table walk.
5772 * Note, this cannot be used on string operations since string
5773 * operation using rep will only have the initial GPA from the NPF
5774 * occurred.
5775 */
Sean Christopherson744e6992020-02-18 15:03:09 -08005776 if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) &&
5777 (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) {
5778 gpa = ctxt->gpa_val;
Brijesh Singh618232e2017-08-17 18:36:57 +02005779 ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write);
5780 } else {
5781 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
5782 if (ret < 0)
5783 return X86EMUL_PROPAGATE_FAULT;
Tom Lendacky0f89b202016-12-14 14:59:23 -05005784 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08005785
Brijesh Singh618232e2017-08-17 18:36:57 +02005786 if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes))
Carsten Ottebbd9b642007-10-30 18:44:21 +01005787 return X86EMUL_CONTINUE;
5788
Carsten Ottebbd9b642007-10-30 18:44:21 +01005789 /*
5790 * Is this MMIO handled locally?
5791 */
Xiao Guangrong22388a32011-07-13 14:32:31 +08005792 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
Avi Kivity70252a12010-01-19 12:51:22 +02005793 if (handled == bytes)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005794 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005795
Avi Kivity70252a12010-01-19 12:51:22 +02005796 gpa += handled;
5797 bytes -= handled;
5798 val += handled;
5799
Xiao Guangrong87da7e62012-10-24 14:07:59 +08005800 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
5801 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
5802 frag->gpa = gpa;
5803 frag->data = val;
5804 frag->len = bytes;
Avi Kivityf78146b2012-04-18 19:22:47 +03005805 return X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005806}
5807
Xiubo Li52eb5a62015-03-13 17:39:45 +08005808static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
5809 unsigned long addr,
Xiao Guangrong22388a32011-07-13 14:32:31 +08005810 void *val, unsigned int bytes,
5811 struct x86_exception *exception,
Mathias Krause0fbe9b02012-08-30 01:30:17 +02005812 const struct read_write_emulator_ops *ops)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005813{
Avi Kivity0f65dd72011-04-20 13:37:53 +03005814 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Avi Kivityf78146b2012-04-18 19:22:47 +03005815 gpa_t gpa;
5816 int rc;
5817
5818 if (ops->read_write_prepare &&
5819 ops->read_write_prepare(vcpu, val, bytes))
5820 return X86EMUL_CONTINUE;
5821
5822 vcpu->mmio_nr_fragments = 0;
Avi Kivity0f65dd72011-04-20 13:37:53 +03005823
Carsten Ottebbd9b642007-10-30 18:44:21 +01005824 /* Crossing a page boundary? */
5825 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
Avi Kivityf78146b2012-04-18 19:22:47 +03005826 int now;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005827
5828 now = -addr & ~PAGE_MASK;
Xiao Guangrong22388a32011-07-13 14:32:31 +08005829 rc = emulator_read_write_onepage(addr, val, now, exception,
5830 vcpu, ops);
5831
Carsten Ottebbd9b642007-10-30 18:44:21 +01005832 if (rc != X86EMUL_CONTINUE)
5833 return rc;
5834 addr += now;
Nadav Amitbac155312015-01-26 09:32:26 +02005835 if (ctxt->mode != X86EMUL_MODE_PROT64)
5836 addr = (u32)addr;
Carsten Ottebbd9b642007-10-30 18:44:21 +01005837 val += now;
5838 bytes -= now;
5839 }
Xiao Guangrong22388a32011-07-13 14:32:31 +08005840
Avi Kivityf78146b2012-04-18 19:22:47 +03005841 rc = emulator_read_write_onepage(addr, val, bytes, exception,
5842 vcpu, ops);
5843 if (rc != X86EMUL_CONTINUE)
5844 return rc;
5845
5846 if (!vcpu->mmio_nr_fragments)
5847 return rc;
5848
5849 gpa = vcpu->mmio_fragments[0].gpa;
5850
5851 vcpu->mmio_needed = 1;
5852 vcpu->mmio_cur_fragment = 0;
5853
Xiao Guangrong87da7e62012-10-24 14:07:59 +08005854 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
Avi Kivityf78146b2012-04-18 19:22:47 +03005855 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
5856 vcpu->run->exit_reason = KVM_EXIT_MMIO;
5857 vcpu->run->mmio.phys_addr = gpa;
5858
5859 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
Xiao Guangrong22388a32011-07-13 14:32:31 +08005860}
5861
5862static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
5863 unsigned long addr,
5864 void *val,
5865 unsigned int bytes,
5866 struct x86_exception *exception)
5867{
5868 return emulator_read_write(ctxt, addr, val, bytes,
5869 exception, &read_emultor);
5870}
5871
Xiubo Li52eb5a62015-03-13 17:39:45 +08005872static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
Xiao Guangrong22388a32011-07-13 14:32:31 +08005873 unsigned long addr,
5874 const void *val,
5875 unsigned int bytes,
5876 struct x86_exception *exception)
5877{
5878 return emulator_read_write(ctxt, addr, (void *)val, bytes,
5879 exception, &write_emultor);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005880}
Carsten Ottebbd9b642007-10-30 18:44:21 +01005881
Avi Kivitydaea3e72010-03-15 13:59:54 +02005882#define CMPXCHG_TYPE(t, ptr, old, new) \
5883 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
5884
5885#ifdef CONFIG_X86_64
5886# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
5887#else
5888# define CMPXCHG64(ptr, old, new) \
Jan Kiszka9749a6c2010-03-20 10:14:13 +01005889 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
Avi Kivitydaea3e72010-03-15 13:59:54 +02005890#endif
5891
Avi Kivity0f65dd72011-04-20 13:37:53 +03005892static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
5893 unsigned long addr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01005894 const void *old,
5895 const void *new,
5896 unsigned int bytes,
Avi Kivity0f65dd72011-04-20 13:37:53 +03005897 struct x86_exception *exception)
Carsten Ottebbd9b642007-10-30 18:44:21 +01005898{
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01005899 struct kvm_host_map map;
Avi Kivity0f65dd72011-04-20 13:37:53 +03005900 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02005901 u64 page_line_mask;
Avi Kivitydaea3e72010-03-15 13:59:54 +02005902 gpa_t gpa;
Avi Kivitydaea3e72010-03-15 13:59:54 +02005903 char *kaddr;
5904 bool exchanged;
5905
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05005906 /* guests cmpxchg8b have to be emulated atomically */
Avi Kivitydaea3e72010-03-15 13:59:54 +02005907 if (bytes > 8 || (bytes & (bytes - 1)))
5908 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05005909
Avi Kivitydaea3e72010-03-15 13:59:54 +02005910 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05005911
Avi Kivitydaea3e72010-03-15 13:59:54 +02005912 if (gpa == UNMAPPED_GVA ||
5913 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
5914 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05005915
Xiaoyao Li9de6fe32020-04-10 13:54:01 +02005916 /*
5917 * Emulate the atomic as a straight write to avoid #AC if SLD is
5918 * enabled in the host and the access splits a cache line.
5919 */
5920 if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
5921 page_line_mask = ~(cache_line_size() - 1);
5922 else
5923 page_line_mask = PAGE_MASK;
5924
5925 if (((gpa + bytes - 1) & page_line_mask) != (gpa & page_line_mask))
Avi Kivitydaea3e72010-03-15 13:59:54 +02005926 goto emul_write;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05005927
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01005928 if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map))
Wei Yongjunc19b8bd2010-07-15 08:51:58 +08005929 goto emul_write;
Izik Eidus72dc67a2008-02-10 18:04:15 +02005930
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01005931 kaddr = map.hva + offset_in_page(gpa);
5932
Avi Kivitydaea3e72010-03-15 13:59:54 +02005933 switch (bytes) {
5934 case 1:
5935 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
5936 break;
5937 case 2:
5938 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
5939 break;
5940 case 4:
5941 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
5942 break;
5943 case 8:
5944 exchanged = CMPXCHG64(kaddr, old, new);
5945 break;
5946 default:
5947 BUG();
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05005948 }
KarimAllah Ahmed42e35f82019-01-31 21:24:39 +01005949
5950 kvm_vcpu_unmap(vcpu, &map, true);
Avi Kivitydaea3e72010-03-15 13:59:54 +02005951
5952 if (!exchanged)
5953 return X86EMUL_CMPXCHG_FAILED;
5954
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08005955 kvm_page_track_write(vcpu, gpa, new, bytes);
Gleb Natapov8f6abd02010-04-13 10:21:56 +03005956
5957 return X86EMUL_CONTINUE;
Avi Kivity4a5f48f2010-03-15 13:59:55 +02005958
Marcelo Tosatti3200f402008-03-29 20:17:59 -03005959emul_write:
Avi Kivitydaea3e72010-03-15 13:59:54 +02005960 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05005961
Avi Kivity0f65dd72011-04-20 13:37:53 +03005962 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
Carsten Ottebbd9b642007-10-30 18:44:21 +01005963}
5964
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005965static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
5966{
Wanpeng Licbfc6c92017-05-19 02:46:56 -07005967 int r = 0, i;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005968
Wanpeng Licbfc6c92017-05-19 02:46:56 -07005969 for (i = 0; i < vcpu->arch.pio.count; i++) {
5970 if (vcpu->arch.pio.in)
5971 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
5972 vcpu->arch.pio.size, pd);
5973 else
5974 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
5975 vcpu->arch.pio.port, vcpu->arch.pio.size,
5976 pd);
5977 if (r)
5978 break;
5979 pd += vcpu->arch.pio.size;
5980 }
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005981 return r;
5982}
5983
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08005984static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
5985 unsigned short port, void *val,
5986 unsigned int count, bool in)
5987{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08005988 vcpu->arch.pio.port = port;
5989 vcpu->arch.pio.in = in;
5990 vcpu->arch.pio.count = count;
5991 vcpu->arch.pio.size = size;
5992
5993 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
5994 vcpu->arch.pio.count = 0;
5995 return 1;
5996 }
5997
5998 vcpu->run->exit_reason = KVM_EXIT_IO;
5999 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
6000 vcpu->run->io.size = size;
6001 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
6002 vcpu->run->io.count = count;
6003 vcpu->run->io.port = port;
6004
6005 return 0;
6006}
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006007
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006008static int emulator_pio_in(struct kvm_vcpu *vcpu, int size,
6009 unsigned short port, void *val, unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006010{
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006011 int ret;
Avi Kivityca1d4a92011-04-20 13:37:53 +03006012
Gleb Natapov79729952010-03-18 15:20:24 +02006013 if (vcpu->arch.pio.count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006014 goto data_avail;
6015
Wanpeng Licbfc6c92017-05-19 02:46:56 -07006016 memset(vcpu->arch.pio_data, 0, size * count);
6017
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006018 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
6019 if (ret) {
6020data_avail:
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006021 memcpy(val, vcpu->arch.pio_data, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02006022 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
Gleb Natapov79729952010-03-18 15:20:24 +02006023 vcpu->arch.pio.count = 0;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006024 return 1;
6025 }
6026
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006027 return 0;
6028}
6029
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006030static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
6031 int size, unsigned short port, void *val,
6032 unsigned int count)
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006033{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006034 return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count);
Avi Kivityca1d4a92011-04-20 13:37:53 +03006035
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006036}
6037
6038static int emulator_pio_out(struct kvm_vcpu *vcpu, int size,
6039 unsigned short port, const void *val,
6040 unsigned int count)
6041{
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006042 memcpy(vcpu->arch.pio_data, val, size * count);
Ulrich Obergfell11719032014-05-02 17:57:47 +02006043 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
Xiao Guangrong6f6fbe92011-09-22 16:55:10 +08006044 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006045}
6046
Carsten Ottebbd9b642007-10-30 18:44:21 +01006047static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
6048 int size, unsigned short port,
6049 const void *val, unsigned int count)
6050{
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08006051 return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006052}
6053
6054static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
6055{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006056 return kvm_x86_ops.get_segment_base(vcpu, seg);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006057}
6058
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006059static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006060{
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006061 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006062}
6063
Jiang Biaoae6a2372016-11-07 08:54:51 +08006064static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006065{
6066 if (!need_emulate_wbinvd(vcpu))
6067 return X86EMUL_CONTINUE;
6068
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006069 if (kvm_x86_ops.has_wbinvd_exit()) {
Jan Kiszka2eec7342010-11-01 14:01:29 +01006070 int cpu = get_cpu();
6071
6072 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006073 smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
6074 wbinvd_ipi, NULL, 1);
Jan Kiszka2eec7342010-11-01 14:01:29 +01006075 put_cpu();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006076 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
Jan Kiszka2eec7342010-11-01 14:01:29 +01006077 } else
6078 wbinvd();
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006079 return X86EMUL_CONTINUE;
6080}
Joel Schopp5cb56052015-03-02 13:43:31 -06006081
6082int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
6083{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006084 kvm_emulate_wbinvd_noskip(vcpu);
6085 return kvm_skip_emulated_instruction(vcpu);
Joel Schopp5cb56052015-03-02 13:43:31 -06006086}
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006087EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
6088
Joel Schopp5cb56052015-03-02 13:43:31 -06006089
6090
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03006091static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
6092{
Joel Schopp5cb56052015-03-02 13:43:31 -06006093 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03006094}
6095
Xiubo Li52eb5a62015-03-13 17:39:45 +08006096static int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
6097 unsigned long *dest)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006098{
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006099 return kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006100}
6101
Xiubo Li52eb5a62015-03-13 17:39:45 +08006102static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
6103 unsigned long value)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006104{
Gleb Natapov338dbc92010-04-28 19:15:32 +03006105
Avi Kivity717746e2011-04-20 13:37:53 +03006106 return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006107}
6108
Gleb Natapov52a46612010-03-18 15:20:03 +02006109static u64 mk_cr_64(u64 curr_cr, u32 new_val)
6110{
6111 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
6112}
6113
Avi Kivity717746e2011-04-20 13:37:53 +03006114static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
Gleb Natapov52a46612010-03-18 15:20:03 +02006115{
Avi Kivity717746e2011-04-20 13:37:53 +03006116 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov52a46612010-03-18 15:20:03 +02006117 unsigned long value;
6118
6119 switch (cr) {
6120 case 0:
6121 value = kvm_read_cr0(vcpu);
6122 break;
6123 case 2:
6124 value = vcpu->arch.cr2;
6125 break;
6126 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02006127 value = kvm_read_cr3(vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +02006128 break;
6129 case 4:
6130 value = kvm_read_cr4(vcpu);
6131 break;
6132 case 8:
6133 value = kvm_get_cr8(vcpu);
6134 break;
6135 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03006136 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov52a46612010-03-18 15:20:03 +02006137 return 0;
6138 }
6139
6140 return value;
6141}
6142
Avi Kivity717746e2011-04-20 13:37:53 +03006143static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
Gleb Natapov52a46612010-03-18 15:20:03 +02006144{
Avi Kivity717746e2011-04-20 13:37:53 +03006145 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov0f122442010-04-28 19:15:31 +03006146 int res = 0;
6147
Gleb Natapov52a46612010-03-18 15:20:03 +02006148 switch (cr) {
6149 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03006150 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02006151 break;
6152 case 2:
6153 vcpu->arch.cr2 = val;
6154 break;
6155 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03006156 res = kvm_set_cr3(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02006157 break;
6158 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03006159 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
Gleb Natapov52a46612010-03-18 15:20:03 +02006160 break;
6161 case 8:
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006162 res = kvm_set_cr8(vcpu, val);
Gleb Natapov52a46612010-03-18 15:20:03 +02006163 break;
6164 default:
Christoffer Dalla737f252012-06-03 21:17:48 +03006165 kvm_err("%s: unexpected cr %u\n", __func__, cr);
Gleb Natapov0f122442010-04-28 19:15:31 +03006166 res = -1;
Gleb Natapov52a46612010-03-18 15:20:03 +02006167 }
Gleb Natapov0f122442010-04-28 19:15:31 +03006168
6169 return res;
Gleb Natapov52a46612010-03-18 15:20:03 +02006170}
6171
Avi Kivity717746e2011-04-20 13:37:53 +03006172static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
Gleb Natapov9c537242010-03-18 15:20:05 +02006173{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006174 return kvm_x86_ops.get_cpl(emul_to_vcpu(ctxt));
Gleb Natapov9c537242010-03-18 15:20:05 +02006175}
6176
Avi Kivity4bff1e862011-04-20 13:37:53 +03006177static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006178{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006179 kvm_x86_ops.get_gdt(emul_to_vcpu(ctxt), dt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006180}
6181
Avi Kivity4bff1e862011-04-20 13:37:53 +03006182static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03006183{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006184 kvm_x86_ops.get_idt(emul_to_vcpu(ctxt), dt);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03006185}
6186
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03006187static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
6188{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006189 kvm_x86_ops.set_gdt(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03006190}
6191
6192static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
6193{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006194 kvm_x86_ops.set_idt(emul_to_vcpu(ctxt), dt);
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03006195}
6196
Avi Kivity4bff1e862011-04-20 13:37:53 +03006197static unsigned long emulator_get_cached_segment_base(
6198 struct x86_emulate_ctxt *ctxt, int seg)
Gleb Natapov5951c442010-04-28 19:15:29 +03006199{
Avi Kivity4bff1e862011-04-20 13:37:53 +03006200 return get_segment_base(emul_to_vcpu(ctxt), seg);
Gleb Natapov5951c442010-04-28 19:15:29 +03006201}
6202
Avi Kivity1aa36612011-04-27 13:20:30 +03006203static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
6204 struct desc_struct *desc, u32 *base3,
6205 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006206{
6207 struct kvm_segment var;
6208
Avi Kivity4bff1e862011-04-20 13:37:53 +03006209 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
Avi Kivity1aa36612011-04-27 13:20:30 +03006210 *selector = var.selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006211
Gleb Natapov378a8b02013-01-21 15:36:48 +02006212 if (var.unusable) {
6213 memset(desc, 0, sizeof(*desc));
Radim Krčmářf0367ee2017-05-18 19:37:30 +02006214 if (base3)
6215 *base3 = 0;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006216 return false;
Gleb Natapov378a8b02013-01-21 15:36:48 +02006217 }
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006218
6219 if (var.g)
6220 var.limit >>= 12;
6221 set_desc_limit(desc, var.limit);
6222 set_desc_base(desc, (unsigned long)var.base);
Gleb Natapov5601d052011-03-07 14:55:06 +02006223#ifdef CONFIG_X86_64
6224 if (base3)
6225 *base3 = var.base >> 32;
6226#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006227 desc->type = var.type;
6228 desc->s = var.s;
6229 desc->dpl = var.dpl;
6230 desc->p = var.present;
6231 desc->avl = var.avl;
6232 desc->l = var.l;
6233 desc->d = var.db;
6234 desc->g = var.g;
6235
6236 return true;
6237}
6238
Avi Kivity1aa36612011-04-27 13:20:30 +03006239static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
6240 struct desc_struct *desc, u32 base3,
6241 int seg)
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006242{
Avi Kivity4bff1e862011-04-20 13:37:53 +03006243 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006244 struct kvm_segment var;
6245
Avi Kivity1aa36612011-04-27 13:20:30 +03006246 var.selector = selector;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006247 var.base = get_desc_base(desc);
Gleb Natapov5601d052011-03-07 14:55:06 +02006248#ifdef CONFIG_X86_64
6249 var.base |= ((u64)base3) << 32;
6250#endif
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006251 var.limit = get_desc_limit(desc);
6252 if (desc->g)
6253 var.limit = (var.limit << 12) | 0xfff;
6254 var.type = desc->type;
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006255 var.dpl = desc->dpl;
6256 var.db = desc->d;
6257 var.s = desc->s;
6258 var.l = desc->l;
6259 var.g = desc->g;
6260 var.avl = desc->avl;
6261 var.present = desc->p;
6262 var.unusable = !var.present;
6263 var.padding = 0;
6264
6265 kvm_set_segment(vcpu, &var, seg);
6266 return;
6267}
6268
Avi Kivity717746e2011-04-20 13:37:53 +03006269static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
6270 u32 msr_index, u64 *pdata)
6271{
Sean Christophersonf20935d2019-09-05 14:22:54 -07006272 return kvm_get_msr(emul_to_vcpu(ctxt), msr_index, pdata);
Avi Kivity717746e2011-04-20 13:37:53 +03006273}
6274
6275static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
6276 u32 msr_index, u64 data)
6277{
Sean Christophersonf20935d2019-09-05 14:22:54 -07006278 return kvm_set_msr(emul_to_vcpu(ctxt), msr_index, data);
Avi Kivity717746e2011-04-20 13:37:53 +03006279}
6280
Paolo Bonzini64d60672015-05-07 11:36:11 +02006281static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
6282{
6283 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6284
6285 return vcpu->arch.smbase;
6286}
6287
6288static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
6289{
6290 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6291
6292 vcpu->arch.smbase = smbase;
6293}
6294
Nadav Amit67f4d422014-06-02 18:34:09 +03006295static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
6296 u32 pmc)
6297{
Like Xu98ff80f2019-10-27 18:52:40 +08006298 return kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc);
Nadav Amit67f4d422014-06-02 18:34:09 +03006299}
6300
Avi Kivity222d21a2011-11-10 14:57:30 +02006301static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
6302 u32 pmc, u64 *pdata)
6303{
Wei Huangc6702c92015-06-19 13:44:45 +02006304 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
Avi Kivity222d21a2011-11-10 14:57:30 +02006305}
6306
Avi Kivity6c3287f2011-04-20 15:43:05 +03006307static void emulator_halt(struct x86_emulate_ctxt *ctxt)
6308{
6309 emul_to_vcpu(ctxt)->arch.halt_request = 1;
6310}
6311
Avi Kivity29535382011-04-20 13:37:53 +03006312static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006313 struct x86_instruction_info *info,
Avi Kivityc4f035c2011-04-04 12:39:22 +02006314 enum x86_intercept_stage stage)
6315{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006316 return kvm_x86_ops.check_intercept(emul_to_vcpu(ctxt), info, stage,
Sean Christopherson21f1b8f2020-02-18 15:29:42 -08006317 &ctxt->exception);
Avi Kivityc4f035c2011-04-04 12:39:22 +02006318}
6319
Yu Zhange911eb32017-08-24 20:27:52 +08006320static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
Sean Christophersonf91af512020-03-04 17:34:37 -08006321 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx,
6322 bool exact_only)
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01006323{
Sean Christophersonf91af512020-03-04 17:34:37 -08006324 return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only);
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01006325}
6326
Sean Christopherson5ae78e92019-12-17 13:32:38 -08006327static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt)
6328{
6329 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM);
6330}
6331
6332static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt)
6333{
6334 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE);
6335}
6336
6337static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt)
6338{
6339 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR);
6340}
6341
Avi Kivitydd856ef2012-08-27 23:46:17 +03006342static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
6343{
6344 return kvm_register_read(emul_to_vcpu(ctxt), reg);
6345}
6346
6347static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
6348{
6349 kvm_register_write(emul_to_vcpu(ctxt), reg, val);
6350}
6351
Nadav Amit801806d2015-01-26 09:32:23 +02006352static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
6353{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006354 kvm_x86_ops.set_nmi_mask(emul_to_vcpu(ctxt), masked);
Nadav Amit801806d2015-01-26 09:32:23 +02006355}
6356
Ladi Prosek6ed071f2017-04-25 16:42:44 +02006357static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt)
6358{
6359 return emul_to_vcpu(ctxt)->arch.hflags;
6360}
6361
6362static void emulator_set_hflags(struct x86_emulate_ctxt *ctxt, unsigned emul_flags)
6363{
Sean Christophersonc5833c72019-04-02 08:03:10 -07006364 emul_to_vcpu(ctxt)->arch.hflags = emul_flags;
Ladi Prosek6ed071f2017-04-25 16:42:44 +02006365}
6366
Sean Christophersoned193212019-04-02 08:03:09 -07006367static int emulator_pre_leave_smm(struct x86_emulate_ctxt *ctxt,
6368 const char *smstate)
Ladi Prosek0234bf82017-10-11 16:54:40 +02006369{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006370 return kvm_x86_ops.pre_leave_smm(emul_to_vcpu(ctxt), smstate);
Ladi Prosek0234bf82017-10-11 16:54:40 +02006371}
6372
Sean Christophersonc5833c72019-04-02 08:03:10 -07006373static void emulator_post_leave_smm(struct x86_emulate_ctxt *ctxt)
6374{
6375 kvm_smm_changed(emul_to_vcpu(ctxt));
6376}
6377
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02006378static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr)
6379{
6380 return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr);
6381}
6382
Mathias Krause0225fb52012-08-30 01:30:16 +02006383static const struct x86_emulate_ops emulate_ops = {
Avi Kivitydd856ef2012-08-27 23:46:17 +03006384 .read_gpr = emulator_read_gpr,
6385 .write_gpr = emulator_write_gpr,
Paolo Bonzinice14e868a2018-06-06 17:37:49 +02006386 .read_std = emulator_read_std,
6387 .write_std = emulator_write_std,
Radim Krčmář7a036a62015-10-30 16:36:24 +01006388 .read_phys = kvm_read_guest_phys_system,
Gleb Natapov1871c602010-02-10 14:21:32 +02006389 .fetch = kvm_fetch_guest_virt,
Carsten Ottebbd9b642007-10-30 18:44:21 +01006390 .read_emulated = emulator_read_emulated,
6391 .write_emulated = emulator_write_emulated,
6392 .cmpxchg_emulated = emulator_cmpxchg_emulated,
Avi Kivity3cb16fe2011-04-20 15:38:44 +03006393 .invlpg = emulator_invlpg,
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02006394 .pio_in_emulated = emulator_pio_in_emulated,
6395 .pio_out_emulated = emulator_pio_out_emulated,
Avi Kivity1aa36612011-04-27 13:20:30 +03006396 .get_segment = emulator_get_segment,
6397 .set_segment = emulator_set_segment,
Gleb Natapov5951c442010-04-28 19:15:29 +03006398 .get_cached_segment_base = emulator_get_cached_segment_base,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +02006399 .get_gdt = emulator_get_gdt,
Mohammed Gamal160ce1f2010-08-04 05:44:24 +03006400 .get_idt = emulator_get_idt,
Avi Kivity1ac9d0c2011-04-20 15:12:00 +03006401 .set_gdt = emulator_set_gdt,
6402 .set_idt = emulator_set_idt,
Gleb Natapov52a46612010-03-18 15:20:03 +02006403 .get_cr = emulator_get_cr,
6404 .set_cr = emulator_set_cr,
Gleb Natapov9c537242010-03-18 15:20:05 +02006405 .cpl = emulator_get_cpl,
Gleb Natapov35aa5372010-04-28 19:15:27 +03006406 .get_dr = emulator_get_dr,
6407 .set_dr = emulator_set_dr,
Paolo Bonzini64d60672015-05-07 11:36:11 +02006408 .get_smbase = emulator_get_smbase,
6409 .set_smbase = emulator_set_smbase,
Avi Kivity717746e2011-04-20 13:37:53 +03006410 .set_msr = emulator_set_msr,
6411 .get_msr = emulator_get_msr,
Nadav Amit67f4d422014-06-02 18:34:09 +03006412 .check_pmc = emulator_check_pmc,
Avi Kivity222d21a2011-11-10 14:57:30 +02006413 .read_pmc = emulator_read_pmc,
Avi Kivity6c3287f2011-04-20 15:43:05 +03006414 .halt = emulator_halt,
Avi Kivitybcaf5cc2011-04-20 15:53:23 +03006415 .wbinvd = emulator_wbinvd,
Avi Kivityd6aa1002011-04-20 15:47:13 +03006416 .fix_hypercall = emulator_fix_hypercall,
Avi Kivityc4f035c2011-04-04 12:39:22 +02006417 .intercept = emulator_intercept,
Stephan Bärwolfbdb42f52012-01-12 16:43:03 +01006418 .get_cpuid = emulator_get_cpuid,
Sean Christopherson5ae78e92019-12-17 13:32:38 -08006419 .guest_has_long_mode = emulator_guest_has_long_mode,
6420 .guest_has_movbe = emulator_guest_has_movbe,
6421 .guest_has_fxsr = emulator_guest_has_fxsr,
Nadav Amit801806d2015-01-26 09:32:23 +02006422 .set_nmi_mask = emulator_set_nmi_mask,
Ladi Prosek6ed071f2017-04-25 16:42:44 +02006423 .get_hflags = emulator_get_hflags,
6424 .set_hflags = emulator_set_hflags,
Ladi Prosek0234bf82017-10-11 16:54:40 +02006425 .pre_leave_smm = emulator_pre_leave_smm,
Sean Christophersonc5833c72019-04-02 08:03:10 -07006426 .post_leave_smm = emulator_post_leave_smm,
Vitaly Kuznetsov02d41602019-08-13 15:53:32 +02006427 .set_xcr = emulator_set_xcr,
Carsten Ottebbd9b642007-10-30 18:44:21 +01006428};
6429
Gleb Natapov95cb2292010-04-28 19:15:43 +03006430static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
6431{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006432 u32 int_shadow = kvm_x86_ops.get_interrupt_shadow(vcpu);
Gleb Natapov95cb2292010-04-28 19:15:43 +03006433 /*
6434 * an sti; sti; sequence only disable interrupts for the first
6435 * instruction. So, if the last instruction, be it emulated or
6436 * not, left the system with the INT_STI flag enabled, it
6437 * means that the last instruction is an sti. We should not
6438 * leave the flag on in this case. The same goes for mov ss
6439 */
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02006440 if (int_shadow & mask)
6441 mask = 0;
Paolo Bonzini6addfc42014-03-27 11:29:28 +01006442 if (unlikely(int_shadow || mask)) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006443 kvm_x86_ops.set_interrupt_shadow(vcpu, mask);
Paolo Bonzini6addfc42014-03-27 11:29:28 +01006444 if (!mask)
6445 kvm_make_request(KVM_REQ_EVENT, vcpu);
6446 }
Gleb Natapov95cb2292010-04-28 19:15:43 +03006447}
6448
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02006449static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
Gleb Natapov54b84862010-04-28 19:15:44 +03006450{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006451 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Avi Kivityda9cb572010-11-22 17:53:21 +02006452 if (ctxt->exception.vector == PF_VECTOR)
Sean Christopherson53b3d8e2020-03-20 14:28:01 -07006453 return kvm_inject_emulated_page_fault(vcpu, &ctxt->exception);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02006454
6455 if (ctxt->exception.error_code_valid)
Avi Kivityda9cb572010-11-22 17:53:21 +02006456 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
6457 ctxt->exception.error_code);
Gleb Natapov54b84862010-04-28 19:15:44 +03006458 else
Avi Kivityda9cb572010-11-22 17:53:21 +02006459 kvm_queue_exception(vcpu, ctxt->exception.vector);
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02006460 return false;
Gleb Natapov54b84862010-04-28 19:15:44 +03006461}
6462
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006463static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu)
6464{
6465 struct x86_emulate_ctxt *ctxt;
6466
6467 ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT);
6468 if (!ctxt) {
6469 pr_err("kvm: failed to allocate vcpu's emulator\n");
6470 return NULL;
6471 }
6472
6473 ctxt->vcpu = vcpu;
6474 ctxt->ops = &emulate_ops;
6475 vcpu->arch.emulate_ctxt = ctxt;
6476
6477 return ctxt;
6478}
6479
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006480static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
6481{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006482 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006483 int cs_db, cs_l;
6484
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006485 kvm_x86_ops.get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006486
Sean Christopherson744e6992020-02-18 15:03:09 -08006487 ctxt->gpa_available = false;
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09006488 ctxt->eflags = kvm_get_rflags(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02006489 ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0;
6490
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09006491 ctxt->eip = kvm_rip_read(vcpu);
6492 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
6493 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
Nadav Amit42bf5492014-04-18 07:11:34 +03006494 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09006495 cs_db ? X86EMUL_MODE_PROT32 :
6496 X86EMUL_MODE_PROT16;
Paolo Bonzinia5845392015-04-01 18:18:53 +02006497 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006498 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
6499 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
Takuya Yoshikawaadf52232011-05-25 11:06:16 +09006500
Avi Kivitydd856ef2012-08-27 23:46:17 +03006501 init_decode_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006502 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006503}
6504
Sean Christopherson9497e1f2019-08-27 14:40:36 -07006505void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
Mohammed Gamal63995652010-09-19 14:34:06 +02006506{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006507 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal63995652010-09-19 14:34:06 +02006508 int ret;
6509
6510 init_emulate_ctxt(vcpu);
6511
Avi Kivity9dac77f2011-06-01 15:34:25 +03006512 ctxt->op_bytes = 2;
6513 ctxt->ad_bytes = 2;
6514 ctxt->_eip = ctxt->eip + inc_eip;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006515 ret = emulate_int_real(ctxt, irq);
Mohammed Gamal63995652010-09-19 14:34:06 +02006516
Sean Christopherson9497e1f2019-08-27 14:40:36 -07006517 if (ret != X86EMUL_CONTINUE) {
6518 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
6519 } else {
6520 ctxt->eip = ctxt->_eip;
6521 kvm_rip_write(vcpu, ctxt->eip);
6522 kvm_set_rflags(vcpu, ctxt->eflags);
6523 }
Mohammed Gamal63995652010-09-19 14:34:06 +02006524}
6525EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
6526
Liran Alone2366172018-03-12 13:12:49 +02006527static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006528{
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006529 ++vcpu->stat.insn_emulation_fail;
6530 trace_kvm_emulate_insn_failed(vcpu);
Liran Alone2366172018-03-12 13:12:49 +02006531
Sean Christopherson42cbf062019-08-27 14:40:31 -07006532 if (emulation_type & EMULTYPE_VMWARE_GP) {
6533 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006534 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07006535 }
Liran Alone2366172018-03-12 13:12:49 +02006536
Sean Christopherson738fece2019-08-27 14:40:34 -07006537 if (emulation_type & EMULTYPE_SKIP) {
6538 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6539 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6540 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006541 return 0;
Sean Christopherson738fece2019-08-27 14:40:34 -07006542 }
6543
Sean Christopherson22da61c2019-08-27 14:40:28 -07006544 kvm_queue_exception(vcpu, UD_VECTOR);
6545
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006546 if (!is_guest_mode(vcpu) && kvm_x86_ops.get_cpl(vcpu) == 0) {
Joerg Roedelfc3a9152010-11-29 17:51:49 +01006547 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6548 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6549 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006550 return 0;
Joerg Roedelfc3a9152010-11-29 17:51:49 +01006551 }
Liran Alone2366172018-03-12 13:12:49 +02006552
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006553 return 1;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006554}
6555
Sean Christopherson736c2912019-12-06 15:57:14 -08006556static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
Gleb Natapov991eebf2013-04-11 12:10:51 +03006557 bool write_fault_to_shadow_pgtable,
6558 int emulation_type)
Gleb Natapova6f177e2010-07-08 12:41:12 +03006559{
Sean Christopherson736c2912019-12-06 15:57:14 -08006560 gpa_t gpa = cr2_or_gpa;
Dan Williamsba049e92016-01-15 16:56:11 -08006561 kvm_pfn_t pfn;
Gleb Natapova6f177e2010-07-08 12:41:12 +03006562
Sean Christopherson92daa482020-02-18 15:03:08 -08006563 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Gleb Natapov991eebf2013-04-11 12:10:51 +03006564 return false;
6565
Sean Christopherson92daa482020-02-18 15:03:08 -08006566 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
6567 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07006568 return false;
6569
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02006570 if (!vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08006571 /*
6572 * Write permission should be allowed since only
6573 * write access need to be emulated.
6574 */
Sean Christopherson736c2912019-12-06 15:57:14 -08006575 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Gleb Natapov68be0802010-07-14 19:05:45 +03006576
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08006577 /*
6578 * If the mapping is invalid in guest, let cpu retry
6579 * it to generate fault.
6580 */
6581 if (gpa == UNMAPPED_GVA)
6582 return true;
6583 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03006584
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08006585 /*
6586 * Do not retry the unhandleable instruction if it faults on the
6587 * readonly host memory, otherwise it will goto a infinite loop:
6588 * retry instruction -> write #PF -> emulation fail -> retry
6589 * instruction -> ...
6590 */
6591 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08006592
6593 /*
6594 * If the instruction failed on the error pfn, it can not be fixed,
6595 * report the error to userspace.
6596 */
6597 if (is_error_noslot_pfn(pfn))
6598 return false;
6599
6600 kvm_release_pfn_clean(pfn);
6601
6602 /* The instructions are well-emulated on direct mmu. */
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02006603 if (vcpu->arch.mmu->direct_map) {
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08006604 unsigned int indirect_shadow_pages;
6605
6606 spin_lock(&vcpu->kvm->mmu_lock);
6607 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
6608 spin_unlock(&vcpu->kvm->mmu_lock);
6609
6610 if (indirect_shadow_pages)
6611 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
6612
Gleb Natapova6f177e2010-07-08 12:41:12 +03006613 return true;
Xiao Guangrong8e3d9d02012-08-21 10:57:42 +08006614 }
Gleb Natapova6f177e2010-07-08 12:41:12 +03006615
Xiao Guangrong95b3cf62013-01-13 23:46:52 +08006616 /*
6617 * if emulation was due to access to shadowed page table
6618 * and it failed try to unshadow page and re-enter the
6619 * guest to let CPU execute the instruction.
6620 */
6621 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong93c05d32013-01-13 23:49:07 +08006622
6623 /*
6624 * If the access faults on its page table, it can not
6625 * be fixed by unprotecting shadow page and it should
6626 * be reported to userspace.
6627 */
6628 return !write_fault_to_shadow_pgtable;
Gleb Natapova6f177e2010-07-08 12:41:12 +03006629}
6630
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006631static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
Sean Christopherson736c2912019-12-06 15:57:14 -08006632 gpa_t cr2_or_gpa, int emulation_type)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006633{
6634 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Sean Christopherson736c2912019-12-06 15:57:14 -08006635 unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006636
6637 last_retry_eip = vcpu->arch.last_retry_eip;
6638 last_retry_addr = vcpu->arch.last_retry_addr;
6639
6640 /*
6641 * If the emulation is caused by #PF and it is non-page_table
6642 * writing instruction, it means the VM-EXIT is caused by shadow
6643 * page protected, we can zap the shadow page and retry this
6644 * instruction directly.
6645 *
6646 * Note: if the guest uses a non-page-table modifying instruction
6647 * on the PDE that points to the instruction, then we will unmap
6648 * the instruction and go to an infinite loop. So, we cache the
6649 * last retried eip and the last fault address, if we meet the eip
6650 * and the address again, we can break out of the potential infinite
6651 * loop.
6652 */
6653 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
6654
Sean Christopherson92daa482020-02-18 15:03:08 -08006655 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006656 return false;
6657
Sean Christopherson92daa482020-02-18 15:03:08 -08006658 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
6659 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
Sean Christopherson6c3dfeb2018-08-23 13:56:51 -07006660 return false;
6661
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006662 if (x86_page_table_writing_insn(ctxt))
6663 return false;
6664
Sean Christopherson736c2912019-12-06 15:57:14 -08006665 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa)
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006666 return false;
6667
6668 vcpu->arch.last_retry_eip = ctxt->eip;
Sean Christopherson736c2912019-12-06 15:57:14 -08006669 vcpu->arch.last_retry_addr = cr2_or_gpa;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006670
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +02006671 if (!vcpu->arch.mmu->direct_map)
Sean Christopherson736c2912019-12-06 15:57:14 -08006672 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006673
Xiao Guangrong22368022013-01-13 23:44:12 +08006674 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006675
6676 return true;
6677}
6678
Gleb Natapov716d51a2012-09-03 15:24:26 +03006679static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
6680static int complete_emulated_pio(struct kvm_vcpu *vcpu);
6681
Paolo Bonzini64d60672015-05-07 11:36:11 +02006682static void kvm_smm_changed(struct kvm_vcpu *vcpu)
Paolo Bonzinia5845392015-04-01 18:18:53 +02006683{
Paolo Bonzini64d60672015-05-07 11:36:11 +02006684 if (!(vcpu->arch.hflags & HF_SMM_MASK)) {
Paolo Bonzini660a5d52015-05-05 11:50:23 +02006685 /* This is a good place to trace that we are exiting SMM. */
6686 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false);
6687
Paolo Bonzinic43203c2016-06-01 22:26:00 +02006688 /* Process a latched INIT or SMI, if any. */
6689 kvm_make_request(KVM_REQ_EVENT, vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006690 }
Paolo Bonzini699023e2015-05-18 15:03:39 +02006691
6692 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02006693}
6694
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006695static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
6696 unsigned long *db)
6697{
6698 u32 dr6 = 0;
6699 int i;
6700 u32 enable, rwlen;
6701
6702 enable = dr7;
6703 rwlen = dr7 >> 16;
6704 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
6705 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
6706 dr6 |= (1 << i);
6707 return dr6;
6708}
6709
Sean Christopherson120c2c42019-08-27 14:40:29 -07006710static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
Paolo Bonzini663f4c62013-06-25 18:32:07 +02006711{
6712 struct kvm_run *kvm_run = vcpu->run;
6713
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02006714 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
6715 kvm_run->debug.arch.dr6 = DR6_BS | DR6_FIXED_1 | DR6_RTM;
Peter Xud5d260c2020-05-05 16:49:59 -04006716 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02006717 kvm_run->debug.arch.exception = DB_VECTOR;
6718 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006719 return 0;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02006720 }
Sean Christopherson120c2c42019-08-27 14:40:29 -07006721 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006722 return 1;
Paolo Bonzini663f4c62013-06-25 18:32:07 +02006723}
6724
Kyle Huey6affcbe2016-11-29 12:40:40 -08006725int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
6726{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006727 unsigned long rflags = kvm_x86_ops.get_rflags(vcpu);
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02006728 int r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006729
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006730 r = kvm_x86_ops.skip_emulated_instruction(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006731 if (unlikely(!r))
Vitaly Kuznetsovf8ea7c62019-08-13 15:53:30 +02006732 return 0;
Paolo Bonzinic8401dd2017-06-07 15:13:14 +02006733
6734 /*
6735 * rflags is the old, "raw" value of the flags. The new value has
6736 * not been saved yet.
6737 *
6738 * This is correct even for TF set by the guest, because "the
6739 * processor will not generate this exception after the instruction
6740 * that sets the TF flag".
6741 */
6742 if (unlikely(rflags & X86_EFLAGS_TF))
Sean Christopherson120c2c42019-08-27 14:40:29 -07006743 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006744 return r;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006745}
6746EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
6747
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006748static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
6749{
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006750 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
6751 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
Nadav Amit82b32772014-11-02 11:54:45 +02006752 struct kvm_run *kvm_run = vcpu->run;
6753 unsigned long eip = kvm_get_linear_rip(vcpu);
6754 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006755 vcpu->arch.guest_debug_dr7,
6756 vcpu->arch.eff_db);
6757
6758 if (dr6 != 0) {
Nadav Amit6f43ed02014-07-15 17:37:46 +03006759 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM;
Nadav Amit82b32772014-11-02 11:54:45 +02006760 kvm_run->debug.arch.pc = eip;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006761 kvm_run->debug.arch.exception = DB_VECTOR;
6762 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006763 *r = 0;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006764 return true;
6765 }
6766 }
6767
Nadav Amit4161a562014-07-17 01:19:31 +03006768 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
6769 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
Nadav Amit82b32772014-11-02 11:54:45 +02006770 unsigned long eip = kvm_get_linear_rip(vcpu);
6771 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006772 vcpu->arch.dr7,
6773 vcpu->arch.db);
6774
6775 if (dr6 != 0) {
Paolo Bonzini4d5523c2020-05-05 07:33:20 -04006776 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006777 *r = 1;
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006778 return true;
6779 }
6780 }
6781
6782 return false;
6783}
6784
Liran Alon04789b62018-03-12 13:12:50 +02006785static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt)
6786{
Arbel Moshe2d7921c2018-03-12 13:12:53 +02006787 switch (ctxt->opcode_len) {
6788 case 1:
6789 switch (ctxt->b) {
6790 case 0xe4: /* IN */
6791 case 0xe5:
6792 case 0xec:
6793 case 0xed:
6794 case 0xe6: /* OUT */
6795 case 0xe7:
6796 case 0xee:
6797 case 0xef:
6798 case 0x6c: /* INS */
6799 case 0x6d:
6800 case 0x6e: /* OUTS */
6801 case 0x6f:
6802 return true;
6803 }
6804 break;
6805 case 2:
6806 switch (ctxt->b) {
6807 case 0x33: /* RDPMC */
6808 return true;
6809 }
6810 break;
Liran Alon04789b62018-03-12 13:12:50 +02006811 }
6812
6813 return false;
6814}
6815
Sean Christopherson736c2912019-12-06 15:57:14 -08006816int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
6817 int emulation_type, void *insn, int insn_len)
Carsten Ottebbd9b642007-10-30 18:44:21 +01006818{
Gleb Natapov95cb2292010-04-28 19:15:43 +03006819 int r;
Sean Christophersonc9b8b072020-02-18 15:29:48 -08006820 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006821 bool writeback = true;
Xiao Guangrong93c05d32013-01-13 23:49:07 +08006822 bool write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006823
Paolo Bonzinic595cee2018-07-02 13:07:14 +02006824 vcpu->arch.l1tf_flush_l1d = true;
6825
Xiao Guangrong93c05d32013-01-13 23:49:07 +08006826 /*
6827 * Clear write_fault_to_shadow_pgtable here to ensure it is
6828 * never reused.
6829 */
6830 vcpu->arch.write_fault_to_shadow_pgtable = false;
Avi Kivity26eef702008-07-03 14:59:22 +03006831 kvm_clear_exception_queue(vcpu);
Gleb Natapov8d7d81022011-04-12 12:36:21 +03006832
Sheng Yang571008d2008-01-02 14:49:22 +08006833 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Mohammed Gamal8ec47222010-08-16 00:47:01 +03006834 init_emulate_ctxt(vcpu);
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006835
6836 /*
6837 * We will reenter on the same instruction since
6838 * we do not set complete_userspace_io. This does not
6839 * handle watchpoints yet, those would be handled in
6840 * the emulate_ops.
6841 */
Vitaly Kuznetsovd391f122018-01-25 16:37:07 +01006842 if (!(emulation_type & EMULTYPE_SKIP) &&
6843 kvm_vcpu_check_breakpoint(vcpu, &r))
Paolo Bonzini4a1e10d2013-05-30 11:48:30 +02006844 return r;
6845
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006846 ctxt->interruptibility = 0;
6847 ctxt->have_exception = false;
Paolo Bonzinie0ad0b42014-08-20 10:08:23 +02006848 ctxt->exception.vector = -1;
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006849 ctxt->perm_ok = false;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006850
Borislav Petkovb51e9742013-09-22 16:44:52 +02006851 ctxt->ud = emulation_type & EMULTYPE_TRAP_UD;
Avi Kivity40059962011-02-01 16:32:04 +02006852
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006853 r = x86_decode_insn(ctxt, insn, insn_len);
Joerg Roedeld47f00a2010-09-10 17:30:56 +02006854
Avi Kivitye46479f2010-04-11 13:05:16 +03006855 trace_kvm_emulate_insn_start(vcpu);
Avi Kivityf2b57562007-11-18 15:17:51 +02006856 ++vcpu->stat.insn_emulation;
Takuya Yoshikawa1d2887e2011-07-30 18:03:34 +09006857 if (r != EMULATION_OK) {
Sean Christophersonb4000602019-08-27 14:40:32 -07006858 if ((emulation_type & EMULTYPE_TRAP_UD) ||
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07006859 (emulation_type & EMULTYPE_TRAP_UD_FORCED)) {
6860 kvm_queue_exception(vcpu, UD_VECTOR);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006861 return 1;
Sean Christophersonc83fad65e2019-08-27 14:40:33 -07006862 }
Sean Christopherson736c2912019-12-06 15:57:14 -08006863 if (reexecute_instruction(vcpu, cr2_or_gpa,
6864 write_fault_to_spt,
6865 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006866 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00006867 if (ctxt->have_exception) {
Jan Dakinevichc8848ce2019-08-27 13:07:08 +00006868 /*
6869 * #UD should result in just EMULATION_FAILED, and trap-like
6870 * exception should not be encountered during decode.
6871 */
6872 WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR ||
6873 exception_type(ctxt->exception.vector) == EXCPT_TRAP);
Jan Dakinevich8530a792019-08-27 13:07:09 +00006874 inject_emulated_exception(vcpu);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006875 return 1;
Jan Dakinevich8530a792019-08-27 13:07:09 +00006876 }
Liran Alone2366172018-03-12 13:12:49 +02006877 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006878 }
6879 }
6880
Sean Christopherson42cbf062019-08-27 14:40:31 -07006881 if ((emulation_type & EMULTYPE_VMWARE_GP) &&
6882 !is_vmware_backdoor_opcode(ctxt)) {
6883 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006884 return 1;
Sean Christopherson42cbf062019-08-27 14:40:31 -07006885 }
Liran Alon04789b62018-03-12 13:12:50 +02006886
Sean Christopherson1957aa62019-08-27 14:40:39 -07006887 /*
6888 * Note, EMULTYPE_SKIP is intended for use *only* by vendor callbacks
6889 * for kvm_skip_emulated_instruction(). The caller is responsible for
6890 * updating interruptibility state and injecting single-step #DBs.
6891 */
Gleb Natapovba8afb62009-04-12 13:36:57 +03006892 if (emulation_type & EMULTYPE_SKIP) {
Avi Kivity9dac77f2011-06-01 15:34:25 +03006893 kvm_rip_write(vcpu, ctxt->_eip);
Nadav Amitbb663c72014-07-21 14:37:26 +03006894 if (ctxt->eflags & X86_EFLAGS_RF)
6895 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006896 return 1;
Gleb Natapovba8afb62009-04-12 13:36:57 +03006897 }
6898
Sean Christopherson736c2912019-12-06 15:57:14 -08006899 if (retry_instruction(ctxt, cr2_or_gpa, emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006900 return 1;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08006901
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006902 /* this is needed for vmware backdoor interface to work since it
Gleb Natapov4d2179e2010-04-28 19:15:42 +03006903 changes registers values during IO operation */
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006904 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
6905 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
Avi Kivitydd856ef2012-08-27 23:46:17 +03006906 emulator_invalidate_register_cache(ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006907 }
Gleb Natapov4d2179e2010-04-28 19:15:42 +03006908
Gleb Natapov5cd21912010-03-18 15:20:26 +02006909restart:
Sean Christopherson92daa482020-02-18 15:03:08 -08006910 if (emulation_type & EMULTYPE_PF) {
6911 /* Save the faulting GPA (cr2) in the address field */
6912 ctxt->exception.address = cr2_or_gpa;
6913
6914 /* With shadow page tables, cr2 contains a GVA or nGPA. */
6915 if (vcpu->arch.mmu->direct_map) {
Sean Christopherson744e6992020-02-18 15:03:09 -08006916 ctxt->gpa_available = true;
6917 ctxt->gpa_val = cr2_or_gpa;
Sean Christopherson92daa482020-02-18 15:03:08 -08006918 }
6919 } else {
6920 /* Sanitize the address out of an abundance of paranoia. */
6921 ctxt->exception.address = 0;
6922 }
Tom Lendacky0f89b202016-12-14 14:59:23 -05006923
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006924 r = x86_emulate_insn(ctxt);
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006925
Joerg Roedel775fde82011-04-04 12:39:24 +02006926 if (r == EMULATION_INTERCEPTED)
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006927 return 1;
Joerg Roedel775fde82011-04-04 12:39:24 +02006928
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03006929 if (r == EMULATION_FAILED) {
Sean Christopherson736c2912019-12-06 15:57:14 -08006930 if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt,
Gleb Natapov991eebf2013-04-11 12:10:51 +03006931 emulation_type))
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006932 return 1;
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +03006933
Liran Alone2366172018-03-12 13:12:49 +02006934 return handle_emulation_failure(vcpu, emulation_type);
Carsten Ottebbd9b642007-10-30 18:44:21 +01006935 }
6936
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006937 if (ctxt->have_exception) {
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006938 r = 1;
Paolo Bonzinief54bcf2014-09-04 19:46:15 +02006939 if (inject_emulated_exception(vcpu))
6940 return r;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03006941 } else if (vcpu->arch.pio.count) {
Paolo Bonzini0912c972013-08-27 15:41:43 +02006942 if (!vcpu->arch.pio.in) {
6943 /* FIXME: return into emulator if single-stepping. */
Gleb Natapove85d28f2010-07-29 15:11:52 +03006944 vcpu->arch.pio.count = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02006945 } else {
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006946 writeback = false;
Gleb Natapov716d51a2012-09-03 15:24:26 +03006947 vcpu->arch.complete_userspace_io = complete_emulated_pio;
6948 }
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006949 r = 0;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006950 } else if (vcpu->mmio_needed) {
Sean Christophersonbc8a0aa2019-08-27 14:40:27 -07006951 ++vcpu->stat.mmio_exits;
6952
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006953 if (!vcpu->mmio_is_write)
6954 writeback = false;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006955 r = 0;
Gleb Natapov716d51a2012-09-03 15:24:26 +03006956 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006957 } else if (r == EMULATION_RESTART)
Gleb Natapove85d28f2010-07-29 15:11:52 +03006958 goto restart;
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +03006959 else
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006960 r = 1;
Gleb Natapove85d28f2010-07-29 15:11:52 +03006961
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006962 if (writeback) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006963 unsigned long rflags = kvm_x86_ops.get_rflags(vcpu);
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09006964 toggle_interruptibility(vcpu, ctxt->interruptibility);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006965 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
Nadav Amit38827db2014-11-02 11:54:53 +02006966 if (!ctxt->have_exception ||
Sean Christopherson75ee23b2019-08-23 13:55:44 -07006967 exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
6968 kvm_rip_write(vcpu, ctxt->eip);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07006969 if (r && ctxt->tf)
Sean Christopherson120c2c42019-08-27 14:40:29 -07006970 r = kvm_vcpu_do_singlestep(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07006971 if (kvm_x86_ops.update_emulated_instruction)
6972 kvm_x86_ops.update_emulated_instruction(vcpu);
Nadav Amit38827db2014-11-02 11:54:53 +02006973 __kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson75ee23b2019-08-23 13:55:44 -07006974 }
Paolo Bonzini6addfc42014-03-27 11:29:28 +01006975
6976 /*
6977 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
6978 * do nothing, and it will be requested again as soon as
6979 * the shadow expires. But we still need to check here,
6980 * because POPF has no interrupt shadow.
6981 */
6982 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
6983 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02006984 } else
6985 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
Gleb Natapov3457e412010-04-28 19:15:38 +03006986
Gleb Natapove85d28f2010-07-29 15:11:52 +03006987 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01006988}
Sean Christophersonc60658d2018-08-23 13:56:53 -07006989
6990int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type)
6991{
6992 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
6993}
6994EXPORT_SYMBOL_GPL(kvm_emulate_instruction);
6995
6996int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
6997 void *insn, int insn_len)
6998{
6999 return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len);
7000}
7001EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer);
Carsten Ottebbd9b642007-10-30 18:44:21 +01007002
Sean Christopherson8764ed52019-04-29 07:04:15 -07007003static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu)
7004{
7005 vcpu->arch.pio.count = 0;
7006 return 1;
7007}
7008
Sean Christopherson45def772019-03-11 20:01:05 -07007009static int complete_fast_pio_out(struct kvm_vcpu *vcpu)
7010{
7011 vcpu->arch.pio.count = 0;
7012
7013 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip)))
7014 return 1;
7015
7016 return kvm_skip_emulated_instruction(vcpu);
7017}
7018
Sean Christophersondca7f122018-03-08 08:57:27 -08007019static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size,
7020 unsigned short port)
Carsten Ottede7d7892007-10-30 18:44:25 +01007021{
Sean Christophersonde3cd112019-04-30 10:36:17 -07007022 unsigned long val = kvm_rax_read(vcpu);
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007023 int ret = emulator_pio_out(vcpu, size, port, &val, 1);
7024
Sean Christopherson8764ed52019-04-29 07:04:15 -07007025 if (ret)
7026 return ret;
Sean Christopherson45def772019-03-11 20:01:05 -07007027
Sean Christopherson8764ed52019-04-29 07:04:15 -07007028 /*
7029 * Workaround userspace that relies on old KVM behavior of %rip being
7030 * incremented prior to exiting to userspace to handle "OUT 0x7e".
7031 */
7032 if (port == 0x7e &&
7033 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) {
7034 vcpu->arch.complete_userspace_io =
7035 complete_fast_pio_out_port_0x7e;
7036 kvm_skip_emulated_instruction(vcpu);
7037 } else {
Sean Christopherson45def772019-03-11 20:01:05 -07007038 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
7039 vcpu->arch.complete_userspace_io = complete_fast_pio_out;
7040 }
Sean Christopherson8764ed52019-04-29 07:04:15 -07007041 return 0;
Carsten Ottede7d7892007-10-30 18:44:25 +01007042}
Carsten Ottede7d7892007-10-30 18:44:25 +01007043
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007044static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
7045{
7046 unsigned long val;
7047
7048 /* We should only ever be called with arch.pio.count equal to 1 */
7049 BUG_ON(vcpu->arch.pio.count != 1);
7050
Sean Christopherson45def772019-03-11 20:01:05 -07007051 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) {
7052 vcpu->arch.pio.count = 0;
7053 return 1;
7054 }
7055
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007056 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07007057 val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007058
7059 /*
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007060 * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007061 * the copy and tracing
7062 */
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007063 emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1);
Sean Christophersonde3cd112019-04-30 10:36:17 -07007064 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007065
Sean Christopherson45def772019-03-11 20:01:05 -07007066 return kvm_skip_emulated_instruction(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007067}
7068
Sean Christophersondca7f122018-03-08 08:57:27 -08007069static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size,
7070 unsigned short port)
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007071{
7072 unsigned long val;
7073 int ret;
7074
7075 /* For size less than 4 we merge, else we zero extend */
Sean Christophersonde3cd112019-04-30 10:36:17 -07007076 val = (size < 4) ? kvm_rax_read(vcpu) : 0;
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007077
Sean Christopherson2e3bb4d2020-02-18 15:29:41 -08007078 ret = emulator_pio_in(vcpu, size, port, &val, 1);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007079 if (ret) {
Sean Christophersonde3cd112019-04-30 10:36:17 -07007080 kvm_rax_write(vcpu, val);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007081 return ret;
7082 }
7083
Sean Christopherson45def772019-03-11 20:01:05 -07007084 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007085 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
7086
7087 return 0;
7088}
Sean Christophersondca7f122018-03-08 08:57:27 -08007089
7090int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in)
7091{
Sean Christopherson45def772019-03-11 20:01:05 -07007092 int ret;
Sean Christophersondca7f122018-03-08 08:57:27 -08007093
Sean Christophersondca7f122018-03-08 08:57:27 -08007094 if (in)
Sean Christopherson45def772019-03-11 20:01:05 -07007095 ret = kvm_fast_pio_in(vcpu, size, port);
Sean Christophersondca7f122018-03-08 08:57:27 -08007096 else
Sean Christopherson45def772019-03-11 20:01:05 -07007097 ret = kvm_fast_pio_out(vcpu, size, port);
7098 return ret && kvm_skip_emulated_instruction(vcpu);
Sean Christophersondca7f122018-03-08 08:57:27 -08007099}
7100EXPORT_SYMBOL_GPL(kvm_fast_pio);
Tom Lendacky8370c3d2016-11-23 12:01:50 -05007101
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00007102static int kvmclock_cpu_down_prep(unsigned int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007103{
Tejun Heo0a3aee02010-12-18 16:28:55 +01007104 __this_cpu_write(cpu_tsc_khz, 0);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00007105 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10007106}
7107
7108static void tsc_khz_changed(void *data)
7109{
7110 struct cpufreq_freqs *freq = data;
7111 unsigned long khz = 0;
7112
7113 if (data)
7114 khz = freq->new;
7115 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
7116 khz = cpufreq_quick_get(raw_smp_processor_id());
7117 if (!khz)
7118 khz = tsc_khz;
Tejun Heo0a3aee02010-12-18 16:28:55 +01007119 __this_cpu_write(cpu_tsc_khz, khz);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007120}
7121
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01007122#ifdef CONFIG_X86_64
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007123static void kvm_hyperv_tsc_notifier(void)
7124{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007125 struct kvm *kvm;
7126 struct kvm_vcpu *vcpu;
7127 int cpu;
7128
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007129 mutex_lock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007130 list_for_each_entry(kvm, &vm_list, vm_list)
7131 kvm_make_mclock_inprogress_request(kvm);
7132
7133 hyperv_stop_tsc_emulation();
7134
7135 /* TSC frequency always matches when on Hyper-V */
7136 for_each_present_cpu(cpu)
7137 per_cpu(cpu_tsc_khz, cpu) = tsc_khz;
7138 kvm_max_guest_tsc_khz = tsc_khz;
7139
7140 list_for_each_entry(kvm, &vm_list, vm_list) {
7141 struct kvm_arch *ka = &kvm->arch;
7142
7143 spin_lock(&ka->pvclock_gtod_sync_lock);
7144
7145 pvclock_update_vm_gtod_copy(kvm);
7146
7147 kvm_for_each_vcpu(cpu, vcpu, kvm)
7148 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
7149
7150 kvm_for_each_vcpu(cpu, vcpu, kvm)
7151 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
7152
7153 spin_unlock(&ka->pvclock_gtod_sync_lock);
7154 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007155 mutex_unlock(&kvm_lock);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007156}
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01007157#endif
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007158
Viresh Kumardf240142019-04-29 15:03:58 +05307159static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007160{
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007161 struct kvm *kvm;
7162 struct kvm_vcpu *vcpu;
7163 int i, send_ipi = 0;
7164
Zachary Amsden8cfdc002010-08-19 22:07:21 -10007165 /*
7166 * We allow guests to temporarily run on slowing clocks,
7167 * provided we notify them after, or to run on accelerating
7168 * clocks, provided we notify them before. Thus time never
7169 * goes backwards.
7170 *
7171 * However, we have a problem. We can't atomically update
7172 * the frequency of a given CPU from this function; it is
7173 * merely a notifier, which can be called from any CPU.
7174 * Changing the TSC frequency at arbitrary points in time
7175 * requires a recomputation of local variables related to
7176 * the TSC for each VCPU. We must flag these local variables
7177 * to be updated and be sure the update takes place with the
7178 * new frequency before any guests proceed.
7179 *
7180 * Unfortunately, the combination of hotplug CPU and frequency
7181 * change creates an intractable locking scenario; the order
7182 * of when these callouts happen is undefined with respect to
7183 * CPU hotplug, and they can race with each other. As such,
7184 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
7185 * undefined; you can actually have a CPU frequency change take
7186 * place in between the computation of X and the setting of the
7187 * variable. To protect against this problem, all updates of
7188 * the per_cpu tsc_khz variable are done in an interrupt
7189 * protected IPI, and all callers wishing to update the value
7190 * must wait for a synchronous IPI to complete (which is trivial
7191 * if the caller is on the CPU already). This establishes the
7192 * necessary total order on variable updates.
7193 *
7194 * Note that because a guest time update may take place
7195 * anytime after the setting of the VCPU's request bit, the
7196 * correct TSC value must be set before the request. However,
7197 * to ensure the update actually makes it to any guest which
7198 * starts running in hardware virtualization between the set
7199 * and the acquisition of the spinlock, we must also ping the
7200 * CPU after setting the request bit.
7201 *
7202 */
7203
Viresh Kumardf240142019-04-29 15:03:58 +05307204 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007205
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007206 mutex_lock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007207 list_for_each_entry(kvm, &vm_list, vm_list) {
Gleb Natapov988a2ca2009-06-09 15:56:29 +03007208 kvm_for_each_vcpu(i, vcpu, kvm) {
Viresh Kumardf240142019-04-29 15:03:58 +05307209 if (vcpu->cpu != cpu)
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007210 continue;
Zachary Amsdenc2855452010-09-18 14:38:15 -10007211 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007212 if (vcpu->cpu != raw_smp_processor_id())
Zachary Amsden8cfdc002010-08-19 22:07:21 -10007213 send_ipi = 1;
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007214 }
7215 }
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007216 mutex_unlock(&kvm_lock);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007217
7218 if (freq->old < freq->new && send_ipi) {
7219 /*
7220 * We upscale the frequency. Must make the guest
7221 * doesn't see old kvmclock values while running with
7222 * the new frequency, otherwise we risk the guest sees
7223 * time go backwards.
7224 *
7225 * In case we update the frequency for another cpu
7226 * (which might be in guest context) send an interrupt
7227 * to kick the cpu out of guest context. Next time
7228 * guest context is entered kvmclock will be updated,
7229 * so the guest will not see stale values.
7230 */
Viresh Kumardf240142019-04-29 15:03:58 +05307231 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007232 }
Viresh Kumardf240142019-04-29 15:03:58 +05307233}
7234
7235static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
7236 void *data)
7237{
7238 struct cpufreq_freqs *freq = data;
7239 int cpu;
7240
7241 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
7242 return 0;
7243 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
7244 return 0;
7245
7246 for_each_cpu(cpu, freq->policy->cpus)
7247 __kvmclock_cpufreq_notifier(freq, cpu);
7248
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007249 return 0;
7250}
7251
7252static struct notifier_block kvmclock_cpufreq_notifier_block = {
Zachary Amsden8cfdc002010-08-19 22:07:21 -10007253 .notifier_call = kvmclock_cpufreq_notifier
7254};
7255
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00007256static int kvmclock_cpu_online(unsigned int cpu)
Zachary Amsden8cfdc002010-08-19 22:07:21 -10007257{
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00007258 tsc_khz_changed(NULL);
7259 return 0;
Zachary Amsden8cfdc002010-08-19 22:07:21 -10007260}
7261
Zachary Amsdenb820cc02009-09-29 11:38:34 -10007262static void kvm_timer_init(void)
7263{
Zachary Amsdenc2855452010-09-18 14:38:15 -10007264 max_tsc_khz = tsc_khz;
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05307265
Zachary Amsdenb820cc02009-09-29 11:38:34 -10007266 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
Zachary Amsdenc2855452010-09-18 14:38:15 -10007267#ifdef CONFIG_CPU_FREQ
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01007268 struct cpufreq_policy *policy;
Borislav Petkov758f5882016-09-04 19:13:57 +02007269 int cpu;
7270
Avi Kivity3e26f232010-12-16 12:16:34 +02007271 cpu = get_cpu();
Paolo Bonziniaaec7c02020-02-28 10:49:10 +01007272 policy = cpufreq_cpu_get(cpu);
Wanpeng Li9a119972020-03-02 15:15:36 +08007273 if (policy) {
7274 if (policy->cpuinfo.max_freq)
7275 max_tsc_khz = policy->cpuinfo.max_freq;
7276 cpufreq_cpu_put(policy);
7277 }
Avi Kivity3e26f232010-12-16 12:16:34 +02007278 put_cpu();
Zachary Amsdenc2855452010-09-18 14:38:15 -10007279#endif
Zachary Amsdenb820cc02009-09-29 11:38:34 -10007280 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
7281 CPUFREQ_TRANSITION_NOTIFIER);
7282 }
Srivatsa S. Bhat460dd422014-03-11 02:09:01 +05307283
Thomas Gleixner73c1b412016-12-21 20:19:54 +01007284 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00007285 kvmclock_cpu_online, kvmclock_cpu_down_prep);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10007286}
7287
Andi Kleendd60d212017-07-25 17:20:32 -07007288DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
7289EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu);
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007290
Gleb Natapovf5132b02011-11-10 14:57:22 +02007291int kvm_is_in_guest(void)
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007292{
Alex,Shi086c9852011-10-20 15:34:01 +08007293 return __this_cpu_read(current_vcpu) != NULL;
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007294}
7295
7296static int kvm_is_user_mode(void)
7297{
7298 int user_mode = 3;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08007299
Alex,Shi086c9852011-10-20 15:34:01 +08007300 if (__this_cpu_read(current_vcpu))
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007301 user_mode = kvm_x86_ops.get_cpl(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08007302
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007303 return user_mode != 0;
7304}
7305
7306static unsigned long kvm_get_guest_ip(void)
7307{
7308 unsigned long ip = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08007309
Alex,Shi086c9852011-10-20 15:34:01 +08007310 if (__this_cpu_read(current_vcpu))
7311 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08007312
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007313 return ip;
7314}
7315
Luwei Kang8479e042019-02-18 19:26:07 -05007316static void kvm_handle_intel_pt_intr(void)
7317{
7318 struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu);
7319
7320 kvm_make_request(KVM_REQ_PMI, vcpu);
7321 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
7322 (unsigned long *)&vcpu->arch.pmu.global_status);
7323}
7324
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007325static struct perf_guest_info_callbacks kvm_guest_cbs = {
7326 .is_in_guest = kvm_is_in_guest,
7327 .is_user_mode = kvm_is_user_mode,
7328 .get_guest_ip = kvm_get_guest_ip,
Luwei Kang8479e042019-02-18 19:26:07 -05007329 .handle_intel_pt_intr = kvm_handle_intel_pt_intr,
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007330};
7331
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007332#ifdef CONFIG_X86_64
7333static void pvclock_gtod_update_fn(struct work_struct *work)
7334{
Marcelo Tosattid8281992012-11-27 23:29:01 -02007335 struct kvm *kvm;
7336
7337 struct kvm_vcpu *vcpu;
7338 int i;
7339
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007340 mutex_lock(&kvm_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02007341 list_for_each_entry(kvm, &vm_list, vm_list)
7342 kvm_for_each_vcpu(i, vcpu, kvm)
Guo Hui Liu105b21b2014-09-12 13:43:19 +08007343 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02007344 atomic_set(&kvm_guest_has_master_clock, 0);
Junaid Shahid0d9ce162019-01-03 17:14:28 -08007345 mutex_unlock(&kvm_lock);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007346}
7347
7348static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
7349
7350/*
7351 * Notification about pvclock gtod data update.
7352 */
7353static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
7354 void *priv)
7355{
7356 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
7357 struct timekeeper *tk = priv;
7358
7359 update_pvclock_gtod(tk);
7360
7361 /* disable master clock if host does not trust, or does not
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01007362 * use, TSC based clocksource.
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007363 */
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01007364 if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) &&
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007365 atomic_read(&kvm_guest_has_master_clock) != 0)
7366 queue_work(system_long_wq, &pvclock_gtod_work);
7367
7368 return 0;
7369}
7370
7371static struct notifier_block pvclock_gtod_notifier = {
7372 .notifier_call = pvclock_gtod_notify,
7373};
7374#endif
7375
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007376int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02007377{
Sean Christophersond008dfd2020-03-21 13:25:56 -07007378 struct kvm_x86_init_ops *ops = opaque;
Zachary Amsdenb820cc02009-09-29 11:38:34 -10007379 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007380
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007381 if (kvm_x86_ops.hardware_enable) {
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007382 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007383 r = -EEXIST;
7384 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007385 }
7386
7387 if (!ops->cpu_has_kvm_support()) {
Erwan Veluef935c252020-02-27 19:00:46 +01007388 pr_err_ratelimited("kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007389 r = -EOPNOTSUPP;
7390 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007391 }
7392 if (ops->disabled_by_bios()) {
Erwan Veluef935c252020-02-27 19:00:46 +01007393 pr_err_ratelimited("kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007394 r = -EOPNOTSUPP;
7395 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007396 }
7397
Marc Orrb666a4b2018-11-06 14:53:56 -08007398 /*
7399 * KVM explicitly assumes that the guest has an FPU and
7400 * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the
7401 * vCPU's FPU state as a fxregs_state struct.
7402 */
7403 if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) {
7404 printk(KERN_ERR "kvm: inadequate fpu\n");
7405 r = -EOPNOTSUPP;
7406 goto out;
7407 }
7408
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02007409 r = -ENOMEM;
Paolo Bonzinied8e4812018-12-21 11:25:59 +01007410 x86_fpu_cache = kmem_cache_create("x86_fpu", sizeof(struct fpu),
Marc Orrb666a4b2018-11-06 14:53:56 -08007411 __alignof__(struct fpu), SLAB_ACCOUNT,
7412 NULL);
7413 if (!x86_fpu_cache) {
7414 printk(KERN_ERR "kvm: failed to allocate cache for x86 fpu\n");
7415 goto out;
7416 }
7417
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007418 x86_emulator_cache = kvm_alloc_emulator_cache();
7419 if (!x86_emulator_cache) {
7420 pr_err("kvm: failed to allocate cache for x86 emulator\n");
7421 goto out_free_x86_fpu_cache;
7422 }
7423
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02007424 shared_msrs = alloc_percpu(struct kvm_shared_msrs);
7425 if (!shared_msrs) {
7426 printk(KERN_ERR "kvm: failed to allocate percpu kvm_shared_msrs\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007427 goto out_free_x86_emulator_cache;
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02007428 }
7429
Avi Kivity97db56c2008-01-13 13:23:56 +02007430 r = kvm_mmu_module_init();
7431 if (r)
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02007432 goto out_free_percpu;
Avi Kivity97db56c2008-01-13 13:23:56 +02007433
Sheng Yang7b523452008-04-25 21:13:50 +08007434 kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
Bandan Dasffb128c2016-07-12 18:18:49 -04007435 PT_DIRTY_MASK, PT64_NX_MASK, 0,
Tom Lendackyd0ec49d2017-07-17 16:10:27 -05007436 PT_PRESENT_MASK, 0, sme_me_mask);
Zachary Amsdenb820cc02009-09-29 11:38:34 -10007437 kvm_timer_init();
Gerd Hoffmannc8076602009-02-04 17:52:04 +01007438
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007439 perf_register_guest_info_callbacks(&kvm_guest_cbs);
7440
Sean Christophersoncfc48182020-03-02 15:56:23 -08007441 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
Dexuan Cui2acf9232010-06-10 11:27:12 +08007442 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
Sean Christophersoncfc48182020-03-02 15:56:23 -08007443 supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0;
7444 }
Dexuan Cui2acf9232010-06-10 11:27:12 +08007445
Gleb Natapovc5cc4212012-08-05 15:58:30 +03007446 kvm_lapic_init();
Wanpeng Li0c5f81d2019-07-06 09:26:51 +08007447 if (pi_inject_timer == -1)
7448 pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007449#ifdef CONFIG_X86_64
7450 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007451
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01007452 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007453 set_hv_tscchange_cb(kvm_hyperv_tsc_notifier);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007454#endif
7455
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007456 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007457
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02007458out_free_percpu:
7459 free_percpu(shared_msrs);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08007460out_free_x86_emulator_cache:
7461 kmem_cache_destroy(x86_emulator_cache);
Marc Orrb666a4b2018-11-06 14:53:56 -08007462out_free_x86_fpu_cache:
7463 kmem_cache_destroy(x86_fpu_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007464out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007465 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02007466}
Hollis Blanchard8776e512007-10-31 17:24:24 -05007467
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007468void kvm_arch_exit(void)
7469{
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007470#ifdef CONFIG_X86_64
Thomas Gleixner5fa4ec92018-01-31 09:41:40 +01007471 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
Vitaly Kuznetsov0092e432018-01-24 14:23:37 +01007472 clear_hv_tscchange_cb();
7473#endif
David Matlackcef84c32016-12-16 14:30:36 -08007474 kvm_lapic_exit();
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08007475 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
7476
Jan Kiszka888d2562009-04-17 19:24:58 +02007477 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
7478 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
7479 CPUFREQ_TRANSITION_NOTIFIER);
Sebastian Andrzej Siewior251a5fd2016-07-13 17:16:33 +00007480 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
Marcelo Tosatti16e8d742012-11-27 23:29:00 -02007481#ifdef CONFIG_X86_64
7482 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
7483#endif
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007484 kvm_x86_ops.hardware_enable = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007485 kvm_mmu_module_exit();
Marcelo Tosatti013f6a52013-01-03 11:41:39 -02007486 free_percpu(shared_msrs);
Marc Orrb666a4b2018-11-06 14:53:56 -08007487 kmem_cache_destroy(x86_fpu_cache);
Zhang Xiantao56c6d282007-11-18 20:43:21 +08007488}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08007489
Joel Schopp5cb56052015-03-02 13:43:31 -06007490int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
Hollis Blanchard8776e512007-10-31 17:24:24 -05007491{
7492 ++vcpu->stat.halt_exits;
Paolo Bonzini35754c92015-07-29 12:05:37 +02007493 if (lapic_in_kernel(vcpu)) {
Avi Kivitya4535292008-04-13 17:54:35 +03007494 vcpu->arch.mp_state = KVM_MP_STATE_HALTED;
Hollis Blanchard8776e512007-10-31 17:24:24 -05007495 return 1;
7496 } else {
7497 vcpu->run->exit_reason = KVM_EXIT_HLT;
7498 return 0;
7499 }
7500}
Joel Schopp5cb56052015-03-02 13:43:31 -06007501EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
7502
7503int kvm_emulate_halt(struct kvm_vcpu *vcpu)
7504{
Kyle Huey6affcbe2016-11-29 12:40:40 -08007505 int ret = kvm_skip_emulated_instruction(vcpu);
7506 /*
7507 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
7508 * KVM_EXIT_DEBUG here.
7509 */
7510 return kvm_vcpu_halt(vcpu) && ret;
Joel Schopp5cb56052015-03-02 13:43:31 -06007511}
Hollis Blanchard8776e512007-10-31 17:24:24 -05007512EXPORT_SYMBOL_GPL(kvm_emulate_halt);
7513
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01007514#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02007515static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
7516 unsigned long clock_type)
7517{
7518 struct kvm_clock_pairing clock_pairing;
Arnd Bergmann899a31f2018-04-23 10:04:26 +02007519 struct timespec64 ts;
Paolo Bonzini80fbd892017-02-08 10:57:24 +01007520 u64 cycle;
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02007521 int ret;
7522
7523 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
7524 return -KVM_EOPNOTSUPP;
7525
7526 if (kvm_get_walltime_and_clockread(&ts, &cycle) == false)
7527 return -KVM_EOPNOTSUPP;
7528
7529 clock_pairing.sec = ts.tv_sec;
7530 clock_pairing.nsec = ts.tv_nsec;
7531 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
7532 clock_pairing.flags = 0;
Liran Alonbcbfbd82018-11-08 00:43:06 +02007533 memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad));
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02007534
7535 ret = 0;
7536 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
7537 sizeof(struct kvm_clock_pairing)))
7538 ret = -KVM_EFAULT;
7539
7540 return ret;
7541}
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01007542#endif
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02007543
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307544/*
7545 * kvm_pv_kick_cpu_op: Kick a vcpu.
7546 *
7547 * @apicid - apicid of vcpu to be kicked.
7548 */
7549static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
7550{
Raghavendra K T24d21662013-08-26 14:18:35 +05307551 struct kvm_lapic_irq lapic_irq;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307552
Peter Xu150a84f2019-12-04 20:07:21 +01007553 lapic_irq.shorthand = APIC_DEST_NOSHORT;
Peter Xuc96001c2019-12-04 20:07:18 +01007554 lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
Longpeng(Mike)ebd28fc2017-08-02 11:20:51 +08007555 lapic_irq.level = 0;
Raghavendra K T24d21662013-08-26 14:18:35 +05307556 lapic_irq.dest_id = apicid;
James Sullivan93bbf0b2015-03-18 19:26:03 -06007557 lapic_irq.msi_redir_hint = false;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307558
Raghavendra K T24d21662013-08-26 14:18:35 +05307559 lapic_irq.delivery_mode = APIC_DM_REMRD;
Xiubo Li795a1492015-03-13 17:39:44 +08007560 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307561}
7562
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06007563bool kvm_apicv_activated(struct kvm *kvm)
7564{
7565 return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0);
7566}
7567EXPORT_SYMBOL_GPL(kvm_apicv_activated);
7568
7569void kvm_apicv_init(struct kvm *kvm, bool enable)
7570{
7571 if (enable)
7572 clear_bit(APICV_INHIBIT_REASON_DISABLE,
7573 &kvm->arch.apicv_inhibit_reasons);
7574 else
7575 set_bit(APICV_INHIBIT_REASON_DISABLE,
7576 &kvm->arch.apicv_inhibit_reasons);
7577}
7578EXPORT_SYMBOL_GPL(kvm_apicv_init);
7579
Wanpeng Li71506292019-06-11 20:23:49 +08007580static void kvm_sched_yield(struct kvm *kvm, unsigned long dest_id)
7581{
7582 struct kvm_vcpu *target = NULL;
7583 struct kvm_apic_map *map;
7584
7585 rcu_read_lock();
7586 map = rcu_dereference(kvm->arch.apic_map);
7587
7588 if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id])
7589 target = map->phys_map[dest_id]->vcpu;
7590
7591 rcu_read_unlock();
7592
Wanpeng Li266e85a2019-07-24 17:43:13 +08007593 if (target && READ_ONCE(target->ready))
Wanpeng Li71506292019-06-11 20:23:49 +08007594 kvm_vcpu_yield_to(target);
7595}
7596
Hollis Blanchard8776e512007-10-31 17:24:24 -05007597int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
7598{
7599 unsigned long nr, a0, a1, a2, a3, ret;
Marian Rotariu6356ee02018-04-30 12:23:01 +03007600 int op_64_bit;
Hollis Blanchard8776e512007-10-31 17:24:24 -05007601
Radim Krčmář696ca772018-05-24 17:50:56 +02007602 if (kvm_hv_hypercall_enabled(vcpu->kvm))
7603 return kvm_hv_hypercall(vcpu);
Gleb Natapov55cd8e52010-01-17 15:51:22 +02007604
Sean Christophersonde3cd112019-04-30 10:36:17 -07007605 nr = kvm_rax_read(vcpu);
7606 a0 = kvm_rbx_read(vcpu);
7607 a1 = kvm_rcx_read(vcpu);
7608 a2 = kvm_rdx_read(vcpu);
7609 a3 = kvm_rsi_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05007610
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007611 trace_kvm_hypercall(nr, a0, a1, a2, a3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04007612
Nadav Amita449c7a2014-06-18 17:19:24 +03007613 op_64_bit = is_64_bit_mode(vcpu);
7614 if (!op_64_bit) {
Hollis Blanchard8776e512007-10-31 17:24:24 -05007615 nr &= 0xFFFFFFFF;
7616 a0 &= 0xFFFFFFFF;
7617 a1 &= 0xFFFFFFFF;
7618 a2 &= 0xFFFFFFFF;
7619 a3 &= 0xFFFFFFFF;
7620 }
7621
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007622 if (kvm_x86_ops.get_cpl(vcpu) != 0) {
Jan Kiszka07708c42009-08-03 18:43:28 +02007623 ret = -KVM_EPERM;
Radim Krčmář696ca772018-05-24 17:50:56 +02007624 goto out;
Jan Kiszka07708c42009-08-03 18:43:28 +02007625 }
7626
Hollis Blanchard8776e512007-10-31 17:24:24 -05007627 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02007628 case KVM_HC_VAPIC_POLL_IRQ:
7629 ret = 0;
7630 break;
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307631 case KVM_HC_KICK_CPU:
7632 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
Wanpeng Li266e85a2019-07-24 17:43:13 +08007633 kvm_sched_yield(vcpu->kvm, a1);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05307634 ret = 0;
7635 break;
Arnd Bergmann8ef81a92017-02-09 16:10:42 +01007636#ifdef CONFIG_X86_64
Marcelo Tosatti55dd00a2017-01-24 15:09:39 -02007637 case KVM_HC_CLOCK_PAIRING:
7638 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
7639 break;
Sean Christopherson1ed199a2019-01-23 09:22:39 -08007640#endif
Wanpeng Li4180bf12018-07-23 14:39:54 +08007641 case KVM_HC_SEND_IPI:
7642 ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit);
7643 break;
Wanpeng Li71506292019-06-11 20:23:49 +08007644 case KVM_HC_SCHED_YIELD:
7645 kvm_sched_yield(vcpu->kvm, a0);
7646 ret = 0;
7647 break;
Hollis Blanchard8776e512007-10-31 17:24:24 -05007648 default:
7649 ret = -KVM_ENOSYS;
7650 break;
7651 }
Radim Krčmář696ca772018-05-24 17:50:56 +02007652out:
Nadav Amita449c7a2014-06-18 17:19:24 +03007653 if (!op_64_bit)
7654 ret = (u32)ret;
Sean Christophersonde3cd112019-04-30 10:36:17 -07007655 kvm_rax_write(vcpu, ret);
Marian Rotariu6356ee02018-04-30 12:23:01 +03007656
Amit Shahf11c3a82008-02-21 01:00:30 +05307657 ++vcpu->stat.hypercalls;
Marian Rotariu6356ee02018-04-30 12:23:01 +03007658 return kvm_skip_emulated_instruction(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05007659}
7660EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
7661
Jan Kiszkab6785de2012-09-20 07:43:17 +02007662static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
Hollis Blanchard8776e512007-10-31 17:24:24 -05007663{
Avi Kivityd6aa1002011-04-20 15:47:13 +03007664 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
Hollis Blanchard8776e512007-10-31 17:24:24 -05007665 char instruction[3];
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007666 unsigned long rip = kvm_rip_read(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05007667
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007668 kvm_x86_ops.patch_hypercall(vcpu, instruction);
Hollis Blanchard8776e512007-10-31 17:24:24 -05007669
Dmitry Vyukovce2e8522017-01-17 14:51:04 +01007670 return emulator_write_emulated(ctxt, rip, instruction, 3,
7671 &ctxt->exception);
Hollis Blanchard8776e512007-10-31 17:24:24 -05007672}
7673
Avi Kivity851ba692009-08-24 11:10:17 +03007674static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007675{
Matt Gingell782d4222015-11-16 15:26:00 -08007676 return vcpu->run->request_interrupt_window &&
7677 likely(!pic_in_kernel(vcpu->kvm));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007678}
7679
Avi Kivity851ba692009-08-24 11:10:17 +03007680static void post_kvm_run_save(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007681{
Avi Kivity851ba692009-08-24 11:10:17 +03007682 struct kvm_run *kvm_run = vcpu->run;
7683
Jan Kiszka91586a32009-10-05 13:07:21 +02007684 kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
Paolo Bonzinif0778252015-04-01 15:06:40 +02007685 kvm_run->flags = is_smm(vcpu) ? KVM_RUN_X86_SMM : 0;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02007686 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007687 kvm_run->apic_base = kvm_get_apic_base(vcpu);
Matt Gingell127a4572015-11-17 17:32:05 +01007688 kvm_run->ready_for_interrupt_injection =
7689 pic_in_kernel(vcpu->kvm) ||
Matt Gingell782d4222015-11-16 15:26:00 -08007690 kvm_vcpu_ready_for_interrupt_injection(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05007691}
7692
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007693static void update_cr8_intercept(struct kvm_vcpu *vcpu)
7694{
7695 int max_irr, tpr;
7696
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007697 if (!kvm_x86_ops.update_cr8_intercept)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007698 return;
7699
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01007700 if (!lapic_in_kernel(vcpu))
Avi Kivity88c808f2009-08-17 22:49:40 +03007701 return;
7702
Andrey Smetanind62caab2015-11-10 15:36:33 +03007703 if (vcpu->arch.apicv_active)
7704 return;
7705
Gleb Natapov8db3baa2009-05-11 13:35:54 +03007706 if (!vcpu->arch.apic->vapic_addr)
7707 max_irr = kvm_lapic_find_highest_irr(vcpu);
7708 else
7709 max_irr = -1;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007710
7711 if (max_irr != -1)
7712 max_irr >>= 4;
7713
7714 tpr = kvm_lapic_get_cr8(vcpu);
7715
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007716 kvm_x86_ops.update_cr8_intercept(vcpu, tpr, max_irr);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007717}
7718
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007719static void inject_pending_event(struct kvm_vcpu *vcpu, bool *req_immediate_exit)
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007720{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007721 int r;
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007722 bool can_inject = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +01007723
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007724 /* try to reinject previous events if any */
Wanpeng Li664f8e22017-08-24 03:35:09 -07007725
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007726 if (vcpu->arch.exception.injected) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007727 kvm_x86_ops.queue_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007728 can_inject = false;
7729 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07007730 /*
Liran Alona042c262018-03-23 03:01:32 +03007731 * Do not inject an NMI or interrupt if there is a pending
7732 * exception. Exceptions and interrupts are recognized at
7733 * instruction boundaries, i.e. the start of an instruction.
7734 * Trap-like exceptions, e.g. #DB, have higher priority than
7735 * NMIs and interrupts, i.e. traps are recognized before an
7736 * NMI/interrupt that's pending on the same instruction.
7737 * Fault-like exceptions, e.g. #GP and #PF, are the lowest
7738 * priority, but are only generated (pended) during instruction
7739 * execution, i.e. a pending fault-like exception means the
7740 * fault occurred on the *previous* instruction and must be
7741 * serviced prior to recognizing any new events in order to
7742 * fully complete the previous instruction.
Wanpeng Li664f8e22017-08-24 03:35:09 -07007743 */
Liran Alon1a680e32018-03-23 03:01:33 +03007744 else if (!vcpu->arch.exception.pending) {
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007745 if (vcpu->arch.nmi_injected) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007746 kvm_x86_ops.set_nmi(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007747 can_inject = false;
7748 } else if (vcpu->arch.interrupt.injected) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007749 kvm_x86_ops.set_irq(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007750 can_inject = false;
7751 }
Wanpeng Li664f8e22017-08-24 03:35:09 -07007752 }
7753
Sean Christopherson3b82b8d2020-04-22 19:25:47 -07007754 WARN_ON_ONCE(vcpu->arch.exception.injected &&
7755 vcpu->arch.exception.pending);
7756
Liran Alon1a680e32018-03-23 03:01:33 +03007757 /*
7758 * Call check_nested_events() even if we reinjected a previous event
7759 * in order for caller to determine if it should require immediate-exit
7760 * from L2 to L1 due to pending L1 events which require exit
7761 * from L2 to L1.
7762 */
Paolo Bonzini56083bd2020-04-17 10:32:53 -04007763 if (is_guest_mode(vcpu)) {
Paolo Bonzini33b22172020-04-17 10:24:18 -04007764 r = kvm_x86_ops.nested_ops->check_events(vcpu);
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007765 if (r < 0)
7766 goto busy;
Wanpeng Li664f8e22017-08-24 03:35:09 -07007767 }
7768
7769 /* try to inject new event if pending */
Gleb Natapovb59bb7b2009-07-09 15:33:51 +03007770 if (vcpu->arch.exception.pending) {
Avi Kivity5c1c85d02010-03-11 13:01:59 +02007771 trace_kvm_inj_exception(vcpu->arch.exception.nr,
7772 vcpu->arch.exception.has_error_code,
7773 vcpu->arch.exception.error_code);
Nadav Amitd6e8c852014-07-24 14:51:24 +03007774
Wanpeng Li664f8e22017-08-24 03:35:09 -07007775 vcpu->arch.exception.pending = false;
7776 vcpu->arch.exception.injected = true;
7777
Nadav Amitd6e8c852014-07-24 14:51:24 +03007778 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
7779 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
7780 X86_EFLAGS_RF);
7781
Jim Mattsonf10c7292018-10-16 14:29:23 -07007782 if (vcpu->arch.exception.nr == DB_VECTOR) {
Jim Mattsonf10c7292018-10-16 14:29:23 -07007783 kvm_deliver_exception_payload(vcpu);
7784 if (vcpu->arch.dr7 & DR7_GD) {
7785 vcpu->arch.dr7 &= ~DR7_GD;
7786 kvm_update_dr7(vcpu);
7787 }
Nadav Amit6bdf0662014-09-30 20:49:14 +03007788 }
7789
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007790 kvm_x86_ops.queue_exception(vcpu);
Paolo Bonzinic6b22f52020-05-26 09:05:27 -04007791 can_inject = false;
Liran Alon1a680e32018-03-23 03:01:33 +03007792 }
7793
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007794 /*
7795 * Finally, inject interrupt events. If an event cannot be injected
7796 * due to architectural conditions (e.g. IF=0) a window-open exit
7797 * will re-request KVM_REQ_EVENT. Sometimes however an event is pending
7798 * and can architecturally be injected, but we cannot do it right now:
7799 * an interrupt could have arrived just now and we have to inject it
7800 * as a vmexit, or there could already an event in the queue, which is
7801 * indicated by can_inject. In that case we request an immediate exit
7802 * in order to make progress and get back here for another iteration.
7803 * The kvm_x86_ops hooks communicate this by returning -EBUSY.
7804 */
7805 if (vcpu->arch.smi_pending) {
7806 r = can_inject ? kvm_x86_ops.smi_allowed(vcpu, true) : -EBUSY;
7807 if (r < 0)
7808 goto busy;
7809 if (r) {
7810 vcpu->arch.smi_pending = false;
7811 ++vcpu->arch.smi_count;
7812 enter_smm(vcpu);
7813 can_inject = false;
7814 } else
7815 kvm_x86_ops.enable_smi_window(vcpu);
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007816 }
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007817
Paolo Bonzinic9d40912020-05-22 11:21:49 -04007818 if (vcpu->arch.nmi_pending) {
7819 r = can_inject ? kvm_x86_ops.nmi_allowed(vcpu, true) : -EBUSY;
7820 if (r < 0)
7821 goto busy;
7822 if (r) {
7823 --vcpu->arch.nmi_pending;
7824 vcpu->arch.nmi_injected = true;
7825 kvm_x86_ops.set_nmi(vcpu);
7826 can_inject = false;
7827 WARN_ON(kvm_x86_ops.nmi_allowed(vcpu, true) < 0);
7828 }
7829 if (vcpu->arch.nmi_pending)
7830 kvm_x86_ops.enable_nmi_window(vcpu);
7831 }
7832
7833 if (kvm_cpu_has_injectable_intr(vcpu)) {
7834 r = can_inject ? kvm_x86_ops.interrupt_allowed(vcpu, true) : -EBUSY;
7835 if (r < 0)
7836 goto busy;
7837 if (r) {
7838 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), false);
7839 kvm_x86_ops.set_irq(vcpu);
7840 WARN_ON(kvm_x86_ops.interrupt_allowed(vcpu, true) < 0);
7841 }
7842 if (kvm_cpu_has_injectable_intr(vcpu))
7843 kvm_x86_ops.enable_irq_window(vcpu);
7844 }
7845
7846 if (is_guest_mode(vcpu) &&
7847 kvm_x86_ops.nested_ops->hv_timer_pending &&
7848 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
7849 *req_immediate_exit = true;
7850
7851 WARN_ON(vcpu->arch.exception.pending);
7852 return;
7853
7854busy:
7855 *req_immediate_exit = true;
7856 return;
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007857}
7858
Avi Kivity7460fb4a2011-09-20 13:43:14 +03007859static void process_nmi(struct kvm_vcpu *vcpu)
7860{
7861 unsigned limit = 2;
7862
7863 /*
7864 * x86 is limited to one NMI running, and one NMI pending after it.
7865 * If an NMI is already in progress, limit further NMIs to just one.
7866 * Otherwise, allow two (and we'll inject the first one immediately).
7867 */
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007868 if (kvm_x86_ops.get_nmi_mask(vcpu) || vcpu->arch.nmi_injected)
Avi Kivity7460fb4a2011-09-20 13:43:14 +03007869 limit = 1;
7870
7871 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
7872 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
7873 kvm_make_request(KVM_REQ_EVENT, vcpu);
7874}
7875
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007876static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007877{
7878 u32 flags = 0;
7879 flags |= seg->g << 23;
7880 flags |= seg->db << 22;
7881 flags |= seg->l << 21;
7882 flags |= seg->avl << 20;
7883 flags |= seg->present << 15;
7884 flags |= seg->dpl << 13;
7885 flags |= seg->s << 12;
7886 flags |= seg->type << 8;
7887 return flags;
7888}
7889
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007890static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007891{
7892 struct kvm_segment seg;
7893 int offset;
7894
7895 kvm_get_segment(vcpu, &seg, n);
7896 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
7897
7898 if (n < 3)
7899 offset = 0x7f84 + n * 12;
7900 else
7901 offset = 0x7f2c + (n - 3) * 12;
7902
7903 put_smstate(u32, buf, offset + 8, seg.base);
7904 put_smstate(u32, buf, offset + 4, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007905 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007906}
7907
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06007908#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007909static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007910{
7911 struct kvm_segment seg;
7912 int offset;
7913 u16 flags;
7914
7915 kvm_get_segment(vcpu, &seg, n);
7916 offset = 0x7e00 + n * 16;
7917
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007918 flags = enter_smm_get_segment_flags(&seg) >> 8;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007919 put_smstate(u16, buf, offset, seg.selector);
7920 put_smstate(u16, buf, offset + 2, flags);
7921 put_smstate(u32, buf, offset + 4, seg.limit);
7922 put_smstate(u64, buf, offset + 8, seg.base);
7923}
Alexander Kuleshovefbb2882015-09-06 19:35:41 +06007924#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007925
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007926static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007927{
7928 struct desc_ptr dt;
7929 struct kvm_segment seg;
7930 unsigned long val;
7931 int i;
7932
7933 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
7934 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
7935 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
7936 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
7937
7938 for (i = 0; i < 8; i++)
7939 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read(vcpu, i));
7940
7941 kvm_get_dr(vcpu, 6, &val);
7942 put_smstate(u32, buf, 0x7fcc, (u32)val);
7943 kvm_get_dr(vcpu, 7, &val);
7944 put_smstate(u32, buf, 0x7fc8, (u32)val);
7945
7946 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
7947 put_smstate(u32, buf, 0x7fc4, seg.selector);
7948 put_smstate(u32, buf, 0x7f64, seg.base);
7949 put_smstate(u32, buf, 0x7f60, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007950 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007951
7952 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
7953 put_smstate(u32, buf, 0x7fc0, seg.selector);
7954 put_smstate(u32, buf, 0x7f80, seg.base);
7955 put_smstate(u32, buf, 0x7f7c, seg.limit);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007956 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007957
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007958 kvm_x86_ops.get_gdt(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007959 put_smstate(u32, buf, 0x7f74, dt.address);
7960 put_smstate(u32, buf, 0x7f70, dt.size);
7961
Sean Christophersonafaf0b22020-03-21 13:26:00 -07007962 kvm_x86_ops.get_idt(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007963 put_smstate(u32, buf, 0x7f58, dt.address);
7964 put_smstate(u32, buf, 0x7f54, dt.size);
7965
7966 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007967 enter_smm_save_seg_32(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007968
7969 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
7970
7971 /* revision id */
7972 put_smstate(u32, buf, 0x7efc, 0x00020000);
7973 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
7974}
7975
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07007976#ifdef CONFIG_X86_64
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02007977static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007978{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02007979 struct desc_ptr dt;
7980 struct kvm_segment seg;
7981 unsigned long val;
7982 int i;
7983
7984 for (i = 0; i < 16; i++)
7985 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read(vcpu, i));
7986
7987 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
7988 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
7989
7990 kvm_get_dr(vcpu, 6, &val);
7991 put_smstate(u64, buf, 0x7f68, val);
7992 kvm_get_dr(vcpu, 7, &val);
7993 put_smstate(u64, buf, 0x7f60, val);
7994
7995 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
7996 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
7997 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
7998
7999 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
8000
8001 /* revision id */
8002 put_smstate(u32, buf, 0x7efc, 0x00020064);
8003
8004 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
8005
8006 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
8007 put_smstate(u16, buf, 0x7e90, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008008 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008009 put_smstate(u32, buf, 0x7e94, seg.limit);
8010 put_smstate(u64, buf, 0x7e98, seg.base);
8011
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008012 kvm_x86_ops.get_idt(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008013 put_smstate(u32, buf, 0x7e84, dt.size);
8014 put_smstate(u64, buf, 0x7e88, dt.address);
8015
8016 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
8017 put_smstate(u16, buf, 0x7e70, seg.selector);
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008018 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008019 put_smstate(u32, buf, 0x7e74, seg.limit);
8020 put_smstate(u64, buf, 0x7e78, seg.base);
8021
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008022 kvm_x86_ops.get_gdt(vcpu, &dt);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008023 put_smstate(u32, buf, 0x7e64, dt.size);
8024 put_smstate(u64, buf, 0x7e68, dt.address);
8025
8026 for (i = 0; i < 6; i++)
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008027 enter_smm_save_seg_64(vcpu, buf, i);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008028}
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07008029#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008030
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008031static void enter_smm(struct kvm_vcpu *vcpu)
Paolo Bonzini64d60672015-05-07 11:36:11 +02008032{
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008033 struct kvm_segment cs, ds;
Paolo Bonzini18c36262015-08-07 12:27:54 +02008034 struct desc_ptr dt;
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008035 char buf[512];
8036 u32 cr0;
8037
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008038 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008039 memset(buf, 0, 512);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07008040#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02008041 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008042 enter_smm_save_state_64(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008043 else
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07008044#endif
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008045 enter_smm_save_state_32(vcpu, buf);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008046
Ladi Prosek0234bf82017-10-11 16:54:40 +02008047 /*
8048 * Give pre_enter_smm() a chance to make ISA-specific changes to the
8049 * vCPU state (e.g. leave guest mode) after we've saved the state into
8050 * the SMM state-save area.
8051 */
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008052 kvm_x86_ops.pre_enter_smm(vcpu, buf);
Ladi Prosek0234bf82017-10-11 16:54:40 +02008053
8054 vcpu->arch.hflags |= HF_SMM_MASK;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008055 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008056
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008057 if (kvm_x86_ops.get_nmi_mask(vcpu))
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008058 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
8059 else
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008060 kvm_x86_ops.set_nmi_mask(vcpu, true);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008061
8062 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
8063 kvm_rip_write(vcpu, 0x8000);
8064
8065 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008066 kvm_x86_ops.set_cr0(vcpu, cr0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008067 vcpu->arch.cr0 = cr0;
8068
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008069 kvm_x86_ops.set_cr4(vcpu, 0);
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008070
Paolo Bonzini18c36262015-08-07 12:27:54 +02008071 /* Undocumented: IDT limit is set to zero on entry to SMM. */
8072 dt.address = dt.size = 0;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008073 kvm_x86_ops.set_idt(vcpu, &dt);
Paolo Bonzini18c36262015-08-07 12:27:54 +02008074
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008075 __kvm_set_dr(vcpu, 7, DR7_FIXED_1);
8076
8077 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
8078 cs.base = vcpu->arch.smbase;
8079
8080 ds.selector = 0;
8081 ds.base = 0;
8082
8083 cs.limit = ds.limit = 0xffffffff;
8084 cs.type = ds.type = 0x3;
8085 cs.dpl = ds.dpl = 0;
8086 cs.db = ds.db = 0;
8087 cs.s = ds.s = 1;
8088 cs.l = ds.l = 0;
8089 cs.g = ds.g = 1;
8090 cs.avl = ds.avl = 0;
8091 cs.present = ds.present = 1;
8092 cs.unusable = ds.unusable = 0;
8093 cs.padding = ds.padding = 0;
8094
8095 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
8096 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
8097 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
8098 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
8099 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
8100 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
8101
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07008102#ifdef CONFIG_X86_64
Radim Krčmářd6321d42017-08-05 00:12:49 +02008103 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008104 kvm_x86_ops.set_efer(vcpu, 0);
Sean Christophersonb68f3cc2019-04-02 08:10:48 -07008105#endif
Paolo Bonzini660a5d52015-05-05 11:50:23 +02008106
8107 kvm_update_cpuid(vcpu);
8108 kvm_mmu_reset_context(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02008109}
8110
Paolo Bonziniee2cd4b2016-06-01 22:26:01 +02008111static void process_smi(struct kvm_vcpu *vcpu)
Paolo Bonzinic43203c2016-06-01 22:26:00 +02008112{
8113 vcpu->arch.smi_pending = true;
8114 kvm_make_request(KVM_REQ_EVENT, vcpu);
8115}
8116
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05008117void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
8118 unsigned long *vcpu_bitmap)
8119{
8120 cpumask_var_t cpus;
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05008121
8122 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
8123
Mao Wenandb5a95e2019-11-19 11:06:40 +08008124 kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC,
Suravee Suthikulpanit54163a32020-05-06 08:17:53 -05008125 NULL, vcpu_bitmap, cpus);
Nitesh Narayan Lal7ee30bc2019-11-07 07:53:43 -05008126
8127 free_cpumask_var(cpus);
8128}
8129
Paolo Bonzini2860c4b2016-01-07 15:05:10 +01008130void kvm_make_scan_ioapic_request(struct kvm *kvm)
8131{
8132 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
8133}
8134
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06008135void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
8136{
8137 if (!lapic_in_kernel(vcpu))
8138 return;
8139
8140 vcpu->arch.apicv_active = kvm_apicv_activated(vcpu->kvm);
8141 kvm_apic_update_apicv(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008142 kvm_x86_ops.refresh_apicv_exec_ctrl(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06008143}
8144EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv);
8145
8146/*
8147 * NOTE: Do not hold any lock prior to calling this.
8148 *
8149 * In particular, kvm_request_apicv_update() expects kvm->srcu not to be
8150 * locked, because it calls __x86_set_memory_region() which does
8151 * synchronize_srcu(&kvm->srcu).
8152 */
8153void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
8154{
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05008155 struct kvm_vcpu *except;
Paolo Bonzini8e205a62020-03-14 12:29:23 +01008156 unsigned long old, new, expected;
8157
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008158 if (!kvm_x86_ops.check_apicv_inhibit_reasons ||
8159 !kvm_x86_ops.check_apicv_inhibit_reasons(bit))
Suravee Suthikulpanitef8efd72019-11-14 14:15:10 -06008160 return;
8161
Paolo Bonzini8e205a62020-03-14 12:29:23 +01008162 old = READ_ONCE(kvm->arch.apicv_inhibit_reasons);
8163 do {
8164 expected = new = old;
8165 if (activate)
8166 __clear_bit(bit, &new);
8167 else
8168 __set_bit(bit, &new);
8169 if (new == old)
8170 break;
8171 old = cmpxchg(&kvm->arch.apicv_inhibit_reasons, expected, new);
8172 } while (old != expected);
8173
8174 if (!!old == !!new)
8175 return;
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06008176
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -06008177 trace_kvm_apicv_update_request(activate, bit);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008178 if (kvm_x86_ops.pre_update_apicv_exec_ctrl)
8179 kvm_x86_ops.pre_update_apicv_exec_ctrl(kvm, activate);
Suravee Suthikulpanit7d611232020-05-06 21:35:39 -05008180
8181 /*
8182 * Sending request to update APICV for all other vcpus,
8183 * while update the calling vcpu immediately instead of
8184 * waiting for another #VMEXIT to handle the request.
8185 */
8186 except = kvm_get_running_vcpu();
8187 kvm_make_all_cpus_request_except(kvm, KVM_REQ_APICV_UPDATE,
8188 except);
8189 if (except)
8190 kvm_vcpu_update_apicv(except);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06008191}
8192EXPORT_SYMBOL_GPL(kvm_request_apicv_update);
8193
Yang Zhang3d81bc72013-04-11 19:25:13 +08008194static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008195{
Wanpeng Lidcbd3e42018-12-17 10:43:23 +08008196 if (!kvm_apic_present(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008197 return;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008198
Andrey Smetanin63086302015-11-10 15:36:32 +03008199 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
Yang Zhangc7c9c562013-01-25 10:18:51 +08008200
Steve Rutherfordb053b2a2015-07-29 23:32:35 -07008201 if (irqchip_split(vcpu->kvm))
Andrey Smetanin63086302015-11-10 15:36:32 +03008202 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02008203 else {
Liran Alonfa59cc02017-12-24 18:12:53 +02008204 if (vcpu->arch.apicv_active)
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008205 kvm_x86_ops.sync_pir_to_irr(vcpu);
Wanpeng Lie97f8522018-11-20 16:34:18 +08008206 if (ioapic_in_kernel(vcpu->kvm))
8207 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
Radim Krčmářdb2bdcb2015-10-08 20:23:34 +02008208 }
Liran Alone40ff1d2018-03-21 02:50:31 +02008209
8210 if (is_guest_mode(vcpu))
8211 vcpu->arch.load_eoi_exitmap_pending = true;
8212 else
8213 kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu);
8214}
8215
8216static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
8217{
8218 u64 eoi_exit_bitmap[4];
8219
8220 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
8221 return;
8222
Andrey Smetanin5c9194122015-11-10 15:36:34 +03008223 bitmap_or((ulong *)eoi_exit_bitmap, vcpu->arch.ioapic_handled_vectors,
8224 vcpu_to_synic(vcpu)->vec_bitmap, 256);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008225 kvm_x86_ops.load_eoi_exitmap(vcpu, eoi_exit_bitmap);
Yang Zhangc7c9c562013-01-25 10:18:51 +08008226}
8227
Michal Hocko93065ac2018-08-21 21:52:33 -07008228int kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
8229 unsigned long start, unsigned long end,
8230 bool blockable)
Radim Krčmářb1394e72017-11-30 19:05:45 +01008231{
8232 unsigned long apic_address;
8233
8234 /*
8235 * The physical address of apic access page is stored in the VMCS.
8236 * Update it when it becomes invalid.
8237 */
8238 apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
8239 if (start <= apic_address && apic_address < end)
8240 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
Michal Hocko93065ac2018-08-21 21:52:33 -07008241
8242 return 0;
Radim Krčmářb1394e72017-11-30 19:05:45 +01008243}
8244
Tang Chen4256f432014-09-24 15:57:54 +08008245void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
8246{
Paolo Bonzini35754c92015-07-29 12:05:37 +02008247 if (!lapic_in_kernel(vcpu))
Paolo Bonzinif439ed22014-10-02 13:53:24 +02008248 return;
8249
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008250 if (!kvm_x86_ops.set_apic_access_page_addr)
Tang Chen4256f432014-09-24 15:57:54 +08008251 return;
8252
Sean Christophersona4148b72020-03-20 14:28:24 -07008253 kvm_x86_ops.set_apic_access_page_addr(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08008254}
Tang Chen4256f432014-09-24 15:57:54 +08008255
Sean Christophersond264ee02018-08-27 15:21:12 -07008256void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu)
8257{
8258 smp_send_reschedule(vcpu->cpu);
8259}
8260EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit);
8261
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09008262/*
Paolo Bonzini362c6982015-02-06 12:48:04 +01008263 * Returns 1 to let vcpu_run() continue the guest execution loop without
Takuya Yoshikawa9357d932013-12-13 15:08:38 +09008264 * exiting to the userspace. Otherwise, the value will be returned to the
8265 * userspace.
8266 */
Avi Kivity851ba692009-08-24 11:10:17 +03008267static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008268{
8269 int r;
Matt Gingell62a193e2015-11-16 15:26:07 -08008270 bool req_int_win =
8271 dm_request_for_irq_injection(vcpu) &&
8272 kvm_cpu_accept_dm_intr(vcpu);
Wanpeng Li404d5d72020-04-28 14:23:25 +08008273 fastpath_t exit_fastpath;
Matt Gingell62a193e2015-11-16 15:26:07 -08008274
Jan Kiszka730dca42013-04-28 10:50:52 +02008275 bool req_immediate_exit = false;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008276
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02008277 if (kvm_request_pending(vcpu)) {
Jim Mattson671ddc72019-10-15 10:44:05 -07008278 if (kvm_check_request(KVM_REQ_GET_VMCS12_PAGES, vcpu)) {
Paolo Bonzini33b22172020-04-17 10:24:18 -04008279 if (unlikely(!kvm_x86_ops.nested_ops->get_vmcs12_pages(vcpu))) {
Jim Mattson671ddc72019-10-15 10:44:05 -07008280 r = 0;
8281 goto out;
8282 }
8283 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03008284 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05008285 kvm_mmu_unload(vcpu);
Avi Kivitya8eeb042010-05-10 12:34:53 +03008286 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
Marcelo Tosatti2f599712008-05-27 12:10:20 -03008287 __kvm_migrate_timers(vcpu);
Marcelo Tosattid8281992012-11-27 23:29:01 -02008288 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
8289 kvm_gen_update_masterclock(vcpu->kvm);
Marcelo Tosatti0061d53d2013-05-09 20:21:41 -03008290 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
8291 kvm_gen_kvmclock_update(vcpu);
Zachary Amsden34c238a2010-09-18 14:38:14 -10008292 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
8293 r = kvm_guest_time_update(vcpu);
Zachary Amsden8cfdc002010-08-19 22:07:21 -10008294 if (unlikely(r))
8295 goto out;
8296 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03008297 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03008298 kvm_mmu_sync_roots(vcpu);
Paolo Bonzini727a7e22020-03-05 03:52:50 -05008299 if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu))
8300 kvm_mmu_load_pgd(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07008301 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
Sean Christopherson77809382020-03-20 14:28:18 -07008302 kvm_vcpu_flush_tlb_all(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07008303
8304 /* Flushing all ASIDs flushes the current ASID... */
8305 kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
8306 }
8307 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
8308 kvm_vcpu_flush_tlb_current(vcpu);
Vitaly Kuznetsov0baedd72020-03-25 12:28:24 -04008309 if (kvm_check_request(KVM_REQ_HV_TLB_FLUSH, vcpu))
8310 kvm_vcpu_flush_tlb_guest(vcpu);
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07008311
Avi Kivitya8eeb042010-05-10 12:34:53 +03008312 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008313 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
Avi Kivityb93463a2007-10-25 16:52:32 +02008314 r = 0;
8315 goto out;
8316 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03008317 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008318 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07008319 vcpu->mmio_needed = 0;
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01008320 r = 0;
8321 goto out;
8322 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02008323 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
8324 /* Page is swapped out. Do synthetic halt */
8325 vcpu->arch.apf.halted = true;
8326 r = 1;
8327 goto out;
8328 }
Glauber Costac9aaa892011-07-11 15:28:14 -04008329 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
8330 record_steal_time(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02008331 if (kvm_check_request(KVM_REQ_SMI, vcpu))
8332 process_smi(vcpu);
Avi Kivity7460fb4a2011-09-20 13:43:14 +03008333 if (kvm_check_request(KVM_REQ_NMI, vcpu))
8334 process_nmi(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02008335 if (kvm_check_request(KVM_REQ_PMU, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02008336 kvm_pmu_handle_event(vcpu);
Gleb Natapovf5132b02011-11-10 14:57:22 +02008337 if (kvm_check_request(KVM_REQ_PMI, vcpu))
Wei Huangc6702c92015-06-19 13:44:45 +02008338 kvm_pmu_deliver_pmi(vcpu);
Steve Rutherford7543a632015-07-29 23:21:41 -07008339 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
8340 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
8341 if (test_bit(vcpu->arch.pending_ioapic_eoi,
Andrey Smetanin63086302015-11-10 15:36:32 +03008342 vcpu->arch.ioapic_handled_vectors)) {
Steve Rutherford7543a632015-07-29 23:21:41 -07008343 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
8344 vcpu->run->eoi.vector =
8345 vcpu->arch.pending_ioapic_eoi;
8346 r = 0;
8347 goto out;
8348 }
8349 }
Yang Zhang3d81bc72013-04-11 19:25:13 +08008350 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
8351 vcpu_scan_ioapic(vcpu);
Liran Alone40ff1d2018-03-21 02:50:31 +02008352 if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu))
8353 vcpu_load_eoi_exitmap(vcpu);
Tang Chen4256f432014-09-24 15:57:54 +08008354 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
8355 kvm_vcpu_reload_apic_access_page(vcpu);
Andrey Smetanin2ce79182015-07-03 15:01:41 +03008356 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
8357 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
8358 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
8359 r = 0;
8360 goto out;
8361 }
Andrey Smetanine516ceb2015-09-16 12:29:48 +03008362 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
8363 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
8364 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
8365 r = 0;
8366 goto out;
8367 }
Andrey Smetanindb3975712015-11-10 15:36:35 +03008368 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
8369 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
8370 vcpu->run->hyperv = vcpu->arch.hyperv.exit;
8371 r = 0;
8372 goto out;
8373 }
Andrey Smetaninf3b138c2015-12-28 18:27:24 +03008374
8375 /*
8376 * KVM_REQ_HV_STIMER has to be processed after
8377 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
8378 * depend on the guest clock being up-to-date
8379 */
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +03008380 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
8381 kvm_hv_process_stimers(vcpu);
Suravee Suthikulpanit8df14af2019-11-14 14:15:06 -06008382 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
8383 kvm_vcpu_update_apicv(vcpu);
Avi Kivity2f52d582008-01-16 12:49:30 +02008384 }
Avi Kivityb93463a2007-10-25 16:52:32 +02008385
Avi Kivityb463a6f2010-07-20 15:06:17 +03008386 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) {
Paolo Bonzini0f1e2612016-12-17 16:05:19 +01008387 ++vcpu->stat.req_event;
Jan Kiszka66450a22013-03-13 12:42:34 +01008388 kvm_apic_accept_events(vcpu);
8389 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
8390 r = 1;
8391 goto out;
8392 }
8393
Paolo Bonzinic9d40912020-05-22 11:21:49 -04008394 inject_pending_event(vcpu, &req_immediate_exit);
8395 if (req_int_win)
8396 kvm_x86_ops.enable_irq_window(vcpu);
Gleb Natapov6a8b1d12009-05-11 13:35:51 +03008397
Avi Kivity3842d132010-07-27 12:30:24 +03008398 if (kvm_lapic_enabled(vcpu)) {
8399 update_cr8_intercept(vcpu);
8400 kvm_lapic_sync_to_vapic(vcpu);
8401 }
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008402 }
Avi Kivityb93463a2007-10-25 16:52:32 +02008403
Avi Kivityd8368af2012-05-14 18:07:56 +03008404 r = kvm_mmu_reload(vcpu);
8405 if (unlikely(r)) {
Michael S. Tsirkind905c062012-06-24 19:25:00 +03008406 goto cancel_injection;
Avi Kivityd8368af2012-05-14 18:07:56 +03008407 }
8408
Jan Kiszka42dbaa52008-12-15 13:52:10 +01008409 preempt_disable();
8410
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008411 kvm_x86_ops.prepare_guest_switch(vcpu);
Paolo Bonzinib95234c2016-12-19 13:57:33 +01008412
8413 /*
8414 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
8415 * IPI are then delayed after guest entry, which ensures that they
8416 * result in virtual interrupt delivery.
8417 */
8418 local_irq_disable();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08008419 vcpu->mode = IN_GUEST_MODE;
8420
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02008421 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
8422
Lan Tianyu0f127d12016-03-13 11:10:29 +08008423 /*
Paolo Bonzinib95234c2016-12-19 13:57:33 +01008424 * 1) We should set ->mode before checking ->requests. Please see
Andrew Jonescde9af62017-04-26 22:32:24 +02008425 * the comment in kvm_vcpu_exiting_guest_mode().
Paolo Bonzinib95234c2016-12-19 13:57:33 +01008426 *
Luwei Kang81b01662019-01-31 16:52:02 +08008427 * 2) For APICv, we should set ->mode before checking PID.ON. This
Paolo Bonzinib95234c2016-12-19 13:57:33 +01008428 * pairs with the memory barrier implicit in pi_test_and_set_on
8429 * (see vmx_deliver_posted_interrupt).
8430 *
8431 * 3) This also orders the write to mode from any reads to the page
8432 * tables done while the VCPU is running. Please see the comment
8433 * in kvm_flush_remote_tlbs.
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08008434 */
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02008435 smp_mb__after_srcu_read_unlock();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008436
Paolo Bonzinib95234c2016-12-19 13:57:33 +01008437 /*
8438 * This handles the case where a posted interrupt was
8439 * notified with kvm_vcpu_kick.
8440 */
Liran Alonfa59cc02017-12-24 18:12:53 +02008441 if (kvm_lapic_enabled(vcpu) && vcpu->arch.apicv_active)
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008442 kvm_x86_ops.sync_pir_to_irr(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008443
Wanpeng Li5a9f5442020-04-28 14:23:26 +08008444 if (kvm_vcpu_exit_request(vcpu)) {
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08008445 vcpu->mode = OUTSIDE_GUEST_MODE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008446 smp_wmb();
8447 local_irq_enable();
8448 preempt_enable();
Michael S. Tsirkin01b71912013-11-04 22:36:25 +02008449 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008450 r = 1;
Michael S. Tsirkind905c062012-06-24 19:25:00 +03008451 goto cancel_injection;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008452 }
8453
Paolo Bonzinic43203c2016-06-01 22:26:00 +02008454 if (req_immediate_exit) {
8455 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008456 kvm_x86_ops.request_immediate_exit(vcpu);
Paolo Bonzinic43203c2016-06-01 22:26:00 +02008457 }
Nadav Har'Eld6185f22011-09-22 13:52:56 +03008458
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008459 trace_kvm_entry(vcpu->vcpu_id);
Paolo Bonzini6edaa532016-06-15 15:18:26 +02008460 guest_enter_irqoff();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008461
Sean Christopherson2620fe22020-01-17 11:30:51 -08008462 fpregs_assert_state_consistent();
8463 if (test_thread_flag(TIF_NEED_FPU_LOAD))
8464 switch_fpu_return();
Rik van Riel5f409e22019-04-03 18:41:52 +02008465
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008466 if (unlikely(vcpu->arch.switch_db_regs)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008467 set_debugreg(0, 7);
8468 set_debugreg(vcpu->arch.eff_db[0], 0);
8469 set_debugreg(vcpu->arch.eff_db[1], 1);
8470 set_debugreg(vcpu->arch.eff_db[2], 2);
8471 set_debugreg(vcpu->arch.eff_db[3], 3);
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01008472 set_debugreg(vcpu->arch.dr6, 6);
Nadav Amitae561ed2015-04-02 03:10:37 +03008473 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008474 }
8475
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07008476 exit_fastpath = kvm_x86_ops.run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008477
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008478 /*
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01008479 * Do this here before restoring debug registers on the host. And
8480 * since we do this before handling the vmexit, a DR access vmexit
8481 * can (a) read the correct value of the debug registers, (b) set
8482 * KVM_DEBUGREG_WONT_EXIT again.
8483 */
8484 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01008485 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008486 kvm_x86_ops.sync_dirty_debug_regs(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01008487 kvm_update_dr0123(vcpu);
Paolo Bonzini70e4da72016-02-26 12:28:40 +01008488 kvm_update_dr7(vcpu);
8489 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
Paolo Bonzinic77fb5f2014-02-21 10:17:24 +01008490 }
8491
8492 /*
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008493 * If the guest has used debug registers, at least dr7
8494 * will be disabled while returning to the host.
8495 * If we don't have active breakpoints in the host, we don't
8496 * care about the messed up debug address registers. But if
8497 * we have some of them active, restore the old state.
8498 */
Frederic Weisbecker59d8eb52009-11-10 11:03:12 +01008499 if (hw_breakpoint_active())
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02008500 hw_breakpoint_restore();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008501
Haozhong Zhang4ba76532015-10-20 15:39:07 +08008502 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
Zachary Amsden1d5f0662010-08-19 22:07:30 -10008503
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +08008504 vcpu->mode = OUTSIDE_GUEST_MODE;
Avi Kivityd94e1dc2010-05-03 16:54:48 +03008505 smp_wmb();
Yang Zhanga547c6d2013-04-11 19:25:10 +08008506
Wanpeng Lia9ab13f2020-04-10 10:47:03 -07008507 kvm_x86_ops.handle_exit_irqoff(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008508
Sean Christophersond7a08882019-07-10 09:07:34 -07008509 /*
8510 * Consume any pending interrupts, including the possible source of
8511 * VM-Exit on SVM and any ticks that occur between VM-Exit and now.
8512 * An instruction is required after local_irq_enable() to fully unblock
8513 * interrupts on processors that implement an interrupt shadow, the
8514 * stat.exits increment will do nicely.
8515 */
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008516 kvm_before_interrupt(vcpu);
Sean Christophersond7a08882019-07-10 09:07:34 -07008517 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008518 ++vcpu->stat.exits;
Sean Christophersond7a08882019-07-10 09:07:34 -07008519 local_irq_disable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008520 kvm_after_interrupt(vcpu);
8521
Paolo Bonzinif2485b32016-06-15 15:23:11 +02008522 guest_exit_irqoff();
Wanpeng Liec0671d2019-05-20 16:18:08 +08008523 if (lapic_in_kernel(vcpu)) {
8524 s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta;
8525 if (delta != S64_MIN) {
8526 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta);
8527 vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN;
8528 }
8529 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008530
Paolo Bonzinif2485b32016-06-15 15:23:11 +02008531 local_irq_enable();
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008532 preempt_enable();
8533
Marcelo Tosattif656ce02009-12-23 14:35:25 -02008534 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Marcelo Tosatti3200f402008-03-29 20:17:59 -03008535
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008536 /*
8537 * Profile KVM exit RIPs:
8538 */
8539 if (unlikely(prof_on == KVM_PROFILING)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008540 unsigned long rip = kvm_rip_read(vcpu);
8541 profile_hit(KVM_PROFILING, (void *)rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008542 }
8543
Zachary Amsdencc578282012-02-03 15:43:50 -02008544 if (unlikely(vcpu->arch.tsc_always_catchup))
8545 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02008546
Michael S. Tsirkin5cfb1d52012-06-24 19:24:54 +03008547 if (vcpu->arch.apic_attention)
8548 kvm_lapic_sync_from_vapic(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02008549
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008550 r = kvm_x86_ops.handle_exit(vcpu, exit_fastpath);
Michael S. Tsirkind905c062012-06-24 19:25:00 +03008551 return r;
8552
8553cancel_injection:
Sean Christopherson8081ad02020-04-22 19:25:40 -07008554 if (req_immediate_exit)
8555 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008556 kvm_x86_ops.cancel_injection(vcpu);
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +03008557 if (unlikely(vcpu->arch.apic_attention))
8558 kvm_lapic_sync_from_vapic(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008559out:
Marcelo Tosattid7690172008-09-08 15:23:48 -03008560 return r;
8561}
8562
Paolo Bonzini362c6982015-02-06 12:48:04 +01008563static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
8564{
Feng Wubf9f6ac2015-09-18 22:29:55 +08008565 if (!kvm_arch_vcpu_runnable(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008566 (!kvm_x86_ops.pre_block || kvm_x86_ops.pre_block(vcpu) == 0)) {
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01008567 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
8568 kvm_vcpu_block(vcpu);
8569 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08008570
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008571 if (kvm_x86_ops.post_block)
8572 kvm_x86_ops.post_block(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08008573
Paolo Bonzini9c8fd1b2015-02-06 12:58:42 +01008574 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
8575 return 1;
8576 }
Gleb Natapov09cec752009-03-23 15:11:44 +02008577
Paolo Bonzini362c6982015-02-06 12:48:04 +01008578 kvm_apic_accept_events(vcpu);
8579 switch(vcpu->arch.mp_state) {
8580 case KVM_MP_STATE_HALTED:
8581 vcpu->arch.pv.pv_unhalted = false;
8582 vcpu->arch.mp_state =
8583 KVM_MP_STATE_RUNNABLE;
Gustavo A. R. Silvab2869f22019-01-25 12:23:17 -06008584 /* fall through */
Paolo Bonzini362c6982015-02-06 12:48:04 +01008585 case KVM_MP_STATE_RUNNABLE:
8586 vcpu->arch.apf.halted = false;
8587 break;
8588 case KVM_MP_STATE_INIT_RECEIVED:
8589 break;
8590 default:
8591 return -EINTR;
Paolo Bonzini362c6982015-02-06 12:48:04 +01008592 }
8593 return 1;
8594}
8595
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008596static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
8597{
Paolo Bonzini56083bd2020-04-17 10:32:53 -04008598 if (is_guest_mode(vcpu))
Paolo Bonzini33b22172020-04-17 10:24:18 -04008599 kvm_x86_ops.nested_ops->check_events(vcpu);
Paolo Bonzini0ad3bed2016-12-19 15:23:54 +01008600
Paolo Bonzini5d9bc642015-10-13 10:18:53 +02008601 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
8602 !vcpu->arch.apf.halted);
8603}
8604
Paolo Bonzini362c6982015-02-06 12:48:04 +01008605static int vcpu_run(struct kvm_vcpu *vcpu)
Marcelo Tosattid7690172008-09-08 15:23:48 -03008606{
8607 int r;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02008608 struct kvm *kvm = vcpu->kvm;
Marcelo Tosattid7690172008-09-08 15:23:48 -03008609
Marcelo Tosattif656ce02009-12-23 14:35:25 -02008610 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Paolo Bonzinic595cee2018-07-02 13:07:14 +02008611 vcpu->arch.l1tf_flush_l1d = true;
Marcelo Tosattid7690172008-09-08 15:23:48 -03008612
Paolo Bonzini362c6982015-02-06 12:48:04 +01008613 for (;;) {
Paolo Bonzini58f800d2015-10-13 21:32:50 +02008614 if (kvm_vcpu_running(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008615 r = vcpu_enter_guest(vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08008616 } else {
Paolo Bonzini362c6982015-02-06 12:48:04 +01008617 r = vcpu_block(kvm, vcpu);
Feng Wubf9f6ac2015-09-18 22:29:55 +08008618 }
8619
Gleb Natapov09cec752009-03-23 15:11:44 +02008620 if (r <= 0)
8621 break;
8622
Radim Krčmář72875d82017-04-26 22:32:19 +02008623 kvm_clear_request(KVM_REQ_PENDING_TIMER, vcpu);
Gleb Natapov09cec752009-03-23 15:11:44 +02008624 if (kvm_cpu_has_pending_timer(vcpu))
8625 kvm_inject_pending_timer_irqs(vcpu);
8626
Matt Gingell782d4222015-11-16 15:26:00 -08008627 if (dm_request_for_irq_injection(vcpu) &&
8628 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
Paolo Bonzini4ca7dd82015-07-30 10:32:16 +02008629 r = 0;
8630 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Gleb Natapov09cec752009-03-23 15:11:44 +02008631 ++vcpu->stat.request_irq_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01008632 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02008633 }
Gleb Natapovaf585b92010-10-14 11:22:46 +02008634
8635 kvm_check_async_pf_completion(vcpu);
8636
Gleb Natapov09cec752009-03-23 15:11:44 +02008637 if (signal_pending(current)) {
8638 r = -EINTR;
Avi Kivity851ba692009-08-24 11:10:17 +03008639 vcpu->run->exit_reason = KVM_EXIT_INTR;
Gleb Natapov09cec752009-03-23 15:11:44 +02008640 ++vcpu->stat.signal_exits;
Paolo Bonzini362c6982015-02-06 12:48:04 +01008641 break;
Gleb Natapov09cec752009-03-23 15:11:44 +02008642 }
8643 if (need_resched()) {
Marcelo Tosattif656ce02009-12-23 14:35:25 -02008644 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Takuya Yoshikawac08ac062013-12-13 15:07:21 +09008645 cond_resched();
Marcelo Tosattif656ce02009-12-23 14:35:25 -02008646 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosattid7690172008-09-08 15:23:48 -03008647 }
8648 }
8649
Marcelo Tosattif656ce02009-12-23 14:35:25 -02008650 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008651
8652 return r;
8653}
8654
Gleb Natapov716d51a2012-09-03 15:24:26 +03008655static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
8656{
8657 int r;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008658
Gleb Natapov716d51a2012-09-03 15:24:26 +03008659 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Sean Christopherson0ce97a22018-08-23 13:56:52 -07008660 r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
Gleb Natapov716d51a2012-09-03 15:24:26 +03008661 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07008662 return r;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008663}
8664
8665static int complete_emulated_pio(struct kvm_vcpu *vcpu)
8666{
8667 BUG_ON(!vcpu->arch.pio.count);
8668
8669 return complete_emulated_io(vcpu);
8670}
8671
Avi Kivityf78146b2012-04-18 19:22:47 +03008672/*
8673 * Implements the following, as a state machine:
8674 *
8675 * read:
8676 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008677 * for each mmio piece in the fragment
8678 * write gpa, len
8679 * exit
8680 * copy data
Avi Kivityf78146b2012-04-18 19:22:47 +03008681 * execute insn
8682 *
8683 * write:
8684 * for each fragment
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008685 * for each mmio piece in the fragment
8686 * write gpa, len
8687 * copy data
8688 * exit
Avi Kivityf78146b2012-04-18 19:22:47 +03008689 */
Gleb Natapov716d51a2012-09-03 15:24:26 +03008690static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
Avi Kivity5287f192010-01-19 14:20:10 +02008691{
8692 struct kvm_run *run = vcpu->run;
Avi Kivityf78146b2012-04-18 19:22:47 +03008693 struct kvm_mmio_fragment *frag;
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008694 unsigned len;
Avi Kivity5287f192010-01-19 14:20:10 +02008695
Gleb Natapov716d51a2012-09-03 15:24:26 +03008696 BUG_ON(!vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02008697
Gleb Natapov716d51a2012-09-03 15:24:26 +03008698 /* Complete previous fragment */
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008699 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
8700 len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03008701 if (!vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008702 memcpy(frag->data, run->mmio.data, len);
8703
8704 if (frag->len <= 8) {
8705 /* Switch to the next fragment. */
8706 frag++;
8707 vcpu->mmio_cur_fragment++;
8708 } else {
8709 /* Go forward to the next mmio piece. */
8710 frag->data += len;
8711 frag->gpa += len;
8712 frag->len -= len;
8713 }
8714
Andrew Honiga08d3b32014-02-27 19:35:14 +01008715 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
Gleb Natapov716d51a2012-09-03 15:24:26 +03008716 vcpu->mmio_needed = 0;
Paolo Bonzini0912c972013-08-27 15:41:43 +02008717
8718 /* FIXME: return into emulator if single-stepping. */
Avi Kivitycef4dea2010-01-20 12:01:20 +02008719 if (vcpu->mmio_is_write)
Gleb Natapov716d51a2012-09-03 15:24:26 +03008720 return 1;
8721 vcpu->mmio_read_completed = 1;
8722 return complete_emulated_io(vcpu);
Avi Kivity5287f192010-01-19 14:20:10 +02008723 }
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008724
Gleb Natapov716d51a2012-09-03 15:24:26 +03008725 run->exit_reason = KVM_EXIT_MMIO;
8726 run->mmio.phys_addr = frag->gpa;
8727 if (vcpu->mmio_is_write)
Xiao Guangrong87da7e62012-10-24 14:07:59 +08008728 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
8729 run->mmio.len = min(8u, frag->len);
Gleb Natapov716d51a2012-09-03 15:24:26 +03008730 run->mmio.is_write = vcpu->mmio_is_write;
8731 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
8732 return 0;
Avi Kivity5287f192010-01-19 14:20:10 +02008733}
8734
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08008735static void kvm_save_current_fpu(struct fpu *fpu)
8736{
8737 /*
8738 * If the target FPU state is not resident in the CPU registers, just
8739 * memcpy() from current, else save CPU state directly to the target.
8740 */
8741 if (test_thread_flag(TIF_NEED_FPU_LOAD))
8742 memcpy(&fpu->state, &current->thread.fpu.state,
8743 fpu_kernel_xstate_size);
8744 else
8745 copy_fpregs_to_fpstate(fpu);
8746}
8747
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02008748/* Swap (qemu) user FPU context for the guest FPU context. */
8749static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
8750{
Rik van Riel5f409e22019-04-03 18:41:52 +02008751 fpregs_lock();
8752
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08008753 kvm_save_current_fpu(vcpu->arch.user_fpu);
8754
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008755 /* PKRU is separately restored in kvm_x86_ops.run. */
Marc Orrb666a4b2018-11-06 14:53:56 -08008756 __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu->state,
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02008757 ~XFEATURE_MASK_PKRU);
Rik van Riel5f409e22019-04-03 18:41:52 +02008758
8759 fpregs_mark_activate();
8760 fpregs_unlock();
8761
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02008762 trace_kvm_fpu(1);
8763}
8764
8765/* When vcpu_run ends, restore user space FPU context. */
8766static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
8767{
Rik van Riel5f409e22019-04-03 18:41:52 +02008768 fpregs_lock();
8769
Sean Christophersonc9aef3b2020-01-17 11:30:49 -08008770 kvm_save_current_fpu(vcpu->arch.guest_fpu);
8771
Wanpeng Lid9a710e2019-07-22 12:26:21 +08008772 copy_kernel_to_fpregs(&vcpu->arch.user_fpu->state);
Rik van Riel5f409e22019-04-03 18:41:52 +02008773
8774 fpregs_mark_activate();
8775 fpregs_unlock();
8776
Sebastian Andrzej Siewior822f3122018-09-12 15:33:45 +02008777 ++vcpu->stat.fpu_reload;
8778 trace_kvm_fpu(0);
8779}
8780
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08008781int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008782{
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08008783 struct kvm_run *kvm_run = vcpu->run;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008784 int r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008785
Christoffer Dallaccb7572017-12-04 21:35:25 +01008786 vcpu_load(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +01008787 kvm_sigset_activate(vcpu);
Peter Xu5663d8f2017-12-12 17:15:02 +01008788 kvm_load_guest_fpu(vcpu);
8789
Avi Kivityac9f6dc2008-07-06 15:48:31 +03008790 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
Jan H. Schönherr2f173d22017-09-06 18:34:06 +02008791 if (kvm_run->immediate_exit) {
8792 r = -EINTR;
8793 goto out;
8794 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +03008795 kvm_vcpu_block(vcpu);
Jan Kiszka66450a22013-03-13 12:42:34 +01008796 kvm_apic_accept_events(vcpu);
Radim Krčmář72875d82017-04-26 22:32:19 +02008797 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
Avi Kivityac9f6dc2008-07-06 15:48:31 +03008798 r = -EAGAIN;
Jan H. Schönherra0595002017-09-06 00:27:19 +02008799 if (signal_pending(current)) {
8800 r = -EINTR;
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08008801 kvm_run->exit_reason = KVM_EXIT_INTR;
Jan H. Schönherra0595002017-09-06 00:27:19 +02008802 ++vcpu->stat.signal_exits;
8803 }
Avi Kivityac9f6dc2008-07-06 15:48:31 +03008804 goto out;
8805 }
8806
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08008807 if (kvm_run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) {
Ken Hofsass01643c52018-01-31 16:03:36 -08008808 r = -EINVAL;
8809 goto out;
8810 }
8811
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08008812 if (kvm_run->kvm_dirty_regs) {
Ken Hofsass01643c52018-01-31 16:03:36 -08008813 r = sync_regs(vcpu);
8814 if (r != 0)
8815 goto out;
8816 }
8817
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008818 /* re-sync apic's tpr */
Paolo Bonzini35754c92015-07-29 12:05:37 +02008819 if (!lapic_in_kernel(vcpu)) {
Andre Przywaraeea1cff2010-12-21 11:12:00 +01008820 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
8821 r = -EINVAL;
8822 goto out;
8823 }
8824 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008825
Gleb Natapov716d51a2012-09-03 15:24:26 +03008826 if (unlikely(vcpu->arch.complete_userspace_io)) {
8827 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
8828 vcpu->arch.complete_userspace_io = NULL;
8829 r = cui(vcpu);
8830 if (r <= 0)
Peter Xu5663d8f2017-12-12 17:15:02 +01008831 goto out;
Gleb Natapov716d51a2012-09-03 15:24:26 +03008832 } else
8833 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
Avi Kivity5287f192010-01-19 14:20:10 +02008834
Paolo Bonzini460df4c2017-02-08 11:50:15 +01008835 if (kvm_run->immediate_exit)
8836 r = -EINTR;
8837 else
8838 r = vcpu_run(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008839
8840out:
Peter Xu5663d8f2017-12-12 17:15:02 +01008841 kvm_put_guest_fpu(vcpu);
Tianjia Zhang1b94f6f2020-04-16 13:10:57 +08008842 if (kvm_run->kvm_valid_regs)
Ken Hofsass01643c52018-01-31 16:03:36 -08008843 store_regs(vcpu);
Marcelo Tosattif1d86e42010-05-03 23:04:27 -03008844 post_kvm_run_save(vcpu);
Jan H. Schönherr20b70352017-11-24 22:39:01 +01008845 kvm_sigset_deactivate(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008846
Christoffer Dallaccb7572017-12-04 21:35:25 +01008847 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008848 return r;
8849}
8850
Ken Hofsass01643c52018-01-31 16:03:36 -08008851static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008852{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008853 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
8854 /*
8855 * We are here if userspace calls get_regs() in the middle of
8856 * instruction emulation. Registers state needs to be copied
Guo Chao4a969982012-06-28 15:17:27 +08008857 * back from emulation context to vcpu. Userspace shouldn't do
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008858 * that usually, but some bad designed PV devices (vmware
8859 * backdoor interface) need this to work
8860 */
Sean Christophersonc9b8b072020-02-18 15:29:48 -08008861 emulator_writeback_register_cache(vcpu->arch.emulate_ctxt);
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008862 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
8863 }
Sean Christophersonde3cd112019-04-30 10:36:17 -07008864 regs->rax = kvm_rax_read(vcpu);
8865 regs->rbx = kvm_rbx_read(vcpu);
8866 regs->rcx = kvm_rcx_read(vcpu);
8867 regs->rdx = kvm_rdx_read(vcpu);
8868 regs->rsi = kvm_rsi_read(vcpu);
8869 regs->rdi = kvm_rdi_read(vcpu);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02008870 regs->rsp = kvm_rsp_read(vcpu);
Sean Christophersonde3cd112019-04-30 10:36:17 -07008871 regs->rbp = kvm_rbp_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008872#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -07008873 regs->r8 = kvm_r8_read(vcpu);
8874 regs->r9 = kvm_r9_read(vcpu);
8875 regs->r10 = kvm_r10_read(vcpu);
8876 regs->r11 = kvm_r11_read(vcpu);
8877 regs->r12 = kvm_r12_read(vcpu);
8878 regs->r13 = kvm_r13_read(vcpu);
8879 regs->r14 = kvm_r14_read(vcpu);
8880 regs->r15 = kvm_r15_read(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008881#endif
8882
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008883 regs->rip = kvm_rip_read(vcpu);
Jan Kiszka91586a32009-10-05 13:07:21 +02008884 regs->rflags = kvm_get_rflags(vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -08008885}
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008886
Ken Hofsass01643c52018-01-31 16:03:36 -08008887int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
8888{
8889 vcpu_load(vcpu);
8890 __get_regs(vcpu, regs);
Christoffer Dall1fc9b762017-12-04 21:35:26 +01008891 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008892 return 0;
8893}
8894
Ken Hofsass01643c52018-01-31 16:03:36 -08008895static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008896{
Gleb Natapov7ae441e2011-03-31 12:06:41 +02008897 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
8898 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
8899
Sean Christophersonde3cd112019-04-30 10:36:17 -07008900 kvm_rax_write(vcpu, regs->rax);
8901 kvm_rbx_write(vcpu, regs->rbx);
8902 kvm_rcx_write(vcpu, regs->rcx);
8903 kvm_rdx_write(vcpu, regs->rdx);
8904 kvm_rsi_write(vcpu, regs->rsi);
8905 kvm_rdi_write(vcpu, regs->rdi);
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02008906 kvm_rsp_write(vcpu, regs->rsp);
Sean Christophersonde3cd112019-04-30 10:36:17 -07008907 kvm_rbp_write(vcpu, regs->rbp);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008908#ifdef CONFIG_X86_64
Sean Christophersonde3cd112019-04-30 10:36:17 -07008909 kvm_r8_write(vcpu, regs->r8);
8910 kvm_r9_write(vcpu, regs->r9);
8911 kvm_r10_write(vcpu, regs->r10);
8912 kvm_r11_write(vcpu, regs->r11);
8913 kvm_r12_write(vcpu, regs->r12);
8914 kvm_r13_write(vcpu, regs->r13);
8915 kvm_r14_write(vcpu, regs->r14);
8916 kvm_r15_write(vcpu, regs->r15);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008917#endif
8918
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03008919 kvm_rip_write(vcpu, regs->rip);
Wanpeng Lid73235d2017-12-07 00:30:08 -08008920 kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008921
Jan Kiszkab4f14ab2008-04-30 17:59:04 +02008922 vcpu->arch.exception.pending = false;
8923
Avi Kivity3842d132010-07-27 12:30:24 +03008924 kvm_make_request(KVM_REQ_EVENT, vcpu);
Ken Hofsass01643c52018-01-31 16:03:36 -08008925}
Avi Kivity3842d132010-07-27 12:30:24 +03008926
Ken Hofsass01643c52018-01-31 16:03:36 -08008927int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
8928{
8929 vcpu_load(vcpu);
8930 __set_regs(vcpu, regs);
Christoffer Dall875656f2017-12-04 21:35:27 +01008931 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008932 return 0;
8933}
8934
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008935void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
8936{
8937 struct kvm_segment cs;
8938
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02008939 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008940 *db = cs.db;
8941 *l = cs.l;
8942}
8943EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
8944
Ken Hofsass01643c52018-01-31 16:03:36 -08008945static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008946{
Gleb Natapov89a27f42010-02-16 10:51:48 +02008947 struct desc_ptr dt;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008948
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02008949 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
8950 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
8951 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
8952 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
8953 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
8954 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008955
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02008956 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
8957 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008958
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008959 kvm_x86_ops.get_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02008960 sregs->idt.limit = dt.size;
8961 sregs->idt.base = dt.address;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07008962 kvm_x86_ops.get_gdt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02008963 sregs->gdt.limit = dt.size;
8964 sregs->gdt.base = dt.address;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008965
Avi Kivity4d4ec082009-12-29 18:07:30 +02008966 sregs->cr0 = kvm_read_cr0(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08008967 sregs->cr2 = vcpu->arch.cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02008968 sregs->cr3 = kvm_read_cr3(vcpu);
Avi Kivityfc78f512009-12-07 12:16:48 +02008969 sregs->cr4 = kvm_read_cr4(vcpu);
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02008970 sregs->cr8 = kvm_get_cr8(vcpu);
Avi Kivityf6801df2010-01-21 15:31:50 +02008971 sregs->efer = vcpu->arch.efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008972 sregs->apic_base = kvm_get_apic_base(vcpu);
8973
Jordan Borgner0e96f312018-10-28 12:58:28 +00008974 memset(sregs->interrupt_bitmap, 0, sizeof(sregs->interrupt_bitmap));
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008975
Liran Alon04140b42018-03-23 03:01:31 +03008976 if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft)
Gleb Natapov14d0bc12009-04-21 17:45:11 +03008977 set_bit(vcpu->arch.interrupt.nr,
8978 (unsigned long *)sregs->interrupt_bitmap);
Ken Hofsass01643c52018-01-31 16:03:36 -08008979}
Gleb Natapov16d7a192009-04-21 17:45:10 +03008980
Ken Hofsass01643c52018-01-31 16:03:36 -08008981int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
8982 struct kvm_sregs *sregs)
8983{
8984 vcpu_load(vcpu);
8985 __get_sregs(vcpu, sregs);
Christoffer Dallbcdec412017-12-04 21:35:28 +01008986 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05008987 return 0;
8988}
8989
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03008990int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
8991 struct kvm_mp_state *mp_state)
8992{
Christoffer Dallfd232562017-12-04 21:35:30 +01008993 vcpu_load(vcpu);
Sean Christophersonf958bd22019-12-09 12:19:31 -08008994 if (kvm_mpx_supported())
8995 kvm_load_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +01008996
Jan Kiszka66450a22013-03-13 12:42:34 +01008997 kvm_apic_accept_events(vcpu);
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +05308998 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED &&
8999 vcpu->arch.pv.pv_unhalted)
9000 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
9001 else
9002 mp_state->mp_state = vcpu->arch.mp_state;
9003
Sean Christophersonf958bd22019-12-09 12:19:31 -08009004 if (kvm_mpx_supported())
9005 kvm_put_guest_fpu(vcpu);
Christoffer Dallfd232562017-12-04 21:35:30 +01009006 vcpu_put(vcpu);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03009007 return 0;
9008}
9009
9010int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
9011 struct kvm_mp_state *mp_state)
9012{
Christoffer Dalle83dff52017-12-04 21:35:31 +01009013 int ret = -EINVAL;
9014
9015 vcpu_load(vcpu);
9016
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01009017 if (!lapic_in_kernel(vcpu) &&
Jan Kiszka66450a22013-03-13 12:42:34 +01009018 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
Christoffer Dalle83dff52017-12-04 21:35:31 +01009019 goto out;
Jan Kiszka66450a22013-03-13 12:42:34 +01009020
Liran Alon27cbe7d2019-11-11 11:16:40 +02009021 /*
9022 * KVM_MP_STATE_INIT_RECEIVED means the processor is in
9023 * INIT state; latched init should be reported using
9024 * KVM_SET_VCPU_EVENTS, so reject it here.
9025 */
9026 if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) &&
David Hildenbrand28bf2882017-03-23 11:46:03 +01009027 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
9028 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
Christoffer Dalle83dff52017-12-04 21:35:31 +01009029 goto out;
David Hildenbrand28bf2882017-03-23 11:46:03 +01009030
Jan Kiszka66450a22013-03-13 12:42:34 +01009031 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
9032 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
9033 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
9034 } else
9035 vcpu->arch.mp_state = mp_state->mp_state;
Avi Kivity3842d132010-07-27 12:30:24 +03009036 kvm_make_request(KVM_REQ_EVENT, vcpu);
Christoffer Dalle83dff52017-12-04 21:35:31 +01009037
9038 ret = 0;
9039out:
9040 vcpu_put(vcpu);
9041 return ret;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03009042}
9043
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01009044int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
9045 int reason, bool has_error_code, u32 error_code)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009046{
Sean Christophersonc9b8b072020-02-18 15:29:48 -08009047 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
Mohammed Gamal8ec47222010-08-16 00:47:01 +03009048 int ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009049
Mohammed Gamal8ec47222010-08-16 00:47:01 +03009050 init_emulate_ctxt(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02009051
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01009052 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09009053 has_error_code, error_code);
Sean Christopherson10517782019-08-27 14:40:35 -07009054 if (ret) {
9055 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
9056 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
9057 vcpu->run->internal.ndata = 0;
Sean Christopherson60fc3d02019-08-27 14:40:38 -07009058 return 0;
Sean Christopherson10517782019-08-27 14:40:35 -07009059 }
Gleb Natapovc6975182010-02-18 12:15:01 +02009060
Takuya Yoshikawa9d741912011-05-29 21:53:48 +09009061 kvm_rip_write(vcpu, ctxt->eip);
9062 kvm_set_rflags(vcpu, ctxt->eflags);
Sean Christopherson60fc3d02019-08-27 14:40:38 -07009063 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02009064}
9065EXPORT_SYMBOL_GPL(kvm_task_switch);
9066
Peng Hao3140c152018-04-02 09:15:32 +08009067static int kvm_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Lan Tianyuf2981032017-12-14 03:01:52 -05009068{
Tianyu Lan37b95952018-01-16 17:34:07 +08009069 if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) {
Lan Tianyuf2981032017-12-14 03:01:52 -05009070 /*
9071 * When EFER.LME and CR0.PG are set, the processor is in
9072 * 64-bit mode (though maybe in a 32-bit code segment).
9073 * CR4.PAE and EFER.LMA must be set.
9074 */
Tianyu Lan37b95952018-01-16 17:34:07 +08009075 if (!(sregs->cr4 & X86_CR4_PAE)
Lan Tianyuf2981032017-12-14 03:01:52 -05009076 || !(sregs->efer & EFER_LMA))
9077 return -EINVAL;
9078 } else {
9079 /*
9080 * Not in 64-bit mode: EFER.LMA is clear and the code
9081 * segment cannot be 64-bit.
9082 */
9083 if (sregs->efer & EFER_LMA || sregs->cs.l)
9084 return -EINVAL;
9085 }
9086
Wanpeng Li3ca94192019-09-18 17:50:10 +08009087 return kvm_valid_cr4(vcpu, sregs->cr4);
Lan Tianyuf2981032017-12-14 03:01:52 -05009088}
9089
Ken Hofsass01643c52018-01-31 16:03:36 -08009090static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009091{
Jan Kiszka58cb6282014-01-24 16:48:44 +01009092 struct msr_data apic_base_msr;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009093 int mmu_reset_needed = 0;
Wei Huangc4d21882018-05-01 09:49:54 -05009094 int cpuid_update_needed = 0;
Xiao Guangrong63f42e02011-01-12 15:39:18 +08009095 int pending_vec, max_bits, idx;
Gleb Natapov89a27f42010-02-16 10:51:48 +02009096 struct desc_ptr dt;
Christoffer Dallb4ef9d42017-12-04 21:35:29 +01009097 int ret = -EINVAL;
9098
Lan Tianyuf2981032017-12-14 03:01:52 -05009099 if (kvm_valid_sregs(vcpu, sregs))
Eric Biggers8dbfb2b2017-12-20 16:24:27 -08009100 goto out;
Lan Tianyuf2981032017-12-14 03:01:52 -05009101
Jim Mattsond3802282017-08-10 10:14:13 -07009102 apic_base_msr.data = sregs->apic_base;
9103 apic_base_msr.host_initiated = true;
9104 if (kvm_set_apic_base(vcpu, &apic_base_msr))
Christoffer Dallb4ef9d42017-12-04 21:35:29 +01009105 goto out;
Petr Matousek6d1068b2012-11-06 19:24:07 +01009106
Gleb Natapov89a27f42010-02-16 10:51:48 +02009107 dt.size = sregs->idt.limit;
9108 dt.address = sregs->idt.base;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009109 kvm_x86_ops.set_idt(vcpu, &dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02009110 dt.size = sregs->gdt.limit;
9111 dt.address = sregs->gdt.base;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009112 kvm_x86_ops.set_gdt(vcpu, &dt);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009113
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009114 vcpu->arch.cr2 = sregs->cr2;
Avi Kivity9f8fe502010-12-05 17:30:00 +02009115 mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
Jan Kiszkadc7e7952009-07-01 20:52:03 +02009116 vcpu->arch.cr3 = sregs->cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07009117 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009118
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02009119 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009120
Avi Kivityf6801df2010-01-21 15:31:50 +02009121 mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009122 kvm_x86_ops.set_efer(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009123
Avi Kivity4d4ec082009-12-29 18:07:30 +02009124 mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009125 kvm_x86_ops.set_cr0(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +00009126 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009127
Avi Kivityfc78f512009-12-07 12:16:48 +02009128 mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
Wei Huangc4d21882018-05-01 09:49:54 -05009129 cpuid_update_needed |= ((kvm_read_cr4(vcpu) ^ sregs->cr4) &
9130 (X86_CR4_OSXSAVE | X86_CR4_PKE));
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009131 kvm_x86_ops.set_cr4(vcpu, sregs->cr4);
Wei Huangc4d21882018-05-01 09:49:54 -05009132 if (cpuid_update_needed)
Avi Kivity00b27a32011-11-23 16:30:32 +02009133 kvm_update_cpuid(vcpu);
Xiao Guangrong63f42e02011-01-12 15:39:18 +08009134
9135 idx = srcu_read_lock(&vcpu->kvm->srcu);
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +02009136 if (is_pae_paging(vcpu)) {
Avi Kivity9f8fe502010-12-05 17:30:00 +02009137 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02009138 mmu_reset_needed = 1;
9139 }
Xiao Guangrong63f42e02011-01-12 15:39:18 +08009140 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009141
9142 if (mmu_reset_needed)
9143 kvm_mmu_reset_context(vcpu);
9144
Michael S. Tsirkina50abc32012-09-05 20:00:52 +03009145 max_bits = KVM_NR_INTERRUPTS;
Gleb Natapov923c61b2009-05-11 13:35:48 +03009146 pending_vec = find_first_bit(
9147 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
9148 if (pending_vec < max_bits) {
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009149 kvm_queue_interrupt(vcpu, pending_vec, false);
Gleb Natapov923c61b2009-05-11 13:35:48 +03009150 pr_debug("Set back pending irq %d\n", pending_vec);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009151 }
9152
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02009153 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
9154 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
9155 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
9156 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
9157 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
9158 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009159
Guillaume Thouvenin3e6e0aa2008-05-27 10:18:46 +02009160 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
9161 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009162
Mikhail Ershov5f0269f2009-08-03 14:58:25 +03009163 update_cr8_intercept(vcpu);
9164
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03009165 /* Older userspace won't unhalt the vcpu on reset. */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03009166 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03009167 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
Avi Kivity3eeb3282010-01-21 15:31:48 +02009168 !is_protmode(vcpu))
Marcelo Tosatti9c3e4aa2008-09-10 16:40:55 -03009169 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
9170
Avi Kivity3842d132010-07-27 12:30:24 +03009171 kvm_make_request(KVM_REQ_EVENT, vcpu);
9172
Christoffer Dallb4ef9d42017-12-04 21:35:29 +01009173 ret = 0;
9174out:
Ken Hofsass01643c52018-01-31 16:03:36 -08009175 return ret;
9176}
9177
9178int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
9179 struct kvm_sregs *sregs)
9180{
9181 int ret;
9182
9183 vcpu_load(vcpu);
9184 ret = __set_sregs(vcpu, sregs);
Christoffer Dallb4ef9d42017-12-04 21:35:29 +01009185 vcpu_put(vcpu);
9186 return ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009187}
9188
Jan Kiszkad0bfb942008-12-15 13:52:10 +01009189int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
9190 struct kvm_guest_debug *dbg)
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009191{
Jan Kiszka355be0b2009-10-03 00:31:21 +02009192 unsigned long rflags;
Jan Kiszkaae675ef2008-12-15 13:52:10 +01009193 int i, r;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009194
Christoffer Dall66b56562017-12-04 21:35:33 +01009195 vcpu_load(vcpu);
9196
Jan Kiszka4f926bf22009-10-30 12:46:59 +01009197 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
9198 r = -EBUSY;
9199 if (vcpu->arch.exception.pending)
Avi Kivity2122ff52010-05-13 11:25:04 +03009200 goto out;
Jan Kiszka4f926bf22009-10-30 12:46:59 +01009201 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
9202 kvm_queue_exception(vcpu, DB_VECTOR);
9203 else
9204 kvm_queue_exception(vcpu, BP_VECTOR);
9205 }
9206
Jan Kiszka91586a32009-10-05 13:07:21 +02009207 /*
9208 * Read rflags as long as potentially injected trace flags are still
9209 * filtered out.
9210 */
9211 rflags = kvm_get_rflags(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02009212
9213 vcpu->guest_debug = dbg->control;
9214 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
9215 vcpu->guest_debug = 0;
9216
9217 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Jan Kiszkaae675ef2008-12-15 13:52:10 +01009218 for (i = 0; i < KVM_NR_DB_REGS; ++i)
9219 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
Jan Kiszkac8639012012-09-21 05:42:55 +02009220 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01009221 } else {
9222 for (i = 0; i < KVM_NR_DB_REGS; i++)
9223 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
Jan Kiszkaae675ef2008-12-15 13:52:10 +01009224 }
Jan Kiszkac8639012012-09-21 05:42:55 +02009225 kvm_update_dr7(vcpu);
Jan Kiszkaae675ef2008-12-15 13:52:10 +01009226
Jan Kiszkaf92653e2010-02-23 17:47:55 +01009227 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
9228 vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) +
9229 get_segment_base(vcpu, VCPU_SREG_CS);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009230
Jan Kiszka91586a32009-10-05 13:07:21 +02009231 /*
9232 * Trigger an rflags update that will inject or remove the trace
9233 * flags.
9234 */
9235 kvm_set_rflags(vcpu, rflags);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01009236
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009237 kvm_x86_ops.update_bp_intercept(vcpu);
Jan Kiszka355be0b2009-10-03 00:31:21 +02009238
Jan Kiszka4f926bf22009-10-30 12:46:59 +01009239 r = 0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009240
Avi Kivity2122ff52010-05-13 11:25:04 +03009241out:
Christoffer Dall66b56562017-12-04 21:35:33 +01009242 vcpu_put(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05009243 return r;
9244}
9245
9246/*
Zhang Xiantao8b006792007-11-16 13:05:55 +08009247 * Translate a guest virtual address to a guest physical address.
9248 */
9249int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
9250 struct kvm_translation *tr)
9251{
9252 unsigned long vaddr = tr->linear_address;
9253 gpa_t gpa;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009254 int idx;
Zhang Xiantao8b006792007-11-16 13:05:55 +08009255
Christoffer Dall1da5b612017-12-04 21:35:32 +01009256 vcpu_load(vcpu);
9257
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009258 idx = srcu_read_lock(&vcpu->kvm->srcu);
Gleb Natapov1871c602010-02-10 14:21:32 +02009259 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02009260 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Zhang Xiantao8b006792007-11-16 13:05:55 +08009261 tr->physical_address = gpa;
9262 tr->valid = gpa != UNMAPPED_GVA;
9263 tr->writeable = 1;
9264 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +08009265
Christoffer Dall1da5b612017-12-04 21:35:32 +01009266 vcpu_put(vcpu);
Zhang Xiantao8b006792007-11-16 13:05:55 +08009267 return 0;
9268}
9269
Hollis Blanchardd0752062007-10-31 17:24:25 -05009270int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
9271{
Christoffer Dall13931232017-12-04 21:35:34 +01009272 struct fxregs_state *fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05009273
Christoffer Dall13931232017-12-04 21:35:34 +01009274 vcpu_load(vcpu);
9275
Marc Orrb666a4b2018-11-06 14:53:56 -08009276 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05009277 memcpy(fpu->fpr, fxsave->st_space, 128);
9278 fpu->fcw = fxsave->cwd;
9279 fpu->fsw = fxsave->swd;
9280 fpu->ftwx = fxsave->twd;
9281 fpu->last_opcode = fxsave->fop;
9282 fpu->last_ip = fxsave->rip;
9283 fpu->last_dp = fxsave->rdp;
Jordan Borgner0e96f312018-10-28 12:58:28 +00009284 memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -05009285
Christoffer Dall13931232017-12-04 21:35:34 +01009286 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -05009287 return 0;
9288}
9289
9290int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
9291{
Christoffer Dall6a96bc72017-12-04 21:35:35 +01009292 struct fxregs_state *fxsave;
9293
9294 vcpu_load(vcpu);
9295
Marc Orrb666a4b2018-11-06 14:53:56 -08009296 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
Hollis Blanchardd0752062007-10-31 17:24:25 -05009297
Hollis Blanchardd0752062007-10-31 17:24:25 -05009298 memcpy(fxsave->st_space, fpu->fpr, 128);
9299 fxsave->cwd = fpu->fcw;
9300 fxsave->swd = fpu->fsw;
9301 fxsave->twd = fpu->ftwx;
9302 fxsave->fop = fpu->last_opcode;
9303 fxsave->rip = fpu->last_ip;
9304 fxsave->rdp = fpu->last_dp;
Jordan Borgner0e96f312018-10-28 12:58:28 +00009305 memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space));
Hollis Blanchardd0752062007-10-31 17:24:25 -05009306
Christoffer Dall6a96bc72017-12-04 21:35:35 +01009307 vcpu_put(vcpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -05009308 return 0;
9309}
9310
Ken Hofsass01643c52018-01-31 16:03:36 -08009311static void store_regs(struct kvm_vcpu *vcpu)
9312{
9313 BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES);
9314
9315 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS)
9316 __get_regs(vcpu, &vcpu->run->s.regs.regs);
9317
9318 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS)
9319 __get_sregs(vcpu, &vcpu->run->s.regs.sregs);
9320
9321 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS)
9322 kvm_vcpu_ioctl_x86_get_vcpu_events(
9323 vcpu, &vcpu->run->s.regs.events);
9324}
9325
9326static int sync_regs(struct kvm_vcpu *vcpu)
9327{
9328 if (vcpu->run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS)
9329 return -EINVAL;
9330
9331 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) {
9332 __set_regs(vcpu, &vcpu->run->s.regs.regs);
9333 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS;
9334 }
9335 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) {
9336 if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs))
9337 return -EINVAL;
9338 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS;
9339 }
9340 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) {
9341 if (kvm_vcpu_ioctl_x86_set_vcpu_events(
9342 vcpu, &vcpu->run->s.regs.events))
9343 return -EINVAL;
9344 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS;
9345 }
9346
9347 return 0;
9348}
9349
Ingo Molnar0ee6a512015-04-27 06:58:22 +02009350static void fx_init(struct kvm_vcpu *vcpu)
Hollis Blanchardd0752062007-10-31 17:24:25 -05009351{
Marc Orrb666a4b2018-11-06 14:53:56 -08009352 fpstate_init(&vcpu->arch.guest_fpu->state);
Borislav Petkov782511b2016-04-04 22:25:03 +02009353 if (boot_cpu_has(X86_FEATURE_XSAVES))
Marc Orrb666a4b2018-11-06 14:53:56 -08009354 vcpu->arch.guest_fpu->state.xsave.header.xcomp_bv =
Paolo Bonzinidf1daba2014-11-21 19:05:07 +01009355 host_xcr0 | XSTATE_COMPACTION_ENABLED;
Hollis Blanchardd0752062007-10-31 17:24:25 -05009356
Dexuan Cui2acf9232010-06-10 11:27:12 +08009357 /*
9358 * Ensure guest xcr0 is valid for loading
9359 */
Dave Hansend91cab72015-09-02 16:31:26 -07009360 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Dexuan Cui2acf9232010-06-10 11:27:12 +08009361
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009362 vcpu->arch.cr0 |= X86_CR0_ET;
Hollis Blanchardd0752062007-10-31 17:24:25 -05009363}
Hollis Blanchardd0752062007-10-31 17:24:25 -05009364
Sean Christopherson897cc382019-12-18 13:55:09 -08009365int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009366{
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01009367 if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
Sean Christopherson897cc382019-12-18 13:55:09 -08009368 pr_warn_once("kvm: SMP vm created on host with unstable TSC; "
9369 "guest TSC will not be reliable\n");
Liang Lic447e762015-05-21 04:41:25 +08009370
Sean Christopherson897cc382019-12-18 13:55:09 -08009371 return 0;
Avi Kivity26e52152007-11-20 15:30:24 +02009372}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009373
Sean Christophersone529ef62019-12-18 13:55:15 -08009374int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
Avi Kivity26e52152007-11-20 15:30:24 +02009375{
Sean Christopherson95a0d012019-12-18 13:55:23 -08009376 struct page *page;
9377 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009378
Sean Christopherson95a0d012019-12-18 13:55:23 -08009379 if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu))
9380 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
9381 else
9382 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
9383
9384 kvm_set_tsc_khz(vcpu, max_tsc_khz);
9385
9386 r = kvm_mmu_create(vcpu);
9387 if (r < 0)
9388 return r;
9389
9390 if (irqchip_in_kernel(vcpu->kvm)) {
Sean Christopherson95a0d012019-12-18 13:55:23 -08009391 r = kvm_create_lapic(vcpu, lapic_timer_advance_ns);
9392 if (r < 0)
9393 goto fail_mmu_destroy;
Suravee Suthikulpanit4e19c362019-11-14 14:15:05 -06009394 if (kvm_apicv_activated(vcpu->kvm))
9395 vcpu->arch.apicv_active = true;
Sean Christopherson95a0d012019-12-18 13:55:23 -08009396 } else
9397 static_key_slow_inc(&kvm_no_apic_vcpu);
9398
9399 r = -ENOMEM;
9400
9401 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
9402 if (!page)
9403 goto fail_free_lapic;
9404 vcpu->arch.pio_data = page_address(page);
9405
9406 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
9407 GFP_KERNEL_ACCOUNT);
9408 if (!vcpu->arch.mce_banks)
9409 goto fail_free_pio_data;
9410 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
9411
9412 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask,
9413 GFP_KERNEL_ACCOUNT))
9414 goto fail_free_mce_banks;
9415
Sean Christophersonc9b8b072020-02-18 15:29:48 -08009416 if (!alloc_emulate_ctxt(vcpu))
9417 goto free_wbinvd_dirty_mask;
9418
Sean Christopherson95a0d012019-12-18 13:55:23 -08009419 vcpu->arch.user_fpu = kmem_cache_zalloc(x86_fpu_cache,
9420 GFP_KERNEL_ACCOUNT);
9421 if (!vcpu->arch.user_fpu) {
9422 pr_err("kvm: failed to allocate userspace's fpu\n");
Sean Christophersonc9b8b072020-02-18 15:29:48 -08009423 goto free_emulate_ctxt;
Sean Christopherson95a0d012019-12-18 13:55:23 -08009424 }
9425
9426 vcpu->arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
9427 GFP_KERNEL_ACCOUNT);
9428 if (!vcpu->arch.guest_fpu) {
9429 pr_err("kvm: failed to allocate vcpu's fpu\n");
9430 goto free_user_fpu;
9431 }
9432 fx_init(vcpu);
9433
Sean Christopherson95a0d012019-12-18 13:55:23 -08009434 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Sean Christopherson7d2e8742020-05-27 01:54:00 -07009435 vcpu->arch.tdp_level = kvm_x86_ops.get_tdp_level(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -08009436
9437 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
9438
9439 kvm_async_pf_hash_reset(vcpu);
9440 kvm_pmu_init(vcpu);
9441
9442 vcpu->arch.pending_external_vector = -1;
9443 vcpu->arch.preempted_in_kernel = false;
9444
9445 kvm_hv_vcpu_init(vcpu);
9446
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009447 r = kvm_x86_ops.vcpu_create(vcpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -08009448 if (r)
9449 goto free_guest_fpu;
Sean Christopherson5f73db12019-12-18 13:55:18 -08009450
Sean Christopherson0cf91352019-03-07 15:43:02 -08009451 vcpu->arch.arch_capabilities = kvm_get_arch_capabilities();
Jim Mattsone53d88af2018-10-30 12:20:21 -07009452 vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT;
Xiao Guangrong19efffa2015-06-15 16:55:31 +08009453 kvm_vcpu_mtrr_init(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +01009454 vcpu_load(vcpu);
Nadav Amitd28bc9d2015-04-13 14:34:08 +03009455 kvm_vcpu_reset(vcpu, false);
Paolo Bonzinie1732992018-10-08 21:28:09 +02009456 kvm_init_mmu(vcpu, false);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009457 vcpu_put(vcpu);
Christoffer Dallec7660c2017-12-04 21:35:23 +01009458 return 0;
Sean Christopherson95a0d012019-12-18 13:55:23 -08009459
9460free_guest_fpu:
9461 kmem_cache_free(x86_fpu_cache, vcpu->arch.guest_fpu);
9462free_user_fpu:
9463 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
Sean Christophersonc9b8b072020-02-18 15:29:48 -08009464free_emulate_ctxt:
9465 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson95a0d012019-12-18 13:55:23 -08009466free_wbinvd_dirty_mask:
9467 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
9468fail_free_mce_banks:
9469 kfree(vcpu->arch.mce_banks);
9470fail_free_pio_data:
9471 free_page((unsigned long)vcpu->arch.pio_data);
9472fail_free_lapic:
9473 kvm_free_lapic(vcpu);
9474fail_mmu_destroy:
9475 kvm_mmu_destroy(vcpu);
9476 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009477}
9478
Dominik Dingel31928aa2014-12-04 15:47:07 +01009479void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -02009480{
Will Auld8fe8ab42012-11-29 12:42:12 -08009481 struct msr_data msr;
Andrew Jones332967a2014-02-28 12:52:55 +01009482 struct kvm *kvm = vcpu->kvm;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02009483
Roman Kagand3457c82017-07-14 17:13:20 +03009484 kvm_hv_vcpu_postcreate(vcpu);
9485
Christoffer Dallec7660c2017-12-04 21:35:23 +01009486 if (mutex_lock_killable(&vcpu->mutex))
Dominik Dingel31928aa2014-12-04 15:47:07 +01009487 return;
Christoffer Dallec7660c2017-12-04 21:35:23 +01009488 vcpu_load(vcpu);
Will Auld8fe8ab42012-11-29 12:42:12 -08009489 msr.data = 0x0;
9490 msr.index = MSR_IA32_TSC;
9491 msr.host_initiated = true;
9492 kvm_write_tsc(vcpu, &msr);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02009493 vcpu_put(vcpu);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -03009494
9495 /* poll control enabled by default */
9496 vcpu->arch.msr_kvm_poll_control = 1;
9497
Christoffer Dallec7660c2017-12-04 21:35:23 +01009498 mutex_unlock(&vcpu->mutex);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02009499
Wanpeng Lib34de572020-02-28 11:18:41 +08009500 if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0)
9501 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
9502 KVMCLOCK_SYNC_PERIOD);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02009503}
9504
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06009505void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009506{
Paolo Bonzini4cbc4182020-01-30 18:47:38 +01009507 struct gfn_to_pfn_cache *cache = &vcpu->arch.st.cache;
Sean Christopherson95a0d012019-12-18 13:55:23 -08009508 int idx;
Gleb Natapov344d9582010-10-14 11:22:50 +02009509
Paolo Bonzini4cbc4182020-01-30 18:47:38 +01009510 kvm_release_pfn(cache->pfn, cache->dirty, cache);
9511
Sean Christopherson50b143e2019-12-18 13:55:07 -08009512 kvmclock_reset(vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009513
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009514 kvm_x86_ops.vcpu_free(vcpu);
Sean Christopherson50b143e2019-12-18 13:55:07 -08009515
Sean Christophersonc9b8b072020-02-18 15:29:48 -08009516 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
Sean Christopherson50b143e2019-12-18 13:55:07 -08009517 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
9518 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
9519 kmem_cache_free(x86_fpu_cache, vcpu->arch.guest_fpu);
Sean Christopherson95a0d012019-12-18 13:55:23 -08009520
9521 kvm_hv_vcpu_uninit(vcpu);
9522 kvm_pmu_destroy(vcpu);
9523 kfree(vcpu->arch.mce_banks);
9524 kvm_free_lapic(vcpu);
9525 idx = srcu_read_lock(&vcpu->kvm->srcu);
9526 kvm_mmu_destroy(vcpu);
9527 srcu_read_unlock(&vcpu->kvm->srcu, idx);
9528 free_page((unsigned long)vcpu->arch.pio_data);
9529 if (!lapic_in_kernel(vcpu))
9530 static_key_slow_dec(&kvm_no_apic_vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009531}
9532
Nadav Amitd28bc9d2015-04-13 14:34:08 +03009533void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009534{
Radim Krčmářb7e31be2018-03-01 15:24:25 +01009535 kvm_lapic_reset(vcpu, init_event);
9536
Paolo Bonzinie69fab52015-06-04 10:44:44 +02009537 vcpu->arch.hflags = 0;
9538
Paolo Bonzinic43203c2016-06-01 22:26:00 +02009539 vcpu->arch.smi_pending = 0;
Liran Alon52797bf2017-11-15 13:43:14 +02009540 vcpu->arch.smi_count = 0;
Avi Kivity7460fb4a2011-09-20 13:43:14 +03009541 atomic_set(&vcpu->arch.nmi_queued, 0);
9542 vcpu->arch.nmi_pending = 0;
Jan Kiszka448fa4a2008-09-26 09:30:48 +02009543 vcpu->arch.nmi_injected = false;
Nadav Amit5f7552d2014-06-30 12:03:02 +03009544 kvm_clear_interrupt_queue(vcpu);
9545 kvm_clear_exception_queue(vcpu);
Jan Kiszka448fa4a2008-09-26 09:30:48 +02009546
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009547 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
Nadav Amitae561ed2015-04-02 03:10:37 +03009548 kvm_update_dr0123(vcpu);
Nadav Amit6f43ed02014-07-15 17:37:46 +03009549 vcpu->arch.dr6 = DR6_INIT;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009550 vcpu->arch.dr7 = DR7_FIXED_1;
Jan Kiszkac8639012012-09-21 05:42:55 +02009551 kvm_update_dr7(vcpu);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01009552
Nadav Amit11190222015-04-02 03:10:38 +03009553 vcpu->arch.cr2 = 0;
9554
Avi Kivity3842d132010-07-27 12:30:24 +03009555 kvm_make_request(KVM_REQ_EVENT, vcpu);
Gleb Natapov344d9582010-10-14 11:22:50 +02009556 vcpu->arch.apf.msr_val = 0;
Glauber Costac9aaa892011-07-11 15:28:14 -04009557 vcpu->arch.st.msr_val = 0;
Avi Kivity3842d132010-07-27 12:30:24 +03009558
Glauber Costa12f9a482011-02-01 14:16:40 -05009559 kvmclock_reset(vcpu);
9560
Gleb Natapovaf585b92010-10-14 11:22:46 +02009561 kvm_clear_async_pf_completion_queue(vcpu);
9562 kvm_async_pf_hash_reset(vcpu);
9563 vcpu->arch.apf.halted = false;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009564
Wanpeng Lia554d202017-10-11 05:10:19 -07009565 if (kvm_mpx_supported()) {
9566 void *mpx_state_buffer;
9567
9568 /*
9569 * To avoid have the INIT path from kvm_apic_has_events() that be
9570 * called with loaded FPU and does not let userspace fix the state.
9571 */
Rik van Rielf775b132017-11-14 16:54:23 -05009572 if (init_event)
9573 kvm_put_guest_fpu(vcpu);
Marc Orrb666a4b2018-11-06 14:53:56 -08009574 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02009575 XFEATURE_BNDREGS);
Wanpeng Lia554d202017-10-11 05:10:19 -07009576 if (mpx_state_buffer)
9577 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndreg_state));
Marc Orrb666a4b2018-11-06 14:53:56 -08009578 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
Sebastian Andrzej Siewiorabd16d62019-04-03 18:41:40 +02009579 XFEATURE_BNDCSR);
Wanpeng Lia554d202017-10-11 05:10:19 -07009580 if (mpx_state_buffer)
9581 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndcsr));
Rik van Rielf775b132017-11-14 16:54:23 -05009582 if (init_event)
9583 kvm_load_guest_fpu(vcpu);
Wanpeng Lia554d202017-10-11 05:10:19 -07009584 }
9585
Paolo Bonzini64d60672015-05-07 11:36:11 +02009586 if (!init_event) {
Nadav Amitd28bc9d2015-04-13 14:34:08 +03009587 kvm_pmu_reset(vcpu);
Paolo Bonzini64d60672015-05-07 11:36:11 +02009588 vcpu->arch.smbase = 0x30000;
Kyle Hueydb2336a2017-03-20 01:16:28 -07009589
Kyle Hueydb2336a2017-03-20 01:16:28 -07009590 vcpu->arch.msr_misc_features_enables = 0;
Wanpeng Lia554d202017-10-11 05:10:19 -07009591
9592 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
Paolo Bonzini64d60672015-05-07 11:36:11 +02009593 }
Gleb Natapovf5132b02011-11-10 14:57:22 +02009594
Julian Stecklina66f7b722012-12-05 15:26:19 +01009595 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
9596 vcpu->arch.regs_avail = ~0;
9597 vcpu->arch.regs_dirty = ~0;
9598
Wanpeng Lia554d202017-10-11 05:10:19 -07009599 vcpu->arch.ia32_xss = 0;
9600
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009601 kvm_x86_ops.vcpu_reset(vcpu, init_event);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009602}
9603
Paolo Bonzini2b4a2732014-11-24 14:35:24 +01009604void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
Jan Kiszka66450a22013-03-13 12:42:34 +01009605{
9606 struct kvm_segment cs;
9607
9608 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
9609 cs.selector = vector << 8;
9610 cs.base = vector << 12;
9611 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
9612 kvm_rip_write(vcpu, 0);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009613}
9614
Radim Krčmář13a34e02014-08-28 15:13:03 +02009615int kvm_arch_hardware_enable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009616{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10009617 struct kvm *kvm;
9618 struct kvm_vcpu *vcpu;
9619 int i;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009620 int ret;
9621 u64 local_tsc;
9622 u64 max_tsc = 0;
9623 bool stable, backwards_tsc = false;
Avi Kivity18863bd2009-09-07 11:12:18 +03009624
9625 kvm_shared_msr_cpu_online();
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009626 ret = kvm_x86_ops.hardware_enable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009627 if (ret != 0)
9628 return ret;
9629
Andy Lutomirski4ea16362015-06-25 18:44:07 +02009630 local_tsc = rdtsc();
Vitaly Kuznetsovb0c39dc2018-01-24 14:23:36 +01009631 stable = !kvm_check_tsc_unstable();
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009632 list_for_each_entry(kvm, &vm_list, vm_list) {
9633 kvm_for_each_vcpu(i, vcpu, kvm) {
9634 if (!stable && vcpu->cpu == smp_processor_id())
Guo Hui Liu105b21b2014-09-12 13:43:19 +08009635 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009636 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
9637 backwards_tsc = true;
9638 if (vcpu->arch.last_host_tsc > max_tsc)
9639 max_tsc = vcpu->arch.last_host_tsc;
9640 }
9641 }
9642 }
9643
9644 /*
9645 * Sometimes, even reliable TSCs go backwards. This happens on
9646 * platforms that reset TSC during suspend or hibernate actions, but
9647 * maintain synchronization. We must compensate. Fortunately, we can
9648 * detect that condition here, which happens early in CPU bringup,
9649 * before any KVM threads can be running. Unfortunately, we can't
9650 * bring the TSCs fully up to date with real time, as we aren't yet far
9651 * enough into CPU bringup that we know how much real time has actually
Jason A. Donenfeld9285ec42019-06-21 22:32:48 +02009652 * elapsed; our helper function, ktime_get_boottime_ns() will be using boot
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009653 * variables that haven't been updated yet.
9654 *
9655 * So we simply find the maximum observed TSC above, then record the
9656 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
9657 * the adjustment will be applied. Note that we accumulate
9658 * adjustments, in case multiple suspend cycles happen before some VCPU
9659 * gets a chance to run again. In the event that no KVM threads get a
9660 * chance to run, we will miss the entire elapsed period, as we'll have
9661 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
9662 * loose cycle time. This isn't too big a deal, since the loss will be
9663 * uniform across all VCPUs (not to mention the scenario is extremely
9664 * unlikely). It is possible that a second hibernate recovery happens
9665 * much faster than a first, causing the observed TSC here to be
9666 * smaller; this would require additional padding adjustment, which is
9667 * why we set last_host_tsc to the local tsc observed here.
9668 *
9669 * N.B. - this code below runs only on platforms with reliable TSC,
9670 * as that is the only way backwards_tsc is set above. Also note
9671 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
9672 * have the same delta_cyc adjustment applied if backwards_tsc
9673 * is detected. Note further, this adjustment is only done once,
9674 * as we reset last_host_tsc on all VCPUs to stop this from being
9675 * called multiple times (one for each physical CPU bringup).
9676 *
Guo Chao4a969982012-06-28 15:17:27 +08009677 * Platforms with unreliable TSCs don't have to deal with this, they
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009678 * will be compensated by the logic in vcpu_load, which sets the TSC to
9679 * catchup mode. This will catchup all VCPUs to real time, but cannot
9680 * guarantee that they stay in perfect synchronization.
9681 */
9682 if (backwards_tsc) {
9683 u64 delta_cyc = max_tsc - local_tsc;
9684 list_for_each_entry(kvm, &vm_list, vm_list) {
Ladi Proseka826faf2017-06-26 09:56:43 +02009685 kvm->arch.backwards_tsc_observed = true;
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009686 kvm_for_each_vcpu(i, vcpu, kvm) {
9687 vcpu->arch.tsc_offset_adjustment += delta_cyc;
9688 vcpu->arch.last_host_tsc = local_tsc;
Guo Hui Liu105b21b2014-09-12 13:43:19 +08009689 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
Zachary Amsden0dd6a6e2012-02-03 15:43:56 -02009690 }
9691
9692 /*
9693 * We have to disable TSC offset matching.. if you were
9694 * booting a VM while issuing an S4 host suspend....
9695 * you may have some problem. Solving this issue is
9696 * left as an exercise to the reader.
9697 */
9698 kvm->arch.last_tsc_nsec = 0;
9699 kvm->arch.last_tsc_write = 0;
9700 }
9701
9702 }
9703 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009704}
9705
Radim Krčmář13a34e02014-08-28 15:13:03 +02009706void kvm_arch_hardware_disable(void)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009707{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009708 kvm_x86_ops.hardware_disable();
Radim Krčmář13a34e02014-08-28 15:13:03 +02009709 drop_user_return_notifiers();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009710}
9711
Sean Christophersonb9904082020-03-21 13:25:55 -07009712int kvm_arch_hardware_setup(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009713{
Sean Christophersond008dfd2020-03-21 13:25:56 -07009714 struct kvm_x86_init_ops *ops = opaque;
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03009715 int r;
9716
Sean Christopherson91661982020-03-02 15:57:06 -08009717 rdmsrl_safe(MSR_EFER, &host_efer);
9718
Paolo Bonzini408e9a32020-03-05 16:11:56 +01009719 if (boot_cpu_has(X86_FEATURE_XSAVES))
9720 rdmsrl(MSR_IA32_XSS, host_xss);
9721
Sean Christophersond008dfd2020-03-21 13:25:56 -07009722 r = ops->hardware_setup();
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03009723 if (r != 0)
9724 return r;
9725
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009726 memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops));
Sean Christopherson69c6f692020-03-21 13:25:59 -07009727
Paolo Bonzini408e9a32020-03-05 16:11:56 +01009728 if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES))
9729 supported_xss = 0;
9730
Paolo Bonzini139f7422020-05-05 09:40:46 -04009731#define __kvm_cpu_cap_has(UNUSED_, f) kvm_cpu_cap_has(f)
9732 cr4_reserved_bits = __cr4_reserved_bits(__kvm_cpu_cap_has, UNUSED_);
9733#undef __kvm_cpu_cap_has
Sean Christophersonb11306b2019-12-10 14:44:13 -08009734
Haozhong Zhang35181e82015-10-20 15:39:03 +08009735 if (kvm_has_tsc_control) {
9736 /*
9737 * Make sure the user can only configure tsc_khz values that
9738 * fit into a signed integer.
Marcelo Tosatti273ba452018-06-11 14:12:10 -03009739 * A min value is not calculated because it will always
Haozhong Zhang35181e82015-10-20 15:39:03 +08009740 * be 1 on all machines.
9741 */
9742 u64 max = min(0x7fffffffULL,
9743 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
9744 kvm_max_guest_tsc_khz = max;
9745
Haozhong Zhangad7218832015-10-20 15:39:02 +08009746 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
Haozhong Zhang35181e82015-10-20 15:39:03 +08009747 }
Haozhong Zhangad7218832015-10-20 15:39:02 +08009748
Nadav Amit9e9c3fe2015-04-12 21:47:15 +03009749 kvm_init_msr_list();
9750 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009751}
9752
9753void kvm_arch_hardware_unsetup(void)
9754{
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009755 kvm_x86_ops.hardware_unsetup();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009756}
9757
Sean Christophersonb9904082020-03-21 13:25:55 -07009758int kvm_arch_check_processor_compat(void *opaque)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009759{
Sean Christophersonf1cdecf2019-12-10 14:44:14 -08009760 struct cpuinfo_x86 *c = &cpu_data(smp_processor_id());
Sean Christophersond008dfd2020-03-21 13:25:56 -07009761 struct kvm_x86_init_ops *ops = opaque;
Sean Christophersonf1cdecf2019-12-10 14:44:14 -08009762
9763 WARN_ON(!irqs_disabled());
9764
Paolo Bonzini139f7422020-05-05 09:40:46 -04009765 if (__cr4_reserved_bits(cpu_has, c) !=
9766 __cr4_reserved_bits(cpu_has, &boot_cpu_data))
Sean Christophersonf1cdecf2019-12-10 14:44:14 -08009767 return -EIO;
9768
Sean Christophersond008dfd2020-03-21 13:25:56 -07009769 return ops->check_processor_compatibility();
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08009770}
9771
Paolo Bonzinid71ba782015-07-29 11:56:48 +02009772bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
9773{
9774 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
9775}
9776EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
9777
9778bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
9779{
9780 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
9781}
9782
Gleb Natapov54e98182012-08-05 15:58:32 +03009783struct static_key kvm_no_apic_vcpu __read_mostly;
Paolo Bonzinibce87cc2016-01-08 13:48:51 +01009784EXPORT_SYMBOL_GPL(kvm_no_apic_vcpu);
Gleb Natapov54e98182012-08-05 15:58:32 +03009785
Radim Krčmáře790d9e2014-08-21 18:08:05 +02009786void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
9787{
Like Xub35e5542019-10-27 18:52:43 +08009788 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
9789
Paolo Bonzinic595cee2018-07-02 13:07:14 +02009790 vcpu->arch.l1tf_flush_l1d = true;
Like Xub35e5542019-10-27 18:52:43 +08009791 if (pmu->version && unlikely(pmu->event_count)) {
9792 pmu->need_cleanup = true;
9793 kvm_make_request(KVM_REQ_PMU, vcpu);
9794 }
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009795 kvm_x86_ops.sched_in(vcpu, cpu);
Radim Krčmáře790d9e2014-08-21 18:08:05 +02009796}
9797
Sean Christopherson562b6b02020-01-26 16:41:13 -08009798void kvm_arch_free_vm(struct kvm *kvm)
9799{
9800 kfree(kvm->arch.hyperv.hv_pa_pg);
9801 vfree(kvm);
9802}
9803
9804
Carsten Ottee08b9632012-01-04 10:25:20 +01009805int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009806{
Carsten Ottee08b9632012-01-04 10:25:20 +01009807 if (type)
9808 return -EINVAL;
9809
Paolo Bonzini6ef768f2014-11-20 13:45:31 +01009810 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08009811 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Sean Christopherson10605202019-09-12 19:46:10 -07009812 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
Junaid Shahid1aa9b952019-11-04 20:26:00 +01009813 INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages);
Ben-Ami Yassour4d5c5d02008-07-28 19:26:26 +03009814 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
Alex Williamsone0f0bbc2013-10-30 11:02:30 -06009815 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009816
Sheng Yang5550af42008-10-15 20:15:06 +08009817 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
9818 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
Alex Williamson7a844282012-09-21 11:58:03 -06009819 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
9820 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
9821 &kvm->arch.irq_sources_bitmap);
Sheng Yang5550af42008-10-15 20:15:06 +08009822
Jan Kiszka038f8c12011-02-04 10:49:11 +01009823 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
Gleb Natapov1e08ec42012-09-13 17:19:24 +03009824 mutex_init(&kvm->arch.apic_map_lock);
Marcelo Tosattid8281992012-11-27 23:29:01 -02009825 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
9826
Paolo Bonzini8171cd62020-01-22 14:36:09 +01009827 kvm->arch.kvmclock_offset = -get_kvmclock_base_ns();
Marcelo Tosattid8281992012-11-27 23:29:01 -02009828 pvclock_update_vm_gtod_copy(kvm);
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01009829
Drew Schmitt6fbbde92018-08-20 10:32:15 -07009830 kvm->arch.guest_can_read_msr_platform_info = true;
9831
Andrew Jones7e44e442014-02-28 12:52:54 +01009832 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
Andrew Jones332967a2014-02-28 12:52:55 +01009833 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
Andrew Jones7e44e442014-02-28 12:52:54 +01009834
Roman Kagancbc02362018-02-01 16:48:31 +03009835 kvm_hv_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08009836 kvm_page_track_init(kvm);
Xiao Guangrong13d268c2016-02-24 17:51:16 +08009837 kvm_mmu_init_vm(kvm);
Xiao Guangrong0eb05bf2016-02-24 17:51:13 +08009838
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009839 return kvm_x86_ops.vm_init(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009840}
9841
Junaid Shahid1aa9b952019-11-04 20:26:00 +01009842int kvm_arch_post_init_vm(struct kvm *kvm)
9843{
9844 return kvm_mmu_post_init_vm(kvm);
9845}
9846
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009847static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
9848{
Christoffer Dallec7660c2017-12-04 21:35:23 +01009849 vcpu_load(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009850 kvm_mmu_unload(vcpu);
9851 vcpu_put(vcpu);
9852}
9853
9854static void kvm_free_vcpus(struct kvm *kvm)
9855{
9856 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03009857 struct kvm_vcpu *vcpu;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009858
9859 /*
9860 * Unpin any mmu pages first.
9861 */
Gleb Natapovaf585b92010-10-14 11:22:46 +02009862 kvm_for_each_vcpu(i, vcpu, kvm) {
9863 kvm_clear_async_pf_completion_queue(vcpu);
Gleb Natapov988a2ca2009-06-09 15:56:29 +03009864 kvm_unload_vcpu_mmu(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02009865 }
Gleb Natapov988a2ca2009-06-09 15:56:29 +03009866 kvm_for_each_vcpu(i, vcpu, kvm)
Sean Christopherson4543bdc2019-12-18 13:55:14 -08009867 kvm_vcpu_destroy(vcpu);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009868
Gleb Natapov988a2ca2009-06-09 15:56:29 +03009869 mutex_lock(&kvm->lock);
9870 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
9871 kvm->vcpus[i] = NULL;
9872
9873 atomic_set(&kvm->online_vcpus, 0);
9874 mutex_unlock(&kvm->lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009875}
9876
Sheng Yangad8ba2c2009-01-06 10:03:02 +08009877void kvm_arch_sync_events(struct kvm *kvm)
9878{
Andrew Jones332967a2014-02-28 12:52:55 +01009879 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
Andrew Jones7e44e442014-02-28 12:52:54 +01009880 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
Xiao Guangrongaea924f2010-07-10 17:37:56 +08009881 kvm_free_pit(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +08009882}
9883
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02009884int __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size)
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02009885{
9886 int i, r;
Sean Christopherson0577d1a2020-02-18 13:07:31 -08009887 unsigned long hva, uninitialized_var(old_npages);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02009888 struct kvm_memslots *slots = kvm_memslots(kvm);
Sean Christopherson0577d1a2020-02-18 13:07:31 -08009889 struct kvm_memory_slot *slot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02009890
9891 /* Called with kvm->slots_lock held. */
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02009892 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
9893 return -EINVAL;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02009894
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02009895 slot = id_to_memslot(slots, id);
9896 if (size) {
Sean Christopherson0577d1a2020-02-18 13:07:31 -08009897 if (slot && slot->npages)
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02009898 return -EEXIST;
9899
9900 /*
9901 * MAP_SHARED to prevent internal slot pages from being moved
9902 * by fork()/COW.
9903 */
9904 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
9905 MAP_SHARED | MAP_ANONYMOUS, 0);
9906 if (IS_ERR((void *)hva))
9907 return PTR_ERR((void *)hva);
9908 } else {
Sean Christopherson0577d1a2020-02-18 13:07:31 -08009909 if (!slot || !slot->npages)
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02009910 return 0;
9911
Sean Christophersonabbed4f2020-03-04 16:24:22 -08009912 /*
9913 * Stuff a non-canonical value to catch use-after-delete. This
9914 * ends up being 0 on 32-bit KVM, but there's no better
9915 * alternative.
9916 */
9917 hva = (unsigned long)(0xdeadull << 48);
Sean Christopherson0577d1a2020-02-18 13:07:31 -08009918 old_npages = slot->npages;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02009919 }
9920
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02009921 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02009922 struct kvm_userspace_memory_region m;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02009923
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02009924 m.slot = id | (i << 16);
9925 m.flags = 0;
9926 m.guest_phys_addr = gpa;
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02009927 m.userspace_addr = hva;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02009928 m.memory_size = size;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02009929 r = __kvm_set_memory_region(kvm, &m);
9930 if (r < 0)
9931 return r;
9932 }
9933
Eric Biggers103c7632018-01-31 17:30:21 -08009934 if (!size)
Sean Christopherson0577d1a2020-02-18 13:07:31 -08009935 vm_munmap(hva, old_npages * PAGE_SIZE);
Paolo Bonzinif0d648b2015-10-12 13:56:27 +02009936
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02009937 return 0;
9938}
9939EXPORT_SYMBOL_GPL(__x86_set_memory_region);
9940
Junaid Shahid1aa9b952019-11-04 20:26:00 +01009941void kvm_arch_pre_destroy_vm(struct kvm *kvm)
9942{
9943 kvm_mmu_pre_destroy_vm(kvm);
9944}
9945
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009946void kvm_arch_destroy_vm(struct kvm *kvm)
9947{
Andrew Honig27469d22013-04-18 09:38:14 -07009948 if (current->mm == kvm->mm) {
9949 /*
9950 * Free memory regions allocated on behalf of userspace,
9951 * unless the the memory map has changed due to process exit
9952 * or fd copying.
9953 */
Peter Xu6a3c6232020-01-09 09:57:16 -05009954 mutex_lock(&kvm->slots_lock);
9955 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
9956 0, 0);
9957 __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
9958 0, 0);
9959 __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
9960 mutex_unlock(&kvm->slots_lock);
Andrew Honig27469d22013-04-18 09:38:14 -07009961 }
Sean Christophersonafaf0b22020-03-21 13:26:00 -07009962 if (kvm_x86_ops.vm_destroy)
9963 kvm_x86_ops.vm_destroy(kvm);
Peter Xuc7611592017-03-15 16:01:19 +08009964 kvm_pic_destroy(kvm);
9965 kvm_ioapic_destroy(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009966 kvm_free_vcpus(kvm);
Radim Krčmářaf1bae52016-07-12 22:09:30 +02009967 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
Eric Hankland66bb8a02019-07-10 18:25:15 -07009968 kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1));
Xiao Guangrong13d268c2016-02-24 17:51:16 +08009969 kvm_mmu_uninit_vm(kvm);
Paolo Bonzini2beb6dad2017-03-27 17:53:50 +02009970 kvm_page_track_cleanup(kvm);
Roman Kagancbc02362018-02-01 16:48:31 +03009971 kvm_hv_destroy_vm(kvm);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08009972}
Zhang Xiantao0de10342007-11-20 16:25:04 +08009973
Sean Christophersone96c81e2020-02-18 13:07:27 -08009974void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09009975{
9976 int i;
9977
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09009978 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Sean Christophersone96c81e2020-02-18 13:07:27 -08009979 kvfree(slot->arch.rmap[i]);
9980 slot->arch.rmap[i] = NULL;
9981
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09009982 if (i == 0)
9983 continue;
9984
Sean Christophersone96c81e2020-02-18 13:07:27 -08009985 kvfree(slot->arch.lpage_info[i - 1]);
9986 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09009987 }
Xiao Guangrong21ebbed2016-02-24 17:51:09 +08009988
Sean Christophersone96c81e2020-02-18 13:07:27 -08009989 kvm_page_track_free_memslot(slot);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09009990}
9991
Sean Christopherson0dab98b2020-02-18 13:07:19 -08009992static int kvm_alloc_memslot_metadata(struct kvm_memory_slot *slot,
9993 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09009994{
9995 int i;
9996
Sean Christophersonedd4fa32020-02-18 13:07:15 -08009997 /*
9998 * Clear out the previous array pointers for the KVM_MR_MOVE case. The
9999 * old arrays will be freed by __kvm_set_memory_region() if installing
10000 * the new memslot is successful.
10001 */
10002 memset(&slot->arch, 0, sizeof(slot->arch));
10003
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010004 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Xiao Guangrong92f94f12016-02-24 17:51:06 +080010005 struct kvm_lpage_info *linfo;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010006 unsigned long ugfn;
10007 int lpages;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010008 int level = i + 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010009
10010 lpages = gfn_to_index(slot->base_gfn + npages - 1,
10011 slot->base_gfn, level) + 1;
10012
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010013 slot->arch.rmap[i] =
Kees Cook778e1cd2018-06-12 14:04:48 -070010014 kvcalloc(lpages, sizeof(*slot->arch.rmap[i]),
Ben Gardon254272c2019-02-11 11:02:50 -080010015 GFP_KERNEL_ACCOUNT);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010016 if (!slot->arch.rmap[i])
Takuya Yoshikawa77d11302012-07-02 17:57:17 +090010017 goto out_free;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010018 if (i == 0)
10019 continue;
Takuya Yoshikawa77d11302012-07-02 17:57:17 +090010020
Ben Gardon254272c2019-02-11 11:02:50 -080010021 linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT);
Xiao Guangrong92f94f12016-02-24 17:51:06 +080010022 if (!linfo)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010023 goto out_free;
10024
Xiao Guangrong92f94f12016-02-24 17:51:06 +080010025 slot->arch.lpage_info[i - 1] = linfo;
10026
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010027 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080010028 linfo[0].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010029 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Xiao Guangrong92f94f12016-02-24 17:51:06 +080010030 linfo[lpages - 1].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010031 ugfn = slot->userspace_addr >> PAGE_SHIFT;
10032 /*
10033 * If the gfn and userspace address are not aligned wrt each
Sean Christopherson600087b2020-03-02 15:57:05 -080010034 * other, disable large page support for this slot.
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010035 */
Sean Christopherson600087b2020-03-02 15:57:05 -080010036 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) {
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010037 unsigned long j;
10038
10039 for (j = 0; j < lpages; ++j)
Xiao Guangrong92f94f12016-02-24 17:51:06 +080010040 linfo[j].disallow_lpage = 1;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010041 }
10042 }
10043
Xiao Guangrong21ebbed2016-02-24 17:51:09 +080010044 if (kvm_page_track_create_memslot(slot, npages))
10045 goto out_free;
10046
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010047 return 0;
10048
10049out_free:
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010050 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
Thomas Huth548ef282015-02-24 21:29:25 +010010051 kvfree(slot->arch.rmap[i]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010052 slot->arch.rmap[i] = NULL;
10053 if (i == 0)
10054 continue;
10055
Thomas Huth548ef282015-02-24 21:29:25 +010010056 kvfree(slot->arch.lpage_info[i - 1]);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +090010057 slot->arch.lpage_info[i - 1] = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +090010058 }
10059 return -ENOMEM;
10060}
10061
Sean Christopherson15248252019-02-05 12:54:17 -080010062void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090010063{
Boris Ostrovsky91724812019-12-05 01:30:51 +000010064 struct kvm_vcpu *vcpu;
10065 int i;
10066
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +090010067 /*
10068 * memslots->generation has been incremented.
10069 * mmio generation may have reached its maximum value.
10070 */
Sean Christopherson15248252019-02-05 12:54:17 -080010071 kvm_mmu_invalidate_mmio_sptes(kvm, gen);
Boris Ostrovsky91724812019-12-05 01:30:51 +000010072
10073 /* Force re-initialization of steal_time cache */
10074 kvm_for_each_vcpu(i, vcpu, kvm)
10075 kvm_vcpu_kick(vcpu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +090010076}
10077
Marcelo Tosattif7784b82009-12-23 14:35:18 -020010078int kvm_arch_prepare_memory_region(struct kvm *kvm,
10079 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +020010080 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +090010081 enum kvm_mr_change change)
Zhang Xiantao0de10342007-11-20 16:25:04 +080010082{
Sean Christopherson0dab98b2020-02-18 13:07:19 -080010083 if (change == KVM_MR_CREATE || change == KVM_MR_MOVE)
10084 return kvm_alloc_memslot_metadata(memslot,
10085 mem->memory_size >> PAGE_SHIFT);
Marcelo Tosattif7784b82009-12-23 14:35:18 -020010086 return 0;
10087}
10088
Kai Huang88178fd2015-01-28 10:54:27 +080010089static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
10090 struct kvm_memory_slot *new)
10091{
10092 /* Still write protect RO slot */
10093 if (new->flags & KVM_MEM_READONLY) {
Sean Christopherson3bae0452020-04-27 17:54:22 -070010094 kvm_mmu_slot_remove_write_access(kvm, new, PG_LEVEL_4K);
Kai Huang88178fd2015-01-28 10:54:27 +080010095 return;
10096 }
10097
10098 /*
10099 * Call kvm_x86_ops dirty logging hooks when they are valid.
10100 *
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010101 * kvm_x86_ops.slot_disable_log_dirty is called when:
Kai Huang88178fd2015-01-28 10:54:27 +080010102 *
10103 * - KVM_MR_CREATE with dirty logging is disabled
10104 * - KVM_MR_FLAGS_ONLY with dirty logging is disabled in new flag
10105 *
10106 * The reason is, in case of PML, we need to set D-bit for any slots
10107 * with dirty logging disabled in order to eliminate unnecessary GPA
Miaohe Lin0a03cbd2019-12-06 16:20:18 +080010108 * logging in PML buffer (and potential PML buffer full VMEXIT). This
Kai Huang88178fd2015-01-28 10:54:27 +080010109 * guarantees leaving PML enabled during guest's lifetime won't have
Wei Yangbdd303c2018-11-05 14:45:03 +080010110 * any additional overhead from PML when guest is running with dirty
Kai Huang88178fd2015-01-28 10:54:27 +080010111 * logging disabled for memory slots.
10112 *
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010113 * kvm_x86_ops.slot_enable_log_dirty is called when switching new slot
Kai Huang88178fd2015-01-28 10:54:27 +080010114 * to dirty logging mode.
10115 *
10116 * If kvm_x86_ops dirty logging hooks are invalid, use write protect.
10117 *
10118 * In case of write protect:
10119 *
10120 * Write protect all pages for dirty logging.
10121 *
10122 * All the sptes including the large sptes which point to this
10123 * slot are set to readonly. We can not create any new large
10124 * spte on this slot until the end of the logging.
10125 *
10126 * See the comments in fast_page_fault().
10127 */
10128 if (new->flags & KVM_MEM_LOG_DIRTY_PAGES) {
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010129 if (kvm_x86_ops.slot_enable_log_dirty) {
10130 kvm_x86_ops.slot_enable_log_dirty(kvm, new);
Jay Zhou3c9bd402020-02-27 09:32:27 +080010131 } else {
10132 int level =
10133 kvm_dirty_log_manual_protect_and_init_set(kvm) ?
Sean Christopherson3bae0452020-04-27 17:54:22 -070010134 PG_LEVEL_2M : PG_LEVEL_4K;
Jay Zhou3c9bd402020-02-27 09:32:27 +080010135
10136 /*
10137 * If we're with initial-all-set, we don't need
10138 * to write protect any small page because
10139 * they're reported as dirty already. However
10140 * we still need to write-protect huge pages
10141 * so that the page split can happen lazily on
10142 * the first write to the huge page.
10143 */
10144 kvm_mmu_slot_remove_write_access(kvm, new, level);
10145 }
Kai Huang88178fd2015-01-28 10:54:27 +080010146 } else {
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010147 if (kvm_x86_ops.slot_disable_log_dirty)
10148 kvm_x86_ops.slot_disable_log_dirty(kvm, new);
Kai Huang88178fd2015-01-28 10:54:27 +080010149 }
10150}
10151
Marcelo Tosattif7784b82009-12-23 14:35:18 -020010152void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +020010153 const struct kvm_userspace_memory_region *mem,
Sean Christopherson9d4c1972020-02-18 13:07:24 -080010154 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020010155 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +090010156 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -020010157{
Xiao Guangrong48c0e4e2011-03-04 18:59:21 +080010158 if (!kvm->arch.n_requested_mmu_pages)
Wei Yang4d666232018-09-27 08:31:26 +080010159 kvm_mmu_change_mmu_pages(kvm,
10160 kvm_mmu_calculate_default_mmu_pages(kvm));
Kai Huang1c91cad42015-01-28 10:54:26 +080010161
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +090010162 /*
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +080010163 * Dirty logging tracks sptes in 4k granularity, meaning that large
10164 * sptes have to be split. If live migration is successful, the guest
10165 * in the source machine will be destroyed and large sptes will be
10166 * created in the destination. However, if the guest continues to run
10167 * in the source machine (for example if live migration fails), small
10168 * sptes will remain around and cause bad performance.
10169 *
10170 * Scan sptes if dirty logging has been stopped, dropping those
10171 * which can be collapsed into a single large-page spte. Later
10172 * page faults will create the large-page sptes.
Sean Christopherson319109a2019-09-11 12:19:52 -070010173 *
10174 * There is no need to do this in any of the following cases:
10175 * CREATE: No dirty mappings will already exist.
10176 * MOVE/DELETE: The old mappings will already have been cleaned up by
10177 * kvm_arch_flush_shadow_memslot()
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +080010178 */
Sean Christopherson319109a2019-09-11 12:19:52 -070010179 if (change == KVM_MR_FLAGS_ONLY &&
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +080010180 (old->flags & KVM_MEM_LOG_DIRTY_PAGES) &&
10181 !(new->flags & KVM_MEM_LOG_DIRTY_PAGES))
10182 kvm_mmu_zap_collapsible_sptes(kvm, new);
10183
10184 /*
Kai Huang88178fd2015-01-28 10:54:27 +080010185 * Set up write protection and/or dirty logging for the new slot.
Xiao Guangrongc126d942014-04-17 17:06:14 +080010186 *
Kai Huang88178fd2015-01-28 10:54:27 +080010187 * For KVM_MR_DELETE and KVM_MR_MOVE, the shadow pages of old slot have
10188 * been zapped so no dirty logging staff is needed for old slot. For
10189 * KVM_MR_FLAGS_ONLY, the old slot is essentially the same one as the
10190 * new and it's also covered when dealing with the new slot.
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020010191 *
10192 * FIXME: const-ify all uses of struct kvm_memory_slot.
Takuya Yoshikawac972f3b2013-01-08 19:43:28 +090010193 */
Kai Huang88178fd2015-01-28 10:54:27 +080010194 if (change != KVM_MR_DELETE)
Paolo Bonzinif36f3f22015-05-18 13:20:23 +020010195 kvm_mmu_slot_apply_flags(kvm, (struct kvm_memory_slot *) new);
Sean Christopherson21198842020-02-18 13:07:25 -080010196
10197 /* Free the arrays associated with the old memslot. */
10198 if (change == KVM_MR_MOVE)
Sean Christophersone96c81e2020-02-18 13:07:27 -080010199 kvm_arch_free_memslot(kvm, old);
Zhang Xiantao0de10342007-11-20 16:25:04 +080010200}
Zhang Xiantao1d737c82007-12-14 09:35:10 +080010201
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030010202void kvm_arch_flush_shadow_all(struct kvm *kvm)
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030010203{
Sean Christopherson7390de12019-02-05 13:01:31 -080010204 kvm_mmu_zap_all(kvm);
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -030010205}
10206
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030010207void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
10208 struct kvm_memory_slot *slot)
10209{
Xiaoguang Chenae7cd872016-10-09 15:41:44 +080010210 kvm_page_track_flush_slot(kvm, slot);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -030010211}
10212
Liran Alone6c67d82018-09-04 10:56:52 +030010213static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
10214{
10215 return (is_guest_mode(vcpu) &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010216 kvm_x86_ops.guest_apic_has_interrupt &&
10217 kvm_x86_ops.guest_apic_has_interrupt(vcpu));
Liran Alone6c67d82018-09-04 10:56:52 +030010218}
10219
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010220static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
10221{
10222 if (!list_empty_careful(&vcpu->async_pf.done))
10223 return true;
10224
10225 if (kvm_apic_has_events(vcpu))
10226 return true;
10227
10228 if (vcpu->arch.pv.pv_unhalted)
10229 return true;
10230
Wanpeng Lia5f01f82017-09-13 04:04:01 -070010231 if (vcpu->arch.exception.pending)
10232 return true;
10233
ZhuangYanying47a66ee2017-05-26 13:16:48 +080010234 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
10235 (vcpu->arch.nmi_pending &&
Paolo Bonzinic300ab92020-04-23 14:08:58 -040010236 kvm_x86_ops.nmi_allowed(vcpu, false)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010237 return true;
10238
ZhuangYanying47a66ee2017-05-26 13:16:48 +080010239 if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
Paolo Bonzinia9fa7cb2020-04-23 11:02:36 -040010240 (vcpu->arch.smi_pending &&
Paolo Bonzinic300ab92020-04-23 14:08:58 -040010241 kvm_x86_ops.smi_allowed(vcpu, false)))
Paolo Bonzini73917732015-10-13 10:19:35 +020010242 return true;
10243
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010244 if (kvm_arch_interrupt_allowed(vcpu) &&
Liran Alone6c67d82018-09-04 10:56:52 +030010245 (kvm_cpu_has_interrupt(vcpu) ||
10246 kvm_guest_apic_has_interrupt(vcpu)))
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010247 return true;
10248
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +030010249 if (kvm_hv_has_stimer_pending(vcpu))
10250 return true;
10251
Sean Christophersond2060bd2020-04-22 19:25:39 -070010252 if (is_guest_mode(vcpu) &&
10253 kvm_x86_ops.nested_ops->hv_timer_pending &&
10254 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
10255 return true;
10256
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010257 return false;
10258}
10259
Zhang Xiantao1d737c82007-12-14 09:35:10 +080010260int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
10261{
Paolo Bonzini5d9bc642015-10-13 10:18:53 +020010262 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
Zhang Xiantao1d737c82007-12-14 09:35:10 +080010263}
Zhang Xiantao57361992007-12-17 14:21:40 +080010264
Wanpeng Li17e433b2019-08-05 10:03:19 +080010265bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
10266{
10267 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
10268 return true;
10269
10270 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
10271 kvm_test_request(KVM_REQ_SMI, vcpu) ||
10272 kvm_test_request(KVM_REQ_EVENT, vcpu))
10273 return true;
10274
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010275 if (vcpu->arch.apicv_active && kvm_x86_ops.dy_apicv_has_pending_interrupt(vcpu))
Wanpeng Li17e433b2019-08-05 10:03:19 +080010276 return true;
10277
10278 return false;
10279}
10280
Longpeng(Mike)199b5762017-08-08 12:05:32 +080010281bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
10282{
Longpeng(Mike)de63ad42017-08-08 12:05:33 +080010283 return vcpu->arch.preempted_in_kernel;
Longpeng(Mike)199b5762017-08-08 12:05:32 +080010284}
10285
Christoffer Dallb6d33832012-03-08 16:44:24 -050010286int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
Zhang Xiantao57361992007-12-17 14:21:40 +080010287{
Christoffer Dallb6d33832012-03-08 16:44:24 -050010288 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
Zhang Xiantao57361992007-12-17 14:21:40 +080010289}
Gleb Natapov78646122009-03-23 12:12:11 +020010290
10291int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
10292{
Paolo Bonzinic300ab92020-04-23 14:08:58 -040010293 return kvm_x86_ops.interrupt_allowed(vcpu, false);
Gleb Natapov78646122009-03-23 12:12:11 +020010294}
Marcelo Tosatti229456f2009-06-17 09:22:14 -030010295
Nadav Amit82b32772014-11-02 11:54:45 +020010296unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
10297{
10298 if (is_64_bit_mode(vcpu))
10299 return kvm_rip_read(vcpu);
10300 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
10301 kvm_rip_read(vcpu));
10302}
10303EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
10304
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010305bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
10306{
Nadav Amit82b32772014-11-02 11:54:45 +020010307 return kvm_get_linear_rip(vcpu) == linear_rip;
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010308}
10309EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
10310
Jan Kiszka94fe45d2009-10-18 13:24:44 +020010311unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
10312{
10313 unsigned long rflags;
10314
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010315 rflags = kvm_x86_ops.get_rflags(vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020010316 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
Jan Kiszkac310bac2010-02-23 17:47:58 +010010317 rflags &= ~X86_EFLAGS_TF;
Jan Kiszka94fe45d2009-10-18 13:24:44 +020010318 return rflags;
10319}
10320EXPORT_SYMBOL_GPL(kvm_get_rflags);
10321
Paolo Bonzini6addfc42014-03-27 11:29:28 +010010322static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
Jan Kiszka94fe45d2009-10-18 13:24:44 +020010323{
10324 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
Jan Kiszkaf92653e2010-02-23 17:47:55 +010010325 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
Jan Kiszkac310bac2010-02-23 17:47:58 +010010326 rflags |= X86_EFLAGS_TF;
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010327 kvm_x86_ops.set_rflags(vcpu, rflags);
Paolo Bonzini6addfc42014-03-27 11:29:28 +010010328}
10329
10330void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
10331{
10332 __kvm_set_rflags(vcpu, rflags);
Avi Kivity3842d132010-07-27 12:30:24 +030010333 kvm_make_request(KVM_REQ_EVENT, vcpu);
Jan Kiszka94fe45d2009-10-18 13:24:44 +020010334}
10335EXPORT_SYMBOL_GPL(kvm_set_rflags);
10336
Gleb Natapov56028d02010-10-17 18:13:42 +020010337void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
10338{
10339 int r;
10340
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020010341 if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) ||
chai wenf2e10662013-10-14 22:22:33 +080010342 work->wakeup_all)
Gleb Natapov56028d02010-10-17 18:13:42 +020010343 return;
10344
10345 r = kvm_mmu_reload(vcpu);
10346 if (unlikely(r))
10347 return;
10348
Vitaly Kuznetsov44dd3ff2018-10-08 21:28:05 +020010349 if (!vcpu->arch.mmu->direct_map &&
Sean Christophersond8dd54e2020-03-02 18:02:39 -080010350 work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu))
Xiao Guangrongfb67e142010-12-07 10:35:25 +080010351 return;
10352
Sean Christopherson7a026742020-02-06 14:14:34 -080010353 kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true);
Gleb Natapov56028d02010-10-17 18:13:42 +020010354}
10355
Gleb Natapovaf585b92010-10-14 11:22:46 +020010356static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
10357{
Peter Xudd03bca2020-04-16 11:58:59 -040010358 BUILD_BUG_ON(!is_power_of_2(ASYNC_PF_PER_VCPU));
10359
Gleb Natapovaf585b92010-10-14 11:22:46 +020010360 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
10361}
10362
10363static inline u32 kvm_async_pf_next_probe(u32 key)
10364{
Peter Xudd03bca2020-04-16 11:58:59 -040010365 return (key + 1) & (ASYNC_PF_PER_VCPU - 1);
Gleb Natapovaf585b92010-10-14 11:22:46 +020010366}
10367
10368static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
10369{
10370 u32 key = kvm_async_pf_hash_fn(gfn);
10371
10372 while (vcpu->arch.apf.gfns[key] != ~0)
10373 key = kvm_async_pf_next_probe(key);
10374
10375 vcpu->arch.apf.gfns[key] = gfn;
10376}
10377
10378static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
10379{
10380 int i;
10381 u32 key = kvm_async_pf_hash_fn(gfn);
10382
Peter Xudd03bca2020-04-16 11:58:59 -040010383 for (i = 0; i < ASYNC_PF_PER_VCPU &&
Xiao Guangrongc7d28c22010-11-01 17:00:30 +080010384 (vcpu->arch.apf.gfns[key] != gfn &&
10385 vcpu->arch.apf.gfns[key] != ~0); i++)
Gleb Natapovaf585b92010-10-14 11:22:46 +020010386 key = kvm_async_pf_next_probe(key);
10387
10388 return key;
10389}
10390
10391bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
10392{
10393 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
10394}
10395
10396static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
10397{
10398 u32 i, j, k;
10399
10400 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
Peter Xu0fd46042020-04-16 11:59:10 -040010401
10402 if (WARN_ON_ONCE(vcpu->arch.apf.gfns[i] != gfn))
10403 return;
10404
Gleb Natapovaf585b92010-10-14 11:22:46 +020010405 while (true) {
10406 vcpu->arch.apf.gfns[i] = ~0;
10407 do {
10408 j = kvm_async_pf_next_probe(j);
10409 if (vcpu->arch.apf.gfns[j] == ~0)
10410 return;
10411 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
10412 /*
10413 * k lies cyclically in ]i,j]
10414 * | i.k.j |
10415 * |....j i.k.| or |.k..j i...|
10416 */
10417 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
10418 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
10419 i = j;
10420 }
10421}
10422
Gleb Natapov7c907052010-10-14 11:22:53 +020010423static int apf_put_user(struct kvm_vcpu *vcpu, u32 val)
10424{
Paolo Bonzini4e335d92017-05-02 16:20:18 +020010425
10426 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &val,
10427 sizeof(val));
Gleb Natapov7c907052010-10-14 11:22:53 +020010428}
10429
Wanpeng Li9a6e7c32017-09-14 03:54:16 -070010430static int apf_get_user(struct kvm_vcpu *vcpu, u32 *val)
10431{
10432
10433 return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, val,
10434 sizeof(u32));
10435}
10436
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020010437static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
10438{
10439 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
10440 return false;
10441
10442 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) ||
10443 (vcpu->arch.apf.send_user_only &&
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010444 kvm_x86_ops.get_cpl(vcpu) == 0))
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020010445 return false;
10446
10447 return true;
10448}
10449
10450bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
10451{
10452 if (unlikely(!lapic_in_kernel(vcpu) ||
10453 kvm_event_needs_reinjection(vcpu) ||
10454 vcpu->arch.exception.pending))
10455 return false;
10456
10457 if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu))
10458 return false;
10459
10460 /*
10461 * If interrupts are off we cannot even use an artificial
10462 * halt state.
10463 */
Paolo Bonzinic300ab92020-04-23 14:08:58 -040010464 return kvm_arch_interrupt_allowed(vcpu);
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020010465}
10466
Gleb Natapovaf585b92010-10-14 11:22:46 +020010467void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
10468 struct kvm_async_pf *work)
10469{
Avi Kivity6389ee92010-11-29 16:12:30 +020010470 struct x86_exception fault;
10471
Sean Christopherson736c2912019-12-06 15:57:14 -080010472 trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa);
Gleb Natapovaf585b92010-10-14 11:22:46 +020010473 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
Gleb Natapov7c907052010-10-14 11:22:53 +020010474
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020010475 if (kvm_can_deliver_async_pf(vcpu) &&
10476 !apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) {
Avi Kivity6389ee92010-11-29 16:12:30 +020010477 fault.vector = PF_VECTOR;
10478 fault.error_code_valid = true;
10479 fault.error_code = 0;
10480 fault.nested_page_fault = false;
10481 fault.address = work->arch.token;
Wanpeng Liadfe20f2017-07-13 18:30:41 -070010482 fault.async_page_fault = true;
Avi Kivity6389ee92010-11-29 16:12:30 +020010483 kvm_inject_page_fault(vcpu, &fault);
Paolo Bonzini1dfdb452019-06-05 16:46:44 +020010484 } else {
10485 /*
10486 * It is not possible to deliver a paravirtualized asynchronous
10487 * page fault, but putting the guest in an artificial halt state
10488 * can be beneficial nevertheless: if an interrupt arrives, we
10489 * can deliver it timely and perhaps the guest will schedule
10490 * another process. When the instruction that triggered a page
10491 * fault is retried, hopefully the page will be ready in the host.
10492 */
10493 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
Gleb Natapov7c907052010-10-14 11:22:53 +020010494 }
Gleb Natapovaf585b92010-10-14 11:22:46 +020010495}
10496
10497void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
10498 struct kvm_async_pf *work)
10499{
Avi Kivity6389ee92010-11-29 16:12:30 +020010500 struct x86_exception fault;
Wanpeng Li9a6e7c32017-09-14 03:54:16 -070010501 u32 val;
Avi Kivity6389ee92010-11-29 16:12:30 +020010502
chai wenf2e10662013-10-14 22:22:33 +080010503 if (work->wakeup_all)
Gleb Natapov7c907052010-10-14 11:22:53 +020010504 work->arch.token = ~0; /* broadcast wakeup */
10505 else
10506 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
Sean Christopherson736c2912019-12-06 15:57:14 -080010507 trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa);
Gleb Natapov7c907052010-10-14 11:22:53 +020010508
Wanpeng Li9a6e7c32017-09-14 03:54:16 -070010509 if (vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED &&
10510 !apf_get_user(vcpu, &val)) {
10511 if (val == KVM_PV_REASON_PAGE_NOT_PRESENT &&
10512 vcpu->arch.exception.pending &&
10513 vcpu->arch.exception.nr == PF_VECTOR &&
10514 !apf_put_user(vcpu, 0)) {
10515 vcpu->arch.exception.injected = false;
10516 vcpu->arch.exception.pending = false;
10517 vcpu->arch.exception.nr = 0;
10518 vcpu->arch.exception.has_error_code = false;
10519 vcpu->arch.exception.error_code = 0;
Jim Mattsonc8514362018-10-16 14:29:19 -070010520 vcpu->arch.exception.has_payload = false;
10521 vcpu->arch.exception.payload = 0;
Wanpeng Li9a6e7c32017-09-14 03:54:16 -070010522 } else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) {
10523 fault.vector = PF_VECTOR;
10524 fault.error_code_valid = true;
10525 fault.error_code = 0;
10526 fault.nested_page_fault = false;
10527 fault.address = work->arch.token;
10528 fault.async_page_fault = true;
10529 kvm_inject_page_fault(vcpu, &fault);
10530 }
Gleb Natapov7c907052010-10-14 11:22:53 +020010531 }
Xiao Guangronge6d53e32010-11-01 17:01:28 +080010532 vcpu->arch.apf.halted = false;
Gleb Natapova4fa1632012-05-03 11:36:39 +030010533 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Gleb Natapov7c907052010-10-14 11:22:53 +020010534}
10535
10536bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
10537{
10538 if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED))
10539 return true;
10540 else
Wanpeng Li9bc1f092017-06-08 20:13:40 -070010541 return kvm_can_do_async_pf(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +020010542}
10543
Paolo Bonzini5544eb92015-07-07 15:41:58 +020010544void kvm_arch_start_assignment(struct kvm *kvm)
10545{
10546 atomic_inc(&kvm->arch.assigned_device_count);
10547}
10548EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
10549
10550void kvm_arch_end_assignment(struct kvm *kvm)
10551{
10552 atomic_dec(&kvm->arch.assigned_device_count);
10553}
10554EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
10555
10556bool kvm_arch_has_assigned_device(struct kvm *kvm)
10557{
10558 return atomic_read(&kvm->arch.assigned_device_count);
10559}
10560EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
10561
Alex Williamsone0f0bbc2013-10-30 11:02:30 -060010562void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
10563{
10564 atomic_inc(&kvm->arch.noncoherent_dma_count);
10565}
10566EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
10567
10568void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
10569{
10570 atomic_dec(&kvm->arch.noncoherent_dma_count);
10571}
10572EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
10573
10574bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
10575{
10576 return atomic_read(&kvm->arch.noncoherent_dma_count);
10577}
10578EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
10579
Alex Williamson14717e22016-05-05 11:58:35 -060010580bool kvm_arch_has_irq_bypass(void)
10581{
Sean Christopherson92735b12019-08-02 15:06:17 -070010582 return true;
Alex Williamson14717e22016-05-05 11:58:35 -060010583}
10584
Feng Wu87276882015-09-18 22:29:40 +080010585int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
10586 struct irq_bypass_producer *prod)
10587{
10588 struct kvm_kernel_irqfd *irqfd =
10589 container_of(cons, struct kvm_kernel_irqfd, consumer);
10590
Alex Williamson14717e22016-05-05 11:58:35 -060010591 irqfd->producer = prod;
Feng Wu87276882015-09-18 22:29:40 +080010592
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010593 return kvm_x86_ops.update_pi_irte(irqfd->kvm,
Alex Williamson14717e22016-05-05 11:58:35 -060010594 prod->irq, irqfd->gsi, 1);
Feng Wu87276882015-09-18 22:29:40 +080010595}
10596
10597void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
10598 struct irq_bypass_producer *prod)
10599{
10600 int ret;
10601 struct kvm_kernel_irqfd *irqfd =
10602 container_of(cons, struct kvm_kernel_irqfd, consumer);
10603
Feng Wu87276882015-09-18 22:29:40 +080010604 WARN_ON(irqfd->producer != prod);
10605 irqfd->producer = NULL;
10606
10607 /*
10608 * When producer of consumer is unregistered, we change back to
10609 * remapped mode, so we can re-use the current implementation
Andrea Gelminibb3541f2016-05-21 14:14:44 +020010610 * when the irq is masked/disabled or the consumer side (KVM
Feng Wu87276882015-09-18 22:29:40 +080010611 * int this case doesn't want to receive the interrupts.
10612 */
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010613 ret = kvm_x86_ops.update_pi_irte(irqfd->kvm, prod->irq, irqfd->gsi, 0);
Feng Wu87276882015-09-18 22:29:40 +080010614 if (ret)
10615 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
10616 " fails: %d\n", irqfd->consumer.token, ret);
10617}
10618
10619int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
10620 uint32_t guest_irq, bool set)
10621{
Sean Christophersonafaf0b22020-03-21 13:26:00 -070010622 return kvm_x86_ops.update_pi_irte(kvm, host_irq, guest_irq, set);
Feng Wu87276882015-09-18 22:29:40 +080010623}
10624
Feng Wu520040142016-01-25 16:53:33 +080010625bool kvm_vector_hashing_enabled(void)
10626{
10627 return vector_hashing;
10628}
Feng Wu520040142016-01-25 16:53:33 +080010629
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030010630bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
10631{
10632 return (vcpu->arch.msr_kvm_poll_control & 1) == 0;
10633}
10634EXPORT_SYMBOL_GPL(kvm_arch_no_poll);
10635
Paolo Bonzini6441fa62020-01-20 16:33:06 +010010636u64 kvm_spec_ctrl_valid_bits(struct kvm_vcpu *vcpu)
10637{
10638 uint64_t bits = SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD;
10639
10640 /* The STIBP bit doesn't fault even if it's not advertised */
10641 if (!guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL) &&
10642 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS))
10643 bits &= ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP);
10644 if (!boot_cpu_has(X86_FEATURE_SPEC_CTRL) &&
10645 !boot_cpu_has(X86_FEATURE_AMD_IBRS))
10646 bits &= ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP);
10647
10648 if (!guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL_SSBD) &&
10649 !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD))
10650 bits &= ~SPEC_CTRL_SSBD;
10651 if (!boot_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) &&
10652 !boot_cpu_has(X86_FEATURE_AMD_SSBD))
10653 bits &= ~SPEC_CTRL_SSBD;
10654
10655 return bits;
10656}
10657EXPORT_SYMBOL_GPL(kvm_spec_ctrl_valid_bits);
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -030010658
Marcelo Tosatti229456f2009-06-17 09:22:14 -030010659EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
Jason Wang931c33b2015-09-15 14:41:58 +080010660EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
Marcelo Tosatti229456f2009-06-17 09:22:14 -030010661EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
10662EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
10663EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
10664EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
Joerg Roedel0ac406d2009-10-09 16:08:27 +020010665EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
Joerg Roedeld8cabdd2009-10-09 16:08:28 +020010666EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
Joerg Roedel17897f32009-10-09 16:08:29 +020010667EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
Joerg Roedel236649d2009-10-09 16:08:30 +020010668EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
Sean Christopherson5497b952019-07-11 08:58:29 -070010669EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed);
Joerg Roedelec1ff792009-10-09 16:08:31 +020010670EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
Joerg Roedel532a46b2009-10-09 16:08:32 +020010671EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
Joerg Roedel2e554e82010-02-24 18:59:14 +010010672EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +090010673EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
Peter Xu4f75bcc2019-09-06 10:17:22 +080010674EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update);
Kai Huang843e4332015-01-28 10:54:28 +080010675EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
Feng Wuefc64402015-09-18 22:29:51 +080010676EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
Suravee Suthikulpanit18f40c52016-05-04 14:09:48 -050010677EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
10678EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);
Suravee Suthikulpanitab56f8e2020-03-12 05:39:28 -050010679EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log);
Suravee Suthikulpanit24bbf742019-11-14 14:15:07 -060010680EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request);