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