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