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