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