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