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