xref: /linux/arch/x86/kvm/hyperv.c (revision 8262fe85b4edc5fb3dd7b9520bf5c6b4f027fa55)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * KVM Microsoft Hyper-V emulation
4  *
5  * derived from arch/x86/kvm/x86.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  * Copyright (C) 2015 Andrey Smetanin <asmetanin@virtuozzo.com>
12  *
13  * Authors:
14  *   Avi Kivity   <avi@qumranet.com>
15  *   Yaniv Kamay  <yaniv@qumranet.com>
16  *   Amit Shah    <amit.shah@qumranet.com>
17  *   Ben-Ami Yassour <benami@il.ibm.com>
18  *   Andrey Smetanin <asmetanin@virtuozzo.com>
19  */
20 
21 #include "x86.h"
22 #include "lapic.h"
23 #include "ioapic.h"
24 #include "hyperv.h"
25 
26 #include <linux/cpu.h>
27 #include <linux/kvm_host.h>
28 #include <linux/highmem.h>
29 #include <linux/sched/cputime.h>
30 #include <linux/eventfd.h>
31 
32 #include <asm/apicdef.h>
33 #include <trace/events/kvm.h>
34 
35 #include "trace.h"
36 #include "irq.h"
37 
38 #define KVM_HV_MAX_SPARSE_VCPU_SET_BITS DIV_ROUND_UP(KVM_MAX_VCPUS, 64)
39 
40 static void stimer_mark_pending(struct kvm_vcpu_hv_stimer *stimer,
41 				bool vcpu_kick);
42 
43 static inline u64 synic_read_sint(struct kvm_vcpu_hv_synic *synic, int sint)
44 {
45 	return atomic64_read(&synic->sint[sint]);
46 }
47 
48 static inline int synic_get_sint_vector(u64 sint_value)
49 {
50 	if (sint_value & HV_SYNIC_SINT_MASKED)
51 		return -1;
52 	return sint_value & HV_SYNIC_SINT_VECTOR_MASK;
53 }
54 
55 static bool synic_has_vector_connected(struct kvm_vcpu_hv_synic *synic,
56 				      int vector)
57 {
58 	int i;
59 
60 	for (i = 0; i < ARRAY_SIZE(synic->sint); i++) {
61 		if (synic_get_sint_vector(synic_read_sint(synic, i)) == vector)
62 			return true;
63 	}
64 	return false;
65 }
66 
67 static bool synic_has_vector_auto_eoi(struct kvm_vcpu_hv_synic *synic,
68 				     int vector)
69 {
70 	int i;
71 	u64 sint_value;
72 
73 	for (i = 0; i < ARRAY_SIZE(synic->sint); i++) {
74 		sint_value = synic_read_sint(synic, i);
75 		if (synic_get_sint_vector(sint_value) == vector &&
76 		    sint_value & HV_SYNIC_SINT_AUTO_EOI)
77 			return true;
78 	}
79 	return false;
80 }
81 
82 static void synic_update_vector(struct kvm_vcpu_hv_synic *synic,
83 				int vector)
84 {
85 	if (vector < HV_SYNIC_FIRST_VALID_VECTOR)
86 		return;
87 
88 	if (synic_has_vector_connected(synic, vector))
89 		__set_bit(vector, synic->vec_bitmap);
90 	else
91 		__clear_bit(vector, synic->vec_bitmap);
92 
93 	if (synic_has_vector_auto_eoi(synic, vector))
94 		__set_bit(vector, synic->auto_eoi_bitmap);
95 	else
96 		__clear_bit(vector, synic->auto_eoi_bitmap);
97 }
98 
99 static int synic_set_sint(struct kvm_vcpu_hv_synic *synic, int sint,
100 			  u64 data, bool host)
101 {
102 	int vector, old_vector;
103 	bool masked;
104 
105 	vector = data & HV_SYNIC_SINT_VECTOR_MASK;
106 	masked = data & HV_SYNIC_SINT_MASKED;
107 
108 	/*
109 	 * Valid vectors are 16-255, however, nested Hyper-V attempts to write
110 	 * default '0x10000' value on boot and this should not #GP. We need to
111 	 * allow zero-initing the register from host as well.
112 	 */
113 	if (vector < HV_SYNIC_FIRST_VALID_VECTOR && !host && !masked)
114 		return 1;
115 	/*
116 	 * Guest may configure multiple SINTs to use the same vector, so
117 	 * we maintain a bitmap of vectors handled by synic, and a
118 	 * bitmap of vectors with auto-eoi behavior.  The bitmaps are
119 	 * updated here, and atomically queried on fast paths.
120 	 */
121 	old_vector = synic_read_sint(synic, sint) & HV_SYNIC_SINT_VECTOR_MASK;
122 
123 	atomic64_set(&synic->sint[sint], data);
124 
125 	synic_update_vector(synic, old_vector);
126 
127 	synic_update_vector(synic, vector);
128 
129 	/* Load SynIC vectors into EOI exit bitmap */
130 	kvm_make_request(KVM_REQ_SCAN_IOAPIC, synic_to_vcpu(synic));
131 	return 0;
132 }
133 
134 static struct kvm_vcpu *get_vcpu_by_vpidx(struct kvm *kvm, u32 vpidx)
135 {
136 	struct kvm_vcpu *vcpu = NULL;
137 	int i;
138 
139 	if (vpidx >= KVM_MAX_VCPUS)
140 		return NULL;
141 
142 	vcpu = kvm_get_vcpu(kvm, vpidx);
143 	if (vcpu && vcpu_to_hv_vcpu(vcpu)->vp_index == vpidx)
144 		return vcpu;
145 	kvm_for_each_vcpu(i, vcpu, kvm)
146 		if (vcpu_to_hv_vcpu(vcpu)->vp_index == vpidx)
147 			return vcpu;
148 	return NULL;
149 }
150 
151 static struct kvm_vcpu_hv_synic *synic_get(struct kvm *kvm, u32 vpidx)
152 {
153 	struct kvm_vcpu *vcpu;
154 	struct kvm_vcpu_hv_synic *synic;
155 
156 	vcpu = get_vcpu_by_vpidx(kvm, vpidx);
157 	if (!vcpu)
158 		return NULL;
159 	synic = vcpu_to_synic(vcpu);
160 	return (synic->active) ? synic : NULL;
161 }
162 
163 static void kvm_hv_notify_acked_sint(struct kvm_vcpu *vcpu, u32 sint)
164 {
165 	struct kvm *kvm = vcpu->kvm;
166 	struct kvm_vcpu_hv_synic *synic = vcpu_to_synic(vcpu);
167 	struct kvm_vcpu_hv *hv_vcpu = vcpu_to_hv_vcpu(vcpu);
168 	struct kvm_vcpu_hv_stimer *stimer;
169 	int gsi, idx;
170 
171 	trace_kvm_hv_notify_acked_sint(vcpu->vcpu_id, sint);
172 
173 	/* Try to deliver pending Hyper-V SynIC timers messages */
174 	for (idx = 0; idx < ARRAY_SIZE(hv_vcpu->stimer); idx++) {
175 		stimer = &hv_vcpu->stimer[idx];
176 		if (stimer->msg_pending && stimer->config.enable &&
177 		    !stimer->config.direct_mode &&
178 		    stimer->config.sintx == sint)
179 			stimer_mark_pending(stimer, false);
180 	}
181 
182 	idx = srcu_read_lock(&kvm->irq_srcu);
183 	gsi = atomic_read(&synic->sint_to_gsi[sint]);
184 	if (gsi != -1)
185 		kvm_notify_acked_gsi(kvm, gsi);
186 	srcu_read_unlock(&kvm->irq_srcu, idx);
187 }
188 
189 static void synic_exit(struct kvm_vcpu_hv_synic *synic, u32 msr)
190 {
191 	struct kvm_vcpu *vcpu = synic_to_vcpu(synic);
192 	struct kvm_vcpu_hv *hv_vcpu = &vcpu->arch.hyperv;
193 
194 	hv_vcpu->exit.type = KVM_EXIT_HYPERV_SYNIC;
195 	hv_vcpu->exit.u.synic.msr = msr;
196 	hv_vcpu->exit.u.synic.control = synic->control;
197 	hv_vcpu->exit.u.synic.evt_page = synic->evt_page;
198 	hv_vcpu->exit.u.synic.msg_page = synic->msg_page;
199 
200 	kvm_make_request(KVM_REQ_HV_EXIT, vcpu);
201 }
202 
203 static int synic_set_msr(struct kvm_vcpu_hv_synic *synic,
204 			 u32 msr, u64 data, bool host)
205 {
206 	struct kvm_vcpu *vcpu = synic_to_vcpu(synic);
207 	int ret;
208 
209 	if (!synic->active && !host)
210 		return 1;
211 
212 	trace_kvm_hv_synic_set_msr(vcpu->vcpu_id, msr, data, host);
213 
214 	ret = 0;
215 	switch (msr) {
216 	case HV_X64_MSR_SCONTROL:
217 		synic->control = data;
218 		if (!host)
219 			synic_exit(synic, msr);
220 		break;
221 	case HV_X64_MSR_SVERSION:
222 		if (!host) {
223 			ret = 1;
224 			break;
225 		}
226 		synic->version = data;
227 		break;
228 	case HV_X64_MSR_SIEFP:
229 		if ((data & HV_SYNIC_SIEFP_ENABLE) && !host &&
230 		    !synic->dont_zero_synic_pages)
231 			if (kvm_clear_guest(vcpu->kvm,
232 					    data & PAGE_MASK, PAGE_SIZE)) {
233 				ret = 1;
234 				break;
235 			}
236 		synic->evt_page = data;
237 		if (!host)
238 			synic_exit(synic, msr);
239 		break;
240 	case HV_X64_MSR_SIMP:
241 		if ((data & HV_SYNIC_SIMP_ENABLE) && !host &&
242 		    !synic->dont_zero_synic_pages)
243 			if (kvm_clear_guest(vcpu->kvm,
244 					    data & PAGE_MASK, PAGE_SIZE)) {
245 				ret = 1;
246 				break;
247 			}
248 		synic->msg_page = data;
249 		if (!host)
250 			synic_exit(synic, msr);
251 		break;
252 	case HV_X64_MSR_EOM: {
253 		int i;
254 
255 		for (i = 0; i < ARRAY_SIZE(synic->sint); i++)
256 			kvm_hv_notify_acked_sint(vcpu, i);
257 		break;
258 	}
259 	case HV_X64_MSR_SINT0 ... HV_X64_MSR_SINT15:
260 		ret = synic_set_sint(synic, msr - HV_X64_MSR_SINT0, data, host);
261 		break;
262 	default:
263 		ret = 1;
264 		break;
265 	}
266 	return ret;
267 }
268 
269 static int synic_get_msr(struct kvm_vcpu_hv_synic *synic, u32 msr, u64 *pdata,
270 			 bool host)
271 {
272 	int ret;
273 
274 	if (!synic->active && !host)
275 		return 1;
276 
277 	ret = 0;
278 	switch (msr) {
279 	case HV_X64_MSR_SCONTROL:
280 		*pdata = synic->control;
281 		break;
282 	case HV_X64_MSR_SVERSION:
283 		*pdata = synic->version;
284 		break;
285 	case HV_X64_MSR_SIEFP:
286 		*pdata = synic->evt_page;
287 		break;
288 	case HV_X64_MSR_SIMP:
289 		*pdata = synic->msg_page;
290 		break;
291 	case HV_X64_MSR_EOM:
292 		*pdata = 0;
293 		break;
294 	case HV_X64_MSR_SINT0 ... HV_X64_MSR_SINT15:
295 		*pdata = atomic64_read(&synic->sint[msr - HV_X64_MSR_SINT0]);
296 		break;
297 	default:
298 		ret = 1;
299 		break;
300 	}
301 	return ret;
302 }
303 
304 static int synic_set_irq(struct kvm_vcpu_hv_synic *synic, u32 sint)
305 {
306 	struct kvm_vcpu *vcpu = synic_to_vcpu(synic);
307 	struct kvm_lapic_irq irq;
308 	int ret, vector;
309 
310 	if (sint >= ARRAY_SIZE(synic->sint))
311 		return -EINVAL;
312 
313 	vector = synic_get_sint_vector(synic_read_sint(synic, sint));
314 	if (vector < 0)
315 		return -ENOENT;
316 
317 	memset(&irq, 0, sizeof(irq));
318 	irq.shorthand = APIC_DEST_SELF;
319 	irq.dest_mode = APIC_DEST_PHYSICAL;
320 	irq.delivery_mode = APIC_DM_FIXED;
321 	irq.vector = vector;
322 	irq.level = 1;
323 
324 	ret = kvm_irq_delivery_to_apic(vcpu->kvm, vcpu->arch.apic, &irq, NULL);
325 	trace_kvm_hv_synic_set_irq(vcpu->vcpu_id, sint, irq.vector, ret);
326 	return ret;
327 }
328 
329 int kvm_hv_synic_set_irq(struct kvm *kvm, u32 vpidx, u32 sint)
330 {
331 	struct kvm_vcpu_hv_synic *synic;
332 
333 	synic = synic_get(kvm, vpidx);
334 	if (!synic)
335 		return -EINVAL;
336 
337 	return synic_set_irq(synic, sint);
338 }
339 
340 void kvm_hv_synic_send_eoi(struct kvm_vcpu *vcpu, int vector)
341 {
342 	struct kvm_vcpu_hv_synic *synic = vcpu_to_synic(vcpu);
343 	int i;
344 
345 	trace_kvm_hv_synic_send_eoi(vcpu->vcpu_id, vector);
346 
347 	for (i = 0; i < ARRAY_SIZE(synic->sint); i++)
348 		if (synic_get_sint_vector(synic_read_sint(synic, i)) == vector)
349 			kvm_hv_notify_acked_sint(vcpu, i);
350 }
351 
352 static int kvm_hv_set_sint_gsi(struct kvm *kvm, u32 vpidx, u32 sint, int gsi)
353 {
354 	struct kvm_vcpu_hv_synic *synic;
355 
356 	synic = synic_get(kvm, vpidx);
357 	if (!synic)
358 		return -EINVAL;
359 
360 	if (sint >= ARRAY_SIZE(synic->sint_to_gsi))
361 		return -EINVAL;
362 
363 	atomic_set(&synic->sint_to_gsi[sint], gsi);
364 	return 0;
365 }
366 
367 void kvm_hv_irq_routing_update(struct kvm *kvm)
368 {
369 	struct kvm_irq_routing_table *irq_rt;
370 	struct kvm_kernel_irq_routing_entry *e;
371 	u32 gsi;
372 
373 	irq_rt = srcu_dereference_check(kvm->irq_routing, &kvm->irq_srcu,
374 					lockdep_is_held(&kvm->irq_lock));
375 
376 	for (gsi = 0; gsi < irq_rt->nr_rt_entries; gsi++) {
377 		hlist_for_each_entry(e, &irq_rt->map[gsi], link) {
378 			if (e->type == KVM_IRQ_ROUTING_HV_SINT)
379 				kvm_hv_set_sint_gsi(kvm, e->hv_sint.vcpu,
380 						    e->hv_sint.sint, gsi);
381 		}
382 	}
383 }
384 
385 static void synic_init(struct kvm_vcpu_hv_synic *synic)
386 {
387 	int i;
388 
389 	memset(synic, 0, sizeof(*synic));
390 	synic->version = HV_SYNIC_VERSION_1;
391 	for (i = 0; i < ARRAY_SIZE(synic->sint); i++) {
392 		atomic64_set(&synic->sint[i], HV_SYNIC_SINT_MASKED);
393 		atomic_set(&synic->sint_to_gsi[i], -1);
394 	}
395 }
396 
397 static u64 get_time_ref_counter(struct kvm *kvm)
398 {
399 	struct kvm_hv *hv = &kvm->arch.hyperv;
400 	struct kvm_vcpu *vcpu;
401 	u64 tsc;
402 
403 	/*
404 	 * The guest has not set up the TSC page or the clock isn't
405 	 * stable, fall back to get_kvmclock_ns.
406 	 */
407 	if (!hv->tsc_ref.tsc_sequence)
408 		return div_u64(get_kvmclock_ns(kvm), 100);
409 
410 	vcpu = kvm_get_vcpu(kvm, 0);
411 	tsc = kvm_read_l1_tsc(vcpu, rdtsc());
412 	return mul_u64_u64_shr(tsc, hv->tsc_ref.tsc_scale, 64)
413 		+ hv->tsc_ref.tsc_offset;
414 }
415 
416 static void stimer_mark_pending(struct kvm_vcpu_hv_stimer *stimer,
417 				bool vcpu_kick)
418 {
419 	struct kvm_vcpu *vcpu = stimer_to_vcpu(stimer);
420 
421 	set_bit(stimer->index,
422 		vcpu_to_hv_vcpu(vcpu)->stimer_pending_bitmap);
423 	kvm_make_request(KVM_REQ_HV_STIMER, vcpu);
424 	if (vcpu_kick)
425 		kvm_vcpu_kick(vcpu);
426 }
427 
428 static void stimer_cleanup(struct kvm_vcpu_hv_stimer *stimer)
429 {
430 	struct kvm_vcpu *vcpu = stimer_to_vcpu(stimer);
431 
432 	trace_kvm_hv_stimer_cleanup(stimer_to_vcpu(stimer)->vcpu_id,
433 				    stimer->index);
434 
435 	hrtimer_cancel(&stimer->timer);
436 	clear_bit(stimer->index,
437 		  vcpu_to_hv_vcpu(vcpu)->stimer_pending_bitmap);
438 	stimer->msg_pending = false;
439 	stimer->exp_time = 0;
440 }
441 
442 static enum hrtimer_restart stimer_timer_callback(struct hrtimer *timer)
443 {
444 	struct kvm_vcpu_hv_stimer *stimer;
445 
446 	stimer = container_of(timer, struct kvm_vcpu_hv_stimer, timer);
447 	trace_kvm_hv_stimer_callback(stimer_to_vcpu(stimer)->vcpu_id,
448 				     stimer->index);
449 	stimer_mark_pending(stimer, true);
450 
451 	return HRTIMER_NORESTART;
452 }
453 
454 /*
455  * stimer_start() assumptions:
456  * a) stimer->count is not equal to 0
457  * b) stimer->config has HV_STIMER_ENABLE flag
458  */
459 static int stimer_start(struct kvm_vcpu_hv_stimer *stimer)
460 {
461 	u64 time_now;
462 	ktime_t ktime_now;
463 
464 	time_now = get_time_ref_counter(stimer_to_vcpu(stimer)->kvm);
465 	ktime_now = ktime_get();
466 
467 	if (stimer->config.periodic) {
468 		if (stimer->exp_time) {
469 			if (time_now >= stimer->exp_time) {
470 				u64 remainder;
471 
472 				div64_u64_rem(time_now - stimer->exp_time,
473 					      stimer->count, &remainder);
474 				stimer->exp_time =
475 					time_now + (stimer->count - remainder);
476 			}
477 		} else
478 			stimer->exp_time = time_now + stimer->count;
479 
480 		trace_kvm_hv_stimer_start_periodic(
481 					stimer_to_vcpu(stimer)->vcpu_id,
482 					stimer->index,
483 					time_now, stimer->exp_time);
484 
485 		hrtimer_start(&stimer->timer,
486 			      ktime_add_ns(ktime_now,
487 					   100 * (stimer->exp_time - time_now)),
488 			      HRTIMER_MODE_ABS);
489 		return 0;
490 	}
491 	stimer->exp_time = stimer->count;
492 	if (time_now >= stimer->count) {
493 		/*
494 		 * Expire timer according to Hypervisor Top-Level Functional
495 		 * specification v4(15.3.1):
496 		 * "If a one shot is enabled and the specified count is in
497 		 * the past, it will expire immediately."
498 		 */
499 		stimer_mark_pending(stimer, false);
500 		return 0;
501 	}
502 
503 	trace_kvm_hv_stimer_start_one_shot(stimer_to_vcpu(stimer)->vcpu_id,
504 					   stimer->index,
505 					   time_now, stimer->count);
506 
507 	hrtimer_start(&stimer->timer,
508 		      ktime_add_ns(ktime_now, 100 * (stimer->count - time_now)),
509 		      HRTIMER_MODE_ABS);
510 	return 0;
511 }
512 
513 static int stimer_set_config(struct kvm_vcpu_hv_stimer *stimer, u64 config,
514 			     bool host)
515 {
516 	union hv_stimer_config new_config = {.as_uint64 = config},
517 		old_config = {.as_uint64 = stimer->config.as_uint64};
518 
519 	trace_kvm_hv_stimer_set_config(stimer_to_vcpu(stimer)->vcpu_id,
520 				       stimer->index, config, host);
521 
522 	stimer_cleanup(stimer);
523 	if (old_config.enable &&
524 	    !new_config.direct_mode && new_config.sintx == 0)
525 		new_config.enable = 0;
526 	stimer->config.as_uint64 = new_config.as_uint64;
527 
528 	if (stimer->config.enable)
529 		stimer_mark_pending(stimer, false);
530 
531 	return 0;
532 }
533 
534 static int stimer_set_count(struct kvm_vcpu_hv_stimer *stimer, u64 count,
535 			    bool host)
536 {
537 	trace_kvm_hv_stimer_set_count(stimer_to_vcpu(stimer)->vcpu_id,
538 				      stimer->index, count, host);
539 
540 	stimer_cleanup(stimer);
541 	stimer->count = count;
542 	if (stimer->count == 0)
543 		stimer->config.enable = 0;
544 	else if (stimer->config.auto_enable)
545 		stimer->config.enable = 1;
546 
547 	if (stimer->config.enable)
548 		stimer_mark_pending(stimer, false);
549 
550 	return 0;
551 }
552 
553 static int stimer_get_config(struct kvm_vcpu_hv_stimer *stimer, u64 *pconfig)
554 {
555 	*pconfig = stimer->config.as_uint64;
556 	return 0;
557 }
558 
559 static int stimer_get_count(struct kvm_vcpu_hv_stimer *stimer, u64 *pcount)
560 {
561 	*pcount = stimer->count;
562 	return 0;
563 }
564 
565 static int synic_deliver_msg(struct kvm_vcpu_hv_synic *synic, u32 sint,
566 			     struct hv_message *src_msg, bool no_retry)
567 {
568 	struct kvm_vcpu *vcpu = synic_to_vcpu(synic);
569 	int msg_off = offsetof(struct hv_message_page, sint_message[sint]);
570 	gfn_t msg_page_gfn;
571 	struct hv_message_header hv_hdr;
572 	int r;
573 
574 	if (!(synic->msg_page & HV_SYNIC_SIMP_ENABLE))
575 		return -ENOENT;
576 
577 	msg_page_gfn = synic->msg_page >> PAGE_SHIFT;
578 
579 	/*
580 	 * Strictly following the spec-mandated ordering would assume setting
581 	 * .msg_pending before checking .message_type.  However, this function
582 	 * is only called in vcpu context so the entire update is atomic from
583 	 * guest POV and thus the exact order here doesn't matter.
584 	 */
585 	r = kvm_vcpu_read_guest_page(vcpu, msg_page_gfn, &hv_hdr.message_type,
586 				     msg_off + offsetof(struct hv_message,
587 							header.message_type),
588 				     sizeof(hv_hdr.message_type));
589 	if (r < 0)
590 		return r;
591 
592 	if (hv_hdr.message_type != HVMSG_NONE) {
593 		if (no_retry)
594 			return 0;
595 
596 		hv_hdr.message_flags.msg_pending = 1;
597 		r = kvm_vcpu_write_guest_page(vcpu, msg_page_gfn,
598 					      &hv_hdr.message_flags,
599 					      msg_off +
600 					      offsetof(struct hv_message,
601 						       header.message_flags),
602 					      sizeof(hv_hdr.message_flags));
603 		if (r < 0)
604 			return r;
605 		return -EAGAIN;
606 	}
607 
608 	r = kvm_vcpu_write_guest_page(vcpu, msg_page_gfn, src_msg, msg_off,
609 				      sizeof(src_msg->header) +
610 				      src_msg->header.payload_size);
611 	if (r < 0)
612 		return r;
613 
614 	r = synic_set_irq(synic, sint);
615 	if (r < 0)
616 		return r;
617 	if (r == 0)
618 		return -EFAULT;
619 	return 0;
620 }
621 
622 static int stimer_send_msg(struct kvm_vcpu_hv_stimer *stimer)
623 {
624 	struct kvm_vcpu *vcpu = stimer_to_vcpu(stimer);
625 	struct hv_message *msg = &stimer->msg;
626 	struct hv_timer_message_payload *payload =
627 			(struct hv_timer_message_payload *)&msg->u.payload;
628 
629 	/*
630 	 * To avoid piling up periodic ticks, don't retry message
631 	 * delivery for them (within "lazy" lost ticks policy).
632 	 */
633 	bool no_retry = stimer->config.periodic;
634 
635 	payload->expiration_time = stimer->exp_time;
636 	payload->delivery_time = get_time_ref_counter(vcpu->kvm);
637 	return synic_deliver_msg(vcpu_to_synic(vcpu),
638 				 stimer->config.sintx, msg,
639 				 no_retry);
640 }
641 
642 static int stimer_notify_direct(struct kvm_vcpu_hv_stimer *stimer)
643 {
644 	struct kvm_vcpu *vcpu = stimer_to_vcpu(stimer);
645 	struct kvm_lapic_irq irq = {
646 		.delivery_mode = APIC_DM_FIXED,
647 		.vector = stimer->config.apic_vector
648 	};
649 
650 	if (lapic_in_kernel(vcpu))
651 		return !kvm_apic_set_irq(vcpu, &irq, NULL);
652 	return 0;
653 }
654 
655 static void stimer_expiration(struct kvm_vcpu_hv_stimer *stimer)
656 {
657 	int r, direct = stimer->config.direct_mode;
658 
659 	stimer->msg_pending = true;
660 	if (!direct)
661 		r = stimer_send_msg(stimer);
662 	else
663 		r = stimer_notify_direct(stimer);
664 	trace_kvm_hv_stimer_expiration(stimer_to_vcpu(stimer)->vcpu_id,
665 				       stimer->index, direct, r);
666 	if (!r) {
667 		stimer->msg_pending = false;
668 		if (!(stimer->config.periodic))
669 			stimer->config.enable = 0;
670 	}
671 }
672 
673 void kvm_hv_process_stimers(struct kvm_vcpu *vcpu)
674 {
675 	struct kvm_vcpu_hv *hv_vcpu = vcpu_to_hv_vcpu(vcpu);
676 	struct kvm_vcpu_hv_stimer *stimer;
677 	u64 time_now, exp_time;
678 	int i;
679 
680 	for (i = 0; i < ARRAY_SIZE(hv_vcpu->stimer); i++)
681 		if (test_and_clear_bit(i, hv_vcpu->stimer_pending_bitmap)) {
682 			stimer = &hv_vcpu->stimer[i];
683 			if (stimer->config.enable) {
684 				exp_time = stimer->exp_time;
685 
686 				if (exp_time) {
687 					time_now =
688 						get_time_ref_counter(vcpu->kvm);
689 					if (time_now >= exp_time)
690 						stimer_expiration(stimer);
691 				}
692 
693 				if ((stimer->config.enable) &&
694 				    stimer->count) {
695 					if (!stimer->msg_pending)
696 						stimer_start(stimer);
697 				} else
698 					stimer_cleanup(stimer);
699 			}
700 		}
701 }
702 
703 void kvm_hv_vcpu_uninit(struct kvm_vcpu *vcpu)
704 {
705 	struct kvm_vcpu_hv *hv_vcpu = vcpu_to_hv_vcpu(vcpu);
706 	int i;
707 
708 	for (i = 0; i < ARRAY_SIZE(hv_vcpu->stimer); i++)
709 		stimer_cleanup(&hv_vcpu->stimer[i]);
710 }
711 
712 bool kvm_hv_assist_page_enabled(struct kvm_vcpu *vcpu)
713 {
714 	if (!(vcpu->arch.hyperv.hv_vapic & HV_X64_MSR_VP_ASSIST_PAGE_ENABLE))
715 		return false;
716 	return vcpu->arch.pv_eoi.msr_val & KVM_MSR_ENABLED;
717 }
718 EXPORT_SYMBOL_GPL(kvm_hv_assist_page_enabled);
719 
720 bool kvm_hv_get_assist_page(struct kvm_vcpu *vcpu,
721 			    struct hv_vp_assist_page *assist_page)
722 {
723 	if (!kvm_hv_assist_page_enabled(vcpu))
724 		return false;
725 	return !kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.pv_eoi.data,
726 				      assist_page, sizeof(*assist_page));
727 }
728 EXPORT_SYMBOL_GPL(kvm_hv_get_assist_page);
729 
730 static void stimer_prepare_msg(struct kvm_vcpu_hv_stimer *stimer)
731 {
732 	struct hv_message *msg = &stimer->msg;
733 	struct hv_timer_message_payload *payload =
734 			(struct hv_timer_message_payload *)&msg->u.payload;
735 
736 	memset(&msg->header, 0, sizeof(msg->header));
737 	msg->header.message_type = HVMSG_TIMER_EXPIRED;
738 	msg->header.payload_size = sizeof(*payload);
739 
740 	payload->timer_index = stimer->index;
741 	payload->expiration_time = 0;
742 	payload->delivery_time = 0;
743 }
744 
745 static void stimer_init(struct kvm_vcpu_hv_stimer *stimer, int timer_index)
746 {
747 	memset(stimer, 0, sizeof(*stimer));
748 	stimer->index = timer_index;
749 	hrtimer_init(&stimer->timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
750 	stimer->timer.function = stimer_timer_callback;
751 	stimer_prepare_msg(stimer);
752 }
753 
754 void kvm_hv_vcpu_init(struct kvm_vcpu *vcpu)
755 {
756 	struct kvm_vcpu_hv *hv_vcpu = vcpu_to_hv_vcpu(vcpu);
757 	int i;
758 
759 	synic_init(&hv_vcpu->synic);
760 
761 	bitmap_zero(hv_vcpu->stimer_pending_bitmap, HV_SYNIC_STIMER_COUNT);
762 	for (i = 0; i < ARRAY_SIZE(hv_vcpu->stimer); i++)
763 		stimer_init(&hv_vcpu->stimer[i], i);
764 }
765 
766 void kvm_hv_vcpu_postcreate(struct kvm_vcpu *vcpu)
767 {
768 	struct kvm_vcpu_hv *hv_vcpu = vcpu_to_hv_vcpu(vcpu);
769 
770 	hv_vcpu->vp_index = kvm_vcpu_get_idx(vcpu);
771 }
772 
773 int kvm_hv_activate_synic(struct kvm_vcpu *vcpu, bool dont_zero_synic_pages)
774 {
775 	struct kvm_vcpu_hv_synic *synic = vcpu_to_synic(vcpu);
776 
777 	/*
778 	 * Hyper-V SynIC auto EOI SINT's are
779 	 * not compatible with APICV, so deactivate APICV
780 	 */
781 	kvm_vcpu_deactivate_apicv(vcpu);
782 	synic->active = true;
783 	synic->dont_zero_synic_pages = dont_zero_synic_pages;
784 	return 0;
785 }
786 
787 static bool kvm_hv_msr_partition_wide(u32 msr)
788 {
789 	bool r = false;
790 
791 	switch (msr) {
792 	case HV_X64_MSR_GUEST_OS_ID:
793 	case HV_X64_MSR_HYPERCALL:
794 	case HV_X64_MSR_REFERENCE_TSC:
795 	case HV_X64_MSR_TIME_REF_COUNT:
796 	case HV_X64_MSR_CRASH_CTL:
797 	case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
798 	case HV_X64_MSR_RESET:
799 	case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
800 	case HV_X64_MSR_TSC_EMULATION_CONTROL:
801 	case HV_X64_MSR_TSC_EMULATION_STATUS:
802 		r = true;
803 		break;
804 	}
805 
806 	return r;
807 }
808 
809 static int kvm_hv_msr_get_crash_data(struct kvm_vcpu *vcpu,
810 				     u32 index, u64 *pdata)
811 {
812 	struct kvm_hv *hv = &vcpu->kvm->arch.hyperv;
813 
814 	if (WARN_ON_ONCE(index >= ARRAY_SIZE(hv->hv_crash_param)))
815 		return -EINVAL;
816 
817 	*pdata = hv->hv_crash_param[index];
818 	return 0;
819 }
820 
821 static int kvm_hv_msr_get_crash_ctl(struct kvm_vcpu *vcpu, u64 *pdata)
822 {
823 	struct kvm_hv *hv = &vcpu->kvm->arch.hyperv;
824 
825 	*pdata = hv->hv_crash_ctl;
826 	return 0;
827 }
828 
829 static int kvm_hv_msr_set_crash_ctl(struct kvm_vcpu *vcpu, u64 data, bool host)
830 {
831 	struct kvm_hv *hv = &vcpu->kvm->arch.hyperv;
832 
833 	if (host)
834 		hv->hv_crash_ctl = data & HV_CRASH_CTL_CRASH_NOTIFY;
835 
836 	if (!host && (data & HV_CRASH_CTL_CRASH_NOTIFY)) {
837 
838 		vcpu_debug(vcpu, "hv crash (0x%llx 0x%llx 0x%llx 0x%llx 0x%llx)\n",
839 			  hv->hv_crash_param[0],
840 			  hv->hv_crash_param[1],
841 			  hv->hv_crash_param[2],
842 			  hv->hv_crash_param[3],
843 			  hv->hv_crash_param[4]);
844 
845 		/* Send notification about crash to user space */
846 		kvm_make_request(KVM_REQ_HV_CRASH, vcpu);
847 	}
848 
849 	return 0;
850 }
851 
852 static int kvm_hv_msr_set_crash_data(struct kvm_vcpu *vcpu,
853 				     u32 index, u64 data)
854 {
855 	struct kvm_hv *hv = &vcpu->kvm->arch.hyperv;
856 
857 	if (WARN_ON_ONCE(index >= ARRAY_SIZE(hv->hv_crash_param)))
858 		return -EINVAL;
859 
860 	hv->hv_crash_param[index] = data;
861 	return 0;
862 }
863 
864 /*
865  * The kvmclock and Hyper-V TSC page use similar formulas, and converting
866  * between them is possible:
867  *
868  * kvmclock formula:
869  *    nsec = (ticks - tsc_timestamp) * tsc_to_system_mul * 2^(tsc_shift-32)
870  *           + system_time
871  *
872  * Hyper-V formula:
873  *    nsec/100 = ticks * scale / 2^64 + offset
874  *
875  * When tsc_timestamp = system_time = 0, offset is zero in the Hyper-V formula.
876  * By dividing the kvmclock formula by 100 and equating what's left we get:
877  *    ticks * scale / 2^64 = ticks * tsc_to_system_mul * 2^(tsc_shift-32) / 100
878  *            scale / 2^64 =         tsc_to_system_mul * 2^(tsc_shift-32) / 100
879  *            scale        =         tsc_to_system_mul * 2^(32+tsc_shift) / 100
880  *
881  * Now expand the kvmclock formula and divide by 100:
882  *    nsec = ticks * tsc_to_system_mul * 2^(tsc_shift-32)
883  *           - tsc_timestamp * tsc_to_system_mul * 2^(tsc_shift-32)
884  *           + system_time
885  *    nsec/100 = ticks * tsc_to_system_mul * 2^(tsc_shift-32) / 100
886  *               - tsc_timestamp * tsc_to_system_mul * 2^(tsc_shift-32) / 100
887  *               + system_time / 100
888  *
889  * Replace tsc_to_system_mul * 2^(tsc_shift-32) / 100 by scale / 2^64:
890  *    nsec/100 = ticks * scale / 2^64
891  *               - tsc_timestamp * scale / 2^64
892  *               + system_time / 100
893  *
894  * Equate with the Hyper-V formula so that ticks * scale / 2^64 cancels out:
895  *    offset = system_time / 100 - tsc_timestamp * scale / 2^64
896  *
897  * These two equivalencies are implemented in this function.
898  */
899 static bool compute_tsc_page_parameters(struct pvclock_vcpu_time_info *hv_clock,
900 					HV_REFERENCE_TSC_PAGE *tsc_ref)
901 {
902 	u64 max_mul;
903 
904 	if (!(hv_clock->flags & PVCLOCK_TSC_STABLE_BIT))
905 		return false;
906 
907 	/*
908 	 * check if scale would overflow, if so we use the time ref counter
909 	 *    tsc_to_system_mul * 2^(tsc_shift+32) / 100 >= 2^64
910 	 *    tsc_to_system_mul / 100 >= 2^(32-tsc_shift)
911 	 *    tsc_to_system_mul >= 100 * 2^(32-tsc_shift)
912 	 */
913 	max_mul = 100ull << (32 - hv_clock->tsc_shift);
914 	if (hv_clock->tsc_to_system_mul >= max_mul)
915 		return false;
916 
917 	/*
918 	 * Otherwise compute the scale and offset according to the formulas
919 	 * derived above.
920 	 */
921 	tsc_ref->tsc_scale =
922 		mul_u64_u32_div(1ULL << (32 + hv_clock->tsc_shift),
923 				hv_clock->tsc_to_system_mul,
924 				100);
925 
926 	tsc_ref->tsc_offset = hv_clock->system_time;
927 	do_div(tsc_ref->tsc_offset, 100);
928 	tsc_ref->tsc_offset -=
929 		mul_u64_u64_shr(hv_clock->tsc_timestamp, tsc_ref->tsc_scale, 64);
930 	return true;
931 }
932 
933 void kvm_hv_setup_tsc_page(struct kvm *kvm,
934 			   struct pvclock_vcpu_time_info *hv_clock)
935 {
936 	struct kvm_hv *hv = &kvm->arch.hyperv;
937 	u32 tsc_seq;
938 	u64 gfn;
939 
940 	BUILD_BUG_ON(sizeof(tsc_seq) != sizeof(hv->tsc_ref.tsc_sequence));
941 	BUILD_BUG_ON(offsetof(HV_REFERENCE_TSC_PAGE, tsc_sequence) != 0);
942 
943 	if (!(hv->hv_tsc_page & HV_X64_MSR_TSC_REFERENCE_ENABLE))
944 		return;
945 
946 	mutex_lock(&kvm->arch.hyperv.hv_lock);
947 	if (!(hv->hv_tsc_page & HV_X64_MSR_TSC_REFERENCE_ENABLE))
948 		goto out_unlock;
949 
950 	gfn = hv->hv_tsc_page >> HV_X64_MSR_TSC_REFERENCE_ADDRESS_SHIFT;
951 	/*
952 	 * Because the TSC parameters only vary when there is a
953 	 * change in the master clock, do not bother with caching.
954 	 */
955 	if (unlikely(kvm_read_guest(kvm, gfn_to_gpa(gfn),
956 				    &tsc_seq, sizeof(tsc_seq))))
957 		goto out_unlock;
958 
959 	/*
960 	 * While we're computing and writing the parameters, force the
961 	 * guest to use the time reference count MSR.
962 	 */
963 	hv->tsc_ref.tsc_sequence = 0;
964 	if (kvm_write_guest(kvm, gfn_to_gpa(gfn),
965 			    &hv->tsc_ref, sizeof(hv->tsc_ref.tsc_sequence)))
966 		goto out_unlock;
967 
968 	if (!compute_tsc_page_parameters(hv_clock, &hv->tsc_ref))
969 		goto out_unlock;
970 
971 	/* Ensure sequence is zero before writing the rest of the struct.  */
972 	smp_wmb();
973 	if (kvm_write_guest(kvm, gfn_to_gpa(gfn), &hv->tsc_ref, sizeof(hv->tsc_ref)))
974 		goto out_unlock;
975 
976 	/*
977 	 * Now switch to the TSC page mechanism by writing the sequence.
978 	 */
979 	tsc_seq++;
980 	if (tsc_seq == 0xFFFFFFFF || tsc_seq == 0)
981 		tsc_seq = 1;
982 
983 	/* Write the struct entirely before the non-zero sequence.  */
984 	smp_wmb();
985 
986 	hv->tsc_ref.tsc_sequence = tsc_seq;
987 	kvm_write_guest(kvm, gfn_to_gpa(gfn),
988 			&hv->tsc_ref, sizeof(hv->tsc_ref.tsc_sequence));
989 out_unlock:
990 	mutex_unlock(&kvm->arch.hyperv.hv_lock);
991 }
992 
993 static int kvm_hv_set_msr_pw(struct kvm_vcpu *vcpu, u32 msr, u64 data,
994 			     bool host)
995 {
996 	struct kvm *kvm = vcpu->kvm;
997 	struct kvm_hv *hv = &kvm->arch.hyperv;
998 
999 	switch (msr) {
1000 	case HV_X64_MSR_GUEST_OS_ID:
1001 		hv->hv_guest_os_id = data;
1002 		/* setting guest os id to zero disables hypercall page */
1003 		if (!hv->hv_guest_os_id)
1004 			hv->hv_hypercall &= ~HV_X64_MSR_HYPERCALL_ENABLE;
1005 		break;
1006 	case HV_X64_MSR_HYPERCALL: {
1007 		u64 gfn;
1008 		unsigned long addr;
1009 		u8 instructions[4];
1010 
1011 		/* if guest os id is not set hypercall should remain disabled */
1012 		if (!hv->hv_guest_os_id)
1013 			break;
1014 		if (!(data & HV_X64_MSR_HYPERCALL_ENABLE)) {
1015 			hv->hv_hypercall = data;
1016 			break;
1017 		}
1018 		gfn = data >> HV_X64_MSR_HYPERCALL_PAGE_ADDRESS_SHIFT;
1019 		addr = gfn_to_hva(kvm, gfn);
1020 		if (kvm_is_error_hva(addr))
1021 			return 1;
1022 		kvm_x86_ops->patch_hypercall(vcpu, instructions);
1023 		((unsigned char *)instructions)[3] = 0xc3; /* ret */
1024 		if (__copy_to_user((void __user *)addr, instructions, 4))
1025 			return 1;
1026 		hv->hv_hypercall = data;
1027 		mark_page_dirty(kvm, gfn);
1028 		break;
1029 	}
1030 	case HV_X64_MSR_REFERENCE_TSC:
1031 		hv->hv_tsc_page = data;
1032 		if (hv->hv_tsc_page & HV_X64_MSR_TSC_REFERENCE_ENABLE)
1033 			kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu);
1034 		break;
1035 	case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
1036 		return kvm_hv_msr_set_crash_data(vcpu,
1037 						 msr - HV_X64_MSR_CRASH_P0,
1038 						 data);
1039 	case HV_X64_MSR_CRASH_CTL:
1040 		return kvm_hv_msr_set_crash_ctl(vcpu, data, host);
1041 	case HV_X64_MSR_RESET:
1042 		if (data == 1) {
1043 			vcpu_debug(vcpu, "hyper-v reset requested\n");
1044 			kvm_make_request(KVM_REQ_HV_RESET, vcpu);
1045 		}
1046 		break;
1047 	case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
1048 		hv->hv_reenlightenment_control = data;
1049 		break;
1050 	case HV_X64_MSR_TSC_EMULATION_CONTROL:
1051 		hv->hv_tsc_emulation_control = data;
1052 		break;
1053 	case HV_X64_MSR_TSC_EMULATION_STATUS:
1054 		hv->hv_tsc_emulation_status = data;
1055 		break;
1056 	case HV_X64_MSR_TIME_REF_COUNT:
1057 		/* read-only, but still ignore it if host-initiated */
1058 		if (!host)
1059 			return 1;
1060 		break;
1061 	default:
1062 		vcpu_unimpl(vcpu, "Hyper-V uhandled wrmsr: 0x%x data 0x%llx\n",
1063 			    msr, data);
1064 		return 1;
1065 	}
1066 	return 0;
1067 }
1068 
1069 /* Calculate cpu time spent by current task in 100ns units */
1070 static u64 current_task_runtime_100ns(void)
1071 {
1072 	u64 utime, stime;
1073 
1074 	task_cputime_adjusted(current, &utime, &stime);
1075 
1076 	return div_u64(utime + stime, 100);
1077 }
1078 
1079 static int kvm_hv_set_msr(struct kvm_vcpu *vcpu, u32 msr, u64 data, bool host)
1080 {
1081 	struct kvm_vcpu_hv *hv_vcpu = &vcpu->arch.hyperv;
1082 
1083 	switch (msr) {
1084 	case HV_X64_MSR_VP_INDEX: {
1085 		struct kvm_hv *hv = &vcpu->kvm->arch.hyperv;
1086 		int vcpu_idx = kvm_vcpu_get_idx(vcpu);
1087 		u32 new_vp_index = (u32)data;
1088 
1089 		if (!host || new_vp_index >= KVM_MAX_VCPUS)
1090 			return 1;
1091 
1092 		if (new_vp_index == hv_vcpu->vp_index)
1093 			return 0;
1094 
1095 		/*
1096 		 * The VP index is initialized to vcpu_index by
1097 		 * kvm_hv_vcpu_postcreate so they initially match.  Now the
1098 		 * VP index is changing, adjust num_mismatched_vp_indexes if
1099 		 * it now matches or no longer matches vcpu_idx.
1100 		 */
1101 		if (hv_vcpu->vp_index == vcpu_idx)
1102 			atomic_inc(&hv->num_mismatched_vp_indexes);
1103 		else if (new_vp_index == vcpu_idx)
1104 			atomic_dec(&hv->num_mismatched_vp_indexes);
1105 
1106 		hv_vcpu->vp_index = new_vp_index;
1107 		break;
1108 	}
1109 	case HV_X64_MSR_VP_ASSIST_PAGE: {
1110 		u64 gfn;
1111 		unsigned long addr;
1112 
1113 		if (!(data & HV_X64_MSR_VP_ASSIST_PAGE_ENABLE)) {
1114 			hv_vcpu->hv_vapic = data;
1115 			if (kvm_lapic_enable_pv_eoi(vcpu, 0, 0))
1116 				return 1;
1117 			break;
1118 		}
1119 		gfn = data >> HV_X64_MSR_VP_ASSIST_PAGE_ADDRESS_SHIFT;
1120 		addr = kvm_vcpu_gfn_to_hva(vcpu, gfn);
1121 		if (kvm_is_error_hva(addr))
1122 			return 1;
1123 
1124 		/*
1125 		 * Clear apic_assist portion of f(struct hv_vp_assist_page
1126 		 * only, there can be valuable data in the rest which needs
1127 		 * to be preserved e.g. on migration.
1128 		 */
1129 		if (__clear_user((void __user *)addr, sizeof(u32)))
1130 			return 1;
1131 		hv_vcpu->hv_vapic = data;
1132 		kvm_vcpu_mark_page_dirty(vcpu, gfn);
1133 		if (kvm_lapic_enable_pv_eoi(vcpu,
1134 					    gfn_to_gpa(gfn) | KVM_MSR_ENABLED,
1135 					    sizeof(struct hv_vp_assist_page)))
1136 			return 1;
1137 		break;
1138 	}
1139 	case HV_X64_MSR_EOI:
1140 		return kvm_hv_vapic_msr_write(vcpu, APIC_EOI, data);
1141 	case HV_X64_MSR_ICR:
1142 		return kvm_hv_vapic_msr_write(vcpu, APIC_ICR, data);
1143 	case HV_X64_MSR_TPR:
1144 		return kvm_hv_vapic_msr_write(vcpu, APIC_TASKPRI, data);
1145 	case HV_X64_MSR_VP_RUNTIME:
1146 		if (!host)
1147 			return 1;
1148 		hv_vcpu->runtime_offset = data - current_task_runtime_100ns();
1149 		break;
1150 	case HV_X64_MSR_SCONTROL:
1151 	case HV_X64_MSR_SVERSION:
1152 	case HV_X64_MSR_SIEFP:
1153 	case HV_X64_MSR_SIMP:
1154 	case HV_X64_MSR_EOM:
1155 	case HV_X64_MSR_SINT0 ... HV_X64_MSR_SINT15:
1156 		return synic_set_msr(vcpu_to_synic(vcpu), msr, data, host);
1157 	case HV_X64_MSR_STIMER0_CONFIG:
1158 	case HV_X64_MSR_STIMER1_CONFIG:
1159 	case HV_X64_MSR_STIMER2_CONFIG:
1160 	case HV_X64_MSR_STIMER3_CONFIG: {
1161 		int timer_index = (msr - HV_X64_MSR_STIMER0_CONFIG)/2;
1162 
1163 		return stimer_set_config(vcpu_to_stimer(vcpu, timer_index),
1164 					 data, host);
1165 	}
1166 	case HV_X64_MSR_STIMER0_COUNT:
1167 	case HV_X64_MSR_STIMER1_COUNT:
1168 	case HV_X64_MSR_STIMER2_COUNT:
1169 	case HV_X64_MSR_STIMER3_COUNT: {
1170 		int timer_index = (msr - HV_X64_MSR_STIMER0_COUNT)/2;
1171 
1172 		return stimer_set_count(vcpu_to_stimer(vcpu, timer_index),
1173 					data, host);
1174 	}
1175 	case HV_X64_MSR_TSC_FREQUENCY:
1176 	case HV_X64_MSR_APIC_FREQUENCY:
1177 		/* read-only, but still ignore it if host-initiated */
1178 		if (!host)
1179 			return 1;
1180 		break;
1181 	default:
1182 		vcpu_unimpl(vcpu, "Hyper-V uhandled wrmsr: 0x%x data 0x%llx\n",
1183 			    msr, data);
1184 		return 1;
1185 	}
1186 
1187 	return 0;
1188 }
1189 
1190 static int kvm_hv_get_msr_pw(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
1191 {
1192 	u64 data = 0;
1193 	struct kvm *kvm = vcpu->kvm;
1194 	struct kvm_hv *hv = &kvm->arch.hyperv;
1195 
1196 	switch (msr) {
1197 	case HV_X64_MSR_GUEST_OS_ID:
1198 		data = hv->hv_guest_os_id;
1199 		break;
1200 	case HV_X64_MSR_HYPERCALL:
1201 		data = hv->hv_hypercall;
1202 		break;
1203 	case HV_X64_MSR_TIME_REF_COUNT:
1204 		data = get_time_ref_counter(kvm);
1205 		break;
1206 	case HV_X64_MSR_REFERENCE_TSC:
1207 		data = hv->hv_tsc_page;
1208 		break;
1209 	case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4:
1210 		return kvm_hv_msr_get_crash_data(vcpu,
1211 						 msr - HV_X64_MSR_CRASH_P0,
1212 						 pdata);
1213 	case HV_X64_MSR_CRASH_CTL:
1214 		return kvm_hv_msr_get_crash_ctl(vcpu, pdata);
1215 	case HV_X64_MSR_RESET:
1216 		data = 0;
1217 		break;
1218 	case HV_X64_MSR_REENLIGHTENMENT_CONTROL:
1219 		data = hv->hv_reenlightenment_control;
1220 		break;
1221 	case HV_X64_MSR_TSC_EMULATION_CONTROL:
1222 		data = hv->hv_tsc_emulation_control;
1223 		break;
1224 	case HV_X64_MSR_TSC_EMULATION_STATUS:
1225 		data = hv->hv_tsc_emulation_status;
1226 		break;
1227 	default:
1228 		vcpu_unimpl(vcpu, "Hyper-V unhandled rdmsr: 0x%x\n", msr);
1229 		return 1;
1230 	}
1231 
1232 	*pdata = data;
1233 	return 0;
1234 }
1235 
1236 static int kvm_hv_get_msr(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata,
1237 			  bool host)
1238 {
1239 	u64 data = 0;
1240 	struct kvm_vcpu_hv *hv_vcpu = &vcpu->arch.hyperv;
1241 
1242 	switch (msr) {
1243 	case HV_X64_MSR_VP_INDEX:
1244 		data = hv_vcpu->vp_index;
1245 		break;
1246 	case HV_X64_MSR_EOI:
1247 		return kvm_hv_vapic_msr_read(vcpu, APIC_EOI, pdata);
1248 	case HV_X64_MSR_ICR:
1249 		return kvm_hv_vapic_msr_read(vcpu, APIC_ICR, pdata);
1250 	case HV_X64_MSR_TPR:
1251 		return kvm_hv_vapic_msr_read(vcpu, APIC_TASKPRI, pdata);
1252 	case HV_X64_MSR_VP_ASSIST_PAGE:
1253 		data = hv_vcpu->hv_vapic;
1254 		break;
1255 	case HV_X64_MSR_VP_RUNTIME:
1256 		data = current_task_runtime_100ns() + hv_vcpu->runtime_offset;
1257 		break;
1258 	case HV_X64_MSR_SCONTROL:
1259 	case HV_X64_MSR_SVERSION:
1260 	case HV_X64_MSR_SIEFP:
1261 	case HV_X64_MSR_SIMP:
1262 	case HV_X64_MSR_EOM:
1263 	case HV_X64_MSR_SINT0 ... HV_X64_MSR_SINT15:
1264 		return synic_get_msr(vcpu_to_synic(vcpu), msr, pdata, host);
1265 	case HV_X64_MSR_STIMER0_CONFIG:
1266 	case HV_X64_MSR_STIMER1_CONFIG:
1267 	case HV_X64_MSR_STIMER2_CONFIG:
1268 	case HV_X64_MSR_STIMER3_CONFIG: {
1269 		int timer_index = (msr - HV_X64_MSR_STIMER0_CONFIG)/2;
1270 
1271 		return stimer_get_config(vcpu_to_stimer(vcpu, timer_index),
1272 					 pdata);
1273 	}
1274 	case HV_X64_MSR_STIMER0_COUNT:
1275 	case HV_X64_MSR_STIMER1_COUNT:
1276 	case HV_X64_MSR_STIMER2_COUNT:
1277 	case HV_X64_MSR_STIMER3_COUNT: {
1278 		int timer_index = (msr - HV_X64_MSR_STIMER0_COUNT)/2;
1279 
1280 		return stimer_get_count(vcpu_to_stimer(vcpu, timer_index),
1281 					pdata);
1282 	}
1283 	case HV_X64_MSR_TSC_FREQUENCY:
1284 		data = (u64)vcpu->arch.virtual_tsc_khz * 1000;
1285 		break;
1286 	case HV_X64_MSR_APIC_FREQUENCY:
1287 		data = APIC_BUS_FREQUENCY;
1288 		break;
1289 	default:
1290 		vcpu_unimpl(vcpu, "Hyper-V unhandled rdmsr: 0x%x\n", msr);
1291 		return 1;
1292 	}
1293 	*pdata = data;
1294 	return 0;
1295 }
1296 
1297 int kvm_hv_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data, bool host)
1298 {
1299 	if (kvm_hv_msr_partition_wide(msr)) {
1300 		int r;
1301 
1302 		mutex_lock(&vcpu->kvm->arch.hyperv.hv_lock);
1303 		r = kvm_hv_set_msr_pw(vcpu, msr, data, host);
1304 		mutex_unlock(&vcpu->kvm->arch.hyperv.hv_lock);
1305 		return r;
1306 	} else
1307 		return kvm_hv_set_msr(vcpu, msr, data, host);
1308 }
1309 
1310 int kvm_hv_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
1311 {
1312 	if (kvm_hv_msr_partition_wide(msr)) {
1313 		int r;
1314 
1315 		mutex_lock(&vcpu->kvm->arch.hyperv.hv_lock);
1316 		r = kvm_hv_get_msr_pw(vcpu, msr, pdata);
1317 		mutex_unlock(&vcpu->kvm->arch.hyperv.hv_lock);
1318 		return r;
1319 	} else
1320 		return kvm_hv_get_msr(vcpu, msr, pdata, host);
1321 }
1322 
1323 static __always_inline unsigned long *sparse_set_to_vcpu_mask(
1324 	struct kvm *kvm, u64 *sparse_banks, u64 valid_bank_mask,
1325 	u64 *vp_bitmap, unsigned long *vcpu_bitmap)
1326 {
1327 	struct kvm_hv *hv = &kvm->arch.hyperv;
1328 	struct kvm_vcpu *vcpu;
1329 	int i, bank, sbank = 0;
1330 
1331 	memset(vp_bitmap, 0,
1332 	       KVM_HV_MAX_SPARSE_VCPU_SET_BITS * sizeof(*vp_bitmap));
1333 	for_each_set_bit(bank, (unsigned long *)&valid_bank_mask,
1334 			 KVM_HV_MAX_SPARSE_VCPU_SET_BITS)
1335 		vp_bitmap[bank] = sparse_banks[sbank++];
1336 
1337 	if (likely(!atomic_read(&hv->num_mismatched_vp_indexes))) {
1338 		/* for all vcpus vp_index == vcpu_idx */
1339 		return (unsigned long *)vp_bitmap;
1340 	}
1341 
1342 	bitmap_zero(vcpu_bitmap, KVM_MAX_VCPUS);
1343 	kvm_for_each_vcpu(i, vcpu, kvm) {
1344 		if (test_bit(vcpu_to_hv_vcpu(vcpu)->vp_index,
1345 			     (unsigned long *)vp_bitmap))
1346 			__set_bit(i, vcpu_bitmap);
1347 	}
1348 	return vcpu_bitmap;
1349 }
1350 
1351 static u64 kvm_hv_flush_tlb(struct kvm_vcpu *current_vcpu, u64 ingpa,
1352 			    u16 rep_cnt, bool ex)
1353 {
1354 	struct kvm *kvm = current_vcpu->kvm;
1355 	struct kvm_vcpu_hv *hv_vcpu = &current_vcpu->arch.hyperv;
1356 	struct hv_tlb_flush_ex flush_ex;
1357 	struct hv_tlb_flush flush;
1358 	u64 vp_bitmap[KVM_HV_MAX_SPARSE_VCPU_SET_BITS];
1359 	DECLARE_BITMAP(vcpu_bitmap, KVM_MAX_VCPUS);
1360 	unsigned long *vcpu_mask;
1361 	u64 valid_bank_mask;
1362 	u64 sparse_banks[64];
1363 	int sparse_banks_len;
1364 	bool all_cpus;
1365 
1366 	if (!ex) {
1367 		if (unlikely(kvm_read_guest(kvm, ingpa, &flush, sizeof(flush))))
1368 			return HV_STATUS_INVALID_HYPERCALL_INPUT;
1369 
1370 		trace_kvm_hv_flush_tlb(flush.processor_mask,
1371 				       flush.address_space, flush.flags);
1372 
1373 		valid_bank_mask = BIT_ULL(0);
1374 		sparse_banks[0] = flush.processor_mask;
1375 
1376 		/*
1377 		 * Work around possible WS2012 bug: it sends hypercalls
1378 		 * with processor_mask = 0x0 and HV_FLUSH_ALL_PROCESSORS clear,
1379 		 * while also expecting us to flush something and crashing if
1380 		 * we don't. Let's treat processor_mask == 0 same as
1381 		 * HV_FLUSH_ALL_PROCESSORS.
1382 		 */
1383 		all_cpus = (flush.flags & HV_FLUSH_ALL_PROCESSORS) ||
1384 			flush.processor_mask == 0;
1385 	} else {
1386 		if (unlikely(kvm_read_guest(kvm, ingpa, &flush_ex,
1387 					    sizeof(flush_ex))))
1388 			return HV_STATUS_INVALID_HYPERCALL_INPUT;
1389 
1390 		trace_kvm_hv_flush_tlb_ex(flush_ex.hv_vp_set.valid_bank_mask,
1391 					  flush_ex.hv_vp_set.format,
1392 					  flush_ex.address_space,
1393 					  flush_ex.flags);
1394 
1395 		valid_bank_mask = flush_ex.hv_vp_set.valid_bank_mask;
1396 		all_cpus = flush_ex.hv_vp_set.format !=
1397 			HV_GENERIC_SET_SPARSE_4K;
1398 
1399 		sparse_banks_len =
1400 			bitmap_weight((unsigned long *)&valid_bank_mask, 64) *
1401 			sizeof(sparse_banks[0]);
1402 
1403 		if (!sparse_banks_len && !all_cpus)
1404 			goto ret_success;
1405 
1406 		if (!all_cpus &&
1407 		    kvm_read_guest(kvm,
1408 				   ingpa + offsetof(struct hv_tlb_flush_ex,
1409 						    hv_vp_set.bank_contents),
1410 				   sparse_banks,
1411 				   sparse_banks_len))
1412 			return HV_STATUS_INVALID_HYPERCALL_INPUT;
1413 	}
1414 
1415 	cpumask_clear(&hv_vcpu->tlb_flush);
1416 
1417 	vcpu_mask = all_cpus ? NULL :
1418 		sparse_set_to_vcpu_mask(kvm, sparse_banks, valid_bank_mask,
1419 					vp_bitmap, vcpu_bitmap);
1420 
1421 	/*
1422 	 * vcpu->arch.cr3 may not be up-to-date for running vCPUs so we can't
1423 	 * analyze it here, flush TLB regardless of the specified address space.
1424 	 */
1425 	kvm_make_vcpus_request_mask(kvm,
1426 				    KVM_REQ_TLB_FLUSH | KVM_REQUEST_NO_WAKEUP,
1427 				    vcpu_mask, &hv_vcpu->tlb_flush);
1428 
1429 ret_success:
1430 	/* We always do full TLB flush, set rep_done = rep_cnt. */
1431 	return (u64)HV_STATUS_SUCCESS |
1432 		((u64)rep_cnt << HV_HYPERCALL_REP_COMP_OFFSET);
1433 }
1434 
1435 static void kvm_send_ipi_to_many(struct kvm *kvm, u32 vector,
1436 				 unsigned long *vcpu_bitmap)
1437 {
1438 	struct kvm_lapic_irq irq = {
1439 		.delivery_mode = APIC_DM_FIXED,
1440 		.vector = vector
1441 	};
1442 	struct kvm_vcpu *vcpu;
1443 	int i;
1444 
1445 	kvm_for_each_vcpu(i, vcpu, kvm) {
1446 		if (vcpu_bitmap && !test_bit(i, vcpu_bitmap))
1447 			continue;
1448 
1449 		/* We fail only when APIC is disabled */
1450 		kvm_apic_set_irq(vcpu, &irq, NULL);
1451 	}
1452 }
1453 
1454 static u64 kvm_hv_send_ipi(struct kvm_vcpu *current_vcpu, u64 ingpa, u64 outgpa,
1455 			   bool ex, bool fast)
1456 {
1457 	struct kvm *kvm = current_vcpu->kvm;
1458 	struct hv_send_ipi_ex send_ipi_ex;
1459 	struct hv_send_ipi send_ipi;
1460 	u64 vp_bitmap[KVM_HV_MAX_SPARSE_VCPU_SET_BITS];
1461 	DECLARE_BITMAP(vcpu_bitmap, KVM_MAX_VCPUS);
1462 	unsigned long *vcpu_mask;
1463 	unsigned long valid_bank_mask;
1464 	u64 sparse_banks[64];
1465 	int sparse_banks_len;
1466 	u32 vector;
1467 	bool all_cpus;
1468 
1469 	if (!ex) {
1470 		if (!fast) {
1471 			if (unlikely(kvm_read_guest(kvm, ingpa, &send_ipi,
1472 						    sizeof(send_ipi))))
1473 				return HV_STATUS_INVALID_HYPERCALL_INPUT;
1474 			sparse_banks[0] = send_ipi.cpu_mask;
1475 			vector = send_ipi.vector;
1476 		} else {
1477 			/* 'reserved' part of hv_send_ipi should be 0 */
1478 			if (unlikely(ingpa >> 32 != 0))
1479 				return HV_STATUS_INVALID_HYPERCALL_INPUT;
1480 			sparse_banks[0] = outgpa;
1481 			vector = (u32)ingpa;
1482 		}
1483 		all_cpus = false;
1484 		valid_bank_mask = BIT_ULL(0);
1485 
1486 		trace_kvm_hv_send_ipi(vector, sparse_banks[0]);
1487 	} else {
1488 		if (unlikely(kvm_read_guest(kvm, ingpa, &send_ipi_ex,
1489 					    sizeof(send_ipi_ex))))
1490 			return HV_STATUS_INVALID_HYPERCALL_INPUT;
1491 
1492 		trace_kvm_hv_send_ipi_ex(send_ipi_ex.vector,
1493 					 send_ipi_ex.vp_set.format,
1494 					 send_ipi_ex.vp_set.valid_bank_mask);
1495 
1496 		vector = send_ipi_ex.vector;
1497 		valid_bank_mask = send_ipi_ex.vp_set.valid_bank_mask;
1498 		sparse_banks_len = bitmap_weight(&valid_bank_mask, 64) *
1499 			sizeof(sparse_banks[0]);
1500 
1501 		all_cpus = send_ipi_ex.vp_set.format == HV_GENERIC_SET_ALL;
1502 
1503 		if (!sparse_banks_len)
1504 			goto ret_success;
1505 
1506 		if (!all_cpus &&
1507 		    kvm_read_guest(kvm,
1508 				   ingpa + offsetof(struct hv_send_ipi_ex,
1509 						    vp_set.bank_contents),
1510 				   sparse_banks,
1511 				   sparse_banks_len))
1512 			return HV_STATUS_INVALID_HYPERCALL_INPUT;
1513 	}
1514 
1515 	if ((vector < HV_IPI_LOW_VECTOR) || (vector > HV_IPI_HIGH_VECTOR))
1516 		return HV_STATUS_INVALID_HYPERCALL_INPUT;
1517 
1518 	vcpu_mask = all_cpus ? NULL :
1519 		sparse_set_to_vcpu_mask(kvm, sparse_banks, valid_bank_mask,
1520 					vp_bitmap, vcpu_bitmap);
1521 
1522 	kvm_send_ipi_to_many(kvm, vector, vcpu_mask);
1523 
1524 ret_success:
1525 	return HV_STATUS_SUCCESS;
1526 }
1527 
1528 bool kvm_hv_hypercall_enabled(struct kvm *kvm)
1529 {
1530 	return READ_ONCE(kvm->arch.hyperv.hv_hypercall) & HV_X64_MSR_HYPERCALL_ENABLE;
1531 }
1532 
1533 static void kvm_hv_hypercall_set_result(struct kvm_vcpu *vcpu, u64 result)
1534 {
1535 	bool longmode;
1536 
1537 	longmode = is_64_bit_mode(vcpu);
1538 	if (longmode)
1539 		kvm_rax_write(vcpu, result);
1540 	else {
1541 		kvm_rdx_write(vcpu, result >> 32);
1542 		kvm_rax_write(vcpu, result & 0xffffffff);
1543 	}
1544 }
1545 
1546 static int kvm_hv_hypercall_complete(struct kvm_vcpu *vcpu, u64 result)
1547 {
1548 	kvm_hv_hypercall_set_result(vcpu, result);
1549 	++vcpu->stat.hypercalls;
1550 	return kvm_skip_emulated_instruction(vcpu);
1551 }
1552 
1553 static int kvm_hv_hypercall_complete_userspace(struct kvm_vcpu *vcpu)
1554 {
1555 	return kvm_hv_hypercall_complete(vcpu, vcpu->run->hyperv.u.hcall.result);
1556 }
1557 
1558 static u16 kvm_hvcall_signal_event(struct kvm_vcpu *vcpu, bool fast, u64 param)
1559 {
1560 	struct eventfd_ctx *eventfd;
1561 
1562 	if (unlikely(!fast)) {
1563 		int ret;
1564 		gpa_t gpa = param;
1565 
1566 		if ((gpa & (__alignof__(param) - 1)) ||
1567 		    offset_in_page(gpa) + sizeof(param) > PAGE_SIZE)
1568 			return HV_STATUS_INVALID_ALIGNMENT;
1569 
1570 		ret = kvm_vcpu_read_guest(vcpu, gpa, &param, sizeof(param));
1571 		if (ret < 0)
1572 			return HV_STATUS_INVALID_ALIGNMENT;
1573 	}
1574 
1575 	/*
1576 	 * Per spec, bits 32-47 contain the extra "flag number".  However, we
1577 	 * have no use for it, and in all known usecases it is zero, so just
1578 	 * report lookup failure if it isn't.
1579 	 */
1580 	if (param & 0xffff00000000ULL)
1581 		return HV_STATUS_INVALID_PORT_ID;
1582 	/* remaining bits are reserved-zero */
1583 	if (param & ~KVM_HYPERV_CONN_ID_MASK)
1584 		return HV_STATUS_INVALID_HYPERCALL_INPUT;
1585 
1586 	/* the eventfd is protected by vcpu->kvm->srcu, but conn_to_evt isn't */
1587 	rcu_read_lock();
1588 	eventfd = idr_find(&vcpu->kvm->arch.hyperv.conn_to_evt, param);
1589 	rcu_read_unlock();
1590 	if (!eventfd)
1591 		return HV_STATUS_INVALID_PORT_ID;
1592 
1593 	eventfd_signal(eventfd, 1);
1594 	return HV_STATUS_SUCCESS;
1595 }
1596 
1597 int kvm_hv_hypercall(struct kvm_vcpu *vcpu)
1598 {
1599 	u64 param, ingpa, outgpa, ret = HV_STATUS_SUCCESS;
1600 	uint16_t code, rep_idx, rep_cnt;
1601 	bool fast, rep;
1602 
1603 	/*
1604 	 * hypercall generates UD from non zero cpl and real mode
1605 	 * per HYPER-V spec
1606 	 */
1607 	if (kvm_x86_ops->get_cpl(vcpu) != 0 || !is_protmode(vcpu)) {
1608 		kvm_queue_exception(vcpu, UD_VECTOR);
1609 		return 1;
1610 	}
1611 
1612 #ifdef CONFIG_X86_64
1613 	if (is_64_bit_mode(vcpu)) {
1614 		param = kvm_rcx_read(vcpu);
1615 		ingpa = kvm_rdx_read(vcpu);
1616 		outgpa = kvm_r8_read(vcpu);
1617 	} else
1618 #endif
1619 	{
1620 		param = ((u64)kvm_rdx_read(vcpu) << 32) |
1621 			(kvm_rax_read(vcpu) & 0xffffffff);
1622 		ingpa = ((u64)kvm_rbx_read(vcpu) << 32) |
1623 			(kvm_rcx_read(vcpu) & 0xffffffff);
1624 		outgpa = ((u64)kvm_rdi_read(vcpu) << 32) |
1625 			(kvm_rsi_read(vcpu) & 0xffffffff);
1626 	}
1627 
1628 	code = param & 0xffff;
1629 	fast = !!(param & HV_HYPERCALL_FAST_BIT);
1630 	rep_cnt = (param >> HV_HYPERCALL_REP_COMP_OFFSET) & 0xfff;
1631 	rep_idx = (param >> HV_HYPERCALL_REP_START_OFFSET) & 0xfff;
1632 	rep = !!(rep_cnt || rep_idx);
1633 
1634 	trace_kvm_hv_hypercall(code, fast, rep_cnt, rep_idx, ingpa, outgpa);
1635 
1636 	switch (code) {
1637 	case HVCALL_NOTIFY_LONG_SPIN_WAIT:
1638 		if (unlikely(rep)) {
1639 			ret = HV_STATUS_INVALID_HYPERCALL_INPUT;
1640 			break;
1641 		}
1642 		kvm_vcpu_on_spin(vcpu, true);
1643 		break;
1644 	case HVCALL_SIGNAL_EVENT:
1645 		if (unlikely(rep)) {
1646 			ret = HV_STATUS_INVALID_HYPERCALL_INPUT;
1647 			break;
1648 		}
1649 		ret = kvm_hvcall_signal_event(vcpu, fast, ingpa);
1650 		if (ret != HV_STATUS_INVALID_PORT_ID)
1651 			break;
1652 		/* fall through - maybe userspace knows this conn_id. */
1653 	case HVCALL_POST_MESSAGE:
1654 		/* don't bother userspace if it has no way to handle it */
1655 		if (unlikely(rep || !vcpu_to_synic(vcpu)->active)) {
1656 			ret = HV_STATUS_INVALID_HYPERCALL_INPUT;
1657 			break;
1658 		}
1659 		vcpu->run->exit_reason = KVM_EXIT_HYPERV;
1660 		vcpu->run->hyperv.type = KVM_EXIT_HYPERV_HCALL;
1661 		vcpu->run->hyperv.u.hcall.input = param;
1662 		vcpu->run->hyperv.u.hcall.params[0] = ingpa;
1663 		vcpu->run->hyperv.u.hcall.params[1] = outgpa;
1664 		vcpu->arch.complete_userspace_io =
1665 				kvm_hv_hypercall_complete_userspace;
1666 		return 0;
1667 	case HVCALL_FLUSH_VIRTUAL_ADDRESS_LIST:
1668 		if (unlikely(fast || !rep_cnt || rep_idx)) {
1669 			ret = HV_STATUS_INVALID_HYPERCALL_INPUT;
1670 			break;
1671 		}
1672 		ret = kvm_hv_flush_tlb(vcpu, ingpa, rep_cnt, false);
1673 		break;
1674 	case HVCALL_FLUSH_VIRTUAL_ADDRESS_SPACE:
1675 		if (unlikely(fast || rep)) {
1676 			ret = HV_STATUS_INVALID_HYPERCALL_INPUT;
1677 			break;
1678 		}
1679 		ret = kvm_hv_flush_tlb(vcpu, ingpa, rep_cnt, false);
1680 		break;
1681 	case HVCALL_FLUSH_VIRTUAL_ADDRESS_LIST_EX:
1682 		if (unlikely(fast || !rep_cnt || rep_idx)) {
1683 			ret = HV_STATUS_INVALID_HYPERCALL_INPUT;
1684 			break;
1685 		}
1686 		ret = kvm_hv_flush_tlb(vcpu, ingpa, rep_cnt, true);
1687 		break;
1688 	case HVCALL_FLUSH_VIRTUAL_ADDRESS_SPACE_EX:
1689 		if (unlikely(fast || rep)) {
1690 			ret = HV_STATUS_INVALID_HYPERCALL_INPUT;
1691 			break;
1692 		}
1693 		ret = kvm_hv_flush_tlb(vcpu, ingpa, rep_cnt, true);
1694 		break;
1695 	case HVCALL_SEND_IPI:
1696 		if (unlikely(rep)) {
1697 			ret = HV_STATUS_INVALID_HYPERCALL_INPUT;
1698 			break;
1699 		}
1700 		ret = kvm_hv_send_ipi(vcpu, ingpa, outgpa, false, fast);
1701 		break;
1702 	case HVCALL_SEND_IPI_EX:
1703 		if (unlikely(fast || rep)) {
1704 			ret = HV_STATUS_INVALID_HYPERCALL_INPUT;
1705 			break;
1706 		}
1707 		ret = kvm_hv_send_ipi(vcpu, ingpa, outgpa, true, false);
1708 		break;
1709 	default:
1710 		ret = HV_STATUS_INVALID_HYPERCALL_CODE;
1711 		break;
1712 	}
1713 
1714 	return kvm_hv_hypercall_complete(vcpu, ret);
1715 }
1716 
1717 void kvm_hv_init_vm(struct kvm *kvm)
1718 {
1719 	mutex_init(&kvm->arch.hyperv.hv_lock);
1720 	idr_init(&kvm->arch.hyperv.conn_to_evt);
1721 }
1722 
1723 void kvm_hv_destroy_vm(struct kvm *kvm)
1724 {
1725 	struct eventfd_ctx *eventfd;
1726 	int i;
1727 
1728 	idr_for_each_entry(&kvm->arch.hyperv.conn_to_evt, eventfd, i)
1729 		eventfd_ctx_put(eventfd);
1730 	idr_destroy(&kvm->arch.hyperv.conn_to_evt);
1731 }
1732 
1733 static int kvm_hv_eventfd_assign(struct kvm *kvm, u32 conn_id, int fd)
1734 {
1735 	struct kvm_hv *hv = &kvm->arch.hyperv;
1736 	struct eventfd_ctx *eventfd;
1737 	int ret;
1738 
1739 	eventfd = eventfd_ctx_fdget(fd);
1740 	if (IS_ERR(eventfd))
1741 		return PTR_ERR(eventfd);
1742 
1743 	mutex_lock(&hv->hv_lock);
1744 	ret = idr_alloc(&hv->conn_to_evt, eventfd, conn_id, conn_id + 1,
1745 			GFP_KERNEL_ACCOUNT);
1746 	mutex_unlock(&hv->hv_lock);
1747 
1748 	if (ret >= 0)
1749 		return 0;
1750 
1751 	if (ret == -ENOSPC)
1752 		ret = -EEXIST;
1753 	eventfd_ctx_put(eventfd);
1754 	return ret;
1755 }
1756 
1757 static int kvm_hv_eventfd_deassign(struct kvm *kvm, u32 conn_id)
1758 {
1759 	struct kvm_hv *hv = &kvm->arch.hyperv;
1760 	struct eventfd_ctx *eventfd;
1761 
1762 	mutex_lock(&hv->hv_lock);
1763 	eventfd = idr_remove(&hv->conn_to_evt, conn_id);
1764 	mutex_unlock(&hv->hv_lock);
1765 
1766 	if (!eventfd)
1767 		return -ENOENT;
1768 
1769 	synchronize_srcu(&kvm->srcu);
1770 	eventfd_ctx_put(eventfd);
1771 	return 0;
1772 }
1773 
1774 int kvm_vm_ioctl_hv_eventfd(struct kvm *kvm, struct kvm_hyperv_eventfd *args)
1775 {
1776 	if ((args->flags & ~KVM_HYPERV_EVENTFD_DEASSIGN) ||
1777 	    (args->conn_id & ~KVM_HYPERV_CONN_ID_MASK))
1778 		return -EINVAL;
1779 
1780 	if (args->flags == KVM_HYPERV_EVENTFD_DEASSIGN)
1781 		return kvm_hv_eventfd_deassign(kvm, args->conn_id);
1782 	return kvm_hv_eventfd_assign(kvm, args->conn_id, args->fd);
1783 }
1784 
1785 int kvm_vcpu_ioctl_get_hv_cpuid(struct kvm_vcpu *vcpu, struct kvm_cpuid2 *cpuid,
1786 				struct kvm_cpuid_entry2 __user *entries)
1787 {
1788 	uint16_t evmcs_ver = 0;
1789 	struct kvm_cpuid_entry2 cpuid_entries[] = {
1790 		{ .function = HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS },
1791 		{ .function = HYPERV_CPUID_INTERFACE },
1792 		{ .function = HYPERV_CPUID_VERSION },
1793 		{ .function = HYPERV_CPUID_FEATURES },
1794 		{ .function = HYPERV_CPUID_ENLIGHTMENT_INFO },
1795 		{ .function = HYPERV_CPUID_IMPLEMENT_LIMITS },
1796 		{ .function = HYPERV_CPUID_NESTED_FEATURES },
1797 	};
1798 	int i, nent = ARRAY_SIZE(cpuid_entries);
1799 
1800 	if (kvm_x86_ops->nested_get_evmcs_version)
1801 		evmcs_ver = kvm_x86_ops->nested_get_evmcs_version(vcpu);
1802 
1803 	/* Skip NESTED_FEATURES if eVMCS is not supported */
1804 	if (!evmcs_ver)
1805 		--nent;
1806 
1807 	if (cpuid->nent < nent)
1808 		return -E2BIG;
1809 
1810 	if (cpuid->nent > nent)
1811 		cpuid->nent = nent;
1812 
1813 	for (i = 0; i < nent; i++) {
1814 		struct kvm_cpuid_entry2 *ent = &cpuid_entries[i];
1815 		u32 signature[3];
1816 
1817 		switch (ent->function) {
1818 		case HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS:
1819 			memcpy(signature, "Linux KVM Hv", 12);
1820 
1821 			ent->eax = HYPERV_CPUID_NESTED_FEATURES;
1822 			ent->ebx = signature[0];
1823 			ent->ecx = signature[1];
1824 			ent->edx = signature[2];
1825 			break;
1826 
1827 		case HYPERV_CPUID_INTERFACE:
1828 			memcpy(signature, "Hv#1\0\0\0\0\0\0\0\0", 12);
1829 			ent->eax = signature[0];
1830 			break;
1831 
1832 		case HYPERV_CPUID_VERSION:
1833 			/*
1834 			 * We implement some Hyper-V 2016 functions so let's use
1835 			 * this version.
1836 			 */
1837 			ent->eax = 0x00003839;
1838 			ent->ebx = 0x000A0000;
1839 			break;
1840 
1841 		case HYPERV_CPUID_FEATURES:
1842 			ent->eax |= HV_X64_MSR_VP_RUNTIME_AVAILABLE;
1843 			ent->eax |= HV_MSR_TIME_REF_COUNT_AVAILABLE;
1844 			ent->eax |= HV_X64_MSR_SYNIC_AVAILABLE;
1845 			ent->eax |= HV_MSR_SYNTIMER_AVAILABLE;
1846 			ent->eax |= HV_X64_MSR_APIC_ACCESS_AVAILABLE;
1847 			ent->eax |= HV_X64_MSR_HYPERCALL_AVAILABLE;
1848 			ent->eax |= HV_X64_MSR_VP_INDEX_AVAILABLE;
1849 			ent->eax |= HV_X64_MSR_RESET_AVAILABLE;
1850 			ent->eax |= HV_MSR_REFERENCE_TSC_AVAILABLE;
1851 			ent->eax |= HV_X64_ACCESS_FREQUENCY_MSRS;
1852 			ent->eax |= HV_X64_ACCESS_REENLIGHTENMENT;
1853 
1854 			ent->ebx |= HV_X64_POST_MESSAGES;
1855 			ent->ebx |= HV_X64_SIGNAL_EVENTS;
1856 
1857 			ent->edx |= HV_FEATURE_FREQUENCY_MSRS_AVAILABLE;
1858 			ent->edx |= HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE;
1859 
1860 			/*
1861 			 * Direct Synthetic timers only make sense with in-kernel
1862 			 * LAPIC
1863 			 */
1864 			if (lapic_in_kernel(vcpu))
1865 				ent->edx |= HV_STIMER_DIRECT_MODE_AVAILABLE;
1866 
1867 			break;
1868 
1869 		case HYPERV_CPUID_ENLIGHTMENT_INFO:
1870 			ent->eax |= HV_X64_REMOTE_TLB_FLUSH_RECOMMENDED;
1871 			ent->eax |= HV_X64_APIC_ACCESS_RECOMMENDED;
1872 			ent->eax |= HV_X64_RELAXED_TIMING_RECOMMENDED;
1873 			ent->eax |= HV_X64_CLUSTER_IPI_RECOMMENDED;
1874 			ent->eax |= HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED;
1875 			if (evmcs_ver)
1876 				ent->eax |= HV_X64_ENLIGHTENED_VMCS_RECOMMENDED;
1877 			if (!cpu_smt_possible())
1878 				ent->eax |= HV_X64_NO_NONARCH_CORESHARING;
1879 			/*
1880 			 * Default number of spinlock retry attempts, matches
1881 			 * HyperV 2016.
1882 			 */
1883 			ent->ebx = 0x00000FFF;
1884 
1885 			break;
1886 
1887 		case HYPERV_CPUID_IMPLEMENT_LIMITS:
1888 			/* Maximum number of virtual processors */
1889 			ent->eax = KVM_MAX_VCPUS;
1890 			/*
1891 			 * Maximum number of logical processors, matches
1892 			 * HyperV 2016.
1893 			 */
1894 			ent->ebx = 64;
1895 
1896 			break;
1897 
1898 		case HYPERV_CPUID_NESTED_FEATURES:
1899 			ent->eax = evmcs_ver;
1900 
1901 			break;
1902 
1903 		default:
1904 			break;
1905 		}
1906 	}
1907 
1908 	if (copy_to_user(entries, cpuid_entries,
1909 			 nent * sizeof(struct kvm_cpuid_entry2)))
1910 		return -EFAULT;
1911 
1912 	return 0;
1913 }
1914