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