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