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