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