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