xref: /openbmc/linux/arch/x86/kernel/kvm.c (revision a16be368)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * KVM paravirt_ops implementation
4  *
5  * Copyright (C) 2007, Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
6  * Copyright IBM Corporation, 2007
7  *   Authors: Anthony Liguori <aliguori@us.ibm.com>
8  */
9 
10 #include <linux/context_tracking.h>
11 #include <linux/init.h>
12 #include <linux/kernel.h>
13 #include <linux/kvm_para.h>
14 #include <linux/cpu.h>
15 #include <linux/mm.h>
16 #include <linux/highmem.h>
17 #include <linux/hardirq.h>
18 #include <linux/notifier.h>
19 #include <linux/reboot.h>
20 #include <linux/hash.h>
21 #include <linux/sched.h>
22 #include <linux/slab.h>
23 #include <linux/kprobes.h>
24 #include <linux/debugfs.h>
25 #include <linux/nmi.h>
26 #include <linux/swait.h>
27 #include <asm/timer.h>
28 #include <asm/cpu.h>
29 #include <asm/traps.h>
30 #include <asm/desc.h>
31 #include <asm/tlbflush.h>
32 #include <asm/apic.h>
33 #include <asm/apicdef.h>
34 #include <asm/hypervisor.h>
35 #include <asm/tlb.h>
36 #include <asm/cpuidle_haltpoll.h>
37 
38 DEFINE_STATIC_KEY_FALSE(kvm_async_pf_enabled);
39 
40 static int kvmapf = 1;
41 
42 static int __init parse_no_kvmapf(char *arg)
43 {
44         kvmapf = 0;
45         return 0;
46 }
47 
48 early_param("no-kvmapf", parse_no_kvmapf);
49 
50 static int steal_acc = 1;
51 static int __init parse_no_stealacc(char *arg)
52 {
53         steal_acc = 0;
54         return 0;
55 }
56 
57 early_param("no-steal-acc", parse_no_stealacc);
58 
59 static DEFINE_PER_CPU_DECRYPTED(struct kvm_vcpu_pv_apf_data, apf_reason) __aligned(64);
60 DEFINE_PER_CPU_DECRYPTED(struct kvm_steal_time, steal_time) __aligned(64) __visible;
61 static int has_steal_clock = 0;
62 
63 /*
64  * No need for any "IO delay" on KVM
65  */
66 static void kvm_io_delay(void)
67 {
68 }
69 
70 #define KVM_TASK_SLEEP_HASHBITS 8
71 #define KVM_TASK_SLEEP_HASHSIZE (1<<KVM_TASK_SLEEP_HASHBITS)
72 
73 struct kvm_task_sleep_node {
74 	struct hlist_node link;
75 	struct swait_queue_head wq;
76 	u32 token;
77 	int cpu;
78 };
79 
80 static struct kvm_task_sleep_head {
81 	raw_spinlock_t lock;
82 	struct hlist_head list;
83 } async_pf_sleepers[KVM_TASK_SLEEP_HASHSIZE];
84 
85 static struct kvm_task_sleep_node *_find_apf_task(struct kvm_task_sleep_head *b,
86 						  u32 token)
87 {
88 	struct hlist_node *p;
89 
90 	hlist_for_each(p, &b->list) {
91 		struct kvm_task_sleep_node *n =
92 			hlist_entry(p, typeof(*n), link);
93 		if (n->token == token)
94 			return n;
95 	}
96 
97 	return NULL;
98 }
99 
100 static bool kvm_async_pf_queue_task(u32 token, struct kvm_task_sleep_node *n)
101 {
102 	u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS);
103 	struct kvm_task_sleep_head *b = &async_pf_sleepers[key];
104 	struct kvm_task_sleep_node *e;
105 
106 	raw_spin_lock(&b->lock);
107 	e = _find_apf_task(b, token);
108 	if (e) {
109 		/* dummy entry exist -> wake up was delivered ahead of PF */
110 		hlist_del(&e->link);
111 		raw_spin_unlock(&b->lock);
112 		kfree(e);
113 		return false;
114 	}
115 
116 	n->token = token;
117 	n->cpu = smp_processor_id();
118 	init_swait_queue_head(&n->wq);
119 	hlist_add_head(&n->link, &b->list);
120 	raw_spin_unlock(&b->lock);
121 	return true;
122 }
123 
124 /*
125  * kvm_async_pf_task_wait_schedule - Wait for pagefault to be handled
126  * @token:	Token to identify the sleep node entry
127  *
128  * Invoked from the async pagefault handling code or from the VM exit page
129  * fault handler. In both cases RCU is watching.
130  */
131 void kvm_async_pf_task_wait_schedule(u32 token)
132 {
133 	struct kvm_task_sleep_node n;
134 	DECLARE_SWAITQUEUE(wait);
135 
136 	lockdep_assert_irqs_disabled();
137 
138 	if (!kvm_async_pf_queue_task(token, &n))
139 		return;
140 
141 	for (;;) {
142 		prepare_to_swait_exclusive(&n.wq, &wait, TASK_UNINTERRUPTIBLE);
143 		if (hlist_unhashed(&n.link))
144 			break;
145 
146 		local_irq_enable();
147 		schedule();
148 		local_irq_disable();
149 	}
150 	finish_swait(&n.wq, &wait);
151 }
152 EXPORT_SYMBOL_GPL(kvm_async_pf_task_wait_schedule);
153 
154 static void apf_task_wake_one(struct kvm_task_sleep_node *n)
155 {
156 	hlist_del_init(&n->link);
157 	if (swq_has_sleeper(&n->wq))
158 		swake_up_one(&n->wq);
159 }
160 
161 static void apf_task_wake_all(void)
162 {
163 	int i;
164 
165 	for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++) {
166 		struct kvm_task_sleep_head *b = &async_pf_sleepers[i];
167 		struct kvm_task_sleep_node *n;
168 		struct hlist_node *p, *next;
169 
170 		raw_spin_lock(&b->lock);
171 		hlist_for_each_safe(p, next, &b->list) {
172 			n = hlist_entry(p, typeof(*n), link);
173 			if (n->cpu == smp_processor_id())
174 				apf_task_wake_one(n);
175 		}
176 		raw_spin_unlock(&b->lock);
177 	}
178 }
179 
180 void kvm_async_pf_task_wake(u32 token)
181 {
182 	u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS);
183 	struct kvm_task_sleep_head *b = &async_pf_sleepers[key];
184 	struct kvm_task_sleep_node *n;
185 
186 	if (token == ~0) {
187 		apf_task_wake_all();
188 		return;
189 	}
190 
191 again:
192 	raw_spin_lock(&b->lock);
193 	n = _find_apf_task(b, token);
194 	if (!n) {
195 		/*
196 		 * async PF was not yet handled.
197 		 * Add dummy entry for the token.
198 		 */
199 		n = kzalloc(sizeof(*n), GFP_ATOMIC);
200 		if (!n) {
201 			/*
202 			 * Allocation failed! Busy wait while other cpu
203 			 * handles async PF.
204 			 */
205 			raw_spin_unlock(&b->lock);
206 			cpu_relax();
207 			goto again;
208 		}
209 		n->token = token;
210 		n->cpu = smp_processor_id();
211 		init_swait_queue_head(&n->wq);
212 		hlist_add_head(&n->link, &b->list);
213 	} else {
214 		apf_task_wake_one(n);
215 	}
216 	raw_spin_unlock(&b->lock);
217 	return;
218 }
219 EXPORT_SYMBOL_GPL(kvm_async_pf_task_wake);
220 
221 noinstr u32 kvm_read_and_reset_apf_flags(void)
222 {
223 	u32 flags = 0;
224 
225 	if (__this_cpu_read(apf_reason.enabled)) {
226 		flags = __this_cpu_read(apf_reason.flags);
227 		__this_cpu_write(apf_reason.flags, 0);
228 	}
229 
230 	return flags;
231 }
232 EXPORT_SYMBOL_GPL(kvm_read_and_reset_apf_flags);
233 
234 noinstr bool __kvm_handle_async_pf(struct pt_regs *regs, u32 token)
235 {
236 	u32 reason = kvm_read_and_reset_apf_flags();
237 	bool rcu_exit;
238 
239 	switch (reason) {
240 	case KVM_PV_REASON_PAGE_NOT_PRESENT:
241 	case KVM_PV_REASON_PAGE_READY:
242 		break;
243 	default:
244 		return false;
245 	}
246 
247 	rcu_exit = idtentry_enter_cond_rcu(regs);
248 	instrumentation_begin();
249 
250 	/*
251 	 * If the host managed to inject an async #PF into an interrupt
252 	 * disabled region, then die hard as this is not going to end well
253 	 * and the host side is seriously broken.
254 	 */
255 	if (unlikely(!(regs->flags & X86_EFLAGS_IF)))
256 		panic("Host injected async #PF in interrupt disabled region\n");
257 
258 	if (reason == KVM_PV_REASON_PAGE_NOT_PRESENT) {
259 		if (unlikely(!(user_mode(regs))))
260 			panic("Host injected async #PF in kernel mode\n");
261 		/* Page is swapped out by the host. */
262 		kvm_async_pf_task_wait_schedule(token);
263 	} else {
264 		kvm_async_pf_task_wake(token);
265 	}
266 
267 	instrumentation_end();
268 	idtentry_exit_cond_rcu(regs, rcu_exit);
269 	return true;
270 }
271 
272 static void __init paravirt_ops_setup(void)
273 {
274 	pv_info.name = "KVM";
275 
276 	if (kvm_para_has_feature(KVM_FEATURE_NOP_IO_DELAY))
277 		pv_ops.cpu.io_delay = kvm_io_delay;
278 
279 #ifdef CONFIG_X86_IO_APIC
280 	no_timer_check = 1;
281 #endif
282 }
283 
284 static void kvm_register_steal_time(void)
285 {
286 	int cpu = smp_processor_id();
287 	struct kvm_steal_time *st = &per_cpu(steal_time, cpu);
288 
289 	if (!has_steal_clock)
290 		return;
291 
292 	wrmsrl(MSR_KVM_STEAL_TIME, (slow_virt_to_phys(st) | KVM_MSR_ENABLED));
293 	pr_info("kvm-stealtime: cpu %d, msr %llx\n",
294 		cpu, (unsigned long long) slow_virt_to_phys(st));
295 }
296 
297 static DEFINE_PER_CPU_DECRYPTED(unsigned long, kvm_apic_eoi) = KVM_PV_EOI_DISABLED;
298 
299 static notrace void kvm_guest_apic_eoi_write(u32 reg, u32 val)
300 {
301 	/**
302 	 * This relies on __test_and_clear_bit to modify the memory
303 	 * in a way that is atomic with respect to the local CPU.
304 	 * The hypervisor only accesses this memory from the local CPU so
305 	 * there's no need for lock or memory barriers.
306 	 * An optimization barrier is implied in apic write.
307 	 */
308 	if (__test_and_clear_bit(KVM_PV_EOI_BIT, this_cpu_ptr(&kvm_apic_eoi)))
309 		return;
310 	apic->native_eoi_write(APIC_EOI, APIC_EOI_ACK);
311 }
312 
313 static void kvm_guest_cpu_init(void)
314 {
315 	if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF) && kvmapf) {
316 		u64 pa;
317 
318 		WARN_ON_ONCE(!static_branch_likely(&kvm_async_pf_enabled));
319 
320 		pa = slow_virt_to_phys(this_cpu_ptr(&apf_reason));
321 		pa |= KVM_ASYNC_PF_ENABLED;
322 
323 		if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF_VMEXIT))
324 			pa |= KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
325 
326 		wrmsrl(MSR_KVM_ASYNC_PF_EN, pa);
327 		__this_cpu_write(apf_reason.enabled, 1);
328 		pr_info("KVM setup async PF for cpu %d\n", smp_processor_id());
329 	}
330 
331 	if (kvm_para_has_feature(KVM_FEATURE_PV_EOI)) {
332 		unsigned long pa;
333 
334 		/* Size alignment is implied but just to make it explicit. */
335 		BUILD_BUG_ON(__alignof__(kvm_apic_eoi) < 4);
336 		__this_cpu_write(kvm_apic_eoi, 0);
337 		pa = slow_virt_to_phys(this_cpu_ptr(&kvm_apic_eoi))
338 			| KVM_MSR_ENABLED;
339 		wrmsrl(MSR_KVM_PV_EOI_EN, pa);
340 	}
341 
342 	if (has_steal_clock)
343 		kvm_register_steal_time();
344 }
345 
346 static void kvm_pv_disable_apf(void)
347 {
348 	if (!__this_cpu_read(apf_reason.enabled))
349 		return;
350 
351 	wrmsrl(MSR_KVM_ASYNC_PF_EN, 0);
352 	__this_cpu_write(apf_reason.enabled, 0);
353 
354 	pr_info("Unregister pv shared memory for cpu %d\n", smp_processor_id());
355 }
356 
357 static void kvm_pv_guest_cpu_reboot(void *unused)
358 {
359 	/*
360 	 * We disable PV EOI before we load a new kernel by kexec,
361 	 * since MSR_KVM_PV_EOI_EN stores a pointer into old kernel's memory.
362 	 * New kernel can re-enable when it boots.
363 	 */
364 	if (kvm_para_has_feature(KVM_FEATURE_PV_EOI))
365 		wrmsrl(MSR_KVM_PV_EOI_EN, 0);
366 	kvm_pv_disable_apf();
367 	kvm_disable_steal_time();
368 }
369 
370 static int kvm_pv_reboot_notify(struct notifier_block *nb,
371 				unsigned long code, void *unused)
372 {
373 	if (code == SYS_RESTART)
374 		on_each_cpu(kvm_pv_guest_cpu_reboot, NULL, 1);
375 	return NOTIFY_DONE;
376 }
377 
378 static struct notifier_block kvm_pv_reboot_nb = {
379 	.notifier_call = kvm_pv_reboot_notify,
380 };
381 
382 static u64 kvm_steal_clock(int cpu)
383 {
384 	u64 steal;
385 	struct kvm_steal_time *src;
386 	int version;
387 
388 	src = &per_cpu(steal_time, cpu);
389 	do {
390 		version = src->version;
391 		virt_rmb();
392 		steal = src->steal;
393 		virt_rmb();
394 	} while ((version & 1) || (version != src->version));
395 
396 	return steal;
397 }
398 
399 void kvm_disable_steal_time(void)
400 {
401 	if (!has_steal_clock)
402 		return;
403 
404 	wrmsr(MSR_KVM_STEAL_TIME, 0, 0);
405 }
406 
407 static inline void __set_percpu_decrypted(void *ptr, unsigned long size)
408 {
409 	early_set_memory_decrypted((unsigned long) ptr, size);
410 }
411 
412 /*
413  * Iterate through all possible CPUs and map the memory region pointed
414  * by apf_reason, steal_time and kvm_apic_eoi as decrypted at once.
415  *
416  * Note: we iterate through all possible CPUs to ensure that CPUs
417  * hotplugged will have their per-cpu variable already mapped as
418  * decrypted.
419  */
420 static void __init sev_map_percpu_data(void)
421 {
422 	int cpu;
423 
424 	if (!sev_active())
425 		return;
426 
427 	for_each_possible_cpu(cpu) {
428 		__set_percpu_decrypted(&per_cpu(apf_reason, cpu), sizeof(apf_reason));
429 		__set_percpu_decrypted(&per_cpu(steal_time, cpu), sizeof(steal_time));
430 		__set_percpu_decrypted(&per_cpu(kvm_apic_eoi, cpu), sizeof(kvm_apic_eoi));
431 	}
432 }
433 
434 static bool pv_tlb_flush_supported(void)
435 {
436 	return (kvm_para_has_feature(KVM_FEATURE_PV_TLB_FLUSH) &&
437 		!kvm_para_has_hint(KVM_HINTS_REALTIME) &&
438 		kvm_para_has_feature(KVM_FEATURE_STEAL_TIME));
439 }
440 
441 static DEFINE_PER_CPU(cpumask_var_t, __pv_cpu_mask);
442 
443 #ifdef CONFIG_SMP
444 
445 static bool pv_ipi_supported(void)
446 {
447 	return kvm_para_has_feature(KVM_FEATURE_PV_SEND_IPI);
448 }
449 
450 static bool pv_sched_yield_supported(void)
451 {
452 	return (kvm_para_has_feature(KVM_FEATURE_PV_SCHED_YIELD) &&
453 		!kvm_para_has_hint(KVM_HINTS_REALTIME) &&
454 	    kvm_para_has_feature(KVM_FEATURE_STEAL_TIME));
455 }
456 
457 #define KVM_IPI_CLUSTER_SIZE	(2 * BITS_PER_LONG)
458 
459 static void __send_ipi_mask(const struct cpumask *mask, int vector)
460 {
461 	unsigned long flags;
462 	int cpu, apic_id, icr;
463 	int min = 0, max = 0;
464 #ifdef CONFIG_X86_64
465 	__uint128_t ipi_bitmap = 0;
466 #else
467 	u64 ipi_bitmap = 0;
468 #endif
469 	long ret;
470 
471 	if (cpumask_empty(mask))
472 		return;
473 
474 	local_irq_save(flags);
475 
476 	switch (vector) {
477 	default:
478 		icr = APIC_DM_FIXED | vector;
479 		break;
480 	case NMI_VECTOR:
481 		icr = APIC_DM_NMI;
482 		break;
483 	}
484 
485 	for_each_cpu(cpu, mask) {
486 		apic_id = per_cpu(x86_cpu_to_apicid, cpu);
487 		if (!ipi_bitmap) {
488 			min = max = apic_id;
489 		} else if (apic_id < min && max - apic_id < KVM_IPI_CLUSTER_SIZE) {
490 			ipi_bitmap <<= min - apic_id;
491 			min = apic_id;
492 		} else if (apic_id < min + KVM_IPI_CLUSTER_SIZE) {
493 			max = apic_id < max ? max : apic_id;
494 		} else {
495 			ret = kvm_hypercall4(KVM_HC_SEND_IPI, (unsigned long)ipi_bitmap,
496 				(unsigned long)(ipi_bitmap >> BITS_PER_LONG), min, icr);
497 			WARN_ONCE(ret < 0, "KVM: failed to send PV IPI: %ld", ret);
498 			min = max = apic_id;
499 			ipi_bitmap = 0;
500 		}
501 		__set_bit(apic_id - min, (unsigned long *)&ipi_bitmap);
502 	}
503 
504 	if (ipi_bitmap) {
505 		ret = kvm_hypercall4(KVM_HC_SEND_IPI, (unsigned long)ipi_bitmap,
506 			(unsigned long)(ipi_bitmap >> BITS_PER_LONG), min, icr);
507 		WARN_ONCE(ret < 0, "KVM: failed to send PV IPI: %ld", ret);
508 	}
509 
510 	local_irq_restore(flags);
511 }
512 
513 static void kvm_send_ipi_mask(const struct cpumask *mask, int vector)
514 {
515 	__send_ipi_mask(mask, vector);
516 }
517 
518 static void kvm_send_ipi_mask_allbutself(const struct cpumask *mask, int vector)
519 {
520 	unsigned int this_cpu = smp_processor_id();
521 	struct cpumask *new_mask = this_cpu_cpumask_var_ptr(__pv_cpu_mask);
522 	const struct cpumask *local_mask;
523 
524 	cpumask_copy(new_mask, mask);
525 	cpumask_clear_cpu(this_cpu, new_mask);
526 	local_mask = new_mask;
527 	__send_ipi_mask(local_mask, vector);
528 }
529 
530 /*
531  * Set the IPI entry points
532  */
533 static void kvm_setup_pv_ipi(void)
534 {
535 	apic->send_IPI_mask = kvm_send_ipi_mask;
536 	apic->send_IPI_mask_allbutself = kvm_send_ipi_mask_allbutself;
537 	pr_info("KVM setup pv IPIs\n");
538 }
539 
540 static void kvm_smp_send_call_func_ipi(const struct cpumask *mask)
541 {
542 	int cpu;
543 
544 	native_send_call_func_ipi(mask);
545 
546 	/* Make sure other vCPUs get a chance to run if they need to. */
547 	for_each_cpu(cpu, mask) {
548 		if (vcpu_is_preempted(cpu)) {
549 			kvm_hypercall1(KVM_HC_SCHED_YIELD, per_cpu(x86_cpu_to_apicid, cpu));
550 			break;
551 		}
552 	}
553 }
554 
555 static void __init kvm_smp_prepare_cpus(unsigned int max_cpus)
556 {
557 	native_smp_prepare_cpus(max_cpus);
558 	if (kvm_para_has_hint(KVM_HINTS_REALTIME))
559 		static_branch_disable(&virt_spin_lock_key);
560 }
561 
562 static void __init kvm_smp_prepare_boot_cpu(void)
563 {
564 	/*
565 	 * Map the per-cpu variables as decrypted before kvm_guest_cpu_init()
566 	 * shares the guest physical address with the hypervisor.
567 	 */
568 	sev_map_percpu_data();
569 
570 	kvm_guest_cpu_init();
571 	native_smp_prepare_boot_cpu();
572 	kvm_spinlock_init();
573 }
574 
575 static void kvm_guest_cpu_offline(void)
576 {
577 	kvm_disable_steal_time();
578 	if (kvm_para_has_feature(KVM_FEATURE_PV_EOI))
579 		wrmsrl(MSR_KVM_PV_EOI_EN, 0);
580 	kvm_pv_disable_apf();
581 	apf_task_wake_all();
582 }
583 
584 static int kvm_cpu_online(unsigned int cpu)
585 {
586 	local_irq_disable();
587 	kvm_guest_cpu_init();
588 	local_irq_enable();
589 	return 0;
590 }
591 
592 static int kvm_cpu_down_prepare(unsigned int cpu)
593 {
594 	local_irq_disable();
595 	kvm_guest_cpu_offline();
596 	local_irq_enable();
597 	return 0;
598 }
599 #endif
600 
601 static void kvm_flush_tlb_others(const struct cpumask *cpumask,
602 			const struct flush_tlb_info *info)
603 {
604 	u8 state;
605 	int cpu;
606 	struct kvm_steal_time *src;
607 	struct cpumask *flushmask = this_cpu_cpumask_var_ptr(__pv_cpu_mask);
608 
609 	cpumask_copy(flushmask, cpumask);
610 	/*
611 	 * We have to call flush only on online vCPUs. And
612 	 * queue flush_on_enter for pre-empted vCPUs
613 	 */
614 	for_each_cpu(cpu, flushmask) {
615 		src = &per_cpu(steal_time, cpu);
616 		state = READ_ONCE(src->preempted);
617 		if ((state & KVM_VCPU_PREEMPTED)) {
618 			if (try_cmpxchg(&src->preempted, &state,
619 					state | KVM_VCPU_FLUSH_TLB))
620 				__cpumask_clear_cpu(cpu, flushmask);
621 		}
622 	}
623 
624 	native_flush_tlb_others(flushmask, info);
625 }
626 
627 static void __init kvm_guest_init(void)
628 {
629 	int i;
630 
631 	paravirt_ops_setup();
632 	register_reboot_notifier(&kvm_pv_reboot_nb);
633 	for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++)
634 		raw_spin_lock_init(&async_pf_sleepers[i].lock);
635 
636 	if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) {
637 		has_steal_clock = 1;
638 		pv_ops.time.steal_clock = kvm_steal_clock;
639 	}
640 
641 	if (pv_tlb_flush_supported()) {
642 		pv_ops.mmu.flush_tlb_others = kvm_flush_tlb_others;
643 		pv_ops.mmu.tlb_remove_table = tlb_remove_table;
644 		pr_info("KVM setup pv remote TLB flush\n");
645 	}
646 
647 	if (kvm_para_has_feature(KVM_FEATURE_PV_EOI))
648 		apic_set_eoi_write(kvm_guest_apic_eoi_write);
649 
650 	if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF) && kvmapf)
651 		static_branch_enable(&kvm_async_pf_enabled);
652 
653 #ifdef CONFIG_SMP
654 	smp_ops.smp_prepare_cpus = kvm_smp_prepare_cpus;
655 	smp_ops.smp_prepare_boot_cpu = kvm_smp_prepare_boot_cpu;
656 	if (pv_sched_yield_supported()) {
657 		smp_ops.send_call_func_ipi = kvm_smp_send_call_func_ipi;
658 		pr_info("KVM setup pv sched yield\n");
659 	}
660 	if (cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, "x86/kvm:online",
661 				      kvm_cpu_online, kvm_cpu_down_prepare) < 0)
662 		pr_err("kvm_guest: Failed to install cpu hotplug callbacks\n");
663 #else
664 	sev_map_percpu_data();
665 	kvm_guest_cpu_init();
666 #endif
667 
668 	/*
669 	 * Hard lockup detection is enabled by default. Disable it, as guests
670 	 * can get false positives too easily, for example if the host is
671 	 * overcommitted.
672 	 */
673 	hardlockup_detector_disable();
674 }
675 
676 static noinline uint32_t __kvm_cpuid_base(void)
677 {
678 	if (boot_cpu_data.cpuid_level < 0)
679 		return 0;	/* So we don't blow up on old processors */
680 
681 	if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
682 		return hypervisor_cpuid_base("KVMKVMKVM\0\0\0", 0);
683 
684 	return 0;
685 }
686 
687 static inline uint32_t kvm_cpuid_base(void)
688 {
689 	static int kvm_cpuid_base = -1;
690 
691 	if (kvm_cpuid_base == -1)
692 		kvm_cpuid_base = __kvm_cpuid_base();
693 
694 	return kvm_cpuid_base;
695 }
696 
697 bool kvm_para_available(void)
698 {
699 	return kvm_cpuid_base() != 0;
700 }
701 EXPORT_SYMBOL_GPL(kvm_para_available);
702 
703 unsigned int kvm_arch_para_features(void)
704 {
705 	return cpuid_eax(kvm_cpuid_base() | KVM_CPUID_FEATURES);
706 }
707 
708 unsigned int kvm_arch_para_hints(void)
709 {
710 	return cpuid_edx(kvm_cpuid_base() | KVM_CPUID_FEATURES);
711 }
712 EXPORT_SYMBOL_GPL(kvm_arch_para_hints);
713 
714 static uint32_t __init kvm_detect(void)
715 {
716 	return kvm_cpuid_base();
717 }
718 
719 static void __init kvm_apic_init(void)
720 {
721 #if defined(CONFIG_SMP)
722 	if (pv_ipi_supported())
723 		kvm_setup_pv_ipi();
724 #endif
725 }
726 
727 static void __init kvm_init_platform(void)
728 {
729 	kvmclock_init();
730 	x86_platform.apic_post_init = kvm_apic_init;
731 }
732 
733 const __initconst struct hypervisor_x86 x86_hyper_kvm = {
734 	.name			= "KVM",
735 	.detect			= kvm_detect,
736 	.type			= X86_HYPER_KVM,
737 	.init.guest_late_init	= kvm_guest_init,
738 	.init.x2apic_available	= kvm_para_available,
739 	.init.init_platform	= kvm_init_platform,
740 };
741 
742 static __init int activate_jump_labels(void)
743 {
744 	if (has_steal_clock) {
745 		static_key_slow_inc(&paravirt_steal_enabled);
746 		if (steal_acc)
747 			static_key_slow_inc(&paravirt_steal_rq_enabled);
748 	}
749 
750 	return 0;
751 }
752 arch_initcall(activate_jump_labels);
753 
754 static __init int kvm_alloc_cpumask(void)
755 {
756 	int cpu;
757 	bool alloc = false;
758 
759 	if (!kvm_para_available() || nopv)
760 		return 0;
761 
762 	if (pv_tlb_flush_supported())
763 		alloc = true;
764 
765 #if defined(CONFIG_SMP)
766 	if (pv_ipi_supported())
767 		alloc = true;
768 #endif
769 
770 	if (alloc)
771 		for_each_possible_cpu(cpu) {
772 			zalloc_cpumask_var_node(per_cpu_ptr(&__pv_cpu_mask, cpu),
773 				GFP_KERNEL, cpu_to_node(cpu));
774 		}
775 
776 	return 0;
777 }
778 arch_initcall(kvm_alloc_cpumask);
779 
780 #ifdef CONFIG_PARAVIRT_SPINLOCKS
781 
782 /* Kick a cpu by its apicid. Used to wake up a halted vcpu */
783 static void kvm_kick_cpu(int cpu)
784 {
785 	int apicid;
786 	unsigned long flags = 0;
787 
788 	apicid = per_cpu(x86_cpu_to_apicid, cpu);
789 	kvm_hypercall2(KVM_HC_KICK_CPU, flags, apicid);
790 }
791 
792 #include <asm/qspinlock.h>
793 
794 static void kvm_wait(u8 *ptr, u8 val)
795 {
796 	unsigned long flags;
797 
798 	if (in_nmi())
799 		return;
800 
801 	local_irq_save(flags);
802 
803 	if (READ_ONCE(*ptr) != val)
804 		goto out;
805 
806 	/*
807 	 * halt until it's our turn and kicked. Note that we do safe halt
808 	 * for irq enabled case to avoid hang when lock info is overwritten
809 	 * in irq spinlock slowpath and no spurious interrupt occur to save us.
810 	 */
811 	if (arch_irqs_disabled_flags(flags))
812 		halt();
813 	else
814 		safe_halt();
815 
816 out:
817 	local_irq_restore(flags);
818 }
819 
820 #ifdef CONFIG_X86_32
821 __visible bool __kvm_vcpu_is_preempted(long cpu)
822 {
823 	struct kvm_steal_time *src = &per_cpu(steal_time, cpu);
824 
825 	return !!(src->preempted & KVM_VCPU_PREEMPTED);
826 }
827 PV_CALLEE_SAVE_REGS_THUNK(__kvm_vcpu_is_preempted);
828 
829 #else
830 
831 #include <asm/asm-offsets.h>
832 
833 extern bool __raw_callee_save___kvm_vcpu_is_preempted(long);
834 
835 /*
836  * Hand-optimize version for x86-64 to avoid 8 64-bit register saving and
837  * restoring to/from the stack.
838  */
839 asm(
840 ".pushsection .text;"
841 ".global __raw_callee_save___kvm_vcpu_is_preempted;"
842 ".type __raw_callee_save___kvm_vcpu_is_preempted, @function;"
843 "__raw_callee_save___kvm_vcpu_is_preempted:"
844 "movq	__per_cpu_offset(,%rdi,8), %rax;"
845 "cmpb	$0, " __stringify(KVM_STEAL_TIME_preempted) "+steal_time(%rax);"
846 "setne	%al;"
847 "ret;"
848 ".size __raw_callee_save___kvm_vcpu_is_preempted, .-__raw_callee_save___kvm_vcpu_is_preempted;"
849 ".popsection");
850 
851 #endif
852 
853 /*
854  * Setup pv_lock_ops to exploit KVM_FEATURE_PV_UNHALT if present.
855  */
856 void __init kvm_spinlock_init(void)
857 {
858 	/* Does host kernel support KVM_FEATURE_PV_UNHALT? */
859 	if (!kvm_para_has_feature(KVM_FEATURE_PV_UNHALT))
860 		return;
861 
862 	if (kvm_para_has_hint(KVM_HINTS_REALTIME))
863 		return;
864 
865 	/* Don't use the pvqspinlock code if there is only 1 vCPU. */
866 	if (num_possible_cpus() == 1)
867 		return;
868 
869 	__pv_init_lock_hash();
870 	pv_ops.lock.queued_spin_lock_slowpath = __pv_queued_spin_lock_slowpath;
871 	pv_ops.lock.queued_spin_unlock =
872 		PV_CALLEE_SAVE(__pv_queued_spin_unlock);
873 	pv_ops.lock.wait = kvm_wait;
874 	pv_ops.lock.kick = kvm_kick_cpu;
875 
876 	if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) {
877 		pv_ops.lock.vcpu_is_preempted =
878 			PV_CALLEE_SAVE(__kvm_vcpu_is_preempted);
879 	}
880 }
881 
882 #endif	/* CONFIG_PARAVIRT_SPINLOCKS */
883 
884 #ifdef CONFIG_ARCH_CPUIDLE_HALTPOLL
885 
886 static void kvm_disable_host_haltpoll(void *i)
887 {
888 	wrmsrl(MSR_KVM_POLL_CONTROL, 0);
889 }
890 
891 static void kvm_enable_host_haltpoll(void *i)
892 {
893 	wrmsrl(MSR_KVM_POLL_CONTROL, 1);
894 }
895 
896 void arch_haltpoll_enable(unsigned int cpu)
897 {
898 	if (!kvm_para_has_feature(KVM_FEATURE_POLL_CONTROL)) {
899 		pr_err_once("kvm: host does not support poll control\n");
900 		pr_err_once("kvm: host upgrade recommended\n");
901 		return;
902 	}
903 
904 	/* Enable guest halt poll disables host halt poll */
905 	smp_call_function_single(cpu, kvm_disable_host_haltpoll, NULL, 1);
906 }
907 EXPORT_SYMBOL_GPL(arch_haltpoll_enable);
908 
909 void arch_haltpoll_disable(unsigned int cpu)
910 {
911 	if (!kvm_para_has_feature(KVM_FEATURE_POLL_CONTROL))
912 		return;
913 
914 	/* Enable guest halt poll disables host halt poll */
915 	smp_call_function_single(cpu, kvm_enable_host_haltpoll, NULL, 1);
916 }
917 EXPORT_SYMBOL_GPL(arch_haltpoll_disable);
918 #endif
919