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