]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/x86/kvm/x86.c
selftests: kvm: remove reassignment of non-absolute variables
[mirror_ubuntu-jammy-kernel.git] / arch / x86 / kvm / x86.c
CommitLineData
20c8ccb1 1// SPDX-License-Identifier: GPL-2.0-only
043405e1
CO
2/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * derived from drivers/kvm/kvm_main.c
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
4d5c5d0f
BAY
8 * Copyright (C) 2008 Qumranet, Inc.
9 * Copyright IBM Corporation, 2008
9611c187 10 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
043405e1
CO
11 *
12 * Authors:
13 * Avi Kivity <avi@qumranet.com>
14 * Yaniv Kamay <yaniv@qumranet.com>
4d5c5d0f
BAY
15 * Amit Shah <amit.shah@qumranet.com>
16 * Ben-Ami Yassour <benami@il.ibm.com>
043405e1
CO
17 */
18
edf88417 19#include <linux/kvm_host.h>
313a3dc7 20#include "irq.h"
88197e6a 21#include "ioapic.h"
1d737c8a 22#include "mmu.h"
7837699f 23#include "i8254.h"
37817f29 24#include "tss.h"
5fdbf976 25#include "kvm_cache_regs.h"
2f728d66 26#include "kvm_emulate.h"
26eef70c 27#include "x86.h"
00b27a3e 28#include "cpuid.h"
474a5bb9 29#include "pmu.h"
e83d5887 30#include "hyperv.h"
8df14af4 31#include "lapic.h"
23200b7a 32#include "xen.h"
313a3dc7 33
18068523 34#include <linux/clocksource.h>
4d5c5d0f 35#include <linux/interrupt.h>
313a3dc7
CO
36#include <linux/kvm.h>
37#include <linux/fs.h>
38#include <linux/vmalloc.h>
1767e931
PG
39#include <linux/export.h>
40#include <linux/moduleparam.h>
0de10343 41#include <linux/mman.h>
2bacc55c 42#include <linux/highmem.h>
19de40a8 43#include <linux/iommu.h>
62c476c7 44#include <linux/intel-iommu.h>
c8076604 45#include <linux/cpufreq.h>
18863bdd 46#include <linux/user-return-notifier.h>
a983fb23 47#include <linux/srcu.h>
5a0e3ad6 48#include <linux/slab.h>
ff9d07a0 49#include <linux/perf_event.h>
7bee342a 50#include <linux/uaccess.h>
af585b92 51#include <linux/hash.h>
a1b60c1c 52#include <linux/pci.h>
16e8d74d
MT
53#include <linux/timekeeper_internal.h>
54#include <linux/pvclock_gtod.h>
87276880
FW
55#include <linux/kvm_irqfd.h>
56#include <linux/irqbypass.h>
3905f9ad 57#include <linux/sched/stat.h>
0c5f81da 58#include <linux/sched/isolation.h>
d0ec49d4 59#include <linux/mem_encrypt.h>
72c3c0fe 60#include <linux/entry-kvm.h>
3905f9ad 61
aec51dc4 62#include <trace/events/kvm.h>
2ed152af 63
24f1e32c 64#include <asm/debugreg.h>
d825ed0a 65#include <asm/msr.h>
a5f61300 66#include <asm/desc.h>
890ca9ae 67#include <asm/mce.h>
f89e32e0 68#include <linux/kernel_stat.h>
78f7f1e5 69#include <asm/fpu/internal.h> /* Ugh! */
1d5f066e 70#include <asm/pvclock.h>
217fc9cf 71#include <asm/div64.h>
efc64404 72#include <asm/irq_remapping.h>
b0c39dc6 73#include <asm/mshyperv.h>
0092e434 74#include <asm/hypervisor.h>
9715092f 75#include <asm/tlbflush.h>
bf8c55d8 76#include <asm/intel_pt.h>
b3dc0695 77#include <asm/emulate_prefix.h>
fe7e9488 78#include <asm/sgx.h>
dd2cb348 79#include <clocksource/hyperv_timer.h>
043405e1 80
d1898b73
DH
81#define CREATE_TRACE_POINTS
82#include "trace.h"
83
313a3dc7 84#define MAX_IO_MSRS 256
890ca9ae 85#define KVM_MAX_MCE_BANKS 32
c45dcc71
AR
86u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P;
87EXPORT_SYMBOL_GPL(kvm_mce_cap_supported);
890ca9ae 88
0f65dd70 89#define emul_to_vcpu(ctxt) \
c9b8b07c 90 ((struct kvm_vcpu *)(ctxt)->vcpu)
0f65dd70 91
50a37eb4
JR
92/* EFER defaults:
93 * - enable syscall per default because its emulated by KVM
94 * - enable LME and LMA per default on 64 bit KVM
95 */
96#ifdef CONFIG_X86_64
1260edbe
LJ
97static
98u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
50a37eb4 99#else
1260edbe 100static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
50a37eb4 101#endif
313a3dc7 102
b11306b5
SC
103static u64 __read_mostly cr4_reserved_bits = CR4_RESERVED_BITS;
104
c519265f
RK
105#define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \
106 KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
37131313 107
cb142eb7 108static void update_cr8_intercept(struct kvm_vcpu *vcpu);
7460fb4a 109static void process_nmi(struct kvm_vcpu *vcpu);
1f7becf1 110static void process_smi(struct kvm_vcpu *vcpu);
ee2cd4b7 111static void enter_smm(struct kvm_vcpu *vcpu);
6addfc42 112static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
01643c51
KH
113static void store_regs(struct kvm_vcpu *vcpu);
114static int sync_regs(struct kvm_vcpu *vcpu);
674eea0f 115
afaf0b2f 116struct kvm_x86_ops kvm_x86_ops __read_mostly;
5fdbf976 117EXPORT_SYMBOL_GPL(kvm_x86_ops);
97896d04 118
9af5471b
JB
119#define KVM_X86_OP(func) \
120 DEFINE_STATIC_CALL_NULL(kvm_x86_##func, \
121 *(((struct kvm_x86_ops *)0)->func));
122#define KVM_X86_OP_NULL KVM_X86_OP
123#include <asm/kvm-x86-ops.h>
124EXPORT_STATIC_CALL_GPL(kvm_x86_get_cs_db_l_bits);
125EXPORT_STATIC_CALL_GPL(kvm_x86_cache_reg);
126EXPORT_STATIC_CALL_GPL(kvm_x86_tlb_flush_current);
127
893590c7 128static bool __read_mostly ignore_msrs = 0;
476bc001 129module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
ed85c068 130
d855066f 131bool __read_mostly report_ignored_msrs = true;
fab0aa3b 132module_param(report_ignored_msrs, bool, S_IRUGO | S_IWUSR);
d855066f 133EXPORT_SYMBOL_GPL(report_ignored_msrs);
fab0aa3b 134
4c27625b 135unsigned int min_timer_period_us = 200;
9ed96e87
MT
136module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
137
630994b3
MT
138static bool __read_mostly kvmclock_periodic_sync = true;
139module_param(kvmclock_periodic_sync, bool, S_IRUGO);
140
893590c7 141bool __read_mostly kvm_has_tsc_control;
92a1f12d 142EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
893590c7 143u32 __read_mostly kvm_max_guest_tsc_khz;
92a1f12d 144EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz);
bc9b961b
HZ
145u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits;
146EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits);
147u64 __read_mostly kvm_max_tsc_scaling_ratio;
148EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio);
64672c95
YJ
149u64 __read_mostly kvm_default_tsc_scaling_ratio;
150EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio);
fe6b6bc8
CQ
151bool __read_mostly kvm_has_bus_lock_exit;
152EXPORT_SYMBOL_GPL(kvm_has_bus_lock_exit);
92a1f12d 153
cc578287 154/* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */
893590c7 155static u32 __read_mostly tsc_tolerance_ppm = 250;
cc578287
ZA
156module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR);
157
c3941d9e
SC
158/*
159 * lapic timer advance (tscdeadline mode only) in nanoseconds. '-1' enables
d9f6e12f 160 * adaptive tuning starting from default advancement of 1000ns. '0' disables
c3941d9e 161 * advancement entirely. Any other value is used as-is and disables adaptive
d9f6e12f 162 * tuning, i.e. allows privileged userspace to set an exact advancement time.
c3941d9e
SC
163 */
164static int __read_mostly lapic_timer_advance_ns = -1;
0e6edceb 165module_param(lapic_timer_advance_ns, int, S_IRUGO | S_IWUSR);
d0659d94 166
52004014
FW
167static bool __read_mostly vector_hashing = true;
168module_param(vector_hashing, bool, S_IRUGO);
169
c4ae60e4
LA
170bool __read_mostly enable_vmware_backdoor = false;
171module_param(enable_vmware_backdoor, bool, S_IRUGO);
172EXPORT_SYMBOL_GPL(enable_vmware_backdoor);
173
6c86eedc
WL
174static bool __read_mostly force_emulation_prefix = false;
175module_param(force_emulation_prefix, bool, S_IRUGO);
176
0c5f81da
WL
177int __read_mostly pi_inject_timer = -1;
178module_param(pi_inject_timer, bint, S_IRUGO | S_IWUSR);
179
7e34fbd0
SC
180/*
181 * Restoring the host value for MSRs that are only consumed when running in
182 * usermode, e.g. SYSCALL MSRs and TSC_AUX, can be deferred until the CPU
183 * returns to userspace, i.e. the kernel can run with the guest's value.
184 */
185#define KVM_MAX_NR_USER_RETURN_MSRS 16
18863bdd 186
7e34fbd0 187struct kvm_user_return_msrs_global {
18863bdd 188 int nr;
7e34fbd0 189 u32 msrs[KVM_MAX_NR_USER_RETURN_MSRS];
18863bdd
AK
190};
191
7e34fbd0 192struct kvm_user_return_msrs {
18863bdd
AK
193 struct user_return_notifier urn;
194 bool registered;
7e34fbd0 195 struct kvm_user_return_msr_values {
2bf78fa7
SY
196 u64 host;
197 u64 curr;
7e34fbd0 198 } values[KVM_MAX_NR_USER_RETURN_MSRS];
18863bdd
AK
199};
200
7e34fbd0
SC
201static struct kvm_user_return_msrs_global __read_mostly user_return_msrs_global;
202static struct kvm_user_return_msrs __percpu *user_return_msrs;
18863bdd 203
cfc48181
SC
204#define KVM_SUPPORTED_XCR0 (XFEATURE_MASK_FP | XFEATURE_MASK_SSE \
205 | XFEATURE_MASK_YMM | XFEATURE_MASK_BNDREGS \
206 | XFEATURE_MASK_BNDCSR | XFEATURE_MASK_AVX512 \
207 | XFEATURE_MASK_PKRU)
208
91661989
SC
209u64 __read_mostly host_efer;
210EXPORT_SYMBOL_GPL(host_efer);
211
b96e6506 212bool __read_mostly allow_smaller_maxphyaddr = 0;
3edd6839
MG
213EXPORT_SYMBOL_GPL(allow_smaller_maxphyaddr);
214
86137773
TL
215u64 __read_mostly host_xss;
216EXPORT_SYMBOL_GPL(host_xss);
408e9a31
PB
217u64 __read_mostly supported_xss;
218EXPORT_SYMBOL_GPL(supported_xss);
139a12cf 219
417bc304 220struct kvm_stats_debugfs_item debugfs_entries[] = {
812756a8
EGE
221 VCPU_STAT("pf_fixed", pf_fixed),
222 VCPU_STAT("pf_guest", pf_guest),
223 VCPU_STAT("tlb_flush", tlb_flush),
224 VCPU_STAT("invlpg", invlpg),
225 VCPU_STAT("exits", exits),
226 VCPU_STAT("io_exits", io_exits),
227 VCPU_STAT("mmio_exits", mmio_exits),
228 VCPU_STAT("signal_exits", signal_exits),
229 VCPU_STAT("irq_window", irq_window_exits),
230 VCPU_STAT("nmi_window", nmi_window_exits),
231 VCPU_STAT("halt_exits", halt_exits),
232 VCPU_STAT("halt_successful_poll", halt_successful_poll),
233 VCPU_STAT("halt_attempted_poll", halt_attempted_poll),
234 VCPU_STAT("halt_poll_invalid", halt_poll_invalid),
235 VCPU_STAT("halt_wakeup", halt_wakeup),
236 VCPU_STAT("hypercalls", hypercalls),
237 VCPU_STAT("request_irq", request_irq_exits),
238 VCPU_STAT("irq_exits", irq_exits),
239 VCPU_STAT("host_state_reload", host_state_reload),
240 VCPU_STAT("fpu_reload", fpu_reload),
241 VCPU_STAT("insn_emulation", insn_emulation),
242 VCPU_STAT("insn_emulation_fail", insn_emulation_fail),
243 VCPU_STAT("irq_injections", irq_injections),
244 VCPU_STAT("nmi_injections", nmi_injections),
245 VCPU_STAT("req_event", req_event),
246 VCPU_STAT("l1d_flush", l1d_flush),
cb953129
DM
247 VCPU_STAT("halt_poll_success_ns", halt_poll_success_ns),
248 VCPU_STAT("halt_poll_fail_ns", halt_poll_fail_ns),
43c11d91 249 VCPU_STAT("nested_run", nested_run),
4a7132ef
WL
250 VCPU_STAT("directed_yield_attempted", directed_yield_attempted),
251 VCPU_STAT("directed_yield_successful", directed_yield_successful),
812756a8
EGE
252 VM_STAT("mmu_shadow_zapped", mmu_shadow_zapped),
253 VM_STAT("mmu_pte_write", mmu_pte_write),
812756a8
EGE
254 VM_STAT("mmu_pde_zapped", mmu_pde_zapped),
255 VM_STAT("mmu_flooded", mmu_flooded),
256 VM_STAT("mmu_recycled", mmu_recycled),
257 VM_STAT("mmu_cache_miss", mmu_cache_miss),
258 VM_STAT("mmu_unsync", mmu_unsync),
259 VM_STAT("remote_tlb_flush", remote_tlb_flush),
260 VM_STAT("largepages", lpages, .mode = 0444),
261 VM_STAT("nx_largepages_splitted", nx_lpage_splits, .mode = 0444),
262 VM_STAT("max_mmu_page_hash_collisions", max_mmu_page_hash_collisions),
417bc304
HB
263 { NULL }
264};
265
2acf923e 266u64 __read_mostly host_xcr0;
cfc48181
SC
267u64 __read_mostly supported_xcr0;
268EXPORT_SYMBOL_GPL(supported_xcr0);
2acf923e 269
80fbd280 270static struct kmem_cache *x86_fpu_cache;
b666a4b6 271
c9b8b07c
SC
272static struct kmem_cache *x86_emulator_cache;
273
6abe9c13
PX
274/*
275 * When called, it means the previous get/set msr reached an invalid msr.
cc4cb017 276 * Return true if we want to ignore/silent this failed msr access.
6abe9c13 277 */
d632826f 278static bool kvm_msr_ignored_check(u32 msr, u64 data, bool write)
6abe9c13
PX
279{
280 const char *op = write ? "wrmsr" : "rdmsr";
281
282 if (ignore_msrs) {
283 if (report_ignored_msrs)
d383b314
TI
284 kvm_pr_unimpl("ignored %s: 0x%x data 0x%llx\n",
285 op, msr, data);
6abe9c13 286 /* Mask the error */
cc4cb017 287 return true;
6abe9c13 288 } else {
d383b314
TI
289 kvm_debug_ratelimited("unhandled %s: 0x%x data 0x%llx\n",
290 op, msr, data);
cc4cb017 291 return false;
6abe9c13
PX
292 }
293}
294
c9b8b07c
SC
295static struct kmem_cache *kvm_alloc_emulator_cache(void)
296{
06add254
SC
297 unsigned int useroffset = offsetof(struct x86_emulate_ctxt, src);
298 unsigned int size = sizeof(struct x86_emulate_ctxt);
299
300 return kmem_cache_create_usercopy("x86_emulator", size,
c9b8b07c 301 __alignof__(struct x86_emulate_ctxt),
06add254
SC
302 SLAB_ACCOUNT, useroffset,
303 size - useroffset, NULL);
c9b8b07c
SC
304}
305
b6785def 306static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt);
d6aa1000 307
af585b92
GN
308static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu)
309{
310 int i;
dd03bcaa 311 for (i = 0; i < ASYNC_PF_PER_VCPU; i++)
af585b92
GN
312 vcpu->arch.apf.gfns[i] = ~0;
313}
314
18863bdd
AK
315static void kvm_on_user_return(struct user_return_notifier *urn)
316{
317 unsigned slot;
7e34fbd0
SC
318 struct kvm_user_return_msrs *msrs
319 = container_of(urn, struct kvm_user_return_msrs, urn);
320 struct kvm_user_return_msr_values *values;
1650b4eb
IA
321 unsigned long flags;
322
323 /*
324 * Disabling irqs at this point since the following code could be
325 * interrupted and executed through kvm_arch_hardware_disable()
326 */
327 local_irq_save(flags);
7e34fbd0
SC
328 if (msrs->registered) {
329 msrs->registered = false;
1650b4eb
IA
330 user_return_notifier_unregister(urn);
331 }
332 local_irq_restore(flags);
7e34fbd0
SC
333 for (slot = 0; slot < user_return_msrs_global.nr; ++slot) {
334 values = &msrs->values[slot];
2bf78fa7 335 if (values->host != values->curr) {
7e34fbd0 336 wrmsrl(user_return_msrs_global.msrs[slot], values->host);
2bf78fa7 337 values->curr = values->host;
18863bdd
AK
338 }
339 }
18863bdd
AK
340}
341
7e34fbd0 342void kvm_define_user_return_msr(unsigned slot, u32 msr)
2bf78fa7 343{
7e34fbd0
SC
344 BUG_ON(slot >= KVM_MAX_NR_USER_RETURN_MSRS);
345 user_return_msrs_global.msrs[slot] = msr;
346 if (slot >= user_return_msrs_global.nr)
347 user_return_msrs_global.nr = slot + 1;
18863bdd 348}
7e34fbd0 349EXPORT_SYMBOL_GPL(kvm_define_user_return_msr);
18863bdd 350
7e34fbd0 351static void kvm_user_return_msr_cpu_online(void)
18863bdd 352{
05c19c2f 353 unsigned int cpu = smp_processor_id();
7e34fbd0 354 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
05c19c2f
SC
355 u64 value;
356 int i;
18863bdd 357
7e34fbd0
SC
358 for (i = 0; i < user_return_msrs_global.nr; ++i) {
359 rdmsrl_safe(user_return_msrs_global.msrs[i], &value);
360 msrs->values[i].host = value;
361 msrs->values[i].curr = value;
05c19c2f 362 }
18863bdd
AK
363}
364
7e34fbd0 365int kvm_set_user_return_msr(unsigned slot, u64 value, u64 mask)
18863bdd 366{
013f6a5d 367 unsigned int cpu = smp_processor_id();
7e34fbd0 368 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
8b3c3104 369 int err;
18863bdd 370
7e34fbd0
SC
371 value = (value & mask) | (msrs->values[slot].host & ~mask);
372 if (value == msrs->values[slot].curr)
8b3c3104 373 return 0;
7e34fbd0 374 err = wrmsrl_safe(user_return_msrs_global.msrs[slot], value);
8b3c3104
AH
375 if (err)
376 return 1;
377
7e34fbd0
SC
378 msrs->values[slot].curr = value;
379 if (!msrs->registered) {
380 msrs->urn.on_user_return = kvm_on_user_return;
381 user_return_notifier_register(&msrs->urn);
382 msrs->registered = true;
18863bdd 383 }
8b3c3104 384 return 0;
18863bdd 385}
7e34fbd0 386EXPORT_SYMBOL_GPL(kvm_set_user_return_msr);
18863bdd 387
13a34e06 388static void drop_user_return_notifiers(void)
3548bab5 389{
013f6a5d 390 unsigned int cpu = smp_processor_id();
7e34fbd0 391 struct kvm_user_return_msrs *msrs = per_cpu_ptr(user_return_msrs, cpu);
3548bab5 392
7e34fbd0
SC
393 if (msrs->registered)
394 kvm_on_user_return(&msrs->urn);
3548bab5
AK
395}
396
6866b83e
CO
397u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
398{
8a5a87d9 399 return vcpu->arch.apic_base;
6866b83e
CO
400}
401EXPORT_SYMBOL_GPL(kvm_get_apic_base);
402
58871649
JM
403enum lapic_mode kvm_get_apic_mode(struct kvm_vcpu *vcpu)
404{
405 return kvm_apic_mode(kvm_get_apic_base(vcpu));
406}
407EXPORT_SYMBOL_GPL(kvm_get_apic_mode);
408
58cb628d
JK
409int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
410{
58871649
JM
411 enum lapic_mode old_mode = kvm_get_apic_mode(vcpu);
412 enum lapic_mode new_mode = kvm_apic_mode(msr_info->data);
a8ac864a 413 u64 reserved_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu) | 0x2ff |
d6321d49 414 (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) ? 0 : X2APIC_ENABLE);
58cb628d 415
58871649 416 if ((msr_info->data & reserved_bits) != 0 || new_mode == LAPIC_MODE_INVALID)
58cb628d 417 return 1;
58871649
JM
418 if (!msr_info->host_initiated) {
419 if (old_mode == LAPIC_MODE_X2APIC && new_mode == LAPIC_MODE_XAPIC)
420 return 1;
421 if (old_mode == LAPIC_MODE_DISABLED && new_mode == LAPIC_MODE_X2APIC)
422 return 1;
423 }
58cb628d
JK
424
425 kvm_lapic_set_base(vcpu, msr_info->data);
4abaffce 426 kvm_recalculate_apic_map(vcpu->kvm);
58cb628d 427 return 0;
6866b83e
CO
428}
429EXPORT_SYMBOL_GPL(kvm_set_apic_base);
430
3ebccdf3 431asmlinkage __visible noinstr void kvm_spurious_fault(void)
e3ba45b8
GL
432{
433 /* Fault while not rebooting. We want the trace. */
b4fdcf60 434 BUG_ON(!kvm_rebooting);
e3ba45b8
GL
435}
436EXPORT_SYMBOL_GPL(kvm_spurious_fault);
437
3fd28fce
ED
438#define EXCPT_BENIGN 0
439#define EXCPT_CONTRIBUTORY 1
440#define EXCPT_PF 2
441
442static int exception_class(int vector)
443{
444 switch (vector) {
445 case PF_VECTOR:
446 return EXCPT_PF;
447 case DE_VECTOR:
448 case TS_VECTOR:
449 case NP_VECTOR:
450 case SS_VECTOR:
451 case GP_VECTOR:
452 return EXCPT_CONTRIBUTORY;
453 default:
454 break;
455 }
456 return EXCPT_BENIGN;
457}
458
d6e8c854
NA
459#define EXCPT_FAULT 0
460#define EXCPT_TRAP 1
461#define EXCPT_ABORT 2
462#define EXCPT_INTERRUPT 3
463
464static int exception_type(int vector)
465{
466 unsigned int mask;
467
468 if (WARN_ON(vector > 31 || vector == NMI_VECTOR))
469 return EXCPT_INTERRUPT;
470
471 mask = 1 << vector;
472
473 /* #DB is trap, as instruction watchpoints are handled elsewhere */
474 if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR)))
475 return EXCPT_TRAP;
476
477 if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR)))
478 return EXCPT_ABORT;
479
480 /* Reserved exceptions will result in fault */
481 return EXCPT_FAULT;
482}
483
da998b46
JM
484void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu)
485{
486 unsigned nr = vcpu->arch.exception.nr;
487 bool has_payload = vcpu->arch.exception.has_payload;
488 unsigned long payload = vcpu->arch.exception.payload;
489
490 if (!has_payload)
491 return;
492
493 switch (nr) {
f10c729f
JM
494 case DB_VECTOR:
495 /*
496 * "Certain debug exceptions may clear bit 0-3. The
497 * remaining contents of the DR6 register are never
498 * cleared by the processor".
499 */
500 vcpu->arch.dr6 &= ~DR_TRAP_BITS;
501 /*
9a3ecd5e
CQ
502 * In order to reflect the #DB exception payload in guest
503 * dr6, three components need to be considered: active low
504 * bit, FIXED_1 bits and active high bits (e.g. DR6_BD,
505 * DR6_BS and DR6_BT)
506 * DR6_ACTIVE_LOW contains the FIXED_1 and active low bits.
507 * In the target guest dr6:
508 * FIXED_1 bits should always be set.
509 * Active low bits should be cleared if 1-setting in payload.
510 * Active high bits should be set if 1-setting in payload.
511 *
512 * Note, the payload is compatible with the pending debug
513 * exceptions/exit qualification under VMX, that active_low bits
514 * are active high in payload.
515 * So they need to be flipped for DR6.
f10c729f 516 */
9a3ecd5e 517 vcpu->arch.dr6 |= DR6_ACTIVE_LOW;
f10c729f 518 vcpu->arch.dr6 |= payload;
9a3ecd5e 519 vcpu->arch.dr6 ^= payload & DR6_ACTIVE_LOW;
307f1cfa
OU
520
521 /*
522 * The #DB payload is defined as compatible with the 'pending
523 * debug exceptions' field under VMX, not DR6. While bit 12 is
524 * defined in the 'pending debug exceptions' field (enabled
525 * breakpoint), it is reserved and must be zero in DR6.
526 */
527 vcpu->arch.dr6 &= ~BIT(12);
f10c729f 528 break;
da998b46
JM
529 case PF_VECTOR:
530 vcpu->arch.cr2 = payload;
531 break;
532 }
533
534 vcpu->arch.exception.has_payload = false;
535 vcpu->arch.exception.payload = 0;
536}
537EXPORT_SYMBOL_GPL(kvm_deliver_exception_payload);
538
3fd28fce 539static void kvm_multiple_exception(struct kvm_vcpu *vcpu,
ce7ddec4 540 unsigned nr, bool has_error, u32 error_code,
91e86d22 541 bool has_payload, unsigned long payload, bool reinject)
3fd28fce
ED
542{
543 u32 prev_nr;
544 int class1, class2;
545
3842d135
AK
546 kvm_make_request(KVM_REQ_EVENT, vcpu);
547
664f8e26 548 if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) {
3fd28fce 549 queue:
664f8e26
WL
550 if (reinject) {
551 /*
552 * On vmentry, vcpu->arch.exception.pending is only
553 * true if an event injection was blocked by
554 * nested_run_pending. In that case, however,
555 * vcpu_enter_guest requests an immediate exit,
556 * and the guest shouldn't proceed far enough to
557 * need reinjection.
558 */
559 WARN_ON_ONCE(vcpu->arch.exception.pending);
560 vcpu->arch.exception.injected = true;
91e86d22
JM
561 if (WARN_ON_ONCE(has_payload)) {
562 /*
563 * A reinjected event has already
564 * delivered its payload.
565 */
566 has_payload = false;
567 payload = 0;
568 }
664f8e26
WL
569 } else {
570 vcpu->arch.exception.pending = true;
571 vcpu->arch.exception.injected = false;
572 }
3fd28fce
ED
573 vcpu->arch.exception.has_error_code = has_error;
574 vcpu->arch.exception.nr = nr;
575 vcpu->arch.exception.error_code = error_code;
91e86d22
JM
576 vcpu->arch.exception.has_payload = has_payload;
577 vcpu->arch.exception.payload = payload;
a06230b6 578 if (!is_guest_mode(vcpu))
da998b46 579 kvm_deliver_exception_payload(vcpu);
3fd28fce
ED
580 return;
581 }
582
583 /* to check exception */
584 prev_nr = vcpu->arch.exception.nr;
585 if (prev_nr == DF_VECTOR) {
586 /* triple fault -> shutdown */
a8eeb04a 587 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
3fd28fce
ED
588 return;
589 }
590 class1 = exception_class(prev_nr);
591 class2 = exception_class(nr);
592 if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY)
593 || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) {
664f8e26
WL
594 /*
595 * Generate double fault per SDM Table 5-5. Set
596 * exception.pending = true so that the double fault
597 * can trigger a nested vmexit.
598 */
3fd28fce 599 vcpu->arch.exception.pending = true;
664f8e26 600 vcpu->arch.exception.injected = false;
3fd28fce
ED
601 vcpu->arch.exception.has_error_code = true;
602 vcpu->arch.exception.nr = DF_VECTOR;
603 vcpu->arch.exception.error_code = 0;
c851436a
JM
604 vcpu->arch.exception.has_payload = false;
605 vcpu->arch.exception.payload = 0;
3fd28fce
ED
606 } else
607 /* replace previous exception with a new one in a hope
608 that instruction re-execution will regenerate lost
609 exception */
610 goto queue;
611}
612
298101da
AK
613void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
614{
91e86d22 615 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, false);
298101da
AK
616}
617EXPORT_SYMBOL_GPL(kvm_queue_exception);
618
ce7ddec4
JR
619void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr)
620{
91e86d22 621 kvm_multiple_exception(vcpu, nr, false, 0, false, 0, true);
ce7ddec4
JR
622}
623EXPORT_SYMBOL_GPL(kvm_requeue_exception);
624
4d5523cf
PB
625void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr,
626 unsigned long payload)
f10c729f
JM
627{
628 kvm_multiple_exception(vcpu, nr, false, 0, true, payload, false);
629}
4d5523cf 630EXPORT_SYMBOL_GPL(kvm_queue_exception_p);
f10c729f 631
da998b46
JM
632static void kvm_queue_exception_e_p(struct kvm_vcpu *vcpu, unsigned nr,
633 u32 error_code, unsigned long payload)
634{
635 kvm_multiple_exception(vcpu, nr, true, error_code,
636 true, payload, false);
637}
638
6affcbed 639int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err)
c3c91fee 640{
db8fcefa
AP
641 if (err)
642 kvm_inject_gp(vcpu, 0);
643 else
6affcbed
KH
644 return kvm_skip_emulated_instruction(vcpu);
645
646 return 1;
db8fcefa
AP
647}
648EXPORT_SYMBOL_GPL(kvm_complete_insn_gp);
8df25a32 649
6389ee94 650void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault)
c3c91fee
AK
651{
652 ++vcpu->stat.pf_guest;
adfe20fb
WL
653 vcpu->arch.exception.nested_apf =
654 is_guest_mode(vcpu) && fault->async_page_fault;
da998b46 655 if (vcpu->arch.exception.nested_apf) {
adfe20fb 656 vcpu->arch.apf.nested_apf_token = fault->address;
da998b46
JM
657 kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code);
658 } else {
659 kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code,
660 fault->address);
661 }
c3c91fee 662}
27d6c865 663EXPORT_SYMBOL_GPL(kvm_inject_page_fault);
c3c91fee 664
53b3d8e9
SC
665bool kvm_inject_emulated_page_fault(struct kvm_vcpu *vcpu,
666 struct x86_exception *fault)
d4f8cf66 667{
0cd665bd 668 struct kvm_mmu *fault_mmu;
53b3d8e9
SC
669 WARN_ON_ONCE(fault->vector != PF_VECTOR);
670
0cd665bd
PB
671 fault_mmu = fault->nested_page_fault ? vcpu->arch.mmu :
672 vcpu->arch.walk_mmu;
ef54bcfe 673
ee1fa209
JS
674 /*
675 * Invalidate the TLB entry for the faulting address, if it exists,
676 * else the access will fault indefinitely (and to emulate hardware).
677 */
678 if ((fault->error_code & PFERR_PRESENT_MASK) &&
679 !(fault->error_code & PFERR_RSVD_MASK))
680 kvm_mmu_invalidate_gva(vcpu, fault_mmu, fault->address,
681 fault_mmu->root_hpa);
682
683 fault_mmu->inject_page_fault(vcpu, fault);
ef54bcfe 684 return fault->nested_page_fault;
d4f8cf66 685}
53b3d8e9 686EXPORT_SYMBOL_GPL(kvm_inject_emulated_page_fault);
d4f8cf66 687
3419ffc8
SY
688void kvm_inject_nmi(struct kvm_vcpu *vcpu)
689{
7460fb4a
AK
690 atomic_inc(&vcpu->arch.nmi_queued);
691 kvm_make_request(KVM_REQ_NMI, vcpu);
3419ffc8
SY
692}
693EXPORT_SYMBOL_GPL(kvm_inject_nmi);
694
298101da
AK
695void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
696{
91e86d22 697 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, false);
298101da
AK
698}
699EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
700
ce7ddec4
JR
701void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
702{
91e86d22 703 kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, true);
ce7ddec4
JR
704}
705EXPORT_SYMBOL_GPL(kvm_requeue_exception_e);
706
0a79b009
AK
707/*
708 * Checks if cpl <= required_cpl; if true, return true. Otherwise queue
709 * a #GP and return false.
710 */
711bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl)
298101da 712{
b3646477 713 if (static_call(kvm_x86_get_cpl)(vcpu) <= required_cpl)
0a79b009
AK
714 return true;
715 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
716 return false;
298101da 717}
0a79b009 718EXPORT_SYMBOL_GPL(kvm_require_cpl);
298101da 719
16f8a6f9
NA
720bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr)
721{
722 if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE))
723 return true;
724
725 kvm_queue_exception(vcpu, UD_VECTOR);
726 return false;
727}
728EXPORT_SYMBOL_GPL(kvm_require_dr);
729
ec92fe44
JR
730/*
731 * This function will be used to read from the physical memory of the currently
54bf36aa 732 * running guest. The difference to kvm_vcpu_read_guest_page is that this function
ec92fe44
JR
733 * can read from guest physical or from the guest's guest physical memory.
734 */
735int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
736 gfn_t ngfn, void *data, int offset, int len,
737 u32 access)
738{
54987b7a 739 struct x86_exception exception;
ec92fe44
JR
740 gfn_t real_gfn;
741 gpa_t ngpa;
742
743 ngpa = gfn_to_gpa(ngfn);
54987b7a 744 real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception);
ec92fe44
JR
745 if (real_gfn == UNMAPPED_GVA)
746 return -EFAULT;
747
748 real_gfn = gpa_to_gfn(real_gfn);
749
54bf36aa 750 return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len);
ec92fe44
JR
751}
752EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu);
753
69b0049a 754static int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
3d06b8bf
JR
755 void *data, int offset, int len, u32 access)
756{
757 return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn,
758 data, offset, len, access);
759}
760
16cfacc8
SC
761static inline u64 pdptr_rsvd_bits(struct kvm_vcpu *vcpu)
762{
5b7f575c 763 return vcpu->arch.reserved_gpa_bits | rsvd_bits(5, 8) | rsvd_bits(1, 2);
16cfacc8
SC
764}
765
a03490ed 766/*
16cfacc8 767 * Load the pae pdptrs. Return 1 if they are all valid, 0 otherwise.
a03490ed 768 */
ff03a073 769int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3)
a03490ed
CO
770{
771 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
772 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
773 int i;
774 int ret;
ff03a073 775 u64 pdpte[ARRAY_SIZE(mmu->pdptrs)];
a03490ed 776
ff03a073
JR
777 ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte,
778 offset * sizeof(u64), sizeof(pdpte),
779 PFERR_USER_MASK|PFERR_WRITE_MASK);
a03490ed
CO
780 if (ret < 0) {
781 ret = 0;
782 goto out;
783 }
784 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
812f30b2 785 if ((pdpte[i] & PT_PRESENT_MASK) &&
16cfacc8 786 (pdpte[i] & pdptr_rsvd_bits(vcpu))) {
a03490ed
CO
787 ret = 0;
788 goto out;
789 }
790 }
791 ret = 1;
792
ff03a073 793 memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs));
cb3c1e2f
SC
794 kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR);
795
a03490ed 796out:
a03490ed
CO
797
798 return ret;
799}
cc4b6871 800EXPORT_SYMBOL_GPL(load_pdptrs);
a03490ed 801
9ed38ffa 802bool pdptrs_changed(struct kvm_vcpu *vcpu)
d835dfec 803{
ff03a073 804 u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)];
3d06b8bf
JR
805 int offset;
806 gfn_t gfn;
d835dfec
AK
807 int r;
808
bf03d4f9 809 if (!is_pae_paging(vcpu))
d835dfec
AK
810 return false;
811
cb3c1e2f 812 if (!kvm_register_is_available(vcpu, VCPU_EXREG_PDPTR))
6de4f3ad
AK
813 return true;
814
a512177e
PB
815 gfn = (kvm_read_cr3(vcpu) & 0xffffffe0ul) >> PAGE_SHIFT;
816 offset = (kvm_read_cr3(vcpu) & 0xffffffe0ul) & (PAGE_SIZE - 1);
3d06b8bf
JR
817 r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte),
818 PFERR_USER_MASK | PFERR_WRITE_MASK);
d835dfec 819 if (r < 0)
7f7f0d9c 820 return true;
d835dfec 821
7f7f0d9c 822 return memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0;
d835dfec 823}
9ed38ffa 824EXPORT_SYMBOL_GPL(pdptrs_changed);
d835dfec 825
f27ad38a
TL
826void kvm_post_set_cr0(struct kvm_vcpu *vcpu, unsigned long old_cr0, unsigned long cr0)
827{
828 unsigned long update_bits = X86_CR0_PG | X86_CR0_WP;
829
830 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
831 kvm_clear_async_pf_completion_queue(vcpu);
832 kvm_async_pf_hash_reset(vcpu);
833 }
834
835 if ((cr0 ^ old_cr0) & update_bits)
836 kvm_mmu_reset_context(vcpu);
837
838 if (((cr0 ^ old_cr0) & X86_CR0_CD) &&
839 kvm_arch_has_noncoherent_dma(vcpu->kvm) &&
840 !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
841 kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL);
842}
843EXPORT_SYMBOL_GPL(kvm_post_set_cr0);
844
49a9b07e 845int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
a03490ed 846{
aad82703 847 unsigned long old_cr0 = kvm_read_cr0(vcpu);
d42e3fae 848 unsigned long pdptr_bits = X86_CR0_CD | X86_CR0_NW | X86_CR0_PG;
aad82703 849
f9a48e6a
AK
850 cr0 |= X86_CR0_ET;
851
ab344828 852#ifdef CONFIG_X86_64
0f12244f
GN
853 if (cr0 & 0xffffffff00000000UL)
854 return 1;
ab344828
GN
855#endif
856
857 cr0 &= ~CR0_RESERVED_BITS;
a03490ed 858
0f12244f
GN
859 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD))
860 return 1;
a03490ed 861
0f12244f
GN
862 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE))
863 return 1;
a03490ed 864
a03490ed 865#ifdef CONFIG_X86_64
05487215
SC
866 if ((vcpu->arch.efer & EFER_LME) && !is_paging(vcpu) &&
867 (cr0 & X86_CR0_PG)) {
868 int cs_db, cs_l;
869
870 if (!is_pae(vcpu))
871 return 1;
b3646477 872 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
05487215 873 if (cs_l)
0f12244f 874 return 1;
a03490ed 875 }
05487215
SC
876#endif
877 if (!(vcpu->arch.efer & EFER_LME) && (cr0 & X86_CR0_PG) &&
878 is_pae(vcpu) && ((cr0 ^ old_cr0) & pdptr_bits) &&
879 !load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu)))
880 return 1;
a03490ed 881
ad756a16
MJ
882 if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE))
883 return 1;
884
b3646477 885 static_call(kvm_x86_set_cr0)(vcpu, cr0);
a03490ed 886
f27ad38a 887 kvm_post_set_cr0(vcpu, old_cr0, cr0);
b18d5431 888
0f12244f
GN
889 return 0;
890}
2d3ad1f4 891EXPORT_SYMBOL_GPL(kvm_set_cr0);
a03490ed 892
2d3ad1f4 893void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
a03490ed 894{
49a9b07e 895 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));
a03490ed 896}
2d3ad1f4 897EXPORT_SYMBOL_GPL(kvm_lmsw);
a03490ed 898
139a12cf 899void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu)
42bdf991 900{
16809ecd
TL
901 if (vcpu->arch.guest_state_protected)
902 return;
903
139a12cf
AL
904 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
905
906 if (vcpu->arch.xcr0 != host_xcr0)
907 xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0);
908
909 if (vcpu->arch.xsaves_enabled &&
910 vcpu->arch.ia32_xss != host_xss)
911 wrmsrl(MSR_IA32_XSS, vcpu->arch.ia32_xss);
912 }
37486135
BM
913
914 if (static_cpu_has(X86_FEATURE_PKU) &&
915 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
916 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU)) &&
917 vcpu->arch.pkru != vcpu->arch.host_pkru)
918 __write_pkru(vcpu->arch.pkru);
42bdf991 919}
139a12cf 920EXPORT_SYMBOL_GPL(kvm_load_guest_xsave_state);
42bdf991 921
139a12cf 922void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu)
42bdf991 923{
16809ecd
TL
924 if (vcpu->arch.guest_state_protected)
925 return;
926
37486135
BM
927 if (static_cpu_has(X86_FEATURE_PKU) &&
928 (kvm_read_cr4_bits(vcpu, X86_CR4_PKE) ||
929 (vcpu->arch.xcr0 & XFEATURE_MASK_PKRU))) {
930 vcpu->arch.pkru = rdpkru();
931 if (vcpu->arch.pkru != vcpu->arch.host_pkru)
932 __write_pkru(vcpu->arch.host_pkru);
933 }
934
139a12cf
AL
935 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) {
936
937 if (vcpu->arch.xcr0 != host_xcr0)
938 xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0);
939
940 if (vcpu->arch.xsaves_enabled &&
941 vcpu->arch.ia32_xss != host_xss)
942 wrmsrl(MSR_IA32_XSS, host_xss);
943 }
944
42bdf991 945}
139a12cf 946EXPORT_SYMBOL_GPL(kvm_load_host_xsave_state);
42bdf991 947
69b0049a 948static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr)
2acf923e 949{
56c103ec
LJ
950 u64 xcr0 = xcr;
951 u64 old_xcr0 = vcpu->arch.xcr0;
46c34cb0 952 u64 valid_bits;
2acf923e
DC
953
954 /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */
955 if (index != XCR_XFEATURE_ENABLED_MASK)
956 return 1;
d91cab78 957 if (!(xcr0 & XFEATURE_MASK_FP))
2acf923e 958 return 1;
d91cab78 959 if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE))
2acf923e 960 return 1;
46c34cb0
PB
961
962 /*
963 * Do not allow the guest to set bits that we do not support
964 * saving. However, xcr0 bit 0 is always set, even if the
965 * emulated CPU does not support XSAVE (see fx_init).
966 */
d91cab78 967 valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP;
46c34cb0 968 if (xcr0 & ~valid_bits)
2acf923e 969 return 1;
46c34cb0 970
d91cab78
DH
971 if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) !=
972 (!(xcr0 & XFEATURE_MASK_BNDCSR)))
390bd528
LJ
973 return 1;
974
d91cab78
DH
975 if (xcr0 & XFEATURE_MASK_AVX512) {
976 if (!(xcr0 & XFEATURE_MASK_YMM))
612263b3 977 return 1;
d91cab78 978 if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512)
612263b3
CP
979 return 1;
980 }
2acf923e 981 vcpu->arch.xcr0 = xcr0;
56c103ec 982
d91cab78 983 if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND)
aedbaf4f 984 kvm_update_cpuid_runtime(vcpu);
2acf923e
DC
985 return 0;
986}
987
92f9895c 988int kvm_emulate_xsetbv(struct kvm_vcpu *vcpu)
2acf923e 989{
92f9895c
SC
990 if (static_call(kvm_x86_get_cpl)(vcpu) != 0 ||
991 __kvm_set_xcr(vcpu, kvm_rcx_read(vcpu), kvm_read_edx_eax(vcpu))) {
992 kvm_inject_gp(vcpu, 0);
993 return 1;
994 }
bbefd4fc 995
92f9895c 996 return kvm_skip_emulated_instruction(vcpu);
2acf923e 997}
92f9895c 998EXPORT_SYMBOL_GPL(kvm_emulate_xsetbv);
2acf923e 999
ee69c92b 1000bool kvm_is_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
a03490ed 1001{
b11306b5 1002 if (cr4 & cr4_reserved_bits)
ee69c92b 1003 return false;
b9baba86 1004
b899c132 1005 if (cr4 & vcpu->arch.cr4_guest_rsvd_bits)
ee69c92b 1006 return false;
3ca94192 1007
b3646477 1008 return static_call(kvm_x86_is_valid_cr4)(vcpu, cr4);
3ca94192 1009}
ee69c92b 1010EXPORT_SYMBOL_GPL(kvm_is_valid_cr4);
3ca94192 1011
5b51cb13
TL
1012void kvm_post_set_cr4(struct kvm_vcpu *vcpu, unsigned long old_cr4, unsigned long cr4)
1013{
1014 unsigned long mmu_role_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
1015 X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE;
1016
1017 if (((cr4 ^ old_cr4) & mmu_role_bits) ||
1018 (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE)))
1019 kvm_mmu_reset_context(vcpu);
3ca94192 1020}
5b51cb13 1021EXPORT_SYMBOL_GPL(kvm_post_set_cr4);
3ca94192
WL
1022
1023int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1024{
1025 unsigned long old_cr4 = kvm_read_cr4(vcpu);
1026 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE |
cb957adb 1027 X86_CR4_SMEP;
3ca94192 1028
ee69c92b 1029 if (!kvm_is_valid_cr4(vcpu, cr4))
ae3e61e1
PB
1030 return 1;
1031
a03490ed 1032 if (is_long_mode(vcpu)) {
0f12244f
GN
1033 if (!(cr4 & X86_CR4_PAE))
1034 return 1;
d74fcfc1
SC
1035 if ((cr4 ^ old_cr4) & X86_CR4_LA57)
1036 return 1;
a2edf57f
AK
1037 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE)
1038 && ((cr4 ^ old_cr4) & pdptr_bits)
9f8fe504
AK
1039 && !load_pdptrs(vcpu, vcpu->arch.walk_mmu,
1040 kvm_read_cr3(vcpu)))
0f12244f
GN
1041 return 1;
1042
ad756a16 1043 if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) {
d6321d49 1044 if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID))
ad756a16
MJ
1045 return 1;
1046
1047 /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */
1048 if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu))
1049 return 1;
1050 }
1051
b3646477 1052 static_call(kvm_x86_set_cr4)(vcpu, cr4);
a03490ed 1053
5b51cb13 1054 kvm_post_set_cr4(vcpu, old_cr4, cr4);
2acf923e 1055
0f12244f
GN
1056 return 0;
1057}
2d3ad1f4 1058EXPORT_SYMBOL_GPL(kvm_set_cr4);
a03490ed 1059
2390218b 1060int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
a03490ed 1061{
ade61e28 1062 bool skip_tlb_flush = false;
ac146235 1063#ifdef CONFIG_X86_64
c19986fe
JS
1064 bool pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
1065
ade61e28 1066 if (pcid_enabled) {
208320ba
JS
1067 skip_tlb_flush = cr3 & X86_CR3_PCID_NOFLUSH;
1068 cr3 &= ~X86_CR3_PCID_NOFLUSH;
ade61e28 1069 }
ac146235 1070#endif
9d88fca7 1071
9f8fe504 1072 if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) {
956bf353
JS
1073 if (!skip_tlb_flush) {
1074 kvm_mmu_sync_roots(vcpu);
eeeb4f67 1075 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
956bf353 1076 }
0f12244f 1077 return 0;
d835dfec
AK
1078 }
1079
886bbcc7
SC
1080 /*
1081 * Do not condition the GPA check on long mode, this helper is used to
1082 * stuff CR3, e.g. for RSM emulation, and there is no guarantee that
1083 * the current vCPU mode is accurate.
1084 */
1085 if (kvm_vcpu_is_illegal_gpa(vcpu, cr3))
d1cd3ce9 1086 return 1;
886bbcc7
SC
1087
1088 if (is_pae_paging(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))
346874c9 1089 return 1;
a03490ed 1090
be01e8e2 1091 kvm_mmu_new_pgd(vcpu, cr3, skip_tlb_flush, skip_tlb_flush);
0f12244f 1092 vcpu->arch.cr3 = cr3;
cb3c1e2f 1093 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
7c390d35 1094
0f12244f
GN
1095 return 0;
1096}
2d3ad1f4 1097EXPORT_SYMBOL_GPL(kvm_set_cr3);
a03490ed 1098
eea1cff9 1099int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
a03490ed 1100{
0f12244f
GN
1101 if (cr8 & CR8_RESERVED_BITS)
1102 return 1;
35754c98 1103 if (lapic_in_kernel(vcpu))
a03490ed
CO
1104 kvm_lapic_set_tpr(vcpu, cr8);
1105 else
ad312c7c 1106 vcpu->arch.cr8 = cr8;
0f12244f
GN
1107 return 0;
1108}
2d3ad1f4 1109EXPORT_SYMBOL_GPL(kvm_set_cr8);
a03490ed 1110
2d3ad1f4 1111unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
a03490ed 1112{
35754c98 1113 if (lapic_in_kernel(vcpu))
a03490ed
CO
1114 return kvm_lapic_get_cr8(vcpu);
1115 else
ad312c7c 1116 return vcpu->arch.cr8;
a03490ed 1117}
2d3ad1f4 1118EXPORT_SYMBOL_GPL(kvm_get_cr8);
a03490ed 1119
ae561ede
NA
1120static void kvm_update_dr0123(struct kvm_vcpu *vcpu)
1121{
1122 int i;
1123
1124 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
1125 for (i = 0; i < KVM_NR_DB_REGS; i++)
1126 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
1127 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD;
1128 }
1129}
1130
7c86663b 1131void kvm_update_dr7(struct kvm_vcpu *vcpu)
c8639010
JK
1132{
1133 unsigned long dr7;
1134
1135 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1136 dr7 = vcpu->arch.guest_debug_dr7;
1137 else
1138 dr7 = vcpu->arch.dr7;
b3646477 1139 static_call(kvm_x86_set_dr7)(vcpu, dr7);
360b948d
PB
1140 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED;
1141 if (dr7 & DR7_BP_EN_MASK)
1142 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED;
c8639010 1143}
7c86663b 1144EXPORT_SYMBOL_GPL(kvm_update_dr7);
c8639010 1145
6f43ed01
NA
1146static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu)
1147{
1148 u64 fixed = DR6_FIXED_1;
1149
d6321d49 1150 if (!guest_cpuid_has(vcpu, X86_FEATURE_RTM))
6f43ed01
NA
1151 fixed |= DR6_RTM;
1152 return fixed;
1153}
1154
996ff542 1155int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val)
020df079 1156{
ea740059
MP
1157 size_t size = ARRAY_SIZE(vcpu->arch.db);
1158
020df079
GN
1159 switch (dr) {
1160 case 0 ... 3:
ea740059 1161 vcpu->arch.db[array_index_nospec(dr, size)] = val;
020df079
GN
1162 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
1163 vcpu->arch.eff_db[dr] = val;
1164 break;
1165 case 4:
020df079 1166 case 6:
f5f6145e 1167 if (!kvm_dr6_valid(val))
996ff542 1168 return 1; /* #GP */
6f43ed01 1169 vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu);
020df079
GN
1170 break;
1171 case 5:
020df079 1172 default: /* 7 */
b91991bf 1173 if (!kvm_dr7_valid(val))
996ff542 1174 return 1; /* #GP */
020df079 1175 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
c8639010 1176 kvm_update_dr7(vcpu);
020df079
GN
1177 break;
1178 }
1179
1180 return 0;
1181}
1182EXPORT_SYMBOL_GPL(kvm_set_dr);
1183
29d6ca41 1184void kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val)
020df079 1185{
ea740059
MP
1186 size_t size = ARRAY_SIZE(vcpu->arch.db);
1187
020df079
GN
1188 switch (dr) {
1189 case 0 ... 3:
ea740059 1190 *val = vcpu->arch.db[array_index_nospec(dr, size)];
020df079
GN
1191 break;
1192 case 4:
020df079 1193 case 6:
5679b803 1194 *val = vcpu->arch.dr6;
020df079
GN
1195 break;
1196 case 5:
020df079
GN
1197 default: /* 7 */
1198 *val = vcpu->arch.dr7;
1199 break;
1200 }
338dbc97 1201}
020df079
GN
1202EXPORT_SYMBOL_GPL(kvm_get_dr);
1203
c483c454 1204int kvm_emulate_rdpmc(struct kvm_vcpu *vcpu)
022cd0e8 1205{
de3cd117 1206 u32 ecx = kvm_rcx_read(vcpu);
022cd0e8 1207 u64 data;
022cd0e8 1208
c483c454
SC
1209 if (kvm_pmu_rdpmc(vcpu, ecx, &data)) {
1210 kvm_inject_gp(vcpu, 0);
1211 return 1;
1212 }
1213
de3cd117
SC
1214 kvm_rax_write(vcpu, (u32)data);
1215 kvm_rdx_write(vcpu, data >> 32);
c483c454 1216 return kvm_skip_emulated_instruction(vcpu);
022cd0e8 1217}
c483c454 1218EXPORT_SYMBOL_GPL(kvm_emulate_rdpmc);
022cd0e8 1219
043405e1
CO
1220/*
1221 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
1222 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
1223 *
7a5ee6ed
CQ
1224 * The three MSR lists(msrs_to_save, emulated_msrs, msr_based_features)
1225 * extract the supported MSRs from the related const lists.
1226 * msrs_to_save is selected from the msrs_to_save_all to reflect the
e3267cbb 1227 * capabilities of the host cpu. This capabilities test skips MSRs that are
7a5ee6ed 1228 * kvm-specific. Those are put in emulated_msrs_all; filtering of emulated_msrs
62ef68bb 1229 * may depend on host virtualization features rather than host cpu features.
043405e1 1230 */
e3267cbb 1231
7a5ee6ed 1232static const u32 msrs_to_save_all[] = {
043405e1 1233 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
8c06585d 1234 MSR_STAR,
043405e1
CO
1235#ifdef CONFIG_X86_64
1236 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
1237#endif
b3897a49 1238 MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA,
32ad73db 1239 MSR_IA32_FEAT_CTL, MSR_IA32_BNDCFGS, MSR_TSC_AUX,
2bdb76c0 1240 MSR_IA32_SPEC_CTRL,
bf8c55d8
CP
1241 MSR_IA32_RTIT_CTL, MSR_IA32_RTIT_STATUS, MSR_IA32_RTIT_CR3_MATCH,
1242 MSR_IA32_RTIT_OUTPUT_BASE, MSR_IA32_RTIT_OUTPUT_MASK,
1243 MSR_IA32_RTIT_ADDR0_A, MSR_IA32_RTIT_ADDR0_B,
1244 MSR_IA32_RTIT_ADDR1_A, MSR_IA32_RTIT_ADDR1_B,
1245 MSR_IA32_RTIT_ADDR2_A, MSR_IA32_RTIT_ADDR2_B,
1246 MSR_IA32_RTIT_ADDR3_A, MSR_IA32_RTIT_ADDR3_B,
6e3ba4ab
TX
1247 MSR_IA32_UMWAIT_CONTROL,
1248
e2ada66e
JM
1249 MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1,
1250 MSR_ARCH_PERFMON_FIXED_CTR0 + 2, MSR_ARCH_PERFMON_FIXED_CTR0 + 3,
1251 MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS,
1252 MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL,
1253 MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1,
1254 MSR_ARCH_PERFMON_PERFCTR0 + 2, MSR_ARCH_PERFMON_PERFCTR0 + 3,
1255 MSR_ARCH_PERFMON_PERFCTR0 + 4, MSR_ARCH_PERFMON_PERFCTR0 + 5,
1256 MSR_ARCH_PERFMON_PERFCTR0 + 6, MSR_ARCH_PERFMON_PERFCTR0 + 7,
1257 MSR_ARCH_PERFMON_PERFCTR0 + 8, MSR_ARCH_PERFMON_PERFCTR0 + 9,
1258 MSR_ARCH_PERFMON_PERFCTR0 + 10, MSR_ARCH_PERFMON_PERFCTR0 + 11,
1259 MSR_ARCH_PERFMON_PERFCTR0 + 12, MSR_ARCH_PERFMON_PERFCTR0 + 13,
1260 MSR_ARCH_PERFMON_PERFCTR0 + 14, MSR_ARCH_PERFMON_PERFCTR0 + 15,
1261 MSR_ARCH_PERFMON_PERFCTR0 + 16, MSR_ARCH_PERFMON_PERFCTR0 + 17,
e2ada66e
JM
1262 MSR_ARCH_PERFMON_EVENTSEL0, MSR_ARCH_PERFMON_EVENTSEL1,
1263 MSR_ARCH_PERFMON_EVENTSEL0 + 2, MSR_ARCH_PERFMON_EVENTSEL0 + 3,
1264 MSR_ARCH_PERFMON_EVENTSEL0 + 4, MSR_ARCH_PERFMON_EVENTSEL0 + 5,
1265 MSR_ARCH_PERFMON_EVENTSEL0 + 6, MSR_ARCH_PERFMON_EVENTSEL0 + 7,
1266 MSR_ARCH_PERFMON_EVENTSEL0 + 8, MSR_ARCH_PERFMON_EVENTSEL0 + 9,
1267 MSR_ARCH_PERFMON_EVENTSEL0 + 10, MSR_ARCH_PERFMON_EVENTSEL0 + 11,
1268 MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13,
1269 MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15,
1270 MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17,
043405e1
CO
1271};
1272
7a5ee6ed 1273static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)];
043405e1
CO
1274static unsigned num_msrs_to_save;
1275
7a5ee6ed 1276static const u32 emulated_msrs_all[] = {
62ef68bb
PB
1277 MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
1278 MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW,
1279 HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL,
1280 HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC,
72c139ba 1281 HV_X64_MSR_TSC_FREQUENCY, HV_X64_MSR_APIC_FREQUENCY,
e7d9513b
AS
1282 HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2,
1283 HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL,
e516cebb 1284 HV_X64_MSR_RESET,
11c4b1ca 1285 HV_X64_MSR_VP_INDEX,
9eec50b8 1286 HV_X64_MSR_VP_RUNTIME,
5c919412 1287 HV_X64_MSR_SCONTROL,
1f4b34f8 1288 HV_X64_MSR_STIMER0_CONFIG,
d4abc577 1289 HV_X64_MSR_VP_ASSIST_PAGE,
a2e164e7
VK
1290 HV_X64_MSR_REENLIGHTENMENT_CONTROL, HV_X64_MSR_TSC_EMULATION_CONTROL,
1291 HV_X64_MSR_TSC_EMULATION_STATUS,
f97f5a56
JD
1292 HV_X64_MSR_SYNDBG_OPTIONS,
1293 HV_X64_MSR_SYNDBG_CONTROL, HV_X64_MSR_SYNDBG_STATUS,
1294 HV_X64_MSR_SYNDBG_SEND_BUFFER, HV_X64_MSR_SYNDBG_RECV_BUFFER,
1295 HV_X64_MSR_SYNDBG_PENDING_BUFFER,
a2e164e7
VK
1296
1297 MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME,
557a961a 1298 MSR_KVM_PV_EOI_EN, MSR_KVM_ASYNC_PF_INT, MSR_KVM_ASYNC_PF_ACK,
62ef68bb 1299
ba904635 1300 MSR_IA32_TSC_ADJUST,
09141ec0 1301 MSR_IA32_TSC_DEADLINE,
2bdb76c0 1302 MSR_IA32_ARCH_CAPABILITIES,
27461da3 1303 MSR_IA32_PERF_CAPABILITIES,
043405e1 1304 MSR_IA32_MISC_ENABLE,
908e75f3
AK
1305 MSR_IA32_MCG_STATUS,
1306 MSR_IA32_MCG_CTL,
c45dcc71 1307 MSR_IA32_MCG_EXT_CTL,
64d60670 1308 MSR_IA32_SMBASE,
52797bf9 1309 MSR_SMI_COUNT,
db2336a8
KH
1310 MSR_PLATFORM_INFO,
1311 MSR_MISC_FEATURES_ENABLES,
bc226f07 1312 MSR_AMD64_VIRT_SPEC_CTRL,
6c6a2ab9 1313 MSR_IA32_POWER_CTL,
99634e3e 1314 MSR_IA32_UCODE_REV,
191c8137 1315
95c5c7c7
PB
1316 /*
1317 * The following list leaves out MSRs whose values are determined
1318 * by arch/x86/kvm/vmx/nested.c based on CPUID or other MSRs.
1319 * We always support the "true" VMX control MSRs, even if the host
1320 * processor does not, so I am putting these registers here rather
7a5ee6ed 1321 * than in msrs_to_save_all.
95c5c7c7
PB
1322 */
1323 MSR_IA32_VMX_BASIC,
1324 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1325 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1326 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1327 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1328 MSR_IA32_VMX_MISC,
1329 MSR_IA32_VMX_CR0_FIXED0,
1330 MSR_IA32_VMX_CR4_FIXED0,
1331 MSR_IA32_VMX_VMCS_ENUM,
1332 MSR_IA32_VMX_PROCBASED_CTLS2,
1333 MSR_IA32_VMX_EPT_VPID_CAP,
1334 MSR_IA32_VMX_VMFUNC,
1335
191c8137 1336 MSR_K7_HWCR,
2d5ba19b 1337 MSR_KVM_POLL_CONTROL,
043405e1
CO
1338};
1339
7a5ee6ed 1340static u32 emulated_msrs[ARRAY_SIZE(emulated_msrs_all)];
62ef68bb
PB
1341static unsigned num_emulated_msrs;
1342
801e459a
TL
1343/*
1344 * List of msr numbers which are used to expose MSR-based features that
1345 * can be used by a hypervisor to validate requested CPU features.
1346 */
7a5ee6ed 1347static const u32 msr_based_features_all[] = {
1389309c
PB
1348 MSR_IA32_VMX_BASIC,
1349 MSR_IA32_VMX_TRUE_PINBASED_CTLS,
1350 MSR_IA32_VMX_PINBASED_CTLS,
1351 MSR_IA32_VMX_TRUE_PROCBASED_CTLS,
1352 MSR_IA32_VMX_PROCBASED_CTLS,
1353 MSR_IA32_VMX_TRUE_EXIT_CTLS,
1354 MSR_IA32_VMX_EXIT_CTLS,
1355 MSR_IA32_VMX_TRUE_ENTRY_CTLS,
1356 MSR_IA32_VMX_ENTRY_CTLS,
1357 MSR_IA32_VMX_MISC,
1358 MSR_IA32_VMX_CR0_FIXED0,
1359 MSR_IA32_VMX_CR0_FIXED1,
1360 MSR_IA32_VMX_CR4_FIXED0,
1361 MSR_IA32_VMX_CR4_FIXED1,
1362 MSR_IA32_VMX_VMCS_ENUM,
1363 MSR_IA32_VMX_PROCBASED_CTLS2,
1364 MSR_IA32_VMX_EPT_VPID_CAP,
1365 MSR_IA32_VMX_VMFUNC,
1366
d1d93fa9 1367 MSR_F10H_DECFG,
518e7b94 1368 MSR_IA32_UCODE_REV,
cd283252 1369 MSR_IA32_ARCH_CAPABILITIES,
27461da3 1370 MSR_IA32_PERF_CAPABILITIES,
801e459a
TL
1371};
1372
7a5ee6ed 1373static u32 msr_based_features[ARRAY_SIZE(msr_based_features_all)];
801e459a
TL
1374static unsigned int num_msr_based_features;
1375
4d22c17c 1376static u64 kvm_get_arch_capabilities(void)
5b76a3cf 1377{
4d22c17c 1378 u64 data = 0;
5b76a3cf 1379
4d22c17c
XL
1380 if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES))
1381 rdmsrl(MSR_IA32_ARCH_CAPABILITIES, data);
5b76a3cf 1382
b8e8c830
PB
1383 /*
1384 * If nx_huge_pages is enabled, KVM's shadow paging will ensure that
1385 * the nested hypervisor runs with NX huge pages. If it is not,
d9f6e12f 1386 * L1 is anyway vulnerable to ITLB_MULTIHIT exploits from other
b8e8c830
PB
1387 * L1 guests, so it need not worry about its own (L2) guests.
1388 */
1389 data |= ARCH_CAP_PSCHANGE_MC_NO;
1390
5b76a3cf
PB
1391 /*
1392 * If we're doing cache flushes (either "always" or "cond")
1393 * we will do one whenever the guest does a vmlaunch/vmresume.
1394 * If an outer hypervisor is doing the cache flush for us
1395 * (VMENTER_L1D_FLUSH_NESTED_VM), we can safely pass that
1396 * capability to the guest too, and if EPT is disabled we're not
1397 * vulnerable. Overall, only VMENTER_L1D_FLUSH_NEVER will
1398 * require a nested hypervisor to do a flush of its own.
1399 */
1400 if (l1tf_vmx_mitigation != VMENTER_L1D_FLUSH_NEVER)
1401 data |= ARCH_CAP_SKIP_VMENTRY_L1DFLUSH;
1402
0c54914d
PB
1403 if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
1404 data |= ARCH_CAP_RDCL_NO;
1405 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
1406 data |= ARCH_CAP_SSB_NO;
1407 if (!boot_cpu_has_bug(X86_BUG_MDS))
1408 data |= ARCH_CAP_MDS_NO;
1409
7131636e
PB
1410 if (!boot_cpu_has(X86_FEATURE_RTM)) {
1411 /*
1412 * If RTM=0 because the kernel has disabled TSX, the host might
1413 * have TAA_NO or TSX_CTRL. Clear TAA_NO (the guest sees RTM=0
1414 * and therefore knows that there cannot be TAA) but keep
1415 * TSX_CTRL: some buggy userspaces leave it set on tsx=on hosts,
1416 * and we want to allow migrating those guests to tsx=off hosts.
1417 */
1418 data &= ~ARCH_CAP_TAA_NO;
1419 } else if (!boot_cpu_has_bug(X86_BUG_TAA)) {
cbbaa272 1420 data |= ARCH_CAP_TAA_NO;
7131636e
PB
1421 } else {
1422 /*
1423 * Nothing to do here; we emulate TSX_CTRL if present on the
1424 * host so the guest can choose between disabling TSX or
1425 * using VERW to clear CPU buffers.
1426 */
1427 }
e1d38b63 1428
5b76a3cf
PB
1429 return data;
1430}
5b76a3cf 1431
66421c1e
WL
1432static int kvm_get_msr_feature(struct kvm_msr_entry *msr)
1433{
1434 switch (msr->index) {
cd283252 1435 case MSR_IA32_ARCH_CAPABILITIES:
5b76a3cf
PB
1436 msr->data = kvm_get_arch_capabilities();
1437 break;
1438 case MSR_IA32_UCODE_REV:
cd283252 1439 rdmsrl_safe(msr->index, &msr->data);
518e7b94 1440 break;
66421c1e 1441 default:
b3646477 1442 return static_call(kvm_x86_get_msr_feature)(msr);
66421c1e
WL
1443 }
1444 return 0;
1445}
1446
801e459a
TL
1447static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1448{
1449 struct kvm_msr_entry msr;
66421c1e 1450 int r;
801e459a
TL
1451
1452 msr.index = index;
66421c1e 1453 r = kvm_get_msr_feature(&msr);
12bc2132
PX
1454
1455 if (r == KVM_MSR_RET_INVALID) {
1456 /* Unconditionally clear the output for simplicity */
1457 *data = 0;
d632826f 1458 if (kvm_msr_ignored_check(index, 0, false))
cc4cb017 1459 r = 0;
12bc2132
PX
1460 }
1461
66421c1e
WL
1462 if (r)
1463 return r;
801e459a
TL
1464
1465 *data = msr.data;
1466
1467 return 0;
1468}
1469
11988499 1470static bool __kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
15c4a640 1471{
1b4d56b8 1472 if (efer & EFER_FFXSR && !guest_cpuid_has(vcpu, X86_FEATURE_FXSR_OPT))
11988499 1473 return false;
1b2fd70c 1474
1b4d56b8 1475 if (efer & EFER_SVME && !guest_cpuid_has(vcpu, X86_FEATURE_SVM))
11988499 1476 return false;
d8017474 1477
0a629563
SC
1478 if (efer & (EFER_LME | EFER_LMA) &&
1479 !guest_cpuid_has(vcpu, X86_FEATURE_LM))
1480 return false;
1481
1482 if (efer & EFER_NX && !guest_cpuid_has(vcpu, X86_FEATURE_NX))
1483 return false;
d8017474 1484
384bb783 1485 return true;
11988499
SC
1486
1487}
1488bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer)
1489{
1490 if (efer & efer_reserved_bits)
1491 return false;
1492
1493 return __kvm_valid_efer(vcpu, efer);
384bb783
JK
1494}
1495EXPORT_SYMBOL_GPL(kvm_valid_efer);
1496
11988499 1497static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
384bb783
JK
1498{
1499 u64 old_efer = vcpu->arch.efer;
11988499 1500 u64 efer = msr_info->data;
72f211ec 1501 int r;
384bb783 1502
11988499 1503 if (efer & efer_reserved_bits)
66f61c92 1504 return 1;
384bb783 1505
11988499
SC
1506 if (!msr_info->host_initiated) {
1507 if (!__kvm_valid_efer(vcpu, efer))
1508 return 1;
1509
1510 if (is_paging(vcpu) &&
1511 (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME))
1512 return 1;
1513 }
384bb783 1514
15c4a640 1515 efer &= ~EFER_LMA;
f6801dff 1516 efer |= vcpu->arch.efer & EFER_LMA;
15c4a640 1517
b3646477 1518 r = static_call(kvm_x86_set_efer)(vcpu, efer);
72f211ec
ML
1519 if (r) {
1520 WARN_ON(r > 0);
1521 return r;
1522 }
a3d204e2 1523
aad82703
SY
1524 /* Update reserved bits */
1525 if ((efer ^ old_efer) & EFER_NX)
1526 kvm_mmu_reset_context(vcpu);
1527
b69e8cae 1528 return 0;
15c4a640
CO
1529}
1530
f2b4b7dd
JR
1531void kvm_enable_efer_bits(u64 mask)
1532{
1533 efer_reserved_bits &= ~mask;
1534}
1535EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
1536
51de8151
AG
1537bool kvm_msr_allowed(struct kvm_vcpu *vcpu, u32 index, u32 type)
1538{
b318e8de
SC
1539 struct kvm_x86_msr_filter *msr_filter;
1540 struct msr_bitmap_range *ranges;
1a155254 1541 struct kvm *kvm = vcpu->kvm;
b318e8de 1542 bool allowed;
1a155254 1543 int idx;
b318e8de 1544 u32 i;
1a155254 1545
b318e8de
SC
1546 /* x2APIC MSRs do not support filtering. */
1547 if (index >= 0x800 && index <= 0x8ff)
1a155254
AG
1548 return true;
1549
1a155254
AG
1550 idx = srcu_read_lock(&kvm->srcu);
1551
b318e8de
SC
1552 msr_filter = srcu_dereference(kvm->arch.msr_filter, &kvm->srcu);
1553 if (!msr_filter) {
1554 allowed = true;
1555 goto out;
1556 }
1557
1558 allowed = msr_filter->default_allow;
1559 ranges = msr_filter->ranges;
1560
1561 for (i = 0; i < msr_filter->count; i++) {
1a155254
AG
1562 u32 start = ranges[i].base;
1563 u32 end = start + ranges[i].nmsrs;
1564 u32 flags = ranges[i].flags;
1565 unsigned long *bitmap = ranges[i].bitmap;
1566
1567 if ((index >= start) && (index < end) && (flags & type)) {
b318e8de 1568 allowed = !!test_bit(index - start, bitmap);
1a155254
AG
1569 break;
1570 }
1571 }
1572
b318e8de 1573out:
1a155254
AG
1574 srcu_read_unlock(&kvm->srcu, idx);
1575
b318e8de 1576 return allowed;
51de8151
AG
1577}
1578EXPORT_SYMBOL_GPL(kvm_msr_allowed);
1579
15c4a640 1580/*
f20935d8
SC
1581 * Write @data into the MSR specified by @index. Select MSR specific fault
1582 * checks are bypassed if @host_initiated is %true.
15c4a640
CO
1583 * Returns 0 on success, non-0 otherwise.
1584 * Assumes vcpu_load() was already called.
1585 */
f20935d8
SC
1586static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data,
1587 bool host_initiated)
15c4a640 1588{
f20935d8
SC
1589 struct msr_data msr;
1590
1a155254 1591 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_WRITE))
cc4cb017 1592 return KVM_MSR_RET_FILTERED;
1a155254 1593
f20935d8 1594 switch (index) {
854e8bb1
NA
1595 case MSR_FS_BASE:
1596 case MSR_GS_BASE:
1597 case MSR_KERNEL_GS_BASE:
1598 case MSR_CSTAR:
1599 case MSR_LSTAR:
f20935d8 1600 if (is_noncanonical_address(data, vcpu))
854e8bb1
NA
1601 return 1;
1602 break;
1603 case MSR_IA32_SYSENTER_EIP:
1604 case MSR_IA32_SYSENTER_ESP:
1605 /*
1606 * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if
1607 * non-canonical address is written on Intel but not on
1608 * AMD (which ignores the top 32-bits, because it does
1609 * not implement 64-bit SYSENTER).
1610 *
1611 * 64-bit code should hence be able to write a non-canonical
1612 * value on AMD. Making the address canonical ensures that
1613 * vmentry does not fail on Intel after writing a non-canonical
1614 * value, and that something deterministic happens if the guest
1615 * invokes 64-bit SYSENTER.
1616 */
f20935d8 1617 data = get_canonical(data, vcpu_virt_addr_bits(vcpu));
854e8bb1 1618 }
f20935d8
SC
1619
1620 msr.data = data;
1621 msr.index = index;
1622 msr.host_initiated = host_initiated;
1623
b3646477 1624 return static_call(kvm_x86_set_msr)(vcpu, &msr);
15c4a640
CO
1625}
1626
6abe9c13
PX
1627static int kvm_set_msr_ignored_check(struct kvm_vcpu *vcpu,
1628 u32 index, u64 data, bool host_initiated)
1629{
1630 int ret = __kvm_set_msr(vcpu, index, data, host_initiated);
1631
1632 if (ret == KVM_MSR_RET_INVALID)
d632826f 1633 if (kvm_msr_ignored_check(index, data, true))
cc4cb017 1634 ret = 0;
6abe9c13
PX
1635
1636 return ret;
1637}
1638
313a3dc7 1639/*
f20935d8
SC
1640 * Read the MSR specified by @index into @data. Select MSR specific fault
1641 * checks are bypassed if @host_initiated is %true.
1642 * Returns 0 on success, non-0 otherwise.
1643 * Assumes vcpu_load() was already called.
313a3dc7 1644 */
edef5c36
PB
1645int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data,
1646 bool host_initiated)
609e36d3
PB
1647{
1648 struct msr_data msr;
f20935d8 1649 int ret;
609e36d3 1650
1a155254 1651 if (!host_initiated && !kvm_msr_allowed(vcpu, index, KVM_MSR_FILTER_READ))
cc4cb017 1652 return KVM_MSR_RET_FILTERED;
1a155254 1653
609e36d3 1654 msr.index = index;
f20935d8 1655 msr.host_initiated = host_initiated;
609e36d3 1656
b3646477 1657 ret = static_call(kvm_x86_get_msr)(vcpu, &msr);
f20935d8
SC
1658 if (!ret)
1659 *data = msr.data;
1660 return ret;
609e36d3
PB
1661}
1662
6abe9c13
PX
1663static int kvm_get_msr_ignored_check(struct kvm_vcpu *vcpu,
1664 u32 index, u64 *data, bool host_initiated)
1665{
1666 int ret = __kvm_get_msr(vcpu, index, data, host_initiated);
1667
1668 if (ret == KVM_MSR_RET_INVALID) {
1669 /* Unconditionally clear *data for simplicity */
1670 *data = 0;
d632826f 1671 if (kvm_msr_ignored_check(index, 0, false))
cc4cb017 1672 ret = 0;
6abe9c13
PX
1673 }
1674
1675 return ret;
1676}
1677
f20935d8 1678int kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data)
313a3dc7 1679{
6abe9c13 1680 return kvm_get_msr_ignored_check(vcpu, index, data, false);
f20935d8
SC
1681}
1682EXPORT_SYMBOL_GPL(kvm_get_msr);
8fe8ab46 1683
f20935d8
SC
1684int kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data)
1685{
6abe9c13 1686 return kvm_set_msr_ignored_check(vcpu, index, data, false);
f20935d8
SC
1687}
1688EXPORT_SYMBOL_GPL(kvm_set_msr);
1689
8b474427 1690static int complete_emulated_rdmsr(struct kvm_vcpu *vcpu)
1ae09954 1691{
8b474427
PB
1692 int err = vcpu->run->msr.error;
1693 if (!err) {
1ae09954
AG
1694 kvm_rax_write(vcpu, (u32)vcpu->run->msr.data);
1695 kvm_rdx_write(vcpu, vcpu->run->msr.data >> 32);
1696 }
1697
b3646477 1698 return static_call(kvm_x86_complete_emulated_msr)(vcpu, err);
1ae09954
AG
1699}
1700
1701static int complete_emulated_wrmsr(struct kvm_vcpu *vcpu)
1702{
b3646477 1703 return static_call(kvm_x86_complete_emulated_msr)(vcpu, vcpu->run->msr.error);
1ae09954
AG
1704}
1705
1706static u64 kvm_msr_reason(int r)
1707{
1708 switch (r) {
cc4cb017 1709 case KVM_MSR_RET_INVALID:
1ae09954 1710 return KVM_MSR_EXIT_REASON_UNKNOWN;
cc4cb017 1711 case KVM_MSR_RET_FILTERED:
1a155254 1712 return KVM_MSR_EXIT_REASON_FILTER;
1ae09954
AG
1713 default:
1714 return KVM_MSR_EXIT_REASON_INVAL;
1715 }
1716}
1717
1718static int kvm_msr_user_space(struct kvm_vcpu *vcpu, u32 index,
1719 u32 exit_reason, u64 data,
1720 int (*completion)(struct kvm_vcpu *vcpu),
1721 int r)
1722{
1723 u64 msr_reason = kvm_msr_reason(r);
1724
1725 /* Check if the user wanted to know about this MSR fault */
1726 if (!(vcpu->kvm->arch.user_space_msr_mask & msr_reason))
1727 return 0;
1728
1729 vcpu->run->exit_reason = exit_reason;
1730 vcpu->run->msr.error = 0;
1731 memset(vcpu->run->msr.pad, 0, sizeof(vcpu->run->msr.pad));
1732 vcpu->run->msr.reason = msr_reason;
1733 vcpu->run->msr.index = index;
1734 vcpu->run->msr.data = data;
1735 vcpu->arch.complete_userspace_io = completion;
1736
1737 return 1;
1738}
1739
1740static int kvm_get_msr_user_space(struct kvm_vcpu *vcpu, u32 index, int r)
1741{
1742 return kvm_msr_user_space(vcpu, index, KVM_EXIT_X86_RDMSR, 0,
1743 complete_emulated_rdmsr, r);
1744}
1745
1746static int kvm_set_msr_user_space(struct kvm_vcpu *vcpu, u32 index, u64 data, int r)
1747{
1748 return kvm_msr_user_space(vcpu, index, KVM_EXIT_X86_WRMSR, data,
1749 complete_emulated_wrmsr, r);
1750}
1751
1edce0a9
SC
1752int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu)
1753{
1754 u32 ecx = kvm_rcx_read(vcpu);
1755 u64 data;
1ae09954
AG
1756 int r;
1757
1758 r = kvm_get_msr(vcpu, ecx, &data);
1edce0a9 1759
1ae09954
AG
1760 /* MSR read failed? See if we should ask user space */
1761 if (r && kvm_get_msr_user_space(vcpu, ecx, r)) {
1762 /* Bounce to user space */
1763 return 0;
1764 }
1765
8b474427
PB
1766 if (!r) {
1767 trace_kvm_msr_read(ecx, data);
1768
1769 kvm_rax_write(vcpu, data & -1u);
1770 kvm_rdx_write(vcpu, (data >> 32) & -1u);
1771 } else {
1edce0a9 1772 trace_kvm_msr_read_ex(ecx);
1edce0a9
SC
1773 }
1774
b3646477 1775 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
1edce0a9
SC
1776}
1777EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr);
1778
1779int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu)
1780{
1781 u32 ecx = kvm_rcx_read(vcpu);
1782 u64 data = kvm_read_edx_eax(vcpu);
1ae09954 1783 int r;
1edce0a9 1784
1ae09954
AG
1785 r = kvm_set_msr(vcpu, ecx, data);
1786
1787 /* MSR write failed? See if we should ask user space */
7dffecaf 1788 if (r && kvm_set_msr_user_space(vcpu, ecx, data, r))
1ae09954
AG
1789 /* Bounce to user space */
1790 return 0;
7dffecaf
ML
1791
1792 /* Signal all other negative errors to userspace */
1793 if (r < 0)
1794 return r;
1ae09954 1795
8b474427
PB
1796 if (!r)
1797 trace_kvm_msr_write(ecx, data);
1798 else
1edce0a9 1799 trace_kvm_msr_write_ex(ecx, data);
1edce0a9 1800
b3646477 1801 return static_call(kvm_x86_complete_emulated_msr)(vcpu, r);
1edce0a9
SC
1802}
1803EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr);
1804
5ff3a351
SC
1805int kvm_emulate_as_nop(struct kvm_vcpu *vcpu)
1806{
1807 return kvm_skip_emulated_instruction(vcpu);
1808}
1809EXPORT_SYMBOL_GPL(kvm_emulate_as_nop);
1810
1811int kvm_emulate_invd(struct kvm_vcpu *vcpu)
1812{
1813 /* Treat an INVD instruction as a NOP and just skip it. */
1814 return kvm_emulate_as_nop(vcpu);
1815}
1816EXPORT_SYMBOL_GPL(kvm_emulate_invd);
1817
1818int kvm_emulate_mwait(struct kvm_vcpu *vcpu)
1819{
1820 pr_warn_once("kvm: MWAIT instruction emulated as NOP!\n");
1821 return kvm_emulate_as_nop(vcpu);
1822}
1823EXPORT_SYMBOL_GPL(kvm_emulate_mwait);
1824
1825int kvm_handle_invalid_op(struct kvm_vcpu *vcpu)
1826{
1827 kvm_queue_exception(vcpu, UD_VECTOR);
1828 return 1;
1829}
1830EXPORT_SYMBOL_GPL(kvm_handle_invalid_op);
1831
1832int kvm_emulate_monitor(struct kvm_vcpu *vcpu)
1833{
1834 pr_warn_once("kvm: MONITOR instruction emulated as NOP!\n");
1835 return kvm_emulate_as_nop(vcpu);
1836}
1837EXPORT_SYMBOL_GPL(kvm_emulate_monitor);
1838
d89d04ab 1839static inline bool kvm_vcpu_exit_request(struct kvm_vcpu *vcpu)
5a9f5443 1840{
4ae7dc97 1841 xfer_to_guest_mode_prepare();
5a9f5443 1842 return vcpu->mode == EXITING_GUEST_MODE || kvm_request_pending(vcpu) ||
72c3c0fe 1843 xfer_to_guest_mode_work_pending();
5a9f5443 1844}
5a9f5443 1845
1e9e2622
WL
1846/*
1847 * The fast path for frequent and performance sensitive wrmsr emulation,
1848 * i.e. the sending of IPI, sending IPI early in the VM-Exit flow reduces
1849 * the latency of virtual IPI by avoiding the expensive bits of transitioning
1850 * from guest to host, e.g. reacquiring KVM's SRCU lock. In contrast to the
1851 * other cases which must be called after interrupts are enabled on the host.
1852 */
1853static int handle_fastpath_set_x2apic_icr_irqoff(struct kvm_vcpu *vcpu, u64 data)
1854{
e1be9ac8
WL
1855 if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(vcpu->arch.apic))
1856 return 1;
1857
1858 if (((data & APIC_SHORT_MASK) == APIC_DEST_NOSHORT) &&
1e9e2622 1859 ((data & APIC_DEST_MASK) == APIC_DEST_PHYSICAL) &&
4064a4c6
WL
1860 ((data & APIC_MODE_MASK) == APIC_DM_FIXED) &&
1861 ((u32)(data >> 32) != X2APIC_BROADCAST)) {
1e9e2622 1862
d5361678
WL
1863 data &= ~(1 << 12);
1864 kvm_apic_send_ipi(vcpu->arch.apic, (u32)data, (u32)(data >> 32));
1e9e2622 1865 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR2, (u32)(data >> 32));
d5361678
WL
1866 kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR, (u32)data);
1867 trace_kvm_apic_write(APIC_ICR, (u32)data);
1868 return 0;
1e9e2622
WL
1869 }
1870
1871 return 1;
1872}
1873
ae95f566
WL
1874static int handle_fastpath_set_tscdeadline(struct kvm_vcpu *vcpu, u64 data)
1875{
1876 if (!kvm_can_use_hv_timer(vcpu))
1877 return 1;
1878
1879 kvm_set_lapic_tscdeadline_msr(vcpu, data);
1880 return 0;
1881}
1882
404d5d7b 1883fastpath_t handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu)
1e9e2622
WL
1884{
1885 u32 msr = kvm_rcx_read(vcpu);
8a1038de 1886 u64 data;
404d5d7b 1887 fastpath_t ret = EXIT_FASTPATH_NONE;
1e9e2622
WL
1888
1889 switch (msr) {
1890 case APIC_BASE_MSR + (APIC_ICR >> 4):
8a1038de 1891 data = kvm_read_edx_eax(vcpu);
404d5d7b
WL
1892 if (!handle_fastpath_set_x2apic_icr_irqoff(vcpu, data)) {
1893 kvm_skip_emulated_instruction(vcpu);
1894 ret = EXIT_FASTPATH_EXIT_HANDLED;
80bc97f2 1895 }
1e9e2622 1896 break;
09141ec0 1897 case MSR_IA32_TSC_DEADLINE:
ae95f566
WL
1898 data = kvm_read_edx_eax(vcpu);
1899 if (!handle_fastpath_set_tscdeadline(vcpu, data)) {
1900 kvm_skip_emulated_instruction(vcpu);
1901 ret = EXIT_FASTPATH_REENTER_GUEST;
1902 }
1903 break;
1e9e2622 1904 default:
404d5d7b 1905 break;
1e9e2622
WL
1906 }
1907
404d5d7b 1908 if (ret != EXIT_FASTPATH_NONE)
1e9e2622 1909 trace_kvm_msr_write(msr, data);
1e9e2622 1910
404d5d7b 1911 return ret;
1e9e2622
WL
1912}
1913EXPORT_SYMBOL_GPL(handle_fastpath_set_msr_irqoff);
1914
f20935d8
SC
1915/*
1916 * Adapt set_msr() to msr_io()'s calling convention
1917 */
1918static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1919{
6abe9c13 1920 return kvm_get_msr_ignored_check(vcpu, index, data, true);
f20935d8
SC
1921}
1922
1923static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
1924{
6abe9c13 1925 return kvm_set_msr_ignored_check(vcpu, index, *data, true);
313a3dc7
CO
1926}
1927
16e8d74d 1928#ifdef CONFIG_X86_64
53fafdbb
MT
1929struct pvclock_clock {
1930 int vclock_mode;
1931 u64 cycle_last;
1932 u64 mask;
1933 u32 mult;
1934 u32 shift;
917f9475
PB
1935 u64 base_cycles;
1936 u64 offset;
53fafdbb
MT
1937};
1938
16e8d74d
MT
1939struct pvclock_gtod_data {
1940 seqcount_t seq;
1941
53fafdbb
MT
1942 struct pvclock_clock clock; /* extract of a clocksource struct */
1943 struct pvclock_clock raw_clock; /* extract of a clocksource struct */
16e8d74d 1944
917f9475 1945 ktime_t offs_boot;
55dd00a7 1946 u64 wall_time_sec;
16e8d74d
MT
1947};
1948
1949static struct pvclock_gtod_data pvclock_gtod_data;
1950
1951static void update_pvclock_gtod(struct timekeeper *tk)
1952{
1953 struct pvclock_gtod_data *vdata = &pvclock_gtod_data;
1954
1955 write_seqcount_begin(&vdata->seq);
1956
1957 /* copy pvclock gtod data */
b95a8a27 1958 vdata->clock.vclock_mode = tk->tkr_mono.clock->vdso_clock_mode;
876e7881
PZ
1959 vdata->clock.cycle_last = tk->tkr_mono.cycle_last;
1960 vdata->clock.mask = tk->tkr_mono.mask;
1961 vdata->clock.mult = tk->tkr_mono.mult;
1962 vdata->clock.shift = tk->tkr_mono.shift;
917f9475
PB
1963 vdata->clock.base_cycles = tk->tkr_mono.xtime_nsec;
1964 vdata->clock.offset = tk->tkr_mono.base;
16e8d74d 1965
b95a8a27 1966 vdata->raw_clock.vclock_mode = tk->tkr_raw.clock->vdso_clock_mode;
53fafdbb
MT
1967 vdata->raw_clock.cycle_last = tk->tkr_raw.cycle_last;
1968 vdata->raw_clock.mask = tk->tkr_raw.mask;
1969 vdata->raw_clock.mult = tk->tkr_raw.mult;
1970 vdata->raw_clock.shift = tk->tkr_raw.shift;
917f9475
PB
1971 vdata->raw_clock.base_cycles = tk->tkr_raw.xtime_nsec;
1972 vdata->raw_clock.offset = tk->tkr_raw.base;
16e8d74d 1973
55dd00a7
MT
1974 vdata->wall_time_sec = tk->xtime_sec;
1975
917f9475 1976 vdata->offs_boot = tk->offs_boot;
53fafdbb 1977
16e8d74d
MT
1978 write_seqcount_end(&vdata->seq);
1979}
8171cd68
PB
1980
1981static s64 get_kvmclock_base_ns(void)
1982{
1983 /* Count up from boot time, but with the frequency of the raw clock. */
1984 return ktime_to_ns(ktime_add(ktime_get_raw(), pvclock_gtod_data.offs_boot));
1985}
1986#else
1987static s64 get_kvmclock_base_ns(void)
1988{
1989 /* Master clock not used, so we can just use CLOCK_BOOTTIME. */
1990 return ktime_get_boottime_ns();
1991}
16e8d74d
MT
1992#endif
1993
629b5348 1994void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock, int sec_hi_ofs)
18068523 1995{
9ed3c444
AK
1996 int version;
1997 int r;
50d0a0f9 1998 struct pvclock_wall_clock wc;
629b5348 1999 u32 wc_sec_hi;
8171cd68 2000 u64 wall_nsec;
18068523
GOC
2001
2002 if (!wall_clock)
2003 return;
2004
9ed3c444
AK
2005 r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version));
2006 if (r)
2007 return;
2008
2009 if (version & 1)
2010 ++version; /* first time write, random junk */
2011
2012 ++version;
18068523 2013
1dab1345
NK
2014 if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version)))
2015 return;
18068523 2016
50d0a0f9
GH
2017 /*
2018 * The guest calculates current wall clock time by adding
34c238a1 2019 * system time (updated by kvm_guest_time_update below) to the
8171cd68 2020 * wall clock specified here. We do the reverse here.
50d0a0f9 2021 */
8171cd68 2022 wall_nsec = ktime_get_real_ns() - get_kvmclock_ns(kvm);
50d0a0f9 2023
8171cd68
PB
2024 wc.nsec = do_div(wall_nsec, 1000000000);
2025 wc.sec = (u32)wall_nsec; /* overflow in 2106 guest time */
50d0a0f9 2026 wc.version = version;
18068523
GOC
2027
2028 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
2029
629b5348
JM
2030 if (sec_hi_ofs) {
2031 wc_sec_hi = wall_nsec >> 32;
2032 kvm_write_guest(kvm, wall_clock + sec_hi_ofs,
2033 &wc_sec_hi, sizeof(wc_sec_hi));
2034 }
2035
18068523
GOC
2036 version++;
2037 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
18068523
GOC
2038}
2039
5b9bb0eb
OU
2040static void kvm_write_system_time(struct kvm_vcpu *vcpu, gpa_t system_time,
2041 bool old_msr, bool host_initiated)
2042{
2043 struct kvm_arch *ka = &vcpu->kvm->arch;
2044
2045 if (vcpu->vcpu_id == 0 && !host_initiated) {
1e293d1a 2046 if (ka->boot_vcpu_runs_old_kvmclock != old_msr)
5b9bb0eb
OU
2047 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2048
2049 ka->boot_vcpu_runs_old_kvmclock = old_msr;
2050 }
2051
2052 vcpu->arch.time = system_time;
2053 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
2054
2055 /* we verify if the enable bit is set... */
2056 vcpu->arch.pv_time_enabled = false;
2057 if (!(system_time & 1))
2058 return;
2059
2060 if (!kvm_gfn_to_hva_cache_init(vcpu->kvm,
2061 &vcpu->arch.pv_time, system_time & ~1ULL,
2062 sizeof(struct pvclock_vcpu_time_info)))
2063 vcpu->arch.pv_time_enabled = true;
2064
2065 return;
2066}
2067
50d0a0f9
GH
2068static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
2069{
b51012de
PB
2070 do_shl32_div32(dividend, divisor);
2071 return dividend;
50d0a0f9
GH
2072}
2073
3ae13faa 2074static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz,
5f4e3f88 2075 s8 *pshift, u32 *pmultiplier)
50d0a0f9 2076{
5f4e3f88 2077 uint64_t scaled64;
50d0a0f9
GH
2078 int32_t shift = 0;
2079 uint64_t tps64;
2080 uint32_t tps32;
2081
3ae13faa
PB
2082 tps64 = base_hz;
2083 scaled64 = scaled_hz;
50933623 2084 while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) {
50d0a0f9
GH
2085 tps64 >>= 1;
2086 shift--;
2087 }
2088
2089 tps32 = (uint32_t)tps64;
50933623
JK
2090 while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) {
2091 if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000)
5f4e3f88
ZA
2092 scaled64 >>= 1;
2093 else
2094 tps32 <<= 1;
50d0a0f9
GH
2095 shift++;
2096 }
2097
5f4e3f88
ZA
2098 *pshift = shift;
2099 *pmultiplier = div_frac(scaled64, tps32);
50d0a0f9
GH
2100}
2101
d828199e 2102#ifdef CONFIG_X86_64
16e8d74d 2103static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
d828199e 2104#endif
16e8d74d 2105
c8076604 2106static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
69b0049a 2107static unsigned long max_tsc_khz;
c8076604 2108
cc578287 2109static u32 adjust_tsc_khz(u32 khz, s32 ppm)
1e993611 2110{
cc578287
ZA
2111 u64 v = (u64)khz * (1000000 + ppm);
2112 do_div(v, 1000000);
2113 return v;
1e993611
JR
2114}
2115
381d585c
HZ
2116static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
2117{
2118 u64 ratio;
2119
2120 /* Guest TSC same frequency as host TSC? */
2121 if (!scale) {
2122 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
2123 return 0;
2124 }
2125
2126 /* TSC scaling supported? */
2127 if (!kvm_has_tsc_control) {
2128 if (user_tsc_khz > tsc_khz) {
2129 vcpu->arch.tsc_catchup = 1;
2130 vcpu->arch.tsc_always_catchup = 1;
2131 return 0;
2132 } else {
3f16a5c3 2133 pr_warn_ratelimited("user requested TSC rate below hardware speed\n");
381d585c
HZ
2134 return -1;
2135 }
2136 }
2137
2138 /* TSC scaling required - calculate ratio */
2139 ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits,
2140 user_tsc_khz, tsc_khz);
2141
2142 if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) {
3f16a5c3
PB
2143 pr_warn_ratelimited("Invalid TSC scaling ratio - virtual-tsc-khz=%u\n",
2144 user_tsc_khz);
381d585c
HZ
2145 return -1;
2146 }
2147
2148 vcpu->arch.tsc_scaling_ratio = ratio;
2149 return 0;
2150}
2151
4941b8cb 2152static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
759379dd 2153{
cc578287
ZA
2154 u32 thresh_lo, thresh_hi;
2155 int use_scaling = 0;
217fc9cf 2156
03ba32ca 2157 /* tsc_khz can be zero if TSC calibration fails */
4941b8cb 2158 if (user_tsc_khz == 0) {
ad721883
HZ
2159 /* set tsc_scaling_ratio to a safe value */
2160 vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio;
381d585c 2161 return -1;
ad721883 2162 }
03ba32ca 2163
c285545f 2164 /* Compute a scale to convert nanoseconds in TSC cycles */
3ae13faa 2165 kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC,
cc578287
ZA
2166 &vcpu->arch.virtual_tsc_shift,
2167 &vcpu->arch.virtual_tsc_mult);
4941b8cb 2168 vcpu->arch.virtual_tsc_khz = user_tsc_khz;
cc578287
ZA
2169
2170 /*
2171 * Compute the variation in TSC rate which is acceptable
2172 * within the range of tolerance and decide if the
2173 * rate being applied is within that bounds of the hardware
2174 * rate. If so, no scaling or compensation need be done.
2175 */
2176 thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm);
2177 thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm);
4941b8cb
PB
2178 if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) {
2179 pr_debug("kvm: requested TSC rate %u falls outside tolerance [%u,%u]\n", user_tsc_khz, thresh_lo, thresh_hi);
cc578287
ZA
2180 use_scaling = 1;
2181 }
4941b8cb 2182 return set_tsc_khz(vcpu, user_tsc_khz, use_scaling);
c285545f
ZA
2183}
2184
2185static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns)
2186{
e26101b1 2187 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec,
cc578287
ZA
2188 vcpu->arch.virtual_tsc_mult,
2189 vcpu->arch.virtual_tsc_shift);
e26101b1 2190 tsc += vcpu->arch.this_tsc_write;
c285545f
ZA
2191 return tsc;
2192}
2193
b0c39dc6
VK
2194static inline int gtod_is_based_on_tsc(int mode)
2195{
b95a8a27 2196 return mode == VDSO_CLOCKMODE_TSC || mode == VDSO_CLOCKMODE_HVCLOCK;
b0c39dc6
VK
2197}
2198
69b0049a 2199static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu)
b48aa97e
MT
2200{
2201#ifdef CONFIG_X86_64
2202 bool vcpus_matched;
b48aa97e
MT
2203 struct kvm_arch *ka = &vcpu->kvm->arch;
2204 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2205
2206 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2207 atomic_read(&vcpu->kvm->online_vcpus));
2208
7f187922
MT
2209 /*
2210 * Once the masterclock is enabled, always perform request in
2211 * order to update it.
2212 *
2213 * In order to enable masterclock, the host clocksource must be TSC
2214 * and the vcpus need to have matched TSCs. When that happens,
2215 * perform request to enable masterclock.
2216 */
2217 if (ka->use_master_clock ||
b0c39dc6 2218 (gtod_is_based_on_tsc(gtod->clock.vclock_mode) && vcpus_matched))
b48aa97e
MT
2219 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
2220
2221 trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc,
2222 atomic_read(&vcpu->kvm->online_vcpus),
2223 ka->use_master_clock, gtod->clock.vclock_mode);
2224#endif
2225}
2226
35181e86
HZ
2227/*
2228 * Multiply tsc by a fixed point number represented by ratio.
2229 *
2230 * The most significant 64-N bits (mult) of ratio represent the
2231 * integral part of the fixed point number; the remaining N bits
2232 * (frac) represent the fractional part, ie. ratio represents a fixed
2233 * point number (mult + frac * 2^(-N)).
2234 *
2235 * N equals to kvm_tsc_scaling_ratio_frac_bits.
2236 */
2237static inline u64 __scale_tsc(u64 ratio, u64 tsc)
2238{
2239 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits);
2240}
2241
2242u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc)
2243{
2244 u64 _tsc = tsc;
2245 u64 ratio = vcpu->arch.tsc_scaling_ratio;
2246
2247 if (ratio != kvm_default_tsc_scaling_ratio)
2248 _tsc = __scale_tsc(ratio, tsc);
2249
2250 return _tsc;
2251}
2252EXPORT_SYMBOL_GPL(kvm_scale_tsc);
2253
07c1419a
HZ
2254static u64 kvm_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
2255{
2256 u64 tsc;
2257
2258 tsc = kvm_scale_tsc(vcpu, rdtsc());
2259
2260 return target_tsc - tsc;
2261}
2262
4ba76538
HZ
2263u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
2264{
56ba77a4 2265 return vcpu->arch.l1_tsc_offset + kvm_scale_tsc(vcpu, host_tsc);
4ba76538
HZ
2266}
2267EXPORT_SYMBOL_GPL(kvm_read_l1_tsc);
2268
a545ab6a
LC
2269static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
2270{
56ba77a4 2271 vcpu->arch.l1_tsc_offset = offset;
b3646477 2272 vcpu->arch.tsc_offset = static_call(kvm_x86_write_l1_tsc_offset)(vcpu, offset);
a545ab6a
LC
2273}
2274
b0c39dc6
VK
2275static inline bool kvm_check_tsc_unstable(void)
2276{
2277#ifdef CONFIG_X86_64
2278 /*
2279 * TSC is marked unstable when we're running on Hyper-V,
2280 * 'TSC page' clocksource is good.
2281 */
b95a8a27 2282 if (pvclock_gtod_data.clock.vclock_mode == VDSO_CLOCKMODE_HVCLOCK)
b0c39dc6
VK
2283 return false;
2284#endif
2285 return check_tsc_unstable();
2286}
2287
0c899c25 2288static void kvm_synchronize_tsc(struct kvm_vcpu *vcpu, u64 data)
99e3e30a
ZA
2289{
2290 struct kvm *kvm = vcpu->kvm;
f38e098f 2291 u64 offset, ns, elapsed;
99e3e30a 2292 unsigned long flags;
b48aa97e 2293 bool matched;
0d3da0d2 2294 bool already_matched;
c5e8ec8e 2295 bool synchronizing = false;
99e3e30a 2296
038f8c11 2297 raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags);
07c1419a 2298 offset = kvm_compute_tsc_offset(vcpu, data);
8171cd68 2299 ns = get_kvmclock_base_ns();
f38e098f 2300 elapsed = ns - kvm->arch.last_tsc_nsec;
5d3cb0f6 2301
03ba32ca 2302 if (vcpu->arch.virtual_tsc_khz) {
0c899c25 2303 if (data == 0) {
bd8fab39
DP
2304 /*
2305 * detection of vcpu initialization -- need to sync
2306 * with other vCPUs. This particularly helps to keep
2307 * kvm_clock stable after CPU hotplug
2308 */
2309 synchronizing = true;
2310 } else {
2311 u64 tsc_exp = kvm->arch.last_tsc_write +
2312 nsec_to_cycles(vcpu, elapsed);
2313 u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL;
2314 /*
2315 * Special case: TSC write with a small delta (1 second)
2316 * of virtual cycle time against real time is
2317 * interpreted as an attempt to synchronize the CPU.
2318 */
2319 synchronizing = data < tsc_exp + tsc_hz &&
2320 data + tsc_hz > tsc_exp;
2321 }
c5e8ec8e 2322 }
f38e098f
ZA
2323
2324 /*
5d3cb0f6
ZA
2325 * For a reliable TSC, we can match TSC offsets, and for an unstable
2326 * TSC, we add elapsed time in this computation. We could let the
2327 * compensation code attempt to catch up if we fall behind, but
2328 * it's better to try to match offsets from the beginning.
2329 */
c5e8ec8e 2330 if (synchronizing &&
5d3cb0f6 2331 vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) {
b0c39dc6 2332 if (!kvm_check_tsc_unstable()) {
e26101b1 2333 offset = kvm->arch.cur_tsc_offset;
f38e098f 2334 } else {
857e4099 2335 u64 delta = nsec_to_cycles(vcpu, elapsed);
5d3cb0f6 2336 data += delta;
07c1419a 2337 offset = kvm_compute_tsc_offset(vcpu, data);
f38e098f 2338 }
b48aa97e 2339 matched = true;
0d3da0d2 2340 already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation);
e26101b1
ZA
2341 } else {
2342 /*
2343 * We split periods of matched TSC writes into generations.
2344 * For each generation, we track the original measured
2345 * nanosecond time, offset, and write, so if TSCs are in
2346 * sync, we can match exact offset, and if not, we can match
4a969980 2347 * exact software computation in compute_guest_tsc()
e26101b1
ZA
2348 *
2349 * These values are tracked in kvm->arch.cur_xxx variables.
2350 */
2351 kvm->arch.cur_tsc_generation++;
2352 kvm->arch.cur_tsc_nsec = ns;
2353 kvm->arch.cur_tsc_write = data;
2354 kvm->arch.cur_tsc_offset = offset;
b48aa97e 2355 matched = false;
f38e098f 2356 }
e26101b1
ZA
2357
2358 /*
2359 * We also track th most recent recorded KHZ, write and time to
2360 * allow the matching interval to be extended at each write.
2361 */
f38e098f
ZA
2362 kvm->arch.last_tsc_nsec = ns;
2363 kvm->arch.last_tsc_write = data;
5d3cb0f6 2364 kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz;
99e3e30a 2365
b183aa58 2366 vcpu->arch.last_guest_tsc = data;
e26101b1
ZA
2367
2368 /* Keep track of which generation this VCPU has synchronized to */
2369 vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation;
2370 vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec;
2371 vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write;
2372
a545ab6a 2373 kvm_vcpu_write_tsc_offset(vcpu, offset);
e26101b1 2374 raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags);
b48aa97e 2375
a83829f5 2376 spin_lock_irqsave(&kvm->arch.pvclock_gtod_sync_lock, flags);
0d3da0d2 2377 if (!matched) {
b48aa97e 2378 kvm->arch.nr_vcpus_matched_tsc = 0;
0d3da0d2
TG
2379 } else if (!already_matched) {
2380 kvm->arch.nr_vcpus_matched_tsc++;
2381 }
b48aa97e
MT
2382
2383 kvm_track_tsc_matching(vcpu);
a83829f5 2384 spin_unlock_irqrestore(&kvm->arch.pvclock_gtod_sync_lock, flags);
99e3e30a 2385}
e26101b1 2386
58ea6767
HZ
2387static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu,
2388 s64 adjustment)
2389{
56ba77a4 2390 u64 tsc_offset = vcpu->arch.l1_tsc_offset;
326e7425 2391 kvm_vcpu_write_tsc_offset(vcpu, tsc_offset + adjustment);
58ea6767
HZ
2392}
2393
2394static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment)
2395{
2396 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio)
2397 WARN_ON(adjustment < 0);
2398 adjustment = kvm_scale_tsc(vcpu, (u64) adjustment);
ea26e4ec 2399 adjust_tsc_offset_guest(vcpu, adjustment);
58ea6767
HZ
2400}
2401
d828199e
MT
2402#ifdef CONFIG_X86_64
2403
a5a1d1c2 2404static u64 read_tsc(void)
d828199e 2405{
a5a1d1c2 2406 u64 ret = (u64)rdtsc_ordered();
03b9730b 2407 u64 last = pvclock_gtod_data.clock.cycle_last;
d828199e
MT
2408
2409 if (likely(ret >= last))
2410 return ret;
2411
2412 /*
2413 * GCC likes to generate cmov here, but this branch is extremely
6a6256f9 2414 * predictable (it's just a function of time and the likely is
d828199e
MT
2415 * very likely) and there's a data dependence, so force GCC
2416 * to generate a branch instead. I don't barrier() because
2417 * we don't actually need a barrier, and if this function
2418 * ever gets inlined it will generate worse code.
2419 */
2420 asm volatile ("");
2421 return last;
2422}
2423
53fafdbb
MT
2424static inline u64 vgettsc(struct pvclock_clock *clock, u64 *tsc_timestamp,
2425 int *mode)
d828199e
MT
2426{
2427 long v;
b0c39dc6
VK
2428 u64 tsc_pg_val;
2429
53fafdbb 2430 switch (clock->vclock_mode) {
b95a8a27 2431 case VDSO_CLOCKMODE_HVCLOCK:
b0c39dc6
VK
2432 tsc_pg_val = hv_read_tsc_page_tsc(hv_get_tsc_page(),
2433 tsc_timestamp);
2434 if (tsc_pg_val != U64_MAX) {
2435 /* TSC page valid */
b95a8a27 2436 *mode = VDSO_CLOCKMODE_HVCLOCK;
53fafdbb
MT
2437 v = (tsc_pg_val - clock->cycle_last) &
2438 clock->mask;
b0c39dc6
VK
2439 } else {
2440 /* TSC page invalid */
b95a8a27 2441 *mode = VDSO_CLOCKMODE_NONE;
b0c39dc6
VK
2442 }
2443 break;
b95a8a27
TG
2444 case VDSO_CLOCKMODE_TSC:
2445 *mode = VDSO_CLOCKMODE_TSC;
b0c39dc6 2446 *tsc_timestamp = read_tsc();
53fafdbb
MT
2447 v = (*tsc_timestamp - clock->cycle_last) &
2448 clock->mask;
b0c39dc6
VK
2449 break;
2450 default:
b95a8a27 2451 *mode = VDSO_CLOCKMODE_NONE;
b0c39dc6 2452 }
d828199e 2453
b95a8a27 2454 if (*mode == VDSO_CLOCKMODE_NONE)
b0c39dc6 2455 *tsc_timestamp = v = 0;
d828199e 2456
53fafdbb 2457 return v * clock->mult;
d828199e
MT
2458}
2459
53fafdbb 2460static int do_monotonic_raw(s64 *t, u64 *tsc_timestamp)
d828199e 2461{
cbcf2dd3 2462 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
d828199e 2463 unsigned long seq;
d828199e 2464 int mode;
cbcf2dd3 2465 u64 ns;
d828199e 2466
d828199e
MT
2467 do {
2468 seq = read_seqcount_begin(&gtod->seq);
917f9475 2469 ns = gtod->raw_clock.base_cycles;
53fafdbb 2470 ns += vgettsc(&gtod->raw_clock, tsc_timestamp, &mode);
917f9475
PB
2471 ns >>= gtod->raw_clock.shift;
2472 ns += ktime_to_ns(ktime_add(gtod->raw_clock.offset, gtod->offs_boot));
d828199e 2473 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
cbcf2dd3 2474 *t = ns;
d828199e
MT
2475
2476 return mode;
2477}
2478
899a31f5 2479static int do_realtime(struct timespec64 *ts, u64 *tsc_timestamp)
55dd00a7
MT
2480{
2481 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
2482 unsigned long seq;
2483 int mode;
2484 u64 ns;
2485
2486 do {
2487 seq = read_seqcount_begin(&gtod->seq);
55dd00a7 2488 ts->tv_sec = gtod->wall_time_sec;
917f9475 2489 ns = gtod->clock.base_cycles;
53fafdbb 2490 ns += vgettsc(&gtod->clock, tsc_timestamp, &mode);
55dd00a7
MT
2491 ns >>= gtod->clock.shift;
2492 } while (unlikely(read_seqcount_retry(&gtod->seq, seq)));
2493
2494 ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns);
2495 ts->tv_nsec = ns;
2496
2497 return mode;
2498}
2499
b0c39dc6
VK
2500/* returns true if host is using TSC based clocksource */
2501static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *tsc_timestamp)
d828199e 2502{
d828199e 2503 /* checked again under seqlock below */
b0c39dc6 2504 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
d828199e
MT
2505 return false;
2506
53fafdbb 2507 return gtod_is_based_on_tsc(do_monotonic_raw(kernel_ns,
b0c39dc6 2508 tsc_timestamp));
d828199e 2509}
55dd00a7 2510
b0c39dc6 2511/* returns true if host is using TSC based clocksource */
899a31f5 2512static bool kvm_get_walltime_and_clockread(struct timespec64 *ts,
b0c39dc6 2513 u64 *tsc_timestamp)
55dd00a7
MT
2514{
2515 /* checked again under seqlock below */
b0c39dc6 2516 if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode))
55dd00a7
MT
2517 return false;
2518
b0c39dc6 2519 return gtod_is_based_on_tsc(do_realtime(ts, tsc_timestamp));
55dd00a7 2520}
d828199e
MT
2521#endif
2522
2523/*
2524 *
b48aa97e
MT
2525 * Assuming a stable TSC across physical CPUS, and a stable TSC
2526 * across virtual CPUs, the following condition is possible.
2527 * Each numbered line represents an event visible to both
d828199e
MT
2528 * CPUs at the next numbered event.
2529 *
2530 * "timespecX" represents host monotonic time. "tscX" represents
2531 * RDTSC value.
2532 *
2533 * VCPU0 on CPU0 | VCPU1 on CPU1
2534 *
2535 * 1. read timespec0,tsc0
2536 * 2. | timespec1 = timespec0 + N
2537 * | tsc1 = tsc0 + M
2538 * 3. transition to guest | transition to guest
2539 * 4. ret0 = timespec0 + (rdtsc - tsc0) |
2540 * 5. | ret1 = timespec1 + (rdtsc - tsc1)
2541 * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M))
2542 *
2543 * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity:
2544 *
2545 * - ret0 < ret1
2546 * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M))
2547 * ...
2548 * - 0 < N - M => M < N
2549 *
2550 * That is, when timespec0 != timespec1, M < N. Unfortunately that is not
2551 * always the case (the difference between two distinct xtime instances
2552 * might be smaller then the difference between corresponding TSC reads,
2553 * when updating guest vcpus pvclock areas).
2554 *
2555 * To avoid that problem, do not allow visibility of distinct
2556 * system_timestamp/tsc_timestamp values simultaneously: use a master
2557 * copy of host monotonic time values. Update that master copy
2558 * in lockstep.
2559 *
b48aa97e 2560 * Rely on synchronization of host TSCs and guest TSCs for monotonicity.
d828199e
MT
2561 *
2562 */
2563
2564static void pvclock_update_vm_gtod_copy(struct kvm *kvm)
2565{
2566#ifdef CONFIG_X86_64
2567 struct kvm_arch *ka = &kvm->arch;
2568 int vclock_mode;
b48aa97e
MT
2569 bool host_tsc_clocksource, vcpus_matched;
2570
2571 vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 ==
2572 atomic_read(&kvm->online_vcpus));
d828199e
MT
2573
2574 /*
2575 * If the host uses TSC clock, then passthrough TSC as stable
2576 * to the guest.
2577 */
b48aa97e 2578 host_tsc_clocksource = kvm_get_time_and_clockread(
d828199e
MT
2579 &ka->master_kernel_ns,
2580 &ka->master_cycle_now);
2581
16a96021 2582 ka->use_master_clock = host_tsc_clocksource && vcpus_matched
a826faf1 2583 && !ka->backwards_tsc_observed
54750f2c 2584 && !ka->boot_vcpu_runs_old_kvmclock;
b48aa97e 2585
d828199e
MT
2586 if (ka->use_master_clock)
2587 atomic_set(&kvm_guest_has_master_clock, 1);
2588
2589 vclock_mode = pvclock_gtod_data.clock.vclock_mode;
b48aa97e
MT
2590 trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode,
2591 vcpus_matched);
d828199e
MT
2592#endif
2593}
2594
2860c4b1
PB
2595void kvm_make_mclock_inprogress_request(struct kvm *kvm)
2596{
2597 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
2598}
2599
2e762ff7
MT
2600static void kvm_gen_update_masterclock(struct kvm *kvm)
2601{
2602#ifdef CONFIG_X86_64
2603 int i;
2604 struct kvm_vcpu *vcpu;
2605 struct kvm_arch *ka = &kvm->arch;
a83829f5 2606 unsigned long flags;
2e762ff7 2607
e880c6ea
VK
2608 kvm_hv_invalidate_tsc_page(kvm);
2609
2e762ff7 2610 kvm_make_mclock_inprogress_request(kvm);
c2c647f9 2611
2e762ff7 2612 /* no guest entries from this point */
a83829f5 2613 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
2e762ff7 2614 pvclock_update_vm_gtod_copy(kvm);
a83829f5 2615 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
2e762ff7
MT
2616
2617 kvm_for_each_vcpu(i, vcpu, kvm)
105b21bb 2618 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
2e762ff7
MT
2619
2620 /* guest entries allowed */
2621 kvm_for_each_vcpu(i, vcpu, kvm)
72875d8a 2622 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
2e762ff7
MT
2623#endif
2624}
2625
e891a32e 2626u64 get_kvmclock_ns(struct kvm *kvm)
108b249c 2627{
108b249c 2628 struct kvm_arch *ka = &kvm->arch;
8b953440 2629 struct pvclock_vcpu_time_info hv_clock;
a83829f5 2630 unsigned long flags;
e2c2206a 2631 u64 ret;
108b249c 2632
a83829f5 2633 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
8b953440 2634 if (!ka->use_master_clock) {
a83829f5 2635 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
8171cd68 2636 return get_kvmclock_base_ns() + ka->kvmclock_offset;
108b249c
PB
2637 }
2638
8b953440
PB
2639 hv_clock.tsc_timestamp = ka->master_cycle_now;
2640 hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset;
a83829f5 2641 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
8b953440 2642
e2c2206a
WL
2643 /* both __this_cpu_read() and rdtsc() should be on the same cpu */
2644 get_cpu();
2645
e70b57a6
WL
2646 if (__this_cpu_read(cpu_tsc_khz)) {
2647 kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL,
2648 &hv_clock.tsc_shift,
2649 &hv_clock.tsc_to_system_mul);
2650 ret = __pvclock_read_cycles(&hv_clock, rdtsc());
2651 } else
8171cd68 2652 ret = get_kvmclock_base_ns() + ka->kvmclock_offset;
e2c2206a
WL
2653
2654 put_cpu();
2655
2656 return ret;
108b249c
PB
2657}
2658
aa096aa0
JM
2659static void kvm_setup_pvclock_page(struct kvm_vcpu *v,
2660 struct gfn_to_hva_cache *cache,
2661 unsigned int offset)
0d6dd2ff
PB
2662{
2663 struct kvm_vcpu_arch *vcpu = &v->arch;
2664 struct pvclock_vcpu_time_info guest_hv_clock;
2665
aa096aa0
JM
2666 if (unlikely(kvm_read_guest_offset_cached(v->kvm, cache,
2667 &guest_hv_clock, offset, sizeof(guest_hv_clock))))
0d6dd2ff
PB
2668 return;
2669
2670 /* This VCPU is paused, but it's legal for a guest to read another
2671 * VCPU's kvmclock, so we really have to follow the specification where
2672 * it says that version is odd if data is being modified, and even after
2673 * it is consistent.
2674 *
2675 * Version field updates must be kept separate. This is because
2676 * kvm_write_guest_cached might use a "rep movs" instruction, and
2677 * writes within a string instruction are weakly ordered. So there
2678 * are three writes overall.
2679 *
2680 * As a small optimization, only write the version field in the first
2681 * and third write. The vcpu->pv_time cache is still valid, because the
2682 * version field is the first in the struct.
2683 */
2684 BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0);
2685
51c4b8bb
LA
2686 if (guest_hv_clock.version & 1)
2687 ++guest_hv_clock.version; /* first time write, random junk */
2688
0d6dd2ff 2689 vcpu->hv_clock.version = guest_hv_clock.version + 1;
aa096aa0
JM
2690 kvm_write_guest_offset_cached(v->kvm, cache,
2691 &vcpu->hv_clock, offset,
2692 sizeof(vcpu->hv_clock.version));
0d6dd2ff
PB
2693
2694 smp_wmb();
2695
2696 /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */
2697 vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED);
2698
2699 if (vcpu->pvclock_set_guest_stopped_request) {
2700 vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED;
2701 vcpu->pvclock_set_guest_stopped_request = false;
2702 }
2703
2704 trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock);
2705
aa096aa0
JM
2706 kvm_write_guest_offset_cached(v->kvm, cache,
2707 &vcpu->hv_clock, offset,
2708 sizeof(vcpu->hv_clock));
0d6dd2ff
PB
2709
2710 smp_wmb();
2711
2712 vcpu->hv_clock.version++;
aa096aa0
JM
2713 kvm_write_guest_offset_cached(v->kvm, cache,
2714 &vcpu->hv_clock, offset,
2715 sizeof(vcpu->hv_clock.version));
0d6dd2ff
PB
2716}
2717
34c238a1 2718static int kvm_guest_time_update(struct kvm_vcpu *v)
18068523 2719{
78db6a50 2720 unsigned long flags, tgt_tsc_khz;
18068523 2721 struct kvm_vcpu_arch *vcpu = &v->arch;
d828199e 2722 struct kvm_arch *ka = &v->kvm->arch;
f25e656d 2723 s64 kernel_ns;
d828199e 2724 u64 tsc_timestamp, host_tsc;
51d59c6b 2725 u8 pvclock_flags;
d828199e
MT
2726 bool use_master_clock;
2727
2728 kernel_ns = 0;
2729 host_tsc = 0;
18068523 2730
d828199e
MT
2731 /*
2732 * If the host uses TSC clock, then passthrough TSC as stable
2733 * to the guest.
2734 */
a83829f5 2735 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
d828199e
MT
2736 use_master_clock = ka->use_master_clock;
2737 if (use_master_clock) {
2738 host_tsc = ka->master_cycle_now;
2739 kernel_ns = ka->master_kernel_ns;
2740 }
a83829f5 2741 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
c09664bb
MT
2742
2743 /* Keep irq disabled to prevent changes to the clock */
2744 local_irq_save(flags);
78db6a50
PB
2745 tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz);
2746 if (unlikely(tgt_tsc_khz == 0)) {
c09664bb
MT
2747 local_irq_restore(flags);
2748 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
2749 return 1;
2750 }
d828199e 2751 if (!use_master_clock) {
4ea1636b 2752 host_tsc = rdtsc();
8171cd68 2753 kernel_ns = get_kvmclock_base_ns();
d828199e
MT
2754 }
2755
4ba76538 2756 tsc_timestamp = kvm_read_l1_tsc(v, host_tsc);
d828199e 2757
c285545f
ZA
2758 /*
2759 * We may have to catch up the TSC to match elapsed wall clock
2760 * time for two reasons, even if kvmclock is used.
2761 * 1) CPU could have been running below the maximum TSC rate
2762 * 2) Broken TSC compensation resets the base at each VCPU
2763 * entry to avoid unknown leaps of TSC even when running
2764 * again on the same CPU. This may cause apparent elapsed
2765 * time to disappear, and the guest to stand still or run
2766 * very slowly.
2767 */
2768 if (vcpu->tsc_catchup) {
2769 u64 tsc = compute_guest_tsc(v, kernel_ns);
2770 if (tsc > tsc_timestamp) {
f1e2b260 2771 adjust_tsc_offset_guest(v, tsc - tsc_timestamp);
c285545f
ZA
2772 tsc_timestamp = tsc;
2773 }
50d0a0f9
GH
2774 }
2775
18068523
GOC
2776 local_irq_restore(flags);
2777
0d6dd2ff 2778 /* With all the info we got, fill in the values */
18068523 2779
78db6a50
PB
2780 if (kvm_has_tsc_control)
2781 tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz);
2782
2783 if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) {
3ae13faa 2784 kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL,
5f4e3f88
ZA
2785 &vcpu->hv_clock.tsc_shift,
2786 &vcpu->hv_clock.tsc_to_system_mul);
78db6a50 2787 vcpu->hw_tsc_khz = tgt_tsc_khz;
8cfdc000
ZA
2788 }
2789
1d5f066e 2790 vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
759379dd 2791 vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
28e4639a 2792 vcpu->last_guest_tsc = tsc_timestamp;
51d59c6b 2793
d828199e 2794 /* If the host uses TSC clocksource, then it is stable */
0d6dd2ff 2795 pvclock_flags = 0;
d828199e
MT
2796 if (use_master_clock)
2797 pvclock_flags |= PVCLOCK_TSC_STABLE_BIT;
2798
78c0337a
MT
2799 vcpu->hv_clock.flags = pvclock_flags;
2800
095cf55d 2801 if (vcpu->pv_time_enabled)
aa096aa0
JM
2802 kvm_setup_pvclock_page(v, &vcpu->pv_time, 0);
2803 if (vcpu->xen.vcpu_info_set)
2804 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_info_cache,
2805 offsetof(struct compat_vcpu_info, time));
f2340cd9
JM
2806 if (vcpu->xen.vcpu_time_info_set)
2807 kvm_setup_pvclock_page(v, &vcpu->xen.vcpu_time_info_cache, 0);
095cf55d
PB
2808 if (v == kvm_get_vcpu(v->kvm, 0))
2809 kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock);
8cfdc000 2810 return 0;
c8076604
GH
2811}
2812
0061d53d
MT
2813/*
2814 * kvmclock updates which are isolated to a given vcpu, such as
2815 * vcpu->cpu migration, should not allow system_timestamp from
2816 * the rest of the vcpus to remain static. Otherwise ntp frequency
2817 * correction applies to one vcpu's system_timestamp but not
2818 * the others.
2819 *
2820 * So in those cases, request a kvmclock update for all vcpus.
7e44e449
AJ
2821 * We need to rate-limit these requests though, as they can
2822 * considerably slow guests that have a large number of vcpus.
2823 * The time for a remote vcpu to update its kvmclock is bound
2824 * by the delay we use to rate-limit the updates.
0061d53d
MT
2825 */
2826
7e44e449
AJ
2827#define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100)
2828
2829static void kvmclock_update_fn(struct work_struct *work)
0061d53d
MT
2830{
2831 int i;
7e44e449
AJ
2832 struct delayed_work *dwork = to_delayed_work(work);
2833 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
2834 kvmclock_update_work);
2835 struct kvm *kvm = container_of(ka, struct kvm, arch);
0061d53d
MT
2836 struct kvm_vcpu *vcpu;
2837
2838 kvm_for_each_vcpu(i, vcpu, kvm) {
105b21bb 2839 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
0061d53d
MT
2840 kvm_vcpu_kick(vcpu);
2841 }
2842}
2843
7e44e449
AJ
2844static void kvm_gen_kvmclock_update(struct kvm_vcpu *v)
2845{
2846 struct kvm *kvm = v->kvm;
2847
105b21bb 2848 kvm_make_request(KVM_REQ_CLOCK_UPDATE, v);
7e44e449
AJ
2849 schedule_delayed_work(&kvm->arch.kvmclock_update_work,
2850 KVMCLOCK_UPDATE_DELAY);
2851}
2852
332967a3
AJ
2853#define KVMCLOCK_SYNC_PERIOD (300 * HZ)
2854
2855static void kvmclock_sync_fn(struct work_struct *work)
2856{
2857 struct delayed_work *dwork = to_delayed_work(work);
2858 struct kvm_arch *ka = container_of(dwork, struct kvm_arch,
2859 kvmclock_sync_work);
2860 struct kvm *kvm = container_of(ka, struct kvm, arch);
2861
630994b3
MT
2862 if (!kvmclock_periodic_sync)
2863 return;
2864
332967a3
AJ
2865 schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
2866 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
2867 KVMCLOCK_SYNC_PERIOD);
2868}
2869
191c8137
BP
2870/*
2871 * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP.
2872 */
2873static bool can_set_mci_status(struct kvm_vcpu *vcpu)
2874{
2875 /* McStatusWrEn enabled? */
23493d0a 2876 if (guest_cpuid_is_amd_or_hygon(vcpu))
191c8137
BP
2877 return !!(vcpu->arch.msr_hwcr & BIT_ULL(18));
2878
2879 return false;
2880}
2881
9ffd986c 2882static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
15c4a640 2883{
890ca9ae
HY
2884 u64 mcg_cap = vcpu->arch.mcg_cap;
2885 unsigned bank_num = mcg_cap & 0xff;
9ffd986c
WL
2886 u32 msr = msr_info->index;
2887 u64 data = msr_info->data;
890ca9ae 2888
15c4a640 2889 switch (msr) {
15c4a640 2890 case MSR_IA32_MCG_STATUS:
890ca9ae 2891 vcpu->arch.mcg_status = data;
15c4a640 2892 break;
c7ac679c 2893 case MSR_IA32_MCG_CTL:
44883f01
PB
2894 if (!(mcg_cap & MCG_CTL_P) &&
2895 (data || !msr_info->host_initiated))
890ca9ae
HY
2896 return 1;
2897 if (data != 0 && data != ~(u64)0)
44883f01 2898 return 1;
890ca9ae
HY
2899 vcpu->arch.mcg_ctl = data;
2900 break;
2901 default:
2902 if (msr >= MSR_IA32_MC0_CTL &&
81760dcc 2903 msr < MSR_IA32_MCx_CTL(bank_num)) {
6ec4c5ee
MP
2904 u32 offset = array_index_nospec(
2905 msr - MSR_IA32_MC0_CTL,
2906 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
2907
114be429
AP
2908 /* only 0 or all 1s can be written to IA32_MCi_CTL
2909 * some Linux kernels though clear bit 10 in bank 4 to
2910 * workaround a BIOS/GART TBL issue on AMD K8s, ignore
2911 * this to avoid an uncatched #GP in the guest
2912 */
890ca9ae 2913 if ((offset & 0x3) == 0 &&
114be429 2914 data != 0 && (data | (1 << 10)) != ~(u64)0)
890ca9ae 2915 return -1;
191c8137
BP
2916
2917 /* MCi_STATUS */
9ffd986c 2918 if (!msr_info->host_initiated &&
191c8137
BP
2919 (offset & 0x3) == 1 && data != 0) {
2920 if (!can_set_mci_status(vcpu))
2921 return -1;
2922 }
2923
890ca9ae
HY
2924 vcpu->arch.mce_banks[offset] = data;
2925 break;
2926 }
2927 return 1;
2928 }
2929 return 0;
2930}
2931
2635b5c4
VK
2932static inline bool kvm_pv_async_pf_enabled(struct kvm_vcpu *vcpu)
2933{
2934 u64 mask = KVM_ASYNC_PF_ENABLED | KVM_ASYNC_PF_DELIVERY_AS_INT;
2935
2936 return (vcpu->arch.apf.msr_en_val & mask) == mask;
2937}
2938
344d9588
GN
2939static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data)
2940{
2941 gpa_t gpa = data & ~0x3f;
2942
2635b5c4
VK
2943 /* Bits 4:5 are reserved, Should be zero */
2944 if (data & 0x30)
344d9588
GN
2945 return 1;
2946
66570e96
OU
2947 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_VMEXIT) &&
2948 (data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT))
2949 return 1;
2950
2951 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT) &&
2952 (data & KVM_ASYNC_PF_DELIVERY_AS_INT))
2953 return 1;
2954
9d3c447c 2955 if (!lapic_in_kernel(vcpu))
d831de17 2956 return data ? 1 : 0;
9d3c447c 2957
2635b5c4 2958 vcpu->arch.apf.msr_en_val = data;
344d9588 2959
2635b5c4 2960 if (!kvm_pv_async_pf_enabled(vcpu)) {
344d9588
GN
2961 kvm_clear_async_pf_completion_queue(vcpu);
2962 kvm_async_pf_hash_reset(vcpu);
2963 return 0;
2964 }
2965
4e335d9e 2966 if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa,
68fd66f1 2967 sizeof(u64)))
344d9588
GN
2968 return 1;
2969
6adba527 2970 vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS);
52a5c155 2971 vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
2635b5c4 2972
344d9588 2973 kvm_async_pf_wakeup_all(vcpu);
2635b5c4
VK
2974
2975 return 0;
2976}
2977
2978static int kvm_pv_enable_async_pf_int(struct kvm_vcpu *vcpu, u64 data)
2979{
2980 /* Bits 8-63 are reserved */
2981 if (data >> 8)
2982 return 1;
2983
2984 if (!lapic_in_kernel(vcpu))
2985 return 1;
2986
2987 vcpu->arch.apf.msr_int_val = data;
2988
2989 vcpu->arch.apf.vec = data & KVM_ASYNC_PF_VEC_MASK;
2990
344d9588
GN
2991 return 0;
2992}
2993
12f9a48f
GC
2994static void kvmclock_reset(struct kvm_vcpu *vcpu)
2995{
0b79459b 2996 vcpu->arch.pv_time_enabled = false;
49dedf0d 2997 vcpu->arch.time = 0;
12f9a48f
GC
2998}
2999
7780938c 3000static void kvm_vcpu_flush_tlb_all(struct kvm_vcpu *vcpu)
f38a7b75
WL
3001{
3002 ++vcpu->stat.tlb_flush;
b3646477 3003 static_call(kvm_x86_tlb_flush_all)(vcpu);
f38a7b75
WL
3004}
3005
0baedd79
VK
3006static void kvm_vcpu_flush_tlb_guest(struct kvm_vcpu *vcpu)
3007{
3008 ++vcpu->stat.tlb_flush;
b3646477 3009 static_call(kvm_x86_tlb_flush_guest)(vcpu);
0baedd79
VK
3010}
3011
c9aaa895
GC
3012static void record_steal_time(struct kvm_vcpu *vcpu)
3013{
b0431382
BO
3014 struct kvm_host_map map;
3015 struct kvm_steal_time *st;
3016
30b5c851
DW
3017 if (kvm_xen_msr_enabled(vcpu->kvm)) {
3018 kvm_xen_runstate_set_running(vcpu);
3019 return;
3020 }
3021
c9aaa895
GC
3022 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
3023 return;
3024
b0431382
BO
3025 /* -EAGAIN is returned in atomic context so we can just return. */
3026 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT,
3027 &map, &vcpu->arch.st.cache, false))
c9aaa895
GC
3028 return;
3029
b0431382
BO
3030 st = map.hva +
3031 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
3032
f38a7b75
WL
3033 /*
3034 * Doing a TLB flush here, on the guest's behalf, can avoid
3035 * expensive IPIs.
3036 */
66570e96
OU
3037 if (guest_pv_has(vcpu, KVM_FEATURE_PV_TLB_FLUSH)) {
3038 trace_kvm_pv_tlb_flush(vcpu->vcpu_id,
3039 st->preempted & KVM_VCPU_FLUSH_TLB);
3040 if (xchg(&st->preempted, 0) & KVM_VCPU_FLUSH_TLB)
3041 kvm_vcpu_flush_tlb_guest(vcpu);
3042 }
0b9f6c46 3043
a6bd811f 3044 vcpu->arch.st.preempted = 0;
35f3fae1 3045
b0431382
BO
3046 if (st->version & 1)
3047 st->version += 1; /* first time write, random junk */
35f3fae1 3048
b0431382 3049 st->version += 1;
35f3fae1
WL
3050
3051 smp_wmb();
3052
b0431382 3053 st->steal += current->sched_info.run_delay -
c54cdf14
LC
3054 vcpu->arch.st.last_steal;
3055 vcpu->arch.st.last_steal = current->sched_info.run_delay;
35f3fae1 3056
35f3fae1
WL
3057 smp_wmb();
3058
b0431382 3059 st->version += 1;
c9aaa895 3060
b0431382 3061 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, false);
c9aaa895
GC
3062}
3063
8fe8ab46 3064int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
15c4a640 3065{
5753785f 3066 bool pr = false;
8fe8ab46
WA
3067 u32 msr = msr_info->index;
3068 u64 data = msr_info->data;
5753785f 3069
1232f8e6 3070 if (msr && msr == vcpu->kvm->arch.xen_hvm_config.msr)
23200b7a 3071 return kvm_xen_write_hypercall_page(vcpu, data);
1232f8e6 3072
15c4a640 3073 switch (msr) {
2e32b719 3074 case MSR_AMD64_NB_CFG:
2e32b719
BP
3075 case MSR_IA32_UCODE_WRITE:
3076 case MSR_VM_HSAVE_PA:
3077 case MSR_AMD64_PATCH_LOADER:
3078 case MSR_AMD64_BU_CFG2:
405a353a 3079 case MSR_AMD64_DC_CFG:
0e1b869f 3080 case MSR_F15H_EX_CFG:
2e32b719
BP
3081 break;
3082
518e7b94
WL
3083 case MSR_IA32_UCODE_REV:
3084 if (msr_info->host_initiated)
3085 vcpu->arch.microcode_version = data;
3086 break;
0cf9135b
SC
3087 case MSR_IA32_ARCH_CAPABILITIES:
3088 if (!msr_info->host_initiated)
3089 return 1;
3090 vcpu->arch.arch_capabilities = data;
3091 break;
d574c539
VK
3092 case MSR_IA32_PERF_CAPABILITIES: {
3093 struct kvm_msr_entry msr_ent = {.index = msr, .data = 0};
3094
3095 if (!msr_info->host_initiated)
3096 return 1;
3097 if (guest_cpuid_has(vcpu, X86_FEATURE_PDCM) && kvm_get_msr_feature(&msr_ent))
3098 return 1;
3099 if (data & ~msr_ent.data)
3100 return 1;
3101
3102 vcpu->arch.perf_capabilities = data;
3103
3104 return 0;
3105 }
15c4a640 3106 case MSR_EFER:
11988499 3107 return set_efer(vcpu, msr_info);
8f1589d9
AP
3108 case MSR_K7_HWCR:
3109 data &= ~(u64)0x40; /* ignore flush filter disable */
82494028 3110 data &= ~(u64)0x100; /* ignore ignne emulation enable */
a223c313 3111 data &= ~(u64)0x8; /* ignore TLB cache disable */
191c8137
BP
3112
3113 /* Handle McStatusWrEn */
3114 if (data == BIT_ULL(18)) {
3115 vcpu->arch.msr_hwcr = data;
3116 } else if (data != 0) {
a737f256
CD
3117 vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n",
3118 data);
8f1589d9
AP
3119 return 1;
3120 }
15c4a640 3121 break;
f7c6d140
AP
3122 case MSR_FAM10H_MMIO_CONF_BASE:
3123 if (data != 0) {
a737f256
CD
3124 vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: "
3125 "0x%llx\n", data);
f7c6d140
AP
3126 return 1;
3127 }
15c4a640 3128 break;
9ba075a6 3129 case 0x200 ... 0x2ff:
ff53604b 3130 return kvm_mtrr_set_msr(vcpu, msr, data);
15c4a640 3131 case MSR_IA32_APICBASE:
58cb628d 3132 return kvm_set_apic_base(vcpu, msr_info);
bf10bd0b 3133 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
0105d1a5 3134 return kvm_x2apic_msr_write(vcpu, msr, data);
09141ec0 3135 case MSR_IA32_TSC_DEADLINE:
a3e06bbe
LJ
3136 kvm_set_lapic_tscdeadline_msr(vcpu, data);
3137 break;
ba904635 3138 case MSR_IA32_TSC_ADJUST:
d6321d49 3139 if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) {
ba904635 3140 if (!msr_info->host_initiated) {
d913b904 3141 s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr;
d7add054 3142 adjust_tsc_offset_guest(vcpu, adj);
ba904635
WA
3143 }
3144 vcpu->arch.ia32_tsc_adjust_msr = data;
3145 }
3146 break;
15c4a640 3147 case MSR_IA32_MISC_ENABLE:
511a8556
WL
3148 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) &&
3149 ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) {
3150 if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3))
3151 return 1;
3152 vcpu->arch.ia32_misc_enable_msr = data;
aedbaf4f 3153 kvm_update_cpuid_runtime(vcpu);
511a8556
WL
3154 } else {
3155 vcpu->arch.ia32_misc_enable_msr = data;
3156 }
15c4a640 3157 break;
64d60670
PB
3158 case MSR_IA32_SMBASE:
3159 if (!msr_info->host_initiated)
3160 return 1;
3161 vcpu->arch.smbase = data;
3162 break;
73f624f4
PB
3163 case MSR_IA32_POWER_CTL:
3164 vcpu->arch.msr_ia32_power_ctl = data;
3165 break;
dd259935 3166 case MSR_IA32_TSC:
0c899c25
PB
3167 if (msr_info->host_initiated) {
3168 kvm_synchronize_tsc(vcpu, data);
3169 } else {
3170 u64 adj = kvm_compute_tsc_offset(vcpu, data) - vcpu->arch.l1_tsc_offset;
3171 adjust_tsc_offset_guest(vcpu, adj);
3172 vcpu->arch.ia32_tsc_adjust_msr += adj;
3173 }
dd259935 3174 break;
864e2ab2
AL
3175 case MSR_IA32_XSS:
3176 if (!msr_info->host_initiated &&
3177 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3178 return 1;
3179 /*
a1bead2a
SC
3180 * KVM supports exposing PT to the guest, but does not support
3181 * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than
3182 * XSAVES/XRSTORS to save/restore PT MSRs.
864e2ab2 3183 */
408e9a31 3184 if (data & ~supported_xss)
864e2ab2
AL
3185 return 1;
3186 vcpu->arch.ia32_xss = data;
3187 break;
52797bf9
LA
3188 case MSR_SMI_COUNT:
3189 if (!msr_info->host_initiated)
3190 return 1;
3191 vcpu->arch.smi_count = data;
3192 break;
11c6bffa 3193 case MSR_KVM_WALL_CLOCK_NEW:
66570e96
OU
3194 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3195 return 1;
3196
629b5348
JM
3197 vcpu->kvm->arch.wall_clock = data;
3198 kvm_write_wall_clock(vcpu->kvm, data, 0);
66570e96 3199 break;
18068523 3200 case MSR_KVM_WALL_CLOCK:
66570e96
OU
3201 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3202 return 1;
3203
629b5348
JM
3204 vcpu->kvm->arch.wall_clock = data;
3205 kvm_write_wall_clock(vcpu->kvm, data, 0);
18068523 3206 break;
11c6bffa 3207 case MSR_KVM_SYSTEM_TIME_NEW:
66570e96
OU
3208 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3209 return 1;
3210
5b9bb0eb
OU
3211 kvm_write_system_time(vcpu, data, false, msr_info->host_initiated);
3212 break;
3213 case MSR_KVM_SYSTEM_TIME:
66570e96
OU
3214 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3215 return 1;
3216
3217 kvm_write_system_time(vcpu, data, true, msr_info->host_initiated);
18068523 3218 break;
344d9588 3219 case MSR_KVM_ASYNC_PF_EN:
66570e96
OU
3220 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3221 return 1;
3222
344d9588
GN
3223 if (kvm_pv_enable_async_pf(vcpu, data))
3224 return 1;
3225 break;
2635b5c4 3226 case MSR_KVM_ASYNC_PF_INT:
66570e96
OU
3227 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3228 return 1;
3229
2635b5c4
VK
3230 if (kvm_pv_enable_async_pf_int(vcpu, data))
3231 return 1;
3232 break;
557a961a 3233 case MSR_KVM_ASYNC_PF_ACK:
66570e96
OU
3234 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3235 return 1;
557a961a
VK
3236 if (data & 0x1) {
3237 vcpu->arch.apf.pageready_pending = false;
3238 kvm_check_async_pf_completion(vcpu);
3239 }
3240 break;
c9aaa895 3241 case MSR_KVM_STEAL_TIME:
66570e96
OU
3242 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3243 return 1;
c9aaa895
GC
3244
3245 if (unlikely(!sched_info_on()))
3246 return 1;
3247
3248 if (data & KVM_STEAL_RESERVED_MASK)
3249 return 1;
3250
c9aaa895
GC
3251 vcpu->arch.st.msr_val = data;
3252
3253 if (!(data & KVM_MSR_ENABLED))
3254 break;
3255
c9aaa895
GC
3256 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
3257
3258 break;
ae7a2a3f 3259 case MSR_KVM_PV_EOI_EN:
66570e96
OU
3260 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3261 return 1;
3262
72bbf935 3263 if (kvm_lapic_enable_pv_eoi(vcpu, data, sizeof(u8)))
ae7a2a3f
MT
3264 return 1;
3265 break;
c9aaa895 3266
2d5ba19b 3267 case MSR_KVM_POLL_CONTROL:
66570e96
OU
3268 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3269 return 1;
3270
2d5ba19b
MT
3271 /* only enable bit supported */
3272 if (data & (-1ULL << 1))
3273 return 1;
3274
3275 vcpu->arch.msr_kvm_poll_control = data;
3276 break;
3277
890ca9ae
HY
3278 case MSR_IA32_MCG_CTL:
3279 case MSR_IA32_MCG_STATUS:
81760dcc 3280 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
9ffd986c 3281 return set_msr_mce(vcpu, msr_info);
71db6023 3282
6912ac32
WH
3283 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3284 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
df561f66
GS
3285 pr = true;
3286 fallthrough;
6912ac32
WH
3287 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3288 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
c6702c9d 3289 if (kvm_pmu_is_valid_msr(vcpu, msr))
afd80d85 3290 return kvm_pmu_set_msr(vcpu, msr_info);
5753785f
GN
3291
3292 if (pr || data != 0)
a737f256
CD
3293 vcpu_unimpl(vcpu, "disabled perfctr wrmsr: "
3294 "0x%x data 0x%llx\n", msr, data);
5753785f 3295 break;
84e0cefa
JS
3296 case MSR_K7_CLK_CTL:
3297 /*
3298 * Ignore all writes to this no longer documented MSR.
3299 * Writes are only relevant for old K7 processors,
3300 * all pre-dating SVM, but a recommended workaround from
4a969980 3301 * AMD for these chips. It is possible to specify the
84e0cefa
JS
3302 * affected processor models on the command line, hence
3303 * the need to ignore the workaround.
3304 */
3305 break;
55cd8e5a 3306 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
f97f5a56
JD
3307 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3308 case HV_X64_MSR_SYNDBG_OPTIONS:
e7d9513b
AS
3309 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3310 case HV_X64_MSR_CRASH_CTL:
1f4b34f8 3311 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
a2e164e7
VK
3312 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3313 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3314 case HV_X64_MSR_TSC_EMULATION_STATUS:
e7d9513b
AS
3315 return kvm_hv_set_msr_common(vcpu, msr, data,
3316 msr_info->host_initiated);
91c9c3ed 3317 case MSR_IA32_BBL_CR_CTL3:
3318 /* Drop writes to this legacy MSR -- see rdmsr
3319 * counterpart for further detail.
3320 */
fab0aa3b
EM
3321 if (report_ignored_msrs)
3322 vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n",
3323 msr, data);
91c9c3ed 3324 break;
2b036c6b 3325 case MSR_AMD64_OSVW_ID_LENGTH:
d6321d49 3326 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
2b036c6b
BO
3327 return 1;
3328 vcpu->arch.osvw.length = data;
3329 break;
3330 case MSR_AMD64_OSVW_STATUS:
d6321d49 3331 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
2b036c6b
BO
3332 return 1;
3333 vcpu->arch.osvw.status = data;
3334 break;
db2336a8
KH
3335 case MSR_PLATFORM_INFO:
3336 if (!msr_info->host_initiated ||
db2336a8
KH
3337 (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) &&
3338 cpuid_fault_enabled(vcpu)))
3339 return 1;
3340 vcpu->arch.msr_platform_info = data;
3341 break;
3342 case MSR_MISC_FEATURES_ENABLES:
3343 if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT ||
3344 (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT &&
3345 !supports_cpuid_fault(vcpu)))
3346 return 1;
3347 vcpu->arch.msr_misc_features_enables = data;
3348 break;
15c4a640 3349 default:
c6702c9d 3350 if (kvm_pmu_is_valid_msr(vcpu, msr))
afd80d85 3351 return kvm_pmu_set_msr(vcpu, msr_info);
6abe9c13 3352 return KVM_MSR_RET_INVALID;
15c4a640
CO
3353 }
3354 return 0;
3355}
3356EXPORT_SYMBOL_GPL(kvm_set_msr_common);
3357
44883f01 3358static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
15c4a640
CO
3359{
3360 u64 data;
890ca9ae
HY
3361 u64 mcg_cap = vcpu->arch.mcg_cap;
3362 unsigned bank_num = mcg_cap & 0xff;
15c4a640
CO
3363
3364 switch (msr) {
15c4a640
CO
3365 case MSR_IA32_P5_MC_ADDR:
3366 case MSR_IA32_P5_MC_TYPE:
890ca9ae
HY
3367 data = 0;
3368 break;
15c4a640 3369 case MSR_IA32_MCG_CAP:
890ca9ae
HY
3370 data = vcpu->arch.mcg_cap;
3371 break;
c7ac679c 3372 case MSR_IA32_MCG_CTL:
44883f01 3373 if (!(mcg_cap & MCG_CTL_P) && !host)
890ca9ae
HY
3374 return 1;
3375 data = vcpu->arch.mcg_ctl;
3376 break;
3377 case MSR_IA32_MCG_STATUS:
3378 data = vcpu->arch.mcg_status;
3379 break;
3380 default:
3381 if (msr >= MSR_IA32_MC0_CTL &&
81760dcc 3382 msr < MSR_IA32_MCx_CTL(bank_num)) {
6ec4c5ee
MP
3383 u32 offset = array_index_nospec(
3384 msr - MSR_IA32_MC0_CTL,
3385 MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL);
3386
890ca9ae
HY
3387 data = vcpu->arch.mce_banks[offset];
3388 break;
3389 }
3390 return 1;
3391 }
3392 *pdata = data;
3393 return 0;
3394}
3395
609e36d3 3396int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
890ca9ae 3397{
609e36d3 3398 switch (msr_info->index) {
890ca9ae 3399 case MSR_IA32_PLATFORM_ID:
15c4a640 3400 case MSR_IA32_EBL_CR_POWERON:
b5e2fec0
AG
3401 case MSR_IA32_LASTBRANCHFROMIP:
3402 case MSR_IA32_LASTBRANCHTOIP:
3403 case MSR_IA32_LASTINTFROMIP:
3404 case MSR_IA32_LASTINTTOIP:
60af2ecd 3405 case MSR_K8_SYSCFG:
3afb1121
PB
3406 case MSR_K8_TSEG_ADDR:
3407 case MSR_K8_TSEG_MASK:
61a6bd67 3408 case MSR_VM_HSAVE_PA:
1fdbd48c 3409 case MSR_K8_INT_PENDING_MSG:
c323c0e5 3410 case MSR_AMD64_NB_CFG:
f7c6d140 3411 case MSR_FAM10H_MMIO_CONF_BASE:
2e32b719 3412 case MSR_AMD64_BU_CFG2:
0c2df2a1 3413 case MSR_IA32_PERF_CTL:
405a353a 3414 case MSR_AMD64_DC_CFG:
0e1b869f 3415 case MSR_F15H_EX_CFG:
2ca1a06a
VS
3416 /*
3417 * Intel Sandy Bridge CPUs must support the RAPL (running average power
3418 * limit) MSRs. Just return 0, as we do not want to expose the host
3419 * data here. Do not conditionalize this on CPUID, as KVM does not do
3420 * so for existing CPU-specific MSRs.
3421 */
3422 case MSR_RAPL_POWER_UNIT:
3423 case MSR_PP0_ENERGY_STATUS: /* Power plane 0 (core) */
3424 case MSR_PP1_ENERGY_STATUS: /* Power plane 1 (graphics uncore) */
3425 case MSR_PKG_ENERGY_STATUS: /* Total package */
3426 case MSR_DRAM_ENERGY_STATUS: /* DRAM controller */
609e36d3 3427 msr_info->data = 0;
15c4a640 3428 break;
c51eb52b 3429 case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5:
c28fa560
VK
3430 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
3431 return kvm_pmu_get_msr(vcpu, msr_info);
3432 if (!msr_info->host_initiated)
3433 return 1;
3434 msr_info->data = 0;
3435 break;
6912ac32
WH
3436 case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3:
3437 case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3:
3438 case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1:
3439 case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1:
c6702c9d 3440 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
cbd71758 3441 return kvm_pmu_get_msr(vcpu, msr_info);
609e36d3 3442 msr_info->data = 0;
5753785f 3443 break;
742bc670 3444 case MSR_IA32_UCODE_REV:
518e7b94 3445 msr_info->data = vcpu->arch.microcode_version;
742bc670 3446 break;
0cf9135b
SC
3447 case MSR_IA32_ARCH_CAPABILITIES:
3448 if (!msr_info->host_initiated &&
3449 !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES))
3450 return 1;
3451 msr_info->data = vcpu->arch.arch_capabilities;
3452 break;
d574c539
VK
3453 case MSR_IA32_PERF_CAPABILITIES:
3454 if (!msr_info->host_initiated &&
3455 !guest_cpuid_has(vcpu, X86_FEATURE_PDCM))
3456 return 1;
3457 msr_info->data = vcpu->arch.perf_capabilities;
3458 break;
73f624f4
PB
3459 case MSR_IA32_POWER_CTL:
3460 msr_info->data = vcpu->arch.msr_ia32_power_ctl;
3461 break;
cc5b54dd
ML
3462 case MSR_IA32_TSC: {
3463 /*
3464 * Intel SDM states that MSR_IA32_TSC read adds the TSC offset
3465 * even when not intercepted. AMD manual doesn't explicitly
3466 * state this but appears to behave the same.
3467 *
ee6fa053 3468 * On userspace reads and writes, however, we unconditionally
c0623f5e 3469 * return L1's TSC value to ensure backwards-compatible
ee6fa053 3470 * behavior for migration.
cc5b54dd
ML
3471 */
3472 u64 tsc_offset = msr_info->host_initiated ? vcpu->arch.l1_tsc_offset :
3473 vcpu->arch.tsc_offset;
3474
3475 msr_info->data = kvm_scale_tsc(vcpu, rdtsc()) + tsc_offset;
dd259935 3476 break;
cc5b54dd 3477 }
9ba075a6 3478 case MSR_MTRRcap:
9ba075a6 3479 case 0x200 ... 0x2ff:
ff53604b 3480 return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data);
15c4a640 3481 case 0xcd: /* fsb frequency */
609e36d3 3482 msr_info->data = 3;
15c4a640 3483 break;
7b914098
JS
3484 /*
3485 * MSR_EBC_FREQUENCY_ID
3486 * Conservative value valid for even the basic CPU models.
3487 * Models 0,1: 000 in bits 23:21 indicating a bus speed of
3488 * 100MHz, model 2 000 in bits 18:16 indicating 100MHz,
3489 * and 266MHz for model 3, or 4. Set Core Clock
3490 * Frequency to System Bus Frequency Ratio to 1 (bits
3491 * 31:24) even though these are only valid for CPU
3492 * models > 2, however guests may end up dividing or
3493 * multiplying by zero otherwise.
3494 */
3495 case MSR_EBC_FREQUENCY_ID:
609e36d3 3496 msr_info->data = 1 << 24;
7b914098 3497 break;
15c4a640 3498 case MSR_IA32_APICBASE:
609e36d3 3499 msr_info->data = kvm_get_apic_base(vcpu);
15c4a640 3500 break;
bf10bd0b 3501 case APIC_BASE_MSR ... APIC_BASE_MSR + 0xff:
609e36d3 3502 return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data);
09141ec0 3503 case MSR_IA32_TSC_DEADLINE:
609e36d3 3504 msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu);
a3e06bbe 3505 break;
ba904635 3506 case MSR_IA32_TSC_ADJUST:
609e36d3 3507 msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr;
ba904635 3508 break;
15c4a640 3509 case MSR_IA32_MISC_ENABLE:
609e36d3 3510 msr_info->data = vcpu->arch.ia32_misc_enable_msr;
15c4a640 3511 break;
64d60670
PB
3512 case MSR_IA32_SMBASE:
3513 if (!msr_info->host_initiated)
3514 return 1;
3515 msr_info->data = vcpu->arch.smbase;
15c4a640 3516 break;
52797bf9
LA
3517 case MSR_SMI_COUNT:
3518 msr_info->data = vcpu->arch.smi_count;
3519 break;
847f0ad8
AG
3520 case MSR_IA32_PERF_STATUS:
3521 /* TSC increment by tick */
609e36d3 3522 msr_info->data = 1000ULL;
847f0ad8 3523 /* CPU multiplier */
b0996ae4 3524 msr_info->data |= (((uint64_t)4ULL) << 40);
847f0ad8 3525 break;
15c4a640 3526 case MSR_EFER:
609e36d3 3527 msr_info->data = vcpu->arch.efer;
15c4a640 3528 break;
18068523 3529 case MSR_KVM_WALL_CLOCK:
1930e5dd
OU
3530 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3531 return 1;
3532
3533 msr_info->data = vcpu->kvm->arch.wall_clock;
3534 break;
11c6bffa 3535 case MSR_KVM_WALL_CLOCK_NEW:
1930e5dd
OU
3536 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3537 return 1;
3538
609e36d3 3539 msr_info->data = vcpu->kvm->arch.wall_clock;
18068523
GOC
3540 break;
3541 case MSR_KVM_SYSTEM_TIME:
1930e5dd
OU
3542 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE))
3543 return 1;
3544
3545 msr_info->data = vcpu->arch.time;
3546 break;
11c6bffa 3547 case MSR_KVM_SYSTEM_TIME_NEW:
1930e5dd
OU
3548 if (!guest_pv_has(vcpu, KVM_FEATURE_CLOCKSOURCE2))
3549 return 1;
3550
609e36d3 3551 msr_info->data = vcpu->arch.time;
18068523 3552 break;
344d9588 3553 case MSR_KVM_ASYNC_PF_EN:
1930e5dd
OU
3554 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3555 return 1;
3556
2635b5c4
VK
3557 msr_info->data = vcpu->arch.apf.msr_en_val;
3558 break;
3559 case MSR_KVM_ASYNC_PF_INT:
1930e5dd
OU
3560 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF_INT))
3561 return 1;
3562
2635b5c4 3563 msr_info->data = vcpu->arch.apf.msr_int_val;
344d9588 3564 break;
557a961a 3565 case MSR_KVM_ASYNC_PF_ACK:
1930e5dd
OU
3566 if (!guest_pv_has(vcpu, KVM_FEATURE_ASYNC_PF))
3567 return 1;
3568
557a961a
VK
3569 msr_info->data = 0;
3570 break;
c9aaa895 3571 case MSR_KVM_STEAL_TIME:
1930e5dd
OU
3572 if (!guest_pv_has(vcpu, KVM_FEATURE_STEAL_TIME))
3573 return 1;
3574
609e36d3 3575 msr_info->data = vcpu->arch.st.msr_val;
c9aaa895 3576 break;
1d92128f 3577 case MSR_KVM_PV_EOI_EN:
1930e5dd
OU
3578 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_EOI))
3579 return 1;
3580
609e36d3 3581 msr_info->data = vcpu->arch.pv_eoi.msr_val;
1d92128f 3582 break;
2d5ba19b 3583 case MSR_KVM_POLL_CONTROL:
1930e5dd
OU
3584 if (!guest_pv_has(vcpu, KVM_FEATURE_POLL_CONTROL))
3585 return 1;
3586
2d5ba19b
MT
3587 msr_info->data = vcpu->arch.msr_kvm_poll_control;
3588 break;
890ca9ae
HY
3589 case MSR_IA32_P5_MC_ADDR:
3590 case MSR_IA32_P5_MC_TYPE:
3591 case MSR_IA32_MCG_CAP:
3592 case MSR_IA32_MCG_CTL:
3593 case MSR_IA32_MCG_STATUS:
81760dcc 3594 case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1:
44883f01
PB
3595 return get_msr_mce(vcpu, msr_info->index, &msr_info->data,
3596 msr_info->host_initiated);
864e2ab2
AL
3597 case MSR_IA32_XSS:
3598 if (!msr_info->host_initiated &&
3599 !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES))
3600 return 1;
3601 msr_info->data = vcpu->arch.ia32_xss;
3602 break;
84e0cefa
JS
3603 case MSR_K7_CLK_CTL:
3604 /*
3605 * Provide expected ramp-up count for K7. All other
3606 * are set to zero, indicating minimum divisors for
3607 * every field.
3608 *
3609 * This prevents guest kernels on AMD host with CPU
3610 * type 6, model 8 and higher from exploding due to
3611 * the rdmsr failing.
3612 */
609e36d3 3613 msr_info->data = 0x20000000;
84e0cefa 3614 break;
55cd8e5a 3615 case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15:
f97f5a56
JD
3616 case HV_X64_MSR_SYNDBG_CONTROL ... HV_X64_MSR_SYNDBG_PENDING_BUFFER:
3617 case HV_X64_MSR_SYNDBG_OPTIONS:
e7d9513b
AS
3618 case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
3619 case HV_X64_MSR_CRASH_CTL:
1f4b34f8 3620 case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT:
a2e164e7
VK
3621 case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
3622 case HV_X64_MSR_TSC_EMULATION_CONTROL:
3623 case HV_X64_MSR_TSC_EMULATION_STATUS:
e83d5887 3624 return kvm_hv_get_msr_common(vcpu,
44883f01
PB
3625 msr_info->index, &msr_info->data,
3626 msr_info->host_initiated);
91c9c3ed 3627 case MSR_IA32_BBL_CR_CTL3:
3628 /* This legacy MSR exists but isn't fully documented in current
3629 * silicon. It is however accessed by winxp in very narrow
3630 * scenarios where it sets bit #19, itself documented as
3631 * a "reserved" bit. Best effort attempt to source coherent
3632 * read data here should the balance of the register be
3633 * interpreted by the guest:
3634 *
3635 * L2 cache control register 3: 64GB range, 256KB size,
3636 * enabled, latency 0x1, configured
3637 */
609e36d3 3638 msr_info->data = 0xbe702111;
91c9c3ed 3639 break;
2b036c6b 3640 case MSR_AMD64_OSVW_ID_LENGTH:
d6321d49 3641 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
2b036c6b 3642 return 1;
609e36d3 3643 msr_info->data = vcpu->arch.osvw.length;
2b036c6b
BO
3644 break;
3645 case MSR_AMD64_OSVW_STATUS:
d6321d49 3646 if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW))
2b036c6b 3647 return 1;
609e36d3 3648 msr_info->data = vcpu->arch.osvw.status;
2b036c6b 3649 break;
db2336a8 3650 case MSR_PLATFORM_INFO:
6fbbde9a
DS
3651 if (!msr_info->host_initiated &&
3652 !vcpu->kvm->arch.guest_can_read_msr_platform_info)
3653 return 1;
db2336a8
KH
3654 msr_info->data = vcpu->arch.msr_platform_info;
3655 break;
3656 case MSR_MISC_FEATURES_ENABLES:
3657 msr_info->data = vcpu->arch.msr_misc_features_enables;
3658 break;
191c8137
BP
3659 case MSR_K7_HWCR:
3660 msr_info->data = vcpu->arch.msr_hwcr;
3661 break;
15c4a640 3662 default:
c6702c9d 3663 if (kvm_pmu_is_valid_msr(vcpu, msr_info->index))
cbd71758 3664 return kvm_pmu_get_msr(vcpu, msr_info);
6abe9c13 3665 return KVM_MSR_RET_INVALID;
15c4a640 3666 }
15c4a640
CO
3667 return 0;
3668}
3669EXPORT_SYMBOL_GPL(kvm_get_msr_common);
3670
313a3dc7
CO
3671/*
3672 * Read or write a bunch of msrs. All parameters are kernel addresses.
3673 *
3674 * @return number of msrs set successfully.
3675 */
3676static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
3677 struct kvm_msr_entry *entries,
3678 int (*do_msr)(struct kvm_vcpu *vcpu,
3679 unsigned index, u64 *data))
3680{
801e459a 3681 int i;
313a3dc7 3682
313a3dc7
CO
3683 for (i = 0; i < msrs->nmsrs; ++i)
3684 if (do_msr(vcpu, entries[i].index, &entries[i].data))
3685 break;
3686
313a3dc7
CO
3687 return i;
3688}
3689
3690/*
3691 * Read or write a bunch of msrs. Parameters are user addresses.
3692 *
3693 * @return number of msrs set successfully.
3694 */
3695static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
3696 int (*do_msr)(struct kvm_vcpu *vcpu,
3697 unsigned index, u64 *data),
3698 int writeback)
3699{
3700 struct kvm_msrs msrs;
3701 struct kvm_msr_entry *entries;
3702 int r, n;
3703 unsigned size;
3704
3705 r = -EFAULT;
0e96f31e 3706 if (copy_from_user(&msrs, user_msrs, sizeof(msrs)))
313a3dc7
CO
3707 goto out;
3708
3709 r = -E2BIG;
3710 if (msrs.nmsrs >= MAX_IO_MSRS)
3711 goto out;
3712
313a3dc7 3713 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
ff5c2c03
SL
3714 entries = memdup_user(user_msrs->entries, size);
3715 if (IS_ERR(entries)) {
3716 r = PTR_ERR(entries);
313a3dc7 3717 goto out;
ff5c2c03 3718 }
313a3dc7
CO
3719
3720 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
3721 if (r < 0)
3722 goto out_free;
3723
3724 r = -EFAULT;
3725 if (writeback && copy_to_user(user_msrs->entries, entries, size))
3726 goto out_free;
3727
3728 r = n;
3729
3730out_free:
7a73c028 3731 kfree(entries);
313a3dc7
CO
3732out:
3733 return r;
3734}
3735
4d5422ce
WL
3736static inline bool kvm_can_mwait_in_guest(void)
3737{
3738 return boot_cpu_has(X86_FEATURE_MWAIT) &&
8e9b29b6
KA
3739 !boot_cpu_has_bug(X86_BUG_MONITOR) &&
3740 boot_cpu_has(X86_FEATURE_ARAT);
4d5422ce
WL
3741}
3742
c21d54f0
VK
3743static int kvm_ioctl_get_supported_hv_cpuid(struct kvm_vcpu *vcpu,
3744 struct kvm_cpuid2 __user *cpuid_arg)
3745{
3746 struct kvm_cpuid2 cpuid;
3747 int r;
3748
3749 r = -EFAULT;
3750 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
3751 return r;
3752
3753 r = kvm_get_hv_cpuid(vcpu, &cpuid, cpuid_arg->entries);
3754 if (r)
3755 return r;
3756
3757 r = -EFAULT;
3758 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
3759 return r;
3760
3761 return 0;
3762}
3763
784aa3d7 3764int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
018d00d2 3765{
4d5422ce 3766 int r = 0;
018d00d2
ZX
3767
3768 switch (ext) {
3769 case KVM_CAP_IRQCHIP:
3770 case KVM_CAP_HLT:
3771 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
018d00d2 3772 case KVM_CAP_SET_TSS_ADDR:
07716717 3773 case KVM_CAP_EXT_CPUID:
9c15bb1d 3774 case KVM_CAP_EXT_EMUL_CPUID:
c8076604 3775 case KVM_CAP_CLOCKSOURCE:
7837699f 3776 case KVM_CAP_PIT:
a28e4f5a 3777 case KVM_CAP_NOP_IO_DELAY:
62d9f0db 3778 case KVM_CAP_MP_STATE:
ed848624 3779 case KVM_CAP_SYNC_MMU:
a355c85c 3780 case KVM_CAP_USER_NMI:
52d939a0 3781 case KVM_CAP_REINJECT_CONTROL:
4925663a 3782 case KVM_CAP_IRQ_INJECT_STATUS:
d34e6b17 3783 case KVM_CAP_IOEVENTFD:
f848a5a8 3784 case KVM_CAP_IOEVENTFD_NO_LENGTH:
c5ff41ce 3785 case KVM_CAP_PIT2:
e9f42757 3786 case KVM_CAP_PIT_STATE2:
b927a3ce 3787 case KVM_CAP_SET_IDENTITY_MAP_ADDR:
3cfc3092 3788 case KVM_CAP_VCPU_EVENTS:
55cd8e5a 3789 case KVM_CAP_HYPERV:
10388a07 3790 case KVM_CAP_HYPERV_VAPIC:
c25bc163 3791 case KVM_CAP_HYPERV_SPIN:
5c919412 3792 case KVM_CAP_HYPERV_SYNIC:
efc479e6 3793 case KVM_CAP_HYPERV_SYNIC2:
d3457c87 3794 case KVM_CAP_HYPERV_VP_INDEX:
faeb7833 3795 case KVM_CAP_HYPERV_EVENTFD:
c1aea919 3796 case KVM_CAP_HYPERV_TLBFLUSH:
214ff83d 3797 case KVM_CAP_HYPERV_SEND_IPI:
2bc39970 3798 case KVM_CAP_HYPERV_CPUID:
c21d54f0 3799 case KVM_CAP_SYS_HYPERV_CPUID:
ab9f4ecb 3800 case KVM_CAP_PCI_SEGMENT:
a1efbe77 3801 case KVM_CAP_DEBUGREGS:
d2be1651 3802 case KVM_CAP_X86_ROBUST_SINGLESTEP:
2d5b5a66 3803 case KVM_CAP_XSAVE:
344d9588 3804 case KVM_CAP_ASYNC_PF:
72de5fa4 3805 case KVM_CAP_ASYNC_PF_INT:
92a1f12d 3806 case KVM_CAP_GET_TSC_KHZ:
1c0b28c2 3807 case KVM_CAP_KVMCLOCK_CTRL:
4d8b81ab 3808 case KVM_CAP_READONLY_MEM:
5f66b620 3809 case KVM_CAP_HYPERV_TIME:
100943c5 3810 case KVM_CAP_IOAPIC_POLARITY_IGNORED:
defcf51f 3811 case KVM_CAP_TSC_DEADLINE_TIMER:
90de4a18 3812 case KVM_CAP_DISABLE_QUIRKS:
d71ba788 3813 case KVM_CAP_SET_BOOT_CPU_ID:
49df6397 3814 case KVM_CAP_SPLIT_IRQCHIP:
460df4c1 3815 case KVM_CAP_IMMEDIATE_EXIT:
66bb8a06 3816 case KVM_CAP_PMU_EVENT_FILTER:
801e459a 3817 case KVM_CAP_GET_MSR_FEATURES:
6fbbde9a 3818 case KVM_CAP_MSR_PLATFORM_INFO:
c4f55198 3819 case KVM_CAP_EXCEPTION_PAYLOAD:
b9b2782c 3820 case KVM_CAP_SET_GUEST_DEBUG:
1aa561b1 3821 case KVM_CAP_LAST_CPU:
1ae09954 3822 case KVM_CAP_X86_USER_SPACE_MSR:
1a155254 3823 case KVM_CAP_X86_MSR_FILTER:
66570e96 3824 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
fe7e9488
SC
3825#ifdef CONFIG_X86_SGX_KVM
3826 case KVM_CAP_SGX_ATTRIBUTE:
3827#endif
54526d1f 3828 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
018d00d2
ZX
3829 r = 1;
3830 break;
7e582ccb
ML
3831 case KVM_CAP_SET_GUEST_DEBUG2:
3832 return KVM_GUESTDBG_VALID_MASK;
b59b153d 3833#ifdef CONFIG_KVM_XEN
23200b7a
JM
3834 case KVM_CAP_XEN_HVM:
3835 r = KVM_XEN_HVM_CONFIG_HYPERCALL_MSR |
8d4e7e80
DW
3836 KVM_XEN_HVM_CONFIG_INTERCEPT_HCALL |
3837 KVM_XEN_HVM_CONFIG_SHARED_INFO;
30b5c851
DW
3838 if (sched_info_on())
3839 r |= KVM_XEN_HVM_CONFIG_RUNSTATE;
23200b7a 3840 break;
b59b153d 3841#endif
01643c51
KH
3842 case KVM_CAP_SYNC_REGS:
3843 r = KVM_SYNC_X86_VALID_FIELDS;
3844 break;
e3fd9a93
PB
3845 case KVM_CAP_ADJUST_CLOCK:
3846 r = KVM_CLOCK_TSC_STABLE;
3847 break;
4d5422ce 3848 case KVM_CAP_X86_DISABLE_EXITS:
b5170063
WL
3849 r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE |
3850 KVM_X86_DISABLE_EXITS_CSTATE;
4d5422ce
WL
3851 if(kvm_can_mwait_in_guest())
3852 r |= KVM_X86_DISABLE_EXITS_MWAIT;
668fffa3 3853 break;
6d396b55
PB
3854 case KVM_CAP_X86_SMM:
3855 /* SMBASE is usually relocated above 1M on modern chipsets,
3856 * and SMM handlers might indeed rely on 4G segment limits,
3857 * so do not report SMM to be available if real mode is
3858 * emulated via vm86 mode. Still, do not go to great lengths
3859 * to avoid userspace's usage of the feature, because it is a
3860 * fringe case that is not enabled except via specific settings
3861 * of the module parameters.
3862 */
b3646477 3863 r = static_call(kvm_x86_has_emulated_msr)(kvm, MSR_IA32_SMBASE);
6d396b55 3864 break;
774ead3a 3865 case KVM_CAP_VAPIC:
b3646477 3866 r = !static_call(kvm_x86_cpu_has_accelerated_tpr)();
774ead3a 3867 break;
f725230a 3868 case KVM_CAP_NR_VCPUS:
8c3ba334
SL
3869 r = KVM_SOFT_MAX_VCPUS;
3870 break;
3871 case KVM_CAP_MAX_VCPUS:
f725230a
AK
3872 r = KVM_MAX_VCPUS;
3873 break;
a86cb413
TH
3874 case KVM_CAP_MAX_VCPU_ID:
3875 r = KVM_MAX_VCPU_ID;
3876 break;
a68a6a72
MT
3877 case KVM_CAP_PV_MMU: /* obsolete */
3878 r = 0;
2f333bcb 3879 break;
890ca9ae
HY
3880 case KVM_CAP_MCE:
3881 r = KVM_MAX_MCE_BANKS;
3882 break;
2d5b5a66 3883 case KVM_CAP_XCRS:
d366bf7e 3884 r = boot_cpu_has(X86_FEATURE_XSAVE);
2d5b5a66 3885 break;
92a1f12d
JR
3886 case KVM_CAP_TSC_CONTROL:
3887 r = kvm_has_tsc_control;
3888 break;
37131313
RK
3889 case KVM_CAP_X2APIC_API:
3890 r = KVM_X2APIC_API_VALID_FLAGS;
3891 break;
8fcc4b59 3892 case KVM_CAP_NESTED_STATE:
33b22172
PB
3893 r = kvm_x86_ops.nested_ops->get_state ?
3894 kvm_x86_ops.nested_ops->get_state(NULL, NULL, 0) : 0;
8fcc4b59 3895 break;
344c6c80 3896 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
afaf0b2f 3897 r = kvm_x86_ops.enable_direct_tlbflush != NULL;
5a0165f6
VK
3898 break;
3899 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
33b22172 3900 r = kvm_x86_ops.nested_ops->enable_evmcs != NULL;
344c6c80 3901 break;
3edd6839
MG
3902 case KVM_CAP_SMALLER_MAXPHYADDR:
3903 r = (int) allow_smaller_maxphyaddr;
3904 break;
004a0124
AJ
3905 case KVM_CAP_STEAL_TIME:
3906 r = sched_info_on();
3907 break;
fe6b6bc8
CQ
3908 case KVM_CAP_X86_BUS_LOCK_EXIT:
3909 if (kvm_has_bus_lock_exit)
3910 r = KVM_BUS_LOCK_DETECTION_OFF |
3911 KVM_BUS_LOCK_DETECTION_EXIT;
3912 else
3913 r = 0;
3914 break;
018d00d2 3915 default:
018d00d2
ZX
3916 break;
3917 }
3918 return r;
3919
3920}
3921
043405e1
CO
3922long kvm_arch_dev_ioctl(struct file *filp,
3923 unsigned int ioctl, unsigned long arg)
3924{
3925 void __user *argp = (void __user *)arg;
3926 long r;
3927
3928 switch (ioctl) {
3929 case KVM_GET_MSR_INDEX_LIST: {
3930 struct kvm_msr_list __user *user_msr_list = argp;
3931 struct kvm_msr_list msr_list;
3932 unsigned n;
3933
3934 r = -EFAULT;
0e96f31e 3935 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
043405e1
CO
3936 goto out;
3937 n = msr_list.nmsrs;
62ef68bb 3938 msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs;
0e96f31e 3939 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
043405e1
CO
3940 goto out;
3941 r = -E2BIG;
e125e7b6 3942 if (n < msr_list.nmsrs)
043405e1
CO
3943 goto out;
3944 r = -EFAULT;
3945 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
3946 num_msrs_to_save * sizeof(u32)))
3947 goto out;
e125e7b6 3948 if (copy_to_user(user_msr_list->indices + num_msrs_to_save,
043405e1 3949 &emulated_msrs,
62ef68bb 3950 num_emulated_msrs * sizeof(u32)))
043405e1
CO
3951 goto out;
3952 r = 0;
3953 break;
3954 }
9c15bb1d
BP
3955 case KVM_GET_SUPPORTED_CPUID:
3956 case KVM_GET_EMULATED_CPUID: {
674eea0f
AK
3957 struct kvm_cpuid2 __user *cpuid_arg = argp;
3958 struct kvm_cpuid2 cpuid;
3959
3960 r = -EFAULT;
0e96f31e 3961 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
674eea0f 3962 goto out;
9c15bb1d
BP
3963
3964 r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries,
3965 ioctl);
674eea0f
AK
3966 if (r)
3967 goto out;
3968
3969 r = -EFAULT;
0e96f31e 3970 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
674eea0f
AK
3971 goto out;
3972 r = 0;
3973 break;
3974 }
cf6c26ec 3975 case KVM_X86_GET_MCE_CAP_SUPPORTED:
890ca9ae 3976 r = -EFAULT;
c45dcc71
AR
3977 if (copy_to_user(argp, &kvm_mce_cap_supported,
3978 sizeof(kvm_mce_cap_supported)))
890ca9ae
HY
3979 goto out;
3980 r = 0;
3981 break;
801e459a
TL
3982 case KVM_GET_MSR_FEATURE_INDEX_LIST: {
3983 struct kvm_msr_list __user *user_msr_list = argp;
3984 struct kvm_msr_list msr_list;
3985 unsigned int n;
3986
3987 r = -EFAULT;
3988 if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list)))
3989 goto out;
3990 n = msr_list.nmsrs;
3991 msr_list.nmsrs = num_msr_based_features;
3992 if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list)))
3993 goto out;
3994 r = -E2BIG;
3995 if (n < msr_list.nmsrs)
3996 goto out;
3997 r = -EFAULT;
3998 if (copy_to_user(user_msr_list->indices, &msr_based_features,
3999 num_msr_based_features * sizeof(u32)))
4000 goto out;
4001 r = 0;
4002 break;
4003 }
4004 case KVM_GET_MSRS:
4005 r = msr_io(NULL, argp, do_get_msr_feature, 1);
4006 break;
c21d54f0
VK
4007 case KVM_GET_SUPPORTED_HV_CPUID:
4008 r = kvm_ioctl_get_supported_hv_cpuid(NULL, argp);
4009 break;
043405e1
CO
4010 default:
4011 r = -EINVAL;
cf6c26ec 4012 break;
043405e1
CO
4013 }
4014out:
4015 return r;
4016}
4017
f5f48ee1
SY
4018static void wbinvd_ipi(void *garbage)
4019{
4020 wbinvd();
4021}
4022
4023static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu)
4024{
e0f0bbc5 4025 return kvm_arch_has_noncoherent_dma(vcpu->kvm);
f5f48ee1
SY
4026}
4027
313a3dc7
CO
4028void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
4029{
f5f48ee1
SY
4030 /* Address WBINVD may be executed by guest */
4031 if (need_emulate_wbinvd(vcpu)) {
b3646477 4032 if (static_call(kvm_x86_has_wbinvd_exit)())
f5f48ee1
SY
4033 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
4034 else if (vcpu->cpu != -1 && vcpu->cpu != cpu)
4035 smp_call_function_single(vcpu->cpu,
4036 wbinvd_ipi, NULL, 1);
4037 }
4038
b3646477 4039 static_call(kvm_x86_vcpu_load)(vcpu, cpu);
8f6055cb 4040
37486135
BM
4041 /* Save host pkru register if supported */
4042 vcpu->arch.host_pkru = read_pkru();
4043
0dd6a6ed
ZA
4044 /* Apply any externally detected TSC adjustments (due to suspend) */
4045 if (unlikely(vcpu->arch.tsc_offset_adjustment)) {
4046 adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment);
4047 vcpu->arch.tsc_offset_adjustment = 0;
105b21bb 4048 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
0dd6a6ed 4049 }
8f6055cb 4050
b0c39dc6 4051 if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) {
6f526ec5 4052 s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 :
4ea1636b 4053 rdtsc() - vcpu->arch.last_host_tsc;
e48672fa
ZA
4054 if (tsc_delta < 0)
4055 mark_tsc_unstable("KVM discovered backwards TSC");
ce7a058a 4056
b0c39dc6 4057 if (kvm_check_tsc_unstable()) {
07c1419a 4058 u64 offset = kvm_compute_tsc_offset(vcpu,
b183aa58 4059 vcpu->arch.last_guest_tsc);
a545ab6a 4060 kvm_vcpu_write_tsc_offset(vcpu, offset);
c285545f 4061 vcpu->arch.tsc_catchup = 1;
c285545f 4062 }
a749e247
PB
4063
4064 if (kvm_lapic_hv_timer_in_use(vcpu))
4065 kvm_lapic_restart_hv_timer(vcpu);
4066
d98d07ca
MT
4067 /*
4068 * On a host with synchronized TSC, there is no need to update
4069 * kvmclock on vcpu->cpu migration
4070 */
4071 if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1)
0061d53d 4072 kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu);
c285545f 4073 if (vcpu->cpu != cpu)
1bd2009e 4074 kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu);
e48672fa 4075 vcpu->cpu = cpu;
6b7d7e76 4076 }
c9aaa895 4077
c9aaa895 4078 kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu);
313a3dc7
CO
4079}
4080
0b9f6c46
PX
4081static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
4082{
b0431382
BO
4083 struct kvm_host_map map;
4084 struct kvm_steal_time *st;
4085
0b9f6c46
PX
4086 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
4087 return;
4088
a6bd811f 4089 if (vcpu->arch.st.preempted)
8c6de56a
BO
4090 return;
4091
b0431382
BO
4092 if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT, &map,
4093 &vcpu->arch.st.cache, true))
9c1a0744 4094 return;
b0431382
BO
4095
4096 st = map.hva +
4097 offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
0b9f6c46 4098
a6bd811f 4099 st->preempted = vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED;
0b9f6c46 4100
b0431382 4101 kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, true);
0b9f6c46
PX
4102}
4103
313a3dc7
CO
4104void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
4105{
9c1a0744
WL
4106 int idx;
4107
f1c6366e 4108 if (vcpu->preempted && !vcpu->arch.guest_state_protected)
b3646477 4109 vcpu->arch.preempted_in_kernel = !static_call(kvm_x86_get_cpl)(vcpu);
de63ad4c 4110
9c1a0744
WL
4111 /*
4112 * Take the srcu lock as memslots will be accessed to check the gfn
4113 * cache generation against the memslots generation.
4114 */
4115 idx = srcu_read_lock(&vcpu->kvm->srcu);
30b5c851
DW
4116 if (kvm_xen_msr_enabled(vcpu->kvm))
4117 kvm_xen_runstate_set_preempted(vcpu);
4118 else
4119 kvm_steal_time_set_preempted(vcpu);
9c1a0744 4120 srcu_read_unlock(&vcpu->kvm->srcu, idx);
30b5c851 4121
b3646477 4122 static_call(kvm_x86_vcpu_put)(vcpu);
4ea1636b 4123 vcpu->arch.last_host_tsc = rdtsc();
efdab992 4124 /*
f9dcf08e
RK
4125 * If userspace has set any breakpoints or watchpoints, dr6 is restored
4126 * on every vmexit, but if not, we might have a stale dr6 from the
4127 * guest. do_debug expects dr6 to be cleared after it runs, do the same.
efdab992 4128 */
f9dcf08e 4129 set_debugreg(0, 6);
313a3dc7
CO
4130}
4131
313a3dc7
CO
4132static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
4133 struct kvm_lapic_state *s)
4134{
fa59cc00 4135 if (vcpu->arch.apicv_active)
b3646477 4136 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
d62caabb 4137
a92e2543 4138 return kvm_apic_get_state(vcpu, s);
313a3dc7
CO
4139}
4140
4141static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
4142 struct kvm_lapic_state *s)
4143{
a92e2543
RK
4144 int r;
4145
4146 r = kvm_apic_set_state(vcpu, s);
4147 if (r)
4148 return r;
cb142eb7 4149 update_cr8_intercept(vcpu);
313a3dc7
CO
4150
4151 return 0;
4152}
4153
127a457a
MG
4154static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu)
4155{
71cc849b
PB
4156 /*
4157 * We can accept userspace's request for interrupt injection
4158 * as long as we have a place to store the interrupt number.
4159 * The actual injection will happen when the CPU is able to
4160 * deliver the interrupt.
4161 */
4162 if (kvm_cpu_has_extint(vcpu))
4163 return false;
4164
4165 /* Acknowledging ExtINT does not happen if LINT0 is masked. */
127a457a
MG
4166 return (!lapic_in_kernel(vcpu) ||
4167 kvm_apic_accept_pic_intr(vcpu));
4168}
4169
782d422b
MG
4170static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu)
4171{
4172 return kvm_arch_interrupt_allowed(vcpu) &&
782d422b
MG
4173 kvm_cpu_accept_dm_intr(vcpu);
4174}
4175
f77bc6a4
ZX
4176static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
4177 struct kvm_interrupt *irq)
4178{
02cdb50f 4179 if (irq->irq >= KVM_NR_INTERRUPTS)
f77bc6a4 4180 return -EINVAL;
1c1a9ce9
SR
4181
4182 if (!irqchip_in_kernel(vcpu->kvm)) {
4183 kvm_queue_interrupt(vcpu, irq->irq, false);
4184 kvm_make_request(KVM_REQ_EVENT, vcpu);
4185 return 0;
4186 }
4187
4188 /*
4189 * With in-kernel LAPIC, we only use this to inject EXTINT, so
4190 * fail for in-kernel 8259.
4191 */
4192 if (pic_in_kernel(vcpu->kvm))
f77bc6a4 4193 return -ENXIO;
f77bc6a4 4194
1c1a9ce9
SR
4195 if (vcpu->arch.pending_external_vector != -1)
4196 return -EEXIST;
f77bc6a4 4197
1c1a9ce9 4198 vcpu->arch.pending_external_vector = irq->irq;
934bf653 4199 kvm_make_request(KVM_REQ_EVENT, vcpu);
f77bc6a4
ZX
4200 return 0;
4201}
4202
c4abb7c9
JK
4203static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
4204{
c4abb7c9 4205 kvm_inject_nmi(vcpu);
c4abb7c9
JK
4206
4207 return 0;
4208}
4209
f077825a
PB
4210static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu)
4211{
64d60670
PB
4212 kvm_make_request(KVM_REQ_SMI, vcpu);
4213
f077825a
PB
4214 return 0;
4215}
4216
b209749f
AK
4217static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
4218 struct kvm_tpr_access_ctl *tac)
4219{
4220 if (tac->flags)
4221 return -EINVAL;
4222 vcpu->arch.tpr_access_reporting = !!tac->enabled;
4223 return 0;
4224}
4225
890ca9ae
HY
4226static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu,
4227 u64 mcg_cap)
4228{
4229 int r;
4230 unsigned bank_num = mcg_cap & 0xff, bank;
4231
4232 r = -EINVAL;
c4e0e4ab 4233 if (!bank_num || bank_num > KVM_MAX_MCE_BANKS)
890ca9ae 4234 goto out;
c45dcc71 4235 if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000))
890ca9ae
HY
4236 goto out;
4237 r = 0;
4238 vcpu->arch.mcg_cap = mcg_cap;
4239 /* Init IA32_MCG_CTL to all 1s */
4240 if (mcg_cap & MCG_CTL_P)
4241 vcpu->arch.mcg_ctl = ~(u64)0;
4242 /* Init IA32_MCi_CTL to all 1s */
4243 for (bank = 0; bank < bank_num; bank++)
4244 vcpu->arch.mce_banks[bank*4] = ~(u64)0;
c45dcc71 4245
b3646477 4246 static_call(kvm_x86_setup_mce)(vcpu);
890ca9ae
HY
4247out:
4248 return r;
4249}
4250
4251static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu,
4252 struct kvm_x86_mce *mce)
4253{
4254 u64 mcg_cap = vcpu->arch.mcg_cap;
4255 unsigned bank_num = mcg_cap & 0xff;
4256 u64 *banks = vcpu->arch.mce_banks;
4257
4258 if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL))
4259 return -EINVAL;
4260 /*
4261 * if IA32_MCG_CTL is not all 1s, the uncorrected error
4262 * reporting is disabled
4263 */
4264 if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) &&
4265 vcpu->arch.mcg_ctl != ~(u64)0)
4266 return 0;
4267 banks += 4 * mce->bank;
4268 /*
4269 * if IA32_MCi_CTL is not all 1s, the uncorrected error
4270 * reporting is disabled for the bank
4271 */
4272 if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0)
4273 return 0;
4274 if (mce->status & MCI_STATUS_UC) {
4275 if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) ||
fc78f519 4276 !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) {
a8eeb04a 4277 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
890ca9ae
HY
4278 return 0;
4279 }
4280 if (banks[1] & MCI_STATUS_VAL)
4281 mce->status |= MCI_STATUS_OVER;
4282 banks[2] = mce->addr;
4283 banks[3] = mce->misc;
4284 vcpu->arch.mcg_status = mce->mcg_status;
4285 banks[1] = mce->status;
4286 kvm_queue_exception(vcpu, MC_VECTOR);
4287 } else if (!(banks[1] & MCI_STATUS_VAL)
4288 || !(banks[1] & MCI_STATUS_UC)) {
4289 if (banks[1] & MCI_STATUS_VAL)
4290 mce->status |= MCI_STATUS_OVER;
4291 banks[2] = mce->addr;
4292 banks[3] = mce->misc;
4293 banks[1] = mce->status;
4294 } else
4295 banks[1] |= MCI_STATUS_OVER;
4296 return 0;
4297}
4298
3cfc3092
JK
4299static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu,
4300 struct kvm_vcpu_events *events)
4301{
7460fb4a 4302 process_nmi(vcpu);
59073aaf 4303
1f7becf1
JZ
4304 if (kvm_check_request(KVM_REQ_SMI, vcpu))
4305 process_smi(vcpu);
4306
a06230b6
OU
4307 /*
4308 * In guest mode, payload delivery should be deferred,
4309 * so that the L1 hypervisor can intercept #PF before
4310 * CR2 is modified (or intercept #DB before DR6 is
4311 * modified under nVMX). Unless the per-VM capability,
4312 * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of
4313 * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we
4314 * opportunistically defer the exception payload, deliver it if the
4315 * capability hasn't been requested before processing a
4316 * KVM_GET_VCPU_EVENTS.
4317 */
4318 if (!vcpu->kvm->arch.exception_payload_enabled &&
4319 vcpu->arch.exception.pending && vcpu->arch.exception.has_payload)
4320 kvm_deliver_exception_payload(vcpu);
4321
664f8e26 4322 /*
59073aaf
JM
4323 * The API doesn't provide the instruction length for software
4324 * exceptions, so don't report them. As long as the guest RIP
4325 * isn't advanced, we should expect to encounter the exception
4326 * again.
664f8e26 4327 */
59073aaf
JM
4328 if (kvm_exception_is_soft(vcpu->arch.exception.nr)) {
4329 events->exception.injected = 0;
4330 events->exception.pending = 0;
4331 } else {
4332 events->exception.injected = vcpu->arch.exception.injected;
4333 events->exception.pending = vcpu->arch.exception.pending;
4334 /*
4335 * For ABI compatibility, deliberately conflate
4336 * pending and injected exceptions when
4337 * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled.
4338 */
4339 if (!vcpu->kvm->arch.exception_payload_enabled)
4340 events->exception.injected |=
4341 vcpu->arch.exception.pending;
4342 }
3cfc3092
JK
4343 events->exception.nr = vcpu->arch.exception.nr;
4344 events->exception.has_error_code = vcpu->arch.exception.has_error_code;
4345 events->exception.error_code = vcpu->arch.exception.error_code;
59073aaf
JM
4346 events->exception_has_payload = vcpu->arch.exception.has_payload;
4347 events->exception_payload = vcpu->arch.exception.payload;
3cfc3092 4348
03b82a30 4349 events->interrupt.injected =
04140b41 4350 vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft;
3cfc3092 4351 events->interrupt.nr = vcpu->arch.interrupt.nr;
03b82a30 4352 events->interrupt.soft = 0;
b3646477 4353 events->interrupt.shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
3cfc3092
JK
4354
4355 events->nmi.injected = vcpu->arch.nmi_injected;
7460fb4a 4356 events->nmi.pending = vcpu->arch.nmi_pending != 0;
b3646477 4357 events->nmi.masked = static_call(kvm_x86_get_nmi_mask)(vcpu);
97e69aa6 4358 events->nmi.pad = 0;
3cfc3092 4359
66450a21 4360 events->sipi_vector = 0; /* never valid when reporting to user space */
3cfc3092 4361
f077825a
PB
4362 events->smi.smm = is_smm(vcpu);
4363 events->smi.pending = vcpu->arch.smi_pending;
4364 events->smi.smm_inside_nmi =
4365 !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK);
4366 events->smi.latched_init = kvm_lapic_latched_init(vcpu);
4367
dab4b911 4368 events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING
f077825a
PB
4369 | KVM_VCPUEVENT_VALID_SHADOW
4370 | KVM_VCPUEVENT_VALID_SMM);
59073aaf
JM
4371 if (vcpu->kvm->arch.exception_payload_enabled)
4372 events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD;
4373
97e69aa6 4374 memset(&events->reserved, 0, sizeof(events->reserved));
3cfc3092
JK
4375}
4376
c5833c7a 4377static void kvm_smm_changed(struct kvm_vcpu *vcpu);
6ef4e07e 4378
3cfc3092
JK
4379static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu,
4380 struct kvm_vcpu_events *events)
4381{
dab4b911 4382 if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING
48005f64 4383 | KVM_VCPUEVENT_VALID_SIPI_VECTOR
f077825a 4384 | KVM_VCPUEVENT_VALID_SHADOW
59073aaf
JM
4385 | KVM_VCPUEVENT_VALID_SMM
4386 | KVM_VCPUEVENT_VALID_PAYLOAD))
3cfc3092
JK
4387 return -EINVAL;
4388
59073aaf
JM
4389 if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) {
4390 if (!vcpu->kvm->arch.exception_payload_enabled)
4391 return -EINVAL;
4392 if (events->exception.pending)
4393 events->exception.injected = 0;
4394 else
4395 events->exception_has_payload = 0;
4396 } else {
4397 events->exception.pending = 0;
4398 events->exception_has_payload = 0;
4399 }
4400
4401 if ((events->exception.injected || events->exception.pending) &&
4402 (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR))
78e546c8
PB
4403 return -EINVAL;
4404
28bf2888
DH
4405 /* INITs are latched while in SMM */
4406 if (events->flags & KVM_VCPUEVENT_VALID_SMM &&
4407 (events->smi.smm || events->smi.pending) &&
4408 vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED)
4409 return -EINVAL;
4410
7460fb4a 4411 process_nmi(vcpu);
59073aaf
JM
4412 vcpu->arch.exception.injected = events->exception.injected;
4413 vcpu->arch.exception.pending = events->exception.pending;
3cfc3092
JK
4414 vcpu->arch.exception.nr = events->exception.nr;
4415 vcpu->arch.exception.has_error_code = events->exception.has_error_code;
4416 vcpu->arch.exception.error_code = events->exception.error_code;
59073aaf
JM
4417 vcpu->arch.exception.has_payload = events->exception_has_payload;
4418 vcpu->arch.exception.payload = events->exception_payload;
3cfc3092 4419
04140b41 4420 vcpu->arch.interrupt.injected = events->interrupt.injected;
3cfc3092
JK
4421 vcpu->arch.interrupt.nr = events->interrupt.nr;
4422 vcpu->arch.interrupt.soft = events->interrupt.soft;
48005f64 4423 if (events->flags & KVM_VCPUEVENT_VALID_SHADOW)
b3646477
JB
4424 static_call(kvm_x86_set_interrupt_shadow)(vcpu,
4425 events->interrupt.shadow);
3cfc3092
JK
4426
4427 vcpu->arch.nmi_injected = events->nmi.injected;
dab4b911
JK
4428 if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING)
4429 vcpu->arch.nmi_pending = events->nmi.pending;
b3646477 4430 static_call(kvm_x86_set_nmi_mask)(vcpu, events->nmi.masked);
3cfc3092 4431
66450a21 4432 if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR &&
bce87cce 4433 lapic_in_kernel(vcpu))
66450a21 4434 vcpu->arch.apic->sipi_vector = events->sipi_vector;
3cfc3092 4435
f077825a 4436 if (events->flags & KVM_VCPUEVENT_VALID_SMM) {
c5833c7a
SC
4437 if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm) {
4438 if (events->smi.smm)
4439 vcpu->arch.hflags |= HF_SMM_MASK;
4440 else
4441 vcpu->arch.hflags &= ~HF_SMM_MASK;
4442 kvm_smm_changed(vcpu);
4443 }
6ef4e07e 4444
f077825a 4445 vcpu->arch.smi_pending = events->smi.pending;
f4ef1910
WL
4446
4447 if (events->smi.smm) {
4448 if (events->smi.smm_inside_nmi)
4449 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
f077825a 4450 else
f4ef1910 4451 vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK;
ff90afa7
LA
4452 }
4453
4454 if (lapic_in_kernel(vcpu)) {
4455 if (events->smi.latched_init)
4456 set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
4457 else
4458 clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events);
f077825a
PB
4459 }
4460 }
4461
3842d135
AK
4462 kvm_make_request(KVM_REQ_EVENT, vcpu);
4463
3cfc3092
JK
4464 return 0;
4465}
4466
a1efbe77
JK
4467static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu,
4468 struct kvm_debugregs *dbgregs)
4469{
73aaf249
JK
4470 unsigned long val;
4471
a1efbe77 4472 memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db));
16f8a6f9 4473 kvm_get_dr(vcpu, 6, &val);
73aaf249 4474 dbgregs->dr6 = val;
a1efbe77
JK
4475 dbgregs->dr7 = vcpu->arch.dr7;
4476 dbgregs->flags = 0;
97e69aa6 4477 memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved));
a1efbe77
JK
4478}
4479
4480static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu,
4481 struct kvm_debugregs *dbgregs)
4482{
4483 if (dbgregs->flags)
4484 return -EINVAL;
4485
fd238002 4486 if (!kvm_dr6_valid(dbgregs->dr6))
d14bdb55 4487 return -EINVAL;
fd238002 4488 if (!kvm_dr7_valid(dbgregs->dr7))
d14bdb55
PB
4489 return -EINVAL;
4490
a1efbe77 4491 memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db));
ae561ede 4492 kvm_update_dr0123(vcpu);
a1efbe77
JK
4493 vcpu->arch.dr6 = dbgregs->dr6;
4494 vcpu->arch.dr7 = dbgregs->dr7;
9926c9fd 4495 kvm_update_dr7(vcpu);
a1efbe77 4496
a1efbe77
JK
4497 return 0;
4498}
4499
df1daba7
PB
4500#define XSTATE_COMPACTION_ENABLED (1ULL << 63)
4501
4502static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu)
4503{
b666a4b6 4504 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
400e4b20 4505 u64 xstate_bv = xsave->header.xfeatures;
df1daba7
PB
4506 u64 valid;
4507
4508 /*
4509 * Copy legacy XSAVE area, to avoid complications with CPUID
4510 * leaves 0 and 1 in the loop below.
4511 */
4512 memcpy(dest, xsave, XSAVE_HDR_OFFSET);
4513
4514 /* Set XSTATE_BV */
00c87e9a 4515 xstate_bv &= vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FPSSE;
df1daba7
PB
4516 *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv;
4517
4518 /*
4519 * Copy each region from the possibly compacted offset to the
4520 * non-compacted offset.
4521 */
d91cab78 4522 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
df1daba7 4523 while (valid) {
abd16d68
SAS
4524 u64 xfeature_mask = valid & -valid;
4525 int xfeature_nr = fls64(xfeature_mask) - 1;
4526 void *src = get_xsave_addr(xsave, xfeature_nr);
df1daba7
PB
4527
4528 if (src) {
4529 u32 size, offset, ecx, edx;
abd16d68 4530 cpuid_count(XSTATE_CPUID, xfeature_nr,
df1daba7 4531 &size, &offset, &ecx, &edx);
abd16d68 4532 if (xfeature_nr == XFEATURE_PKRU)
38cfd5e3
PB
4533 memcpy(dest + offset, &vcpu->arch.pkru,
4534 sizeof(vcpu->arch.pkru));
4535 else
4536 memcpy(dest + offset, src, size);
4537
df1daba7
PB
4538 }
4539
abd16d68 4540 valid -= xfeature_mask;
df1daba7
PB
4541 }
4542}
4543
4544static void load_xsave(struct kvm_vcpu *vcpu, u8 *src)
4545{
b666a4b6 4546 struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave;
df1daba7
PB
4547 u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET);
4548 u64 valid;
4549
4550 /*
4551 * Copy legacy XSAVE area, to avoid complications with CPUID
4552 * leaves 0 and 1 in the loop below.
4553 */
4554 memcpy(xsave, src, XSAVE_HDR_OFFSET);
4555
4556 /* Set XSTATE_BV and possibly XCOMP_BV. */
400e4b20 4557 xsave->header.xfeatures = xstate_bv;
782511b0 4558 if (boot_cpu_has(X86_FEATURE_XSAVES))
3a54450b 4559 xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED;
df1daba7
PB
4560
4561 /*
4562 * Copy each region from the non-compacted offset to the
4563 * possibly compacted offset.
4564 */
d91cab78 4565 valid = xstate_bv & ~XFEATURE_MASK_FPSSE;
df1daba7 4566 while (valid) {
abd16d68
SAS
4567 u64 xfeature_mask = valid & -valid;
4568 int xfeature_nr = fls64(xfeature_mask) - 1;
4569 void *dest = get_xsave_addr(xsave, xfeature_nr);
df1daba7
PB
4570
4571 if (dest) {
4572 u32 size, offset, ecx, edx;
abd16d68 4573 cpuid_count(XSTATE_CPUID, xfeature_nr,
df1daba7 4574 &size, &offset, &ecx, &edx);
abd16d68 4575 if (xfeature_nr == XFEATURE_PKRU)
38cfd5e3
PB
4576 memcpy(&vcpu->arch.pkru, src + offset,
4577 sizeof(vcpu->arch.pkru));
4578 else
4579 memcpy(dest, src + offset, size);
ee4100da 4580 }
df1daba7 4581
abd16d68 4582 valid -= xfeature_mask;
df1daba7
PB
4583 }
4584}
4585
2d5b5a66
SY
4586static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu,
4587 struct kvm_xsave *guest_xsave)
4588{
ed02b213
TL
4589 if (!vcpu->arch.guest_fpu)
4590 return;
4591
d366bf7e 4592 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
df1daba7
PB
4593 memset(guest_xsave, 0, sizeof(struct kvm_xsave));
4594 fill_xsave((u8 *) guest_xsave->region, vcpu);
4344ee98 4595 } else {
2d5b5a66 4596 memcpy(guest_xsave->region,
b666a4b6 4597 &vcpu->arch.guest_fpu->state.fxsave,
c47ada30 4598 sizeof(struct fxregs_state));
2d5b5a66 4599 *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] =
d91cab78 4600 XFEATURE_MASK_FPSSE;
2d5b5a66
SY
4601 }
4602}
4603
a575813b
WL
4604#define XSAVE_MXCSR_OFFSET 24
4605
2d5b5a66
SY
4606static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu,
4607 struct kvm_xsave *guest_xsave)
4608{
ed02b213
TL
4609 u64 xstate_bv;
4610 u32 mxcsr;
4611
4612 if (!vcpu->arch.guest_fpu)
4613 return 0;
4614
4615 xstate_bv = *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)];
4616 mxcsr = *(u32 *)&guest_xsave->region[XSAVE_MXCSR_OFFSET / sizeof(u32)];
2d5b5a66 4617
d366bf7e 4618 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
d7876f1b
PB
4619 /*
4620 * Here we allow setting states that are not present in
4621 * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility
4622 * with old userspace.
4623 */
cfc48181 4624 if (xstate_bv & ~supported_xcr0 || mxcsr & ~mxcsr_feature_mask)
d7876f1b 4625 return -EINVAL;
df1daba7 4626 load_xsave(vcpu, (u8 *)guest_xsave->region);
d7876f1b 4627 } else {
a575813b
WL
4628 if (xstate_bv & ~XFEATURE_MASK_FPSSE ||
4629 mxcsr & ~mxcsr_feature_mask)
2d5b5a66 4630 return -EINVAL;
b666a4b6 4631 memcpy(&vcpu->arch.guest_fpu->state.fxsave,
c47ada30 4632 guest_xsave->region, sizeof(struct fxregs_state));
2d5b5a66
SY
4633 }
4634 return 0;
4635}
4636
4637static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu,
4638 struct kvm_xcrs *guest_xcrs)
4639{
d366bf7e 4640 if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
2d5b5a66
SY
4641 guest_xcrs->nr_xcrs = 0;
4642 return;
4643 }
4644
4645 guest_xcrs->nr_xcrs = 1;
4646 guest_xcrs->flags = 0;
4647 guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK;
4648 guest_xcrs->xcrs[0].value = vcpu->arch.xcr0;
4649}
4650
4651static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu,
4652 struct kvm_xcrs *guest_xcrs)
4653{
4654 int i, r = 0;
4655
d366bf7e 4656 if (!boot_cpu_has(X86_FEATURE_XSAVE))
2d5b5a66
SY
4657 return -EINVAL;
4658
4659 if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags)
4660 return -EINVAL;
4661
4662 for (i = 0; i < guest_xcrs->nr_xcrs; i++)
4663 /* Only support XCR0 currently */
c67a04cb 4664 if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) {
2d5b5a66 4665 r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK,
c67a04cb 4666 guest_xcrs->xcrs[i].value);
2d5b5a66
SY
4667 break;
4668 }
4669 if (r)
4670 r = -EINVAL;
4671 return r;
4672}
4673
1c0b28c2
EM
4674/*
4675 * kvm_set_guest_paused() indicates to the guest kernel that it has been
4676 * stopped by the hypervisor. This function will be called from the host only.
4677 * EINVAL is returned when the host attempts to set the flag for a guest that
4678 * does not support pv clocks.
4679 */
4680static int kvm_set_guest_paused(struct kvm_vcpu *vcpu)
4681{
0b79459b 4682 if (!vcpu->arch.pv_time_enabled)
1c0b28c2 4683 return -EINVAL;
51d59c6b 4684 vcpu->arch.pvclock_set_guest_stopped_request = true;
1c0b28c2
EM
4685 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
4686 return 0;
4687}
4688
5c919412
AS
4689static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
4690 struct kvm_enable_cap *cap)
4691{
57b119da
VK
4692 int r;
4693 uint16_t vmcs_version;
4694 void __user *user_ptr;
4695
5c919412
AS
4696 if (cap->flags)
4697 return -EINVAL;
4698
4699 switch (cap->cap) {
efc479e6
RK
4700 case KVM_CAP_HYPERV_SYNIC2:
4701 if (cap->args[0])
4702 return -EINVAL;
df561f66 4703 fallthrough;
b2869f28 4704
5c919412 4705 case KVM_CAP_HYPERV_SYNIC:
546d87e5
WL
4706 if (!irqchip_in_kernel(vcpu->kvm))
4707 return -EINVAL;
efc479e6
RK
4708 return kvm_hv_activate_synic(vcpu, cap->cap ==
4709 KVM_CAP_HYPERV_SYNIC2);
57b119da 4710 case KVM_CAP_HYPERV_ENLIGHTENED_VMCS:
33b22172 4711 if (!kvm_x86_ops.nested_ops->enable_evmcs)
5158917c 4712 return -ENOTTY;
33b22172 4713 r = kvm_x86_ops.nested_ops->enable_evmcs(vcpu, &vmcs_version);
57b119da
VK
4714 if (!r) {
4715 user_ptr = (void __user *)(uintptr_t)cap->args[0];
4716 if (copy_to_user(user_ptr, &vmcs_version,
4717 sizeof(vmcs_version)))
4718 r = -EFAULT;
4719 }
4720 return r;
344c6c80 4721 case KVM_CAP_HYPERV_DIRECT_TLBFLUSH:
afaf0b2f 4722 if (!kvm_x86_ops.enable_direct_tlbflush)
344c6c80
TL
4723 return -ENOTTY;
4724
b3646477 4725 return static_call(kvm_x86_enable_direct_tlbflush)(vcpu);
57b119da 4726
66570e96
OU
4727 case KVM_CAP_ENFORCE_PV_FEATURE_CPUID:
4728 vcpu->arch.pv_cpuid.enforce = cap->args[0];
01b4f510
OU
4729 if (vcpu->arch.pv_cpuid.enforce)
4730 kvm_update_pv_runtime(vcpu);
66570e96
OU
4731
4732 return 0;
5c919412
AS
4733 default:
4734 return -EINVAL;
4735 }
4736}
4737
313a3dc7
CO
4738long kvm_arch_vcpu_ioctl(struct file *filp,
4739 unsigned int ioctl, unsigned long arg)
4740{
4741 struct kvm_vcpu *vcpu = filp->private_data;
4742 void __user *argp = (void __user *)arg;
4743 int r;
d1ac91d8
AK
4744 union {
4745 struct kvm_lapic_state *lapic;
4746 struct kvm_xsave *xsave;
4747 struct kvm_xcrs *xcrs;
4748 void *buffer;
4749 } u;
4750
9b062471
CD
4751 vcpu_load(vcpu);
4752
d1ac91d8 4753 u.buffer = NULL;
313a3dc7
CO
4754 switch (ioctl) {
4755 case KVM_GET_LAPIC: {
2204ae3c 4756 r = -EINVAL;
bce87cce 4757 if (!lapic_in_kernel(vcpu))
2204ae3c 4758 goto out;
254272ce
BG
4759 u.lapic = kzalloc(sizeof(struct kvm_lapic_state),
4760 GFP_KERNEL_ACCOUNT);
313a3dc7 4761
b772ff36 4762 r = -ENOMEM;
d1ac91d8 4763 if (!u.lapic)
b772ff36 4764 goto out;
d1ac91d8 4765 r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic);
313a3dc7
CO
4766 if (r)
4767 goto out;
4768 r = -EFAULT;
d1ac91d8 4769 if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state)))
313a3dc7
CO
4770 goto out;
4771 r = 0;
4772 break;
4773 }
4774 case KVM_SET_LAPIC: {
2204ae3c 4775 r = -EINVAL;
bce87cce 4776 if (!lapic_in_kernel(vcpu))
2204ae3c 4777 goto out;
ff5c2c03 4778 u.lapic = memdup_user(argp, sizeof(*u.lapic));
9b062471
CD
4779 if (IS_ERR(u.lapic)) {
4780 r = PTR_ERR(u.lapic);
4781 goto out_nofree;
4782 }
ff5c2c03 4783
d1ac91d8 4784 r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic);
313a3dc7
CO
4785 break;
4786 }
f77bc6a4
ZX
4787 case KVM_INTERRUPT: {
4788 struct kvm_interrupt irq;
4789
4790 r = -EFAULT;
0e96f31e 4791 if (copy_from_user(&irq, argp, sizeof(irq)))
f77bc6a4
ZX
4792 goto out;
4793 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
f77bc6a4
ZX
4794 break;
4795 }
c4abb7c9
JK
4796 case KVM_NMI: {
4797 r = kvm_vcpu_ioctl_nmi(vcpu);
c4abb7c9
JK
4798 break;
4799 }
f077825a
PB
4800 case KVM_SMI: {
4801 r = kvm_vcpu_ioctl_smi(vcpu);
4802 break;
4803 }
313a3dc7
CO
4804 case KVM_SET_CPUID: {
4805 struct kvm_cpuid __user *cpuid_arg = argp;
4806 struct kvm_cpuid cpuid;
4807
4808 r = -EFAULT;
0e96f31e 4809 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
313a3dc7
CO
4810 goto out;
4811 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
313a3dc7
CO
4812 break;
4813 }
07716717
DK
4814 case KVM_SET_CPUID2: {
4815 struct kvm_cpuid2 __user *cpuid_arg = argp;
4816 struct kvm_cpuid2 cpuid;
4817
4818 r = -EFAULT;
0e96f31e 4819 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
07716717
DK
4820 goto out;
4821 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
19355475 4822 cpuid_arg->entries);
07716717
DK
4823 break;
4824 }
4825 case KVM_GET_CPUID2: {
4826 struct kvm_cpuid2 __user *cpuid_arg = argp;
4827 struct kvm_cpuid2 cpuid;
4828
4829 r = -EFAULT;
0e96f31e 4830 if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid)))
07716717
DK
4831 goto out;
4832 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
19355475 4833 cpuid_arg->entries);
07716717
DK
4834 if (r)
4835 goto out;
4836 r = -EFAULT;
0e96f31e 4837 if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid)))
07716717
DK
4838 goto out;
4839 r = 0;
4840 break;
4841 }
801e459a
TL
4842 case KVM_GET_MSRS: {
4843 int idx = srcu_read_lock(&vcpu->kvm->srcu);
609e36d3 4844 r = msr_io(vcpu, argp, do_get_msr, 1);
801e459a 4845 srcu_read_unlock(&vcpu->kvm->srcu, idx);
313a3dc7 4846 break;
801e459a
TL
4847 }
4848 case KVM_SET_MSRS: {
4849 int idx = srcu_read_lock(&vcpu->kvm->srcu);
313a3dc7 4850 r = msr_io(vcpu, argp, do_set_msr, 0);
801e459a 4851 srcu_read_unlock(&vcpu->kvm->srcu, idx);
313a3dc7 4852 break;
801e459a 4853 }
b209749f
AK
4854 case KVM_TPR_ACCESS_REPORTING: {
4855 struct kvm_tpr_access_ctl tac;
4856
4857 r = -EFAULT;
0e96f31e 4858 if (copy_from_user(&tac, argp, sizeof(tac)))
b209749f
AK
4859 goto out;
4860 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
4861 if (r)
4862 goto out;
4863 r = -EFAULT;
0e96f31e 4864 if (copy_to_user(argp, &tac, sizeof(tac)))
b209749f
AK
4865 goto out;
4866 r = 0;
4867 break;
4868 };
b93463aa
AK
4869 case KVM_SET_VAPIC_ADDR: {
4870 struct kvm_vapic_addr va;
7301d6ab 4871 int idx;
b93463aa
AK
4872
4873 r = -EINVAL;
35754c98 4874 if (!lapic_in_kernel(vcpu))
b93463aa
AK
4875 goto out;
4876 r = -EFAULT;
0e96f31e 4877 if (copy_from_user(&va, argp, sizeof(va)))
b93463aa 4878 goto out;
7301d6ab 4879 idx = srcu_read_lock(&vcpu->kvm->srcu);
fda4e2e8 4880 r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
7301d6ab 4881 srcu_read_unlock(&vcpu->kvm->srcu, idx);
b93463aa
AK
4882 break;
4883 }
890ca9ae
HY
4884 case KVM_X86_SETUP_MCE: {
4885 u64 mcg_cap;
4886
4887 r = -EFAULT;
0e96f31e 4888 if (copy_from_user(&mcg_cap, argp, sizeof(mcg_cap)))
890ca9ae
HY
4889 goto out;
4890 r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap);
4891 break;
4892 }
4893 case KVM_X86_SET_MCE: {
4894 struct kvm_x86_mce mce;
4895
4896 r = -EFAULT;
0e96f31e 4897 if (copy_from_user(&mce, argp, sizeof(mce)))
890ca9ae
HY
4898 goto out;
4899 r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce);
4900 break;
4901 }
3cfc3092
JK
4902 case KVM_GET_VCPU_EVENTS: {
4903 struct kvm_vcpu_events events;
4904
4905 kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events);
4906
4907 r = -EFAULT;
4908 if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events)))
4909 break;
4910 r = 0;
4911 break;
4912 }
4913 case KVM_SET_VCPU_EVENTS: {
4914 struct kvm_vcpu_events events;
4915
4916 r = -EFAULT;
4917 if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events)))
4918 break;
4919
4920 r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events);
4921 break;
4922 }
a1efbe77
JK
4923 case KVM_GET_DEBUGREGS: {
4924 struct kvm_debugregs dbgregs;
4925
4926 kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs);
4927
4928 r = -EFAULT;
4929 if (copy_to_user(argp, &dbgregs,
4930 sizeof(struct kvm_debugregs)))
4931 break;
4932 r = 0;
4933 break;
4934 }
4935 case KVM_SET_DEBUGREGS: {
4936 struct kvm_debugregs dbgregs;
4937
4938 r = -EFAULT;
4939 if (copy_from_user(&dbgregs, argp,
4940 sizeof(struct kvm_debugregs)))
4941 break;
4942
4943 r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs);
4944 break;
4945 }
2d5b5a66 4946 case KVM_GET_XSAVE: {
254272ce 4947 u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL_ACCOUNT);
2d5b5a66 4948 r = -ENOMEM;
d1ac91d8 4949 if (!u.xsave)
2d5b5a66
SY
4950 break;
4951
d1ac91d8 4952 kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave);
2d5b5a66
SY
4953
4954 r = -EFAULT;
d1ac91d8 4955 if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave)))
2d5b5a66
SY
4956 break;
4957 r = 0;
4958 break;
4959 }
4960 case KVM_SET_XSAVE: {
ff5c2c03 4961 u.xsave = memdup_user(argp, sizeof(*u.xsave));
9b062471
CD
4962 if (IS_ERR(u.xsave)) {
4963 r = PTR_ERR(u.xsave);
4964 goto out_nofree;
4965 }
2d5b5a66 4966
d1ac91d8 4967 r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave);
2d5b5a66
SY
4968 break;
4969 }
4970 case KVM_GET_XCRS: {
254272ce 4971 u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL_ACCOUNT);
2d5b5a66 4972 r = -ENOMEM;
d1ac91d8 4973 if (!u.xcrs)
2d5b5a66
SY
4974 break;
4975
d1ac91d8 4976 kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs);
2d5b5a66
SY
4977
4978 r = -EFAULT;
d1ac91d8 4979 if (copy_to_user(argp, u.xcrs,
2d5b5a66
SY
4980 sizeof(struct kvm_xcrs)))
4981 break;
4982 r = 0;
4983 break;
4984 }
4985 case KVM_SET_XCRS: {
ff5c2c03 4986 u.xcrs = memdup_user(argp, sizeof(*u.xcrs));
9b062471
CD
4987 if (IS_ERR(u.xcrs)) {
4988 r = PTR_ERR(u.xcrs);
4989 goto out_nofree;
4990 }
2d5b5a66 4991
d1ac91d8 4992 r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs);
2d5b5a66
SY
4993 break;
4994 }
92a1f12d
JR
4995 case KVM_SET_TSC_KHZ: {
4996 u32 user_tsc_khz;
4997
4998 r = -EINVAL;
92a1f12d
JR
4999 user_tsc_khz = (u32)arg;
5000
26769f96
MT
5001 if (kvm_has_tsc_control &&
5002 user_tsc_khz >= kvm_max_guest_tsc_khz)
92a1f12d
JR
5003 goto out;
5004
cc578287
ZA
5005 if (user_tsc_khz == 0)
5006 user_tsc_khz = tsc_khz;
5007
381d585c
HZ
5008 if (!kvm_set_tsc_khz(vcpu, user_tsc_khz))
5009 r = 0;
92a1f12d 5010
92a1f12d
JR
5011 goto out;
5012 }
5013 case KVM_GET_TSC_KHZ: {
cc578287 5014 r = vcpu->arch.virtual_tsc_khz;
92a1f12d
JR
5015 goto out;
5016 }
1c0b28c2
EM
5017 case KVM_KVMCLOCK_CTRL: {
5018 r = kvm_set_guest_paused(vcpu);
5019 goto out;
5020 }
5c919412
AS
5021 case KVM_ENABLE_CAP: {
5022 struct kvm_enable_cap cap;
5023
5024 r = -EFAULT;
5025 if (copy_from_user(&cap, argp, sizeof(cap)))
5026 goto out;
5027 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
5028 break;
5029 }
8fcc4b59
JM
5030 case KVM_GET_NESTED_STATE: {
5031 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5032 u32 user_data_size;
5033
5034 r = -EINVAL;
33b22172 5035 if (!kvm_x86_ops.nested_ops->get_state)
8fcc4b59
JM
5036 break;
5037
5038 BUILD_BUG_ON(sizeof(user_data_size) != sizeof(user_kvm_nested_state->size));
26b471c7 5039 r = -EFAULT;
8fcc4b59 5040 if (get_user(user_data_size, &user_kvm_nested_state->size))
26b471c7 5041 break;
8fcc4b59 5042
33b22172
PB
5043 r = kvm_x86_ops.nested_ops->get_state(vcpu, user_kvm_nested_state,
5044 user_data_size);
8fcc4b59 5045 if (r < 0)
26b471c7 5046 break;
8fcc4b59
JM
5047
5048 if (r > user_data_size) {
5049 if (put_user(r, &user_kvm_nested_state->size))
26b471c7
LA
5050 r = -EFAULT;
5051 else
5052 r = -E2BIG;
5053 break;
8fcc4b59 5054 }
26b471c7 5055
8fcc4b59
JM
5056 r = 0;
5057 break;
5058 }
5059 case KVM_SET_NESTED_STATE: {
5060 struct kvm_nested_state __user *user_kvm_nested_state = argp;
5061 struct kvm_nested_state kvm_state;
ad5996d9 5062 int idx;
8fcc4b59
JM
5063
5064 r = -EINVAL;
33b22172 5065 if (!kvm_x86_ops.nested_ops->set_state)
8fcc4b59
JM
5066 break;
5067
26b471c7 5068 r = -EFAULT;
8fcc4b59 5069 if (copy_from_user(&kvm_state, user_kvm_nested_state, sizeof(kvm_state)))
26b471c7 5070 break;
8fcc4b59 5071
26b471c7 5072 r = -EINVAL;
8fcc4b59 5073 if (kvm_state.size < sizeof(kvm_state))
26b471c7 5074 break;
8fcc4b59
JM
5075
5076 if (kvm_state.flags &
8cab6507 5077 ~(KVM_STATE_NESTED_RUN_PENDING | KVM_STATE_NESTED_GUEST_MODE
cc440cda
PB
5078 | KVM_STATE_NESTED_EVMCS | KVM_STATE_NESTED_MTF_PENDING
5079 | KVM_STATE_NESTED_GIF_SET))
26b471c7 5080 break;
8fcc4b59
JM
5081
5082 /* nested_run_pending implies guest_mode. */
8cab6507
VK
5083 if ((kvm_state.flags & KVM_STATE_NESTED_RUN_PENDING)
5084 && !(kvm_state.flags & KVM_STATE_NESTED_GUEST_MODE))
26b471c7 5085 break;
8fcc4b59 5086
ad5996d9 5087 idx = srcu_read_lock(&vcpu->kvm->srcu);
33b22172 5088 r = kvm_x86_ops.nested_ops->set_state(vcpu, user_kvm_nested_state, &kvm_state);
ad5996d9 5089 srcu_read_unlock(&vcpu->kvm->srcu, idx);
8fcc4b59
JM
5090 break;
5091 }
c21d54f0
VK
5092 case KVM_GET_SUPPORTED_HV_CPUID:
5093 r = kvm_ioctl_get_supported_hv_cpuid(vcpu, argp);
2bc39970 5094 break;
b59b153d 5095#ifdef CONFIG_KVM_XEN
3e324615
DW
5096 case KVM_XEN_VCPU_GET_ATTR: {
5097 struct kvm_xen_vcpu_attr xva;
5098
5099 r = -EFAULT;
5100 if (copy_from_user(&xva, argp, sizeof(xva)))
5101 goto out;
5102 r = kvm_xen_vcpu_get_attr(vcpu, &xva);
5103 if (!r && copy_to_user(argp, &xva, sizeof(xva)))
5104 r = -EFAULT;
5105 break;
5106 }
5107 case KVM_XEN_VCPU_SET_ATTR: {
5108 struct kvm_xen_vcpu_attr xva;
5109
5110 r = -EFAULT;
5111 if (copy_from_user(&xva, argp, sizeof(xva)))
5112 goto out;
5113 r = kvm_xen_vcpu_set_attr(vcpu, &xva);
5114 break;
5115 }
b59b153d 5116#endif
313a3dc7
CO
5117 default:
5118 r = -EINVAL;
5119 }
5120out:
d1ac91d8 5121 kfree(u.buffer);
9b062471
CD
5122out_nofree:
5123 vcpu_put(vcpu);
313a3dc7
CO
5124 return r;
5125}
5126
1499fa80 5127vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
5b1c1493
CO
5128{
5129 return VM_FAULT_SIGBUS;
5130}
5131
1fe779f8
CO
5132static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
5133{
5134 int ret;
5135
5136 if (addr > (unsigned int)(-3 * PAGE_SIZE))
951179ce 5137 return -EINVAL;
b3646477 5138 ret = static_call(kvm_x86_set_tss_addr)(kvm, addr);
1fe779f8
CO
5139 return ret;
5140}
5141
b927a3ce
SY
5142static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm,
5143 u64 ident_addr)
5144{
b3646477 5145 return static_call(kvm_x86_set_identity_map_addr)(kvm, ident_addr);
b927a3ce
SY
5146}
5147
1fe779f8 5148static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
bc8a3d89 5149 unsigned long kvm_nr_mmu_pages)
1fe779f8
CO
5150{
5151 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
5152 return -EINVAL;
5153
79fac95e 5154 mutex_lock(&kvm->slots_lock);
1fe779f8
CO
5155
5156 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
f05e70ac 5157 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
1fe779f8 5158
79fac95e 5159 mutex_unlock(&kvm->slots_lock);
1fe779f8
CO
5160 return 0;
5161}
5162
bc8a3d89 5163static unsigned long kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
1fe779f8 5164{
39de71ec 5165 return kvm->arch.n_max_mmu_pages;
1fe779f8
CO
5166}
5167
1fe779f8
CO
5168static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5169{
90bca052 5170 struct kvm_pic *pic = kvm->arch.vpic;
1fe779f8
CO
5171 int r;
5172
5173 r = 0;
5174 switch (chip->chip_id) {
5175 case KVM_IRQCHIP_PIC_MASTER:
90bca052 5176 memcpy(&chip->chip.pic, &pic->pics[0],
1fe779f8
CO
5177 sizeof(struct kvm_pic_state));
5178 break;
5179 case KVM_IRQCHIP_PIC_SLAVE:
90bca052 5180 memcpy(&chip->chip.pic, &pic->pics[1],
1fe779f8
CO
5181 sizeof(struct kvm_pic_state));
5182 break;
5183 case KVM_IRQCHIP_IOAPIC:
33392b49 5184 kvm_get_ioapic(kvm, &chip->chip.ioapic);
1fe779f8
CO
5185 break;
5186 default:
5187 r = -EINVAL;
5188 break;
5189 }
5190 return r;
5191}
5192
5193static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
5194{
90bca052 5195 struct kvm_pic *pic = kvm->arch.vpic;
1fe779f8
CO
5196 int r;
5197
5198 r = 0;
5199 switch (chip->chip_id) {
5200 case KVM_IRQCHIP_PIC_MASTER:
90bca052
DH
5201 spin_lock(&pic->lock);
5202 memcpy(&pic->pics[0], &chip->chip.pic,
1fe779f8 5203 sizeof(struct kvm_pic_state));
90bca052 5204 spin_unlock(&pic->lock);
1fe779f8
CO
5205 break;
5206 case KVM_IRQCHIP_PIC_SLAVE:
90bca052
DH
5207 spin_lock(&pic->lock);
5208 memcpy(&pic->pics[1], &chip->chip.pic,
1fe779f8 5209 sizeof(struct kvm_pic_state));
90bca052 5210 spin_unlock(&pic->lock);
1fe779f8
CO
5211 break;
5212 case KVM_IRQCHIP_IOAPIC:
33392b49 5213 kvm_set_ioapic(kvm, &chip->chip.ioapic);
1fe779f8
CO
5214 break;
5215 default:
5216 r = -EINVAL;
5217 break;
5218 }
90bca052 5219 kvm_pic_update_irq(pic);
1fe779f8
CO
5220 return r;
5221}
5222
e0f63cb9
SY
5223static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5224{
34f3941c
RK
5225 struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state;
5226
5227 BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels));
5228
5229 mutex_lock(&kps->lock);
5230 memcpy(ps, &kps->channels, sizeof(*ps));
5231 mutex_unlock(&kps->lock);
2da29bcc 5232 return 0;
e0f63cb9
SY
5233}
5234
5235static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
5236{
0185604c 5237 int i;
09edea72
RK
5238 struct kvm_pit *pit = kvm->arch.vpit;
5239
5240 mutex_lock(&pit->pit_state.lock);
34f3941c 5241 memcpy(&pit->pit_state.channels, ps, sizeof(*ps));
0185604c 5242 for (i = 0; i < 3; i++)
09edea72
RK
5243 kvm_pit_load_count(pit, i, ps->channels[i].count, 0);
5244 mutex_unlock(&pit->pit_state.lock);
2da29bcc 5245 return 0;
e9f42757
BK
5246}
5247
5248static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5249{
e9f42757
BK
5250 mutex_lock(&kvm->arch.vpit->pit_state.lock);
5251 memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels,
5252 sizeof(ps->channels));
5253 ps->flags = kvm->arch.vpit->pit_state.flags;
5254 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
97e69aa6 5255 memset(&ps->reserved, 0, sizeof(ps->reserved));
2da29bcc 5256 return 0;
e9f42757
BK
5257}
5258
5259static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
5260{
2da29bcc 5261 int start = 0;
0185604c 5262 int i;
e9f42757 5263 u32 prev_legacy, cur_legacy;
09edea72
RK
5264 struct kvm_pit *pit = kvm->arch.vpit;
5265
5266 mutex_lock(&pit->pit_state.lock);
5267 prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY;
e9f42757
BK
5268 cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY;
5269 if (!prev_legacy && cur_legacy)
5270 start = 1;
09edea72
RK
5271 memcpy(&pit->pit_state.channels, &ps->channels,
5272 sizeof(pit->pit_state.channels));
5273 pit->pit_state.flags = ps->flags;
0185604c 5274 for (i = 0; i < 3; i++)
09edea72 5275 kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count,
e5e57e7a 5276 start && i == 0);
09edea72 5277 mutex_unlock(&pit->pit_state.lock);
2da29bcc 5278 return 0;
e0f63cb9
SY
5279}
5280
52d939a0
MT
5281static int kvm_vm_ioctl_reinject(struct kvm *kvm,
5282 struct kvm_reinject_control *control)
5283{
71474e2f
RK
5284 struct kvm_pit *pit = kvm->arch.vpit;
5285
71474e2f
RK
5286 /* pit->pit_state.lock was overloaded to prevent userspace from getting
5287 * an inconsistent state after running multiple KVM_REINJECT_CONTROL
5288 * ioctls in parallel. Use a separate lock if that ioctl isn't rare.
5289 */
5290 mutex_lock(&pit->pit_state.lock);
5291 kvm_pit_set_reinject(pit, control->pit_reinject);
5292 mutex_unlock(&pit->pit_state.lock);
b39c90b6 5293
52d939a0
MT
5294 return 0;
5295}
5296
0dff0846 5297void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot)
5bb064dc 5298{
a018eba5 5299
88178fd4 5300 /*
a018eba5
SC
5301 * Flush all CPUs' dirty log buffers to the dirty_bitmap. Called
5302 * before reporting dirty_bitmap to userspace. KVM flushes the buffers
5303 * on all VM-Exits, thus we only need to kick running vCPUs to force a
5304 * VM-Exit.
88178fd4 5305 */
a018eba5
SC
5306 struct kvm_vcpu *vcpu;
5307 int i;
5308
5309 kvm_for_each_vcpu(i, vcpu, kvm)
5310 kvm_vcpu_kick(vcpu);
5bb064dc
ZX
5311}
5312
aa2fbe6d
YZ
5313int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event,
5314 bool line_status)
23d43cf9
CD
5315{
5316 if (!irqchip_in_kernel(kvm))
5317 return -ENXIO;
5318
5319 irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
aa2fbe6d
YZ
5320 irq_event->irq, irq_event->level,
5321 line_status);
23d43cf9
CD
5322 return 0;
5323}
5324
e5d83c74
PB
5325int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
5326 struct kvm_enable_cap *cap)
90de4a18
NA
5327{
5328 int r;
5329
5330 if (cap->flags)
5331 return -EINVAL;
5332
5333 switch (cap->cap) {
5334 case KVM_CAP_DISABLE_QUIRKS:
5335 kvm->arch.disabled_quirks = cap->args[0];
5336 r = 0;
5337 break;
49df6397
SR
5338 case KVM_CAP_SPLIT_IRQCHIP: {
5339 mutex_lock(&kvm->lock);
b053b2ae
SR
5340 r = -EINVAL;
5341 if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS)
5342 goto split_irqchip_unlock;
49df6397
SR
5343 r = -EEXIST;
5344 if (irqchip_in_kernel(kvm))
5345 goto split_irqchip_unlock;
557abc40 5346 if (kvm->created_vcpus)
49df6397
SR
5347 goto split_irqchip_unlock;
5348 r = kvm_setup_empty_irq_routing(kvm);
5c0aea0e 5349 if (r)
49df6397
SR
5350 goto split_irqchip_unlock;
5351 /* Pairs with irqchip_in_kernel. */
5352 smp_wmb();
49776faf 5353 kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT;
b053b2ae 5354 kvm->arch.nr_reserved_ioapic_pins = cap->args[0];
49df6397
SR
5355 r = 0;
5356split_irqchip_unlock:
5357 mutex_unlock(&kvm->lock);
5358 break;
5359 }
37131313
RK
5360 case KVM_CAP_X2APIC_API:
5361 r = -EINVAL;
5362 if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS)
5363 break;
5364
5365 if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS)
5366 kvm->arch.x2apic_format = true;
c519265f
RK
5367 if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK)
5368 kvm->arch.x2apic_broadcast_quirk_disabled = true;
37131313
RK
5369
5370 r = 0;
5371 break;
4d5422ce
WL
5372 case KVM_CAP_X86_DISABLE_EXITS:
5373 r = -EINVAL;
5374 if (cap->args[0] & ~KVM_X86_DISABLE_VALID_EXITS)
5375 break;
5376
5377 if ((cap->args[0] & KVM_X86_DISABLE_EXITS_MWAIT) &&
5378 kvm_can_mwait_in_guest())
5379 kvm->arch.mwait_in_guest = true;
766d3571 5380 if (cap->args[0] & KVM_X86_DISABLE_EXITS_HLT)
caa057a2 5381 kvm->arch.hlt_in_guest = true;
b31c114b
WL
5382 if (cap->args[0] & KVM_X86_DISABLE_EXITS_PAUSE)
5383 kvm->arch.pause_in_guest = true;
b5170063
WL
5384 if (cap->args[0] & KVM_X86_DISABLE_EXITS_CSTATE)
5385 kvm->arch.cstate_in_guest = true;
4d5422ce
WL
5386 r = 0;
5387 break;
6fbbde9a
DS
5388 case KVM_CAP_MSR_PLATFORM_INFO:
5389 kvm->arch.guest_can_read_msr_platform_info = cap->args[0];
5390 r = 0;
c4f55198
JM
5391 break;
5392 case KVM_CAP_EXCEPTION_PAYLOAD:
5393 kvm->arch.exception_payload_enabled = cap->args[0];
5394 r = 0;
6fbbde9a 5395 break;
1ae09954
AG
5396 case KVM_CAP_X86_USER_SPACE_MSR:
5397 kvm->arch.user_space_msr_mask = cap->args[0];
5398 r = 0;
5399 break;
fe6b6bc8
CQ
5400 case KVM_CAP_X86_BUS_LOCK_EXIT:
5401 r = -EINVAL;
5402 if (cap->args[0] & ~KVM_BUS_LOCK_DETECTION_VALID_MODE)
5403 break;
5404
5405 if ((cap->args[0] & KVM_BUS_LOCK_DETECTION_OFF) &&
5406 (cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT))
5407 break;
5408
5409 if (kvm_has_bus_lock_exit &&
5410 cap->args[0] & KVM_BUS_LOCK_DETECTION_EXIT)
5411 kvm->arch.bus_lock_detection_enabled = true;
5412 r = 0;
5413 break;
fe7e9488
SC
5414#ifdef CONFIG_X86_SGX_KVM
5415 case KVM_CAP_SGX_ATTRIBUTE: {
5416 unsigned long allowed_attributes = 0;
5417
5418 r = sgx_set_attribute(&allowed_attributes, cap->args[0]);
5419 if (r)
5420 break;
5421
5422 /* KVM only supports the PROVISIONKEY privileged attribute. */
5423 if ((allowed_attributes & SGX_ATTR_PROVISIONKEY) &&
5424 !(allowed_attributes & ~SGX_ATTR_PROVISIONKEY))
5425 kvm->arch.sgx_provisioning_allowed = true;
5426 else
5427 r = -EINVAL;
5428 break;
5429 }
5430#endif
54526d1f
NT
5431 case KVM_CAP_VM_COPY_ENC_CONTEXT_FROM:
5432 r = -EINVAL;
5433 if (kvm_x86_ops.vm_copy_enc_context_from)
5434 r = kvm_x86_ops.vm_copy_enc_context_from(kvm, cap->args[0]);
5435 return r;
90de4a18
NA
5436 default:
5437 r = -EINVAL;
5438 break;
5439 }
5440 return r;
5441}
5442
b318e8de
SC
5443static struct kvm_x86_msr_filter *kvm_alloc_msr_filter(bool default_allow)
5444{
5445 struct kvm_x86_msr_filter *msr_filter;
5446
5447 msr_filter = kzalloc(sizeof(*msr_filter), GFP_KERNEL_ACCOUNT);
5448 if (!msr_filter)
5449 return NULL;
5450
5451 msr_filter->default_allow = default_allow;
5452 return msr_filter;
5453}
5454
5455static void kvm_free_msr_filter(struct kvm_x86_msr_filter *msr_filter)
1a155254
AG
5456{
5457 u32 i;
1a155254 5458
b318e8de
SC
5459 if (!msr_filter)
5460 return;
5461
5462 for (i = 0; i < msr_filter->count; i++)
5463 kfree(msr_filter->ranges[i].bitmap);
1a155254 5464
b318e8de 5465 kfree(msr_filter);
1a155254
AG
5466}
5467
b318e8de
SC
5468static int kvm_add_msr_filter(struct kvm_x86_msr_filter *msr_filter,
5469 struct kvm_msr_filter_range *user_range)
1a155254 5470{
1a155254
AG
5471 struct msr_bitmap_range range;
5472 unsigned long *bitmap = NULL;
5473 size_t bitmap_size;
5474 int r;
5475
5476 if (!user_range->nmsrs)
5477 return 0;
5478
5479 bitmap_size = BITS_TO_LONGS(user_range->nmsrs) * sizeof(long);
5480 if (!bitmap_size || bitmap_size > KVM_MSR_FILTER_MAX_BITMAP_SIZE)
5481 return -EINVAL;
5482
5483 bitmap = memdup_user((__user u8*)user_range->bitmap, bitmap_size);
5484 if (IS_ERR(bitmap))
5485 return PTR_ERR(bitmap);
5486
5487 range = (struct msr_bitmap_range) {
5488 .flags = user_range->flags,
5489 .base = user_range->base,
5490 .nmsrs = user_range->nmsrs,
5491 .bitmap = bitmap,
5492 };
5493
5494 if (range.flags & ~(KVM_MSR_FILTER_READ | KVM_MSR_FILTER_WRITE)) {
5495 r = -EINVAL;
5496 goto err;
5497 }
5498
5499 if (!range.flags) {
5500 r = -EINVAL;
5501 goto err;
5502 }
5503
b318e8de
SC
5504 /* Everything ok, add this range identifier. */
5505 msr_filter->ranges[msr_filter->count] = range;
5506 msr_filter->count++;
1a155254
AG
5507
5508 return 0;
5509err:
5510 kfree(bitmap);
5511 return r;
5512}
5513
5514static int kvm_vm_ioctl_set_msr_filter(struct kvm *kvm, void __user *argp)
5515{
5516 struct kvm_msr_filter __user *user_msr_filter = argp;
b318e8de 5517 struct kvm_x86_msr_filter *new_filter, *old_filter;
1a155254
AG
5518 struct kvm_msr_filter filter;
5519 bool default_allow;
043248b3 5520 bool empty = true;
b318e8de 5521 int r = 0;
1a155254
AG
5522 u32 i;
5523
5524 if (copy_from_user(&filter, user_msr_filter, sizeof(filter)))
5525 return -EFAULT;
5526
043248b3
PB
5527 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++)
5528 empty &= !filter.ranges[i].nmsrs;
1a155254
AG
5529
5530 default_allow = !(filter.flags & KVM_MSR_FILTER_DEFAULT_DENY);
043248b3
PB
5531 if (empty && !default_allow)
5532 return -EINVAL;
5533
b318e8de
SC
5534 new_filter = kvm_alloc_msr_filter(default_allow);
5535 if (!new_filter)
5536 return -ENOMEM;
1a155254 5537
1a155254 5538 for (i = 0; i < ARRAY_SIZE(filter.ranges); i++) {
b318e8de
SC
5539 r = kvm_add_msr_filter(new_filter, &filter.ranges[i]);
5540 if (r) {
5541 kvm_free_msr_filter(new_filter);
5542 return r;
5543 }
1a155254
AG
5544 }
5545
b318e8de
SC
5546 mutex_lock(&kvm->lock);
5547
5548 /* The per-VM filter is protected by kvm->lock... */
5549 old_filter = srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1);
5550
5551 rcu_assign_pointer(kvm->arch.msr_filter, new_filter);
5552 synchronize_srcu(&kvm->srcu);
5553
5554 kvm_free_msr_filter(old_filter);
5555
1a155254
AG
5556 kvm_make_all_cpus_request(kvm, KVM_REQ_MSR_FILTER_CHANGED);
5557 mutex_unlock(&kvm->lock);
5558
b318e8de 5559 return 0;
1a155254
AG
5560}
5561
1fe779f8
CO
5562long kvm_arch_vm_ioctl(struct file *filp,
5563 unsigned int ioctl, unsigned long arg)
5564{
5565 struct kvm *kvm = filp->private_data;
5566 void __user *argp = (void __user *)arg;
367e1319 5567 int r = -ENOTTY;
f0d66275
DH
5568 /*
5569 * This union makes it completely explicit to gcc-3.x
5570 * that these two variables' stack usage should be
5571 * combined, not added together.
5572 */
5573 union {
5574 struct kvm_pit_state ps;
e9f42757 5575 struct kvm_pit_state2 ps2;
c5ff41ce 5576 struct kvm_pit_config pit_config;
f0d66275 5577 } u;
1fe779f8
CO
5578
5579 switch (ioctl) {
5580 case KVM_SET_TSS_ADDR:
5581 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
1fe779f8 5582 break;
b927a3ce
SY
5583 case KVM_SET_IDENTITY_MAP_ADDR: {
5584 u64 ident_addr;
5585
1af1ac91
DH
5586 mutex_lock(&kvm->lock);
5587 r = -EINVAL;
5588 if (kvm->created_vcpus)
5589 goto set_identity_unlock;
b927a3ce 5590 r = -EFAULT;
0e96f31e 5591 if (copy_from_user(&ident_addr, argp, sizeof(ident_addr)))
1af1ac91 5592 goto set_identity_unlock;
b927a3ce 5593 r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr);
1af1ac91
DH
5594set_identity_unlock:
5595 mutex_unlock(&kvm->lock);
b927a3ce
SY
5596 break;
5597 }
1fe779f8
CO
5598 case KVM_SET_NR_MMU_PAGES:
5599 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
1fe779f8
CO
5600 break;
5601 case KVM_GET_NR_MMU_PAGES:
5602 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
5603 break;
3ddea128 5604 case KVM_CREATE_IRQCHIP: {
3ddea128 5605 mutex_lock(&kvm->lock);
09941366 5606
3ddea128 5607 r = -EEXIST;
35e6eaa3 5608 if (irqchip_in_kernel(kvm))
3ddea128 5609 goto create_irqchip_unlock;
09941366 5610
3e515705 5611 r = -EINVAL;
557abc40 5612 if (kvm->created_vcpus)
3e515705 5613 goto create_irqchip_unlock;
09941366
RK
5614
5615 r = kvm_pic_init(kvm);
5616 if (r)
3ddea128 5617 goto create_irqchip_unlock;
09941366
RK
5618
5619 r = kvm_ioapic_init(kvm);
5620 if (r) {
09941366 5621 kvm_pic_destroy(kvm);
3ddea128 5622 goto create_irqchip_unlock;
09941366
RK
5623 }
5624
399ec807
AK
5625 r = kvm_setup_default_irq_routing(kvm);
5626 if (r) {
72bb2fcd 5627 kvm_ioapic_destroy(kvm);
09941366 5628 kvm_pic_destroy(kvm);
71ba994c 5629 goto create_irqchip_unlock;
399ec807 5630 }
49776faf 5631 /* Write kvm->irq_routing before enabling irqchip_in_kernel. */
71ba994c 5632 smp_wmb();
49776faf 5633 kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL;
3ddea128
MT
5634 create_irqchip_unlock:
5635 mutex_unlock(&kvm->lock);
1fe779f8 5636 break;
3ddea128 5637 }
7837699f 5638 case KVM_CREATE_PIT:
c5ff41ce
JK
5639 u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY;
5640 goto create_pit;
5641 case KVM_CREATE_PIT2:
5642 r = -EFAULT;
5643 if (copy_from_user(&u.pit_config, argp,
5644 sizeof(struct kvm_pit_config)))
5645 goto out;
5646 create_pit:
250715a6 5647 mutex_lock(&kvm->lock);
269e05e4
AK
5648 r = -EEXIST;
5649 if (kvm->arch.vpit)
5650 goto create_pit_unlock;
7837699f 5651 r = -ENOMEM;
c5ff41ce 5652 kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags);
7837699f
SY
5653 if (kvm->arch.vpit)
5654 r = 0;
269e05e4 5655 create_pit_unlock:
250715a6 5656 mutex_unlock(&kvm->lock);
7837699f 5657 break;
1fe779f8
CO
5658 case KVM_GET_IRQCHIP: {
5659 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
ff5c2c03 5660 struct kvm_irqchip *chip;
1fe779f8 5661
ff5c2c03
SL
5662 chip = memdup_user(argp, sizeof(*chip));
5663 if (IS_ERR(chip)) {
5664 r = PTR_ERR(chip);
1fe779f8 5665 goto out;
ff5c2c03
SL
5666 }
5667
1fe779f8 5668 r = -ENXIO;
826da321 5669 if (!irqchip_kernel(kvm))
f0d66275
DH
5670 goto get_irqchip_out;
5671 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
1fe779f8 5672 if (r)
f0d66275 5673 goto get_irqchip_out;
1fe779f8 5674 r = -EFAULT;
0e96f31e 5675 if (copy_to_user(argp, chip, sizeof(*chip)))
f0d66275 5676 goto get_irqchip_out;
1fe779f8 5677 r = 0;
f0d66275
DH
5678 get_irqchip_out:
5679 kfree(chip);
1fe779f8
CO
5680 break;
5681 }
5682 case KVM_SET_IRQCHIP: {
5683 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
ff5c2c03 5684 struct kvm_irqchip *chip;
1fe779f8 5685
ff5c2c03
SL
5686 chip = memdup_user(argp, sizeof(*chip));
5687 if (IS_ERR(chip)) {
5688 r = PTR_ERR(chip);
1fe779f8 5689 goto out;
ff5c2c03
SL
5690 }
5691
1fe779f8 5692 r = -ENXIO;
826da321 5693 if (!irqchip_kernel(kvm))
f0d66275
DH
5694 goto set_irqchip_out;
5695 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
f0d66275
DH
5696 set_irqchip_out:
5697 kfree(chip);
1fe779f8
CO
5698 break;
5699 }
e0f63cb9 5700 case KVM_GET_PIT: {
e0f63cb9 5701 r = -EFAULT;
f0d66275 5702 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
e0f63cb9
SY
5703 goto out;
5704 r = -ENXIO;
5705 if (!kvm->arch.vpit)
5706 goto out;
f0d66275 5707 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
e0f63cb9
SY
5708 if (r)
5709 goto out;
5710 r = -EFAULT;
f0d66275 5711 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
e0f63cb9
SY
5712 goto out;
5713 r = 0;
5714 break;
5715 }
5716 case KVM_SET_PIT: {
e0f63cb9 5717 r = -EFAULT;
0e96f31e 5718 if (copy_from_user(&u.ps, argp, sizeof(u.ps)))
e0f63cb9 5719 goto out;
7289fdb5 5720 mutex_lock(&kvm->lock);
e0f63cb9
SY
5721 r = -ENXIO;
5722 if (!kvm->arch.vpit)
7289fdb5 5723 goto set_pit_out;
f0d66275 5724 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
7289fdb5
SR
5725set_pit_out:
5726 mutex_unlock(&kvm->lock);
e0f63cb9
SY
5727 break;
5728 }
e9f42757
BK
5729 case KVM_GET_PIT2: {
5730 r = -ENXIO;
5731 if (!kvm->arch.vpit)
5732 goto out;
5733 r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2);
5734 if (r)
5735 goto out;
5736 r = -EFAULT;
5737 if (copy_to_user(argp, &u.ps2, sizeof(u.ps2)))
5738 goto out;
5739 r = 0;
5740 break;
5741 }
5742 case KVM_SET_PIT2: {
5743 r = -EFAULT;
5744 if (copy_from_user(&u.ps2, argp, sizeof(u.ps2)))
5745 goto out;
7289fdb5 5746 mutex_lock(&kvm->lock);
e9f42757
BK
5747 r = -ENXIO;
5748 if (!kvm->arch.vpit)
7289fdb5 5749 goto set_pit2_out;
e9f42757 5750 r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2);
7289fdb5
SR
5751set_pit2_out:
5752 mutex_unlock(&kvm->lock);
e9f42757
BK
5753 break;
5754 }
52d939a0
MT
5755 case KVM_REINJECT_CONTROL: {
5756 struct kvm_reinject_control control;
5757 r = -EFAULT;
5758 if (copy_from_user(&control, argp, sizeof(control)))
5759 goto out;
cad23e72
ML
5760 r = -ENXIO;
5761 if (!kvm->arch.vpit)
5762 goto out;
52d939a0 5763 r = kvm_vm_ioctl_reinject(kvm, &control);
52d939a0
MT
5764 break;
5765 }
d71ba788
PB
5766 case KVM_SET_BOOT_CPU_ID:
5767 r = 0;
5768 mutex_lock(&kvm->lock);
557abc40 5769 if (kvm->created_vcpus)
d71ba788
PB
5770 r = -EBUSY;
5771 else
5772 kvm->arch.bsp_vcpu_id = arg;
5773 mutex_unlock(&kvm->lock);
5774 break;
b59b153d 5775#ifdef CONFIG_KVM_XEN
ffde22ac 5776 case KVM_XEN_HVM_CONFIG: {
51776043 5777 struct kvm_xen_hvm_config xhc;
ffde22ac 5778 r = -EFAULT;
51776043 5779 if (copy_from_user(&xhc, argp, sizeof(xhc)))
ffde22ac 5780 goto out;
78e9878c 5781 r = kvm_xen_hvm_config(kvm, &xhc);
ffde22ac
ES
5782 break;
5783 }
a76b9641
JM
5784 case KVM_XEN_HVM_GET_ATTR: {
5785 struct kvm_xen_hvm_attr xha;
5786
5787 r = -EFAULT;
5788 if (copy_from_user(&xha, argp, sizeof(xha)))
ffde22ac 5789 goto out;
a76b9641
JM
5790 r = kvm_xen_hvm_get_attr(kvm, &xha);
5791 if (!r && copy_to_user(argp, &xha, sizeof(xha)))
5792 r = -EFAULT;
5793 break;
5794 }
5795 case KVM_XEN_HVM_SET_ATTR: {
5796 struct kvm_xen_hvm_attr xha;
5797
5798 r = -EFAULT;
5799 if (copy_from_user(&xha, argp, sizeof(xha)))
5800 goto out;
5801 r = kvm_xen_hvm_set_attr(kvm, &xha);
ffde22ac
ES
5802 break;
5803 }
b59b153d 5804#endif
afbcf7ab 5805 case KVM_SET_CLOCK: {
77fcbe82 5806 struct kvm_arch *ka = &kvm->arch;
afbcf7ab
GC
5807 struct kvm_clock_data user_ns;
5808 u64 now_ns;
afbcf7ab
GC
5809
5810 r = -EFAULT;
5811 if (copy_from_user(&user_ns, argp, sizeof(user_ns)))
5812 goto out;
5813
5814 r = -EINVAL;
5815 if (user_ns.flags)
5816 goto out;
5817
5818 r = 0;
0bc48bea
RK
5819 /*
5820 * TODO: userspace has to take care of races with VCPU_RUN, so
5821 * kvm_gen_update_masterclock() can be cut down to locked
5822 * pvclock_update_vm_gtod_copy().
5823 */
5824 kvm_gen_update_masterclock(kvm);
77fcbe82
VK
5825
5826 /*
5827 * This pairs with kvm_guest_time_update(): when masterclock is
5828 * in use, we use master_kernel_ns + kvmclock_offset to set
5829 * unsigned 'system_time' so if we use get_kvmclock_ns() (which
5830 * is slightly ahead) here we risk going negative on unsigned
5831 * 'system_time' when 'user_ns.clock' is very small.
5832 */
5833 spin_lock_irq(&ka->pvclock_gtod_sync_lock);
5834 if (kvm->arch.use_master_clock)
5835 now_ns = ka->master_kernel_ns;
5836 else
5837 now_ns = get_kvmclock_base_ns();
5838 ka->kvmclock_offset = user_ns.clock - now_ns;
5839 spin_unlock_irq(&ka->pvclock_gtod_sync_lock);
5840
0bc48bea 5841 kvm_make_all_cpus_request(kvm, KVM_REQ_CLOCK_UPDATE);
afbcf7ab
GC
5842 break;
5843 }
5844 case KVM_GET_CLOCK: {
afbcf7ab
GC
5845 struct kvm_clock_data user_ns;
5846 u64 now_ns;
5847
e891a32e 5848 now_ns = get_kvmclock_ns(kvm);
108b249c 5849 user_ns.clock = now_ns;
e3fd9a93 5850 user_ns.flags = kvm->arch.use_master_clock ? KVM_CLOCK_TSC_STABLE : 0;
97e69aa6 5851 memset(&user_ns.pad, 0, sizeof(user_ns.pad));
afbcf7ab
GC
5852
5853 r = -EFAULT;
5854 if (copy_to_user(argp, &user_ns, sizeof(user_ns)))
5855 goto out;
5856 r = 0;
5857 break;
5858 }
5acc5c06
BS
5859 case KVM_MEMORY_ENCRYPT_OP: {
5860 r = -ENOTTY;
afaf0b2f 5861 if (kvm_x86_ops.mem_enc_op)
b3646477 5862 r = static_call(kvm_x86_mem_enc_op)(kvm, argp);
5acc5c06
BS
5863 break;
5864 }
69eaedee
BS
5865 case KVM_MEMORY_ENCRYPT_REG_REGION: {
5866 struct kvm_enc_region region;
5867
5868 r = -EFAULT;
5869 if (copy_from_user(&region, argp, sizeof(region)))
5870 goto out;
5871
5872 r = -ENOTTY;
afaf0b2f 5873 if (kvm_x86_ops.mem_enc_reg_region)
b3646477 5874 r = static_call(kvm_x86_mem_enc_reg_region)(kvm, &region);
69eaedee
BS
5875 break;
5876 }
5877 case KVM_MEMORY_ENCRYPT_UNREG_REGION: {
5878 struct kvm_enc_region region;
5879
5880 r = -EFAULT;
5881 if (copy_from_user(&region, argp, sizeof(region)))
5882 goto out;
5883
5884 r = -ENOTTY;
afaf0b2f 5885 if (kvm_x86_ops.mem_enc_unreg_region)
b3646477 5886 r = static_call(kvm_x86_mem_enc_unreg_region)(kvm, &region);
69eaedee
BS
5887 break;
5888 }
faeb7833
RK
5889 case KVM_HYPERV_EVENTFD: {
5890 struct kvm_hyperv_eventfd hvevfd;
5891
5892 r = -EFAULT;
5893 if (copy_from_user(&hvevfd, argp, sizeof(hvevfd)))
5894 goto out;
5895 r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd);
5896 break;
5897 }
66bb8a06
EH
5898 case KVM_SET_PMU_EVENT_FILTER:
5899 r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp);
5900 break;
1a155254
AG
5901 case KVM_X86_SET_MSR_FILTER:
5902 r = kvm_vm_ioctl_set_msr_filter(kvm, argp);
5903 break;
1fe779f8 5904 default:
ad6260da 5905 r = -ENOTTY;
1fe779f8
CO
5906 }
5907out:
5908 return r;
5909}
5910
a16b043c 5911static void kvm_init_msr_list(void)
043405e1 5912{
24c29b7a 5913 struct x86_pmu_capability x86_pmu;
043405e1 5914 u32 dummy[2];
7a5ee6ed 5915 unsigned i;
043405e1 5916
e2ada66e 5917 BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4,
7a5ee6ed 5918 "Please update the fixed PMCs in msrs_to_saved_all[]");
24c29b7a
PB
5919
5920 perf_get_x86_pmu_capability(&x86_pmu);
e2ada66e 5921
6cbee2b9
XL
5922 num_msrs_to_save = 0;
5923 num_emulated_msrs = 0;
5924 num_msr_based_features = 0;
5925
7a5ee6ed
CQ
5926 for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) {
5927 if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0)
043405e1 5928 continue;
93c4adc7
PB
5929
5930 /*
5931 * Even MSRs that are valid in the host may not be exposed
9dbe6cf9 5932 * to the guests in some cases.
93c4adc7 5933 */
7a5ee6ed 5934 switch (msrs_to_save_all[i]) {
93c4adc7 5935 case MSR_IA32_BNDCFGS:
503234b3 5936 if (!kvm_mpx_supported())
93c4adc7
PB
5937 continue;
5938 break;
9dbe6cf9 5939 case MSR_TSC_AUX:
13908510 5940 if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP))
9dbe6cf9
PB
5941 continue;
5942 break;
f4cfcd2d
ML
5943 case MSR_IA32_UMWAIT_CONTROL:
5944 if (!kvm_cpu_cap_has(X86_FEATURE_WAITPKG))
5945 continue;
5946 break;
bf8c55d8
CP
5947 case MSR_IA32_RTIT_CTL:
5948 case MSR_IA32_RTIT_STATUS:
7b874c26 5949 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT))
bf8c55d8
CP
5950 continue;
5951 break;
5952 case MSR_IA32_RTIT_CR3_MATCH:
7b874c26 5953 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
bf8c55d8
CP
5954 !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering))
5955 continue;
5956 break;
5957 case MSR_IA32_RTIT_OUTPUT_BASE:
5958 case MSR_IA32_RTIT_OUTPUT_MASK:
7b874c26 5959 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
bf8c55d8
CP
5960 (!intel_pt_validate_hw_cap(PT_CAP_topa_output) &&
5961 !intel_pt_validate_hw_cap(PT_CAP_single_range_output)))
5962 continue;
5963 break;
7cb85fc4 5964 case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B:
7b874c26 5965 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) ||
7a5ee6ed 5966 msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >=
bf8c55d8
CP
5967 intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2)
5968 continue;
5969 break;
cf05a67b 5970 case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17:
7a5ee6ed 5971 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >=
24c29b7a
PB
5972 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
5973 continue;
5974 break;
cf05a67b 5975 case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17:
7a5ee6ed 5976 if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >=
24c29b7a
PB
5977 min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp))
5978 continue;
7cb85fc4 5979 break;
93c4adc7
PB
5980 default:
5981 break;
5982 }
5983
7a5ee6ed 5984 msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i];
043405e1 5985 }
62ef68bb 5986
7a5ee6ed 5987 for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) {
b3646477 5988 if (!static_call(kvm_x86_has_emulated_msr)(NULL, emulated_msrs_all[i]))
bc226f07 5989 continue;
62ef68bb 5990
7a5ee6ed 5991 emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i];
62ef68bb 5992 }
801e459a 5993
7a5ee6ed 5994 for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) {
801e459a
TL
5995 struct kvm_msr_entry msr;
5996
7a5ee6ed 5997 msr.index = msr_based_features_all[i];
66421c1e 5998 if (kvm_get_msr_feature(&msr))
801e459a
TL
5999 continue;
6000
7a5ee6ed 6001 msr_based_features[num_msr_based_features++] = msr_based_features_all[i];
801e459a 6002 }
043405e1
CO
6003}
6004
bda9020e
MT
6005static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len,
6006 const void *v)
bbd9b64e 6007{
70252a10
AK
6008 int handled = 0;
6009 int n;
6010
6011 do {
6012 n = min(len, 8);
bce87cce 6013 if (!(lapic_in_kernel(vcpu) &&
e32edf4f
NN
6014 !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v))
6015 && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v))
70252a10
AK
6016 break;
6017 handled += n;
6018 addr += n;
6019 len -= n;
6020 v += n;
6021 } while (len);
bbd9b64e 6022
70252a10 6023 return handled;
bbd9b64e
CO
6024}
6025
bda9020e 6026static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v)
bbd9b64e 6027{
70252a10
AK
6028 int handled = 0;
6029 int n;
6030
6031 do {
6032 n = min(len, 8);
bce87cce 6033 if (!(lapic_in_kernel(vcpu) &&
e32edf4f
NN
6034 !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev,
6035 addr, n, v))
6036 && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v))
70252a10 6037 break;
e39d200f 6038 trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v);
70252a10
AK
6039 handled += n;
6040 addr += n;
6041 len -= n;
6042 v += n;
6043 } while (len);
bbd9b64e 6044
70252a10 6045 return handled;
bbd9b64e
CO
6046}
6047
2dafc6c2
GN
6048static void kvm_set_segment(struct kvm_vcpu *vcpu,
6049 struct kvm_segment *var, int seg)
6050{
b3646477 6051 static_call(kvm_x86_set_segment)(vcpu, var, seg);
2dafc6c2
GN
6052}
6053
6054void kvm_get_segment(struct kvm_vcpu *vcpu,
6055 struct kvm_segment *var, int seg)
6056{
b3646477 6057 static_call(kvm_x86_get_segment)(vcpu, var, seg);
2dafc6c2
GN
6058}
6059
54987b7a
PB
6060gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access,
6061 struct x86_exception *exception)
02f59dc9
JR
6062{
6063 gpa_t t_gpa;
02f59dc9
JR
6064
6065 BUG_ON(!mmu_is_nested(vcpu));
6066
6067 /* NPT walks are always user-walks */
6068 access |= PFERR_USER_MASK;
44dd3ffa 6069 t_gpa = vcpu->arch.mmu->gva_to_gpa(vcpu, gpa, access, exception);
02f59dc9
JR
6070
6071 return t_gpa;
6072}
6073
ab9ae313
AK
6074gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva,
6075 struct x86_exception *exception)
1871c602 6076{
b3646477 6077 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
ab9ae313 6078 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
1871c602 6079}
54f958cd 6080EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_read);
1871c602 6081
ab9ae313
AK
6082 gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva,
6083 struct x86_exception *exception)
1871c602 6084{
b3646477 6085 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
1871c602 6086 access |= PFERR_FETCH_MASK;
ab9ae313 6087 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
1871c602
GN
6088}
6089
ab9ae313
AK
6090gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva,
6091 struct x86_exception *exception)
1871c602 6092{
b3646477 6093 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
1871c602 6094 access |= PFERR_WRITE_MASK;
ab9ae313 6095 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
1871c602 6096}
54f958cd 6097EXPORT_SYMBOL_GPL(kvm_mmu_gva_to_gpa_write);
1871c602
GN
6098
6099/* uses this to access any guest's mapped memory without checking CPL */
ab9ae313
AK
6100gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva,
6101 struct x86_exception *exception)
1871c602 6102{
ab9ae313 6103 return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception);
1871c602
GN
6104}
6105
6106static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6107 struct kvm_vcpu *vcpu, u32 access,
bcc55cba 6108 struct x86_exception *exception)
bbd9b64e
CO
6109{
6110 void *data = val;
10589a46 6111 int r = X86EMUL_CONTINUE;
bbd9b64e
CO
6112
6113 while (bytes) {
14dfe855 6114 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access,
ab9ae313 6115 exception);
bbd9b64e 6116 unsigned offset = addr & (PAGE_SIZE-1);
77c2002e 6117 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset);
bbd9b64e
CO
6118 int ret;
6119
bcc55cba 6120 if (gpa == UNMAPPED_GVA)
ab9ae313 6121 return X86EMUL_PROPAGATE_FAULT;
54bf36aa
PB
6122 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data,
6123 offset, toread);
10589a46 6124 if (ret < 0) {
c3cd7ffa 6125 r = X86EMUL_IO_NEEDED;
10589a46
MT
6126 goto out;
6127 }
bbd9b64e 6128
77c2002e
IE
6129 bytes -= toread;
6130 data += toread;
6131 addr += toread;
bbd9b64e 6132 }
10589a46 6133out:
10589a46 6134 return r;
bbd9b64e 6135}
77c2002e 6136
1871c602 6137/* used for instruction fetching */
0f65dd70
AK
6138static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt,
6139 gva_t addr, void *val, unsigned int bytes,
bcc55cba 6140 struct x86_exception *exception)
1871c602 6141{
0f65dd70 6142 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
b3646477 6143 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
44583cba
PB
6144 unsigned offset;
6145 int ret;
0f65dd70 6146
44583cba
PB
6147 /* Inline kvm_read_guest_virt_helper for speed. */
6148 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK,
6149 exception);
6150 if (unlikely(gpa == UNMAPPED_GVA))
6151 return X86EMUL_PROPAGATE_FAULT;
6152
6153 offset = addr & (PAGE_SIZE-1);
6154 if (WARN_ON(offset + bytes > PAGE_SIZE))
6155 bytes = (unsigned)PAGE_SIZE - offset;
54bf36aa
PB
6156 ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val,
6157 offset, bytes);
44583cba
PB
6158 if (unlikely(ret < 0))
6159 return X86EMUL_IO_NEEDED;
6160
6161 return X86EMUL_CONTINUE;
1871c602
GN
6162}
6163
ce14e868 6164int kvm_read_guest_virt(struct kvm_vcpu *vcpu,
0f65dd70 6165 gva_t addr, void *val, unsigned int bytes,
bcc55cba 6166 struct x86_exception *exception)
1871c602 6167{
b3646477 6168 u32 access = (static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0;
0f65dd70 6169
353c0956
PB
6170 /*
6171 * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED
6172 * is returned, but our callers are not ready for that and they blindly
6173 * call kvm_inject_page_fault. Ensure that they at least do not leak
6174 * uninitialized kernel stack memory into cr2 and error code.
6175 */
6176 memset(exception, 0, sizeof(*exception));
1871c602 6177 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access,
bcc55cba 6178 exception);
1871c602 6179}
064aea77 6180EXPORT_SYMBOL_GPL(kvm_read_guest_virt);
1871c602 6181
ce14e868
PB
6182static int emulator_read_std(struct x86_emulate_ctxt *ctxt,
6183 gva_t addr, void *val, unsigned int bytes,
3c9fa24c 6184 struct x86_exception *exception, bool system)
1871c602 6185{
0f65dd70 6186 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
3c9fa24c
PB
6187 u32 access = 0;
6188
b3646477 6189 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
3c9fa24c
PB
6190 access |= PFERR_USER_MASK;
6191
6192 return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception);
1871c602
GN
6193}
6194
7a036a6f
RK
6195static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt,
6196 unsigned long addr, void *val, unsigned int bytes)
6197{
6198 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6199 int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes);
6200
6201 return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE;
6202}
6203
ce14e868
PB
6204static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes,
6205 struct kvm_vcpu *vcpu, u32 access,
6206 struct x86_exception *exception)
77c2002e
IE
6207{
6208 void *data = val;
6209 int r = X86EMUL_CONTINUE;
6210
6211 while (bytes) {
14dfe855 6212 gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr,
ce14e868 6213 access,
ab9ae313 6214 exception);
77c2002e
IE
6215 unsigned offset = addr & (PAGE_SIZE-1);
6216 unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset);
6217 int ret;
6218
bcc55cba 6219 if (gpa == UNMAPPED_GVA)
ab9ae313 6220 return X86EMUL_PROPAGATE_FAULT;
54bf36aa 6221 ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite);
77c2002e 6222 if (ret < 0) {
c3cd7ffa 6223 r = X86EMUL_IO_NEEDED;
77c2002e
IE
6224 goto out;
6225 }
6226
6227 bytes -= towrite;
6228 data += towrite;
6229 addr += towrite;
6230 }
6231out:
6232 return r;
6233}
ce14e868
PB
6234
6235static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val,
3c9fa24c
PB
6236 unsigned int bytes, struct x86_exception *exception,
6237 bool system)
ce14e868
PB
6238{
6239 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
3c9fa24c
PB
6240 u32 access = PFERR_WRITE_MASK;
6241
b3646477 6242 if (!system && static_call(kvm_x86_get_cpl)(vcpu) == 3)
3c9fa24c 6243 access |= PFERR_USER_MASK;
ce14e868
PB
6244
6245 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
3c9fa24c 6246 access, exception);
ce14e868
PB
6247}
6248
6249int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val,
6250 unsigned int bytes, struct x86_exception *exception)
6251{
c595ceee
PB
6252 /* kvm_write_guest_virt_system can pull in tons of pages. */
6253 vcpu->arch.l1tf_flush_l1d = true;
6254
ce14e868
PB
6255 return kvm_write_guest_virt_helper(addr, val, bytes, vcpu,
6256 PFERR_WRITE_MASK, exception);
6257}
6a4d7550 6258EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system);
77c2002e 6259
082d06ed
WL
6260int handle_ud(struct kvm_vcpu *vcpu)
6261{
b3dc0695 6262 static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX };
6c86eedc 6263 int emul_type = EMULTYPE_TRAP_UD;
6c86eedc
WL
6264 char sig[5]; /* ud2; .ascii "kvm" */
6265 struct x86_exception e;
6266
b3646477 6267 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, NULL, 0)))
09e3e2a1
SC
6268 return 1;
6269
6c86eedc 6270 if (force_emulation_prefix &&
3c9fa24c
PB
6271 kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu),
6272 sig, sizeof(sig), &e) == 0 &&
b3dc0695 6273 memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) {
6c86eedc 6274 kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig));
b4000606 6275 emul_type = EMULTYPE_TRAP_UD_FORCED;
6c86eedc 6276 }
082d06ed 6277
60fc3d02 6278 return kvm_emulate_instruction(vcpu, emul_type);
082d06ed
WL
6279}
6280EXPORT_SYMBOL_GPL(handle_ud);
6281
0f89b207
TL
6282static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6283 gpa_t gpa, bool write)
6284{
6285 /* For APIC access vmexit */
6286 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6287 return 1;
6288
6289 if (vcpu_match_mmio_gpa(vcpu, gpa)) {
6290 trace_vcpu_match_mmio(gva, gpa, write, true);
6291 return 1;
6292 }
6293
6294 return 0;
6295}
6296
af7cc7d1
XG
6297static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva,
6298 gpa_t *gpa, struct x86_exception *exception,
6299 bool write)
6300{
b3646477 6301 u32 access = ((static_call(kvm_x86_get_cpl)(vcpu) == 3) ? PFERR_USER_MASK : 0)
97d64b78 6302 | (write ? PFERR_WRITE_MASK : 0);
af7cc7d1 6303
be94f6b7
HH
6304 /*
6305 * currently PKRU is only applied to ept enabled guest so
6306 * there is no pkey in EPT page table for L1 guest or EPT
6307 * shadow page table for L2 guest.
6308 */
97d64b78 6309 if (vcpu_match_mmio_gva(vcpu, gva)
97ec8c06 6310 && !permission_fault(vcpu, vcpu->arch.walk_mmu,
871bd034 6311 vcpu->arch.mmio_access, 0, access)) {
bebb106a
XG
6312 *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT |
6313 (gva & (PAGE_SIZE - 1));
4f022648 6314 trace_vcpu_match_mmio(gva, *gpa, write, false);
bebb106a
XG
6315 return 1;
6316 }
6317
af7cc7d1
XG
6318 *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception);
6319
6320 if (*gpa == UNMAPPED_GVA)
6321 return -1;
6322
0f89b207 6323 return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write);
af7cc7d1
XG
6324}
6325
3200f405 6326int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
bcc55cba 6327 const void *val, int bytes)
bbd9b64e
CO
6328{
6329 int ret;
6330
54bf36aa 6331 ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes);
9f811285 6332 if (ret < 0)
bbd9b64e 6333 return 0;
0eb05bf2 6334 kvm_page_track_write(vcpu, gpa, val, bytes);
bbd9b64e
CO
6335 return 1;
6336}
6337
77d197b2
XG
6338struct read_write_emulator_ops {
6339 int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val,
6340 int bytes);
6341 int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa,
6342 void *val, int bytes);
6343 int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6344 int bytes, void *val);
6345 int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa,
6346 void *val, int bytes);
6347 bool write;
6348};
6349
6350static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes)
6351{
6352 if (vcpu->mmio_read_completed) {
77d197b2 6353 trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes,
e39d200f 6354 vcpu->mmio_fragments[0].gpa, val);
77d197b2
XG
6355 vcpu->mmio_read_completed = 0;
6356 return 1;
6357 }
6358
6359 return 0;
6360}
6361
6362static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6363 void *val, int bytes)
6364{
54bf36aa 6365 return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes);
77d197b2
XG
6366}
6367
6368static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa,
6369 void *val, int bytes)
6370{
6371 return emulator_write_phys(vcpu, gpa, val, bytes);
6372}
6373
6374static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val)
6375{
e39d200f 6376 trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val);
77d197b2
XG
6377 return vcpu_mmio_write(vcpu, gpa, bytes, val);
6378}
6379
6380static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6381 void *val, int bytes)
6382{
e39d200f 6383 trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL);
77d197b2
XG
6384 return X86EMUL_IO_NEEDED;
6385}
6386
6387static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa,
6388 void *val, int bytes)
6389{
f78146b0
AK
6390 struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0];
6391
87da7e66 6392 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
77d197b2
XG
6393 return X86EMUL_CONTINUE;
6394}
6395
0fbe9b0b 6396static const struct read_write_emulator_ops read_emultor = {
77d197b2
XG
6397 .read_write_prepare = read_prepare,
6398 .read_write_emulate = read_emulate,
6399 .read_write_mmio = vcpu_mmio_read,
6400 .read_write_exit_mmio = read_exit_mmio,
6401};
6402
0fbe9b0b 6403static const struct read_write_emulator_ops write_emultor = {
77d197b2
XG
6404 .read_write_emulate = write_emulate,
6405 .read_write_mmio = write_mmio,
6406 .read_write_exit_mmio = write_exit_mmio,
6407 .write = true,
6408};
6409
22388a3c
XG
6410static int emulator_read_write_onepage(unsigned long addr, void *val,
6411 unsigned int bytes,
6412 struct x86_exception *exception,
6413 struct kvm_vcpu *vcpu,
0fbe9b0b 6414 const struct read_write_emulator_ops *ops)
bbd9b64e 6415{
af7cc7d1
XG
6416 gpa_t gpa;
6417 int handled, ret;
22388a3c 6418 bool write = ops->write;
f78146b0 6419 struct kvm_mmio_fragment *frag;
c9b8b07c 6420 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
0f89b207
TL
6421
6422 /*
6423 * If the exit was due to a NPF we may already have a GPA.
6424 * If the GPA is present, use it to avoid the GVA to GPA table walk.
6425 * Note, this cannot be used on string operations since string
6426 * operation using rep will only have the initial GPA from the NPF
6427 * occurred.
6428 */
744e699c
SC
6429 if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) &&
6430 (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) {
6431 gpa = ctxt->gpa_val;
618232e2
BS
6432 ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write);
6433 } else {
6434 ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write);
6435 if (ret < 0)
6436 return X86EMUL_PROPAGATE_FAULT;
0f89b207 6437 }
10589a46 6438
618232e2 6439 if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes))
bbd9b64e
CO
6440 return X86EMUL_CONTINUE;
6441
bbd9b64e
CO
6442 /*
6443 * Is this MMIO handled locally?
6444 */
22388a3c 6445 handled = ops->read_write_mmio(vcpu, gpa, bytes, val);
70252a10 6446 if (handled == bytes)
bbd9b64e 6447 return X86EMUL_CONTINUE;
bbd9b64e 6448
70252a10
AK
6449 gpa += handled;
6450 bytes -= handled;
6451 val += handled;
6452
87da7e66
XG
6453 WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS);
6454 frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++];
6455 frag->gpa = gpa;
6456 frag->data = val;
6457 frag->len = bytes;
f78146b0 6458 return X86EMUL_CONTINUE;
bbd9b64e
CO
6459}
6460
52eb5a6d
XL
6461static int emulator_read_write(struct x86_emulate_ctxt *ctxt,
6462 unsigned long addr,
22388a3c
XG
6463 void *val, unsigned int bytes,
6464 struct x86_exception *exception,
0fbe9b0b 6465 const struct read_write_emulator_ops *ops)
bbd9b64e 6466{
0f65dd70 6467 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
f78146b0
AK
6468 gpa_t gpa;
6469 int rc;
6470
6471 if (ops->read_write_prepare &&
6472 ops->read_write_prepare(vcpu, val, bytes))
6473 return X86EMUL_CONTINUE;
6474
6475 vcpu->mmio_nr_fragments = 0;
0f65dd70 6476
bbd9b64e
CO
6477 /* Crossing a page boundary? */
6478 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
f78146b0 6479 int now;
bbd9b64e
CO
6480
6481 now = -addr & ~PAGE_MASK;
22388a3c
XG
6482 rc = emulator_read_write_onepage(addr, val, now, exception,
6483 vcpu, ops);
6484
bbd9b64e
CO
6485 if (rc != X86EMUL_CONTINUE)
6486 return rc;
6487 addr += now;
bac15531
NA
6488 if (ctxt->mode != X86EMUL_MODE_PROT64)
6489 addr = (u32)addr;
bbd9b64e
CO
6490 val += now;
6491 bytes -= now;
6492 }
22388a3c 6493
f78146b0
AK
6494 rc = emulator_read_write_onepage(addr, val, bytes, exception,
6495 vcpu, ops);
6496 if (rc != X86EMUL_CONTINUE)
6497 return rc;
6498
6499 if (!vcpu->mmio_nr_fragments)
6500 return rc;
6501
6502 gpa = vcpu->mmio_fragments[0].gpa;
6503
6504 vcpu->mmio_needed = 1;
6505 vcpu->mmio_cur_fragment = 0;
6506
87da7e66 6507 vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len);
f78146b0
AK
6508 vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write;
6509 vcpu->run->exit_reason = KVM_EXIT_MMIO;
6510 vcpu->run->mmio.phys_addr = gpa;
6511
6512 return ops->read_write_exit_mmio(vcpu, gpa, val, bytes);
22388a3c
XG
6513}
6514
6515static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt,
6516 unsigned long addr,
6517 void *val,
6518 unsigned int bytes,
6519 struct x86_exception *exception)
6520{
6521 return emulator_read_write(ctxt, addr, val, bytes,
6522 exception, &read_emultor);
6523}
6524
52eb5a6d 6525static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt,
22388a3c
XG
6526 unsigned long addr,
6527 const void *val,
6528 unsigned int bytes,
6529 struct x86_exception *exception)
6530{
6531 return emulator_read_write(ctxt, addr, (void *)val, bytes,
6532 exception, &write_emultor);
bbd9b64e 6533}
bbd9b64e 6534
daea3e73
AK
6535#define CMPXCHG_TYPE(t, ptr, old, new) \
6536 (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old))
6537
6538#ifdef CONFIG_X86_64
6539# define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new)
6540#else
6541# define CMPXCHG64(ptr, old, new) \
9749a6c0 6542 (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old))
daea3e73
AK
6543#endif
6544
0f65dd70
AK
6545static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt,
6546 unsigned long addr,
bbd9b64e
CO
6547 const void *old,
6548 const void *new,
6549 unsigned int bytes,
0f65dd70 6550 struct x86_exception *exception)
bbd9b64e 6551{
42e35f80 6552 struct kvm_host_map map;
0f65dd70 6553 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
9de6fe3c 6554 u64 page_line_mask;
daea3e73 6555 gpa_t gpa;
daea3e73
AK
6556 char *kaddr;
6557 bool exchanged;
2bacc55c 6558
daea3e73
AK
6559 /* guests cmpxchg8b have to be emulated atomically */
6560 if (bytes > 8 || (bytes & (bytes - 1)))
6561 goto emul_write;
10589a46 6562
daea3e73 6563 gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL);
2bacc55c 6564
daea3e73
AK
6565 if (gpa == UNMAPPED_GVA ||
6566 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
6567 goto emul_write;
2bacc55c 6568
9de6fe3c
XL
6569 /*
6570 * Emulate the atomic as a straight write to avoid #AC if SLD is
6571 * enabled in the host and the access splits a cache line.
6572 */
6573 if (boot_cpu_has(X86_FEATURE_SPLIT_LOCK_DETECT))
6574 page_line_mask = ~(cache_line_size() - 1);
6575 else
6576 page_line_mask = PAGE_MASK;
6577
6578 if (((gpa + bytes - 1) & page_line_mask) != (gpa & page_line_mask))
daea3e73 6579 goto emul_write;
72dc67a6 6580
42e35f80 6581 if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map))
c19b8bd6 6582 goto emul_write;
72dc67a6 6583
42e35f80
KA
6584 kaddr = map.hva + offset_in_page(gpa);
6585
daea3e73
AK
6586 switch (bytes) {
6587 case 1:
6588 exchanged = CMPXCHG_TYPE(u8, kaddr, old, new);
6589 break;
6590 case 2:
6591 exchanged = CMPXCHG_TYPE(u16, kaddr, old, new);
6592 break;
6593 case 4:
6594 exchanged = CMPXCHG_TYPE(u32, kaddr, old, new);
6595 break;
6596 case 8:
6597 exchanged = CMPXCHG64(kaddr, old, new);
6598 break;
6599 default:
6600 BUG();
2bacc55c 6601 }
42e35f80
KA
6602
6603 kvm_vcpu_unmap(vcpu, &map, true);
daea3e73
AK
6604
6605 if (!exchanged)
6606 return X86EMUL_CMPXCHG_FAILED;
6607
0eb05bf2 6608 kvm_page_track_write(vcpu, gpa, new, bytes);
8f6abd06
GN
6609
6610 return X86EMUL_CONTINUE;
4a5f48f6 6611
3200f405 6612emul_write:
daea3e73 6613 printk_once(KERN_WARNING "kvm: emulating exchange as write\n");
2bacc55c 6614
0f65dd70 6615 return emulator_write_emulated(ctxt, addr, new, bytes, exception);
bbd9b64e
CO
6616}
6617
cf8f70bf
GN
6618static int kernel_pio(struct kvm_vcpu *vcpu, void *pd)
6619{
cbfc6c91 6620 int r = 0, i;
cf8f70bf 6621
cbfc6c91
WL
6622 for (i = 0; i < vcpu->arch.pio.count; i++) {
6623 if (vcpu->arch.pio.in)
6624 r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port,
6625 vcpu->arch.pio.size, pd);
6626 else
6627 r = kvm_io_bus_write(vcpu, KVM_PIO_BUS,
6628 vcpu->arch.pio.port, vcpu->arch.pio.size,
6629 pd);
6630 if (r)
6631 break;
6632 pd += vcpu->arch.pio.size;
6633 }
cf8f70bf
GN
6634 return r;
6635}
6636
6f6fbe98
XG
6637static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size,
6638 unsigned short port, void *val,
6639 unsigned int count, bool in)
cf8f70bf 6640{
cf8f70bf 6641 vcpu->arch.pio.port = port;
6f6fbe98 6642 vcpu->arch.pio.in = in;
7972995b 6643 vcpu->arch.pio.count = count;
cf8f70bf
GN
6644 vcpu->arch.pio.size = size;
6645
6646 if (!kernel_pio(vcpu, vcpu->arch.pio_data)) {
7972995b 6647 vcpu->arch.pio.count = 0;
cf8f70bf
GN
6648 return 1;
6649 }
6650
6651 vcpu->run->exit_reason = KVM_EXIT_IO;
6f6fbe98 6652 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
cf8f70bf
GN
6653 vcpu->run->io.size = size;
6654 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
6655 vcpu->run->io.count = count;
6656 vcpu->run->io.port = port;
6657
6658 return 0;
6659}
6660
2e3bb4d8
SC
6661static int emulator_pio_in(struct kvm_vcpu *vcpu, int size,
6662 unsigned short port, void *val, unsigned int count)
cf8f70bf 6663{
6f6fbe98 6664 int ret;
ca1d4a9e 6665
6f6fbe98
XG
6666 if (vcpu->arch.pio.count)
6667 goto data_avail;
cf8f70bf 6668
cbfc6c91
WL
6669 memset(vcpu->arch.pio_data, 0, size * count);
6670
6f6fbe98
XG
6671 ret = emulator_pio_in_out(vcpu, size, port, val, count, true);
6672 if (ret) {
6673data_avail:
6674 memcpy(val, vcpu->arch.pio_data, size * count);
1171903d 6675 trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data);
7972995b 6676 vcpu->arch.pio.count = 0;
cf8f70bf
GN
6677 return 1;
6678 }
6679
cf8f70bf
GN
6680 return 0;
6681}
6682
2e3bb4d8
SC
6683static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt,
6684 int size, unsigned short port, void *val,
6685 unsigned int count)
6f6fbe98 6686{
2e3bb4d8 6687 return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count);
6f6fbe98 6688
2e3bb4d8 6689}
6f6fbe98 6690
2e3bb4d8
SC
6691static int emulator_pio_out(struct kvm_vcpu *vcpu, int size,
6692 unsigned short port, const void *val,
6693 unsigned int count)
6694{
6f6fbe98 6695 memcpy(vcpu->arch.pio_data, val, size * count);
1171903d 6696 trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data);
6f6fbe98
XG
6697 return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false);
6698}
6699
2e3bb4d8
SC
6700static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt,
6701 int size, unsigned short port,
6702 const void *val, unsigned int count)
6703{
6704 return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count);
6705}
6706
bbd9b64e
CO
6707static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
6708{
b3646477 6709 return static_call(kvm_x86_get_segment_base)(vcpu, seg);
bbd9b64e
CO
6710}
6711
3cb16fe7 6712static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address)
bbd9b64e 6713{
3cb16fe7 6714 kvm_mmu_invlpg(emul_to_vcpu(ctxt), address);
bbd9b64e
CO
6715}
6716
ae6a2375 6717static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
f5f48ee1
SY
6718{
6719 if (!need_emulate_wbinvd(vcpu))
6720 return X86EMUL_CONTINUE;
6721
b3646477 6722 if (static_call(kvm_x86_has_wbinvd_exit)()) {
2eec7343
JK
6723 int cpu = get_cpu();
6724
6725 cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
c2162e13 6726 on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
f5f48ee1 6727 wbinvd_ipi, NULL, 1);
2eec7343 6728 put_cpu();
f5f48ee1 6729 cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
2eec7343
JK
6730 } else
6731 wbinvd();
f5f48ee1
SY
6732 return X86EMUL_CONTINUE;
6733}
5cb56059
JS
6734
6735int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu)
6736{
6affcbed
KH
6737 kvm_emulate_wbinvd_noskip(vcpu);
6738 return kvm_skip_emulated_instruction(vcpu);
5cb56059 6739}
f5f48ee1
SY
6740EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd);
6741
5cb56059
JS
6742
6743
bcaf5cc5
AK
6744static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt)
6745{
5cb56059 6746 kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt));
bcaf5cc5
AK
6747}
6748
29d6ca41
PB
6749static void emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
6750 unsigned long *dest)
bbd9b64e 6751{
29d6ca41 6752 kvm_get_dr(emul_to_vcpu(ctxt), dr, dest);
bbd9b64e
CO
6753}
6754
52eb5a6d
XL
6755static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
6756 unsigned long value)
bbd9b64e 6757{
338dbc97 6758
996ff542 6759 return kvm_set_dr(emul_to_vcpu(ctxt), dr, value);
bbd9b64e
CO
6760}
6761
52a46617 6762static u64 mk_cr_64(u64 curr_cr, u32 new_val)
5fdbf976 6763{
52a46617 6764 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
5fdbf976
MT
6765}
6766
717746e3 6767static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr)
bbd9b64e 6768{
717746e3 6769 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
52a46617
GN
6770 unsigned long value;
6771
6772 switch (cr) {
6773 case 0:
6774 value = kvm_read_cr0(vcpu);
6775 break;
6776 case 2:
6777 value = vcpu->arch.cr2;
6778 break;
6779 case 3:
9f8fe504 6780 value = kvm_read_cr3(vcpu);
52a46617
GN
6781 break;
6782 case 4:
6783 value = kvm_read_cr4(vcpu);
6784 break;
6785 case 8:
6786 value = kvm_get_cr8(vcpu);
6787 break;
6788 default:
a737f256 6789 kvm_err("%s: unexpected cr %u\n", __func__, cr);
52a46617
GN
6790 return 0;
6791 }
6792
6793 return value;
6794}
6795
717746e3 6796static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val)
52a46617 6797{
717746e3 6798 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
0f12244f
GN
6799 int res = 0;
6800
52a46617
GN
6801 switch (cr) {
6802 case 0:
49a9b07e 6803 res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
52a46617
GN
6804 break;
6805 case 2:
6806 vcpu->arch.cr2 = val;
6807 break;
6808 case 3:
2390218b 6809 res = kvm_set_cr3(vcpu, val);
52a46617
GN
6810 break;
6811 case 4:
a83b29c6 6812 res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
52a46617
GN
6813 break;
6814 case 8:
eea1cff9 6815 res = kvm_set_cr8(vcpu, val);
52a46617
GN
6816 break;
6817 default:
a737f256 6818 kvm_err("%s: unexpected cr %u\n", __func__, cr);
0f12244f 6819 res = -1;
52a46617 6820 }
0f12244f
GN
6821
6822 return res;
52a46617
GN
6823}
6824
717746e3 6825static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt)
9c537244 6826{
b3646477 6827 return static_call(kvm_x86_get_cpl)(emul_to_vcpu(ctxt));
9c537244
GN
6828}
6829
4bff1e86 6830static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
2dafc6c2 6831{
b3646477 6832 static_call(kvm_x86_get_gdt)(emul_to_vcpu(ctxt), dt);
2dafc6c2
GN
6833}
6834
4bff1e86 6835static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
160ce1f1 6836{
b3646477 6837 static_call(kvm_x86_get_idt)(emul_to_vcpu(ctxt), dt);
160ce1f1
MG
6838}
6839
1ac9d0cf
AK
6840static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
6841{
b3646477 6842 static_call(kvm_x86_set_gdt)(emul_to_vcpu(ctxt), dt);
1ac9d0cf
AK
6843}
6844
6845static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt)
6846{
b3646477 6847 static_call(kvm_x86_set_idt)(emul_to_vcpu(ctxt), dt);
1ac9d0cf
AK
6848}
6849
4bff1e86
AK
6850static unsigned long emulator_get_cached_segment_base(
6851 struct x86_emulate_ctxt *ctxt, int seg)
5951c442 6852{
4bff1e86 6853 return get_segment_base(emul_to_vcpu(ctxt), seg);
5951c442
GN
6854}
6855
1aa36616
AK
6856static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector,
6857 struct desc_struct *desc, u32 *base3,
6858 int seg)
2dafc6c2
GN
6859{
6860 struct kvm_segment var;
6861
4bff1e86 6862 kvm_get_segment(emul_to_vcpu(ctxt), &var, seg);
1aa36616 6863 *selector = var.selector;
2dafc6c2 6864
378a8b09
GN
6865 if (var.unusable) {
6866 memset(desc, 0, sizeof(*desc));
f0367ee1
RK
6867 if (base3)
6868 *base3 = 0;
2dafc6c2 6869 return false;
378a8b09 6870 }
2dafc6c2
GN
6871
6872 if (var.g)
6873 var.limit >>= 12;
6874 set_desc_limit(desc, var.limit);
6875 set_desc_base(desc, (unsigned long)var.base);
5601d05b
GN
6876#ifdef CONFIG_X86_64
6877 if (base3)
6878 *base3 = var.base >> 32;
6879#endif
2dafc6c2
GN
6880 desc->type = var.type;
6881 desc->s = var.s;
6882 desc->dpl = var.dpl;
6883 desc->p = var.present;
6884 desc->avl = var.avl;
6885 desc->l = var.l;
6886 desc->d = var.db;
6887 desc->g = var.g;
6888
6889 return true;
6890}
6891
1aa36616
AK
6892static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector,
6893 struct desc_struct *desc, u32 base3,
6894 int seg)
2dafc6c2 6895{
4bff1e86 6896 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
2dafc6c2
GN
6897 struct kvm_segment var;
6898
1aa36616 6899 var.selector = selector;
2dafc6c2 6900 var.base = get_desc_base(desc);
5601d05b
GN
6901#ifdef CONFIG_X86_64
6902 var.base |= ((u64)base3) << 32;
6903#endif
2dafc6c2
GN
6904 var.limit = get_desc_limit(desc);
6905 if (desc->g)
6906 var.limit = (var.limit << 12) | 0xfff;
6907 var.type = desc->type;
2dafc6c2
GN
6908 var.dpl = desc->dpl;
6909 var.db = desc->d;
6910 var.s = desc->s;
6911 var.l = desc->l;
6912 var.g = desc->g;
6913 var.avl = desc->avl;
6914 var.present = desc->p;
6915 var.unusable = !var.present;
6916 var.padding = 0;
6917
6918 kvm_set_segment(vcpu, &var, seg);
6919 return;
6920}
6921
717746e3
AK
6922static int emulator_get_msr(struct x86_emulate_ctxt *ctxt,
6923 u32 msr_index, u64 *pdata)
6924{
1ae09954
AG
6925 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6926 int r;
6927
6928 r = kvm_get_msr(vcpu, msr_index, pdata);
6929
6930 if (r && kvm_get_msr_user_space(vcpu, msr_index, r)) {
6931 /* Bounce to user space */
6932 return X86EMUL_IO_NEEDED;
6933 }
6934
6935 return r;
717746e3
AK
6936}
6937
6938static int emulator_set_msr(struct x86_emulate_ctxt *ctxt,
6939 u32 msr_index, u64 data)
6940{
1ae09954
AG
6941 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6942 int r;
6943
6944 r = kvm_set_msr(vcpu, msr_index, data);
6945
6946 if (r && kvm_set_msr_user_space(vcpu, msr_index, data, r)) {
6947 /* Bounce to user space */
6948 return X86EMUL_IO_NEEDED;
6949 }
6950
6951 return r;
717746e3
AK
6952}
6953
64d60670
PB
6954static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt)
6955{
6956 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6957
6958 return vcpu->arch.smbase;
6959}
6960
6961static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase)
6962{
6963 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
6964
6965 vcpu->arch.smbase = smbase;
6966}
6967
67f4d428
NA
6968static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt,
6969 u32 pmc)
6970{
98ff80f5 6971 return kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc);
67f4d428
NA
6972}
6973
222d21aa
AK
6974static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt,
6975 u32 pmc, u64 *pdata)
6976{
c6702c9d 6977 return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata);
222d21aa
AK
6978}
6979
6c3287f7
AK
6980static void emulator_halt(struct x86_emulate_ctxt *ctxt)
6981{
6982 emul_to_vcpu(ctxt)->arch.halt_request = 1;
6983}
6984
2953538e 6985static int emulator_intercept(struct x86_emulate_ctxt *ctxt,
8a76d7f2 6986 struct x86_instruction_info *info,
c4f035c6
AK
6987 enum x86_intercept_stage stage)
6988{
b3646477 6989 return static_call(kvm_x86_check_intercept)(emul_to_vcpu(ctxt), info, stage,
21f1b8f2 6990 &ctxt->exception);
c4f035c6
AK
6991}
6992
e911eb3b 6993static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt,
f91af517
SC
6994 u32 *eax, u32 *ebx, u32 *ecx, u32 *edx,
6995 bool exact_only)
bdb42f5a 6996{
f91af517 6997 return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only);
bdb42f5a
SB
6998}
6999
5ae78e95
SC
7000static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt)
7001{
7002 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM);
7003}
7004
7005static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt)
7006{
7007 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE);
7008}
7009
7010static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt)
7011{
7012 return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR);
7013}
7014
dd856efa
AK
7015static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg)
7016{
27b4a9c4 7017 return kvm_register_read_raw(emul_to_vcpu(ctxt), reg);
dd856efa
AK
7018}
7019
7020static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val)
7021{
27b4a9c4 7022 kvm_register_write_raw(emul_to_vcpu(ctxt), reg, val);
dd856efa
AK
7023}
7024
801806d9
NA
7025static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked)
7026{
b3646477 7027 static_call(kvm_x86_set_nmi_mask)(emul_to_vcpu(ctxt), masked);
801806d9
NA
7028}
7029
6ed071f0
LP
7030static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt)
7031{
7032 return emul_to_vcpu(ctxt)->arch.hflags;
7033}
7034
7035static void emulator_set_hflags(struct x86_emulate_ctxt *ctxt, unsigned emul_flags)
7036{
c5833c7a 7037 emul_to_vcpu(ctxt)->arch.hflags = emul_flags;
6ed071f0
LP
7038}
7039
ed19321f
SC
7040static int emulator_pre_leave_smm(struct x86_emulate_ctxt *ctxt,
7041 const char *smstate)
0234bf88 7042{
b3646477 7043 return static_call(kvm_x86_pre_leave_smm)(emul_to_vcpu(ctxt), smstate);
0234bf88
LP
7044}
7045
c5833c7a
SC
7046static void emulator_post_leave_smm(struct x86_emulate_ctxt *ctxt)
7047{
7048 kvm_smm_changed(emul_to_vcpu(ctxt));
7049}
7050
02d4160f
VK
7051static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr)
7052{
7053 return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr);
7054}
7055
0225fb50 7056static const struct x86_emulate_ops emulate_ops = {
dd856efa
AK
7057 .read_gpr = emulator_read_gpr,
7058 .write_gpr = emulator_write_gpr,
ce14e868
PB
7059 .read_std = emulator_read_std,
7060 .write_std = emulator_write_std,
7a036a6f 7061 .read_phys = kvm_read_guest_phys_system,
1871c602 7062 .fetch = kvm_fetch_guest_virt,
bbd9b64e
CO
7063 .read_emulated = emulator_read_emulated,
7064 .write_emulated = emulator_write_emulated,
7065 .cmpxchg_emulated = emulator_cmpxchg_emulated,
3cb16fe7 7066 .invlpg = emulator_invlpg,
cf8f70bf
GN
7067 .pio_in_emulated = emulator_pio_in_emulated,
7068 .pio_out_emulated = emulator_pio_out_emulated,
1aa36616
AK
7069 .get_segment = emulator_get_segment,
7070 .set_segment = emulator_set_segment,
5951c442 7071 .get_cached_segment_base = emulator_get_cached_segment_base,
2dafc6c2 7072 .get_gdt = emulator_get_gdt,
160ce1f1 7073 .get_idt = emulator_get_idt,
1ac9d0cf
AK
7074 .set_gdt = emulator_set_gdt,
7075 .set_idt = emulator_set_idt,
52a46617
GN
7076 .get_cr = emulator_get_cr,
7077 .set_cr = emulator_set_cr,
9c537244 7078 .cpl = emulator_get_cpl,
35aa5375
GN
7079 .get_dr = emulator_get_dr,
7080 .set_dr = emulator_set_dr,
64d60670
PB
7081 .get_smbase = emulator_get_smbase,
7082 .set_smbase = emulator_set_smbase,
717746e3
AK
7083 .set_msr = emulator_set_msr,
7084 .get_msr = emulator_get_msr,
67f4d428 7085 .check_pmc = emulator_check_pmc,
222d21aa 7086 .read_pmc = emulator_read_pmc,
6c3287f7 7087 .halt = emulator_halt,
bcaf5cc5 7088 .wbinvd = emulator_wbinvd,
d6aa1000 7089 .fix_hypercall = emulator_fix_hypercall,
c4f035c6 7090 .intercept = emulator_intercept,
bdb42f5a 7091 .get_cpuid = emulator_get_cpuid,
5ae78e95
SC
7092 .guest_has_long_mode = emulator_guest_has_long_mode,
7093 .guest_has_movbe = emulator_guest_has_movbe,
7094 .guest_has_fxsr = emulator_guest_has_fxsr,
801806d9 7095 .set_nmi_mask = emulator_set_nmi_mask,
6ed071f0
LP
7096 .get_hflags = emulator_get_hflags,
7097 .set_hflags = emulator_set_hflags,
0234bf88 7098 .pre_leave_smm = emulator_pre_leave_smm,
c5833c7a 7099 .post_leave_smm = emulator_post_leave_smm,
02d4160f 7100 .set_xcr = emulator_set_xcr,
bbd9b64e
CO
7101};
7102
95cb2295
GN
7103static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask)
7104{
b3646477 7105 u32 int_shadow = static_call(kvm_x86_get_interrupt_shadow)(vcpu);
95cb2295
GN
7106 /*
7107 * an sti; sti; sequence only disable interrupts for the first
7108 * instruction. So, if the last instruction, be it emulated or
7109 * not, left the system with the INT_STI flag enabled, it
7110 * means that the last instruction is an sti. We should not
7111 * leave the flag on in this case. The same goes for mov ss
7112 */
37ccdcbe
PB
7113 if (int_shadow & mask)
7114 mask = 0;
6addfc42 7115 if (unlikely(int_shadow || mask)) {
b3646477 7116 static_call(kvm_x86_set_interrupt_shadow)(vcpu, mask);
6addfc42
PB
7117 if (!mask)
7118 kvm_make_request(KVM_REQ_EVENT, vcpu);
7119 }
95cb2295
GN
7120}
7121
ef54bcfe 7122static bool inject_emulated_exception(struct kvm_vcpu *vcpu)
54b8486f 7123{
c9b8b07c 7124 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
da9cb575 7125 if (ctxt->exception.vector == PF_VECTOR)
53b3d8e9 7126 return kvm_inject_emulated_page_fault(vcpu, &ctxt->exception);
ef54bcfe
PB
7127
7128 if (ctxt->exception.error_code_valid)
da9cb575
AK
7129 kvm_queue_exception_e(vcpu, ctxt->exception.vector,
7130 ctxt->exception.error_code);
54b8486f 7131 else
da9cb575 7132 kvm_queue_exception(vcpu, ctxt->exception.vector);
ef54bcfe 7133 return false;
54b8486f
GN
7134}
7135
c9b8b07c
SC
7136static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu)
7137{
7138 struct x86_emulate_ctxt *ctxt;
7139
7140 ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT);
7141 if (!ctxt) {
7142 pr_err("kvm: failed to allocate vcpu's emulator\n");
7143 return NULL;
7144 }
7145
7146 ctxt->vcpu = vcpu;
7147 ctxt->ops = &emulate_ops;
7148 vcpu->arch.emulate_ctxt = ctxt;
7149
7150 return ctxt;
7151}
7152
8ec4722d
MG
7153static void init_emulate_ctxt(struct kvm_vcpu *vcpu)
7154{
c9b8b07c 7155 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
8ec4722d
MG
7156 int cs_db, cs_l;
7157
b3646477 7158 static_call(kvm_x86_get_cs_db_l_bits)(vcpu, &cs_db, &cs_l);
8ec4722d 7159
744e699c 7160 ctxt->gpa_available = false;
adf52235 7161 ctxt->eflags = kvm_get_rflags(vcpu);
c8401dda
PB
7162 ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0;
7163
adf52235
TY
7164 ctxt->eip = kvm_rip_read(vcpu);
7165 ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL :
7166 (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 :
42bf549f 7167 (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 :
adf52235
TY
7168 cs_db ? X86EMUL_MODE_PROT32 :
7169 X86EMUL_MODE_PROT16;
a584539b 7170 BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK);
64d60670
PB
7171 BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK);
7172 BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK);
adf52235 7173
dd856efa 7174 init_decode_cache(ctxt);
7ae441ea 7175 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
8ec4722d
MG
7176}
7177
9497e1f2 7178void kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip)
63995653 7179{
c9b8b07c 7180 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
63995653
MG
7181 int ret;
7182
7183 init_emulate_ctxt(vcpu);
7184
9dac77fa
AK
7185 ctxt->op_bytes = 2;
7186 ctxt->ad_bytes = 2;
7187 ctxt->_eip = ctxt->eip + inc_eip;
9d74191a 7188 ret = emulate_int_real(ctxt, irq);
63995653 7189
9497e1f2
SC
7190 if (ret != X86EMUL_CONTINUE) {
7191 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
7192 } else {
7193 ctxt->eip = ctxt->_eip;
7194 kvm_rip_write(vcpu, ctxt->eip);
7195 kvm_set_rflags(vcpu, ctxt->eflags);
7196 }
63995653
MG
7197}
7198EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt);
7199
e2366171 7200static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type)
6d77dbfc 7201{
6d77dbfc
GN
7202 ++vcpu->stat.insn_emulation_fail;
7203 trace_kvm_emulate_insn_failed(vcpu);
e2366171 7204
42cbf068
SC
7205 if (emulation_type & EMULTYPE_VMWARE_GP) {
7206 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
60fc3d02 7207 return 1;
42cbf068 7208 }
e2366171 7209
738fece4
SC
7210 if (emulation_type & EMULTYPE_SKIP) {
7211 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7212 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7213 vcpu->run->internal.ndata = 0;
60fc3d02 7214 return 0;
738fece4
SC
7215 }
7216
22da61c9
SC
7217 kvm_queue_exception(vcpu, UD_VECTOR);
7218
b3646477 7219 if (!is_guest_mode(vcpu) && static_call(kvm_x86_get_cpl)(vcpu) == 0) {
fc3a9157
JR
7220 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7221 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
7222 vcpu->run->internal.ndata = 0;
60fc3d02 7223 return 0;
fc3a9157 7224 }
e2366171 7225
60fc3d02 7226 return 1;
6d77dbfc
GN
7227}
7228
736c291c 7229static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
991eebf9
GN
7230 bool write_fault_to_shadow_pgtable,
7231 int emulation_type)
a6f177ef 7232{
736c291c 7233 gpa_t gpa = cr2_or_gpa;
ba049e93 7234 kvm_pfn_t pfn;
a6f177ef 7235
92daa48b 7236 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
991eebf9
GN
7237 return false;
7238
92daa48b
SC
7239 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7240 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
6c3dfeb6
SC
7241 return false;
7242
44dd3ffa 7243 if (!vcpu->arch.mmu->direct_map) {
95b3cf69
XG
7244 /*
7245 * Write permission should be allowed since only
7246 * write access need to be emulated.
7247 */
736c291c 7248 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
a6f177ef 7249
95b3cf69
XG
7250 /*
7251 * If the mapping is invalid in guest, let cpu retry
7252 * it to generate fault.
7253 */
7254 if (gpa == UNMAPPED_GVA)
7255 return true;
7256 }
a6f177ef 7257
8e3d9d06
XG
7258 /*
7259 * Do not retry the unhandleable instruction if it faults on the
7260 * readonly host memory, otherwise it will goto a infinite loop:
7261 * retry instruction -> write #PF -> emulation fail -> retry
7262 * instruction -> ...
7263 */
7264 pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa));
95b3cf69
XG
7265
7266 /*
7267 * If the instruction failed on the error pfn, it can not be fixed,
7268 * report the error to userspace.
7269 */
7270 if (is_error_noslot_pfn(pfn))
7271 return false;
7272
7273 kvm_release_pfn_clean(pfn);
7274
7275 /* The instructions are well-emulated on direct mmu. */
44dd3ffa 7276 if (vcpu->arch.mmu->direct_map) {
95b3cf69
XG
7277 unsigned int indirect_shadow_pages;
7278
531810ca 7279 write_lock(&vcpu->kvm->mmu_lock);
95b3cf69 7280 indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages;
531810ca 7281 write_unlock(&vcpu->kvm->mmu_lock);
95b3cf69
XG
7282
7283 if (indirect_shadow_pages)
7284 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
7285
a6f177ef 7286 return true;
8e3d9d06 7287 }
a6f177ef 7288
95b3cf69
XG
7289 /*
7290 * if emulation was due to access to shadowed page table
7291 * and it failed try to unshadow page and re-enter the
7292 * guest to let CPU execute the instruction.
7293 */
7294 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
93c05d3e
XG
7295
7296 /*
7297 * If the access faults on its page table, it can not
7298 * be fixed by unprotecting shadow page and it should
7299 * be reported to userspace.
7300 */
7301 return !write_fault_to_shadow_pgtable;
a6f177ef
GN
7302}
7303
1cb3f3ae 7304static bool retry_instruction(struct x86_emulate_ctxt *ctxt,
736c291c 7305 gpa_t cr2_or_gpa, int emulation_type)
1cb3f3ae
XG
7306{
7307 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
736c291c 7308 unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa;
1cb3f3ae
XG
7309
7310 last_retry_eip = vcpu->arch.last_retry_eip;
7311 last_retry_addr = vcpu->arch.last_retry_addr;
7312
7313 /*
7314 * If the emulation is caused by #PF and it is non-page_table
7315 * writing instruction, it means the VM-EXIT is caused by shadow
7316 * page protected, we can zap the shadow page and retry this
7317 * instruction directly.
7318 *
7319 * Note: if the guest uses a non-page-table modifying instruction
7320 * on the PDE that points to the instruction, then we will unmap
7321 * the instruction and go to an infinite loop. So, we cache the
7322 * last retried eip and the last fault address, if we meet the eip
7323 * and the address again, we can break out of the potential infinite
7324 * loop.
7325 */
7326 vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0;
7327
92daa48b 7328 if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF))
1cb3f3ae
XG
7329 return false;
7330
92daa48b
SC
7331 if (WARN_ON_ONCE(is_guest_mode(vcpu)) ||
7332 WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF)))
6c3dfeb6
SC
7333 return false;
7334
1cb3f3ae
XG
7335 if (x86_page_table_writing_insn(ctxt))
7336 return false;
7337
736c291c 7338 if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa)
1cb3f3ae
XG
7339 return false;
7340
7341 vcpu->arch.last_retry_eip = ctxt->eip;
736c291c 7342 vcpu->arch.last_retry_addr = cr2_or_gpa;
1cb3f3ae 7343
44dd3ffa 7344 if (!vcpu->arch.mmu->direct_map)
736c291c 7345 gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL);
1cb3f3ae 7346
22368028 7347 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa));
1cb3f3ae
XG
7348
7349 return true;
7350}
7351
716d51ab
GN
7352static int complete_emulated_mmio(struct kvm_vcpu *vcpu);
7353static int complete_emulated_pio(struct kvm_vcpu *vcpu);
7354
64d60670 7355static void kvm_smm_changed(struct kvm_vcpu *vcpu)
a584539b 7356{
64d60670 7357 if (!(vcpu->arch.hflags & HF_SMM_MASK)) {
660a5d51
PB
7358 /* This is a good place to trace that we are exiting SMM. */
7359 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false);
7360
c43203ca
PB
7361 /* Process a latched INIT or SMI, if any. */
7362 kvm_make_request(KVM_REQ_EVENT, vcpu);
64d60670 7363 }
699023e2
PB
7364
7365 kvm_mmu_reset_context(vcpu);
64d60670
PB
7366}
7367
4a1e10d5
PB
7368static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7,
7369 unsigned long *db)
7370{
7371 u32 dr6 = 0;
7372 int i;
7373 u32 enable, rwlen;
7374
7375 enable = dr7;
7376 rwlen = dr7 >> 16;
7377 for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4)
7378 if ((enable & 3) && (rwlen & 15) == type && db[i] == addr)
7379 dr6 |= (1 << i);
7380 return dr6;
7381}
7382
120c2c4f 7383static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu)
663f4c61
PB
7384{
7385 struct kvm_run *kvm_run = vcpu->run;
7386
c8401dda 7387 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) {
9a3ecd5e 7388 kvm_run->debug.arch.dr6 = DR6_BS | DR6_ACTIVE_LOW;
d5d260c5 7389 kvm_run->debug.arch.pc = kvm_get_linear_rip(vcpu);
c8401dda
PB
7390 kvm_run->debug.arch.exception = DB_VECTOR;
7391 kvm_run->exit_reason = KVM_EXIT_DEBUG;
60fc3d02 7392 return 0;
663f4c61 7393 }
120c2c4f 7394 kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS);
60fc3d02 7395 return 1;
663f4c61
PB
7396}
7397
6affcbed
KH
7398int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu)
7399{
b3646477 7400 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
f8ea7c60 7401 int r;
6affcbed 7402
b3646477 7403 r = static_call(kvm_x86_skip_emulated_instruction)(vcpu);
60fc3d02 7404 if (unlikely(!r))
f8ea7c60 7405 return 0;
c8401dda
PB
7406
7407 /*
7408 * rflags is the old, "raw" value of the flags. The new value has
7409 * not been saved yet.
7410 *
7411 * This is correct even for TF set by the guest, because "the
7412 * processor will not generate this exception after the instruction
7413 * that sets the TF flag".
7414 */
7415 if (unlikely(rflags & X86_EFLAGS_TF))
120c2c4f 7416 r = kvm_vcpu_do_singlestep(vcpu);
60fc3d02 7417 return r;
6affcbed
KH
7418}
7419EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction);
7420
4a1e10d5
PB
7421static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r)
7422{
4a1e10d5
PB
7423 if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) &&
7424 (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) {
82b32774
NA
7425 struct kvm_run *kvm_run = vcpu->run;
7426 unsigned long eip = kvm_get_linear_rip(vcpu);
7427 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
4a1e10d5
PB
7428 vcpu->arch.guest_debug_dr7,
7429 vcpu->arch.eff_db);
7430
7431 if (dr6 != 0) {
9a3ecd5e 7432 kvm_run->debug.arch.dr6 = dr6 | DR6_ACTIVE_LOW;
82b32774 7433 kvm_run->debug.arch.pc = eip;
4a1e10d5
PB
7434 kvm_run->debug.arch.exception = DB_VECTOR;
7435 kvm_run->exit_reason = KVM_EXIT_DEBUG;
60fc3d02 7436 *r = 0;
4a1e10d5
PB
7437 return true;
7438 }
7439 }
7440
4161a569
NA
7441 if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) &&
7442 !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) {
82b32774
NA
7443 unsigned long eip = kvm_get_linear_rip(vcpu);
7444 u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0,
4a1e10d5
PB
7445 vcpu->arch.dr7,
7446 vcpu->arch.db);
7447
7448 if (dr6 != 0) {
4d5523cf 7449 kvm_queue_exception_p(vcpu, DB_VECTOR, dr6);
60fc3d02 7450 *r = 1;
4a1e10d5
PB
7451 return true;
7452 }
7453 }
7454
7455 return false;
7456}
7457
04789b66
LA
7458static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt)
7459{
2d7921c4
AM
7460 switch (ctxt->opcode_len) {
7461 case 1:
7462 switch (ctxt->b) {
7463 case 0xe4: /* IN */
7464 case 0xe5:
7465 case 0xec:
7466 case 0xed:
7467 case 0xe6: /* OUT */
7468 case 0xe7:
7469 case 0xee:
7470 case 0xef:
7471 case 0x6c: /* INS */
7472 case 0x6d:
7473 case 0x6e: /* OUTS */
7474 case 0x6f:
7475 return true;
7476 }
7477 break;
7478 case 2:
7479 switch (ctxt->b) {
7480 case 0x33: /* RDPMC */
7481 return true;
7482 }
7483 break;
04789b66
LA
7484 }
7485
7486 return false;
7487}
7488
4aa2691d
WH
7489/*
7490 * Decode to be emulated instruction. Return EMULATION_OK if success.
7491 */
7492int x86_decode_emulated_instruction(struct kvm_vcpu *vcpu, int emulation_type,
7493 void *insn, int insn_len)
7494{
7495 int r = EMULATION_OK;
7496 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7497
7498 init_emulate_ctxt(vcpu);
7499
7500 /*
7501 * We will reenter on the same instruction since we do not set
7502 * complete_userspace_io. This does not handle watchpoints yet,
7503 * those would be handled in the emulate_ops.
7504 */
7505 if (!(emulation_type & EMULTYPE_SKIP) &&
7506 kvm_vcpu_check_breakpoint(vcpu, &r))
7507 return r;
7508
7509 ctxt->interruptibility = 0;
7510 ctxt->have_exception = false;
7511 ctxt->exception.vector = -1;
7512 ctxt->perm_ok = false;
7513
7514 ctxt->ud = emulation_type & EMULTYPE_TRAP_UD;
7515
7516 r = x86_decode_insn(ctxt, insn, insn_len);
7517
7518 trace_kvm_emulate_insn_start(vcpu);
7519 ++vcpu->stat.insn_emulation;
7520
7521 return r;
7522}
7523EXPORT_SYMBOL_GPL(x86_decode_emulated_instruction);
7524
736c291c
SC
7525int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
7526 int emulation_type, void *insn, int insn_len)
bbd9b64e 7527{
95cb2295 7528 int r;
c9b8b07c 7529 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
7ae441ea 7530 bool writeback = true;
09e3e2a1
SC
7531 bool write_fault_to_spt;
7532
b3646477 7533 if (unlikely(!static_call(kvm_x86_can_emulate_instruction)(vcpu, insn, insn_len)))
09e3e2a1 7534 return 1;
bbd9b64e 7535
c595ceee
PB
7536 vcpu->arch.l1tf_flush_l1d = true;
7537
93c05d3e
XG
7538 /*
7539 * Clear write_fault_to_shadow_pgtable here to ensure it is
7540 * never reused.
7541 */
09e3e2a1 7542 write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable;
93c05d3e 7543 vcpu->arch.write_fault_to_shadow_pgtable = false;
8d7d8102 7544
571008da 7545 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
4aa2691d 7546 kvm_clear_exception_queue(vcpu);
4a1e10d5 7547
4aa2691d
WH
7548 r = x86_decode_emulated_instruction(vcpu, emulation_type,
7549 insn, insn_len);
1d2887e2 7550 if (r != EMULATION_OK) {
b4000606 7551 if ((emulation_type & EMULTYPE_TRAP_UD) ||
c83fad65
SC
7552 (emulation_type & EMULTYPE_TRAP_UD_FORCED)) {
7553 kvm_queue_exception(vcpu, UD_VECTOR);
60fc3d02 7554 return 1;
c83fad65 7555 }
736c291c
SC
7556 if (reexecute_instruction(vcpu, cr2_or_gpa,
7557 write_fault_to_spt,
7558 emulation_type))
60fc3d02 7559 return 1;
8530a79c 7560 if (ctxt->have_exception) {
c8848cee
JD
7561 /*
7562 * #UD should result in just EMULATION_FAILED, and trap-like
7563 * exception should not be encountered during decode.
7564 */
7565 WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR ||
7566 exception_type(ctxt->exception.vector) == EXCPT_TRAP);
8530a79c 7567 inject_emulated_exception(vcpu);
60fc3d02 7568 return 1;
8530a79c 7569 }
e2366171 7570 return handle_emulation_failure(vcpu, emulation_type);
bbd9b64e
CO
7571 }
7572 }
7573
42cbf068
SC
7574 if ((emulation_type & EMULTYPE_VMWARE_GP) &&
7575 !is_vmware_backdoor_opcode(ctxt)) {
7576 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
60fc3d02 7577 return 1;
42cbf068 7578 }
04789b66 7579
1957aa63
SC
7580 /*
7581 * Note, EMULTYPE_SKIP is intended for use *only* by vendor callbacks
7582 * for kvm_skip_emulated_instruction(). The caller is responsible for
7583 * updating interruptibility state and injecting single-step #DBs.
7584 */
ba8afb6b 7585 if (emulation_type & EMULTYPE_SKIP) {
9dac77fa 7586 kvm_rip_write(vcpu, ctxt->_eip);
bb663c7a
NA
7587 if (ctxt->eflags & X86_EFLAGS_RF)
7588 kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF);
60fc3d02 7589 return 1;
ba8afb6b
GN
7590 }
7591
736c291c 7592 if (retry_instruction(ctxt, cr2_or_gpa, emulation_type))
60fc3d02 7593 return 1;
1cb3f3ae 7594
7ae441ea 7595 /* this is needed for vmware backdoor interface to work since it
4d2179e1 7596 changes registers values during IO operation */
7ae441ea
GN
7597 if (vcpu->arch.emulate_regs_need_sync_from_vcpu) {
7598 vcpu->arch.emulate_regs_need_sync_from_vcpu = false;
dd856efa 7599 emulator_invalidate_register_cache(ctxt);
7ae441ea 7600 }
4d2179e1 7601
5cd21917 7602restart:
92daa48b
SC
7603 if (emulation_type & EMULTYPE_PF) {
7604 /* Save the faulting GPA (cr2) in the address field */
7605 ctxt->exception.address = cr2_or_gpa;
7606
7607 /* With shadow page tables, cr2 contains a GVA or nGPA. */
7608 if (vcpu->arch.mmu->direct_map) {
744e699c
SC
7609 ctxt->gpa_available = true;
7610 ctxt->gpa_val = cr2_or_gpa;
92daa48b
SC
7611 }
7612 } else {
7613 /* Sanitize the address out of an abundance of paranoia. */
7614 ctxt->exception.address = 0;
7615 }
0f89b207 7616
9d74191a 7617 r = x86_emulate_insn(ctxt);
bbd9b64e 7618
775fde86 7619 if (r == EMULATION_INTERCEPTED)
60fc3d02 7620 return 1;
775fde86 7621
d2ddd1c4 7622 if (r == EMULATION_FAILED) {
736c291c 7623 if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt,
991eebf9 7624 emulation_type))
60fc3d02 7625 return 1;
c3cd7ffa 7626
e2366171 7627 return handle_emulation_failure(vcpu, emulation_type);
bbd9b64e
CO
7628 }
7629
9d74191a 7630 if (ctxt->have_exception) {
60fc3d02 7631 r = 1;
ef54bcfe
PB
7632 if (inject_emulated_exception(vcpu))
7633 return r;
d2ddd1c4 7634 } else if (vcpu->arch.pio.count) {
0912c977
PB
7635 if (!vcpu->arch.pio.in) {
7636 /* FIXME: return into emulator if single-stepping. */
3457e419 7637 vcpu->arch.pio.count = 0;
0912c977 7638 } else {
7ae441ea 7639 writeback = false;
716d51ab
GN
7640 vcpu->arch.complete_userspace_io = complete_emulated_pio;
7641 }
60fc3d02 7642 r = 0;
7ae441ea 7643 } else if (vcpu->mmio_needed) {
bc8a0aaf
SC
7644 ++vcpu->stat.mmio_exits;
7645
7ae441ea
GN
7646 if (!vcpu->mmio_is_write)
7647 writeback = false;
60fc3d02 7648 r = 0;
716d51ab 7649 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
7ae441ea 7650 } else if (r == EMULATION_RESTART)
5cd21917 7651 goto restart;
d2ddd1c4 7652 else
60fc3d02 7653 r = 1;
f850e2e6 7654
7ae441ea 7655 if (writeback) {
b3646477 7656 unsigned long rflags = static_call(kvm_x86_get_rflags)(vcpu);
9d74191a 7657 toggle_interruptibility(vcpu, ctxt->interruptibility);
7ae441ea 7658 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
38827dbd 7659 if (!ctxt->have_exception ||
75ee23b3
SC
7660 exception_type(ctxt->exception.vector) == EXCPT_TRAP) {
7661 kvm_rip_write(vcpu, ctxt->eip);
384dea1c 7662 if (r && (ctxt->tf || (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)))
120c2c4f 7663 r = kvm_vcpu_do_singlestep(vcpu);
afaf0b2f 7664 if (kvm_x86_ops.update_emulated_instruction)
b3646477 7665 static_call(kvm_x86_update_emulated_instruction)(vcpu);
38827dbd 7666 __kvm_set_rflags(vcpu, ctxt->eflags);
75ee23b3 7667 }
6addfc42
PB
7668
7669 /*
7670 * For STI, interrupts are shadowed; so KVM_REQ_EVENT will
7671 * do nothing, and it will be requested again as soon as
7672 * the shadow expires. But we still need to check here,
7673 * because POPF has no interrupt shadow.
7674 */
7675 if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF))
7676 kvm_make_request(KVM_REQ_EVENT, vcpu);
7ae441ea
GN
7677 } else
7678 vcpu->arch.emulate_regs_need_sync_to_vcpu = true;
e85d28f8
GN
7679
7680 return r;
de7d789a 7681}
c60658d1
SC
7682
7683int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type)
7684{
7685 return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0);
7686}
7687EXPORT_SYMBOL_GPL(kvm_emulate_instruction);
7688
7689int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu,
7690 void *insn, int insn_len)
7691{
7692 return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len);
7693}
7694EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer);
de7d789a 7695
8764ed55
SC
7696static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu)
7697{
7698 vcpu->arch.pio.count = 0;
7699 return 1;
7700}
7701
45def77e
SC
7702static int complete_fast_pio_out(struct kvm_vcpu *vcpu)
7703{
7704 vcpu->arch.pio.count = 0;
7705
7706 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip)))
7707 return 1;
7708
7709 return kvm_skip_emulated_instruction(vcpu);
7710}
7711
dca7f128
SC
7712static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size,
7713 unsigned short port)
de7d789a 7714{
de3cd117 7715 unsigned long val = kvm_rax_read(vcpu);
2e3bb4d8
SC
7716 int ret = emulator_pio_out(vcpu, size, port, &val, 1);
7717
8764ed55
SC
7718 if (ret)
7719 return ret;
45def77e 7720
8764ed55
SC
7721 /*
7722 * Workaround userspace that relies on old KVM behavior of %rip being
7723 * incremented prior to exiting to userspace to handle "OUT 0x7e".
7724 */
7725 if (port == 0x7e &&
7726 kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) {
7727 vcpu->arch.complete_userspace_io =
7728 complete_fast_pio_out_port_0x7e;
7729 kvm_skip_emulated_instruction(vcpu);
7730 } else {
45def77e
SC
7731 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
7732 vcpu->arch.complete_userspace_io = complete_fast_pio_out;
7733 }
8764ed55 7734 return 0;
de7d789a 7735}
de7d789a 7736
8370c3d0
TL
7737static int complete_fast_pio_in(struct kvm_vcpu *vcpu)
7738{
7739 unsigned long val;
7740
7741 /* We should only ever be called with arch.pio.count equal to 1 */
7742 BUG_ON(vcpu->arch.pio.count != 1);
7743
45def77e
SC
7744 if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) {
7745 vcpu->arch.pio.count = 0;
7746 return 1;
7747 }
7748
8370c3d0 7749 /* For size less than 4 we merge, else we zero extend */
de3cd117 7750 val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0;
8370c3d0
TL
7751
7752 /*
2e3bb4d8 7753 * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform
8370c3d0
TL
7754 * the copy and tracing
7755 */
2e3bb4d8 7756 emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1);
de3cd117 7757 kvm_rax_write(vcpu, val);
8370c3d0 7758
45def77e 7759 return kvm_skip_emulated_instruction(vcpu);
8370c3d0
TL
7760}
7761
dca7f128
SC
7762static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size,
7763 unsigned short port)
8370c3d0
TL
7764{
7765 unsigned long val;
7766 int ret;
7767
7768 /* For size less than 4 we merge, else we zero extend */
de3cd117 7769 val = (size < 4) ? kvm_rax_read(vcpu) : 0;
8370c3d0 7770
2e3bb4d8 7771 ret = emulator_pio_in(vcpu, size, port, &val, 1);
8370c3d0 7772 if (ret) {
de3cd117 7773 kvm_rax_write(vcpu, val);
8370c3d0
TL
7774 return ret;
7775 }
7776
45def77e 7777 vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu);
8370c3d0
TL
7778 vcpu->arch.complete_userspace_io = complete_fast_pio_in;
7779
7780 return 0;
7781}
dca7f128
SC
7782
7783int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in)
7784{
45def77e 7785 int ret;
dca7f128 7786
dca7f128 7787 if (in)
45def77e 7788 ret = kvm_fast_pio_in(vcpu, size, port);
dca7f128 7789 else
45def77e
SC
7790 ret = kvm_fast_pio_out(vcpu, size, port);
7791 return ret && kvm_skip_emulated_instruction(vcpu);
dca7f128
SC
7792}
7793EXPORT_SYMBOL_GPL(kvm_fast_pio);
8370c3d0 7794
251a5fd6 7795static int kvmclock_cpu_down_prep(unsigned int cpu)
8cfdc000 7796{
0a3aee0d 7797 __this_cpu_write(cpu_tsc_khz, 0);
251a5fd6 7798 return 0;
8cfdc000
ZA
7799}
7800
7801static void tsc_khz_changed(void *data)
c8076604 7802{
8cfdc000
ZA
7803 struct cpufreq_freqs *freq = data;
7804 unsigned long khz = 0;
7805
7806 if (data)
7807 khz = freq->new;
7808 else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
7809 khz = cpufreq_quick_get(raw_smp_processor_id());
7810 if (!khz)
7811 khz = tsc_khz;
0a3aee0d 7812 __this_cpu_write(cpu_tsc_khz, khz);
c8076604
GH
7813}
7814
5fa4ec9c 7815#ifdef CONFIG_X86_64
0092e434
VK
7816static void kvm_hyperv_tsc_notifier(void)
7817{
0092e434
VK
7818 struct kvm *kvm;
7819 struct kvm_vcpu *vcpu;
7820 int cpu;
a83829f5 7821 unsigned long flags;
0092e434 7822
0d9ce162 7823 mutex_lock(&kvm_lock);
0092e434
VK
7824 list_for_each_entry(kvm, &vm_list, vm_list)
7825 kvm_make_mclock_inprogress_request(kvm);
7826
7827 hyperv_stop_tsc_emulation();
7828
7829 /* TSC frequency always matches when on Hyper-V */
7830 for_each_present_cpu(cpu)
7831 per_cpu(cpu_tsc_khz, cpu) = tsc_khz;
7832 kvm_max_guest_tsc_khz = tsc_khz;
7833
7834 list_for_each_entry(kvm, &vm_list, vm_list) {
7835 struct kvm_arch *ka = &kvm->arch;
7836
a83829f5 7837 spin_lock_irqsave(&ka->pvclock_gtod_sync_lock, flags);
0092e434 7838 pvclock_update_vm_gtod_copy(kvm);
a83829f5 7839 spin_unlock_irqrestore(&ka->pvclock_gtod_sync_lock, flags);
0092e434
VK
7840
7841 kvm_for_each_vcpu(cpu, vcpu, kvm)
7842 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
7843
7844 kvm_for_each_vcpu(cpu, vcpu, kvm)
7845 kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu);
0092e434 7846 }
0d9ce162 7847 mutex_unlock(&kvm_lock);
0092e434 7848}
5fa4ec9c 7849#endif
0092e434 7850
df24014a 7851static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu)
c8076604 7852{
c8076604
GH
7853 struct kvm *kvm;
7854 struct kvm_vcpu *vcpu;
7855 int i, send_ipi = 0;
7856
8cfdc000
ZA
7857 /*
7858 * We allow guests to temporarily run on slowing clocks,
7859 * provided we notify them after, or to run on accelerating
7860 * clocks, provided we notify them before. Thus time never
7861 * goes backwards.
7862 *
7863 * However, we have a problem. We can't atomically update
7864 * the frequency of a given CPU from this function; it is
7865 * merely a notifier, which can be called from any CPU.
7866 * Changing the TSC frequency at arbitrary points in time
7867 * requires a recomputation of local variables related to
7868 * the TSC for each VCPU. We must flag these local variables
7869 * to be updated and be sure the update takes place with the
7870 * new frequency before any guests proceed.
7871 *
7872 * Unfortunately, the combination of hotplug CPU and frequency
7873 * change creates an intractable locking scenario; the order
7874 * of when these callouts happen is undefined with respect to
7875 * CPU hotplug, and they can race with each other. As such,
7876 * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is
7877 * undefined; you can actually have a CPU frequency change take
7878 * place in between the computation of X and the setting of the
7879 * variable. To protect against this problem, all updates of
7880 * the per_cpu tsc_khz variable are done in an interrupt
7881 * protected IPI, and all callers wishing to update the value
7882 * must wait for a synchronous IPI to complete (which is trivial
7883 * if the caller is on the CPU already). This establishes the
7884 * necessary total order on variable updates.
7885 *
7886 * Note that because a guest time update may take place
7887 * anytime after the setting of the VCPU's request bit, the
7888 * correct TSC value must be set before the request. However,
7889 * to ensure the update actually makes it to any guest which
7890 * starts running in hardware virtualization between the set
7891 * and the acquisition of the spinlock, we must also ping the
7892 * CPU after setting the request bit.
7893 *
7894 */
7895
df24014a 7896 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
c8076604 7897
0d9ce162 7898 mutex_lock(&kvm_lock);
c8076604 7899 list_for_each_entry(kvm, &vm_list, vm_list) {
988a2cae 7900 kvm_for_each_vcpu(i, vcpu, kvm) {
df24014a 7901 if (vcpu->cpu != cpu)
c8076604 7902 continue;
c285545f 7903 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
0d9ce162 7904 if (vcpu->cpu != raw_smp_processor_id())
8cfdc000 7905 send_ipi = 1;
c8076604
GH
7906 }
7907 }
0d9ce162 7908 mutex_unlock(&kvm_lock);
c8076604
GH
7909
7910 if (freq->old < freq->new && send_ipi) {
7911 /*
7912 * We upscale the frequency. Must make the guest
7913 * doesn't see old kvmclock values while running with
7914 * the new frequency, otherwise we risk the guest sees
7915 * time go backwards.
7916 *
7917 * In case we update the frequency for another cpu
7918 * (which might be in guest context) send an interrupt
7919 * to kick the cpu out of guest context. Next time
7920 * guest context is entered kvmclock will be updated,
7921 * so the guest will not see stale values.
7922 */
df24014a 7923 smp_call_function_single(cpu, tsc_khz_changed, freq, 1);
c8076604 7924 }
df24014a
VK
7925}
7926
7927static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
7928 void *data)
7929{
7930 struct cpufreq_freqs *freq = data;
7931 int cpu;
7932
7933 if (val == CPUFREQ_PRECHANGE && freq->old > freq->new)
7934 return 0;
7935 if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new)
7936 return 0;
7937
7938 for_each_cpu(cpu, freq->policy->cpus)
7939 __kvmclock_cpufreq_notifier(freq, cpu);
7940
c8076604
GH
7941 return 0;
7942}
7943
7944static struct notifier_block kvmclock_cpufreq_notifier_block = {
8cfdc000
ZA
7945 .notifier_call = kvmclock_cpufreq_notifier
7946};
7947
251a5fd6 7948static int kvmclock_cpu_online(unsigned int cpu)
8cfdc000 7949{
251a5fd6
SAS
7950 tsc_khz_changed(NULL);
7951 return 0;
8cfdc000
ZA
7952}
7953
b820cc0c
ZA
7954static void kvm_timer_init(void)
7955{
c285545f 7956 max_tsc_khz = tsc_khz;
460dd42e 7957
b820cc0c 7958 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
c285545f 7959#ifdef CONFIG_CPU_FREQ
aaec7c03 7960 struct cpufreq_policy *policy;
758f588d
BP
7961 int cpu;
7962
3e26f230 7963 cpu = get_cpu();
aaec7c03 7964 policy = cpufreq_cpu_get(cpu);
9a11997e
WL
7965 if (policy) {
7966 if (policy->cpuinfo.max_freq)
7967 max_tsc_khz = policy->cpuinfo.max_freq;
7968 cpufreq_cpu_put(policy);
7969 }
3e26f230 7970 put_cpu();
c285545f 7971#endif
b820cc0c
ZA
7972 cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block,
7973 CPUFREQ_TRANSITION_NOTIFIER);
7974 }
460dd42e 7975
73c1b41e 7976 cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online",
251a5fd6 7977 kvmclock_cpu_online, kvmclock_cpu_down_prep);
b820cc0c
ZA
7978}
7979
dd60d217
AK
7980DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu);
7981EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu);
ff9d07a0 7982
f5132b01 7983int kvm_is_in_guest(void)
ff9d07a0 7984{
086c9855 7985 return __this_cpu_read(current_vcpu) != NULL;
ff9d07a0
ZY
7986}
7987
7988static int kvm_is_user_mode(void)
7989{
7990 int user_mode = 3;
dcf46b94 7991
086c9855 7992 if (__this_cpu_read(current_vcpu))
b3646477 7993 user_mode = static_call(kvm_x86_get_cpl)(__this_cpu_read(current_vcpu));
dcf46b94 7994
ff9d07a0
ZY
7995 return user_mode != 0;
7996}
7997
7998static unsigned long kvm_get_guest_ip(void)
7999{
8000 unsigned long ip = 0;
dcf46b94 8001
086c9855
AS
8002 if (__this_cpu_read(current_vcpu))
8003 ip = kvm_rip_read(__this_cpu_read(current_vcpu));
dcf46b94 8004
ff9d07a0
ZY
8005 return ip;
8006}
8007
8479e04e
LK
8008static void kvm_handle_intel_pt_intr(void)
8009{
8010 struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu);
8011
8012 kvm_make_request(KVM_REQ_PMI, vcpu);
8013 __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT,
8014 (unsigned long *)&vcpu->arch.pmu.global_status);
8015}
8016
ff9d07a0
ZY
8017static struct perf_guest_info_callbacks kvm_guest_cbs = {
8018 .is_in_guest = kvm_is_in_guest,
8019 .is_user_mode = kvm_is_user_mode,
8020 .get_guest_ip = kvm_get_guest_ip,
8479e04e 8021 .handle_intel_pt_intr = kvm_handle_intel_pt_intr,
ff9d07a0
ZY
8022};
8023
16e8d74d
MT
8024#ifdef CONFIG_X86_64
8025static void pvclock_gtod_update_fn(struct work_struct *work)
8026{
d828199e
MT
8027 struct kvm *kvm;
8028
8029 struct kvm_vcpu *vcpu;
8030 int i;
8031
0d9ce162 8032 mutex_lock(&kvm_lock);
d828199e
MT
8033 list_for_each_entry(kvm, &vm_list, vm_list)
8034 kvm_for_each_vcpu(i, vcpu, kvm)
105b21bb 8035 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
d828199e 8036 atomic_set(&kvm_guest_has_master_clock, 0);
0d9ce162 8037 mutex_unlock(&kvm_lock);
16e8d74d
MT
8038}
8039
8040static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn);
8041
8042/*
8043 * Notification about pvclock gtod data update.
8044 */
8045static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
8046 void *priv)
8047{
8048 struct pvclock_gtod_data *gtod = &pvclock_gtod_data;
8049 struct timekeeper *tk = priv;
8050
8051 update_pvclock_gtod(tk);
8052
8053 /* disable master clock if host does not trust, or does not
b0c39dc6 8054 * use, TSC based clocksource.
16e8d74d 8055 */
b0c39dc6 8056 if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) &&
16e8d74d
MT
8057 atomic_read(&kvm_guest_has_master_clock) != 0)
8058 queue_work(system_long_wq, &pvclock_gtod_work);
8059
8060 return 0;
8061}
8062
8063static struct notifier_block pvclock_gtod_notifier = {
8064 .notifier_call = pvclock_gtod_notify,
8065};
8066#endif
8067
f8c16bba 8068int kvm_arch_init(void *opaque)
043405e1 8069{
d008dfdb 8070 struct kvm_x86_init_ops *ops = opaque;
b820cc0c 8071 int r;
f8c16bba 8072
afaf0b2f 8073 if (kvm_x86_ops.hardware_enable) {
f8c16bba 8074 printk(KERN_ERR "kvm: already loaded the other module\n");
56c6d28a
ZX
8075 r = -EEXIST;
8076 goto out;
f8c16bba
ZX
8077 }
8078
8079 if (!ops->cpu_has_kvm_support()) {
ef935c25 8080 pr_err_ratelimited("kvm: no hardware support\n");
56c6d28a
ZX
8081 r = -EOPNOTSUPP;
8082 goto out;
f8c16bba
ZX
8083 }
8084 if (ops->disabled_by_bios()) {
ef935c25 8085 pr_err_ratelimited("kvm: disabled by bios\n");
56c6d28a
ZX
8086 r = -EOPNOTSUPP;
8087 goto out;
f8c16bba
ZX
8088 }
8089
b666a4b6
MO
8090 /*
8091 * KVM explicitly assumes that the guest has an FPU and
8092 * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the
8093 * vCPU's FPU state as a fxregs_state struct.
8094 */
8095 if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) {
8096 printk(KERN_ERR "kvm: inadequate fpu\n");
8097 r = -EOPNOTSUPP;
8098 goto out;
8099 }
8100
013f6a5d 8101 r = -ENOMEM;
ed8e4812 8102 x86_fpu_cache = kmem_cache_create("x86_fpu", sizeof(struct fpu),
b666a4b6
MO
8103 __alignof__(struct fpu), SLAB_ACCOUNT,
8104 NULL);
8105 if (!x86_fpu_cache) {
8106 printk(KERN_ERR "kvm: failed to allocate cache for x86 fpu\n");
8107 goto out;
8108 }
8109
c9b8b07c
SC
8110 x86_emulator_cache = kvm_alloc_emulator_cache();
8111 if (!x86_emulator_cache) {
8112 pr_err("kvm: failed to allocate cache for x86 emulator\n");
8113 goto out_free_x86_fpu_cache;
8114 }
8115
7e34fbd0
SC
8116 user_return_msrs = alloc_percpu(struct kvm_user_return_msrs);
8117 if (!user_return_msrs) {
8118 printk(KERN_ERR "kvm: failed to allocate percpu kvm_user_return_msrs\n");
c9b8b07c 8119 goto out_free_x86_emulator_cache;
013f6a5d
MT
8120 }
8121
97db56ce
AK
8122 r = kvm_mmu_module_init();
8123 if (r)
013f6a5d 8124 goto out_free_percpu;
97db56ce 8125
b820cc0c 8126 kvm_timer_init();
c8076604 8127
ff9d07a0
ZY
8128 perf_register_guest_info_callbacks(&kvm_guest_cbs);
8129
cfc48181 8130 if (boot_cpu_has(X86_FEATURE_XSAVE)) {
2acf923e 8131 host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
cfc48181
SC
8132 supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0;
8133 }
2acf923e 8134
0c5f81da
WL
8135 if (pi_inject_timer == -1)
8136 pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER);
16e8d74d
MT
8137#ifdef CONFIG_X86_64
8138 pvclock_gtod_register_notifier(&pvclock_gtod_notifier);
0092e434 8139
5fa4ec9c 8140 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
0092e434 8141 set_hv_tscchange_cb(kvm_hyperv_tsc_notifier);
16e8d74d
MT
8142#endif
8143
f8c16bba 8144 return 0;
56c6d28a 8145
013f6a5d 8146out_free_percpu:
7e34fbd0 8147 free_percpu(user_return_msrs);
c9b8b07c
SC
8148out_free_x86_emulator_cache:
8149 kmem_cache_destroy(x86_emulator_cache);
b666a4b6
MO
8150out_free_x86_fpu_cache:
8151 kmem_cache_destroy(x86_fpu_cache);
56c6d28a 8152out:
56c6d28a 8153 return r;
043405e1 8154}
8776e519 8155
f8c16bba
ZX
8156void kvm_arch_exit(void)
8157{
0092e434 8158#ifdef CONFIG_X86_64
5fa4ec9c 8159 if (hypervisor_is_type(X86_HYPER_MS_HYPERV))
0092e434
VK
8160 clear_hv_tscchange_cb();
8161#endif
cef84c30 8162 kvm_lapic_exit();
ff9d07a0
ZY
8163 perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
8164
888d256e
JK
8165 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
8166 cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
8167 CPUFREQ_TRANSITION_NOTIFIER);
251a5fd6 8168 cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE);
16e8d74d
MT
8169#ifdef CONFIG_X86_64
8170 pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier);
8171#endif
afaf0b2f 8172 kvm_x86_ops.hardware_enable = NULL;
56c6d28a 8173 kvm_mmu_module_exit();
7e34fbd0 8174 free_percpu(user_return_msrs);
b666a4b6 8175 kmem_cache_destroy(x86_fpu_cache);
b59b153d 8176#ifdef CONFIG_KVM_XEN
c462f859 8177 static_key_deferred_flush(&kvm_xen_enabled);
7d6bbebb 8178 WARN_ON(static_branch_unlikely(&kvm_xen_enabled.key));
b59b153d 8179#endif
56c6d28a 8180}
f8c16bba 8181
872f36eb 8182static int __kvm_vcpu_halt(struct kvm_vcpu *vcpu, int state, int reason)
8776e519
HB
8183{
8184 ++vcpu->stat.halt_exits;
35754c98 8185 if (lapic_in_kernel(vcpu)) {
647daca2 8186 vcpu->arch.mp_state = state;
8776e519
HB
8187 return 1;
8188 } else {
647daca2 8189 vcpu->run->exit_reason = reason;
8776e519
HB
8190 return 0;
8191 }
8192}
647daca2
TL
8193
8194int kvm_vcpu_halt(struct kvm_vcpu *vcpu)
8195{
8196 return __kvm_vcpu_halt(vcpu, KVM_MP_STATE_HALTED, KVM_EXIT_HLT);
8197}
5cb56059
JS
8198EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
8199
8200int kvm_emulate_halt(struct kvm_vcpu *vcpu)
8201{
6affcbed
KH
8202 int ret = kvm_skip_emulated_instruction(vcpu);
8203 /*
8204 * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered
8205 * KVM_EXIT_DEBUG here.
8206 */
8207 return kvm_vcpu_halt(vcpu) && ret;
5cb56059 8208}
8776e519
HB
8209EXPORT_SYMBOL_GPL(kvm_emulate_halt);
8210
647daca2
TL
8211int kvm_emulate_ap_reset_hold(struct kvm_vcpu *vcpu)
8212{
8213 int ret = kvm_skip_emulated_instruction(vcpu);
8214
8215 return __kvm_vcpu_halt(vcpu, KVM_MP_STATE_AP_RESET_HOLD, KVM_EXIT_AP_RESET_HOLD) && ret;
8216}
8217EXPORT_SYMBOL_GPL(kvm_emulate_ap_reset_hold);
8218
8ef81a9a 8219#ifdef CONFIG_X86_64
55dd00a7
MT
8220static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr,
8221 unsigned long clock_type)
8222{
8223 struct kvm_clock_pairing clock_pairing;
899a31f5 8224 struct timespec64 ts;
80fbd89c 8225 u64 cycle;
55dd00a7
MT
8226 int ret;
8227
8228 if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK)
8229 return -KVM_EOPNOTSUPP;
8230
7ca7f3b9 8231 if (!kvm_get_walltime_and_clockread(&ts, &cycle))
55dd00a7
MT
8232 return -KVM_EOPNOTSUPP;
8233
8234 clock_pairing.sec = ts.tv_sec;
8235 clock_pairing.nsec = ts.tv_nsec;
8236 clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle);
8237 clock_pairing.flags = 0;
bcbfbd8e 8238 memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad));
55dd00a7
MT
8239
8240 ret = 0;
8241 if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing,
8242 sizeof(struct kvm_clock_pairing)))
8243 ret = -KVM_EFAULT;
8244
8245 return ret;
8246}
8ef81a9a 8247#endif
55dd00a7 8248
6aef266c
SV
8249/*
8250 * kvm_pv_kick_cpu_op: Kick a vcpu.
8251 *
8252 * @apicid - apicid of vcpu to be kicked.
8253 */
8254static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid)
8255{
24d2166b 8256 struct kvm_lapic_irq lapic_irq;
6aef266c 8257
150a84fe 8258 lapic_irq.shorthand = APIC_DEST_NOSHORT;
c96001c5 8259 lapic_irq.dest_mode = APIC_DEST_PHYSICAL;
ebd28fcb 8260 lapic_irq.level = 0;
24d2166b 8261 lapic_irq.dest_id = apicid;
93bbf0b8 8262 lapic_irq.msi_redir_hint = false;
6aef266c 8263
24d2166b 8264 lapic_irq.delivery_mode = APIC_DM_REMRD;
795a149e 8265 kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL);
6aef266c
SV
8266}
8267
4e19c36f
SS
8268bool kvm_apicv_activated(struct kvm *kvm)
8269{
8270 return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0);
8271}
8272EXPORT_SYMBOL_GPL(kvm_apicv_activated);
8273
8274void kvm_apicv_init(struct kvm *kvm, bool enable)
8275{
8276 if (enable)
8277 clear_bit(APICV_INHIBIT_REASON_DISABLE,
8278 &kvm->arch.apicv_inhibit_reasons);
8279 else
8280 set_bit(APICV_INHIBIT_REASON_DISABLE,
8281 &kvm->arch.apicv_inhibit_reasons);
8282}
8283EXPORT_SYMBOL_GPL(kvm_apicv_init);
8284
4a7132ef 8285static void kvm_sched_yield(struct kvm_vcpu *vcpu, unsigned long dest_id)
71506297
WL
8286{
8287 struct kvm_vcpu *target = NULL;
8288 struct kvm_apic_map *map;
8289
4a7132ef
WL
8290 vcpu->stat.directed_yield_attempted++;
8291
71506297 8292 rcu_read_lock();
4a7132ef 8293 map = rcu_dereference(vcpu->kvm->arch.apic_map);
71506297
WL
8294
8295 if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id])
8296 target = map->phys_map[dest_id]->vcpu;
8297
8298 rcu_read_unlock();
8299
4a7132ef
WL
8300 if (!target || !READ_ONCE(target->ready))
8301 goto no_yield;
8302
a1fa4cbd
WL
8303 /* Ignore requests to yield to self */
8304 if (vcpu == target)
8305 goto no_yield;
8306
4a7132ef
WL
8307 if (kvm_vcpu_yield_to(target) <= 0)
8308 goto no_yield;
8309
8310 vcpu->stat.directed_yield_successful++;
8311
8312no_yield:
8313 return;
71506297
WL
8314}
8315
8776e519
HB
8316int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
8317{
8318 unsigned long nr, a0, a1, a2, a3, ret;
6356ee0c 8319 int op_64_bit;
8776e519 8320
23200b7a
JM
8321 if (kvm_xen_hypercall_enabled(vcpu->kvm))
8322 return kvm_xen_hypercall(vcpu);
8323
8f014550 8324 if (kvm_hv_hypercall_enabled(vcpu))
696ca779 8325 return kvm_hv_hypercall(vcpu);
55cd8e5a 8326
de3cd117
SC
8327 nr = kvm_rax_read(vcpu);
8328 a0 = kvm_rbx_read(vcpu);
8329 a1 = kvm_rcx_read(vcpu);
8330 a2 = kvm_rdx_read(vcpu);
8331 a3 = kvm_rsi_read(vcpu);
8776e519 8332
229456fc 8333 trace_kvm_hypercall(nr, a0, a1, a2, a3);
2714d1d3 8334
a449c7aa
NA
8335 op_64_bit = is_64_bit_mode(vcpu);
8336 if (!op_64_bit) {
8776e519
HB
8337 nr &= 0xFFFFFFFF;
8338 a0 &= 0xFFFFFFFF;
8339 a1 &= 0xFFFFFFFF;
8340 a2 &= 0xFFFFFFFF;
8341 a3 &= 0xFFFFFFFF;
8342 }
8343
b3646477 8344 if (static_call(kvm_x86_get_cpl)(vcpu) != 0) {
07708c4a 8345 ret = -KVM_EPERM;
696ca779 8346 goto out;
07708c4a
JK
8347 }
8348
66570e96
OU
8349 ret = -KVM_ENOSYS;
8350
8776e519 8351 switch (nr) {
b93463aa
AK
8352 case KVM_HC_VAPIC_POLL_IRQ:
8353 ret = 0;
8354 break;
6aef266c 8355 case KVM_HC_KICK_CPU:
66570e96
OU
8356 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_UNHALT))
8357 break;
8358
6aef266c 8359 kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1);
4a7132ef 8360 kvm_sched_yield(vcpu, a1);
6aef266c
SV
8361 ret = 0;
8362 break;
8ef81a9a 8363#ifdef CONFIG_X86_64
55dd00a7
MT
8364 case KVM_HC_CLOCK_PAIRING:
8365 ret = kvm_pv_clock_pairing(vcpu, a0, a1);
8366 break;
1ed199a4 8367#endif
4180bf1b 8368 case KVM_HC_SEND_IPI:
66570e96
OU
8369 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SEND_IPI))
8370 break;
8371
4180bf1b
WL
8372 ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit);
8373 break;
71506297 8374 case KVM_HC_SCHED_YIELD:
66570e96
OU
8375 if (!guest_pv_has(vcpu, KVM_FEATURE_PV_SCHED_YIELD))
8376 break;
8377
4a7132ef 8378 kvm_sched_yield(vcpu, a0);
71506297
WL
8379 ret = 0;
8380 break;
8776e519
HB
8381 default:
8382 ret = -KVM_ENOSYS;
8383 break;
8384 }
696ca779 8385out:
a449c7aa
NA
8386 if (!op_64_bit)
8387 ret = (u32)ret;
de3cd117 8388 kvm_rax_write(vcpu, ret);
6356ee0c 8389
f11c3a8d 8390 ++vcpu->stat.hypercalls;
6356ee0c 8391 return kvm_skip_emulated_instruction(vcpu);
8776e519
HB
8392}
8393EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
8394
b6785def 8395static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt)
8776e519 8396{
d6aa1000 8397 struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt);
8776e519 8398 char instruction[3];
5fdbf976 8399 unsigned long rip = kvm_rip_read(vcpu);
8776e519 8400
b3646477 8401 static_call(kvm_x86_patch_hypercall)(vcpu, instruction);
8776e519 8402
ce2e852e
DV
8403 return emulator_write_emulated(ctxt, rip, instruction, 3,
8404 &ctxt->exception);
8776e519
HB
8405}
8406
851ba692 8407static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu)
b6c7a5dc 8408{
782d422b
MG
8409 return vcpu->run->request_interrupt_window &&
8410 likely(!pic_in_kernel(vcpu->kvm));
b6c7a5dc
HB
8411}
8412
851ba692 8413static void post_kvm_run_save(struct kvm_vcpu *vcpu)
b6c7a5dc 8414{
851ba692
AK
8415 struct kvm_run *kvm_run = vcpu->run;
8416
f1c6366e
TL
8417 /*
8418 * if_flag is obsolete and useless, so do not bother
8419 * setting it for SEV-ES guests. Userspace can just
8420 * use kvm_run->ready_for_interrupt_injection.
8421 */
8422 kvm_run->if_flag = !vcpu->arch.guest_state_protected
8423 && (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
8424
2d3ad1f4 8425 kvm_run->cr8 = kvm_get_cr8(vcpu);
b6c7a5dc 8426 kvm_run->apic_base = kvm_get_apic_base(vcpu);
127a457a
MG
8427 kvm_run->ready_for_interrupt_injection =
8428 pic_in_kernel(vcpu->kvm) ||
782d422b 8429 kvm_vcpu_ready_for_interrupt_injection(vcpu);
15aad3be
CQ
8430
8431 if (is_smm(vcpu))
8432 kvm_run->flags |= KVM_RUN_X86_SMM;
b6c7a5dc
HB
8433}
8434
95ba8273
GN
8435static void update_cr8_intercept(struct kvm_vcpu *vcpu)
8436{
8437 int max_irr, tpr;
8438
afaf0b2f 8439 if (!kvm_x86_ops.update_cr8_intercept)
95ba8273
GN
8440 return;
8441
bce87cce 8442 if (!lapic_in_kernel(vcpu))
88c808fd
AK
8443 return;
8444
d62caabb
AS
8445 if (vcpu->arch.apicv_active)
8446 return;
8447
8db3baa2
GN
8448 if (!vcpu->arch.apic->vapic_addr)
8449 max_irr = kvm_lapic_find_highest_irr(vcpu);
8450 else
8451 max_irr = -1;
95ba8273
GN
8452
8453 if (max_irr != -1)
8454 max_irr >>= 4;
8455
8456 tpr = kvm_lapic_get_cr8(vcpu);
8457
b3646477 8458 static_call(kvm_x86_update_cr8_intercept)(vcpu, tpr, max_irr);
95ba8273
GN
8459}
8460
b97f0745 8461
cb6a32c2
SC
8462int kvm_check_nested_events(struct kvm_vcpu *vcpu)
8463{
8464 if (WARN_ON_ONCE(!is_guest_mode(vcpu)))
8465 return -EIO;
8466
8467 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
8468 kvm_x86_ops.nested_ops->triple_fault(vcpu);
8469 return 1;
8470 }
8471
8472 return kvm_x86_ops.nested_ops->check_events(vcpu);
8473}
8474
b97f0745
ML
8475static void kvm_inject_exception(struct kvm_vcpu *vcpu)
8476{
8477 if (vcpu->arch.exception.error_code && !is_protmode(vcpu))
8478 vcpu->arch.exception.error_code = false;
8479 static_call(kvm_x86_queue_exception)(vcpu);
8480}
8481
c9d40913 8482static void inject_pending_event(struct kvm_vcpu *vcpu, bool *req_immediate_exit)
95ba8273 8483{
b6b8a145 8484 int r;
c6b22f59 8485 bool can_inject = true;
b6b8a145 8486
95ba8273 8487 /* try to reinject previous events if any */
664f8e26 8488
c6b22f59 8489 if (vcpu->arch.exception.injected) {
b97f0745 8490 kvm_inject_exception(vcpu);
c6b22f59
PB
8491 can_inject = false;
8492 }
664f8e26 8493 /*
a042c26f
LA
8494 * Do not inject an NMI or interrupt if there is a pending
8495 * exception. Exceptions and interrupts are recognized at
8496 * instruction boundaries, i.e. the start of an instruction.
8497 * Trap-like exceptions, e.g. #DB, have higher priority than
8498 * NMIs and interrupts, i.e. traps are recognized before an
8499 * NMI/interrupt that's pending on the same instruction.
8500 * Fault-like exceptions, e.g. #GP and #PF, are the lowest
8501 * priority, but are only generated (pended) during instruction
8502 * execution, i.e. a pending fault-like exception means the
8503 * fault occurred on the *previous* instruction and must be
8504 * serviced prior to recognizing any new events in order to
8505 * fully complete the previous instruction.
664f8e26 8506 */
1a680e35 8507 else if (!vcpu->arch.exception.pending) {
c6b22f59 8508 if (vcpu->arch.nmi_injected) {
b3646477 8509 static_call(kvm_x86_set_nmi)(vcpu);
c6b22f59
PB
8510 can_inject = false;
8511 } else if (vcpu->arch.interrupt.injected) {
b3646477 8512 static_call(kvm_x86_set_irq)(vcpu);
c6b22f59
PB
8513 can_inject = false;
8514 }
664f8e26
WL
8515 }
8516
3b82b8d7
SC
8517 WARN_ON_ONCE(vcpu->arch.exception.injected &&
8518 vcpu->arch.exception.pending);
8519
1a680e35
LA
8520 /*
8521 * Call check_nested_events() even if we reinjected a previous event
8522 * in order for caller to determine if it should require immediate-exit
8523 * from L2 to L1 due to pending L1 events which require exit
8524 * from L2 to L1.
8525 */
56083bdf 8526 if (is_guest_mode(vcpu)) {
cb6a32c2 8527 r = kvm_check_nested_events(vcpu);
c9d40913
PB
8528 if (r < 0)
8529 goto busy;
664f8e26
WL
8530 }
8531
8532 /* try to inject new event if pending */
b59bb7bd 8533 if (vcpu->arch.exception.pending) {
5c1c85d0
AK
8534 trace_kvm_inj_exception(vcpu->arch.exception.nr,
8535 vcpu->arch.exception.has_error_code,
8536 vcpu->arch.exception.error_code);
d6e8c854 8537
664f8e26
WL
8538 vcpu->arch.exception.pending = false;
8539 vcpu->arch.exception.injected = true;
8540
d6e8c854
NA
8541 if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT)
8542 __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) |
8543 X86_EFLAGS_RF);
8544
f10c729f 8545 if (vcpu->arch.exception.nr == DB_VECTOR) {
f10c729f
JM
8546 kvm_deliver_exception_payload(vcpu);
8547 if (vcpu->arch.dr7 & DR7_GD) {
8548 vcpu->arch.dr7 &= ~DR7_GD;
8549 kvm_update_dr7(vcpu);
8550 }
6bdf0662
NA
8551 }
8552
b97f0745 8553 kvm_inject_exception(vcpu);
c6b22f59 8554 can_inject = false;
1a680e35
LA
8555 }
8556
c9d40913
PB
8557 /*
8558 * Finally, inject interrupt events. If an event cannot be injected
8559 * due to architectural conditions (e.g. IF=0) a window-open exit
8560 * will re-request KVM_REQ_EVENT. Sometimes however an event is pending
8561 * and can architecturally be injected, but we cannot do it right now:
8562 * an interrupt could have arrived just now and we have to inject it
8563 * as a vmexit, or there could already an event in the queue, which is
8564 * indicated by can_inject. In that case we request an immediate exit
8565 * in order to make progress and get back here for another iteration.
8566 * The kvm_x86_ops hooks communicate this by returning -EBUSY.
8567 */
8568 if (vcpu->arch.smi_pending) {
b3646477 8569 r = can_inject ? static_call(kvm_x86_smi_allowed)(vcpu, true) : -EBUSY;
c9d40913
PB
8570 if (r < 0)
8571 goto busy;
8572 if (r) {
8573 vcpu->arch.smi_pending = false;
8574 ++vcpu->arch.smi_count;
8575 enter_smm(vcpu);
8576 can_inject = false;
8577 } else
b3646477 8578 static_call(kvm_x86_enable_smi_window)(vcpu);
c9d40913
PB
8579 }
8580
8581 if (vcpu->arch.nmi_pending) {
b3646477 8582 r = can_inject ? static_call(kvm_x86_nmi_allowed)(vcpu, true) : -EBUSY;
c9d40913
PB
8583 if (r < 0)
8584 goto busy;
8585 if (r) {
8586 --vcpu->arch.nmi_pending;
8587 vcpu->arch.nmi_injected = true;
b3646477 8588 static_call(kvm_x86_set_nmi)(vcpu);
c9d40913 8589 can_inject = false;
b3646477 8590 WARN_ON(static_call(kvm_x86_nmi_allowed)(vcpu, true) < 0);
c9d40913
PB
8591 }
8592 if (vcpu->arch.nmi_pending)
b3646477 8593 static_call(kvm_x86_enable_nmi_window)(vcpu);
c9d40913 8594 }
1a680e35 8595
c9d40913 8596 if (kvm_cpu_has_injectable_intr(vcpu)) {
b3646477 8597 r = can_inject ? static_call(kvm_x86_interrupt_allowed)(vcpu, true) : -EBUSY;
c9d40913
PB
8598 if (r < 0)
8599 goto busy;
8600 if (r) {
8601 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), false);
b3646477
JB
8602 static_call(kvm_x86_set_irq)(vcpu);
8603 WARN_ON(static_call(kvm_x86_interrupt_allowed)(vcpu, true) < 0);
c9d40913
PB
8604 }
8605 if (kvm_cpu_has_injectable_intr(vcpu))
b3646477 8606 static_call(kvm_x86_enable_irq_window)(vcpu);
95ba8273 8607 }
ee2cd4b7 8608
c9d40913
PB
8609 if (is_guest_mode(vcpu) &&
8610 kvm_x86_ops.nested_ops->hv_timer_pending &&
8611 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
8612 *req_immediate_exit = true;
8613
8614 WARN_ON(vcpu->arch.exception.pending);
8615 return;
8616
8617busy:
8618 *req_immediate_exit = true;
8619 return;
95ba8273
GN
8620}
8621
7460fb4a
AK
8622static void process_nmi(struct kvm_vcpu *vcpu)
8623{
8624 unsigned limit = 2;
8625
8626 /*
8627 * x86 is limited to one NMI running, and one NMI pending after it.
8628 * If an NMI is already in progress, limit further NMIs to just one.
8629 * Otherwise, allow two (and we'll inject the first one immediately).
8630 */
b3646477 8631 if (static_call(kvm_x86_get_nmi_mask)(vcpu) || vcpu->arch.nmi_injected)
7460fb4a
AK
8632 limit = 1;
8633
8634 vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0);
8635 vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit);
8636 kvm_make_request(KVM_REQ_EVENT, vcpu);
8637}
8638
ee2cd4b7 8639static u32 enter_smm_get_segment_flags(struct kvm_segment *seg)
660a5d51
PB
8640{
8641 u32 flags = 0;
8642 flags |= seg->g << 23;
8643 flags |= seg->db << 22;
8644 flags |= seg->l << 21;
8645 flags |= seg->avl << 20;
8646 flags |= seg->present << 15;
8647 flags |= seg->dpl << 13;
8648 flags |= seg->s << 12;
8649 flags |= seg->type << 8;
8650 return flags;
8651}
8652
ee2cd4b7 8653static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n)
660a5d51
PB
8654{
8655 struct kvm_segment seg;
8656 int offset;
8657
8658 kvm_get_segment(vcpu, &seg, n);
8659 put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector);
8660
8661 if (n < 3)
8662 offset = 0x7f84 + n * 12;
8663 else
8664 offset = 0x7f2c + (n - 3) * 12;
8665
8666 put_smstate(u32, buf, offset + 8, seg.base);
8667 put_smstate(u32, buf, offset + 4, seg.limit);
ee2cd4b7 8668 put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg));
660a5d51
PB
8669}
8670
efbb288a 8671#ifdef CONFIG_X86_64
ee2cd4b7 8672static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n)
660a5d51
PB
8673{
8674 struct kvm_segment seg;
8675 int offset;
8676 u16 flags;
8677
8678 kvm_get_segment(vcpu, &seg, n);
8679 offset = 0x7e00 + n * 16;
8680
ee2cd4b7 8681 flags = enter_smm_get_segment_flags(&seg) >> 8;
660a5d51
PB
8682 put_smstate(u16, buf, offset, seg.selector);
8683 put_smstate(u16, buf, offset + 2, flags);
8684 put_smstate(u32, buf, offset + 4, seg.limit);
8685 put_smstate(u64, buf, offset + 8, seg.base);
8686}
efbb288a 8687#endif
660a5d51 8688
ee2cd4b7 8689static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf)
660a5d51
PB
8690{
8691 struct desc_ptr dt;
8692 struct kvm_segment seg;
8693 unsigned long val;
8694 int i;
8695
8696 put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu));
8697 put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu));
8698 put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu));
8699 put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu));
8700
8701 for (i = 0; i < 8; i++)
27b4a9c4 8702 put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read_raw(vcpu, i));
660a5d51
PB
8703
8704 kvm_get_dr(vcpu, 6, &val);
8705 put_smstate(u32, buf, 0x7fcc, (u32)val);
8706 kvm_get_dr(vcpu, 7, &val);
8707 put_smstate(u32, buf, 0x7fc8, (u32)val);
8708
8709 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
8710 put_smstate(u32, buf, 0x7fc4, seg.selector);
8711 put_smstate(u32, buf, 0x7f64, seg.base);
8712 put_smstate(u32, buf, 0x7f60, seg.limit);
ee2cd4b7 8713 put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg));
660a5d51
PB
8714
8715 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
8716 put_smstate(u32, buf, 0x7fc0, seg.selector);
8717 put_smstate(u32, buf, 0x7f80, seg.base);
8718 put_smstate(u32, buf, 0x7f7c, seg.limit);
ee2cd4b7 8719 put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg));
660a5d51 8720
b3646477 8721 static_call(kvm_x86_get_gdt)(vcpu, &dt);
660a5d51
PB
8722 put_smstate(u32, buf, 0x7f74, dt.address);
8723 put_smstate(u32, buf, 0x7f70, dt.size);
8724
b3646477 8725 static_call(kvm_x86_get_idt)(vcpu, &dt);
660a5d51
PB
8726 put_smstate(u32, buf, 0x7f58, dt.address);
8727 put_smstate(u32, buf, 0x7f54, dt.size);
8728
8729 for (i = 0; i < 6; i++)
ee2cd4b7 8730 enter_smm_save_seg_32(vcpu, buf, i);
660a5d51
PB
8731
8732 put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu));
8733
8734 /* revision id */
8735 put_smstate(u32, buf, 0x7efc, 0x00020000);
8736 put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase);
8737}
8738
b68f3cc7 8739#ifdef CONFIG_X86_64
ee2cd4b7 8740static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf)
660a5d51 8741{
660a5d51
PB
8742 struct desc_ptr dt;
8743 struct kvm_segment seg;
8744 unsigned long val;
8745 int i;
8746
8747 for (i = 0; i < 16; i++)
27b4a9c4 8748 put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read_raw(vcpu, i));
660a5d51
PB
8749
8750 put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu));
8751 put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu));
8752
8753 kvm_get_dr(vcpu, 6, &val);
8754 put_smstate(u64, buf, 0x7f68, val);
8755 kvm_get_dr(vcpu, 7, &val);
8756 put_smstate(u64, buf, 0x7f60, val);
8757
8758 put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu));
8759 put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu));
8760 put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu));
8761
8762 put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase);
8763
8764 /* revision id */
8765 put_smstate(u32, buf, 0x7efc, 0x00020064);
8766
8767 put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer);
8768
8769 kvm_get_segment(vcpu, &seg, VCPU_SREG_TR);
8770 put_smstate(u16, buf, 0x7e90, seg.selector);
ee2cd4b7 8771 put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8);
660a5d51
PB
8772 put_smstate(u32, buf, 0x7e94, seg.limit);
8773 put_smstate(u64, buf, 0x7e98, seg.base);
8774
b3646477 8775 static_call(kvm_x86_get_idt)(vcpu, &dt);
660a5d51
PB
8776 put_smstate(u32, buf, 0x7e84, dt.size);
8777 put_smstate(u64, buf, 0x7e88, dt.address);
8778
8779 kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR);
8780 put_smstate(u16, buf, 0x7e70, seg.selector);
ee2cd4b7 8781 put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8);
660a5d51
PB
8782 put_smstate(u32, buf, 0x7e74, seg.limit);
8783 put_smstate(u64, buf, 0x7e78, seg.base);
8784
b3646477 8785 static_call(kvm_x86_get_gdt)(vcpu, &dt);
660a5d51
PB
8786 put_smstate(u32, buf, 0x7e64, dt.size);
8787 put_smstate(u64, buf, 0x7e68, dt.address);
8788
8789 for (i = 0; i < 6; i++)
ee2cd4b7 8790 enter_smm_save_seg_64(vcpu, buf, i);
660a5d51 8791}
b68f3cc7 8792#endif
660a5d51 8793
ee2cd4b7 8794static void enter_smm(struct kvm_vcpu *vcpu)
64d60670 8795{
660a5d51 8796 struct kvm_segment cs, ds;
18c3626e 8797 struct desc_ptr dt;
660a5d51
PB
8798 char buf[512];
8799 u32 cr0;
8800
660a5d51 8801 trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true);
660a5d51 8802 memset(buf, 0, 512);
b68f3cc7 8803#ifdef CONFIG_X86_64
d6321d49 8804 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
ee2cd4b7 8805 enter_smm_save_state_64(vcpu, buf);
660a5d51 8806 else
b68f3cc7 8807#endif
ee2cd4b7 8808 enter_smm_save_state_32(vcpu, buf);
660a5d51 8809
0234bf88
LP
8810 /*
8811 * Give pre_enter_smm() a chance to make ISA-specific changes to the
8812 * vCPU state (e.g. leave guest mode) after we've saved the state into
8813 * the SMM state-save area.
8814 */
b3646477 8815 static_call(kvm_x86_pre_enter_smm)(vcpu, buf);
0234bf88
LP
8816
8817 vcpu->arch.hflags |= HF_SMM_MASK;
54bf36aa 8818 kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf));
660a5d51 8819
b3646477 8820 if (static_call(kvm_x86_get_nmi_mask)(vcpu))
660a5d51
PB
8821 vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK;
8822 else
b3646477 8823 static_call(kvm_x86_set_nmi_mask)(vcpu, true);
660a5d51
PB
8824
8825 kvm_set_rflags(vcpu, X86_EFLAGS_FIXED);
8826 kvm_rip_write(vcpu, 0x8000);
8827
8828 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG);
b3646477 8829 static_call(kvm_x86_set_cr0)(vcpu, cr0);
660a5d51
PB
8830 vcpu->arch.cr0 = cr0;
8831
b3646477 8832 static_call(kvm_x86_set_cr4)(vcpu, 0);
660a5d51 8833
18c3626e
PB
8834 /* Undocumented: IDT limit is set to zero on entry to SMM. */
8835 dt.address = dt.size = 0;
b3646477 8836 static_call(kvm_x86_set_idt)(vcpu, &dt);
18c3626e 8837
996ff542 8838 kvm_set_dr(vcpu, 7, DR7_FIXED_1);
660a5d51
PB
8839
8840 cs.selector = (vcpu->arch.smbase >> 4) & 0xffff;
8841 cs.base = vcpu->arch.smbase;
8842
8843 ds.selector = 0;
8844 ds.base = 0;
8845
8846 cs.limit = ds.limit = 0xffffffff;
8847 cs.type = ds.type = 0x3;
8848 cs.dpl = ds.dpl = 0;
8849 cs.db = ds.db = 0;
8850 cs.s = ds.s = 1;
8851 cs.l = ds.l = 0;
8852 cs.g = ds.g = 1;
8853 cs.avl = ds.avl = 0;
8854 cs.present = ds.present = 1;
8855 cs.unusable = ds.unusable = 0;
8856 cs.padding = ds.padding = 0;
8857
8858 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
8859 kvm_set_segment(vcpu, &ds, VCPU_SREG_DS);
8860 kvm_set_segment(vcpu, &ds, VCPU_SREG_ES);
8861 kvm_set_segment(vcpu, &ds, VCPU_SREG_FS);
8862 kvm_set_segment(vcpu, &ds, VCPU_SREG_GS);
8863 kvm_set_segment(vcpu, &ds, VCPU_SREG_SS);
8864
b68f3cc7 8865#ifdef CONFIG_X86_64
d6321d49 8866 if (guest_cpuid_has(vcpu, X86_FEATURE_LM))
b3646477 8867 static_call(kvm_x86_set_efer)(vcpu, 0);
b68f3cc7 8868#endif
660a5d51 8869
aedbaf4f 8870 kvm_update_cpuid_runtime(vcpu);
660a5d51 8871 kvm_mmu_reset_context(vcpu);
64d60670
PB
8872}
8873
ee2cd4b7 8874static void process_smi(struct kvm_vcpu *vcpu)
c43203ca
PB
8875{
8876 vcpu->arch.smi_pending = true;
8877 kvm_make_request(KVM_REQ_EVENT, vcpu);
8878}
8879
7ee30bc1
NNL
8880void kvm_make_scan_ioapic_request_mask(struct kvm *kvm,
8881 unsigned long *vcpu_bitmap)
8882{
8883 cpumask_var_t cpus;
7ee30bc1
NNL
8884
8885 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
8886
db5a95ec 8887 kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC,
54163a34 8888 NULL, vcpu_bitmap, cpus);
7ee30bc1
NNL
8889
8890 free_cpumask_var(cpus);
8891}
8892
2860c4b1
PB
8893void kvm_make_scan_ioapic_request(struct kvm *kvm)
8894{
8895 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
8896}
8897
8df14af4
SS
8898void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu)
8899{
8900 if (!lapic_in_kernel(vcpu))
8901 return;
8902
8903 vcpu->arch.apicv_active = kvm_apicv_activated(vcpu->kvm);
8904 kvm_apic_update_apicv(vcpu);
b3646477 8905 static_call(kvm_x86_refresh_apicv_exec_ctrl)(vcpu);
8df14af4
SS
8906}
8907EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv);
8908
8909/*
8910 * NOTE: Do not hold any lock prior to calling this.
8911 *
8912 * In particular, kvm_request_apicv_update() expects kvm->srcu not to be
8913 * locked, because it calls __x86_set_memory_region() which does
8914 * synchronize_srcu(&kvm->srcu).
8915 */
8916void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit)
8917{
7d611233 8918 struct kvm_vcpu *except;
8e205a6b
PB
8919 unsigned long old, new, expected;
8920
afaf0b2f 8921 if (!kvm_x86_ops.check_apicv_inhibit_reasons ||
b3646477 8922 !static_call(kvm_x86_check_apicv_inhibit_reasons)(bit))
ef8efd7a
SS
8923 return;
8924
8e205a6b
PB
8925 old = READ_ONCE(kvm->arch.apicv_inhibit_reasons);
8926 do {
8927 expected = new = old;
8928 if (activate)
8929 __clear_bit(bit, &new);
8930 else
8931 __set_bit(bit, &new);
8932 if (new == old)
8933 break;
8934 old = cmpxchg(&kvm->arch.apicv_inhibit_reasons, expected, new);
8935 } while (old != expected);
8936
8937 if (!!old == !!new)
8938 return;
8df14af4 8939
24bbf74c 8940 trace_kvm_apicv_update_request(activate, bit);
afaf0b2f 8941 if (kvm_x86_ops.pre_update_apicv_exec_ctrl)
b3646477 8942 static_call(kvm_x86_pre_update_apicv_exec_ctrl)(kvm, activate);
7d611233
SS
8943
8944 /*
8945 * Sending request to update APICV for all other vcpus,
8946 * while update the calling vcpu immediately instead of
8947 * waiting for another #VMEXIT to handle the request.
8948 */
8949 except = kvm_get_running_vcpu();
8950 kvm_make_all_cpus_request_except(kvm, KVM_REQ_APICV_UPDATE,
8951 except);
8952 if (except)
8953 kvm_vcpu_update_apicv(except);
8df14af4
SS
8954}
8955EXPORT_SYMBOL_GPL(kvm_request_apicv_update);
8956
3d81bc7e 8957static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
c7c9c56c 8958{
dcbd3e49 8959 if (!kvm_apic_present(vcpu))
3d81bc7e 8960 return;
c7c9c56c 8961
6308630b 8962 bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256);
c7c9c56c 8963
b053b2ae 8964 if (irqchip_split(vcpu->kvm))
6308630b 8965 kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors);
db2bdcbb 8966 else {
fa59cc00 8967 if (vcpu->arch.apicv_active)
b3646477 8968 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
e97f852f
WL
8969 if (ioapic_in_kernel(vcpu->kvm))
8970 kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors);
db2bdcbb 8971 }
e40ff1d6
LA
8972
8973 if (is_guest_mode(vcpu))
8974 vcpu->arch.load_eoi_exitmap_pending = true;
8975 else
8976 kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu);
8977}
8978
8979static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu)
8980{
8981 u64 eoi_exit_bitmap[4];
8982
8983 if (!kvm_apic_hw_enabled(vcpu->arch.apic))
8984 return;
8985
f2bc14b6
VK
8986 if (to_hv_vcpu(vcpu))
8987 bitmap_or((ulong *)eoi_exit_bitmap,
8988 vcpu->arch.ioapic_handled_vectors,
8989 to_hv_synic(vcpu)->vec_bitmap, 256);
8990
b3646477 8991 static_call(kvm_x86_load_eoi_exitmap)(vcpu, eoi_exit_bitmap);
c7c9c56c
YZ
8992}
8993
e649b3f0
ET
8994void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
8995 unsigned long start, unsigned long end)
b1394e74
RK
8996{
8997 unsigned long apic_address;
8998
8999 /*
9000 * The physical address of apic access page is stored in the VMCS.
9001 * Update it when it becomes invalid.
9002 */
9003 apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
9004 if (start <= apic_address && apic_address < end)
9005 kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD);
9006}
9007
4256f43f
TC
9008void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu)
9009{
35754c98 9010 if (!lapic_in_kernel(vcpu))
f439ed27
PB
9011 return;
9012
afaf0b2f 9013 if (!kvm_x86_ops.set_apic_access_page_addr)
4256f43f
TC
9014 return;
9015
b3646477 9016 static_call(kvm_x86_set_apic_access_page_addr)(vcpu);
4256f43f 9017}
4256f43f 9018
d264ee0c
SC
9019void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu)
9020{
9021 smp_send_reschedule(vcpu->cpu);
9022}
9023EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit);
9024
9357d939 9025/*
362c698f 9026 * Returns 1 to let vcpu_run() continue the guest execution loop without
9357d939
TY
9027 * exiting to the userspace. Otherwise, the value will be returned to the
9028 * userspace.
9029 */
851ba692 9030static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
b6c7a5dc
HB
9031{
9032 int r;
62a193ed
MG
9033 bool req_int_win =
9034 dm_request_for_irq_injection(vcpu) &&
9035 kvm_cpu_accept_dm_intr(vcpu);
404d5d7b 9036 fastpath_t exit_fastpath;
62a193ed 9037
730dca42 9038 bool req_immediate_exit = false;
b6c7a5dc 9039
fb04a1ed
PX
9040 /* Forbid vmenter if vcpu dirty ring is soft-full */
9041 if (unlikely(vcpu->kvm->dirty_ring_size &&
9042 kvm_dirty_ring_soft_full(&vcpu->dirty_ring))) {
9043 vcpu->run->exit_reason = KVM_EXIT_DIRTY_RING_FULL;
9044 trace_kvm_dirty_ring_exit(vcpu);
9045 r = 0;
9046 goto out;
9047 }
9048
2fa6e1e1 9049 if (kvm_request_pending(vcpu)) {
729c15c2 9050 if (kvm_check_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu)) {
9a78e158 9051 if (unlikely(!kvm_x86_ops.nested_ops->get_nested_state_pages(vcpu))) {
671ddc70
JM
9052 r = 0;
9053 goto out;
9054 }
9055 }
a8eeb04a 9056 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu))
2e53d63a 9057 kvm_mmu_unload(vcpu);
a8eeb04a 9058 if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu))
2f599714 9059 __kvm_migrate_timers(vcpu);
d828199e
MT
9060 if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu))
9061 kvm_gen_update_masterclock(vcpu->kvm);
0061d53d
MT
9062 if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu))
9063 kvm_gen_kvmclock_update(vcpu);
34c238a1
ZA
9064 if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) {
9065 r = kvm_guest_time_update(vcpu);
8cfdc000
ZA
9066 if (unlikely(r))
9067 goto out;
9068 }
a8eeb04a 9069 if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu))
4731d4c7 9070 kvm_mmu_sync_roots(vcpu);
727a7e27
PB
9071 if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu))
9072 kvm_mmu_load_pgd(vcpu);
eeeb4f67 9073 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
7780938c 9074 kvm_vcpu_flush_tlb_all(vcpu);
eeeb4f67
SC
9075
9076 /* Flushing all ASIDs flushes the current ASID... */
9077 kvm_clear_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
9078 }
9079 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
9080 kvm_vcpu_flush_tlb_current(vcpu);
0baedd79
VK
9081 if (kvm_check_request(KVM_REQ_HV_TLB_FLUSH, vcpu))
9082 kvm_vcpu_flush_tlb_guest(vcpu);
eeeb4f67 9083
a8eeb04a 9084 if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) {
851ba692 9085 vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS;
b93463aa
AK
9086 r = 0;
9087 goto out;
9088 }
a8eeb04a 9089 if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) {
cb6a32c2
SC
9090 if (is_guest_mode(vcpu)) {
9091 kvm_x86_ops.nested_ops->triple_fault(vcpu);
9092 } else {
9093 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
9094 vcpu->mmio_needed = 0;
9095 r = 0;
9096 goto out;
9097 }
71c4dfaf 9098 }
af585b92
GN
9099 if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) {
9100 /* Page is swapped out. Do synthetic halt */
9101 vcpu->arch.apf.halted = true;
9102 r = 1;
9103 goto out;
9104 }
c9aaa895
GC
9105 if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu))
9106 record_steal_time(vcpu);
64d60670
PB
9107 if (kvm_check_request(KVM_REQ_SMI, vcpu))
9108 process_smi(vcpu);
7460fb4a
AK
9109 if (kvm_check_request(KVM_REQ_NMI, vcpu))
9110 process_nmi(vcpu);
f5132b01 9111 if (kvm_check_request(KVM_REQ_PMU, vcpu))
c6702c9d 9112 kvm_pmu_handle_event(vcpu);
f5132b01 9113 if (kvm_check_request(KVM_REQ_PMI, vcpu))
c6702c9d 9114 kvm_pmu_deliver_pmi(vcpu);
7543a635
SR
9115 if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) {
9116 BUG_ON(vcpu->arch.pending_ioapic_eoi > 255);
9117 if (test_bit(vcpu->arch.pending_ioapic_eoi,
6308630b 9118 vcpu->arch.ioapic_handled_vectors)) {
7543a635
SR
9119 vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI;
9120 vcpu->run->eoi.vector =
9121 vcpu->arch.pending_ioapic_eoi;
9122 r = 0;
9123 goto out;
9124 }
9125 }
3d81bc7e
YZ
9126 if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu))
9127 vcpu_scan_ioapic(vcpu);
e40ff1d6
LA
9128 if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu))
9129 vcpu_load_eoi_exitmap(vcpu);
4256f43f
TC
9130 if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu))
9131 kvm_vcpu_reload_apic_access_page(vcpu);
2ce79189
AS
9132 if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) {
9133 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9134 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH;
9135 r = 0;
9136 goto out;
9137 }
e516cebb
AS
9138 if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) {
9139 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
9140 vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET;
9141 r = 0;
9142 goto out;
9143 }
db397571 9144 if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) {
9ff5e030
VK
9145 struct kvm_vcpu_hv *hv_vcpu = to_hv_vcpu(vcpu);
9146
db397571 9147 vcpu->run->exit_reason = KVM_EXIT_HYPERV;
9ff5e030 9148 vcpu->run->hyperv = hv_vcpu->exit;
db397571
AS
9149 r = 0;
9150 goto out;
9151 }
f3b138c5
AS
9152
9153 /*
9154 * KVM_REQ_HV_STIMER has to be processed after
9155 * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers
9156 * depend on the guest clock being up-to-date
9157 */
1f4b34f8
AS
9158 if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu))
9159 kvm_hv_process_stimers(vcpu);
8df14af4
SS
9160 if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu))
9161 kvm_vcpu_update_apicv(vcpu);
557a961a
VK
9162 if (kvm_check_request(KVM_REQ_APF_READY, vcpu))
9163 kvm_check_async_pf_completion(vcpu);
1a155254 9164 if (kvm_check_request(KVM_REQ_MSR_FILTER_CHANGED, vcpu))
b3646477 9165 static_call(kvm_x86_msr_filter_changed)(vcpu);
a85863c2
MS
9166
9167 if (kvm_check_request(KVM_REQ_UPDATE_CPU_DIRTY_LOGGING, vcpu))
9168 static_call(kvm_x86_update_cpu_dirty_logging)(vcpu);
2f52d58c 9169 }
b93463aa 9170
40da8ccd
DW
9171 if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win ||
9172 kvm_xen_has_interrupt(vcpu)) {
0f1e261e 9173 ++vcpu->stat.req_event;
66450a21
JK
9174 kvm_apic_accept_events(vcpu);
9175 if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) {
9176 r = 1;
9177 goto out;
9178 }
9179
c9d40913
PB
9180 inject_pending_event(vcpu, &req_immediate_exit);
9181 if (req_int_win)
b3646477 9182 static_call(kvm_x86_enable_irq_window)(vcpu);
b463a6f7
AK
9183
9184 if (kvm_lapic_enabled(vcpu)) {
9185 update_cr8_intercept(vcpu);
9186 kvm_lapic_sync_to_vapic(vcpu);
9187 }
9188 }
9189
d8368af8
AK
9190 r = kvm_mmu_reload(vcpu);
9191 if (unlikely(r)) {
d905c069 9192 goto cancel_injection;
d8368af8
AK
9193 }
9194
b6c7a5dc
HB
9195 preempt_disable();
9196
b3646477 9197 static_call(kvm_x86_prepare_guest_switch)(vcpu);
b95234c8
PB
9198
9199 /*
9200 * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt
9201 * IPI are then delayed after guest entry, which ensures that they
9202 * result in virtual interrupt delivery.
9203 */
9204 local_irq_disable();
6b7e2d09
XG
9205 vcpu->mode = IN_GUEST_MODE;
9206
01b71917
MT
9207 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
9208
0f127d12 9209 /*
b95234c8 9210 * 1) We should set ->mode before checking ->requests. Please see
cde9af6e 9211 * the comment in kvm_vcpu_exiting_guest_mode().
b95234c8 9212 *
81b01667 9213 * 2) For APICv, we should set ->mode before checking PID.ON. This
b95234c8
PB
9214 * pairs with the memory barrier implicit in pi_test_and_set_on
9215 * (see vmx_deliver_posted_interrupt).
9216 *
9217 * 3) This also orders the write to mode from any reads to the page
9218 * tables done while the VCPU is running. Please see the comment
9219 * in kvm_flush_remote_tlbs.
6b7e2d09 9220 */
01b71917 9221 smp_mb__after_srcu_read_unlock();
b6c7a5dc 9222
b95234c8
PB
9223 /*
9224 * This handles the case where a posted interrupt was
9225 * notified with kvm_vcpu_kick.
9226 */
fa59cc00 9227 if (kvm_lapic_enabled(vcpu) && vcpu->arch.apicv_active)
b3646477 9228 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
32f88400 9229
5a9f5443 9230 if (kvm_vcpu_exit_request(vcpu)) {
6b7e2d09 9231 vcpu->mode = OUTSIDE_GUEST_MODE;
d94e1dc9 9232 smp_wmb();
6c142801
AK
9233 local_irq_enable();
9234 preempt_enable();
01b71917 9235 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
6c142801 9236 r = 1;
d905c069 9237 goto cancel_injection;
6c142801
AK
9238 }
9239
c43203ca
PB
9240 if (req_immediate_exit) {
9241 kvm_make_request(KVM_REQ_EVENT, vcpu);
b3646477 9242 static_call(kvm_x86_request_immediate_exit)(vcpu);
c43203ca 9243 }
d6185f20 9244
2620fe26
SC
9245 fpregs_assert_state_consistent();
9246 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9247 switch_fpu_return();
5f409e20 9248
42dbaa5a 9249 if (unlikely(vcpu->arch.switch_db_regs)) {
42dbaa5a
JK
9250 set_debugreg(0, 7);
9251 set_debugreg(vcpu->arch.eff_db[0], 0);
9252 set_debugreg(vcpu->arch.eff_db[1], 1);
9253 set_debugreg(vcpu->arch.eff_db[2], 2);
9254 set_debugreg(vcpu->arch.eff_db[3], 3);
c77fb5fe 9255 set_debugreg(vcpu->arch.dr6, 6);
ae561ede 9256 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
42dbaa5a 9257 }
b6c7a5dc 9258
d89d04ab
PB
9259 for (;;) {
9260 exit_fastpath = static_call(kvm_x86_run)(vcpu);
9261 if (likely(exit_fastpath != EXIT_FASTPATH_REENTER_GUEST))
9262 break;
9263
9264 if (unlikely(kvm_vcpu_exit_request(vcpu))) {
9265 exit_fastpath = EXIT_FASTPATH_EXIT_HANDLED;
9266 break;
9267 }
9268
9269 if (vcpu->arch.apicv_active)
9270 static_call(kvm_x86_sync_pir_to_irr)(vcpu);
9271 }
b6c7a5dc 9272
c77fb5fe
PB
9273 /*
9274 * Do this here before restoring debug registers on the host. And
9275 * since we do this before handling the vmexit, a DR access vmexit
9276 * can (a) read the correct value of the debug registers, (b) set
9277 * KVM_DEBUGREG_WONT_EXIT again.
9278 */
9279 if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) {
c77fb5fe 9280 WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP);
b3646477 9281 static_call(kvm_x86_sync_dirty_debug_regs)(vcpu);
70e4da7a 9282 kvm_update_dr0123(vcpu);
70e4da7a
PB
9283 kvm_update_dr7(vcpu);
9284 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD;
c77fb5fe
PB
9285 }
9286
24f1e32c
FW
9287 /*
9288 * If the guest has used debug registers, at least dr7
9289 * will be disabled while returning to the host.
9290 * If we don't have active breakpoints in the host, we don't
9291 * care about the messed up debug address registers. But if
9292 * we have some of them active, restore the old state.
9293 */
59d8eb53 9294 if (hw_breakpoint_active())
24f1e32c 9295 hw_breakpoint_restore();
42dbaa5a 9296
c967118d 9297 vcpu->arch.last_vmentry_cpu = vcpu->cpu;
4ba76538 9298 vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc());
1d5f066e 9299
6b7e2d09 9300 vcpu->mode = OUTSIDE_GUEST_MODE;
d94e1dc9 9301 smp_wmb();
a547c6db 9302
b3646477 9303 static_call(kvm_x86_handle_exit_irqoff)(vcpu);
b6c7a5dc 9304
d7a08882
SC
9305 /*
9306 * Consume any pending interrupts, including the possible source of
9307 * VM-Exit on SVM and any ticks that occur between VM-Exit and now.
9308 * An instruction is required after local_irq_enable() to fully unblock
9309 * interrupts on processors that implement an interrupt shadow, the
9310 * stat.exits increment will do nicely.
9311 */
9312 kvm_before_interrupt(vcpu);
9313 local_irq_enable();
b6c7a5dc 9314 ++vcpu->stat.exits;
d7a08882
SC
9315 local_irq_disable();
9316 kvm_after_interrupt(vcpu);
b6c7a5dc 9317
ec0671d5
WL
9318 if (lapic_in_kernel(vcpu)) {
9319 s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta;
9320 if (delta != S64_MIN) {
9321 trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta);
9322 vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN;
9323 }
9324 }
b6c7a5dc 9325
f2485b3e 9326 local_irq_enable();
b6c7a5dc
HB
9327 preempt_enable();
9328
f656ce01 9329 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
3200f405 9330
b6c7a5dc
HB
9331 /*
9332 * Profile KVM exit RIPs:
9333 */
9334 if (unlikely(prof_on == KVM_PROFILING)) {
5fdbf976
MT
9335 unsigned long rip = kvm_rip_read(vcpu);
9336 profile_hit(KVM_PROFILING, (void *)rip);
b6c7a5dc
HB
9337 }
9338
cc578287
ZA
9339 if (unlikely(vcpu->arch.tsc_always_catchup))
9340 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
298101da 9341
5cfb1d5a
MT
9342 if (vcpu->arch.apic_attention)
9343 kvm_lapic_sync_from_vapic(vcpu);
b93463aa 9344
b3646477 9345 r = static_call(kvm_x86_handle_exit)(vcpu, exit_fastpath);
d905c069
MT
9346 return r;
9347
9348cancel_injection:
8081ad06
SC
9349 if (req_immediate_exit)
9350 kvm_make_request(KVM_REQ_EVENT, vcpu);
b3646477 9351 static_call(kvm_x86_cancel_injection)(vcpu);
ae7a2a3f
MT
9352 if (unlikely(vcpu->arch.apic_attention))
9353 kvm_lapic_sync_from_vapic(vcpu);
d7690175
MT
9354out:
9355 return r;
9356}
b6c7a5dc 9357
362c698f
PB
9358static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu)
9359{
bf9f6ac8 9360 if (!kvm_arch_vcpu_runnable(vcpu) &&
b3646477 9361 (!kvm_x86_ops.pre_block || static_call(kvm_x86_pre_block)(vcpu) == 0)) {
9c8fd1ba
PB
9362 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
9363 kvm_vcpu_block(vcpu);
9364 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
bf9f6ac8 9365
afaf0b2f 9366 if (kvm_x86_ops.post_block)
b3646477 9367 static_call(kvm_x86_post_block)(vcpu);
bf9f6ac8 9368
9c8fd1ba
PB
9369 if (!kvm_check_request(KVM_REQ_UNHALT, vcpu))
9370 return 1;
9371 }
362c698f
PB
9372
9373 kvm_apic_accept_events(vcpu);
9374 switch(vcpu->arch.mp_state) {
9375 case KVM_MP_STATE_HALTED:
647daca2 9376 case KVM_MP_STATE_AP_RESET_HOLD:
362c698f
PB
9377 vcpu->arch.pv.pv_unhalted = false;
9378 vcpu->arch.mp_state =
9379 KVM_MP_STATE_RUNNABLE;
df561f66 9380 fallthrough;
362c698f
PB
9381 case KVM_MP_STATE_RUNNABLE:
9382 vcpu->arch.apf.halted = false;
9383 break;
9384 case KVM_MP_STATE_INIT_RECEIVED:
9385 break;
9386 default:
9387 return -EINTR;
362c698f
PB
9388 }
9389 return 1;
9390}
09cec754 9391
5d9bc648
PB
9392static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu)
9393{
56083bdf 9394 if (is_guest_mode(vcpu))
cb6a32c2 9395 kvm_check_nested_events(vcpu);
0ad3bed6 9396
5d9bc648
PB
9397 return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE &&
9398 !vcpu->arch.apf.halted);
9399}
9400
362c698f 9401static int vcpu_run(struct kvm_vcpu *vcpu)
d7690175
MT
9402{
9403 int r;
f656ce01 9404 struct kvm *kvm = vcpu->kvm;
d7690175 9405
f656ce01 9406 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
c595ceee 9407 vcpu->arch.l1tf_flush_l1d = true;
d7690175 9408
362c698f 9409 for (;;) {
58f800d5 9410 if (kvm_vcpu_running(vcpu)) {
851ba692 9411 r = vcpu_enter_guest(vcpu);
bf9f6ac8 9412 } else {
362c698f 9413 r = vcpu_block(kvm, vcpu);
bf9f6ac8
FW
9414 }
9415
09cec754
GN
9416 if (r <= 0)
9417 break;
9418
72875d8a 9419 kvm_clear_request(KVM_REQ_PENDING_TIMER, vcpu);
09cec754
GN
9420 if (kvm_cpu_has_pending_timer(vcpu))
9421 kvm_inject_pending_timer_irqs(vcpu);
9422
782d422b
MG
9423 if (dm_request_for_irq_injection(vcpu) &&
9424 kvm_vcpu_ready_for_interrupt_injection(vcpu)) {
4ca7dd8c
PB
9425 r = 0;
9426 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
09cec754 9427 ++vcpu->stat.request_irq_exits;
362c698f 9428 break;
09cec754 9429 }
af585b92 9430
f3020b88 9431 if (__xfer_to_guest_mode_work_pending()) {
f656ce01 9432 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
72c3c0fe
TG
9433 r = xfer_to_guest_mode_handle_work(vcpu);
9434 if (r)
9435 return r;
f656ce01 9436 vcpu->srcu_idx = srcu_read_lock(&kvm->srcu);
d7690175 9437 }
b6c7a5dc
HB
9438 }
9439
f656ce01 9440 srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx);
b6c7a5dc
HB
9441
9442 return r;
9443}
9444
716d51ab
GN
9445static inline int complete_emulated_io(struct kvm_vcpu *vcpu)
9446{
9447 int r;
60fc3d02 9448
716d51ab 9449 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
0ce97a2b 9450 r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE);
716d51ab 9451 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
60fc3d02 9452 return r;
716d51ab
GN
9453}
9454
9455static int complete_emulated_pio(struct kvm_vcpu *vcpu)
9456{
9457 BUG_ON(!vcpu->arch.pio.count);
9458
9459 return complete_emulated_io(vcpu);
9460}
9461
f78146b0
AK
9462/*
9463 * Implements the following, as a state machine:
9464 *
9465 * read:
9466 * for each fragment
87da7e66
XG
9467 * for each mmio piece in the fragment
9468 * write gpa, len
9469 * exit
9470 * copy data
f78146b0
AK
9471 * execute insn
9472 *
9473 * write:
9474 * for each fragment
87da7e66
XG
9475 * for each mmio piece in the fragment
9476 * write gpa, len
9477 * copy data
9478 * exit
f78146b0 9479 */
716d51ab 9480static int complete_emulated_mmio(struct kvm_vcpu *vcpu)
5287f194
AK
9481{
9482 struct kvm_run *run = vcpu->run;
f78146b0 9483 struct kvm_mmio_fragment *frag;
87da7e66 9484 unsigned len;
5287f194 9485
716d51ab 9486 BUG_ON(!vcpu->mmio_needed);
5287f194 9487
716d51ab 9488 /* Complete previous fragment */
87da7e66
XG
9489 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
9490 len = min(8u, frag->len);
716d51ab 9491 if (!vcpu->mmio_is_write)
87da7e66
XG
9492 memcpy(frag->data, run->mmio.data, len);
9493
9494 if (frag->len <= 8) {
9495 /* Switch to the next fragment. */
9496 frag++;
9497 vcpu->mmio_cur_fragment++;
9498 } else {
9499 /* Go forward to the next mmio piece. */
9500 frag->data += len;
9501 frag->gpa += len;
9502 frag->len -= len;
9503 }
9504
a08d3b3b 9505 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
716d51ab 9506 vcpu->mmio_needed = 0;
0912c977
PB
9507
9508 /* FIXME: return into emulator if single-stepping. */
cef4dea0 9509 if (vcpu->mmio_is_write)
716d51ab
GN
9510 return 1;
9511 vcpu->mmio_read_completed = 1;
9512 return complete_emulated_io(vcpu);
9513 }
87da7e66 9514
716d51ab
GN
9515 run->exit_reason = KVM_EXIT_MMIO;
9516 run->mmio.phys_addr = frag->gpa;
9517 if (vcpu->mmio_is_write)
87da7e66
XG
9518 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
9519 run->mmio.len = min(8u, frag->len);
716d51ab
GN
9520 run->mmio.is_write = vcpu->mmio_is_write;
9521 vcpu->arch.complete_userspace_io = complete_emulated_mmio;
9522 return 0;
5287f194
AK
9523}
9524
c9aef3b8
SC
9525static void kvm_save_current_fpu(struct fpu *fpu)
9526{
9527 /*
9528 * If the target FPU state is not resident in the CPU registers, just
9529 * memcpy() from current, else save CPU state directly to the target.
9530 */
9531 if (test_thread_flag(TIF_NEED_FPU_LOAD))
9532 memcpy(&fpu->state, &current->thread.fpu.state,
9533 fpu_kernel_xstate_size);
9534 else
9535 copy_fpregs_to_fpstate(fpu);
9536}
9537
822f312d
SAS
9538/* Swap (qemu) user FPU context for the guest FPU context. */
9539static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
9540{
5f409e20
RR
9541 fpregs_lock();
9542
c9aef3b8
SC
9543 kvm_save_current_fpu(vcpu->arch.user_fpu);
9544
ed02b213
TL
9545 /*
9546 * Guests with protected state can't have it set by the hypervisor,
9547 * so skip trying to set it.
9548 */
9549 if (vcpu->arch.guest_fpu)
9550 /* PKRU is separately restored in kvm_x86_ops.run. */
9551 __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu->state,
9552 ~XFEATURE_MASK_PKRU);
5f409e20
RR
9553
9554 fpregs_mark_activate();
9555 fpregs_unlock();
9556
822f312d
SAS
9557 trace_kvm_fpu(1);
9558}
9559
9560/* When vcpu_run ends, restore user space FPU context. */
9561static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
9562{
5f409e20
RR
9563 fpregs_lock();
9564
ed02b213
TL
9565 /*
9566 * Guests with protected state can't have it read by the hypervisor,
9567 * so skip trying to save it.
9568 */
9569 if (vcpu->arch.guest_fpu)
9570 kvm_save_current_fpu(vcpu->arch.guest_fpu);
c9aef3b8 9571
d9a710e5 9572 copy_kernel_to_fpregs(&vcpu->arch.user_fpu->state);
5f409e20
RR
9573
9574 fpregs_mark_activate();
9575 fpregs_unlock();
9576
822f312d
SAS
9577 ++vcpu->stat.fpu_reload;
9578 trace_kvm_fpu(0);
9579}
9580
1b94f6f8 9581int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu)
b6c7a5dc 9582{
1b94f6f8 9583 struct kvm_run *kvm_run = vcpu->run;
b6c7a5dc 9584 int r;
b6c7a5dc 9585
accb757d 9586 vcpu_load(vcpu);
20b7035c 9587 kvm_sigset_activate(vcpu);
15aad3be 9588 kvm_run->flags = 0;
5663d8f9
PX
9589 kvm_load_guest_fpu(vcpu);
9590
a4535290 9591 if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
2f173d26
JS
9592 if (kvm_run->immediate_exit) {
9593 r = -EINTR;
9594 goto out;
9595 }
b6c7a5dc 9596 kvm_vcpu_block(vcpu);
66450a21 9597 kvm_apic_accept_events(vcpu);
72875d8a 9598 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
ac9f6dc0 9599 r = -EAGAIN;
a0595000
JS
9600 if (signal_pending(current)) {
9601 r = -EINTR;
1b94f6f8 9602 kvm_run->exit_reason = KVM_EXIT_INTR;
a0595000
JS
9603 ++vcpu->stat.signal_exits;
9604 }
ac9f6dc0 9605 goto out;
b6c7a5dc
HB
9606 }
9607
1b94f6f8 9608 if (kvm_run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) {
01643c51
KH
9609 r = -EINVAL;
9610 goto out;
9611 }
9612
1b94f6f8 9613 if (kvm_run->kvm_dirty_regs) {
01643c51
KH
9614 r = sync_regs(vcpu);
9615 if (r != 0)
9616 goto out;
9617 }
9618
b6c7a5dc 9619 /* re-sync apic's tpr */
35754c98 9620 if (!lapic_in_kernel(vcpu)) {
eea1cff9
AP
9621 if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) {
9622 r = -EINVAL;
9623 goto out;
9624 }
9625 }
b6c7a5dc 9626
716d51ab
GN
9627 if (unlikely(vcpu->arch.complete_userspace_io)) {
9628 int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io;
9629 vcpu->arch.complete_userspace_io = NULL;
9630 r = cui(vcpu);
9631 if (r <= 0)
5663d8f9 9632 goto out;
716d51ab
GN
9633 } else
9634 WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed);
5287f194 9635
460df4c1
PB
9636 if (kvm_run->immediate_exit)
9637 r = -EINTR;
9638 else
9639 r = vcpu_run(vcpu);
b6c7a5dc
HB
9640
9641out:
5663d8f9 9642 kvm_put_guest_fpu(vcpu);
1b94f6f8 9643 if (kvm_run->kvm_valid_regs)
01643c51 9644 store_regs(vcpu);
f1d86e46 9645 post_kvm_run_save(vcpu);
20b7035c 9646 kvm_sigset_deactivate(vcpu);
b6c7a5dc 9647
accb757d 9648 vcpu_put(vcpu);
b6c7a5dc
HB
9649 return r;
9650}
9651
01643c51 9652static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
b6c7a5dc 9653{
7ae441ea
GN
9654 if (vcpu->arch.emulate_regs_need_sync_to_vcpu) {
9655 /*
9656 * We are here if userspace calls get_regs() in the middle of
9657 * instruction emulation. Registers state needs to be copied
4a969980 9658 * back from emulation context to vcpu. Userspace shouldn't do
7ae441ea
GN
9659 * that usually, but some bad designed PV devices (vmware
9660 * backdoor interface) need this to work
9661 */
c9b8b07c 9662 emulator_writeback_register_cache(vcpu->arch.emulate_ctxt);
7ae441ea
GN
9663 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
9664 }
de3cd117
SC
9665 regs->rax = kvm_rax_read(vcpu);
9666 regs->rbx = kvm_rbx_read(vcpu);
9667 regs->rcx = kvm_rcx_read(vcpu);
9668 regs->rdx = kvm_rdx_read(vcpu);
9669 regs->rsi = kvm_rsi_read(vcpu);
9670 regs->rdi = kvm_rdi_read(vcpu);
e9c16c78 9671 regs->rsp = kvm_rsp_read(vcpu);
de3cd117 9672 regs->rbp = kvm_rbp_read(vcpu);
b6c7a5dc 9673#ifdef CONFIG_X86_64
de3cd117
SC
9674 regs->r8 = kvm_r8_read(vcpu);
9675 regs->r9 = kvm_r9_read(vcpu);
9676 regs->r10 = kvm_r10_read(vcpu);
9677 regs->r11 = kvm_r11_read(vcpu);
9678 regs->r12 = kvm_r12_read(vcpu);
9679 regs->r13 = kvm_r13_read(vcpu);
9680 regs->r14 = kvm_r14_read(vcpu);
9681 regs->r15 = kvm_r15_read(vcpu);
b6c7a5dc
HB
9682#endif
9683
5fdbf976 9684 regs->rip = kvm_rip_read(vcpu);
91586a3b 9685 regs->rflags = kvm_get_rflags(vcpu);
01643c51 9686}
b6c7a5dc 9687
01643c51
KH
9688int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
9689{
9690 vcpu_load(vcpu);
9691 __get_regs(vcpu, regs);
1fc9b76b 9692 vcpu_put(vcpu);
b6c7a5dc
HB
9693 return 0;
9694}
9695
01643c51 9696static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
b6c7a5dc 9697{
7ae441ea
GN
9698 vcpu->arch.emulate_regs_need_sync_from_vcpu = true;
9699 vcpu->arch.emulate_regs_need_sync_to_vcpu = false;
9700
de3cd117
SC
9701 kvm_rax_write(vcpu, regs->rax);
9702 kvm_rbx_write(vcpu, regs->rbx);
9703 kvm_rcx_write(vcpu, regs->rcx);
9704 kvm_rdx_write(vcpu, regs->rdx);
9705 kvm_rsi_write(vcpu, regs->rsi);
9706 kvm_rdi_write(vcpu, regs->rdi);
e9c16c78 9707 kvm_rsp_write(vcpu, regs->rsp);
de3cd117 9708 kvm_rbp_write(vcpu, regs->rbp);
b6c7a5dc 9709#ifdef CONFIG_X86_64
de3cd117
SC
9710 kvm_r8_write(vcpu, regs->r8);
9711 kvm_r9_write(vcpu, regs->r9);
9712 kvm_r10_write(vcpu, regs->r10);
9713 kvm_r11_write(vcpu, regs->r11);
9714 kvm_r12_write(vcpu, regs->r12);
9715 kvm_r13_write(vcpu, regs->r13);
9716 kvm_r14_write(vcpu, regs->r14);
9717 kvm_r15_write(vcpu, regs->r15);
b6c7a5dc
HB
9718#endif
9719
5fdbf976 9720 kvm_rip_write(vcpu, regs->rip);
d73235d1 9721 kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED);
b6c7a5dc 9722
b4f14abd
JK
9723 vcpu->arch.exception.pending = false;
9724
3842d135 9725 kvm_make_request(KVM_REQ_EVENT, vcpu);
01643c51 9726}
3842d135 9727
01643c51
KH
9728int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
9729{
9730 vcpu_load(vcpu);
9731 __set_regs(vcpu, regs);
875656fe 9732 vcpu_put(vcpu);
b6c7a5dc
HB
9733 return 0;
9734}
9735
b6c7a5dc
HB
9736void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
9737{
9738 struct kvm_segment cs;
9739
3e6e0aab 9740 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
b6c7a5dc
HB
9741 *db = cs.db;
9742 *l = cs.l;
9743}
9744EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
9745
01643c51 9746static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
b6c7a5dc 9747{
89a27f4d 9748 struct desc_ptr dt;
b6c7a5dc 9749
5265713a
TL
9750 if (vcpu->arch.guest_state_protected)
9751 goto skip_protected_regs;
9752
3e6e0aab
GT
9753 kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
9754 kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
9755 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
9756 kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
9757 kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
9758 kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
b6c7a5dc 9759
3e6e0aab
GT
9760 kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
9761 kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
b6c7a5dc 9762
b3646477 9763 static_call(kvm_x86_get_idt)(vcpu, &dt);
89a27f4d
GN
9764 sregs->idt.limit = dt.size;
9765 sregs->idt.base = dt.address;
b3646477 9766 static_call(kvm_x86_get_gdt)(vcpu, &dt);
89a27f4d
GN
9767 sregs->gdt.limit = dt.size;
9768 sregs->gdt.base = dt.address;
b6c7a5dc 9769
ad312c7c 9770 sregs->cr2 = vcpu->arch.cr2;
9f8fe504 9771 sregs->cr3 = kvm_read_cr3(vcpu);
5265713a
TL
9772
9773skip_protected_regs:
9774 sregs->cr0 = kvm_read_cr0(vcpu);
fc78f519 9775 sregs->cr4 = kvm_read_cr4(vcpu);
2d3ad1f4 9776 sregs->cr8 = kvm_get_cr8(vcpu);
f6801dff 9777 sregs->efer = vcpu->arch.efer;
b6c7a5dc
HB
9778 sregs->apic_base = kvm_get_apic_base(vcpu);
9779
0e96f31e 9780 memset(sregs->interrupt_bitmap, 0, sizeof(sregs->interrupt_bitmap));
b6c7a5dc 9781
04140b41 9782 if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft)
14d0bc1f
GN
9783 set_bit(vcpu->arch.interrupt.nr,
9784 (unsigned long *)sregs->interrupt_bitmap);
01643c51 9785}
16d7a191 9786
01643c51
KH
9787int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
9788 struct kvm_sregs *sregs)
9789{
9790 vcpu_load(vcpu);
9791 __get_sregs(vcpu, sregs);
bcdec41c 9792 vcpu_put(vcpu);
b6c7a5dc
HB
9793 return 0;
9794}
9795
62d9f0db
MT
9796int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
9797 struct kvm_mp_state *mp_state)
9798{
fd232561 9799 vcpu_load(vcpu);
f958bd23
SC
9800 if (kvm_mpx_supported())
9801 kvm_load_guest_fpu(vcpu);
fd232561 9802
66450a21 9803 kvm_apic_accept_events(vcpu);
647daca2
TL
9804 if ((vcpu->arch.mp_state == KVM_MP_STATE_HALTED ||
9805 vcpu->arch.mp_state == KVM_MP_STATE_AP_RESET_HOLD) &&
9806 vcpu->arch.pv.pv_unhalted)
6aef266c
SV
9807 mp_state->mp_state = KVM_MP_STATE_RUNNABLE;
9808 else
9809 mp_state->mp_state = vcpu->arch.mp_state;
9810
f958bd23
SC
9811 if (kvm_mpx_supported())
9812 kvm_put_guest_fpu(vcpu);
fd232561 9813 vcpu_put(vcpu);
62d9f0db
MT
9814 return 0;
9815}
9816
9817int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
9818 struct kvm_mp_state *mp_state)
9819{
e83dff5e
CD
9820 int ret = -EINVAL;
9821
9822 vcpu_load(vcpu);
9823
bce87cce 9824 if (!lapic_in_kernel(vcpu) &&
66450a21 9825 mp_state->mp_state != KVM_MP_STATE_RUNNABLE)
e83dff5e 9826 goto out;
66450a21 9827
27cbe7d6
LA
9828 /*
9829 * KVM_MP_STATE_INIT_RECEIVED means the processor is in
9830 * INIT state; latched init should be reported using
9831 * KVM_SET_VCPU_EVENTS, so reject it here.
9832 */
9833 if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) &&
28bf2888
DH
9834 (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED ||
9835 mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED))
e83dff5e 9836 goto out;
28bf2888 9837
66450a21
JK
9838 if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) {
9839 vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED;
9840 set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events);
9841 } else
9842 vcpu->arch.mp_state = mp_state->mp_state;
3842d135 9843 kvm_make_request(KVM_REQ_EVENT, vcpu);
e83dff5e
CD
9844
9845 ret = 0;
9846out:
9847 vcpu_put(vcpu);
9848 return ret;
62d9f0db
MT
9849}
9850
7f3d35fd
KW
9851int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index,
9852 int reason, bool has_error_code, u32 error_code)
b6c7a5dc 9853{
c9b8b07c 9854 struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt;
8ec4722d 9855 int ret;
e01c2426 9856
8ec4722d 9857 init_emulate_ctxt(vcpu);
c697518a 9858
7f3d35fd 9859 ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason,
9d74191a 9860 has_error_code, error_code);
1051778f
SC
9861 if (ret) {
9862 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
9863 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
9864 vcpu->run->internal.ndata = 0;
60fc3d02 9865 return 0;
1051778f 9866 }
37817f29 9867
9d74191a
TY
9868 kvm_rip_write(vcpu, ctxt->eip);
9869 kvm_set_rflags(vcpu, ctxt->eflags);
60fc3d02 9870 return 1;
37817f29
IE
9871}
9872EXPORT_SYMBOL_GPL(kvm_task_switch);
9873
ee69c92b 9874static bool kvm_is_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
f2981033 9875{
37b95951 9876 if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) {
f2981033
LT
9877 /*
9878 * When EFER.LME and CR0.PG are set, the processor is in
9879 * 64-bit mode (though maybe in a 32-bit code segment).
9880 * CR4.PAE and EFER.LMA must be set.
9881 */
ee69c92b
SC
9882 if (!(sregs->cr4 & X86_CR4_PAE) || !(sregs->efer & EFER_LMA))
9883 return false;
ca29e145 9884 if (kvm_vcpu_is_illegal_gpa(vcpu, sregs->cr3))
c1c35cf7 9885 return false;
f2981033
LT
9886 } else {
9887 /*
9888 * Not in 64-bit mode: EFER.LMA is clear and the code
9889 * segment cannot be 64-bit.
9890 */
9891 if (sregs->efer & EFER_LMA || sregs->cs.l)
ee69c92b 9892 return false;
f2981033
LT
9893 }
9894
ee69c92b 9895 return kvm_is_valid_cr4(vcpu, sregs->cr4);
f2981033
LT
9896}
9897
01643c51 9898static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
b6c7a5dc 9899{
58cb628d 9900 struct msr_data apic_base_msr;
b6c7a5dc 9901 int mmu_reset_needed = 0;
63f42e02 9902 int pending_vec, max_bits, idx;
89a27f4d 9903 struct desc_ptr dt;
b4ef9d4e
CD
9904 int ret = -EINVAL;
9905
ee69c92b 9906 if (!kvm_is_valid_sregs(vcpu, sregs))
8dbfb2bf 9907 goto out;
f2981033 9908
d3802286
JM
9909 apic_base_msr.data = sregs->apic_base;
9910 apic_base_msr.host_initiated = true;
9911 if (kvm_set_apic_base(vcpu, &apic_base_msr))
b4ef9d4e 9912 goto out;
6d1068b3 9913
5265713a
TL
9914 if (vcpu->arch.guest_state_protected)
9915 goto skip_protected_regs;
9916
89a27f4d
GN
9917 dt.size = sregs->idt.limit;
9918 dt.address = sregs->idt.base;
b3646477 9919 static_call(kvm_x86_set_idt)(vcpu, &dt);
89a27f4d
GN
9920 dt.size = sregs->gdt.limit;
9921 dt.address = sregs->gdt.base;
b3646477 9922 static_call(kvm_x86_set_gdt)(vcpu, &dt);
b6c7a5dc 9923
ad312c7c 9924 vcpu->arch.cr2 = sregs->cr2;
9f8fe504 9925 mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3;
dc7e795e 9926 vcpu->arch.cr3 = sregs->cr3;
cb3c1e2f 9927 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
b6c7a5dc 9928
2d3ad1f4 9929 kvm_set_cr8(vcpu, sregs->cr8);
b6c7a5dc 9930
f6801dff 9931 mmu_reset_needed |= vcpu->arch.efer != sregs->efer;
b3646477 9932 static_call(kvm_x86_set_efer)(vcpu, sregs->efer);
b6c7a5dc 9933
4d4ec087 9934 mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0;
b3646477 9935 static_call(kvm_x86_set_cr0)(vcpu, sregs->cr0);
d7306163 9936 vcpu->arch.cr0 = sregs->cr0;
b6c7a5dc 9937
fc78f519 9938 mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4;
b3646477 9939 static_call(kvm_x86_set_cr4)(vcpu, sregs->cr4);
63f42e02
XG
9940
9941 idx = srcu_read_lock(&vcpu->kvm->srcu);
bf03d4f9 9942 if (is_pae_paging(vcpu)) {
9f8fe504 9943 load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu));
7c93be44
MT
9944 mmu_reset_needed = 1;
9945 }
63f42e02 9946 srcu_read_unlock(&vcpu->kvm->srcu, idx);
b6c7a5dc
HB
9947
9948 if (mmu_reset_needed)
9949 kvm_mmu_reset_context(vcpu);
9950
3e6e0aab
GT
9951 kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
9952 kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
9953 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
9954 kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
9955 kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
9956 kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
b6c7a5dc 9957
3e6e0aab
GT
9958 kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
9959 kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
b6c7a5dc 9960
5f0269f5
ME
9961 update_cr8_intercept(vcpu);
9962
9c3e4aab 9963 /* Older userspace won't unhalt the vcpu on reset. */
c5af89b6 9964 if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 &&
9c3e4aab 9965 sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
3eeb3288 9966 !is_protmode(vcpu))
9c3e4aab
MT
9967 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
9968
5265713a
TL
9969skip_protected_regs:
9970 max_bits = KVM_NR_INTERRUPTS;
9971 pending_vec = find_first_bit(
9972 (const unsigned long *)sregs->interrupt_bitmap, max_bits);
9973 if (pending_vec < max_bits) {
9974 kvm_queue_interrupt(vcpu, pending_vec, false);
9975 pr_debug("Set back pending irq %d\n", pending_vec);
9976 }
9977
3842d135
AK
9978 kvm_make_request(KVM_REQ_EVENT, vcpu);
9979
b4ef9d4e
CD
9980 ret = 0;
9981out:
01643c51
KH
9982 return ret;
9983}
9984
9985int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
9986 struct kvm_sregs *sregs)
9987{
9988 int ret;
9989
9990 vcpu_load(vcpu);
9991 ret = __set_sregs(vcpu, sregs);
b4ef9d4e
CD
9992 vcpu_put(vcpu);
9993 return ret;
b6c7a5dc
HB
9994}
9995
d0bfb940
JK
9996int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
9997 struct kvm_guest_debug *dbg)
b6c7a5dc 9998{
355be0b9 9999 unsigned long rflags;
ae675ef0 10000 int i, r;
b6c7a5dc 10001
8d4846b9
TL
10002 if (vcpu->arch.guest_state_protected)
10003 return -EINVAL;
10004
66b56562
CD
10005 vcpu_load(vcpu);
10006
4f926bf2
JK
10007 if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) {
10008 r = -EBUSY;
10009 if (vcpu->arch.exception.pending)
2122ff5e 10010 goto out;
4f926bf2
JK
10011 if (dbg->control & KVM_GUESTDBG_INJECT_DB)
10012 kvm_queue_exception(vcpu, DB_VECTOR);
10013 else
10014 kvm_queue_exception(vcpu, BP_VECTOR);
10015 }
10016
91586a3b
JK
10017 /*
10018 * Read rflags as long as potentially injected trace flags are still
10019 * filtered out.
10020 */
10021 rflags = kvm_get_rflags(vcpu);
355be0b9
JK
10022
10023 vcpu->guest_debug = dbg->control;
10024 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
10025 vcpu->guest_debug = 0;
10026
10027 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
ae675ef0
JK
10028 for (i = 0; i < KVM_NR_DB_REGS; ++i)
10029 vcpu->arch.eff_db[i] = dbg->arch.debugreg[i];
c8639010 10030 vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7];
ae675ef0
JK
10031 } else {
10032 for (i = 0; i < KVM_NR_DB_REGS; i++)
10033 vcpu->arch.eff_db[i] = vcpu->arch.db[i];
ae675ef0 10034 }
c8639010 10035 kvm_update_dr7(vcpu);
ae675ef0 10036
f92653ee
JK
10037 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
10038 vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) +
10039 get_segment_base(vcpu, VCPU_SREG_CS);
94fe45da 10040
91586a3b
JK
10041 /*
10042 * Trigger an rflags update that will inject or remove the trace
10043 * flags.
10044 */
10045 kvm_set_rflags(vcpu, rflags);
b6c7a5dc 10046
b3646477 10047 static_call(kvm_x86_update_exception_bitmap)(vcpu);
b6c7a5dc 10048
4f926bf2 10049 r = 0;
d0bfb940 10050
2122ff5e 10051out:
66b56562 10052 vcpu_put(vcpu);
b6c7a5dc
HB
10053 return r;
10054}
10055
8b006791
ZX
10056/*
10057 * Translate a guest virtual address to a guest physical address.
10058 */
10059int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
10060 struct kvm_translation *tr)
10061{
10062 unsigned long vaddr = tr->linear_address;
10063 gpa_t gpa;
f656ce01 10064 int idx;
8b006791 10065
1da5b61d
CD
10066 vcpu_load(vcpu);
10067
f656ce01 10068 idx = srcu_read_lock(&vcpu->kvm->srcu);
1871c602 10069 gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL);
f656ce01 10070 srcu_read_unlock(&vcpu->kvm->srcu, idx);
8b006791
ZX
10071 tr->physical_address = gpa;
10072 tr->valid = gpa != UNMAPPED_GVA;
10073 tr->writeable = 1;
10074 tr->usermode = 0;
8b006791 10075
1da5b61d 10076 vcpu_put(vcpu);
8b006791
ZX
10077 return 0;
10078}
10079
d0752060
HB
10080int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10081{
1393123e 10082 struct fxregs_state *fxsave;
d0752060 10083
ed02b213
TL
10084 if (!vcpu->arch.guest_fpu)
10085 return 0;
10086
1393123e 10087 vcpu_load(vcpu);
d0752060 10088
b666a4b6 10089 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
d0752060
HB
10090 memcpy(fpu->fpr, fxsave->st_space, 128);
10091 fpu->fcw = fxsave->cwd;
10092 fpu->fsw = fxsave->swd;
10093 fpu->ftwx = fxsave->twd;
10094 fpu->last_opcode = fxsave->fop;
10095 fpu->last_ip = fxsave->rip;
10096 fpu->last_dp = fxsave->rdp;
0e96f31e 10097 memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space));
d0752060 10098
1393123e 10099 vcpu_put(vcpu);
d0752060
HB
10100 return 0;
10101}
10102
10103int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
10104{
6a96bc7f
CD
10105 struct fxregs_state *fxsave;
10106
ed02b213
TL
10107 if (!vcpu->arch.guest_fpu)
10108 return 0;
10109
6a96bc7f
CD
10110 vcpu_load(vcpu);
10111
b666a4b6 10112 fxsave = &vcpu->arch.guest_fpu->state.fxsave;
d0752060 10113
d0752060
HB
10114 memcpy(fxsave->st_space, fpu->fpr, 128);
10115 fxsave->cwd = fpu->fcw;
10116 fxsave->swd = fpu->fsw;
10117 fxsave->twd = fpu->ftwx;
10118 fxsave->fop = fpu->last_opcode;
10119 fxsave->rip = fpu->last_ip;
10120 fxsave->rdp = fpu->last_dp;
0e96f31e 10121 memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space));
d0752060 10122
6a96bc7f 10123 vcpu_put(vcpu);
d0752060
HB
10124 return 0;
10125}
10126
01643c51
KH
10127static void store_regs(struct kvm_vcpu *vcpu)
10128{
10129 BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES);
10130
10131 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS)
10132 __get_regs(vcpu, &vcpu->run->s.regs.regs);
10133
10134 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS)
10135 __get_sregs(vcpu, &vcpu->run->s.regs.sregs);
10136
10137 if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS)
10138 kvm_vcpu_ioctl_x86_get_vcpu_events(
10139 vcpu, &vcpu->run->s.regs.events);
10140}
10141
10142static int sync_regs(struct kvm_vcpu *vcpu)
10143{
10144 if (vcpu->run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS)
10145 return -EINVAL;
10146
10147 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) {
10148 __set_regs(vcpu, &vcpu->run->s.regs.regs);
10149 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS;
10150 }
10151 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) {
10152 if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs))
10153 return -EINVAL;
10154 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS;
10155 }
10156 if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) {
10157 if (kvm_vcpu_ioctl_x86_set_vcpu_events(
10158 vcpu, &vcpu->run->s.regs.events))
10159 return -EINVAL;
10160 vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS;
10161 }
10162
10163 return 0;
10164}
10165
0ee6a517 10166static void fx_init(struct kvm_vcpu *vcpu)
d0752060 10167{
ed02b213
TL
10168 if (!vcpu->arch.guest_fpu)
10169 return;
10170
b666a4b6 10171 fpstate_init(&vcpu->arch.guest_fpu->state);
782511b0 10172 if (boot_cpu_has(X86_FEATURE_XSAVES))
b666a4b6 10173 vcpu->arch.guest_fpu->state.xsave.header.xcomp_bv =
df1daba7 10174 host_xcr0 | XSTATE_COMPACTION_ENABLED;
d0752060 10175
2acf923e
DC
10176 /*
10177 * Ensure guest xcr0 is valid for loading
10178 */
d91cab78 10179 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
2acf923e 10180
ad312c7c 10181 vcpu->arch.cr0 |= X86_CR0_ET;
d0752060 10182}
d0752060 10183
ed02b213
TL
10184void kvm_free_guest_fpu(struct kvm_vcpu *vcpu)
10185{
10186 if (vcpu->arch.guest_fpu) {
10187 kmem_cache_free(x86_fpu_cache, vcpu->arch.guest_fpu);
10188 vcpu->arch.guest_fpu = NULL;
10189 }
10190}
10191EXPORT_SYMBOL_GPL(kvm_free_guest_fpu);
10192
897cc38e 10193int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id)
e9b11c17 10194{
897cc38e
SC
10195 if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0)
10196 pr_warn_once("kvm: SMP vm created on host with unstable TSC; "
10197 "guest TSC will not be reliable\n");
7f1ea208 10198
897cc38e 10199 return 0;
e9b11c17
ZX
10200}
10201
e529ef66 10202int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu)
e9b11c17 10203{
95a0d01e
SC
10204 struct page *page;
10205 int r;
c447e76b 10206
95a0d01e
SC
10207 if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu))
10208 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
10209 else
10210 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
c447e76b 10211
95a0d01e 10212 kvm_set_tsc_khz(vcpu, max_tsc_khz);
c447e76b 10213
95a0d01e
SC
10214 r = kvm_mmu_create(vcpu);
10215 if (r < 0)
10216 return r;
10217
10218 if (irqchip_in_kernel(vcpu->kvm)) {
95a0d01e
SC
10219 r = kvm_create_lapic(vcpu, lapic_timer_advance_ns);
10220 if (r < 0)
10221 goto fail_mmu_destroy;
4e19c36f
SS
10222 if (kvm_apicv_activated(vcpu->kvm))
10223 vcpu->arch.apicv_active = true;
95a0d01e 10224 } else
6e4e3b4d 10225 static_branch_inc(&kvm_has_noapic_vcpu);
95a0d01e
SC
10226
10227 r = -ENOMEM;
10228
93bb59ca 10229 page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
95a0d01e
SC
10230 if (!page)
10231 goto fail_free_lapic;
10232 vcpu->arch.pio_data = page_address(page);
10233
10234 vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4,
10235 GFP_KERNEL_ACCOUNT);
10236 if (!vcpu->arch.mce_banks)
10237 goto fail_free_pio_data;
10238 vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS;
10239
10240 if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask,
10241 GFP_KERNEL_ACCOUNT))
10242 goto fail_free_mce_banks;
10243
c9b8b07c
SC
10244 if (!alloc_emulate_ctxt(vcpu))
10245 goto free_wbinvd_dirty_mask;
10246
95a0d01e
SC
10247 vcpu->arch.user_fpu = kmem_cache_zalloc(x86_fpu_cache,
10248 GFP_KERNEL_ACCOUNT);
10249 if (!vcpu->arch.user_fpu) {
10250 pr_err("kvm: failed to allocate userspace's fpu\n");
c9b8b07c 10251 goto free_emulate_ctxt;
95a0d01e
SC
10252 }
10253
10254 vcpu->arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache,
10255 GFP_KERNEL_ACCOUNT);
10256 if (!vcpu->arch.guest_fpu) {
10257 pr_err("kvm: failed to allocate vcpu's fpu\n");
10258 goto free_user_fpu;
10259 }
10260 fx_init(vcpu);
10261
95a0d01e 10262 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
a8ac864a 10263 vcpu->arch.reserved_gpa_bits = kvm_vcpu_reserved_gpa_bits_raw(vcpu);
95a0d01e
SC
10264
10265 vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT;
10266
10267 kvm_async_pf_hash_reset(vcpu);
10268 kvm_pmu_init(vcpu);
10269
10270 vcpu->arch.pending_external_vector = -1;
10271 vcpu->arch.preempted_in_kernel = false;
10272
b3646477 10273 r = static_call(kvm_x86_vcpu_create)(vcpu);
95a0d01e
SC
10274 if (r)
10275 goto free_guest_fpu;
e9b11c17 10276
0cf9135b 10277 vcpu->arch.arch_capabilities = kvm_get_arch_capabilities();
e53d88af 10278 vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT;
19efffa2 10279 kvm_vcpu_mtrr_init(vcpu);
ec7660cc 10280 vcpu_load(vcpu);
d28bc9dd 10281 kvm_vcpu_reset(vcpu, false);
e1732991 10282 kvm_init_mmu(vcpu, false);
e9b11c17 10283 vcpu_put(vcpu);
ec7660cc 10284 return 0;
95a0d01e
SC
10285
10286free_guest_fpu:
ed02b213 10287 kvm_free_guest_fpu(vcpu);
95a0d01e
SC
10288free_user_fpu:
10289 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
c9b8b07c
SC
10290free_emulate_ctxt:
10291 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
95a0d01e
SC
10292free_wbinvd_dirty_mask:
10293 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
10294fail_free_mce_banks:
10295 kfree(vcpu->arch.mce_banks);
10296fail_free_pio_data:
10297 free_page((unsigned long)vcpu->arch.pio_data);
10298fail_free_lapic:
10299 kvm_free_lapic(vcpu);
10300fail_mmu_destroy:
10301 kvm_mmu_destroy(vcpu);
10302 return r;
e9b11c17
ZX
10303}
10304
31928aa5 10305void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
42897d86 10306{
332967a3 10307 struct kvm *kvm = vcpu->kvm;
42897d86 10308
ec7660cc 10309 if (mutex_lock_killable(&vcpu->mutex))
31928aa5 10310 return;
ec7660cc 10311 vcpu_load(vcpu);
0c899c25 10312 kvm_synchronize_tsc(vcpu, 0);
42897d86 10313 vcpu_put(vcpu);
2d5ba19b
MT
10314
10315 /* poll control enabled by default */
10316 vcpu->arch.msr_kvm_poll_control = 1;
10317
ec7660cc 10318 mutex_unlock(&vcpu->mutex);
42897d86 10319
b34de572
WL
10320 if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0)
10321 schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
10322 KVMCLOCK_SYNC_PERIOD);
42897d86
MT
10323}
10324
d40ccc62 10325void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
e9b11c17 10326{
4cbc418a 10327 struct gfn_to_pfn_cache *cache = &vcpu->arch.st.cache;
95a0d01e 10328 int idx;
344d9588 10329
4cbc418a
PB
10330 kvm_release_pfn(cache->pfn, cache->dirty, cache);
10331
50b143e1 10332 kvmclock_reset(vcpu);
e9b11c17 10333
b3646477 10334 static_call(kvm_x86_vcpu_free)(vcpu);
50b143e1 10335
c9b8b07c 10336 kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt);
50b143e1
SC
10337 free_cpumask_var(vcpu->arch.wbinvd_dirty_mask);
10338 kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu);
ed02b213 10339 kvm_free_guest_fpu(vcpu);
95a0d01e
SC
10340
10341 kvm_hv_vcpu_uninit(vcpu);
10342 kvm_pmu_destroy(vcpu);
10343 kfree(vcpu->arch.mce_banks);
10344 kvm_free_lapic(vcpu);
10345 idx = srcu_read_lock(&vcpu->kvm->srcu);
10346 kvm_mmu_destroy(vcpu);
10347 srcu_read_unlock(&vcpu->kvm->srcu, idx);
10348 free_page((unsigned long)vcpu->arch.pio_data);
255cbecf 10349 kvfree(vcpu->arch.cpuid_entries);
95a0d01e 10350 if (!lapic_in_kernel(vcpu))
6e4e3b4d 10351 static_branch_dec(&kvm_has_noapic_vcpu);
e9b11c17
ZX
10352}
10353
d28bc9dd 10354void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
e9b11c17 10355{
b7e31be3
RK
10356 kvm_lapic_reset(vcpu, init_event);
10357
e69fab5d
PB
10358 vcpu->arch.hflags = 0;
10359
c43203ca 10360 vcpu->arch.smi_pending = 0;
52797bf9 10361 vcpu->arch.smi_count = 0;
7460fb4a
AK
10362 atomic_set(&vcpu->arch.nmi_queued, 0);
10363 vcpu->arch.nmi_pending = 0;
448fa4a9 10364 vcpu->arch.nmi_injected = false;
5f7552d4
NA
10365 kvm_clear_interrupt_queue(vcpu);
10366 kvm_clear_exception_queue(vcpu);
448fa4a9 10367
42dbaa5a 10368 memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
ae561ede 10369 kvm_update_dr0123(vcpu);
9a3ecd5e 10370 vcpu->arch.dr6 = DR6_ACTIVE_LOW;
42dbaa5a 10371 vcpu->arch.dr7 = DR7_FIXED_1;
c8639010 10372 kvm_update_dr7(vcpu);
42dbaa5a 10373
1119022c
NA
10374 vcpu->arch.cr2 = 0;
10375
3842d135 10376 kvm_make_request(KVM_REQ_EVENT, vcpu);
2635b5c4
VK
10377 vcpu->arch.apf.msr_en_val = 0;
10378 vcpu->arch.apf.msr_int_val = 0;
c9aaa895 10379 vcpu->arch.st.msr_val = 0;
3842d135 10380
12f9a48f
GC
10381 kvmclock_reset(vcpu);
10382
af585b92
GN
10383 kvm_clear_async_pf_completion_queue(vcpu);
10384 kvm_async_pf_hash_reset(vcpu);
10385 vcpu->arch.apf.halted = false;
3842d135 10386
ed02b213 10387 if (vcpu->arch.guest_fpu && kvm_mpx_supported()) {
a554d207
WL
10388 void *mpx_state_buffer;
10389
10390 /*
10391 * To avoid have the INIT path from kvm_apic_has_events() that be
10392 * called with loaded FPU and does not let userspace fix the state.
10393 */
f775b13e
RR
10394 if (init_event)
10395 kvm_put_guest_fpu(vcpu);
b666a4b6 10396 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
abd16d68 10397 XFEATURE_BNDREGS);
a554d207
WL
10398 if (mpx_state_buffer)
10399 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndreg_state));
b666a4b6 10400 mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave,
abd16d68 10401 XFEATURE_BNDCSR);
a554d207
WL
10402 if (mpx_state_buffer)
10403 memset(mpx_state_buffer, 0, sizeof(struct mpx_bndcsr));
f775b13e
RR
10404 if (init_event)
10405 kvm_load_guest_fpu(vcpu);
a554d207
WL
10406 }
10407
64d60670 10408 if (!init_event) {
d28bc9dd 10409 kvm_pmu_reset(vcpu);
64d60670 10410 vcpu->arch.smbase = 0x30000;
db2336a8 10411
db2336a8 10412 vcpu->arch.msr_misc_features_enables = 0;
a554d207
WL
10413
10414 vcpu->arch.xcr0 = XFEATURE_MASK_FP;
64d60670 10415 }
f5132b01 10416
66f7b72e
JS
10417 memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs));
10418 vcpu->arch.regs_avail = ~0;
10419 vcpu->arch.regs_dirty = ~0;
10420
a554d207
WL
10421 vcpu->arch.ia32_xss = 0;
10422
b3646477 10423 static_call(kvm_x86_vcpu_reset)(vcpu, init_event);
e9b11c17
ZX
10424}
10425
2b4a273b 10426void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector)
66450a21
JK
10427{
10428 struct kvm_segment cs;
10429
10430 kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
10431 cs.selector = vector << 8;
10432 cs.base = vector << 12;
10433 kvm_set_segment(vcpu, &cs, VCPU_SREG_CS);
10434 kvm_rip_write(vcpu, 0);
e9b11c17 10435}
647daca2 10436EXPORT_SYMBOL_GPL(kvm_vcpu_deliver_sipi_vector);
e9b11c17 10437
13a34e06 10438int kvm_arch_hardware_enable(void)
e9b11c17 10439{
ca84d1a2
ZA
10440 struct kvm *kvm;
10441 struct kvm_vcpu *vcpu;
10442 int i;
0dd6a6ed
ZA
10443 int ret;
10444 u64 local_tsc;
10445 u64 max_tsc = 0;
10446 bool stable, backwards_tsc = false;
18863bdd 10447
7e34fbd0 10448 kvm_user_return_msr_cpu_online();
b3646477 10449 ret = static_call(kvm_x86_hardware_enable)();
0dd6a6ed
ZA
10450 if (ret != 0)
10451 return ret;
10452
4ea1636b 10453 local_tsc = rdtsc();
b0c39dc6 10454 stable = !kvm_check_tsc_unstable();
0dd6a6ed
ZA
10455 list_for_each_entry(kvm, &vm_list, vm_list) {
10456 kvm_for_each_vcpu(i, vcpu, kvm) {
10457 if (!stable && vcpu->cpu == smp_processor_id())
105b21bb 10458 kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu);
0dd6a6ed
ZA
10459 if (stable && vcpu->arch.last_host_tsc > local_tsc) {
10460 backwards_tsc = true;
10461 if (vcpu->arch.last_host_tsc > max_tsc)
10462 max_tsc = vcpu->arch.last_host_tsc;
10463 }
10464 }
10465 }
10466
10467 /*
10468 * Sometimes, even reliable TSCs go backwards. This happens on
10469 * platforms that reset TSC during suspend or hibernate actions, but
10470 * maintain synchronization. We must compensate. Fortunately, we can
10471 * detect that condition here, which happens early in CPU bringup,
10472 * before any KVM threads can be running. Unfortunately, we can't
10473 * bring the TSCs fully up to date with real time, as we aren't yet far
10474 * enough into CPU bringup that we know how much real time has actually
9285ec4c 10475 * elapsed; our helper function, ktime_get_boottime_ns() will be using boot
0dd6a6ed
ZA
10476 * variables that haven't been updated yet.
10477 *
10478 * So we simply find the maximum observed TSC above, then record the
10479 * adjustment to TSC in each VCPU. When the VCPU later gets loaded,
10480 * the adjustment will be applied. Note that we accumulate
10481 * adjustments, in case multiple suspend cycles happen before some VCPU
10482 * gets a chance to run again. In the event that no KVM threads get a
10483 * chance to run, we will miss the entire elapsed period, as we'll have
10484 * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may
10485 * loose cycle time. This isn't too big a deal, since the loss will be
10486 * uniform across all VCPUs (not to mention the scenario is extremely
10487 * unlikely). It is possible that a second hibernate recovery happens
10488 * much faster than a first, causing the observed TSC here to be
10489 * smaller; this would require additional padding adjustment, which is
10490 * why we set last_host_tsc to the local tsc observed here.
10491 *
10492 * N.B. - this code below runs only on platforms with reliable TSC,
10493 * as that is the only way backwards_tsc is set above. Also note
10494 * that this runs for ALL vcpus, which is not a bug; all VCPUs should
10495 * have the same delta_cyc adjustment applied if backwards_tsc
10496 * is detected. Note further, this adjustment is only done once,
10497 * as we reset last_host_tsc on all VCPUs to stop this from being
10498 * called multiple times (one for each physical CPU bringup).
10499 *
4a969980 10500 * Platforms with unreliable TSCs don't have to deal with this, they
0dd6a6ed
ZA
10501 * will be compensated by the logic in vcpu_load, which sets the TSC to
10502 * catchup mode. This will catchup all VCPUs to real time, but cannot
10503 * guarantee that they stay in perfect synchronization.
10504 */
10505 if (backwards_tsc) {
10506 u64 delta_cyc = max_tsc - local_tsc;
10507 list_for_each_entry(kvm, &vm_list, vm_list) {
a826faf1 10508 kvm->arch.backwards_tsc_observed = true;
0dd6a6ed
ZA
10509 kvm_for_each_vcpu(i, vcpu, kvm) {
10510 vcpu->arch.tsc_offset_adjustment += delta_cyc;
10511 vcpu->arch.last_host_tsc = local_tsc;
105b21bb 10512 kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
0dd6a6ed
ZA
10513 }
10514
10515 /*
10516 * We have to disable TSC offset matching.. if you were
10517 * booting a VM while issuing an S4 host suspend....
10518 * you may have some problem. Solving this issue is
10519 * left as an exercise to the reader.
10520 */
10521 kvm->arch.last_tsc_nsec = 0;
10522 kvm->arch.last_tsc_write = 0;
10523 }
10524
10525 }
10526 return 0;
e9b11c17
ZX
10527}
10528
13a34e06 10529void kvm_arch_hardware_disable(void)
e9b11c17 10530{
b3646477 10531 static_call(kvm_x86_hardware_disable)();
13a34e06 10532 drop_user_return_notifiers();
e9b11c17
ZX
10533}
10534
b9904085 10535int kvm_arch_hardware_setup(void *opaque)
e9b11c17 10536{
d008dfdb 10537 struct kvm_x86_init_ops *ops = opaque;
9e9c3fe4
NA
10538 int r;
10539
91661989
SC
10540 rdmsrl_safe(MSR_EFER, &host_efer);
10541
408e9a31
PB
10542 if (boot_cpu_has(X86_FEATURE_XSAVES))
10543 rdmsrl(MSR_IA32_XSS, host_xss);
10544
d008dfdb 10545 r = ops->hardware_setup();
9e9c3fe4
NA
10546 if (r != 0)
10547 return r;
10548
afaf0b2f 10549 memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops));
b3646477 10550 kvm_ops_static_call_update();
69c6f69a 10551
408e9a31
PB
10552 if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES))
10553 supported_xss = 0;
10554
139f7425
PB
10555#define __kvm_cpu_cap_has(UNUSED_, f) kvm_cpu_cap_has(f)
10556 cr4_reserved_bits = __cr4_reserved_bits(__kvm_cpu_cap_has, UNUSED_);
10557#undef __kvm_cpu_cap_has
b11306b5 10558
35181e86
HZ
10559 if (kvm_has_tsc_control) {
10560 /*
10561 * Make sure the user can only configure tsc_khz values that
10562 * fit into a signed integer.
273ba457 10563 * A min value is not calculated because it will always
35181e86
HZ
10564 * be 1 on all machines.
10565 */
10566 u64 max = min(0x7fffffffULL,
10567 __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz));
10568 kvm_max_guest_tsc_khz = max;
10569
ad721883 10570 kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits;
35181e86 10571 }
ad721883 10572
9e9c3fe4
NA
10573 kvm_init_msr_list();
10574 return 0;
e9b11c17
ZX
10575}
10576
10577void kvm_arch_hardware_unsetup(void)
10578{
b3646477 10579 static_call(kvm_x86_hardware_unsetup)();
e9b11c17
ZX
10580}
10581
b9904085 10582int kvm_arch_check_processor_compat(void *opaque)
e9b11c17 10583{
f1cdecf5 10584 struct cpuinfo_x86 *c = &cpu_data(smp_processor_id());
d008dfdb 10585 struct kvm_x86_init_ops *ops = opaque;
f1cdecf5
SC
10586
10587 WARN_ON(!irqs_disabled());
10588
139f7425
PB
10589 if (__cr4_reserved_bits(cpu_has, c) !=
10590 __cr4_reserved_bits(cpu_has, &boot_cpu_data))
f1cdecf5
SC
10591 return -EIO;
10592
d008dfdb 10593 return ops->check_processor_compatibility();
d71ba788
PB
10594}
10595
10596bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu)
10597{
10598 return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id;
10599}
10600EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp);
10601
10602bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
10603{
10604 return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0;
e9b11c17
ZX
10605}
10606
6e4e3b4d
CL
10607__read_mostly DEFINE_STATIC_KEY_FALSE(kvm_has_noapic_vcpu);
10608EXPORT_SYMBOL_GPL(kvm_has_noapic_vcpu);
54e9818f 10609
e790d9ef
RK
10610void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu)
10611{
b35e5548
LX
10612 struct kvm_pmu *pmu = vcpu_to_pmu(vcpu);
10613
c595ceee 10614 vcpu->arch.l1tf_flush_l1d = true;
b35e5548
LX
10615 if (pmu->version && unlikely(pmu->event_count)) {
10616 pmu->need_cleanup = true;
10617 kvm_make_request(KVM_REQ_PMU, vcpu);
10618 }
b3646477 10619 static_call(kvm_x86_sched_in)(vcpu, cpu);
e790d9ef
RK
10620}
10621
562b6b08
SC
10622void kvm_arch_free_vm(struct kvm *kvm)
10623{
05f04ae4 10624 kfree(to_kvm_hv(kvm)->hv_pa_pg);
562b6b08 10625 vfree(kvm);
e790d9ef
RK
10626}
10627
562b6b08 10628
e08b9637 10629int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
d19a9cd2 10630{
e08b9637
CO
10631 if (type)
10632 return -EINVAL;
10633
6ef768fa 10634 INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list);
f05e70ac 10635 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
10605204 10636 INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages);
1aa9b957 10637 INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages);
4d5c5d0f 10638 INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
e0f0bbc5 10639 atomic_set(&kvm->arch.noncoherent_dma_count, 0);
d19a9cd2 10640
5550af4d
SY
10641 /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
10642 set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
7a84428a
AW
10643 /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */
10644 set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
10645 &kvm->arch.irq_sources_bitmap);
5550af4d 10646
038f8c11 10647 raw_spin_lock_init(&kvm->arch.tsc_write_lock);
1e08ec4a 10648 mutex_init(&kvm->arch.apic_map_lock);
d828199e
MT
10649 spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock);
10650
8171cd68 10651 kvm->arch.kvmclock_offset = -get_kvmclock_base_ns();
d828199e 10652 pvclock_update_vm_gtod_copy(kvm);
53f658b3 10653
6fbbde9a
DS
10654 kvm->arch.guest_can_read_msr_platform_info = true;
10655
7e44e449 10656 INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn);
332967a3 10657 INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn);
7e44e449 10658
cbc0236a 10659 kvm_hv_init_vm(kvm);
0eb05bf2 10660 kvm_page_track_init(kvm);
13d268ca 10661 kvm_mmu_init_vm(kvm);
0eb05bf2 10662
b3646477 10663 return static_call(kvm_x86_vm_init)(kvm);
d19a9cd2
ZX
10664}
10665
1aa9b957
JS
10666int kvm_arch_post_init_vm(struct kvm *kvm)
10667{
10668 return kvm_mmu_post_init_vm(kvm);
10669}
10670
d19a9cd2
ZX
10671static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
10672{
ec7660cc 10673 vcpu_load(vcpu);
d19a9cd2
ZX
10674 kvm_mmu_unload(vcpu);
10675 vcpu_put(vcpu);
10676}
10677
10678static void kvm_free_vcpus(struct kvm *kvm)
10679{
10680 unsigned int i;
988a2cae 10681 struct kvm_vcpu *vcpu;
d19a9cd2
ZX
10682
10683 /*
10684 * Unpin any mmu pages first.
10685 */
af585b92
GN
10686 kvm_for_each_vcpu(i, vcpu, kvm) {
10687 kvm_clear_async_pf_completion_queue(vcpu);
988a2cae 10688 kvm_unload_vcpu_mmu(vcpu);
af585b92 10689 }
988a2cae 10690 kvm_for_each_vcpu(i, vcpu, kvm)
4543bdc0 10691 kvm_vcpu_destroy(vcpu);
988a2cae
GN
10692
10693 mutex_lock(&kvm->lock);
10694 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
10695 kvm->vcpus[i] = NULL;
d19a9cd2 10696
988a2cae
GN
10697 atomic_set(&kvm->online_vcpus, 0);
10698 mutex_unlock(&kvm->lock);
d19a9cd2
ZX
10699}
10700
ad8ba2cd
SY
10701void kvm_arch_sync_events(struct kvm *kvm)
10702{
332967a3 10703 cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work);
7e44e449 10704 cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work);
aea924f6 10705 kvm_free_pit(kvm);
ad8ba2cd
SY
10706}
10707
ff5a983c
PX
10708#define ERR_PTR_USR(e) ((void __user *)ERR_PTR(e))
10709
10710/**
10711 * __x86_set_memory_region: Setup KVM internal memory slot
10712 *
10713 * @kvm: the kvm pointer to the VM.
10714 * @id: the slot ID to setup.
10715 * @gpa: the GPA to install the slot (unused when @size == 0).
10716 * @size: the size of the slot. Set to zero to uninstall a slot.
10717 *
10718 * This function helps to setup a KVM internal memory slot. Specify
10719 * @size > 0 to install a new slot, while @size == 0 to uninstall a
10720 * slot. The return code can be one of the following:
10721 *
10722 * HVA: on success (uninstall will return a bogus HVA)
10723 * -errno: on error
10724 *
10725 * The caller should always use IS_ERR() to check the return value
10726 * before use. Note, the KVM internal memory slots are guaranteed to
10727 * remain valid and unchanged until the VM is destroyed, i.e., the
10728 * GPA->HVA translation will not change. However, the HVA is a user
10729 * address, i.e. its accessibility is not guaranteed, and must be
10730 * accessed via __copy_{to,from}_user().
10731 */
10732void __user * __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa,
10733 u32 size)
9da0e4d5
PB
10734{
10735 int i, r;
3f649ab7 10736 unsigned long hva, old_npages;
f0d648bd 10737 struct kvm_memslots *slots = kvm_memslots(kvm);
0577d1ab 10738 struct kvm_memory_slot *slot;
9da0e4d5
PB
10739
10740 /* Called with kvm->slots_lock held. */
1d8007bd 10741 if (WARN_ON(id >= KVM_MEM_SLOTS_NUM))
ff5a983c 10742 return ERR_PTR_USR(-EINVAL);
9da0e4d5 10743
f0d648bd
PB
10744 slot = id_to_memslot(slots, id);
10745 if (size) {
0577d1ab 10746 if (slot && slot->npages)
ff5a983c 10747 return ERR_PTR_USR(-EEXIST);
f0d648bd
PB
10748
10749 /*
10750 * MAP_SHARED to prevent internal slot pages from being moved
10751 * by fork()/COW.
10752 */
10753 hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE,
10754 MAP_SHARED | MAP_ANONYMOUS, 0);
10755 if (IS_ERR((void *)hva))
ff5a983c 10756 return (void __user *)hva;
f0d648bd 10757 } else {
0577d1ab 10758 if (!slot || !slot->npages)
46914534 10759 return NULL;
f0d648bd 10760
0577d1ab 10761 old_npages = slot->npages;
b66f9bab 10762 hva = slot->userspace_addr;
f0d648bd
PB
10763 }
10764
9da0e4d5 10765 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
1d8007bd 10766 struct kvm_userspace_memory_region m;
9da0e4d5 10767
1d8007bd
PB
10768 m.slot = id | (i << 16);
10769 m.flags = 0;
10770 m.guest_phys_addr = gpa;
f0d648bd 10771 m.userspace_addr = hva;
1d8007bd 10772 m.memory_size = size;
9da0e4d5
PB
10773 r = __kvm_set_memory_region(kvm, &m);
10774 if (r < 0)
ff5a983c 10775 return ERR_PTR_USR(r);
9da0e4d5
PB
10776 }
10777
103c763c 10778 if (!size)
0577d1ab 10779 vm_munmap(hva, old_npages * PAGE_SIZE);
f0d648bd 10780
ff5a983c 10781 return (void __user *)hva;
9da0e4d5
PB
10782}
10783EXPORT_SYMBOL_GPL(__x86_set_memory_region);
10784
1aa9b957
JS
10785void kvm_arch_pre_destroy_vm(struct kvm *kvm)
10786{
10787 kvm_mmu_pre_destroy_vm(kvm);
10788}
10789
d19a9cd2
ZX
10790void kvm_arch_destroy_vm(struct kvm *kvm)
10791{
27469d29
AH
10792 if (current->mm == kvm->mm) {
10793 /*
10794 * Free memory regions allocated on behalf of userspace,
10795 * unless the the memory map has changed due to process exit
10796 * or fd copying.
10797 */
6a3c623b
PX
10798 mutex_lock(&kvm->slots_lock);
10799 __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
10800 0, 0);
10801 __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
10802 0, 0);
10803 __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0);
10804 mutex_unlock(&kvm->slots_lock);
27469d29 10805 }
b3646477 10806 static_call_cond(kvm_x86_vm_destroy)(kvm);
b318e8de 10807 kvm_free_msr_filter(srcu_dereference_check(kvm->arch.msr_filter, &kvm->srcu, 1));
c761159c
PX
10808 kvm_pic_destroy(kvm);
10809 kvm_ioapic_destroy(kvm);
d19a9cd2 10810 kvm_free_vcpus(kvm);
af1bae54 10811 kvfree(rcu_dereference_check(kvm->arch.apic_map, 1));
66bb8a06 10812 kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1));
13d268ca 10813 kvm_mmu_uninit_vm(kvm);
2beb6dad 10814 kvm_page_track_cleanup(kvm);
7d6bbebb 10815 kvm_xen_destroy_vm(kvm);
cbc0236a 10816 kvm_hv_destroy_vm(kvm);
d19a9cd2 10817}
0de10343 10818
e96c81ee 10819void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
db3fe4eb
TY
10820{
10821 int i;
10822
d89cc617 10823 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
e96c81ee
SC
10824 kvfree(slot->arch.rmap[i]);
10825 slot->arch.rmap[i] = NULL;
10826
d89cc617
TY
10827 if (i == 0)
10828 continue;
10829
e96c81ee
SC
10830 kvfree(slot->arch.lpage_info[i - 1]);
10831 slot->arch.lpage_info[i - 1] = NULL;
db3fe4eb 10832 }
21ebbeda 10833
e96c81ee 10834 kvm_page_track_free_memslot(slot);
db3fe4eb
TY
10835}
10836
0dab98b7
SC
10837static int kvm_alloc_memslot_metadata(struct kvm_memory_slot *slot,
10838 unsigned long npages)
db3fe4eb
TY
10839{
10840 int i;
10841
edd4fa37
SC
10842 /*
10843 * Clear out the previous array pointers for the KVM_MR_MOVE case. The
10844 * old arrays will be freed by __kvm_set_memory_region() if installing
10845 * the new memslot is successful.
10846 */
10847 memset(&slot->arch, 0, sizeof(slot->arch));
10848
d89cc617 10849 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
92f94f1e 10850 struct kvm_lpage_info *linfo;
db3fe4eb
TY
10851 unsigned long ugfn;
10852 int lpages;
d89cc617 10853 int level = i + 1;
db3fe4eb
TY
10854
10855 lpages = gfn_to_index(slot->base_gfn + npages - 1,
10856 slot->base_gfn, level) + 1;
10857
d89cc617 10858 slot->arch.rmap[i] =
778e1cdd 10859 kvcalloc(lpages, sizeof(*slot->arch.rmap[i]),
254272ce 10860 GFP_KERNEL_ACCOUNT);
d89cc617 10861 if (!slot->arch.rmap[i])
77d11309 10862 goto out_free;
d89cc617
TY
10863 if (i == 0)
10864 continue;
77d11309 10865
254272ce 10866 linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT);
92f94f1e 10867 if (!linfo)
db3fe4eb
TY
10868 goto out_free;
10869
92f94f1e
XG
10870 slot->arch.lpage_info[i - 1] = linfo;
10871
db3fe4eb 10872 if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
92f94f1e 10873 linfo[0].disallow_lpage = 1;
db3fe4eb 10874 if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
92f94f1e 10875 linfo[lpages - 1].disallow_lpage = 1;
db3fe4eb
TY
10876 ugfn = slot->userspace_addr >> PAGE_SHIFT;
10877 /*
10878 * If the gfn and userspace address are not aligned wrt each
600087b6 10879 * other, disable large page support for this slot.
db3fe4eb 10880 */
600087b6 10881 if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) {
db3fe4eb
TY
10882 unsigned long j;
10883
10884 for (j = 0; j < lpages; ++j)
92f94f1e 10885 linfo[j].disallow_lpage = 1;
db3fe4eb
TY
10886 }
10887 }
10888
21ebbeda
XG
10889 if (kvm_page_track_create_memslot(slot, npages))
10890 goto out_free;
10891
db3fe4eb
TY
10892 return 0;
10893
10894out_free:
d89cc617 10895 for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) {
548ef284 10896 kvfree(slot->arch.rmap[i]);
d89cc617
TY
10897 slot->arch.rmap[i] = NULL;
10898 if (i == 0)
10899 continue;
10900
548ef284 10901 kvfree(slot->arch.lpage_info[i - 1]);
d89cc617 10902 slot->arch.lpage_info[i - 1] = NULL;
db3fe4eb
TY
10903 }
10904 return -ENOMEM;
10905}
10906
15248258 10907void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
e59dbe09 10908{
91724814
BO
10909 struct kvm_vcpu *vcpu;
10910 int i;
10911
e6dff7d1
TY
10912 /*
10913 * memslots->generation has been incremented.
10914 * mmio generation may have reached its maximum value.
10915 */
15248258 10916 kvm_mmu_invalidate_mmio_sptes(kvm, gen);
91724814
BO
10917
10918 /* Force re-initialization of steal_time cache */
10919 kvm_for_each_vcpu(i, vcpu, kvm)
10920 kvm_vcpu_kick(vcpu);
e59dbe09
TY
10921}
10922
f7784b8e
MT
10923int kvm_arch_prepare_memory_region(struct kvm *kvm,
10924 struct kvm_memory_slot *memslot,
09170a49 10925 const struct kvm_userspace_memory_region *mem,
7b6195a9 10926 enum kvm_mr_change change)
0de10343 10927{
0dab98b7
SC
10928 if (change == KVM_MR_CREATE || change == KVM_MR_MOVE)
10929 return kvm_alloc_memslot_metadata(memslot,
10930 mem->memory_size >> PAGE_SHIFT);
f7784b8e
MT
10931 return 0;
10932}
10933
a85863c2
MS
10934
10935static void kvm_mmu_update_cpu_dirty_logging(struct kvm *kvm, bool enable)
10936{
10937 struct kvm_arch *ka = &kvm->arch;
10938
10939 if (!kvm_x86_ops.cpu_dirty_log_size)
10940 return;
10941
10942 if ((enable && ++ka->cpu_dirty_logging_count == 1) ||
10943 (!enable && --ka->cpu_dirty_logging_count == 0))
10944 kvm_make_all_cpus_request(kvm, KVM_REQ_UPDATE_CPU_DIRTY_LOGGING);
10945
10946 WARN_ON_ONCE(ka->cpu_dirty_logging_count < 0);
10947}
10948
88178fd4 10949static void kvm_mmu_slot_apply_flags(struct kvm *kvm,
3741679b
AY
10950 struct kvm_memory_slot *old,
10951 struct kvm_memory_slot *new,
10952 enum kvm_mr_change change)
88178fd4 10953{
a85863c2
MS
10954 bool log_dirty_pages = new->flags & KVM_MEM_LOG_DIRTY_PAGES;
10955
3741679b 10956 /*
a85863c2
MS
10957 * Update CPU dirty logging if dirty logging is being toggled. This
10958 * applies to all operations.
3741679b 10959 */
a85863c2
MS
10960 if ((old->flags ^ new->flags) & KVM_MEM_LOG_DIRTY_PAGES)
10961 kvm_mmu_update_cpu_dirty_logging(kvm, log_dirty_pages);
88178fd4
KH
10962
10963 /*
a85863c2 10964 * Nothing more to do for RO slots (which can't be dirtied and can't be
b6e16ae5 10965 * made writable) or CREATE/MOVE/DELETE of a slot.
88178fd4 10966 *
b6e16ae5 10967 * For a memslot with dirty logging disabled:
3741679b
AY
10968 * CREATE: No dirty mappings will already exist.
10969 * MOVE/DELETE: The old mappings will already have been cleaned up by
10970 * kvm_arch_flush_shadow_memslot()
b6e16ae5
SC
10971 *
10972 * For a memslot with dirty logging enabled:
10973 * CREATE: No shadow pages exist, thus nothing to write-protect
10974 * and no dirty bits to clear.
10975 * MOVE/DELETE: The old mappings will already have been cleaned up by
10976 * kvm_arch_flush_shadow_memslot().
3741679b 10977 */
3741679b 10978 if ((change != KVM_MR_FLAGS_ONLY) || (new->flags & KVM_MEM_READONLY))
88178fd4 10979 return;
3741679b
AY
10980
10981 /*
52f46079
SC
10982 * READONLY and non-flags changes were filtered out above, and the only
10983 * other flag is LOG_DIRTY_PAGES, i.e. something is wrong if dirty
10984 * logging isn't being toggled on or off.
88178fd4 10985 */
52f46079
SC
10986 if (WARN_ON_ONCE(!((old->flags ^ new->flags) & KVM_MEM_LOG_DIRTY_PAGES)))
10987 return;
10988
b6e16ae5
SC
10989 if (!log_dirty_pages) {
10990 /*
10991 * Dirty logging tracks sptes in 4k granularity, meaning that
10992 * large sptes have to be split. If live migration succeeds,
10993 * the guest in the source machine will be destroyed and large
10994 * sptes will be created in the destination. However, if the
10995 * guest continues to run in the source machine (for example if
10996 * live migration fails), small sptes will remain around and
10997 * cause bad performance.
10998 *
10999 * Scan sptes if dirty logging has been stopped, dropping those
11000 * which can be collapsed into a single large-page spte. Later
11001 * page faults will create the large-page sptes.
11002 */
3741679b 11003 kvm_mmu_zap_collapsible_sptes(kvm, new);
b6e16ae5 11004 } else {
a1419f8b
SC
11005 /* By default, write-protect everything to log writes. */
11006 int level = PG_LEVEL_4K;
11007
a018eba5 11008 if (kvm_x86_ops.cpu_dirty_log_size) {
a1419f8b
SC
11009 /*
11010 * Clear all dirty bits, unless pages are treated as
11011 * dirty from the get-go.
11012 */
a018eba5
SC
11013 if (!kvm_dirty_log_manual_protect_and_init_set(kvm))
11014 kvm_mmu_slot_leaf_clear_dirty(kvm, new);
3c9bd400 11015
a1419f8b
SC
11016 /*
11017 * Write-protect large pages on write so that dirty
11018 * logging happens at 4k granularity. No need to
11019 * write-protect small SPTEs since write accesses are
11020 * logged by the CPU via dirty bits.
11021 */
11022 level = PG_LEVEL_2M;
11023 } else if (kvm_dirty_log_manual_protect_and_init_set(kvm)) {
3c9bd400
JZ
11024 /*
11025 * If we're with initial-all-set, we don't need
11026 * to write protect any small page because
11027 * they're reported as dirty already. However
11028 * we still need to write-protect huge pages
11029 * so that the page split can happen lazily on
11030 * the first write to the huge page.
11031 */
a1419f8b 11032 level = PG_LEVEL_2M;
3c9bd400 11033 }
a1419f8b 11034 kvm_mmu_slot_remove_write_access(kvm, new, level);
88178fd4
KH
11035 }
11036}
11037
f7784b8e 11038void kvm_arch_commit_memory_region(struct kvm *kvm,
09170a49 11039 const struct kvm_userspace_memory_region *mem,
9d4c197c 11040 struct kvm_memory_slot *old,
f36f3f28 11041 const struct kvm_memory_slot *new,
8482644a 11042 enum kvm_mr_change change)
f7784b8e 11043{
48c0e4e9 11044 if (!kvm->arch.n_requested_mmu_pages)
4d66623c
WY
11045 kvm_mmu_change_mmu_pages(kvm,
11046 kvm_mmu_calculate_default_mmu_pages(kvm));
1c91cad4 11047
3ea3b7fa 11048 /*
f36f3f28 11049 * FIXME: const-ify all uses of struct kvm_memory_slot.
c972f3b1 11050 */
3741679b 11051 kvm_mmu_slot_apply_flags(kvm, old, (struct kvm_memory_slot *) new, change);
21198846
SC
11052
11053 /* Free the arrays associated with the old memslot. */
11054 if (change == KVM_MR_MOVE)
e96c81ee 11055 kvm_arch_free_memslot(kvm, old);
0de10343 11056}
1d737c8a 11057
2df72e9b 11058void kvm_arch_flush_shadow_all(struct kvm *kvm)
34d4cb8f 11059{
7390de1e 11060 kvm_mmu_zap_all(kvm);
34d4cb8f
MT
11061}
11062
2df72e9b
MT
11063void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
11064 struct kvm_memory_slot *slot)
11065{
ae7cd873 11066 kvm_page_track_flush_slot(kvm, slot);
2df72e9b
MT
11067}
11068
e6c67d8c
LA
11069static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu)
11070{
11071 return (is_guest_mode(vcpu) &&
afaf0b2f 11072 kvm_x86_ops.guest_apic_has_interrupt &&
b3646477 11073 static_call(kvm_x86_guest_apic_has_interrupt)(vcpu));
e6c67d8c
LA
11074}
11075
5d9bc648
PB
11076static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
11077{
11078 if (!list_empty_careful(&vcpu->async_pf.done))
11079 return true;
11080
11081 if (kvm_apic_has_events(vcpu))
11082 return true;
11083
11084 if (vcpu->arch.pv.pv_unhalted)
11085 return true;
11086
a5f01f8e
WL
11087 if (vcpu->arch.exception.pending)
11088 return true;
11089
47a66eed
Z
11090 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11091 (vcpu->arch.nmi_pending &&
b3646477 11092 static_call(kvm_x86_nmi_allowed)(vcpu, false)))
5d9bc648
PB
11093 return true;
11094
47a66eed 11095 if (kvm_test_request(KVM_REQ_SMI, vcpu) ||
a9fa7cb6 11096 (vcpu->arch.smi_pending &&
b3646477 11097 static_call(kvm_x86_smi_allowed)(vcpu, false)))
73917739
PB
11098 return true;
11099
5d9bc648 11100 if (kvm_arch_interrupt_allowed(vcpu) &&
e6c67d8c
LA
11101 (kvm_cpu_has_interrupt(vcpu) ||
11102 kvm_guest_apic_has_interrupt(vcpu)))
5d9bc648
PB
11103 return true;
11104
1f4b34f8
AS
11105 if (kvm_hv_has_stimer_pending(vcpu))
11106 return true;
11107
d2060bd4
SC
11108 if (is_guest_mode(vcpu) &&
11109 kvm_x86_ops.nested_ops->hv_timer_pending &&
11110 kvm_x86_ops.nested_ops->hv_timer_pending(vcpu))
11111 return true;
11112
5d9bc648
PB
11113 return false;
11114}
11115
1d737c8a
ZX
11116int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
11117{
5d9bc648 11118 return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu);
1d737c8a 11119}
5736199a 11120
10dbdf98 11121bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu)
17e433b5 11122{
b3646477 11123 if (vcpu->arch.apicv_active && static_call(kvm_x86_dy_apicv_has_pending_interrupt)(vcpu))
52acd22f
WL
11124 return true;
11125
11126 return false;
11127}
11128
17e433b5
WL
11129bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
11130{
11131 if (READ_ONCE(vcpu->arch.pv.pv_unhalted))
11132 return true;
11133
11134 if (kvm_test_request(KVM_REQ_NMI, vcpu) ||
11135 kvm_test_request(KVM_REQ_SMI, vcpu) ||
11136 kvm_test_request(KVM_REQ_EVENT, vcpu))
11137 return true;
11138
10dbdf98 11139 return kvm_arch_dy_has_pending_interrupt(vcpu);
17e433b5
WL
11140}
11141
199b5763
LM
11142bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
11143{
b86bb11e
WL
11144 if (vcpu->arch.guest_state_protected)
11145 return true;
11146
de63ad4c 11147 return vcpu->arch.preempted_in_kernel;
199b5763
LM
11148}
11149
b6d33834 11150int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
5736199a 11151{
b6d33834 11152 return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE;
5736199a 11153}
78646121
GN
11154
11155int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
11156{
b3646477 11157 return static_call(kvm_x86_interrupt_allowed)(vcpu, false);
78646121 11158}
229456fc 11159
82b32774 11160unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu)
f92653ee 11161{
7ed9abfe
TL
11162 /* Can't read the RIP when guest state is protected, just return 0 */
11163 if (vcpu->arch.guest_state_protected)
11164 return 0;
11165
82b32774
NA
11166 if (is_64_bit_mode(vcpu))
11167 return kvm_rip_read(vcpu);
11168 return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) +
11169 kvm_rip_read(vcpu));
11170}
11171EXPORT_SYMBOL_GPL(kvm_get_linear_rip);
f92653ee 11172
82b32774
NA
11173bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip)
11174{
11175 return kvm_get_linear_rip(vcpu) == linear_rip;
f92653ee
JK
11176}
11177EXPORT_SYMBOL_GPL(kvm_is_linear_rip);
11178
94fe45da
JK
11179unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu)
11180{
11181 unsigned long rflags;
11182
b3646477 11183 rflags = static_call(kvm_x86_get_rflags)(vcpu);
94fe45da 11184 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
c310bac5 11185 rflags &= ~X86_EFLAGS_TF;
94fe45da
JK
11186 return rflags;
11187}
11188EXPORT_SYMBOL_GPL(kvm_get_rflags);
11189
6addfc42 11190static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
94fe45da
JK
11191{
11192 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP &&
f92653ee 11193 kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip))
c310bac5 11194 rflags |= X86_EFLAGS_TF;
b3646477 11195 static_call(kvm_x86_set_rflags)(vcpu, rflags);
6addfc42
PB
11196}
11197
11198void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
11199{
11200 __kvm_set_rflags(vcpu, rflags);
3842d135 11201 kvm_make_request(KVM_REQ_EVENT, vcpu);
94fe45da
JK
11202}
11203EXPORT_SYMBOL_GPL(kvm_set_rflags);
11204
56028d08
GN
11205void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work)
11206{
11207 int r;
11208
44dd3ffa 11209 if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) ||
f2e10669 11210 work->wakeup_all)
56028d08
GN
11211 return;
11212
11213 r = kvm_mmu_reload(vcpu);
11214 if (unlikely(r))
11215 return;
11216
44dd3ffa 11217 if (!vcpu->arch.mmu->direct_map &&
d8dd54e0 11218 work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu))
fb67e14f
XG
11219 return;
11220
7a02674d 11221 kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true);
56028d08
GN
11222}
11223
af585b92
GN
11224static inline u32 kvm_async_pf_hash_fn(gfn_t gfn)
11225{
dd03bcaa
PX
11226 BUILD_BUG_ON(!is_power_of_2(ASYNC_PF_PER_VCPU));
11227
af585b92
GN
11228 return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU));
11229}
11230
11231static inline u32 kvm_async_pf_next_probe(u32 key)
11232{
dd03bcaa 11233 return (key + 1) & (ASYNC_PF_PER_VCPU - 1);
af585b92
GN
11234}
11235
11236static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11237{
11238 u32 key = kvm_async_pf_hash_fn(gfn);
11239
11240 while (vcpu->arch.apf.gfns[key] != ~0)
11241 key = kvm_async_pf_next_probe(key);
11242
11243 vcpu->arch.apf.gfns[key] = gfn;
11244}
11245
11246static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn)
11247{
11248 int i;
11249 u32 key = kvm_async_pf_hash_fn(gfn);
11250
dd03bcaa 11251 for (i = 0; i < ASYNC_PF_PER_VCPU &&
c7d28c24
XG
11252 (vcpu->arch.apf.gfns[key] != gfn &&
11253 vcpu->arch.apf.gfns[key] != ~0); i++)
af585b92
GN
11254 key = kvm_async_pf_next_probe(key);
11255
11256 return key;
11257}
11258
11259bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11260{
11261 return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn;
11262}
11263
11264static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
11265{
11266 u32 i, j, k;
11267
11268 i = j = kvm_async_pf_gfn_slot(vcpu, gfn);
0fd46044
PX
11269
11270 if (WARN_ON_ONCE(vcpu->arch.apf.gfns[i] != gfn))
11271 return;
11272
af585b92
GN
11273 while (true) {
11274 vcpu->arch.apf.gfns[i] = ~0;
11275 do {
11276 j = kvm_async_pf_next_probe(j);
11277 if (vcpu->arch.apf.gfns[j] == ~0)
11278 return;
11279 k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]);
11280 /*
11281 * k lies cyclically in ]i,j]
11282 * | i.k.j |
11283 * |....j i.k.| or |.k..j i...|
11284 */
11285 } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j));
11286 vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j];
11287 i = j;
11288 }
11289}
11290
68fd66f1 11291static inline int apf_put_user_notpresent(struct kvm_vcpu *vcpu)
7c90705b 11292{
68fd66f1
VK
11293 u32 reason = KVM_PV_REASON_PAGE_NOT_PRESENT;
11294
11295 return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &reason,
11296 sizeof(reason));
11297}
11298
11299static inline int apf_put_user_ready(struct kvm_vcpu *vcpu, u32 token)
11300{
2635b5c4 11301 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
4e335d9e 11302
2635b5c4
VK
11303 return kvm_write_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
11304 &token, offset, sizeof(token));
11305}
11306
11307static inline bool apf_pageready_slot_free(struct kvm_vcpu *vcpu)
11308{
11309 unsigned int offset = offsetof(struct kvm_vcpu_pv_apf_data, token);
11310 u32 val;
11311
11312 if (kvm_read_guest_offset_cached(vcpu->kvm, &vcpu->arch.apf.data,
11313 &val, offset, sizeof(val)))
11314 return false;
11315
11316 return !val;
7c90705b
GN
11317}
11318
1dfdb45e
PB
11319static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu)
11320{
11321 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
11322 return false;
11323
2635b5c4 11324 if (!kvm_pv_async_pf_enabled(vcpu) ||
b3646477 11325 (vcpu->arch.apf.send_user_only && static_call(kvm_x86_get_cpl)(vcpu) == 0))
1dfdb45e
PB
11326 return false;
11327
11328 return true;
11329}
11330
11331bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
11332{
11333 if (unlikely(!lapic_in_kernel(vcpu) ||
11334 kvm_event_needs_reinjection(vcpu) ||
11335 vcpu->arch.exception.pending))
11336 return false;
11337
11338 if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu))
11339 return false;
11340
11341 /*
11342 * If interrupts are off we cannot even use an artificial
11343 * halt state.
11344 */
c300ab9f 11345 return kvm_arch_interrupt_allowed(vcpu);
1dfdb45e
PB
11346}
11347
2a18b7e7 11348bool kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
af585b92
GN
11349 struct kvm_async_pf *work)
11350{
6389ee94
AK
11351 struct x86_exception fault;
11352
736c291c 11353 trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa);
af585b92 11354 kvm_add_async_pf_gfn(vcpu, work->arch.gfn);
7c90705b 11355
1dfdb45e 11356 if (kvm_can_deliver_async_pf(vcpu) &&
68fd66f1 11357 !apf_put_user_notpresent(vcpu)) {
6389ee94
AK
11358 fault.vector = PF_VECTOR;
11359 fault.error_code_valid = true;
11360 fault.error_code = 0;
11361 fault.nested_page_fault = false;
11362 fault.address = work->arch.token;
adfe20fb 11363 fault.async_page_fault = true;
6389ee94 11364 kvm_inject_page_fault(vcpu, &fault);
2a18b7e7 11365 return true;
1dfdb45e
PB
11366 } else {
11367 /*
11368 * It is not possible to deliver a paravirtualized asynchronous
11369 * page fault, but putting the guest in an artificial halt state
11370 * can be beneficial nevertheless: if an interrupt arrives, we
11371 * can deliver it timely and perhaps the guest will schedule
11372 * another process. When the instruction that triggered a page
11373 * fault is retried, hopefully the page will be ready in the host.
11374 */
11375 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
2a18b7e7 11376 return false;
7c90705b 11377 }
af585b92
GN
11378}
11379
11380void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
11381 struct kvm_async_pf *work)
11382{
2635b5c4
VK
11383 struct kvm_lapic_irq irq = {
11384 .delivery_mode = APIC_DM_FIXED,
11385 .vector = vcpu->arch.apf.vec
11386 };
6389ee94 11387
f2e10669 11388 if (work->wakeup_all)
7c90705b
GN
11389 work->arch.token = ~0; /* broadcast wakeup */
11390 else
11391 kvm_del_async_pf_gfn(vcpu, work->arch.gfn);
736c291c 11392 trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa);
7c90705b 11393
2a18b7e7
VK
11394 if ((work->wakeup_all || work->notpresent_injected) &&
11395 kvm_pv_async_pf_enabled(vcpu) &&
557a961a
VK
11396 !apf_put_user_ready(vcpu, work->arch.token)) {
11397 vcpu->arch.apf.pageready_pending = true;
2635b5c4 11398 kvm_apic_set_irq(vcpu, &irq, NULL);
557a961a 11399 }
2635b5c4 11400
e6d53e3b 11401 vcpu->arch.apf.halted = false;
a4fa1635 11402 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
7c90705b
GN
11403}
11404
557a961a
VK
11405void kvm_arch_async_page_present_queued(struct kvm_vcpu *vcpu)
11406{
11407 kvm_make_request(KVM_REQ_APF_READY, vcpu);
11408 if (!vcpu->arch.apf.pageready_pending)
11409 kvm_vcpu_kick(vcpu);
11410}
11411
7c0ade6c 11412bool kvm_arch_can_dequeue_async_page_present(struct kvm_vcpu *vcpu)
7c90705b 11413{
2635b5c4 11414 if (!kvm_pv_async_pf_enabled(vcpu))
7c90705b
GN
11415 return true;
11416 else
2f15d027 11417 return kvm_lapic_enabled(vcpu) && apf_pageready_slot_free(vcpu);
af585b92
GN
11418}
11419
5544eb9b
PB
11420void kvm_arch_start_assignment(struct kvm *kvm)
11421{
11422 atomic_inc(&kvm->arch.assigned_device_count);
11423}
11424EXPORT_SYMBOL_GPL(kvm_arch_start_assignment);
11425
11426void kvm_arch_end_assignment(struct kvm *kvm)
11427{
11428 atomic_dec(&kvm->arch.assigned_device_count);
11429}
11430EXPORT_SYMBOL_GPL(kvm_arch_end_assignment);
11431
11432bool kvm_arch_has_assigned_device(struct kvm *kvm)
11433{
11434 return atomic_read(&kvm->arch.assigned_device_count);
11435}
11436EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device);
11437
e0f0bbc5
AW
11438void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
11439{
11440 atomic_inc(&kvm->arch.noncoherent_dma_count);
11441}
11442EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma);
11443
11444void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
11445{
11446 atomic_dec(&kvm->arch.noncoherent_dma_count);
11447}
11448EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma);
11449
11450bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
11451{
11452 return atomic_read(&kvm->arch.noncoherent_dma_count);
11453}
11454EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma);
11455
14717e20
AW
11456bool kvm_arch_has_irq_bypass(void)
11457{
92735b1b 11458 return true;
14717e20
AW
11459}
11460
87276880
FW
11461int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons,
11462 struct irq_bypass_producer *prod)
11463{
11464 struct kvm_kernel_irqfd *irqfd =
11465 container_of(cons, struct kvm_kernel_irqfd, consumer);
2edd9cb7 11466 int ret;
87276880 11467
14717e20 11468 irqfd->producer = prod;
2edd9cb7 11469 kvm_arch_start_assignment(irqfd->kvm);
b3646477 11470 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm,
2edd9cb7
ZL
11471 prod->irq, irqfd->gsi, 1);
11472
11473 if (ret)
11474 kvm_arch_end_assignment(irqfd->kvm);
87276880 11475
2edd9cb7 11476 return ret;
87276880
FW
11477}
11478
11479void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons,
11480 struct irq_bypass_producer *prod)
11481{
11482 int ret;
11483 struct kvm_kernel_irqfd *irqfd =
11484 container_of(cons, struct kvm_kernel_irqfd, consumer);
11485
87276880
FW
11486 WARN_ON(irqfd->producer != prod);
11487 irqfd->producer = NULL;
11488
11489 /*
11490 * When producer of consumer is unregistered, we change back to
11491 * remapped mode, so we can re-use the current implementation
bb3541f1 11492 * when the irq is masked/disabled or the consumer side (KVM
87276880
FW
11493 * int this case doesn't want to receive the interrupts.
11494 */
b3646477 11495 ret = static_call(kvm_x86_update_pi_irte)(irqfd->kvm, prod->irq, irqfd->gsi, 0);
87276880
FW
11496 if (ret)
11497 printk(KERN_INFO "irq bypass consumer (token %p) unregistration"
11498 " fails: %d\n", irqfd->consumer.token, ret);
2edd9cb7
ZL
11499
11500 kvm_arch_end_assignment(irqfd->kvm);
87276880
FW
11501}
11502
11503int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
11504 uint32_t guest_irq, bool set)
11505{
b3646477 11506 return static_call(kvm_x86_update_pi_irte)(kvm, host_irq, guest_irq, set);
87276880
FW
11507}
11508
52004014
FW
11509bool kvm_vector_hashing_enabled(void)
11510{
11511 return vector_hashing;
11512}
52004014 11513
2d5ba19b
MT
11514bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
11515{
11516 return (vcpu->arch.msr_kvm_poll_control & 1) == 0;
11517}
11518EXPORT_SYMBOL_GPL(kvm_arch_no_poll);
11519
841c2be0
ML
11520
11521int kvm_spec_ctrl_test_value(u64 value)
6441fa61 11522{
841c2be0
ML
11523 /*
11524 * test that setting IA32_SPEC_CTRL to given value
11525 * is allowed by the host processor
11526 */
6441fa61 11527
841c2be0
ML
11528 u64 saved_value;
11529 unsigned long flags;
11530 int ret = 0;
6441fa61 11531
841c2be0 11532 local_irq_save(flags);
6441fa61 11533
841c2be0
ML
11534 if (rdmsrl_safe(MSR_IA32_SPEC_CTRL, &saved_value))
11535 ret = 1;
11536 else if (wrmsrl_safe(MSR_IA32_SPEC_CTRL, value))
11537 ret = 1;
11538 else
11539 wrmsrl(MSR_IA32_SPEC_CTRL, saved_value);
6441fa61 11540
841c2be0 11541 local_irq_restore(flags);
6441fa61 11542
841c2be0 11543 return ret;
6441fa61 11544}
841c2be0 11545EXPORT_SYMBOL_GPL(kvm_spec_ctrl_test_value);
2d5ba19b 11546
89786147
MG
11547void kvm_fixup_and_inject_pf_error(struct kvm_vcpu *vcpu, gva_t gva, u16 error_code)
11548{
11549 struct x86_exception fault;
19cf4b7e
PB
11550 u32 access = error_code &
11551 (PFERR_WRITE_MASK | PFERR_FETCH_MASK | PFERR_USER_MASK);
89786147
MG
11552
11553 if (!(error_code & PFERR_PRESENT_MASK) ||
19cf4b7e 11554 vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, &fault) != UNMAPPED_GVA) {
89786147
MG
11555 /*
11556 * If vcpu->arch.walk_mmu->gva_to_gpa succeeded, the page
11557 * tables probably do not match the TLB. Just proceed
11558 * with the error code that the processor gave.
11559 */
11560 fault.vector = PF_VECTOR;
11561 fault.error_code_valid = true;
11562 fault.error_code = error_code;
11563 fault.nested_page_fault = false;
11564 fault.address = gva;
11565 }
11566 vcpu->arch.walk_mmu->inject_page_fault(vcpu, &fault);
6441fa61 11567}
89786147 11568EXPORT_SYMBOL_GPL(kvm_fixup_and_inject_pf_error);
2d5ba19b 11569
3f3393b3
BM
11570/*
11571 * Handles kvm_read/write_guest_virt*() result and either injects #PF or returns
11572 * KVM_EXIT_INTERNAL_ERROR for cases not currently handled by KVM. Return value
11573 * indicates whether exit to userspace is needed.
11574 */
11575int kvm_handle_memory_failure(struct kvm_vcpu *vcpu, int r,
11576 struct x86_exception *e)
11577{
11578 if (r == X86EMUL_PROPAGATE_FAULT) {
11579 kvm_inject_emulated_page_fault(vcpu, e);
11580 return 1;
11581 }
11582
11583 /*
11584 * In case kvm_read/write_guest_virt*() failed with X86EMUL_IO_NEEDED
11585 * while handling a VMX instruction KVM could've handled the request
11586 * correctly by exiting to userspace and performing I/O but there
11587 * doesn't seem to be a real use-case behind such requests, just return
11588 * KVM_EXIT_INTERNAL_ERROR for now.
11589 */
11590 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
11591 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
11592 vcpu->run->internal.ndata = 0;
11593
11594 return 0;
11595}
11596EXPORT_SYMBOL_GPL(kvm_handle_memory_failure);
11597
9715092f
BM
11598int kvm_handle_invpcid(struct kvm_vcpu *vcpu, unsigned long type, gva_t gva)
11599{
11600 bool pcid_enabled;
11601 struct x86_exception e;
11602 unsigned i;
11603 unsigned long roots_to_free = 0;
11604 struct {
11605 u64 pcid;
11606 u64 gla;
11607 } operand;
11608 int r;
11609
11610 r = kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e);
11611 if (r != X86EMUL_CONTINUE)
11612 return kvm_handle_memory_failure(vcpu, r, &e);
11613
11614 if (operand.pcid >> 12 != 0) {
11615 kvm_inject_gp(vcpu, 0);
11616 return 1;
11617 }
11618
11619 pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE);
11620
11621 switch (type) {
11622 case INVPCID_TYPE_INDIV_ADDR:
11623 if ((!pcid_enabled && (operand.pcid != 0)) ||
11624 is_noncanonical_address(operand.gla, vcpu)) {
11625 kvm_inject_gp(vcpu, 0);
11626 return 1;
11627 }
11628 kvm_mmu_invpcid_gva(vcpu, operand.gla, operand.pcid);
11629 return kvm_skip_emulated_instruction(vcpu);
11630
11631 case INVPCID_TYPE_SINGLE_CTXT:
11632 if (!pcid_enabled && (operand.pcid != 0)) {
11633 kvm_inject_gp(vcpu, 0);
11634 return 1;
11635 }
11636
11637 if (kvm_get_active_pcid(vcpu) == operand.pcid) {
11638 kvm_mmu_sync_roots(vcpu);
11639 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
11640 }
11641
11642 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++)
11643 if (kvm_get_pcid(vcpu, vcpu->arch.mmu->prev_roots[i].pgd)
11644 == operand.pcid)
11645 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
11646
11647 kvm_mmu_free_roots(vcpu, vcpu->arch.mmu, roots_to_free);
11648 /*
11649 * If neither the current cr3 nor any of the prev_roots use the
11650 * given PCID, then nothing needs to be done here because a
11651 * resync will happen anyway before switching to any other CR3.
11652 */
11653
11654 return kvm_skip_emulated_instruction(vcpu);
11655
11656 case INVPCID_TYPE_ALL_NON_GLOBAL:
11657 /*
11658 * Currently, KVM doesn't mark global entries in the shadow
11659 * page tables, so a non-global flush just degenerates to a
11660 * global flush. If needed, we could optimize this later by
11661 * keeping track of global entries in shadow page tables.
11662 */
11663
11664 fallthrough;
11665 case INVPCID_TYPE_ALL_INCL_GLOBAL:
f66c53b3 11666 kvm_make_request(KVM_REQ_MMU_RELOAD, vcpu);
9715092f
BM
11667 return kvm_skip_emulated_instruction(vcpu);
11668
11669 default:
11670 BUG(); /* We have already checked above that type <= 3 */
11671 }
11672}
11673EXPORT_SYMBOL_GPL(kvm_handle_invpcid);
11674
8f423a80
TL
11675static int complete_sev_es_emulated_mmio(struct kvm_vcpu *vcpu)
11676{
11677 struct kvm_run *run = vcpu->run;
11678 struct kvm_mmio_fragment *frag;
11679 unsigned int len;
11680
11681 BUG_ON(!vcpu->mmio_needed);
11682
11683 /* Complete previous fragment */
11684 frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment];
11685 len = min(8u, frag->len);
11686 if (!vcpu->mmio_is_write)
11687 memcpy(frag->data, run->mmio.data, len);
11688
11689 if (frag->len <= 8) {
11690 /* Switch to the next fragment. */
11691 frag++;
11692 vcpu->mmio_cur_fragment++;
11693 } else {
11694 /* Go forward to the next mmio piece. */
11695 frag->data += len;
11696 frag->gpa += len;
11697 frag->len -= len;
11698 }
11699
11700 if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) {
11701 vcpu->mmio_needed = 0;
11702
11703 // VMG change, at this point, we're always done
11704 // RIP has already been advanced
11705 return 1;
11706 }
11707
11708 // More MMIO is needed
11709 run->mmio.phys_addr = frag->gpa;
11710 run->mmio.len = min(8u, frag->len);
11711 run->mmio.is_write = vcpu->mmio_is_write;
11712 if (run->mmio.is_write)
11713 memcpy(run->mmio.data, frag->data, min(8u, frag->len));
11714 run->exit_reason = KVM_EXIT_MMIO;
11715
11716 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
11717
11718 return 0;
11719}
11720
11721int kvm_sev_es_mmio_write(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
11722 void *data)
11723{
11724 int handled;
11725 struct kvm_mmio_fragment *frag;
11726
11727 if (!data)
11728 return -EINVAL;
11729
11730 handled = write_emultor.read_write_mmio(vcpu, gpa, bytes, data);
11731 if (handled == bytes)
11732 return 1;
11733
11734 bytes -= handled;
11735 gpa += handled;
11736 data += handled;
11737
11738 /*TODO: Check if need to increment number of frags */
11739 frag = vcpu->mmio_fragments;
11740 vcpu->mmio_nr_fragments = 1;
11741 frag->len = bytes;
11742 frag->gpa = gpa;
11743 frag->data = data;
11744
11745 vcpu->mmio_needed = 1;
11746 vcpu->mmio_cur_fragment = 0;
11747
11748 vcpu->run->mmio.phys_addr = gpa;
11749 vcpu->run->mmio.len = min(8u, frag->len);
11750 vcpu->run->mmio.is_write = 1;
11751 memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len));
11752 vcpu->run->exit_reason = KVM_EXIT_MMIO;
11753
11754 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
11755
11756 return 0;
11757}
11758EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_write);
11759
11760int kvm_sev_es_mmio_read(struct kvm_vcpu *vcpu, gpa_t gpa, unsigned int bytes,
11761 void *data)
11762{
11763 int handled;
11764 struct kvm_mmio_fragment *frag;
11765
11766 if (!data)
11767 return -EINVAL;
11768
11769 handled = read_emultor.read_write_mmio(vcpu, gpa, bytes, data);
11770 if (handled == bytes)
11771 return 1;
11772
11773 bytes -= handled;
11774 gpa += handled;
11775 data += handled;
11776
11777 /*TODO: Check if need to increment number of frags */
11778 frag = vcpu->mmio_fragments;
11779 vcpu->mmio_nr_fragments = 1;
11780 frag->len = bytes;
11781 frag->gpa = gpa;
11782 frag->data = data;
11783
11784 vcpu->mmio_needed = 1;
11785 vcpu->mmio_cur_fragment = 0;
11786
11787 vcpu->run->mmio.phys_addr = gpa;
11788 vcpu->run->mmio.len = min(8u, frag->len);
11789 vcpu->run->mmio.is_write = 0;
11790 vcpu->run->exit_reason = KVM_EXIT_MMIO;
11791
11792 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_mmio;
11793
11794 return 0;
11795}
11796EXPORT_SYMBOL_GPL(kvm_sev_es_mmio_read);
11797
7ed9abfe
TL
11798static int complete_sev_es_emulated_ins(struct kvm_vcpu *vcpu)
11799{
11800 memcpy(vcpu->arch.guest_ins_data, vcpu->arch.pio_data,
11801 vcpu->arch.pio.count * vcpu->arch.pio.size);
11802 vcpu->arch.pio.count = 0;
11803
11804 return 1;
11805}
11806
11807static int kvm_sev_es_outs(struct kvm_vcpu *vcpu, unsigned int size,
11808 unsigned int port, void *data, unsigned int count)
11809{
11810 int ret;
11811
11812 ret = emulator_pio_out_emulated(vcpu->arch.emulate_ctxt, size, port,
11813 data, count);
11814 if (ret)
11815 return ret;
11816
11817 vcpu->arch.pio.count = 0;
11818
11819 return 0;
11820}
11821
11822static int kvm_sev_es_ins(struct kvm_vcpu *vcpu, unsigned int size,
11823 unsigned int port, void *data, unsigned int count)
11824{
11825 int ret;
11826
11827 ret = emulator_pio_in_emulated(vcpu->arch.emulate_ctxt, size, port,
11828 data, count);
11829 if (ret) {
11830 vcpu->arch.pio.count = 0;
11831 } else {
11832 vcpu->arch.guest_ins_data = data;
11833 vcpu->arch.complete_userspace_io = complete_sev_es_emulated_ins;
11834 }
11835
11836 return 0;
11837}
11838
11839int kvm_sev_es_string_io(struct kvm_vcpu *vcpu, unsigned int size,
11840 unsigned int port, void *data, unsigned int count,
11841 int in)
11842{
11843 return in ? kvm_sev_es_ins(vcpu, size, port, data, count)
11844 : kvm_sev_es_outs(vcpu, size, port, data, count);
11845}
11846EXPORT_SYMBOL_GPL(kvm_sev_es_string_io);
11847
d95df951 11848EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_entry);
229456fc 11849EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit);
931c33b1 11850EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio);
229456fc
MT
11851EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq);
11852EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault);
11853EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr);
11854EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr);
0ac406de 11855EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun);
d8cabddf 11856EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit);
17897f36 11857EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject);
236649de 11858EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit);
5497b955 11859EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed);
ec1ff790 11860EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga);
532a46b9 11861EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit);
2e554e8d 11862EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts);
489223ed 11863EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset);
4f75bcc3 11864EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update);
843e4330 11865EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full);
efc64404 11866EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update);
18f40c53
SS
11867EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access);
11868EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi);
ab56f8e6 11869EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log);
24bbf74c 11870EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request);
d523ab6b
TL
11871EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_enter);
11872EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_exit);
59e38b58
TL
11873EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_enter);
11874EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_vmgexit_msr_protocol_exit);