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