xref: /linux/virt/kvm/kvm_main.c (revision 6c8c1406)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Kernel-based Virtual Machine driver for Linux
4  *
5  * This module enables machines with Intel VT-x extensions to run virtual
6  * machines without emulation or binary translation.
7  *
8  * Copyright (C) 2006 Qumranet, Inc.
9  * Copyright 2010 Red Hat, Inc. and/or its affiliates.
10  *
11  * Authors:
12  *   Avi Kivity   <avi@qumranet.com>
13  *   Yaniv Kamay  <yaniv@qumranet.com>
14  */
15 
16 #include <kvm/iodev.h>
17 
18 #include <linux/kvm_host.h>
19 #include <linux/kvm.h>
20 #include <linux/module.h>
21 #include <linux/errno.h>
22 #include <linux/percpu.h>
23 #include <linux/mm.h>
24 #include <linux/miscdevice.h>
25 #include <linux/vmalloc.h>
26 #include <linux/reboot.h>
27 #include <linux/debugfs.h>
28 #include <linux/highmem.h>
29 #include <linux/file.h>
30 #include <linux/syscore_ops.h>
31 #include <linux/cpu.h>
32 #include <linux/sched/signal.h>
33 #include <linux/sched/mm.h>
34 #include <linux/sched/stat.h>
35 #include <linux/cpumask.h>
36 #include <linux/smp.h>
37 #include <linux/anon_inodes.h>
38 #include <linux/profile.h>
39 #include <linux/kvm_para.h>
40 #include <linux/pagemap.h>
41 #include <linux/mman.h>
42 #include <linux/swap.h>
43 #include <linux/bitops.h>
44 #include <linux/spinlock.h>
45 #include <linux/compat.h>
46 #include <linux/srcu.h>
47 #include <linux/hugetlb.h>
48 #include <linux/slab.h>
49 #include <linux/sort.h>
50 #include <linux/bsearch.h>
51 #include <linux/io.h>
52 #include <linux/lockdep.h>
53 #include <linux/kthread.h>
54 #include <linux/suspend.h>
55 
56 #include <asm/processor.h>
57 #include <asm/ioctl.h>
58 #include <linux/uaccess.h>
59 
60 #include "coalesced_mmio.h"
61 #include "async_pf.h"
62 #include "kvm_mm.h"
63 #include "vfio.h"
64 
65 #define CREATE_TRACE_POINTS
66 #include <trace/events/kvm.h>
67 
68 #include <linux/kvm_dirty_ring.h>
69 
70 /* Worst case buffer size needed for holding an integer. */
71 #define ITOA_MAX_LEN 12
72 
73 MODULE_AUTHOR("Qumranet");
74 MODULE_LICENSE("GPL");
75 
76 /* Architectures should define their poll value according to the halt latency */
77 unsigned int halt_poll_ns = KVM_HALT_POLL_NS_DEFAULT;
78 module_param(halt_poll_ns, uint, 0644);
79 EXPORT_SYMBOL_GPL(halt_poll_ns);
80 
81 /* Default doubles per-vcpu halt_poll_ns. */
82 unsigned int halt_poll_ns_grow = 2;
83 module_param(halt_poll_ns_grow, uint, 0644);
84 EXPORT_SYMBOL_GPL(halt_poll_ns_grow);
85 
86 /* The start value to grow halt_poll_ns from */
87 unsigned int halt_poll_ns_grow_start = 10000; /* 10us */
88 module_param(halt_poll_ns_grow_start, uint, 0644);
89 EXPORT_SYMBOL_GPL(halt_poll_ns_grow_start);
90 
91 /* Default resets per-vcpu halt_poll_ns . */
92 unsigned int halt_poll_ns_shrink;
93 module_param(halt_poll_ns_shrink, uint, 0644);
94 EXPORT_SYMBOL_GPL(halt_poll_ns_shrink);
95 
96 /*
97  * Ordering of locks:
98  *
99  *	kvm->lock --> kvm->slots_lock --> kvm->irq_lock
100  */
101 
102 DEFINE_MUTEX(kvm_lock);
103 static DEFINE_RAW_SPINLOCK(kvm_count_lock);
104 LIST_HEAD(vm_list);
105 
106 static cpumask_var_t cpus_hardware_enabled;
107 static int kvm_usage_count;
108 static atomic_t hardware_enable_failed;
109 
110 static struct kmem_cache *kvm_vcpu_cache;
111 
112 static __read_mostly struct preempt_ops kvm_preempt_ops;
113 static DEFINE_PER_CPU(struct kvm_vcpu *, kvm_running_vcpu);
114 
115 struct dentry *kvm_debugfs_dir;
116 EXPORT_SYMBOL_GPL(kvm_debugfs_dir);
117 
118 static const struct file_operations stat_fops_per_vm;
119 
120 static struct file_operations kvm_chardev_ops;
121 
122 static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
123 			   unsigned long arg);
124 #ifdef CONFIG_KVM_COMPAT
125 static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
126 				  unsigned long arg);
127 #define KVM_COMPAT(c)	.compat_ioctl	= (c)
128 #else
129 /*
130  * For architectures that don't implement a compat infrastructure,
131  * adopt a double line of defense:
132  * - Prevent a compat task from opening /dev/kvm
133  * - If the open has been done by a 64bit task, and the KVM fd
134  *   passed to a compat task, let the ioctls fail.
135  */
136 static long kvm_no_compat_ioctl(struct file *file, unsigned int ioctl,
137 				unsigned long arg) { return -EINVAL; }
138 
139 static int kvm_no_compat_open(struct inode *inode, struct file *file)
140 {
141 	return is_compat_task() ? -ENODEV : 0;
142 }
143 #define KVM_COMPAT(c)	.compat_ioctl	= kvm_no_compat_ioctl,	\
144 			.open		= kvm_no_compat_open
145 #endif
146 static int hardware_enable_all(void);
147 static void hardware_disable_all(void);
148 
149 static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
150 
151 __visible bool kvm_rebooting;
152 EXPORT_SYMBOL_GPL(kvm_rebooting);
153 
154 #define KVM_EVENT_CREATE_VM 0
155 #define KVM_EVENT_DESTROY_VM 1
156 static void kvm_uevent_notify_change(unsigned int type, struct kvm *kvm);
157 static unsigned long long kvm_createvm_count;
158 static unsigned long long kvm_active_vms;
159 
160 static DEFINE_PER_CPU(cpumask_var_t, cpu_kick_mask);
161 
162 __weak void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
163 						   unsigned long start, unsigned long end)
164 {
165 }
166 
167 __weak void kvm_arch_guest_memory_reclaimed(struct kvm *kvm)
168 {
169 }
170 
171 bool kvm_is_zone_device_page(struct page *page)
172 {
173 	/*
174 	 * The metadata used by is_zone_device_page() to determine whether or
175 	 * not a page is ZONE_DEVICE is guaranteed to be valid if and only if
176 	 * the device has been pinned, e.g. by get_user_pages().  WARN if the
177 	 * page_count() is zero to help detect bad usage of this helper.
178 	 */
179 	if (WARN_ON_ONCE(!page_count(page)))
180 		return false;
181 
182 	return is_zone_device_page(page);
183 }
184 
185 /*
186  * Returns a 'struct page' if the pfn is "valid" and backed by a refcounted
187  * page, NULL otherwise.  Note, the list of refcounted PG_reserved page types
188  * is likely incomplete, it has been compiled purely through people wanting to
189  * back guest with a certain type of memory and encountering issues.
190  */
191 struct page *kvm_pfn_to_refcounted_page(kvm_pfn_t pfn)
192 {
193 	struct page *page;
194 
195 	if (!pfn_valid(pfn))
196 		return NULL;
197 
198 	page = pfn_to_page(pfn);
199 	if (!PageReserved(page))
200 		return page;
201 
202 	/* The ZERO_PAGE(s) is marked PG_reserved, but is refcounted. */
203 	if (is_zero_pfn(pfn))
204 		return page;
205 
206 	/*
207 	 * ZONE_DEVICE pages currently set PG_reserved, but from a refcounting
208 	 * perspective they are "normal" pages, albeit with slightly different
209 	 * usage rules.
210 	 */
211 	if (kvm_is_zone_device_page(page))
212 		return page;
213 
214 	return NULL;
215 }
216 
217 /*
218  * Switches to specified vcpu, until a matching vcpu_put()
219  */
220 void vcpu_load(struct kvm_vcpu *vcpu)
221 {
222 	int cpu = get_cpu();
223 
224 	__this_cpu_write(kvm_running_vcpu, vcpu);
225 	preempt_notifier_register(&vcpu->preempt_notifier);
226 	kvm_arch_vcpu_load(vcpu, cpu);
227 	put_cpu();
228 }
229 EXPORT_SYMBOL_GPL(vcpu_load);
230 
231 void vcpu_put(struct kvm_vcpu *vcpu)
232 {
233 	preempt_disable();
234 	kvm_arch_vcpu_put(vcpu);
235 	preempt_notifier_unregister(&vcpu->preempt_notifier);
236 	__this_cpu_write(kvm_running_vcpu, NULL);
237 	preempt_enable();
238 }
239 EXPORT_SYMBOL_GPL(vcpu_put);
240 
241 /* TODO: merge with kvm_arch_vcpu_should_kick */
242 static bool kvm_request_needs_ipi(struct kvm_vcpu *vcpu, unsigned req)
243 {
244 	int mode = kvm_vcpu_exiting_guest_mode(vcpu);
245 
246 	/*
247 	 * We need to wait for the VCPU to reenable interrupts and get out of
248 	 * READING_SHADOW_PAGE_TABLES mode.
249 	 */
250 	if (req & KVM_REQUEST_WAIT)
251 		return mode != OUTSIDE_GUEST_MODE;
252 
253 	/*
254 	 * Need to kick a running VCPU, but otherwise there is nothing to do.
255 	 */
256 	return mode == IN_GUEST_MODE;
257 }
258 
259 static void ack_kick(void *_completed)
260 {
261 }
262 
263 static inline bool kvm_kick_many_cpus(struct cpumask *cpus, bool wait)
264 {
265 	if (cpumask_empty(cpus))
266 		return false;
267 
268 	smp_call_function_many(cpus, ack_kick, NULL, wait);
269 	return true;
270 }
271 
272 static void kvm_make_vcpu_request(struct kvm_vcpu *vcpu, unsigned int req,
273 				  struct cpumask *tmp, int current_cpu)
274 {
275 	int cpu;
276 
277 	if (likely(!(req & KVM_REQUEST_NO_ACTION)))
278 		__kvm_make_request(req, vcpu);
279 
280 	if (!(req & KVM_REQUEST_NO_WAKEUP) && kvm_vcpu_wake_up(vcpu))
281 		return;
282 
283 	/*
284 	 * Note, the vCPU could get migrated to a different pCPU at any point
285 	 * after kvm_request_needs_ipi(), which could result in sending an IPI
286 	 * to the previous pCPU.  But, that's OK because the purpose of the IPI
287 	 * is to ensure the vCPU returns to OUTSIDE_GUEST_MODE, which is
288 	 * satisfied if the vCPU migrates. Entering READING_SHADOW_PAGE_TABLES
289 	 * after this point is also OK, as the requirement is only that KVM wait
290 	 * for vCPUs that were reading SPTEs _before_ any changes were
291 	 * finalized. See kvm_vcpu_kick() for more details on handling requests.
292 	 */
293 	if (kvm_request_needs_ipi(vcpu, req)) {
294 		cpu = READ_ONCE(vcpu->cpu);
295 		if (cpu != -1 && cpu != current_cpu)
296 			__cpumask_set_cpu(cpu, tmp);
297 	}
298 }
299 
300 bool kvm_make_vcpus_request_mask(struct kvm *kvm, unsigned int req,
301 				 unsigned long *vcpu_bitmap)
302 {
303 	struct kvm_vcpu *vcpu;
304 	struct cpumask *cpus;
305 	int i, me;
306 	bool called;
307 
308 	me = get_cpu();
309 
310 	cpus = this_cpu_cpumask_var_ptr(cpu_kick_mask);
311 	cpumask_clear(cpus);
312 
313 	for_each_set_bit(i, vcpu_bitmap, KVM_MAX_VCPUS) {
314 		vcpu = kvm_get_vcpu(kvm, i);
315 		if (!vcpu)
316 			continue;
317 		kvm_make_vcpu_request(vcpu, req, cpus, me);
318 	}
319 
320 	called = kvm_kick_many_cpus(cpus, !!(req & KVM_REQUEST_WAIT));
321 	put_cpu();
322 
323 	return called;
324 }
325 
326 bool kvm_make_all_cpus_request_except(struct kvm *kvm, unsigned int req,
327 				      struct kvm_vcpu *except)
328 {
329 	struct kvm_vcpu *vcpu;
330 	struct cpumask *cpus;
331 	unsigned long i;
332 	bool called;
333 	int me;
334 
335 	me = get_cpu();
336 
337 	cpus = this_cpu_cpumask_var_ptr(cpu_kick_mask);
338 	cpumask_clear(cpus);
339 
340 	kvm_for_each_vcpu(i, vcpu, kvm) {
341 		if (vcpu == except)
342 			continue;
343 		kvm_make_vcpu_request(vcpu, req, cpus, me);
344 	}
345 
346 	called = kvm_kick_many_cpus(cpus, !!(req & KVM_REQUEST_WAIT));
347 	put_cpu();
348 
349 	return called;
350 }
351 
352 bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req)
353 {
354 	return kvm_make_all_cpus_request_except(kvm, req, NULL);
355 }
356 EXPORT_SYMBOL_GPL(kvm_make_all_cpus_request);
357 
358 #ifndef CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL
359 void kvm_flush_remote_tlbs(struct kvm *kvm)
360 {
361 	++kvm->stat.generic.remote_tlb_flush_requests;
362 
363 	/*
364 	 * We want to publish modifications to the page tables before reading
365 	 * mode. Pairs with a memory barrier in arch-specific code.
366 	 * - x86: smp_mb__after_srcu_read_unlock in vcpu_enter_guest
367 	 * and smp_mb in walk_shadow_page_lockless_begin/end.
368 	 * - powerpc: smp_mb in kvmppc_prepare_to_enter.
369 	 *
370 	 * There is already an smp_mb__after_atomic() before
371 	 * kvm_make_all_cpus_request() reads vcpu->mode. We reuse that
372 	 * barrier here.
373 	 */
374 	if (!kvm_arch_flush_remote_tlb(kvm)
375 	    || kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
376 		++kvm->stat.generic.remote_tlb_flush;
377 }
378 EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
379 #endif
380 
381 static void kvm_flush_shadow_all(struct kvm *kvm)
382 {
383 	kvm_arch_flush_shadow_all(kvm);
384 	kvm_arch_guest_memory_reclaimed(kvm);
385 }
386 
387 #ifdef KVM_ARCH_NR_OBJS_PER_MEMORY_CACHE
388 static inline void *mmu_memory_cache_alloc_obj(struct kvm_mmu_memory_cache *mc,
389 					       gfp_t gfp_flags)
390 {
391 	gfp_flags |= mc->gfp_zero;
392 
393 	if (mc->kmem_cache)
394 		return kmem_cache_alloc(mc->kmem_cache, gfp_flags);
395 	else
396 		return (void *)__get_free_page(gfp_flags);
397 }
398 
399 int __kvm_mmu_topup_memory_cache(struct kvm_mmu_memory_cache *mc, int capacity, int min)
400 {
401 	gfp_t gfp = mc->gfp_custom ? mc->gfp_custom : GFP_KERNEL_ACCOUNT;
402 	void *obj;
403 
404 	if (mc->nobjs >= min)
405 		return 0;
406 
407 	if (unlikely(!mc->objects)) {
408 		if (WARN_ON_ONCE(!capacity))
409 			return -EIO;
410 
411 		mc->objects = kvmalloc_array(sizeof(void *), capacity, gfp);
412 		if (!mc->objects)
413 			return -ENOMEM;
414 
415 		mc->capacity = capacity;
416 	}
417 
418 	/* It is illegal to request a different capacity across topups. */
419 	if (WARN_ON_ONCE(mc->capacity != capacity))
420 		return -EIO;
421 
422 	while (mc->nobjs < mc->capacity) {
423 		obj = mmu_memory_cache_alloc_obj(mc, gfp);
424 		if (!obj)
425 			return mc->nobjs >= min ? 0 : -ENOMEM;
426 		mc->objects[mc->nobjs++] = obj;
427 	}
428 	return 0;
429 }
430 
431 int kvm_mmu_topup_memory_cache(struct kvm_mmu_memory_cache *mc, int min)
432 {
433 	return __kvm_mmu_topup_memory_cache(mc, KVM_ARCH_NR_OBJS_PER_MEMORY_CACHE, min);
434 }
435 
436 int kvm_mmu_memory_cache_nr_free_objects(struct kvm_mmu_memory_cache *mc)
437 {
438 	return mc->nobjs;
439 }
440 
441 void kvm_mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc)
442 {
443 	while (mc->nobjs) {
444 		if (mc->kmem_cache)
445 			kmem_cache_free(mc->kmem_cache, mc->objects[--mc->nobjs]);
446 		else
447 			free_page((unsigned long)mc->objects[--mc->nobjs]);
448 	}
449 
450 	kvfree(mc->objects);
451 
452 	mc->objects = NULL;
453 	mc->capacity = 0;
454 }
455 
456 void *kvm_mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
457 {
458 	void *p;
459 
460 	if (WARN_ON(!mc->nobjs))
461 		p = mmu_memory_cache_alloc_obj(mc, GFP_ATOMIC | __GFP_ACCOUNT);
462 	else
463 		p = mc->objects[--mc->nobjs];
464 	BUG_ON(!p);
465 	return p;
466 }
467 #endif
468 
469 static void kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
470 {
471 	mutex_init(&vcpu->mutex);
472 	vcpu->cpu = -1;
473 	vcpu->kvm = kvm;
474 	vcpu->vcpu_id = id;
475 	vcpu->pid = NULL;
476 #ifndef __KVM_HAVE_ARCH_WQP
477 	rcuwait_init(&vcpu->wait);
478 #endif
479 	kvm_async_pf_vcpu_init(vcpu);
480 
481 	kvm_vcpu_set_in_spin_loop(vcpu, false);
482 	kvm_vcpu_set_dy_eligible(vcpu, false);
483 	vcpu->preempted = false;
484 	vcpu->ready = false;
485 	preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
486 	vcpu->last_used_slot = NULL;
487 
488 	/* Fill the stats id string for the vcpu */
489 	snprintf(vcpu->stats_id, sizeof(vcpu->stats_id), "kvm-%d/vcpu-%d",
490 		 task_pid_nr(current), id);
491 }
492 
493 static void kvm_vcpu_destroy(struct kvm_vcpu *vcpu)
494 {
495 	kvm_arch_vcpu_destroy(vcpu);
496 	kvm_dirty_ring_free(&vcpu->dirty_ring);
497 
498 	/*
499 	 * No need for rcu_read_lock as VCPU_RUN is the only place that changes
500 	 * the vcpu->pid pointer, and at destruction time all file descriptors
501 	 * are already gone.
502 	 */
503 	put_pid(rcu_dereference_protected(vcpu->pid, 1));
504 
505 	free_page((unsigned long)vcpu->run);
506 	kmem_cache_free(kvm_vcpu_cache, vcpu);
507 }
508 
509 void kvm_destroy_vcpus(struct kvm *kvm)
510 {
511 	unsigned long i;
512 	struct kvm_vcpu *vcpu;
513 
514 	kvm_for_each_vcpu(i, vcpu, kvm) {
515 		kvm_vcpu_destroy(vcpu);
516 		xa_erase(&kvm->vcpu_array, i);
517 	}
518 
519 	atomic_set(&kvm->online_vcpus, 0);
520 }
521 EXPORT_SYMBOL_GPL(kvm_destroy_vcpus);
522 
523 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
524 static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
525 {
526 	return container_of(mn, struct kvm, mmu_notifier);
527 }
528 
529 static void kvm_mmu_notifier_invalidate_range(struct mmu_notifier *mn,
530 					      struct mm_struct *mm,
531 					      unsigned long start, unsigned long end)
532 {
533 	struct kvm *kvm = mmu_notifier_to_kvm(mn);
534 	int idx;
535 
536 	idx = srcu_read_lock(&kvm->srcu);
537 	kvm_arch_mmu_notifier_invalidate_range(kvm, start, end);
538 	srcu_read_unlock(&kvm->srcu, idx);
539 }
540 
541 typedef bool (*hva_handler_t)(struct kvm *kvm, struct kvm_gfn_range *range);
542 
543 typedef void (*on_lock_fn_t)(struct kvm *kvm, unsigned long start,
544 			     unsigned long end);
545 
546 typedef void (*on_unlock_fn_t)(struct kvm *kvm);
547 
548 struct kvm_hva_range {
549 	unsigned long start;
550 	unsigned long end;
551 	pte_t pte;
552 	hva_handler_t handler;
553 	on_lock_fn_t on_lock;
554 	on_unlock_fn_t on_unlock;
555 	bool flush_on_ret;
556 	bool may_block;
557 };
558 
559 /*
560  * Use a dedicated stub instead of NULL to indicate that there is no callback
561  * function/handler.  The compiler technically can't guarantee that a real
562  * function will have a non-zero address, and so it will generate code to
563  * check for !NULL, whereas comparing against a stub will be elided at compile
564  * time (unless the compiler is getting long in the tooth, e.g. gcc 4.9).
565  */
566 static void kvm_null_fn(void)
567 {
568 
569 }
570 #define IS_KVM_NULL_FN(fn) ((fn) == (void *)kvm_null_fn)
571 
572 /* Iterate over each memslot intersecting [start, last] (inclusive) range */
573 #define kvm_for_each_memslot_in_hva_range(node, slots, start, last)	     \
574 	for (node = interval_tree_iter_first(&slots->hva_tree, start, last); \
575 	     node;							     \
576 	     node = interval_tree_iter_next(node, start, last))	     \
577 
578 static __always_inline int __kvm_handle_hva_range(struct kvm *kvm,
579 						  const struct kvm_hva_range *range)
580 {
581 	bool ret = false, locked = false;
582 	struct kvm_gfn_range gfn_range;
583 	struct kvm_memory_slot *slot;
584 	struct kvm_memslots *slots;
585 	int i, idx;
586 
587 	if (WARN_ON_ONCE(range->end <= range->start))
588 		return 0;
589 
590 	/* A null handler is allowed if and only if on_lock() is provided. */
591 	if (WARN_ON_ONCE(IS_KVM_NULL_FN(range->on_lock) &&
592 			 IS_KVM_NULL_FN(range->handler)))
593 		return 0;
594 
595 	idx = srcu_read_lock(&kvm->srcu);
596 
597 	for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
598 		struct interval_tree_node *node;
599 
600 		slots = __kvm_memslots(kvm, i);
601 		kvm_for_each_memslot_in_hva_range(node, slots,
602 						  range->start, range->end - 1) {
603 			unsigned long hva_start, hva_end;
604 
605 			slot = container_of(node, struct kvm_memory_slot, hva_node[slots->node_idx]);
606 			hva_start = max(range->start, slot->userspace_addr);
607 			hva_end = min(range->end, slot->userspace_addr +
608 						  (slot->npages << PAGE_SHIFT));
609 
610 			/*
611 			 * To optimize for the likely case where the address
612 			 * range is covered by zero or one memslots, don't
613 			 * bother making these conditional (to avoid writes on
614 			 * the second or later invocation of the handler).
615 			 */
616 			gfn_range.pte = range->pte;
617 			gfn_range.may_block = range->may_block;
618 
619 			/*
620 			 * {gfn(page) | page intersects with [hva_start, hva_end)} =
621 			 * {gfn_start, gfn_start+1, ..., gfn_end-1}.
622 			 */
623 			gfn_range.start = hva_to_gfn_memslot(hva_start, slot);
624 			gfn_range.end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, slot);
625 			gfn_range.slot = slot;
626 
627 			if (!locked) {
628 				locked = true;
629 				KVM_MMU_LOCK(kvm);
630 				if (!IS_KVM_NULL_FN(range->on_lock))
631 					range->on_lock(kvm, range->start, range->end);
632 				if (IS_KVM_NULL_FN(range->handler))
633 					break;
634 			}
635 			ret |= range->handler(kvm, &gfn_range);
636 		}
637 	}
638 
639 	if (range->flush_on_ret && ret)
640 		kvm_flush_remote_tlbs(kvm);
641 
642 	if (locked) {
643 		KVM_MMU_UNLOCK(kvm);
644 		if (!IS_KVM_NULL_FN(range->on_unlock))
645 			range->on_unlock(kvm);
646 	}
647 
648 	srcu_read_unlock(&kvm->srcu, idx);
649 
650 	/* The notifiers are averse to booleans. :-( */
651 	return (int)ret;
652 }
653 
654 static __always_inline int kvm_handle_hva_range(struct mmu_notifier *mn,
655 						unsigned long start,
656 						unsigned long end,
657 						pte_t pte,
658 						hva_handler_t handler)
659 {
660 	struct kvm *kvm = mmu_notifier_to_kvm(mn);
661 	const struct kvm_hva_range range = {
662 		.start		= start,
663 		.end		= end,
664 		.pte		= pte,
665 		.handler	= handler,
666 		.on_lock	= (void *)kvm_null_fn,
667 		.on_unlock	= (void *)kvm_null_fn,
668 		.flush_on_ret	= true,
669 		.may_block	= false,
670 	};
671 
672 	return __kvm_handle_hva_range(kvm, &range);
673 }
674 
675 static __always_inline int kvm_handle_hva_range_no_flush(struct mmu_notifier *mn,
676 							 unsigned long start,
677 							 unsigned long end,
678 							 hva_handler_t handler)
679 {
680 	struct kvm *kvm = mmu_notifier_to_kvm(mn);
681 	const struct kvm_hva_range range = {
682 		.start		= start,
683 		.end		= end,
684 		.pte		= __pte(0),
685 		.handler	= handler,
686 		.on_lock	= (void *)kvm_null_fn,
687 		.on_unlock	= (void *)kvm_null_fn,
688 		.flush_on_ret	= false,
689 		.may_block	= false,
690 	};
691 
692 	return __kvm_handle_hva_range(kvm, &range);
693 }
694 static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
695 					struct mm_struct *mm,
696 					unsigned long address,
697 					pte_t pte)
698 {
699 	struct kvm *kvm = mmu_notifier_to_kvm(mn);
700 
701 	trace_kvm_set_spte_hva(address);
702 
703 	/*
704 	 * .change_pte() must be surrounded by .invalidate_range_{start,end}().
705 	 * If mmu_invalidate_in_progress is zero, then no in-progress
706 	 * invalidations, including this one, found a relevant memslot at
707 	 * start(); rechecking memslots here is unnecessary.  Note, a false
708 	 * positive (count elevated by a different invalidation) is sub-optimal
709 	 * but functionally ok.
710 	 */
711 	WARN_ON_ONCE(!READ_ONCE(kvm->mn_active_invalidate_count));
712 	if (!READ_ONCE(kvm->mmu_invalidate_in_progress))
713 		return;
714 
715 	kvm_handle_hva_range(mn, address, address + 1, pte, kvm_set_spte_gfn);
716 }
717 
718 void kvm_mmu_invalidate_begin(struct kvm *kvm, unsigned long start,
719 			      unsigned long end)
720 {
721 	/*
722 	 * The count increase must become visible at unlock time as no
723 	 * spte can be established without taking the mmu_lock and
724 	 * count is also read inside the mmu_lock critical section.
725 	 */
726 	kvm->mmu_invalidate_in_progress++;
727 	if (likely(kvm->mmu_invalidate_in_progress == 1)) {
728 		kvm->mmu_invalidate_range_start = start;
729 		kvm->mmu_invalidate_range_end = end;
730 	} else {
731 		/*
732 		 * Fully tracking multiple concurrent ranges has diminishing
733 		 * returns. Keep things simple and just find the minimal range
734 		 * which includes the current and new ranges. As there won't be
735 		 * enough information to subtract a range after its invalidate
736 		 * completes, any ranges invalidated concurrently will
737 		 * accumulate and persist until all outstanding invalidates
738 		 * complete.
739 		 */
740 		kvm->mmu_invalidate_range_start =
741 			min(kvm->mmu_invalidate_range_start, start);
742 		kvm->mmu_invalidate_range_end =
743 			max(kvm->mmu_invalidate_range_end, end);
744 	}
745 }
746 
747 static int kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
748 					const struct mmu_notifier_range *range)
749 {
750 	struct kvm *kvm = mmu_notifier_to_kvm(mn);
751 	const struct kvm_hva_range hva_range = {
752 		.start		= range->start,
753 		.end		= range->end,
754 		.pte		= __pte(0),
755 		.handler	= kvm_unmap_gfn_range,
756 		.on_lock	= kvm_mmu_invalidate_begin,
757 		.on_unlock	= kvm_arch_guest_memory_reclaimed,
758 		.flush_on_ret	= true,
759 		.may_block	= mmu_notifier_range_blockable(range),
760 	};
761 
762 	trace_kvm_unmap_hva_range(range->start, range->end);
763 
764 	/*
765 	 * Prevent memslot modification between range_start() and range_end()
766 	 * so that conditionally locking provides the same result in both
767 	 * functions.  Without that guarantee, the mmu_invalidate_in_progress
768 	 * adjustments will be imbalanced.
769 	 *
770 	 * Pairs with the decrement in range_end().
771 	 */
772 	spin_lock(&kvm->mn_invalidate_lock);
773 	kvm->mn_active_invalidate_count++;
774 	spin_unlock(&kvm->mn_invalidate_lock);
775 
776 	/*
777 	 * Invalidate pfn caches _before_ invalidating the secondary MMUs, i.e.
778 	 * before acquiring mmu_lock, to avoid holding mmu_lock while acquiring
779 	 * each cache's lock.  There are relatively few caches in existence at
780 	 * any given time, and the caches themselves can check for hva overlap,
781 	 * i.e. don't need to rely on memslot overlap checks for performance.
782 	 * Because this runs without holding mmu_lock, the pfn caches must use
783 	 * mn_active_invalidate_count (see above) instead of
784 	 * mmu_invalidate_in_progress.
785 	 */
786 	gfn_to_pfn_cache_invalidate_start(kvm, range->start, range->end,
787 					  hva_range.may_block);
788 
789 	__kvm_handle_hva_range(kvm, &hva_range);
790 
791 	return 0;
792 }
793 
794 void kvm_mmu_invalidate_end(struct kvm *kvm, unsigned long start,
795 			    unsigned long end)
796 {
797 	/*
798 	 * This sequence increase will notify the kvm page fault that
799 	 * the page that is going to be mapped in the spte could have
800 	 * been freed.
801 	 */
802 	kvm->mmu_invalidate_seq++;
803 	smp_wmb();
804 	/*
805 	 * The above sequence increase must be visible before the
806 	 * below count decrease, which is ensured by the smp_wmb above
807 	 * in conjunction with the smp_rmb in mmu_invalidate_retry().
808 	 */
809 	kvm->mmu_invalidate_in_progress--;
810 }
811 
812 static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
813 					const struct mmu_notifier_range *range)
814 {
815 	struct kvm *kvm = mmu_notifier_to_kvm(mn);
816 	const struct kvm_hva_range hva_range = {
817 		.start		= range->start,
818 		.end		= range->end,
819 		.pte		= __pte(0),
820 		.handler	= (void *)kvm_null_fn,
821 		.on_lock	= kvm_mmu_invalidate_end,
822 		.on_unlock	= (void *)kvm_null_fn,
823 		.flush_on_ret	= false,
824 		.may_block	= mmu_notifier_range_blockable(range),
825 	};
826 	bool wake;
827 
828 	__kvm_handle_hva_range(kvm, &hva_range);
829 
830 	/* Pairs with the increment in range_start(). */
831 	spin_lock(&kvm->mn_invalidate_lock);
832 	wake = (--kvm->mn_active_invalidate_count == 0);
833 	spin_unlock(&kvm->mn_invalidate_lock);
834 
835 	/*
836 	 * There can only be one waiter, since the wait happens under
837 	 * slots_lock.
838 	 */
839 	if (wake)
840 		rcuwait_wake_up(&kvm->mn_memslots_update_rcuwait);
841 
842 	BUG_ON(kvm->mmu_invalidate_in_progress < 0);
843 }
844 
845 static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
846 					      struct mm_struct *mm,
847 					      unsigned long start,
848 					      unsigned long end)
849 {
850 	trace_kvm_age_hva(start, end);
851 
852 	return kvm_handle_hva_range(mn, start, end, __pte(0), kvm_age_gfn);
853 }
854 
855 static int kvm_mmu_notifier_clear_young(struct mmu_notifier *mn,
856 					struct mm_struct *mm,
857 					unsigned long start,
858 					unsigned long end)
859 {
860 	trace_kvm_age_hva(start, end);
861 
862 	/*
863 	 * Even though we do not flush TLB, this will still adversely
864 	 * affect performance on pre-Haswell Intel EPT, where there is
865 	 * no EPT Access Bit to clear so that we have to tear down EPT
866 	 * tables instead. If we find this unacceptable, we can always
867 	 * add a parameter to kvm_age_hva so that it effectively doesn't
868 	 * do anything on clear_young.
869 	 *
870 	 * Also note that currently we never issue secondary TLB flushes
871 	 * from clear_young, leaving this job up to the regular system
872 	 * cadence. If we find this inaccurate, we might come up with a
873 	 * more sophisticated heuristic later.
874 	 */
875 	return kvm_handle_hva_range_no_flush(mn, start, end, kvm_age_gfn);
876 }
877 
878 static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
879 				       struct mm_struct *mm,
880 				       unsigned long address)
881 {
882 	trace_kvm_test_age_hva(address);
883 
884 	return kvm_handle_hva_range_no_flush(mn, address, address + 1,
885 					     kvm_test_age_gfn);
886 }
887 
888 static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
889 				     struct mm_struct *mm)
890 {
891 	struct kvm *kvm = mmu_notifier_to_kvm(mn);
892 	int idx;
893 
894 	idx = srcu_read_lock(&kvm->srcu);
895 	kvm_flush_shadow_all(kvm);
896 	srcu_read_unlock(&kvm->srcu, idx);
897 }
898 
899 static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
900 	.invalidate_range	= kvm_mmu_notifier_invalidate_range,
901 	.invalidate_range_start	= kvm_mmu_notifier_invalidate_range_start,
902 	.invalidate_range_end	= kvm_mmu_notifier_invalidate_range_end,
903 	.clear_flush_young	= kvm_mmu_notifier_clear_flush_young,
904 	.clear_young		= kvm_mmu_notifier_clear_young,
905 	.test_young		= kvm_mmu_notifier_test_young,
906 	.change_pte		= kvm_mmu_notifier_change_pte,
907 	.release		= kvm_mmu_notifier_release,
908 };
909 
910 static int kvm_init_mmu_notifier(struct kvm *kvm)
911 {
912 	kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
913 	return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
914 }
915 
916 #else  /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
917 
918 static int kvm_init_mmu_notifier(struct kvm *kvm)
919 {
920 	return 0;
921 }
922 
923 #endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
924 
925 #ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
926 static int kvm_pm_notifier_call(struct notifier_block *bl,
927 				unsigned long state,
928 				void *unused)
929 {
930 	struct kvm *kvm = container_of(bl, struct kvm, pm_notifier);
931 
932 	return kvm_arch_pm_notifier(kvm, state);
933 }
934 
935 static void kvm_init_pm_notifier(struct kvm *kvm)
936 {
937 	kvm->pm_notifier.notifier_call = kvm_pm_notifier_call;
938 	/* Suspend KVM before we suspend ftrace, RCU, etc. */
939 	kvm->pm_notifier.priority = INT_MAX;
940 	register_pm_notifier(&kvm->pm_notifier);
941 }
942 
943 static void kvm_destroy_pm_notifier(struct kvm *kvm)
944 {
945 	unregister_pm_notifier(&kvm->pm_notifier);
946 }
947 #else /* !CONFIG_HAVE_KVM_PM_NOTIFIER */
948 static void kvm_init_pm_notifier(struct kvm *kvm)
949 {
950 }
951 
952 static void kvm_destroy_pm_notifier(struct kvm *kvm)
953 {
954 }
955 #endif /* CONFIG_HAVE_KVM_PM_NOTIFIER */
956 
957 static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
958 {
959 	if (!memslot->dirty_bitmap)
960 		return;
961 
962 	kvfree(memslot->dirty_bitmap);
963 	memslot->dirty_bitmap = NULL;
964 }
965 
966 /* This does not remove the slot from struct kvm_memslots data structures */
967 static void kvm_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
968 {
969 	kvm_destroy_dirty_bitmap(slot);
970 
971 	kvm_arch_free_memslot(kvm, slot);
972 
973 	kfree(slot);
974 }
975 
976 static void kvm_free_memslots(struct kvm *kvm, struct kvm_memslots *slots)
977 {
978 	struct hlist_node *idnode;
979 	struct kvm_memory_slot *memslot;
980 	int bkt;
981 
982 	/*
983 	 * The same memslot objects live in both active and inactive sets,
984 	 * arbitrarily free using index '1' so the second invocation of this
985 	 * function isn't operating over a structure with dangling pointers
986 	 * (even though this function isn't actually touching them).
987 	 */
988 	if (!slots->node_idx)
989 		return;
990 
991 	hash_for_each_safe(slots->id_hash, bkt, idnode, memslot, id_node[1])
992 		kvm_free_memslot(kvm, memslot);
993 }
994 
995 static umode_t kvm_stats_debugfs_mode(const struct _kvm_stats_desc *pdesc)
996 {
997 	switch (pdesc->desc.flags & KVM_STATS_TYPE_MASK) {
998 	case KVM_STATS_TYPE_INSTANT:
999 		return 0444;
1000 	case KVM_STATS_TYPE_CUMULATIVE:
1001 	case KVM_STATS_TYPE_PEAK:
1002 	default:
1003 		return 0644;
1004 	}
1005 }
1006 
1007 
1008 static void kvm_destroy_vm_debugfs(struct kvm *kvm)
1009 {
1010 	int i;
1011 	int kvm_debugfs_num_entries = kvm_vm_stats_header.num_desc +
1012 				      kvm_vcpu_stats_header.num_desc;
1013 
1014 	if (IS_ERR(kvm->debugfs_dentry))
1015 		return;
1016 
1017 	debugfs_remove_recursive(kvm->debugfs_dentry);
1018 
1019 	if (kvm->debugfs_stat_data) {
1020 		for (i = 0; i < kvm_debugfs_num_entries; i++)
1021 			kfree(kvm->debugfs_stat_data[i]);
1022 		kfree(kvm->debugfs_stat_data);
1023 	}
1024 }
1025 
1026 static int kvm_create_vm_debugfs(struct kvm *kvm, const char *fdname)
1027 {
1028 	static DEFINE_MUTEX(kvm_debugfs_lock);
1029 	struct dentry *dent;
1030 	char dir_name[ITOA_MAX_LEN * 2];
1031 	struct kvm_stat_data *stat_data;
1032 	const struct _kvm_stats_desc *pdesc;
1033 	int i, ret = -ENOMEM;
1034 	int kvm_debugfs_num_entries = kvm_vm_stats_header.num_desc +
1035 				      kvm_vcpu_stats_header.num_desc;
1036 
1037 	if (!debugfs_initialized())
1038 		return 0;
1039 
1040 	snprintf(dir_name, sizeof(dir_name), "%d-%s", task_pid_nr(current), fdname);
1041 	mutex_lock(&kvm_debugfs_lock);
1042 	dent = debugfs_lookup(dir_name, kvm_debugfs_dir);
1043 	if (dent) {
1044 		pr_warn_ratelimited("KVM: debugfs: duplicate directory %s\n", dir_name);
1045 		dput(dent);
1046 		mutex_unlock(&kvm_debugfs_lock);
1047 		return 0;
1048 	}
1049 	dent = debugfs_create_dir(dir_name, kvm_debugfs_dir);
1050 	mutex_unlock(&kvm_debugfs_lock);
1051 	if (IS_ERR(dent))
1052 		return 0;
1053 
1054 	kvm->debugfs_dentry = dent;
1055 	kvm->debugfs_stat_data = kcalloc(kvm_debugfs_num_entries,
1056 					 sizeof(*kvm->debugfs_stat_data),
1057 					 GFP_KERNEL_ACCOUNT);
1058 	if (!kvm->debugfs_stat_data)
1059 		goto out_err;
1060 
1061 	for (i = 0; i < kvm_vm_stats_header.num_desc; ++i) {
1062 		pdesc = &kvm_vm_stats_desc[i];
1063 		stat_data = kzalloc(sizeof(*stat_data), GFP_KERNEL_ACCOUNT);
1064 		if (!stat_data)
1065 			goto out_err;
1066 
1067 		stat_data->kvm = kvm;
1068 		stat_data->desc = pdesc;
1069 		stat_data->kind = KVM_STAT_VM;
1070 		kvm->debugfs_stat_data[i] = stat_data;
1071 		debugfs_create_file(pdesc->name, kvm_stats_debugfs_mode(pdesc),
1072 				    kvm->debugfs_dentry, stat_data,
1073 				    &stat_fops_per_vm);
1074 	}
1075 
1076 	for (i = 0; i < kvm_vcpu_stats_header.num_desc; ++i) {
1077 		pdesc = &kvm_vcpu_stats_desc[i];
1078 		stat_data = kzalloc(sizeof(*stat_data), GFP_KERNEL_ACCOUNT);
1079 		if (!stat_data)
1080 			goto out_err;
1081 
1082 		stat_data->kvm = kvm;
1083 		stat_data->desc = pdesc;
1084 		stat_data->kind = KVM_STAT_VCPU;
1085 		kvm->debugfs_stat_data[i + kvm_vm_stats_header.num_desc] = stat_data;
1086 		debugfs_create_file(pdesc->name, kvm_stats_debugfs_mode(pdesc),
1087 				    kvm->debugfs_dentry, stat_data,
1088 				    &stat_fops_per_vm);
1089 	}
1090 
1091 	ret = kvm_arch_create_vm_debugfs(kvm);
1092 	if (ret)
1093 		goto out_err;
1094 
1095 	return 0;
1096 out_err:
1097 	kvm_destroy_vm_debugfs(kvm);
1098 	return ret;
1099 }
1100 
1101 /*
1102  * Called after the VM is otherwise initialized, but just before adding it to
1103  * the vm_list.
1104  */
1105 int __weak kvm_arch_post_init_vm(struct kvm *kvm)
1106 {
1107 	return 0;
1108 }
1109 
1110 /*
1111  * Called just after removing the VM from the vm_list, but before doing any
1112  * other destruction.
1113  */
1114 void __weak kvm_arch_pre_destroy_vm(struct kvm *kvm)
1115 {
1116 }
1117 
1118 /*
1119  * Called after per-vm debugfs created.  When called kvm->debugfs_dentry should
1120  * be setup already, so we can create arch-specific debugfs entries under it.
1121  * Cleanup should be automatic done in kvm_destroy_vm_debugfs() recursively, so
1122  * a per-arch destroy interface is not needed.
1123  */
1124 int __weak kvm_arch_create_vm_debugfs(struct kvm *kvm)
1125 {
1126 	return 0;
1127 }
1128 
1129 static struct kvm *kvm_create_vm(unsigned long type, const char *fdname)
1130 {
1131 	struct kvm *kvm = kvm_arch_alloc_vm();
1132 	struct kvm_memslots *slots;
1133 	int r = -ENOMEM;
1134 	int i, j;
1135 
1136 	if (!kvm)
1137 		return ERR_PTR(-ENOMEM);
1138 
1139 	/* KVM is pinned via open("/dev/kvm"), the fd passed to this ioctl(). */
1140 	__module_get(kvm_chardev_ops.owner);
1141 
1142 	KVM_MMU_LOCK_INIT(kvm);
1143 	mmgrab(current->mm);
1144 	kvm->mm = current->mm;
1145 	kvm_eventfd_init(kvm);
1146 	mutex_init(&kvm->lock);
1147 	mutex_init(&kvm->irq_lock);
1148 	mutex_init(&kvm->slots_lock);
1149 	mutex_init(&kvm->slots_arch_lock);
1150 	spin_lock_init(&kvm->mn_invalidate_lock);
1151 	rcuwait_init(&kvm->mn_memslots_update_rcuwait);
1152 	xa_init(&kvm->vcpu_array);
1153 
1154 	INIT_LIST_HEAD(&kvm->gpc_list);
1155 	spin_lock_init(&kvm->gpc_lock);
1156 
1157 	INIT_LIST_HEAD(&kvm->devices);
1158 	kvm->max_vcpus = KVM_MAX_VCPUS;
1159 
1160 	BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
1161 
1162 	/*
1163 	 * Force subsequent debugfs file creations to fail if the VM directory
1164 	 * is not created (by kvm_create_vm_debugfs()).
1165 	 */
1166 	kvm->debugfs_dentry = ERR_PTR(-ENOENT);
1167 
1168 	snprintf(kvm->stats_id, sizeof(kvm->stats_id), "kvm-%d",
1169 		 task_pid_nr(current));
1170 
1171 	if (init_srcu_struct(&kvm->srcu))
1172 		goto out_err_no_srcu;
1173 	if (init_srcu_struct(&kvm->irq_srcu))
1174 		goto out_err_no_irq_srcu;
1175 
1176 	refcount_set(&kvm->users_count, 1);
1177 	for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
1178 		for (j = 0; j < 2; j++) {
1179 			slots = &kvm->__memslots[i][j];
1180 
1181 			atomic_long_set(&slots->last_used_slot, (unsigned long)NULL);
1182 			slots->hva_tree = RB_ROOT_CACHED;
1183 			slots->gfn_tree = RB_ROOT;
1184 			hash_init(slots->id_hash);
1185 			slots->node_idx = j;
1186 
1187 			/* Generations must be different for each address space. */
1188 			slots->generation = i;
1189 		}
1190 
1191 		rcu_assign_pointer(kvm->memslots[i], &kvm->__memslots[i][0]);
1192 	}
1193 
1194 	for (i = 0; i < KVM_NR_BUSES; i++) {
1195 		rcu_assign_pointer(kvm->buses[i],
1196 			kzalloc(sizeof(struct kvm_io_bus), GFP_KERNEL_ACCOUNT));
1197 		if (!kvm->buses[i])
1198 			goto out_err_no_arch_destroy_vm;
1199 	}
1200 
1201 	kvm->max_halt_poll_ns = halt_poll_ns;
1202 
1203 	r = kvm_arch_init_vm(kvm, type);
1204 	if (r)
1205 		goto out_err_no_arch_destroy_vm;
1206 
1207 	r = hardware_enable_all();
1208 	if (r)
1209 		goto out_err_no_disable;
1210 
1211 #ifdef CONFIG_HAVE_KVM_IRQFD
1212 	INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
1213 #endif
1214 
1215 	r = kvm_init_mmu_notifier(kvm);
1216 	if (r)
1217 		goto out_err_no_mmu_notifier;
1218 
1219 	r = kvm_coalesced_mmio_init(kvm);
1220 	if (r < 0)
1221 		goto out_no_coalesced_mmio;
1222 
1223 	r = kvm_create_vm_debugfs(kvm, fdname);
1224 	if (r)
1225 		goto out_err_no_debugfs;
1226 
1227 	r = kvm_arch_post_init_vm(kvm);
1228 	if (r)
1229 		goto out_err;
1230 
1231 	mutex_lock(&kvm_lock);
1232 	list_add(&kvm->vm_list, &vm_list);
1233 	mutex_unlock(&kvm_lock);
1234 
1235 	preempt_notifier_inc();
1236 	kvm_init_pm_notifier(kvm);
1237 
1238 	return kvm;
1239 
1240 out_err:
1241 	kvm_destroy_vm_debugfs(kvm);
1242 out_err_no_debugfs:
1243 	kvm_coalesced_mmio_free(kvm);
1244 out_no_coalesced_mmio:
1245 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
1246 	if (kvm->mmu_notifier.ops)
1247 		mmu_notifier_unregister(&kvm->mmu_notifier, current->mm);
1248 #endif
1249 out_err_no_mmu_notifier:
1250 	hardware_disable_all();
1251 out_err_no_disable:
1252 	kvm_arch_destroy_vm(kvm);
1253 out_err_no_arch_destroy_vm:
1254 	WARN_ON_ONCE(!refcount_dec_and_test(&kvm->users_count));
1255 	for (i = 0; i < KVM_NR_BUSES; i++)
1256 		kfree(kvm_get_bus(kvm, i));
1257 	cleanup_srcu_struct(&kvm->irq_srcu);
1258 out_err_no_irq_srcu:
1259 	cleanup_srcu_struct(&kvm->srcu);
1260 out_err_no_srcu:
1261 	kvm_arch_free_vm(kvm);
1262 	mmdrop(current->mm);
1263 	module_put(kvm_chardev_ops.owner);
1264 	return ERR_PTR(r);
1265 }
1266 
1267 static void kvm_destroy_devices(struct kvm *kvm)
1268 {
1269 	struct kvm_device *dev, *tmp;
1270 
1271 	/*
1272 	 * We do not need to take the kvm->lock here, because nobody else
1273 	 * has a reference to the struct kvm at this point and therefore
1274 	 * cannot access the devices list anyhow.
1275 	 */
1276 	list_for_each_entry_safe(dev, tmp, &kvm->devices, vm_node) {
1277 		list_del(&dev->vm_node);
1278 		dev->ops->destroy(dev);
1279 	}
1280 }
1281 
1282 static void kvm_destroy_vm(struct kvm *kvm)
1283 {
1284 	int i;
1285 	struct mm_struct *mm = kvm->mm;
1286 
1287 	kvm_destroy_pm_notifier(kvm);
1288 	kvm_uevent_notify_change(KVM_EVENT_DESTROY_VM, kvm);
1289 	kvm_destroy_vm_debugfs(kvm);
1290 	kvm_arch_sync_events(kvm);
1291 	mutex_lock(&kvm_lock);
1292 	list_del(&kvm->vm_list);
1293 	mutex_unlock(&kvm_lock);
1294 	kvm_arch_pre_destroy_vm(kvm);
1295 
1296 	kvm_free_irq_routing(kvm);
1297 	for (i = 0; i < KVM_NR_BUSES; i++) {
1298 		struct kvm_io_bus *bus = kvm_get_bus(kvm, i);
1299 
1300 		if (bus)
1301 			kvm_io_bus_destroy(bus);
1302 		kvm->buses[i] = NULL;
1303 	}
1304 	kvm_coalesced_mmio_free(kvm);
1305 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
1306 	mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
1307 	/*
1308 	 * At this point, pending calls to invalidate_range_start()
1309 	 * have completed but no more MMU notifiers will run, so
1310 	 * mn_active_invalidate_count may remain unbalanced.
1311 	 * No threads can be waiting in install_new_memslots as the
1312 	 * last reference on KVM has been dropped, but freeing
1313 	 * memslots would deadlock without this manual intervention.
1314 	 */
1315 	WARN_ON(rcuwait_active(&kvm->mn_memslots_update_rcuwait));
1316 	kvm->mn_active_invalidate_count = 0;
1317 #else
1318 	kvm_flush_shadow_all(kvm);
1319 #endif
1320 	kvm_arch_destroy_vm(kvm);
1321 	kvm_destroy_devices(kvm);
1322 	for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
1323 		kvm_free_memslots(kvm, &kvm->__memslots[i][0]);
1324 		kvm_free_memslots(kvm, &kvm->__memslots[i][1]);
1325 	}
1326 	cleanup_srcu_struct(&kvm->irq_srcu);
1327 	cleanup_srcu_struct(&kvm->srcu);
1328 	kvm_arch_free_vm(kvm);
1329 	preempt_notifier_dec();
1330 	hardware_disable_all();
1331 	mmdrop(mm);
1332 	module_put(kvm_chardev_ops.owner);
1333 }
1334 
1335 void kvm_get_kvm(struct kvm *kvm)
1336 {
1337 	refcount_inc(&kvm->users_count);
1338 }
1339 EXPORT_SYMBOL_GPL(kvm_get_kvm);
1340 
1341 /*
1342  * Make sure the vm is not during destruction, which is a safe version of
1343  * kvm_get_kvm().  Return true if kvm referenced successfully, false otherwise.
1344  */
1345 bool kvm_get_kvm_safe(struct kvm *kvm)
1346 {
1347 	return refcount_inc_not_zero(&kvm->users_count);
1348 }
1349 EXPORT_SYMBOL_GPL(kvm_get_kvm_safe);
1350 
1351 void kvm_put_kvm(struct kvm *kvm)
1352 {
1353 	if (refcount_dec_and_test(&kvm->users_count))
1354 		kvm_destroy_vm(kvm);
1355 }
1356 EXPORT_SYMBOL_GPL(kvm_put_kvm);
1357 
1358 /*
1359  * Used to put a reference that was taken on behalf of an object associated
1360  * with a user-visible file descriptor, e.g. a vcpu or device, if installation
1361  * of the new file descriptor fails and the reference cannot be transferred to
1362  * its final owner.  In such cases, the caller is still actively using @kvm and
1363  * will fail miserably if the refcount unexpectedly hits zero.
1364  */
1365 void kvm_put_kvm_no_destroy(struct kvm *kvm)
1366 {
1367 	WARN_ON(refcount_dec_and_test(&kvm->users_count));
1368 }
1369 EXPORT_SYMBOL_GPL(kvm_put_kvm_no_destroy);
1370 
1371 static int kvm_vm_release(struct inode *inode, struct file *filp)
1372 {
1373 	struct kvm *kvm = filp->private_data;
1374 
1375 	kvm_irqfd_release(kvm);
1376 
1377 	kvm_put_kvm(kvm);
1378 	return 0;
1379 }
1380 
1381 /*
1382  * Allocation size is twice as large as the actual dirty bitmap size.
1383  * See kvm_vm_ioctl_get_dirty_log() why this is needed.
1384  */
1385 static int kvm_alloc_dirty_bitmap(struct kvm_memory_slot *memslot)
1386 {
1387 	unsigned long dirty_bytes = kvm_dirty_bitmap_bytes(memslot);
1388 
1389 	memslot->dirty_bitmap = __vcalloc(2, dirty_bytes, GFP_KERNEL_ACCOUNT);
1390 	if (!memslot->dirty_bitmap)
1391 		return -ENOMEM;
1392 
1393 	return 0;
1394 }
1395 
1396 static struct kvm_memslots *kvm_get_inactive_memslots(struct kvm *kvm, int as_id)
1397 {
1398 	struct kvm_memslots *active = __kvm_memslots(kvm, as_id);
1399 	int node_idx_inactive = active->node_idx ^ 1;
1400 
1401 	return &kvm->__memslots[as_id][node_idx_inactive];
1402 }
1403 
1404 /*
1405  * Helper to get the address space ID when one of memslot pointers may be NULL.
1406  * This also serves as a sanity that at least one of the pointers is non-NULL,
1407  * and that their address space IDs don't diverge.
1408  */
1409 static int kvm_memslots_get_as_id(struct kvm_memory_slot *a,
1410 				  struct kvm_memory_slot *b)
1411 {
1412 	if (WARN_ON_ONCE(!a && !b))
1413 		return 0;
1414 
1415 	if (!a)
1416 		return b->as_id;
1417 	if (!b)
1418 		return a->as_id;
1419 
1420 	WARN_ON_ONCE(a->as_id != b->as_id);
1421 	return a->as_id;
1422 }
1423 
1424 static void kvm_insert_gfn_node(struct kvm_memslots *slots,
1425 				struct kvm_memory_slot *slot)
1426 {
1427 	struct rb_root *gfn_tree = &slots->gfn_tree;
1428 	struct rb_node **node, *parent;
1429 	int idx = slots->node_idx;
1430 
1431 	parent = NULL;
1432 	for (node = &gfn_tree->rb_node; *node; ) {
1433 		struct kvm_memory_slot *tmp;
1434 
1435 		tmp = container_of(*node, struct kvm_memory_slot, gfn_node[idx]);
1436 		parent = *node;
1437 		if (slot->base_gfn < tmp->base_gfn)
1438 			node = &(*node)->rb_left;
1439 		else if (slot->base_gfn > tmp->base_gfn)
1440 			node = &(*node)->rb_right;
1441 		else
1442 			BUG();
1443 	}
1444 
1445 	rb_link_node(&slot->gfn_node[idx], parent, node);
1446 	rb_insert_color(&slot->gfn_node[idx], gfn_tree);
1447 }
1448 
1449 static void kvm_erase_gfn_node(struct kvm_memslots *slots,
1450 			       struct kvm_memory_slot *slot)
1451 {
1452 	rb_erase(&slot->gfn_node[slots->node_idx], &slots->gfn_tree);
1453 }
1454 
1455 static void kvm_replace_gfn_node(struct kvm_memslots *slots,
1456 				 struct kvm_memory_slot *old,
1457 				 struct kvm_memory_slot *new)
1458 {
1459 	int idx = slots->node_idx;
1460 
1461 	WARN_ON_ONCE(old->base_gfn != new->base_gfn);
1462 
1463 	rb_replace_node(&old->gfn_node[idx], &new->gfn_node[idx],
1464 			&slots->gfn_tree);
1465 }
1466 
1467 /*
1468  * Replace @old with @new in the inactive memslots.
1469  *
1470  * With NULL @old this simply adds @new.
1471  * With NULL @new this simply removes @old.
1472  *
1473  * If @new is non-NULL its hva_node[slots_idx] range has to be set
1474  * appropriately.
1475  */
1476 static void kvm_replace_memslot(struct kvm *kvm,
1477 				struct kvm_memory_slot *old,
1478 				struct kvm_memory_slot *new)
1479 {
1480 	int as_id = kvm_memslots_get_as_id(old, new);
1481 	struct kvm_memslots *slots = kvm_get_inactive_memslots(kvm, as_id);
1482 	int idx = slots->node_idx;
1483 
1484 	if (old) {
1485 		hash_del(&old->id_node[idx]);
1486 		interval_tree_remove(&old->hva_node[idx], &slots->hva_tree);
1487 
1488 		if ((long)old == atomic_long_read(&slots->last_used_slot))
1489 			atomic_long_set(&slots->last_used_slot, (long)new);
1490 
1491 		if (!new) {
1492 			kvm_erase_gfn_node(slots, old);
1493 			return;
1494 		}
1495 	}
1496 
1497 	/*
1498 	 * Initialize @new's hva range.  Do this even when replacing an @old
1499 	 * slot, kvm_copy_memslot() deliberately does not touch node data.
1500 	 */
1501 	new->hva_node[idx].start = new->userspace_addr;
1502 	new->hva_node[idx].last = new->userspace_addr +
1503 				  (new->npages << PAGE_SHIFT) - 1;
1504 
1505 	/*
1506 	 * (Re)Add the new memslot.  There is no O(1) interval_tree_replace(),
1507 	 * hva_node needs to be swapped with remove+insert even though hva can't
1508 	 * change when replacing an existing slot.
1509 	 */
1510 	hash_add(slots->id_hash, &new->id_node[idx], new->id);
1511 	interval_tree_insert(&new->hva_node[idx], &slots->hva_tree);
1512 
1513 	/*
1514 	 * If the memslot gfn is unchanged, rb_replace_node() can be used to
1515 	 * switch the node in the gfn tree instead of removing the old and
1516 	 * inserting the new as two separate operations. Replacement is a
1517 	 * single O(1) operation versus two O(log(n)) operations for
1518 	 * remove+insert.
1519 	 */
1520 	if (old && old->base_gfn == new->base_gfn) {
1521 		kvm_replace_gfn_node(slots, old, new);
1522 	} else {
1523 		if (old)
1524 			kvm_erase_gfn_node(slots, old);
1525 		kvm_insert_gfn_node(slots, new);
1526 	}
1527 }
1528 
1529 static int check_memory_region_flags(const struct kvm_userspace_memory_region *mem)
1530 {
1531 	u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
1532 
1533 #ifdef __KVM_HAVE_READONLY_MEM
1534 	valid_flags |= KVM_MEM_READONLY;
1535 #endif
1536 
1537 	if (mem->flags & ~valid_flags)
1538 		return -EINVAL;
1539 
1540 	return 0;
1541 }
1542 
1543 static void kvm_swap_active_memslots(struct kvm *kvm, int as_id)
1544 {
1545 	struct kvm_memslots *slots = kvm_get_inactive_memslots(kvm, as_id);
1546 
1547 	/* Grab the generation from the activate memslots. */
1548 	u64 gen = __kvm_memslots(kvm, as_id)->generation;
1549 
1550 	WARN_ON(gen & KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS);
1551 	slots->generation = gen | KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS;
1552 
1553 	/*
1554 	 * Do not store the new memslots while there are invalidations in
1555 	 * progress, otherwise the locking in invalidate_range_start and
1556 	 * invalidate_range_end will be unbalanced.
1557 	 */
1558 	spin_lock(&kvm->mn_invalidate_lock);
1559 	prepare_to_rcuwait(&kvm->mn_memslots_update_rcuwait);
1560 	while (kvm->mn_active_invalidate_count) {
1561 		set_current_state(TASK_UNINTERRUPTIBLE);
1562 		spin_unlock(&kvm->mn_invalidate_lock);
1563 		schedule();
1564 		spin_lock(&kvm->mn_invalidate_lock);
1565 	}
1566 	finish_rcuwait(&kvm->mn_memslots_update_rcuwait);
1567 	rcu_assign_pointer(kvm->memslots[as_id], slots);
1568 	spin_unlock(&kvm->mn_invalidate_lock);
1569 
1570 	/*
1571 	 * Acquired in kvm_set_memslot. Must be released before synchronize
1572 	 * SRCU below in order to avoid deadlock with another thread
1573 	 * acquiring the slots_arch_lock in an srcu critical section.
1574 	 */
1575 	mutex_unlock(&kvm->slots_arch_lock);
1576 
1577 	synchronize_srcu_expedited(&kvm->srcu);
1578 
1579 	/*
1580 	 * Increment the new memslot generation a second time, dropping the
1581 	 * update in-progress flag and incrementing the generation based on
1582 	 * the number of address spaces.  This provides a unique and easily
1583 	 * identifiable generation number while the memslots are in flux.
1584 	 */
1585 	gen = slots->generation & ~KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS;
1586 
1587 	/*
1588 	 * Generations must be unique even across address spaces.  We do not need
1589 	 * a global counter for that, instead the generation space is evenly split
1590 	 * across address spaces.  For example, with two address spaces, address
1591 	 * space 0 will use generations 0, 2, 4, ... while address space 1 will
1592 	 * use generations 1, 3, 5, ...
1593 	 */
1594 	gen += KVM_ADDRESS_SPACE_NUM;
1595 
1596 	kvm_arch_memslots_updated(kvm, gen);
1597 
1598 	slots->generation = gen;
1599 }
1600 
1601 static int kvm_prepare_memory_region(struct kvm *kvm,
1602 				     const struct kvm_memory_slot *old,
1603 				     struct kvm_memory_slot *new,
1604 				     enum kvm_mr_change change)
1605 {
1606 	int r;
1607 
1608 	/*
1609 	 * If dirty logging is disabled, nullify the bitmap; the old bitmap
1610 	 * will be freed on "commit".  If logging is enabled in both old and
1611 	 * new, reuse the existing bitmap.  If logging is enabled only in the
1612 	 * new and KVM isn't using a ring buffer, allocate and initialize a
1613 	 * new bitmap.
1614 	 */
1615 	if (change != KVM_MR_DELETE) {
1616 		if (!(new->flags & KVM_MEM_LOG_DIRTY_PAGES))
1617 			new->dirty_bitmap = NULL;
1618 		else if (old && old->dirty_bitmap)
1619 			new->dirty_bitmap = old->dirty_bitmap;
1620 		else if (!kvm->dirty_ring_size) {
1621 			r = kvm_alloc_dirty_bitmap(new);
1622 			if (r)
1623 				return r;
1624 
1625 			if (kvm_dirty_log_manual_protect_and_init_set(kvm))
1626 				bitmap_set(new->dirty_bitmap, 0, new->npages);
1627 		}
1628 	}
1629 
1630 	r = kvm_arch_prepare_memory_region(kvm, old, new, change);
1631 
1632 	/* Free the bitmap on failure if it was allocated above. */
1633 	if (r && new && new->dirty_bitmap && (!old || !old->dirty_bitmap))
1634 		kvm_destroy_dirty_bitmap(new);
1635 
1636 	return r;
1637 }
1638 
1639 static void kvm_commit_memory_region(struct kvm *kvm,
1640 				     struct kvm_memory_slot *old,
1641 				     const struct kvm_memory_slot *new,
1642 				     enum kvm_mr_change change)
1643 {
1644 	/*
1645 	 * Update the total number of memslot pages before calling the arch
1646 	 * hook so that architectures can consume the result directly.
1647 	 */
1648 	if (change == KVM_MR_DELETE)
1649 		kvm->nr_memslot_pages -= old->npages;
1650 	else if (change == KVM_MR_CREATE)
1651 		kvm->nr_memslot_pages += new->npages;
1652 
1653 	kvm_arch_commit_memory_region(kvm, old, new, change);
1654 
1655 	switch (change) {
1656 	case KVM_MR_CREATE:
1657 		/* Nothing more to do. */
1658 		break;
1659 	case KVM_MR_DELETE:
1660 		/* Free the old memslot and all its metadata. */
1661 		kvm_free_memslot(kvm, old);
1662 		break;
1663 	case KVM_MR_MOVE:
1664 	case KVM_MR_FLAGS_ONLY:
1665 		/*
1666 		 * Free the dirty bitmap as needed; the below check encompasses
1667 		 * both the flags and whether a ring buffer is being used)
1668 		 */
1669 		if (old->dirty_bitmap && !new->dirty_bitmap)
1670 			kvm_destroy_dirty_bitmap(old);
1671 
1672 		/*
1673 		 * The final quirk.  Free the detached, old slot, but only its
1674 		 * memory, not any metadata.  Metadata, including arch specific
1675 		 * data, may be reused by @new.
1676 		 */
1677 		kfree(old);
1678 		break;
1679 	default:
1680 		BUG();
1681 	}
1682 }
1683 
1684 /*
1685  * Activate @new, which must be installed in the inactive slots by the caller,
1686  * by swapping the active slots and then propagating @new to @old once @old is
1687  * unreachable and can be safely modified.
1688  *
1689  * With NULL @old this simply adds @new to @active (while swapping the sets).
1690  * With NULL @new this simply removes @old from @active and frees it
1691  * (while also swapping the sets).
1692  */
1693 static void kvm_activate_memslot(struct kvm *kvm,
1694 				 struct kvm_memory_slot *old,
1695 				 struct kvm_memory_slot *new)
1696 {
1697 	int as_id = kvm_memslots_get_as_id(old, new);
1698 
1699 	kvm_swap_active_memslots(kvm, as_id);
1700 
1701 	/* Propagate the new memslot to the now inactive memslots. */
1702 	kvm_replace_memslot(kvm, old, new);
1703 }
1704 
1705 static void kvm_copy_memslot(struct kvm_memory_slot *dest,
1706 			     const struct kvm_memory_slot *src)
1707 {
1708 	dest->base_gfn = src->base_gfn;
1709 	dest->npages = src->npages;
1710 	dest->dirty_bitmap = src->dirty_bitmap;
1711 	dest->arch = src->arch;
1712 	dest->userspace_addr = src->userspace_addr;
1713 	dest->flags = src->flags;
1714 	dest->id = src->id;
1715 	dest->as_id = src->as_id;
1716 }
1717 
1718 static void kvm_invalidate_memslot(struct kvm *kvm,
1719 				   struct kvm_memory_slot *old,
1720 				   struct kvm_memory_slot *invalid_slot)
1721 {
1722 	/*
1723 	 * Mark the current slot INVALID.  As with all memslot modifications,
1724 	 * this must be done on an unreachable slot to avoid modifying the
1725 	 * current slot in the active tree.
1726 	 */
1727 	kvm_copy_memslot(invalid_slot, old);
1728 	invalid_slot->flags |= KVM_MEMSLOT_INVALID;
1729 	kvm_replace_memslot(kvm, old, invalid_slot);
1730 
1731 	/*
1732 	 * Activate the slot that is now marked INVALID, but don't propagate
1733 	 * the slot to the now inactive slots. The slot is either going to be
1734 	 * deleted or recreated as a new slot.
1735 	 */
1736 	kvm_swap_active_memslots(kvm, old->as_id);
1737 
1738 	/*
1739 	 * From this point no new shadow pages pointing to a deleted, or moved,
1740 	 * memslot will be created.  Validation of sp->gfn happens in:
1741 	 *	- gfn_to_hva (kvm_read_guest, gfn_to_pfn)
1742 	 *	- kvm_is_visible_gfn (mmu_check_root)
1743 	 */
1744 	kvm_arch_flush_shadow_memslot(kvm, old);
1745 	kvm_arch_guest_memory_reclaimed(kvm);
1746 
1747 	/* Was released by kvm_swap_active_memslots, reacquire. */
1748 	mutex_lock(&kvm->slots_arch_lock);
1749 
1750 	/*
1751 	 * Copy the arch-specific field of the newly-installed slot back to the
1752 	 * old slot as the arch data could have changed between releasing
1753 	 * slots_arch_lock in install_new_memslots() and re-acquiring the lock
1754 	 * above.  Writers are required to retrieve memslots *after* acquiring
1755 	 * slots_arch_lock, thus the active slot's data is guaranteed to be fresh.
1756 	 */
1757 	old->arch = invalid_slot->arch;
1758 }
1759 
1760 static void kvm_create_memslot(struct kvm *kvm,
1761 			       struct kvm_memory_slot *new)
1762 {
1763 	/* Add the new memslot to the inactive set and activate. */
1764 	kvm_replace_memslot(kvm, NULL, new);
1765 	kvm_activate_memslot(kvm, NULL, new);
1766 }
1767 
1768 static void kvm_delete_memslot(struct kvm *kvm,
1769 			       struct kvm_memory_slot *old,
1770 			       struct kvm_memory_slot *invalid_slot)
1771 {
1772 	/*
1773 	 * Remove the old memslot (in the inactive memslots) by passing NULL as
1774 	 * the "new" slot, and for the invalid version in the active slots.
1775 	 */
1776 	kvm_replace_memslot(kvm, old, NULL);
1777 	kvm_activate_memslot(kvm, invalid_slot, NULL);
1778 }
1779 
1780 static void kvm_move_memslot(struct kvm *kvm,
1781 			     struct kvm_memory_slot *old,
1782 			     struct kvm_memory_slot *new,
1783 			     struct kvm_memory_slot *invalid_slot)
1784 {
1785 	/*
1786 	 * Replace the old memslot in the inactive slots, and then swap slots
1787 	 * and replace the current INVALID with the new as well.
1788 	 */
1789 	kvm_replace_memslot(kvm, old, new);
1790 	kvm_activate_memslot(kvm, invalid_slot, new);
1791 }
1792 
1793 static void kvm_update_flags_memslot(struct kvm *kvm,
1794 				     struct kvm_memory_slot *old,
1795 				     struct kvm_memory_slot *new)
1796 {
1797 	/*
1798 	 * Similar to the MOVE case, but the slot doesn't need to be zapped as
1799 	 * an intermediate step. Instead, the old memslot is simply replaced
1800 	 * with a new, updated copy in both memslot sets.
1801 	 */
1802 	kvm_replace_memslot(kvm, old, new);
1803 	kvm_activate_memslot(kvm, old, new);
1804 }
1805 
1806 static int kvm_set_memslot(struct kvm *kvm,
1807 			   struct kvm_memory_slot *old,
1808 			   struct kvm_memory_slot *new,
1809 			   enum kvm_mr_change change)
1810 {
1811 	struct kvm_memory_slot *invalid_slot;
1812 	int r;
1813 
1814 	/*
1815 	 * Released in kvm_swap_active_memslots.
1816 	 *
1817 	 * Must be held from before the current memslots are copied until
1818 	 * after the new memslots are installed with rcu_assign_pointer,
1819 	 * then released before the synchronize srcu in kvm_swap_active_memslots.
1820 	 *
1821 	 * When modifying memslots outside of the slots_lock, must be held
1822 	 * before reading the pointer to the current memslots until after all
1823 	 * changes to those memslots are complete.
1824 	 *
1825 	 * These rules ensure that installing new memslots does not lose
1826 	 * changes made to the previous memslots.
1827 	 */
1828 	mutex_lock(&kvm->slots_arch_lock);
1829 
1830 	/*
1831 	 * Invalidate the old slot if it's being deleted or moved.  This is
1832 	 * done prior to actually deleting/moving the memslot to allow vCPUs to
1833 	 * continue running by ensuring there are no mappings or shadow pages
1834 	 * for the memslot when it is deleted/moved.  Without pre-invalidation
1835 	 * (and without a lock), a window would exist between effecting the
1836 	 * delete/move and committing the changes in arch code where KVM or a
1837 	 * guest could access a non-existent memslot.
1838 	 *
1839 	 * Modifications are done on a temporary, unreachable slot.  The old
1840 	 * slot needs to be preserved in case a later step fails and the
1841 	 * invalidation needs to be reverted.
1842 	 */
1843 	if (change == KVM_MR_DELETE || change == KVM_MR_MOVE) {
1844 		invalid_slot = kzalloc(sizeof(*invalid_slot), GFP_KERNEL_ACCOUNT);
1845 		if (!invalid_slot) {
1846 			mutex_unlock(&kvm->slots_arch_lock);
1847 			return -ENOMEM;
1848 		}
1849 		kvm_invalidate_memslot(kvm, old, invalid_slot);
1850 	}
1851 
1852 	r = kvm_prepare_memory_region(kvm, old, new, change);
1853 	if (r) {
1854 		/*
1855 		 * For DELETE/MOVE, revert the above INVALID change.  No
1856 		 * modifications required since the original slot was preserved
1857 		 * in the inactive slots.  Changing the active memslots also
1858 		 * release slots_arch_lock.
1859 		 */
1860 		if (change == KVM_MR_DELETE || change == KVM_MR_MOVE) {
1861 			kvm_activate_memslot(kvm, invalid_slot, old);
1862 			kfree(invalid_slot);
1863 		} else {
1864 			mutex_unlock(&kvm->slots_arch_lock);
1865 		}
1866 		return r;
1867 	}
1868 
1869 	/*
1870 	 * For DELETE and MOVE, the working slot is now active as the INVALID
1871 	 * version of the old slot.  MOVE is particularly special as it reuses
1872 	 * the old slot and returns a copy of the old slot (in working_slot).
1873 	 * For CREATE, there is no old slot.  For DELETE and FLAGS_ONLY, the
1874 	 * old slot is detached but otherwise preserved.
1875 	 */
1876 	if (change == KVM_MR_CREATE)
1877 		kvm_create_memslot(kvm, new);
1878 	else if (change == KVM_MR_DELETE)
1879 		kvm_delete_memslot(kvm, old, invalid_slot);
1880 	else if (change == KVM_MR_MOVE)
1881 		kvm_move_memslot(kvm, old, new, invalid_slot);
1882 	else if (change == KVM_MR_FLAGS_ONLY)
1883 		kvm_update_flags_memslot(kvm, old, new);
1884 	else
1885 		BUG();
1886 
1887 	/* Free the temporary INVALID slot used for DELETE and MOVE. */
1888 	if (change == KVM_MR_DELETE || change == KVM_MR_MOVE)
1889 		kfree(invalid_slot);
1890 
1891 	/*
1892 	 * No need to refresh new->arch, changes after dropping slots_arch_lock
1893 	 * will directly hit the final, active memslot.  Architectures are
1894 	 * responsible for knowing that new->arch may be stale.
1895 	 */
1896 	kvm_commit_memory_region(kvm, old, new, change);
1897 
1898 	return 0;
1899 }
1900 
1901 static bool kvm_check_memslot_overlap(struct kvm_memslots *slots, int id,
1902 				      gfn_t start, gfn_t end)
1903 {
1904 	struct kvm_memslot_iter iter;
1905 
1906 	kvm_for_each_memslot_in_gfn_range(&iter, slots, start, end) {
1907 		if (iter.slot->id != id)
1908 			return true;
1909 	}
1910 
1911 	return false;
1912 }
1913 
1914 /*
1915  * Allocate some memory and give it an address in the guest physical address
1916  * space.
1917  *
1918  * Discontiguous memory is allowed, mostly for framebuffers.
1919  *
1920  * Must be called holding kvm->slots_lock for write.
1921  */
1922 int __kvm_set_memory_region(struct kvm *kvm,
1923 			    const struct kvm_userspace_memory_region *mem)
1924 {
1925 	struct kvm_memory_slot *old, *new;
1926 	struct kvm_memslots *slots;
1927 	enum kvm_mr_change change;
1928 	unsigned long npages;
1929 	gfn_t base_gfn;
1930 	int as_id, id;
1931 	int r;
1932 
1933 	r = check_memory_region_flags(mem);
1934 	if (r)
1935 		return r;
1936 
1937 	as_id = mem->slot >> 16;
1938 	id = (u16)mem->slot;
1939 
1940 	/* General sanity checks */
1941 	if ((mem->memory_size & (PAGE_SIZE - 1)) ||
1942 	    (mem->memory_size != (unsigned long)mem->memory_size))
1943 		return -EINVAL;
1944 	if (mem->guest_phys_addr & (PAGE_SIZE - 1))
1945 		return -EINVAL;
1946 	/* We can read the guest memory with __xxx_user() later on. */
1947 	if ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
1948 	    (mem->userspace_addr != untagged_addr(mem->userspace_addr)) ||
1949 	     !access_ok((void __user *)(unsigned long)mem->userspace_addr,
1950 			mem->memory_size))
1951 		return -EINVAL;
1952 	if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_MEM_SLOTS_NUM)
1953 		return -EINVAL;
1954 	if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
1955 		return -EINVAL;
1956 	if ((mem->memory_size >> PAGE_SHIFT) > KVM_MEM_MAX_NR_PAGES)
1957 		return -EINVAL;
1958 
1959 	slots = __kvm_memslots(kvm, as_id);
1960 
1961 	/*
1962 	 * Note, the old memslot (and the pointer itself!) may be invalidated
1963 	 * and/or destroyed by kvm_set_memslot().
1964 	 */
1965 	old = id_to_memslot(slots, id);
1966 
1967 	if (!mem->memory_size) {
1968 		if (!old || !old->npages)
1969 			return -EINVAL;
1970 
1971 		if (WARN_ON_ONCE(kvm->nr_memslot_pages < old->npages))
1972 			return -EIO;
1973 
1974 		return kvm_set_memslot(kvm, old, NULL, KVM_MR_DELETE);
1975 	}
1976 
1977 	base_gfn = (mem->guest_phys_addr >> PAGE_SHIFT);
1978 	npages = (mem->memory_size >> PAGE_SHIFT);
1979 
1980 	if (!old || !old->npages) {
1981 		change = KVM_MR_CREATE;
1982 
1983 		/*
1984 		 * To simplify KVM internals, the total number of pages across
1985 		 * all memslots must fit in an unsigned long.
1986 		 */
1987 		if ((kvm->nr_memslot_pages + npages) < kvm->nr_memslot_pages)
1988 			return -EINVAL;
1989 	} else { /* Modify an existing slot. */
1990 		if ((mem->userspace_addr != old->userspace_addr) ||
1991 		    (npages != old->npages) ||
1992 		    ((mem->flags ^ old->flags) & KVM_MEM_READONLY))
1993 			return -EINVAL;
1994 
1995 		if (base_gfn != old->base_gfn)
1996 			change = KVM_MR_MOVE;
1997 		else if (mem->flags != old->flags)
1998 			change = KVM_MR_FLAGS_ONLY;
1999 		else /* Nothing to change. */
2000 			return 0;
2001 	}
2002 
2003 	if ((change == KVM_MR_CREATE || change == KVM_MR_MOVE) &&
2004 	    kvm_check_memslot_overlap(slots, id, base_gfn, base_gfn + npages))
2005 		return -EEXIST;
2006 
2007 	/* Allocate a slot that will persist in the memslot. */
2008 	new = kzalloc(sizeof(*new), GFP_KERNEL_ACCOUNT);
2009 	if (!new)
2010 		return -ENOMEM;
2011 
2012 	new->as_id = as_id;
2013 	new->id = id;
2014 	new->base_gfn = base_gfn;
2015 	new->npages = npages;
2016 	new->flags = mem->flags;
2017 	new->userspace_addr = mem->userspace_addr;
2018 
2019 	r = kvm_set_memslot(kvm, old, new, change);
2020 	if (r)
2021 		kfree(new);
2022 	return r;
2023 }
2024 EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
2025 
2026 int kvm_set_memory_region(struct kvm *kvm,
2027 			  const struct kvm_userspace_memory_region *mem)
2028 {
2029 	int r;
2030 
2031 	mutex_lock(&kvm->slots_lock);
2032 	r = __kvm_set_memory_region(kvm, mem);
2033 	mutex_unlock(&kvm->slots_lock);
2034 	return r;
2035 }
2036 EXPORT_SYMBOL_GPL(kvm_set_memory_region);
2037 
2038 static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
2039 					  struct kvm_userspace_memory_region *mem)
2040 {
2041 	if ((u16)mem->slot >= KVM_USER_MEM_SLOTS)
2042 		return -EINVAL;
2043 
2044 	return kvm_set_memory_region(kvm, mem);
2045 }
2046 
2047 #ifndef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
2048 /**
2049  * kvm_get_dirty_log - get a snapshot of dirty pages
2050  * @kvm:	pointer to kvm instance
2051  * @log:	slot id and address to which we copy the log
2052  * @is_dirty:	set to '1' if any dirty pages were found
2053  * @memslot:	set to the associated memslot, always valid on success
2054  */
2055 int kvm_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log,
2056 		      int *is_dirty, struct kvm_memory_slot **memslot)
2057 {
2058 	struct kvm_memslots *slots;
2059 	int i, as_id, id;
2060 	unsigned long n;
2061 	unsigned long any = 0;
2062 
2063 	/* Dirty ring tracking is exclusive to dirty log tracking */
2064 	if (kvm->dirty_ring_size)
2065 		return -ENXIO;
2066 
2067 	*memslot = NULL;
2068 	*is_dirty = 0;
2069 
2070 	as_id = log->slot >> 16;
2071 	id = (u16)log->slot;
2072 	if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
2073 		return -EINVAL;
2074 
2075 	slots = __kvm_memslots(kvm, as_id);
2076 	*memslot = id_to_memslot(slots, id);
2077 	if (!(*memslot) || !(*memslot)->dirty_bitmap)
2078 		return -ENOENT;
2079 
2080 	kvm_arch_sync_dirty_log(kvm, *memslot);
2081 
2082 	n = kvm_dirty_bitmap_bytes(*memslot);
2083 
2084 	for (i = 0; !any && i < n/sizeof(long); ++i)
2085 		any = (*memslot)->dirty_bitmap[i];
2086 
2087 	if (copy_to_user(log->dirty_bitmap, (*memslot)->dirty_bitmap, n))
2088 		return -EFAULT;
2089 
2090 	if (any)
2091 		*is_dirty = 1;
2092 	return 0;
2093 }
2094 EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
2095 
2096 #else /* CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT */
2097 /**
2098  * kvm_get_dirty_log_protect - get a snapshot of dirty pages
2099  *	and reenable dirty page tracking for the corresponding pages.
2100  * @kvm:	pointer to kvm instance
2101  * @log:	slot id and address to which we copy the log
2102  *
2103  * We need to keep it in mind that VCPU threads can write to the bitmap
2104  * concurrently. So, to avoid losing track of dirty pages we keep the
2105  * following order:
2106  *
2107  *    1. Take a snapshot of the bit and clear it if needed.
2108  *    2. Write protect the corresponding page.
2109  *    3. Copy the snapshot to the userspace.
2110  *    4. Upon return caller flushes TLB's if needed.
2111  *
2112  * Between 2 and 4, the guest may write to the page using the remaining TLB
2113  * entry.  This is not a problem because the page is reported dirty using
2114  * the snapshot taken before and step 4 ensures that writes done after
2115  * exiting to userspace will be logged for the next call.
2116  *
2117  */
2118 static int kvm_get_dirty_log_protect(struct kvm *kvm, struct kvm_dirty_log *log)
2119 {
2120 	struct kvm_memslots *slots;
2121 	struct kvm_memory_slot *memslot;
2122 	int i, as_id, id;
2123 	unsigned long n;
2124 	unsigned long *dirty_bitmap;
2125 	unsigned long *dirty_bitmap_buffer;
2126 	bool flush;
2127 
2128 	/* Dirty ring tracking is exclusive to dirty log tracking */
2129 	if (kvm->dirty_ring_size)
2130 		return -ENXIO;
2131 
2132 	as_id = log->slot >> 16;
2133 	id = (u16)log->slot;
2134 	if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
2135 		return -EINVAL;
2136 
2137 	slots = __kvm_memslots(kvm, as_id);
2138 	memslot = id_to_memslot(slots, id);
2139 	if (!memslot || !memslot->dirty_bitmap)
2140 		return -ENOENT;
2141 
2142 	dirty_bitmap = memslot->dirty_bitmap;
2143 
2144 	kvm_arch_sync_dirty_log(kvm, memslot);
2145 
2146 	n = kvm_dirty_bitmap_bytes(memslot);
2147 	flush = false;
2148 	if (kvm->manual_dirty_log_protect) {
2149 		/*
2150 		 * Unlike kvm_get_dirty_log, we always return false in *flush,
2151 		 * because no flush is needed until KVM_CLEAR_DIRTY_LOG.  There
2152 		 * is some code duplication between this function and
2153 		 * kvm_get_dirty_log, but hopefully all architecture
2154 		 * transition to kvm_get_dirty_log_protect and kvm_get_dirty_log
2155 		 * can be eliminated.
2156 		 */
2157 		dirty_bitmap_buffer = dirty_bitmap;
2158 	} else {
2159 		dirty_bitmap_buffer = kvm_second_dirty_bitmap(memslot);
2160 		memset(dirty_bitmap_buffer, 0, n);
2161 
2162 		KVM_MMU_LOCK(kvm);
2163 		for (i = 0; i < n / sizeof(long); i++) {
2164 			unsigned long mask;
2165 			gfn_t offset;
2166 
2167 			if (!dirty_bitmap[i])
2168 				continue;
2169 
2170 			flush = true;
2171 			mask = xchg(&dirty_bitmap[i], 0);
2172 			dirty_bitmap_buffer[i] = mask;
2173 
2174 			offset = i * BITS_PER_LONG;
2175 			kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
2176 								offset, mask);
2177 		}
2178 		KVM_MMU_UNLOCK(kvm);
2179 	}
2180 
2181 	if (flush)
2182 		kvm_arch_flush_remote_tlbs_memslot(kvm, memslot);
2183 
2184 	if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
2185 		return -EFAULT;
2186 	return 0;
2187 }
2188 
2189 
2190 /**
2191  * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot
2192  * @kvm: kvm instance
2193  * @log: slot id and address to which we copy the log
2194  *
2195  * Steps 1-4 below provide general overview of dirty page logging. See
2196  * kvm_get_dirty_log_protect() function description for additional details.
2197  *
2198  * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we
2199  * always flush the TLB (step 4) even if previous step failed  and the dirty
2200  * bitmap may be corrupt. Regardless of previous outcome the KVM logging API
2201  * does not preclude user space subsequent dirty log read. Flushing TLB ensures
2202  * writes will be marked dirty for next log read.
2203  *
2204  *   1. Take a snapshot of the bit and clear it if needed.
2205  *   2. Write protect the corresponding page.
2206  *   3. Copy the snapshot to the userspace.
2207  *   4. Flush TLB's if needed.
2208  */
2209 static int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
2210 				      struct kvm_dirty_log *log)
2211 {
2212 	int r;
2213 
2214 	mutex_lock(&kvm->slots_lock);
2215 
2216 	r = kvm_get_dirty_log_protect(kvm, log);
2217 
2218 	mutex_unlock(&kvm->slots_lock);
2219 	return r;
2220 }
2221 
2222 /**
2223  * kvm_clear_dirty_log_protect - clear dirty bits in the bitmap
2224  *	and reenable dirty page tracking for the corresponding pages.
2225  * @kvm:	pointer to kvm instance
2226  * @log:	slot id and address from which to fetch the bitmap of dirty pages
2227  */
2228 static int kvm_clear_dirty_log_protect(struct kvm *kvm,
2229 				       struct kvm_clear_dirty_log *log)
2230 {
2231 	struct kvm_memslots *slots;
2232 	struct kvm_memory_slot *memslot;
2233 	int as_id, id;
2234 	gfn_t offset;
2235 	unsigned long i, n;
2236 	unsigned long *dirty_bitmap;
2237 	unsigned long *dirty_bitmap_buffer;
2238 	bool flush;
2239 
2240 	/* Dirty ring tracking is exclusive to dirty log tracking */
2241 	if (kvm->dirty_ring_size)
2242 		return -ENXIO;
2243 
2244 	as_id = log->slot >> 16;
2245 	id = (u16)log->slot;
2246 	if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
2247 		return -EINVAL;
2248 
2249 	if (log->first_page & 63)
2250 		return -EINVAL;
2251 
2252 	slots = __kvm_memslots(kvm, as_id);
2253 	memslot = id_to_memslot(slots, id);
2254 	if (!memslot || !memslot->dirty_bitmap)
2255 		return -ENOENT;
2256 
2257 	dirty_bitmap = memslot->dirty_bitmap;
2258 
2259 	n = ALIGN(log->num_pages, BITS_PER_LONG) / 8;
2260 
2261 	if (log->first_page > memslot->npages ||
2262 	    log->num_pages > memslot->npages - log->first_page ||
2263 	    (log->num_pages < memslot->npages - log->first_page && (log->num_pages & 63)))
2264 	    return -EINVAL;
2265 
2266 	kvm_arch_sync_dirty_log(kvm, memslot);
2267 
2268 	flush = false;
2269 	dirty_bitmap_buffer = kvm_second_dirty_bitmap(memslot);
2270 	if (copy_from_user(dirty_bitmap_buffer, log->dirty_bitmap, n))
2271 		return -EFAULT;
2272 
2273 	KVM_MMU_LOCK(kvm);
2274 	for (offset = log->first_page, i = offset / BITS_PER_LONG,
2275 		 n = DIV_ROUND_UP(log->num_pages, BITS_PER_LONG); n--;
2276 	     i++, offset += BITS_PER_LONG) {
2277 		unsigned long mask = *dirty_bitmap_buffer++;
2278 		atomic_long_t *p = (atomic_long_t *) &dirty_bitmap[i];
2279 		if (!mask)
2280 			continue;
2281 
2282 		mask &= atomic_long_fetch_andnot(mask, p);
2283 
2284 		/*
2285 		 * mask contains the bits that really have been cleared.  This
2286 		 * never includes any bits beyond the length of the memslot (if
2287 		 * the length is not aligned to 64 pages), therefore it is not
2288 		 * a problem if userspace sets them in log->dirty_bitmap.
2289 		*/
2290 		if (mask) {
2291 			flush = true;
2292 			kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
2293 								offset, mask);
2294 		}
2295 	}
2296 	KVM_MMU_UNLOCK(kvm);
2297 
2298 	if (flush)
2299 		kvm_arch_flush_remote_tlbs_memslot(kvm, memslot);
2300 
2301 	return 0;
2302 }
2303 
2304 static int kvm_vm_ioctl_clear_dirty_log(struct kvm *kvm,
2305 					struct kvm_clear_dirty_log *log)
2306 {
2307 	int r;
2308 
2309 	mutex_lock(&kvm->slots_lock);
2310 
2311 	r = kvm_clear_dirty_log_protect(kvm, log);
2312 
2313 	mutex_unlock(&kvm->slots_lock);
2314 	return r;
2315 }
2316 #endif /* CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT */
2317 
2318 struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
2319 {
2320 	return __gfn_to_memslot(kvm_memslots(kvm), gfn);
2321 }
2322 EXPORT_SYMBOL_GPL(gfn_to_memslot);
2323 
2324 struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn)
2325 {
2326 	struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
2327 	u64 gen = slots->generation;
2328 	struct kvm_memory_slot *slot;
2329 
2330 	/*
2331 	 * This also protects against using a memslot from a different address space,
2332 	 * since different address spaces have different generation numbers.
2333 	 */
2334 	if (unlikely(gen != vcpu->last_used_slot_gen)) {
2335 		vcpu->last_used_slot = NULL;
2336 		vcpu->last_used_slot_gen = gen;
2337 	}
2338 
2339 	slot = try_get_memslot(vcpu->last_used_slot, gfn);
2340 	if (slot)
2341 		return slot;
2342 
2343 	/*
2344 	 * Fall back to searching all memslots. We purposely use
2345 	 * search_memslots() instead of __gfn_to_memslot() to avoid
2346 	 * thrashing the VM-wide last_used_slot in kvm_memslots.
2347 	 */
2348 	slot = search_memslots(slots, gfn, false);
2349 	if (slot) {
2350 		vcpu->last_used_slot = slot;
2351 		return slot;
2352 	}
2353 
2354 	return NULL;
2355 }
2356 
2357 bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
2358 {
2359 	struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
2360 
2361 	return kvm_is_visible_memslot(memslot);
2362 }
2363 EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
2364 
2365 bool kvm_vcpu_is_visible_gfn(struct kvm_vcpu *vcpu, gfn_t gfn)
2366 {
2367 	struct kvm_memory_slot *memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2368 
2369 	return kvm_is_visible_memslot(memslot);
2370 }
2371 EXPORT_SYMBOL_GPL(kvm_vcpu_is_visible_gfn);
2372 
2373 unsigned long kvm_host_page_size(struct kvm_vcpu *vcpu, gfn_t gfn)
2374 {
2375 	struct vm_area_struct *vma;
2376 	unsigned long addr, size;
2377 
2378 	size = PAGE_SIZE;
2379 
2380 	addr = kvm_vcpu_gfn_to_hva_prot(vcpu, gfn, NULL);
2381 	if (kvm_is_error_hva(addr))
2382 		return PAGE_SIZE;
2383 
2384 	mmap_read_lock(current->mm);
2385 	vma = find_vma(current->mm, addr);
2386 	if (!vma)
2387 		goto out;
2388 
2389 	size = vma_kernel_pagesize(vma);
2390 
2391 out:
2392 	mmap_read_unlock(current->mm);
2393 
2394 	return size;
2395 }
2396 
2397 static bool memslot_is_readonly(const struct kvm_memory_slot *slot)
2398 {
2399 	return slot->flags & KVM_MEM_READONLY;
2400 }
2401 
2402 static unsigned long __gfn_to_hva_many(const struct kvm_memory_slot *slot, gfn_t gfn,
2403 				       gfn_t *nr_pages, bool write)
2404 {
2405 	if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
2406 		return KVM_HVA_ERR_BAD;
2407 
2408 	if (memslot_is_readonly(slot) && write)
2409 		return KVM_HVA_ERR_RO_BAD;
2410 
2411 	if (nr_pages)
2412 		*nr_pages = slot->npages - (gfn - slot->base_gfn);
2413 
2414 	return __gfn_to_hva_memslot(slot, gfn);
2415 }
2416 
2417 static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
2418 				     gfn_t *nr_pages)
2419 {
2420 	return __gfn_to_hva_many(slot, gfn, nr_pages, true);
2421 }
2422 
2423 unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
2424 					gfn_t gfn)
2425 {
2426 	return gfn_to_hva_many(slot, gfn, NULL);
2427 }
2428 EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
2429 
2430 unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
2431 {
2432 	return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
2433 }
2434 EXPORT_SYMBOL_GPL(gfn_to_hva);
2435 
2436 unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn)
2437 {
2438 	return gfn_to_hva_many(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn, NULL);
2439 }
2440 EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva);
2441 
2442 /*
2443  * Return the hva of a @gfn and the R/W attribute if possible.
2444  *
2445  * @slot: the kvm_memory_slot which contains @gfn
2446  * @gfn: the gfn to be translated
2447  * @writable: used to return the read/write attribute of the @slot if the hva
2448  * is valid and @writable is not NULL
2449  */
2450 unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
2451 				      gfn_t gfn, bool *writable)
2452 {
2453 	unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
2454 
2455 	if (!kvm_is_error_hva(hva) && writable)
2456 		*writable = !memslot_is_readonly(slot);
2457 
2458 	return hva;
2459 }
2460 
2461 unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
2462 {
2463 	struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
2464 
2465 	return gfn_to_hva_memslot_prot(slot, gfn, writable);
2466 }
2467 
2468 unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable)
2469 {
2470 	struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2471 
2472 	return gfn_to_hva_memslot_prot(slot, gfn, writable);
2473 }
2474 
2475 static inline int check_user_page_hwpoison(unsigned long addr)
2476 {
2477 	int rc, flags = FOLL_HWPOISON | FOLL_WRITE;
2478 
2479 	rc = get_user_pages(addr, 1, flags, NULL, NULL);
2480 	return rc == -EHWPOISON;
2481 }
2482 
2483 /*
2484  * The fast path to get the writable pfn which will be stored in @pfn,
2485  * true indicates success, otherwise false is returned.  It's also the
2486  * only part that runs if we can in atomic context.
2487  */
2488 static bool hva_to_pfn_fast(unsigned long addr, bool write_fault,
2489 			    bool *writable, kvm_pfn_t *pfn)
2490 {
2491 	struct page *page[1];
2492 
2493 	/*
2494 	 * Fast pin a writable pfn only if it is a write fault request
2495 	 * or the caller allows to map a writable pfn for a read fault
2496 	 * request.
2497 	 */
2498 	if (!(write_fault || writable))
2499 		return false;
2500 
2501 	if (get_user_page_fast_only(addr, FOLL_WRITE, page)) {
2502 		*pfn = page_to_pfn(page[0]);
2503 
2504 		if (writable)
2505 			*writable = true;
2506 		return true;
2507 	}
2508 
2509 	return false;
2510 }
2511 
2512 /*
2513  * The slow path to get the pfn of the specified host virtual address,
2514  * 1 indicates success, -errno is returned if error is detected.
2515  */
2516 static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
2517 			   bool *writable, kvm_pfn_t *pfn)
2518 {
2519 	unsigned int flags = FOLL_HWPOISON;
2520 	struct page *page;
2521 	int npages;
2522 
2523 	might_sleep();
2524 
2525 	if (writable)
2526 		*writable = write_fault;
2527 
2528 	if (write_fault)
2529 		flags |= FOLL_WRITE;
2530 	if (async)
2531 		flags |= FOLL_NOWAIT;
2532 
2533 	npages = get_user_pages_unlocked(addr, 1, &page, flags);
2534 	if (npages != 1)
2535 		return npages;
2536 
2537 	/* map read fault as writable if possible */
2538 	if (unlikely(!write_fault) && writable) {
2539 		struct page *wpage;
2540 
2541 		if (get_user_page_fast_only(addr, FOLL_WRITE, &wpage)) {
2542 			*writable = true;
2543 			put_page(page);
2544 			page = wpage;
2545 		}
2546 	}
2547 	*pfn = page_to_pfn(page);
2548 	return npages;
2549 }
2550 
2551 static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
2552 {
2553 	if (unlikely(!(vma->vm_flags & VM_READ)))
2554 		return false;
2555 
2556 	if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
2557 		return false;
2558 
2559 	return true;
2560 }
2561 
2562 static int kvm_try_get_pfn(kvm_pfn_t pfn)
2563 {
2564 	struct page *page = kvm_pfn_to_refcounted_page(pfn);
2565 
2566 	if (!page)
2567 		return 1;
2568 
2569 	return get_page_unless_zero(page);
2570 }
2571 
2572 static int hva_to_pfn_remapped(struct vm_area_struct *vma,
2573 			       unsigned long addr, bool write_fault,
2574 			       bool *writable, kvm_pfn_t *p_pfn)
2575 {
2576 	kvm_pfn_t pfn;
2577 	pte_t *ptep;
2578 	spinlock_t *ptl;
2579 	int r;
2580 
2581 	r = follow_pte(vma->vm_mm, addr, &ptep, &ptl);
2582 	if (r) {
2583 		/*
2584 		 * get_user_pages fails for VM_IO and VM_PFNMAP vmas and does
2585 		 * not call the fault handler, so do it here.
2586 		 */
2587 		bool unlocked = false;
2588 		r = fixup_user_fault(current->mm, addr,
2589 				     (write_fault ? FAULT_FLAG_WRITE : 0),
2590 				     &unlocked);
2591 		if (unlocked)
2592 			return -EAGAIN;
2593 		if (r)
2594 			return r;
2595 
2596 		r = follow_pte(vma->vm_mm, addr, &ptep, &ptl);
2597 		if (r)
2598 			return r;
2599 	}
2600 
2601 	if (write_fault && !pte_write(*ptep)) {
2602 		pfn = KVM_PFN_ERR_RO_FAULT;
2603 		goto out;
2604 	}
2605 
2606 	if (writable)
2607 		*writable = pte_write(*ptep);
2608 	pfn = pte_pfn(*ptep);
2609 
2610 	/*
2611 	 * Get a reference here because callers of *hva_to_pfn* and
2612 	 * *gfn_to_pfn* ultimately call kvm_release_pfn_clean on the
2613 	 * returned pfn.  This is only needed if the VMA has VM_MIXEDMAP
2614 	 * set, but the kvm_try_get_pfn/kvm_release_pfn_clean pair will
2615 	 * simply do nothing for reserved pfns.
2616 	 *
2617 	 * Whoever called remap_pfn_range is also going to call e.g.
2618 	 * unmap_mapping_range before the underlying pages are freed,
2619 	 * causing a call to our MMU notifier.
2620 	 *
2621 	 * Certain IO or PFNMAP mappings can be backed with valid
2622 	 * struct pages, but be allocated without refcounting e.g.,
2623 	 * tail pages of non-compound higher order allocations, which
2624 	 * would then underflow the refcount when the caller does the
2625 	 * required put_page. Don't allow those pages here.
2626 	 */
2627 	if (!kvm_try_get_pfn(pfn))
2628 		r = -EFAULT;
2629 
2630 out:
2631 	pte_unmap_unlock(ptep, ptl);
2632 	*p_pfn = pfn;
2633 
2634 	return r;
2635 }
2636 
2637 /*
2638  * Pin guest page in memory and return its pfn.
2639  * @addr: host virtual address which maps memory to the guest
2640  * @atomic: whether this function can sleep
2641  * @async: whether this function need to wait IO complete if the
2642  *         host page is not in the memory
2643  * @write_fault: whether we should get a writable host page
2644  * @writable: whether it allows to map a writable host page for !@write_fault
2645  *
2646  * The function will map a writable host page for these two cases:
2647  * 1): @write_fault = true
2648  * 2): @write_fault = false && @writable, @writable will tell the caller
2649  *     whether the mapping is writable.
2650  */
2651 kvm_pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
2652 		     bool write_fault, bool *writable)
2653 {
2654 	struct vm_area_struct *vma;
2655 	kvm_pfn_t pfn;
2656 	int npages, r;
2657 
2658 	/* we can do it either atomically or asynchronously, not both */
2659 	BUG_ON(atomic && async);
2660 
2661 	if (hva_to_pfn_fast(addr, write_fault, writable, &pfn))
2662 		return pfn;
2663 
2664 	if (atomic)
2665 		return KVM_PFN_ERR_FAULT;
2666 
2667 	npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
2668 	if (npages == 1)
2669 		return pfn;
2670 
2671 	mmap_read_lock(current->mm);
2672 	if (npages == -EHWPOISON ||
2673 	      (!async && check_user_page_hwpoison(addr))) {
2674 		pfn = KVM_PFN_ERR_HWPOISON;
2675 		goto exit;
2676 	}
2677 
2678 retry:
2679 	vma = vma_lookup(current->mm, addr);
2680 
2681 	if (vma == NULL)
2682 		pfn = KVM_PFN_ERR_FAULT;
2683 	else if (vma->vm_flags & (VM_IO | VM_PFNMAP)) {
2684 		r = hva_to_pfn_remapped(vma, addr, write_fault, writable, &pfn);
2685 		if (r == -EAGAIN)
2686 			goto retry;
2687 		if (r < 0)
2688 			pfn = KVM_PFN_ERR_FAULT;
2689 	} else {
2690 		if (async && vma_is_valid(vma, write_fault))
2691 			*async = true;
2692 		pfn = KVM_PFN_ERR_FAULT;
2693 	}
2694 exit:
2695 	mmap_read_unlock(current->mm);
2696 	return pfn;
2697 }
2698 
2699 kvm_pfn_t __gfn_to_pfn_memslot(const struct kvm_memory_slot *slot, gfn_t gfn,
2700 			       bool atomic, bool *async, bool write_fault,
2701 			       bool *writable, hva_t *hva)
2702 {
2703 	unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
2704 
2705 	if (hva)
2706 		*hva = addr;
2707 
2708 	if (addr == KVM_HVA_ERR_RO_BAD) {
2709 		if (writable)
2710 			*writable = false;
2711 		return KVM_PFN_ERR_RO_FAULT;
2712 	}
2713 
2714 	if (kvm_is_error_hva(addr)) {
2715 		if (writable)
2716 			*writable = false;
2717 		return KVM_PFN_NOSLOT;
2718 	}
2719 
2720 	/* Do not map writable pfn in the readonly memslot. */
2721 	if (writable && memslot_is_readonly(slot)) {
2722 		*writable = false;
2723 		writable = NULL;
2724 	}
2725 
2726 	return hva_to_pfn(addr, atomic, async, write_fault,
2727 			  writable);
2728 }
2729 EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot);
2730 
2731 kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
2732 		      bool *writable)
2733 {
2734 	return __gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn, false, NULL,
2735 				    write_fault, writable, NULL);
2736 }
2737 EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
2738 
2739 kvm_pfn_t gfn_to_pfn_memslot(const struct kvm_memory_slot *slot, gfn_t gfn)
2740 {
2741 	return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL, NULL);
2742 }
2743 EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot);
2744 
2745 kvm_pfn_t gfn_to_pfn_memslot_atomic(const struct kvm_memory_slot *slot, gfn_t gfn)
2746 {
2747 	return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL, NULL);
2748 }
2749 EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
2750 
2751 kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn)
2752 {
2753 	return gfn_to_pfn_memslot_atomic(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
2754 }
2755 EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn_atomic);
2756 
2757 kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
2758 {
2759 	return gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn);
2760 }
2761 EXPORT_SYMBOL_GPL(gfn_to_pfn);
2762 
2763 kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn)
2764 {
2765 	return gfn_to_pfn_memslot(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
2766 }
2767 EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn);
2768 
2769 int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
2770 			    struct page **pages, int nr_pages)
2771 {
2772 	unsigned long addr;
2773 	gfn_t entry = 0;
2774 
2775 	addr = gfn_to_hva_many(slot, gfn, &entry);
2776 	if (kvm_is_error_hva(addr))
2777 		return -1;
2778 
2779 	if (entry < nr_pages)
2780 		return 0;
2781 
2782 	return get_user_pages_fast_only(addr, nr_pages, FOLL_WRITE, pages);
2783 }
2784 EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
2785 
2786 /*
2787  * Do not use this helper unless you are absolutely certain the gfn _must_ be
2788  * backed by 'struct page'.  A valid example is if the backing memslot is
2789  * controlled by KVM.  Note, if the returned page is valid, it's refcount has
2790  * been elevated by gfn_to_pfn().
2791  */
2792 struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
2793 {
2794 	struct page *page;
2795 	kvm_pfn_t pfn;
2796 
2797 	pfn = gfn_to_pfn(kvm, gfn);
2798 
2799 	if (is_error_noslot_pfn(pfn))
2800 		return KVM_ERR_PTR_BAD_PAGE;
2801 
2802 	page = kvm_pfn_to_refcounted_page(pfn);
2803 	if (!page)
2804 		return KVM_ERR_PTR_BAD_PAGE;
2805 
2806 	return page;
2807 }
2808 EXPORT_SYMBOL_GPL(gfn_to_page);
2809 
2810 void kvm_release_pfn(kvm_pfn_t pfn, bool dirty)
2811 {
2812 	if (dirty)
2813 		kvm_release_pfn_dirty(pfn);
2814 	else
2815 		kvm_release_pfn_clean(pfn);
2816 }
2817 
2818 int kvm_vcpu_map(struct kvm_vcpu *vcpu, gfn_t gfn, struct kvm_host_map *map)
2819 {
2820 	kvm_pfn_t pfn;
2821 	void *hva = NULL;
2822 	struct page *page = KVM_UNMAPPED_PAGE;
2823 
2824 	if (!map)
2825 		return -EINVAL;
2826 
2827 	pfn = gfn_to_pfn(vcpu->kvm, gfn);
2828 	if (is_error_noslot_pfn(pfn))
2829 		return -EINVAL;
2830 
2831 	if (pfn_valid(pfn)) {
2832 		page = pfn_to_page(pfn);
2833 		hva = kmap(page);
2834 #ifdef CONFIG_HAS_IOMEM
2835 	} else {
2836 		hva = memremap(pfn_to_hpa(pfn), PAGE_SIZE, MEMREMAP_WB);
2837 #endif
2838 	}
2839 
2840 	if (!hva)
2841 		return -EFAULT;
2842 
2843 	map->page = page;
2844 	map->hva = hva;
2845 	map->pfn = pfn;
2846 	map->gfn = gfn;
2847 
2848 	return 0;
2849 }
2850 EXPORT_SYMBOL_GPL(kvm_vcpu_map);
2851 
2852 void kvm_vcpu_unmap(struct kvm_vcpu *vcpu, struct kvm_host_map *map, bool dirty)
2853 {
2854 	if (!map)
2855 		return;
2856 
2857 	if (!map->hva)
2858 		return;
2859 
2860 	if (map->page != KVM_UNMAPPED_PAGE)
2861 		kunmap(map->page);
2862 #ifdef CONFIG_HAS_IOMEM
2863 	else
2864 		memunmap(map->hva);
2865 #endif
2866 
2867 	if (dirty)
2868 		kvm_vcpu_mark_page_dirty(vcpu, map->gfn);
2869 
2870 	kvm_release_pfn(map->pfn, dirty);
2871 
2872 	map->hva = NULL;
2873 	map->page = NULL;
2874 }
2875 EXPORT_SYMBOL_GPL(kvm_vcpu_unmap);
2876 
2877 static bool kvm_is_ad_tracked_page(struct page *page)
2878 {
2879 	/*
2880 	 * Per page-flags.h, pages tagged PG_reserved "should in general not be
2881 	 * touched (e.g. set dirty) except by its owner".
2882 	 */
2883 	return !PageReserved(page);
2884 }
2885 
2886 static void kvm_set_page_dirty(struct page *page)
2887 {
2888 	if (kvm_is_ad_tracked_page(page))
2889 		SetPageDirty(page);
2890 }
2891 
2892 static void kvm_set_page_accessed(struct page *page)
2893 {
2894 	if (kvm_is_ad_tracked_page(page))
2895 		mark_page_accessed(page);
2896 }
2897 
2898 void kvm_release_page_clean(struct page *page)
2899 {
2900 	WARN_ON(is_error_page(page));
2901 
2902 	kvm_set_page_accessed(page);
2903 	put_page(page);
2904 }
2905 EXPORT_SYMBOL_GPL(kvm_release_page_clean);
2906 
2907 void kvm_release_pfn_clean(kvm_pfn_t pfn)
2908 {
2909 	struct page *page;
2910 
2911 	if (is_error_noslot_pfn(pfn))
2912 		return;
2913 
2914 	page = kvm_pfn_to_refcounted_page(pfn);
2915 	if (!page)
2916 		return;
2917 
2918 	kvm_release_page_clean(page);
2919 }
2920 EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
2921 
2922 void kvm_release_page_dirty(struct page *page)
2923 {
2924 	WARN_ON(is_error_page(page));
2925 
2926 	kvm_set_page_dirty(page);
2927 	kvm_release_page_clean(page);
2928 }
2929 EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
2930 
2931 void kvm_release_pfn_dirty(kvm_pfn_t pfn)
2932 {
2933 	struct page *page;
2934 
2935 	if (is_error_noslot_pfn(pfn))
2936 		return;
2937 
2938 	page = kvm_pfn_to_refcounted_page(pfn);
2939 	if (!page)
2940 		return;
2941 
2942 	kvm_release_page_dirty(page);
2943 }
2944 EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty);
2945 
2946 /*
2947  * Note, checking for an error/noslot pfn is the caller's responsibility when
2948  * directly marking a page dirty/accessed.  Unlike the "release" helpers, the
2949  * "set" helpers are not to be used when the pfn might point at garbage.
2950  */
2951 void kvm_set_pfn_dirty(kvm_pfn_t pfn)
2952 {
2953 	if (WARN_ON(is_error_noslot_pfn(pfn)))
2954 		return;
2955 
2956 	if (pfn_valid(pfn))
2957 		kvm_set_page_dirty(pfn_to_page(pfn));
2958 }
2959 EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
2960 
2961 void kvm_set_pfn_accessed(kvm_pfn_t pfn)
2962 {
2963 	if (WARN_ON(is_error_noslot_pfn(pfn)))
2964 		return;
2965 
2966 	if (pfn_valid(pfn))
2967 		kvm_set_page_accessed(pfn_to_page(pfn));
2968 }
2969 EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
2970 
2971 static int next_segment(unsigned long len, int offset)
2972 {
2973 	if (len > PAGE_SIZE - offset)
2974 		return PAGE_SIZE - offset;
2975 	else
2976 		return len;
2977 }
2978 
2979 static int __kvm_read_guest_page(struct kvm_memory_slot *slot, gfn_t gfn,
2980 				 void *data, int offset, int len)
2981 {
2982 	int r;
2983 	unsigned long addr;
2984 
2985 	addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
2986 	if (kvm_is_error_hva(addr))
2987 		return -EFAULT;
2988 	r = __copy_from_user(data, (void __user *)addr + offset, len);
2989 	if (r)
2990 		return -EFAULT;
2991 	return 0;
2992 }
2993 
2994 int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
2995 			int len)
2996 {
2997 	struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
2998 
2999 	return __kvm_read_guest_page(slot, gfn, data, offset, len);
3000 }
3001 EXPORT_SYMBOL_GPL(kvm_read_guest_page);
3002 
3003 int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data,
3004 			     int offset, int len)
3005 {
3006 	struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
3007 
3008 	return __kvm_read_guest_page(slot, gfn, data, offset, len);
3009 }
3010 EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_page);
3011 
3012 int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
3013 {
3014 	gfn_t gfn = gpa >> PAGE_SHIFT;
3015 	int seg;
3016 	int offset = offset_in_page(gpa);
3017 	int ret;
3018 
3019 	while ((seg = next_segment(len, offset)) != 0) {
3020 		ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
3021 		if (ret < 0)
3022 			return ret;
3023 		offset = 0;
3024 		len -= seg;
3025 		data += seg;
3026 		++gfn;
3027 	}
3028 	return 0;
3029 }
3030 EXPORT_SYMBOL_GPL(kvm_read_guest);
3031 
3032 int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned long len)
3033 {
3034 	gfn_t gfn = gpa >> PAGE_SHIFT;
3035 	int seg;
3036 	int offset = offset_in_page(gpa);
3037 	int ret;
3038 
3039 	while ((seg = next_segment(len, offset)) != 0) {
3040 		ret = kvm_vcpu_read_guest_page(vcpu, gfn, data, offset, seg);
3041 		if (ret < 0)
3042 			return ret;
3043 		offset = 0;
3044 		len -= seg;
3045 		data += seg;
3046 		++gfn;
3047 	}
3048 	return 0;
3049 }
3050 EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest);
3051 
3052 static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
3053 			           void *data, int offset, unsigned long len)
3054 {
3055 	int r;
3056 	unsigned long addr;
3057 
3058 	addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
3059 	if (kvm_is_error_hva(addr))
3060 		return -EFAULT;
3061 	pagefault_disable();
3062 	r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
3063 	pagefault_enable();
3064 	if (r)
3065 		return -EFAULT;
3066 	return 0;
3067 }
3068 
3069 int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa,
3070 			       void *data, unsigned long len)
3071 {
3072 	gfn_t gfn = gpa >> PAGE_SHIFT;
3073 	struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
3074 	int offset = offset_in_page(gpa);
3075 
3076 	return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
3077 }
3078 EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic);
3079 
3080 static int __kvm_write_guest_page(struct kvm *kvm,
3081 				  struct kvm_memory_slot *memslot, gfn_t gfn,
3082 			          const void *data, int offset, int len)
3083 {
3084 	int r;
3085 	unsigned long addr;
3086 
3087 	addr = gfn_to_hva_memslot(memslot, gfn);
3088 	if (kvm_is_error_hva(addr))
3089 		return -EFAULT;
3090 	r = __copy_to_user((void __user *)addr + offset, data, len);
3091 	if (r)
3092 		return -EFAULT;
3093 	mark_page_dirty_in_slot(kvm, memslot, gfn);
3094 	return 0;
3095 }
3096 
3097 int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn,
3098 			 const void *data, int offset, int len)
3099 {
3100 	struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
3101 
3102 	return __kvm_write_guest_page(kvm, slot, gfn, data, offset, len);
3103 }
3104 EXPORT_SYMBOL_GPL(kvm_write_guest_page);
3105 
3106 int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
3107 			      const void *data, int offset, int len)
3108 {
3109 	struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
3110 
3111 	return __kvm_write_guest_page(vcpu->kvm, slot, gfn, data, offset, len);
3112 }
3113 EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_page);
3114 
3115 int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
3116 		    unsigned long len)
3117 {
3118 	gfn_t gfn = gpa >> PAGE_SHIFT;
3119 	int seg;
3120 	int offset = offset_in_page(gpa);
3121 	int ret;
3122 
3123 	while ((seg = next_segment(len, offset)) != 0) {
3124 		ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
3125 		if (ret < 0)
3126 			return ret;
3127 		offset = 0;
3128 		len -= seg;
3129 		data += seg;
3130 		++gfn;
3131 	}
3132 	return 0;
3133 }
3134 EXPORT_SYMBOL_GPL(kvm_write_guest);
3135 
3136 int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
3137 		         unsigned long len)
3138 {
3139 	gfn_t gfn = gpa >> PAGE_SHIFT;
3140 	int seg;
3141 	int offset = offset_in_page(gpa);
3142 	int ret;
3143 
3144 	while ((seg = next_segment(len, offset)) != 0) {
3145 		ret = kvm_vcpu_write_guest_page(vcpu, gfn, data, offset, seg);
3146 		if (ret < 0)
3147 			return ret;
3148 		offset = 0;
3149 		len -= seg;
3150 		data += seg;
3151 		++gfn;
3152 	}
3153 	return 0;
3154 }
3155 EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest);
3156 
3157 static int __kvm_gfn_to_hva_cache_init(struct kvm_memslots *slots,
3158 				       struct gfn_to_hva_cache *ghc,
3159 				       gpa_t gpa, unsigned long len)
3160 {
3161 	int offset = offset_in_page(gpa);
3162 	gfn_t start_gfn = gpa >> PAGE_SHIFT;
3163 	gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
3164 	gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
3165 	gfn_t nr_pages_avail;
3166 
3167 	/* Update ghc->generation before performing any error checks. */
3168 	ghc->generation = slots->generation;
3169 
3170 	if (start_gfn > end_gfn) {
3171 		ghc->hva = KVM_HVA_ERR_BAD;
3172 		return -EINVAL;
3173 	}
3174 
3175 	/*
3176 	 * If the requested region crosses two memslots, we still
3177 	 * verify that the entire region is valid here.
3178 	 */
3179 	for ( ; start_gfn <= end_gfn; start_gfn += nr_pages_avail) {
3180 		ghc->memslot = __gfn_to_memslot(slots, start_gfn);
3181 		ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
3182 					   &nr_pages_avail);
3183 		if (kvm_is_error_hva(ghc->hva))
3184 			return -EFAULT;
3185 	}
3186 
3187 	/* Use the slow path for cross page reads and writes. */
3188 	if (nr_pages_needed == 1)
3189 		ghc->hva += offset;
3190 	else
3191 		ghc->memslot = NULL;
3192 
3193 	ghc->gpa = gpa;
3194 	ghc->len = len;
3195 	return 0;
3196 }
3197 
3198 int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
3199 			      gpa_t gpa, unsigned long len)
3200 {
3201 	struct kvm_memslots *slots = kvm_memslots(kvm);
3202 	return __kvm_gfn_to_hva_cache_init(slots, ghc, gpa, len);
3203 }
3204 EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
3205 
3206 int kvm_write_guest_offset_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
3207 				  void *data, unsigned int offset,
3208 				  unsigned long len)
3209 {
3210 	struct kvm_memslots *slots = kvm_memslots(kvm);
3211 	int r;
3212 	gpa_t gpa = ghc->gpa + offset;
3213 
3214 	if (WARN_ON_ONCE(len + offset > ghc->len))
3215 		return -EINVAL;
3216 
3217 	if (slots->generation != ghc->generation) {
3218 		if (__kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len))
3219 			return -EFAULT;
3220 	}
3221 
3222 	if (kvm_is_error_hva(ghc->hva))
3223 		return -EFAULT;
3224 
3225 	if (unlikely(!ghc->memslot))
3226 		return kvm_write_guest(kvm, gpa, data, len);
3227 
3228 	r = __copy_to_user((void __user *)ghc->hva + offset, data, len);
3229 	if (r)
3230 		return -EFAULT;
3231 	mark_page_dirty_in_slot(kvm, ghc->memslot, gpa >> PAGE_SHIFT);
3232 
3233 	return 0;
3234 }
3235 EXPORT_SYMBOL_GPL(kvm_write_guest_offset_cached);
3236 
3237 int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
3238 			   void *data, unsigned long len)
3239 {
3240 	return kvm_write_guest_offset_cached(kvm, ghc, data, 0, len);
3241 }
3242 EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
3243 
3244 int kvm_read_guest_offset_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
3245 				 void *data, unsigned int offset,
3246 				 unsigned long len)
3247 {
3248 	struct kvm_memslots *slots = kvm_memslots(kvm);
3249 	int r;
3250 	gpa_t gpa = ghc->gpa + offset;
3251 
3252 	if (WARN_ON_ONCE(len + offset > ghc->len))
3253 		return -EINVAL;
3254 
3255 	if (slots->generation != ghc->generation) {
3256 		if (__kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len))
3257 			return -EFAULT;
3258 	}
3259 
3260 	if (kvm_is_error_hva(ghc->hva))
3261 		return -EFAULT;
3262 
3263 	if (unlikely(!ghc->memslot))
3264 		return kvm_read_guest(kvm, gpa, data, len);
3265 
3266 	r = __copy_from_user(data, (void __user *)ghc->hva + offset, len);
3267 	if (r)
3268 		return -EFAULT;
3269 
3270 	return 0;
3271 }
3272 EXPORT_SYMBOL_GPL(kvm_read_guest_offset_cached);
3273 
3274 int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
3275 			  void *data, unsigned long len)
3276 {
3277 	return kvm_read_guest_offset_cached(kvm, ghc, data, 0, len);
3278 }
3279 EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
3280 
3281 int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
3282 {
3283 	const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
3284 	gfn_t gfn = gpa >> PAGE_SHIFT;
3285 	int seg;
3286 	int offset = offset_in_page(gpa);
3287 	int ret;
3288 
3289 	while ((seg = next_segment(len, offset)) != 0) {
3290 		ret = kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
3291 		if (ret < 0)
3292 			return ret;
3293 		offset = 0;
3294 		len -= seg;
3295 		++gfn;
3296 	}
3297 	return 0;
3298 }
3299 EXPORT_SYMBOL_GPL(kvm_clear_guest);
3300 
3301 void mark_page_dirty_in_slot(struct kvm *kvm,
3302 			     const struct kvm_memory_slot *memslot,
3303 		 	     gfn_t gfn)
3304 {
3305 	struct kvm_vcpu *vcpu = kvm_get_running_vcpu();
3306 
3307 #ifdef CONFIG_HAVE_KVM_DIRTY_RING
3308 	if (WARN_ON_ONCE(!vcpu) || WARN_ON_ONCE(vcpu->kvm != kvm))
3309 		return;
3310 #endif
3311 
3312 	if (memslot && kvm_slot_dirty_track_enabled(memslot)) {
3313 		unsigned long rel_gfn = gfn - memslot->base_gfn;
3314 		u32 slot = (memslot->as_id << 16) | memslot->id;
3315 
3316 		if (kvm->dirty_ring_size)
3317 			kvm_dirty_ring_push(&vcpu->dirty_ring,
3318 					    slot, rel_gfn);
3319 		else
3320 			set_bit_le(rel_gfn, memslot->dirty_bitmap);
3321 	}
3322 }
3323 EXPORT_SYMBOL_GPL(mark_page_dirty_in_slot);
3324 
3325 void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
3326 {
3327 	struct kvm_memory_slot *memslot;
3328 
3329 	memslot = gfn_to_memslot(kvm, gfn);
3330 	mark_page_dirty_in_slot(kvm, memslot, gfn);
3331 }
3332 EXPORT_SYMBOL_GPL(mark_page_dirty);
3333 
3334 void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn)
3335 {
3336 	struct kvm_memory_slot *memslot;
3337 
3338 	memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
3339 	mark_page_dirty_in_slot(vcpu->kvm, memslot, gfn);
3340 }
3341 EXPORT_SYMBOL_GPL(kvm_vcpu_mark_page_dirty);
3342 
3343 void kvm_sigset_activate(struct kvm_vcpu *vcpu)
3344 {
3345 	if (!vcpu->sigset_active)
3346 		return;
3347 
3348 	/*
3349 	 * This does a lockless modification of ->real_blocked, which is fine
3350 	 * because, only current can change ->real_blocked and all readers of
3351 	 * ->real_blocked don't care as long ->real_blocked is always a subset
3352 	 * of ->blocked.
3353 	 */
3354 	sigprocmask(SIG_SETMASK, &vcpu->sigset, &current->real_blocked);
3355 }
3356 
3357 void kvm_sigset_deactivate(struct kvm_vcpu *vcpu)
3358 {
3359 	if (!vcpu->sigset_active)
3360 		return;
3361 
3362 	sigprocmask(SIG_SETMASK, &current->real_blocked, NULL);
3363 	sigemptyset(&current->real_blocked);
3364 }
3365 
3366 static void grow_halt_poll_ns(struct kvm_vcpu *vcpu)
3367 {
3368 	unsigned int old, val, grow, grow_start;
3369 
3370 	old = val = vcpu->halt_poll_ns;
3371 	grow_start = READ_ONCE(halt_poll_ns_grow_start);
3372 	grow = READ_ONCE(halt_poll_ns_grow);
3373 	if (!grow)
3374 		goto out;
3375 
3376 	val *= grow;
3377 	if (val < grow_start)
3378 		val = grow_start;
3379 
3380 	if (val > vcpu->kvm->max_halt_poll_ns)
3381 		val = vcpu->kvm->max_halt_poll_ns;
3382 
3383 	vcpu->halt_poll_ns = val;
3384 out:
3385 	trace_kvm_halt_poll_ns_grow(vcpu->vcpu_id, val, old);
3386 }
3387 
3388 static void shrink_halt_poll_ns(struct kvm_vcpu *vcpu)
3389 {
3390 	unsigned int old, val, shrink, grow_start;
3391 
3392 	old = val = vcpu->halt_poll_ns;
3393 	shrink = READ_ONCE(halt_poll_ns_shrink);
3394 	grow_start = READ_ONCE(halt_poll_ns_grow_start);
3395 	if (shrink == 0)
3396 		val = 0;
3397 	else
3398 		val /= shrink;
3399 
3400 	if (val < grow_start)
3401 		val = 0;
3402 
3403 	vcpu->halt_poll_ns = val;
3404 	trace_kvm_halt_poll_ns_shrink(vcpu->vcpu_id, val, old);
3405 }
3406 
3407 static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
3408 {
3409 	int ret = -EINTR;
3410 	int idx = srcu_read_lock(&vcpu->kvm->srcu);
3411 
3412 	if (kvm_arch_vcpu_runnable(vcpu))
3413 		goto out;
3414 	if (kvm_cpu_has_pending_timer(vcpu))
3415 		goto out;
3416 	if (signal_pending(current))
3417 		goto out;
3418 	if (kvm_check_request(KVM_REQ_UNBLOCK, vcpu))
3419 		goto out;
3420 
3421 	ret = 0;
3422 out:
3423 	srcu_read_unlock(&vcpu->kvm->srcu, idx);
3424 	return ret;
3425 }
3426 
3427 /*
3428  * Block the vCPU until the vCPU is runnable, an event arrives, or a signal is
3429  * pending.  This is mostly used when halting a vCPU, but may also be used
3430  * directly for other vCPU non-runnable states, e.g. x86's Wait-For-SIPI.
3431  */
3432 bool kvm_vcpu_block(struct kvm_vcpu *vcpu)
3433 {
3434 	struct rcuwait *wait = kvm_arch_vcpu_get_wait(vcpu);
3435 	bool waited = false;
3436 
3437 	vcpu->stat.generic.blocking = 1;
3438 
3439 	preempt_disable();
3440 	kvm_arch_vcpu_blocking(vcpu);
3441 	prepare_to_rcuwait(wait);
3442 	preempt_enable();
3443 
3444 	for (;;) {
3445 		set_current_state(TASK_INTERRUPTIBLE);
3446 
3447 		if (kvm_vcpu_check_block(vcpu) < 0)
3448 			break;
3449 
3450 		waited = true;
3451 		schedule();
3452 	}
3453 
3454 	preempt_disable();
3455 	finish_rcuwait(wait);
3456 	kvm_arch_vcpu_unblocking(vcpu);
3457 	preempt_enable();
3458 
3459 	vcpu->stat.generic.blocking = 0;
3460 
3461 	return waited;
3462 }
3463 
3464 static inline void update_halt_poll_stats(struct kvm_vcpu *vcpu, ktime_t start,
3465 					  ktime_t end, bool success)
3466 {
3467 	struct kvm_vcpu_stat_generic *stats = &vcpu->stat.generic;
3468 	u64 poll_ns = ktime_to_ns(ktime_sub(end, start));
3469 
3470 	++vcpu->stat.generic.halt_attempted_poll;
3471 
3472 	if (success) {
3473 		++vcpu->stat.generic.halt_successful_poll;
3474 
3475 		if (!vcpu_valid_wakeup(vcpu))
3476 			++vcpu->stat.generic.halt_poll_invalid;
3477 
3478 		stats->halt_poll_success_ns += poll_ns;
3479 		KVM_STATS_LOG_HIST_UPDATE(stats->halt_poll_success_hist, poll_ns);
3480 	} else {
3481 		stats->halt_poll_fail_ns += poll_ns;
3482 		KVM_STATS_LOG_HIST_UPDATE(stats->halt_poll_fail_hist, poll_ns);
3483 	}
3484 }
3485 
3486 /*
3487  * Emulate a vCPU halt condition, e.g. HLT on x86, WFI on arm, etc...  If halt
3488  * polling is enabled, busy wait for a short time before blocking to avoid the
3489  * expensive block+unblock sequence if a wake event arrives soon after the vCPU
3490  * is halted.
3491  */
3492 void kvm_vcpu_halt(struct kvm_vcpu *vcpu)
3493 {
3494 	bool halt_poll_allowed = !kvm_arch_no_poll(vcpu);
3495 	bool do_halt_poll = halt_poll_allowed && vcpu->halt_poll_ns;
3496 	ktime_t start, cur, poll_end;
3497 	bool waited = false;
3498 	u64 halt_ns;
3499 
3500 	start = cur = poll_end = ktime_get();
3501 	if (do_halt_poll) {
3502 		ktime_t stop = ktime_add_ns(start, vcpu->halt_poll_ns);
3503 
3504 		do {
3505 			/*
3506 			 * This sets KVM_REQ_UNHALT if an interrupt
3507 			 * arrives.
3508 			 */
3509 			if (kvm_vcpu_check_block(vcpu) < 0)
3510 				goto out;
3511 			cpu_relax();
3512 			poll_end = cur = ktime_get();
3513 		} while (kvm_vcpu_can_poll(cur, stop));
3514 	}
3515 
3516 	waited = kvm_vcpu_block(vcpu);
3517 
3518 	cur = ktime_get();
3519 	if (waited) {
3520 		vcpu->stat.generic.halt_wait_ns +=
3521 			ktime_to_ns(cur) - ktime_to_ns(poll_end);
3522 		KVM_STATS_LOG_HIST_UPDATE(vcpu->stat.generic.halt_wait_hist,
3523 				ktime_to_ns(cur) - ktime_to_ns(poll_end));
3524 	}
3525 out:
3526 	/* The total time the vCPU was "halted", including polling time. */
3527 	halt_ns = ktime_to_ns(cur) - ktime_to_ns(start);
3528 
3529 	/*
3530 	 * Note, halt-polling is considered successful so long as the vCPU was
3531 	 * never actually scheduled out, i.e. even if the wake event arrived
3532 	 * after of the halt-polling loop itself, but before the full wait.
3533 	 */
3534 	if (do_halt_poll)
3535 		update_halt_poll_stats(vcpu, start, poll_end, !waited);
3536 
3537 	if (halt_poll_allowed) {
3538 		if (!vcpu_valid_wakeup(vcpu)) {
3539 			shrink_halt_poll_ns(vcpu);
3540 		} else if (vcpu->kvm->max_halt_poll_ns) {
3541 			if (halt_ns <= vcpu->halt_poll_ns)
3542 				;
3543 			/* we had a long block, shrink polling */
3544 			else if (vcpu->halt_poll_ns &&
3545 				 halt_ns > vcpu->kvm->max_halt_poll_ns)
3546 				shrink_halt_poll_ns(vcpu);
3547 			/* we had a short halt and our poll time is too small */
3548 			else if (vcpu->halt_poll_ns < vcpu->kvm->max_halt_poll_ns &&
3549 				 halt_ns < vcpu->kvm->max_halt_poll_ns)
3550 				grow_halt_poll_ns(vcpu);
3551 		} else {
3552 			vcpu->halt_poll_ns = 0;
3553 		}
3554 	}
3555 
3556 	trace_kvm_vcpu_wakeup(halt_ns, waited, vcpu_valid_wakeup(vcpu));
3557 }
3558 EXPORT_SYMBOL_GPL(kvm_vcpu_halt);
3559 
3560 bool kvm_vcpu_wake_up(struct kvm_vcpu *vcpu)
3561 {
3562 	if (__kvm_vcpu_wake_up(vcpu)) {
3563 		WRITE_ONCE(vcpu->ready, true);
3564 		++vcpu->stat.generic.halt_wakeup;
3565 		return true;
3566 	}
3567 
3568 	return false;
3569 }
3570 EXPORT_SYMBOL_GPL(kvm_vcpu_wake_up);
3571 
3572 #ifndef CONFIG_S390
3573 /*
3574  * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
3575  */
3576 void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
3577 {
3578 	int me, cpu;
3579 
3580 	if (kvm_vcpu_wake_up(vcpu))
3581 		return;
3582 
3583 	me = get_cpu();
3584 	/*
3585 	 * The only state change done outside the vcpu mutex is IN_GUEST_MODE
3586 	 * to EXITING_GUEST_MODE.  Therefore the moderately expensive "should
3587 	 * kick" check does not need atomic operations if kvm_vcpu_kick is used
3588 	 * within the vCPU thread itself.
3589 	 */
3590 	if (vcpu == __this_cpu_read(kvm_running_vcpu)) {
3591 		if (vcpu->mode == IN_GUEST_MODE)
3592 			WRITE_ONCE(vcpu->mode, EXITING_GUEST_MODE);
3593 		goto out;
3594 	}
3595 
3596 	/*
3597 	 * Note, the vCPU could get migrated to a different pCPU at any point
3598 	 * after kvm_arch_vcpu_should_kick(), which could result in sending an
3599 	 * IPI to the previous pCPU.  But, that's ok because the purpose of the
3600 	 * IPI is to force the vCPU to leave IN_GUEST_MODE, and migrating the
3601 	 * vCPU also requires it to leave IN_GUEST_MODE.
3602 	 */
3603 	if (kvm_arch_vcpu_should_kick(vcpu)) {
3604 		cpu = READ_ONCE(vcpu->cpu);
3605 		if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
3606 			smp_send_reschedule(cpu);
3607 	}
3608 out:
3609 	put_cpu();
3610 }
3611 EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
3612 #endif /* !CONFIG_S390 */
3613 
3614 int kvm_vcpu_yield_to(struct kvm_vcpu *target)
3615 {
3616 	struct pid *pid;
3617 	struct task_struct *task = NULL;
3618 	int ret = 0;
3619 
3620 	rcu_read_lock();
3621 	pid = rcu_dereference(target->pid);
3622 	if (pid)
3623 		task = get_pid_task(pid, PIDTYPE_PID);
3624 	rcu_read_unlock();
3625 	if (!task)
3626 		return ret;
3627 	ret = yield_to(task, 1);
3628 	put_task_struct(task);
3629 
3630 	return ret;
3631 }
3632 EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
3633 
3634 /*
3635  * Helper that checks whether a VCPU is eligible for directed yield.
3636  * Most eligible candidate to yield is decided by following heuristics:
3637  *
3638  *  (a) VCPU which has not done pl-exit or cpu relax intercepted recently
3639  *  (preempted lock holder), indicated by @in_spin_loop.
3640  *  Set at the beginning and cleared at the end of interception/PLE handler.
3641  *
3642  *  (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
3643  *  chance last time (mostly it has become eligible now since we have probably
3644  *  yielded to lockholder in last iteration. This is done by toggling
3645  *  @dy_eligible each time a VCPU checked for eligibility.)
3646  *
3647  *  Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
3648  *  to preempted lock-holder could result in wrong VCPU selection and CPU
3649  *  burning. Giving priority for a potential lock-holder increases lock
3650  *  progress.
3651  *
3652  *  Since algorithm is based on heuristics, accessing another VCPU data without
3653  *  locking does not harm. It may result in trying to yield to  same VCPU, fail
3654  *  and continue with next VCPU and so on.
3655  */
3656 static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
3657 {
3658 #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
3659 	bool eligible;
3660 
3661 	eligible = !vcpu->spin_loop.in_spin_loop ||
3662 		    vcpu->spin_loop.dy_eligible;
3663 
3664 	if (vcpu->spin_loop.in_spin_loop)
3665 		kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
3666 
3667 	return eligible;
3668 #else
3669 	return true;
3670 #endif
3671 }
3672 
3673 /*
3674  * Unlike kvm_arch_vcpu_runnable, this function is called outside
3675  * a vcpu_load/vcpu_put pair.  However, for most architectures
3676  * kvm_arch_vcpu_runnable does not require vcpu_load.
3677  */
3678 bool __weak kvm_arch_dy_runnable(struct kvm_vcpu *vcpu)
3679 {
3680 	return kvm_arch_vcpu_runnable(vcpu);
3681 }
3682 
3683 static bool vcpu_dy_runnable(struct kvm_vcpu *vcpu)
3684 {
3685 	if (kvm_arch_dy_runnable(vcpu))
3686 		return true;
3687 
3688 #ifdef CONFIG_KVM_ASYNC_PF
3689 	if (!list_empty_careful(&vcpu->async_pf.done))
3690 		return true;
3691 #endif
3692 
3693 	return false;
3694 }
3695 
3696 bool __weak kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu)
3697 {
3698 	return false;
3699 }
3700 
3701 void kvm_vcpu_on_spin(struct kvm_vcpu *me, bool yield_to_kernel_mode)
3702 {
3703 	struct kvm *kvm = me->kvm;
3704 	struct kvm_vcpu *vcpu;
3705 	int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
3706 	unsigned long i;
3707 	int yielded = 0;
3708 	int try = 3;
3709 	int pass;
3710 
3711 	kvm_vcpu_set_in_spin_loop(me, true);
3712 	/*
3713 	 * We boost the priority of a VCPU that is runnable but not
3714 	 * currently running, because it got preempted by something
3715 	 * else and called schedule in __vcpu_run.  Hopefully that
3716 	 * VCPU is holding the lock that we need and will release it.
3717 	 * We approximate round-robin by starting at the last boosted VCPU.
3718 	 */
3719 	for (pass = 0; pass < 2 && !yielded && try; pass++) {
3720 		kvm_for_each_vcpu(i, vcpu, kvm) {
3721 			if (!pass && i <= last_boosted_vcpu) {
3722 				i = last_boosted_vcpu;
3723 				continue;
3724 			} else if (pass && i > last_boosted_vcpu)
3725 				break;
3726 			if (!READ_ONCE(vcpu->ready))
3727 				continue;
3728 			if (vcpu == me)
3729 				continue;
3730 			if (kvm_vcpu_is_blocking(vcpu) && !vcpu_dy_runnable(vcpu))
3731 				continue;
3732 			if (READ_ONCE(vcpu->preempted) && yield_to_kernel_mode &&
3733 			    !kvm_arch_dy_has_pending_interrupt(vcpu) &&
3734 			    !kvm_arch_vcpu_in_kernel(vcpu))
3735 				continue;
3736 			if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
3737 				continue;
3738 
3739 			yielded = kvm_vcpu_yield_to(vcpu);
3740 			if (yielded > 0) {
3741 				kvm->last_boosted_vcpu = i;
3742 				break;
3743 			} else if (yielded < 0) {
3744 				try--;
3745 				if (!try)
3746 					break;
3747 			}
3748 		}
3749 	}
3750 	kvm_vcpu_set_in_spin_loop(me, false);
3751 
3752 	/* Ensure vcpu is not eligible during next spinloop */
3753 	kvm_vcpu_set_dy_eligible(me, false);
3754 }
3755 EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
3756 
3757 static bool kvm_page_in_dirty_ring(struct kvm *kvm, unsigned long pgoff)
3758 {
3759 #ifdef CONFIG_HAVE_KVM_DIRTY_RING
3760 	return (pgoff >= KVM_DIRTY_LOG_PAGE_OFFSET) &&
3761 	    (pgoff < KVM_DIRTY_LOG_PAGE_OFFSET +
3762 	     kvm->dirty_ring_size / PAGE_SIZE);
3763 #else
3764 	return false;
3765 #endif
3766 }
3767 
3768 static vm_fault_t kvm_vcpu_fault(struct vm_fault *vmf)
3769 {
3770 	struct kvm_vcpu *vcpu = vmf->vma->vm_file->private_data;
3771 	struct page *page;
3772 
3773 	if (vmf->pgoff == 0)
3774 		page = virt_to_page(vcpu->run);
3775 #ifdef CONFIG_X86
3776 	else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
3777 		page = virt_to_page(vcpu->arch.pio_data);
3778 #endif
3779 #ifdef CONFIG_KVM_MMIO
3780 	else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
3781 		page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
3782 #endif
3783 	else if (kvm_page_in_dirty_ring(vcpu->kvm, vmf->pgoff))
3784 		page = kvm_dirty_ring_get_page(
3785 		    &vcpu->dirty_ring,
3786 		    vmf->pgoff - KVM_DIRTY_LOG_PAGE_OFFSET);
3787 	else
3788 		return kvm_arch_vcpu_fault(vcpu, vmf);
3789 	get_page(page);
3790 	vmf->page = page;
3791 	return 0;
3792 }
3793 
3794 static const struct vm_operations_struct kvm_vcpu_vm_ops = {
3795 	.fault = kvm_vcpu_fault,
3796 };
3797 
3798 static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
3799 {
3800 	struct kvm_vcpu *vcpu = file->private_data;
3801 	unsigned long pages = vma_pages(vma);
3802 
3803 	if ((kvm_page_in_dirty_ring(vcpu->kvm, vma->vm_pgoff) ||
3804 	     kvm_page_in_dirty_ring(vcpu->kvm, vma->vm_pgoff + pages - 1)) &&
3805 	    ((vma->vm_flags & VM_EXEC) || !(vma->vm_flags & VM_SHARED)))
3806 		return -EINVAL;
3807 
3808 	vma->vm_ops = &kvm_vcpu_vm_ops;
3809 	return 0;
3810 }
3811 
3812 static int kvm_vcpu_release(struct inode *inode, struct file *filp)
3813 {
3814 	struct kvm_vcpu *vcpu = filp->private_data;
3815 
3816 	kvm_put_kvm(vcpu->kvm);
3817 	return 0;
3818 }
3819 
3820 static const struct file_operations kvm_vcpu_fops = {
3821 	.release        = kvm_vcpu_release,
3822 	.unlocked_ioctl = kvm_vcpu_ioctl,
3823 	.mmap           = kvm_vcpu_mmap,
3824 	.llseek		= noop_llseek,
3825 	KVM_COMPAT(kvm_vcpu_compat_ioctl),
3826 };
3827 
3828 /*
3829  * Allocates an inode for the vcpu.
3830  */
3831 static int create_vcpu_fd(struct kvm_vcpu *vcpu)
3832 {
3833 	char name[8 + 1 + ITOA_MAX_LEN + 1];
3834 
3835 	snprintf(name, sizeof(name), "kvm-vcpu:%d", vcpu->vcpu_id);
3836 	return anon_inode_getfd(name, &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
3837 }
3838 
3839 #ifdef __KVM_HAVE_ARCH_VCPU_DEBUGFS
3840 static int vcpu_get_pid(void *data, u64 *val)
3841 {
3842 	struct kvm_vcpu *vcpu = (struct kvm_vcpu *) data;
3843 	*val = pid_nr(rcu_access_pointer(vcpu->pid));
3844 	return 0;
3845 }
3846 
3847 DEFINE_SIMPLE_ATTRIBUTE(vcpu_get_pid_fops, vcpu_get_pid, NULL, "%llu\n");
3848 
3849 static void kvm_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
3850 {
3851 	struct dentry *debugfs_dentry;
3852 	char dir_name[ITOA_MAX_LEN * 2];
3853 
3854 	if (!debugfs_initialized())
3855 		return;
3856 
3857 	snprintf(dir_name, sizeof(dir_name), "vcpu%d", vcpu->vcpu_id);
3858 	debugfs_dentry = debugfs_create_dir(dir_name,
3859 					    vcpu->kvm->debugfs_dentry);
3860 	debugfs_create_file("pid", 0444, debugfs_dentry, vcpu,
3861 			    &vcpu_get_pid_fops);
3862 
3863 	kvm_arch_create_vcpu_debugfs(vcpu, debugfs_dentry);
3864 }
3865 #endif
3866 
3867 /*
3868  * Creates some virtual cpus.  Good luck creating more than one.
3869  */
3870 static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
3871 {
3872 	int r;
3873 	struct kvm_vcpu *vcpu;
3874 	struct page *page;
3875 
3876 	if (id >= KVM_MAX_VCPU_IDS)
3877 		return -EINVAL;
3878 
3879 	mutex_lock(&kvm->lock);
3880 	if (kvm->created_vcpus >= kvm->max_vcpus) {
3881 		mutex_unlock(&kvm->lock);
3882 		return -EINVAL;
3883 	}
3884 
3885 	r = kvm_arch_vcpu_precreate(kvm, id);
3886 	if (r) {
3887 		mutex_unlock(&kvm->lock);
3888 		return r;
3889 	}
3890 
3891 	kvm->created_vcpus++;
3892 	mutex_unlock(&kvm->lock);
3893 
3894 	vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL_ACCOUNT);
3895 	if (!vcpu) {
3896 		r = -ENOMEM;
3897 		goto vcpu_decrement;
3898 	}
3899 
3900 	BUILD_BUG_ON(sizeof(struct kvm_run) > PAGE_SIZE);
3901 	page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
3902 	if (!page) {
3903 		r = -ENOMEM;
3904 		goto vcpu_free;
3905 	}
3906 	vcpu->run = page_address(page);
3907 
3908 	kvm_vcpu_init(vcpu, kvm, id);
3909 
3910 	r = kvm_arch_vcpu_create(vcpu);
3911 	if (r)
3912 		goto vcpu_free_run_page;
3913 
3914 	if (kvm->dirty_ring_size) {
3915 		r = kvm_dirty_ring_alloc(&vcpu->dirty_ring,
3916 					 id, kvm->dirty_ring_size);
3917 		if (r)
3918 			goto arch_vcpu_destroy;
3919 	}
3920 
3921 	mutex_lock(&kvm->lock);
3922 	if (kvm_get_vcpu_by_id(kvm, id)) {
3923 		r = -EEXIST;
3924 		goto unlock_vcpu_destroy;
3925 	}
3926 
3927 	vcpu->vcpu_idx = atomic_read(&kvm->online_vcpus);
3928 	r = xa_insert(&kvm->vcpu_array, vcpu->vcpu_idx, vcpu, GFP_KERNEL_ACCOUNT);
3929 	BUG_ON(r == -EBUSY);
3930 	if (r)
3931 		goto unlock_vcpu_destroy;
3932 
3933 	/* Now it's all set up, let userspace reach it */
3934 	kvm_get_kvm(kvm);
3935 	r = create_vcpu_fd(vcpu);
3936 	if (r < 0) {
3937 		xa_erase(&kvm->vcpu_array, vcpu->vcpu_idx);
3938 		kvm_put_kvm_no_destroy(kvm);
3939 		goto unlock_vcpu_destroy;
3940 	}
3941 
3942 	/*
3943 	 * Pairs with smp_rmb() in kvm_get_vcpu.  Store the vcpu
3944 	 * pointer before kvm->online_vcpu's incremented value.
3945 	 */
3946 	smp_wmb();
3947 	atomic_inc(&kvm->online_vcpus);
3948 
3949 	mutex_unlock(&kvm->lock);
3950 	kvm_arch_vcpu_postcreate(vcpu);
3951 	kvm_create_vcpu_debugfs(vcpu);
3952 	return r;
3953 
3954 unlock_vcpu_destroy:
3955 	mutex_unlock(&kvm->lock);
3956 	kvm_dirty_ring_free(&vcpu->dirty_ring);
3957 arch_vcpu_destroy:
3958 	kvm_arch_vcpu_destroy(vcpu);
3959 vcpu_free_run_page:
3960 	free_page((unsigned long)vcpu->run);
3961 vcpu_free:
3962 	kmem_cache_free(kvm_vcpu_cache, vcpu);
3963 vcpu_decrement:
3964 	mutex_lock(&kvm->lock);
3965 	kvm->created_vcpus--;
3966 	mutex_unlock(&kvm->lock);
3967 	return r;
3968 }
3969 
3970 static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
3971 {
3972 	if (sigset) {
3973 		sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
3974 		vcpu->sigset_active = 1;
3975 		vcpu->sigset = *sigset;
3976 	} else
3977 		vcpu->sigset_active = 0;
3978 	return 0;
3979 }
3980 
3981 static ssize_t kvm_vcpu_stats_read(struct file *file, char __user *user_buffer,
3982 			      size_t size, loff_t *offset)
3983 {
3984 	struct kvm_vcpu *vcpu = file->private_data;
3985 
3986 	return kvm_stats_read(vcpu->stats_id, &kvm_vcpu_stats_header,
3987 			&kvm_vcpu_stats_desc[0], &vcpu->stat,
3988 			sizeof(vcpu->stat), user_buffer, size, offset);
3989 }
3990 
3991 static const struct file_operations kvm_vcpu_stats_fops = {
3992 	.read = kvm_vcpu_stats_read,
3993 	.llseek = noop_llseek,
3994 };
3995 
3996 static int kvm_vcpu_ioctl_get_stats_fd(struct kvm_vcpu *vcpu)
3997 {
3998 	int fd;
3999 	struct file *file;
4000 	char name[15 + ITOA_MAX_LEN + 1];
4001 
4002 	snprintf(name, sizeof(name), "kvm-vcpu-stats:%d", vcpu->vcpu_id);
4003 
4004 	fd = get_unused_fd_flags(O_CLOEXEC);
4005 	if (fd < 0)
4006 		return fd;
4007 
4008 	file = anon_inode_getfile(name, &kvm_vcpu_stats_fops, vcpu, O_RDONLY);
4009 	if (IS_ERR(file)) {
4010 		put_unused_fd(fd);
4011 		return PTR_ERR(file);
4012 	}
4013 	file->f_mode |= FMODE_PREAD;
4014 	fd_install(fd, file);
4015 
4016 	return fd;
4017 }
4018 
4019 static long kvm_vcpu_ioctl(struct file *filp,
4020 			   unsigned int ioctl, unsigned long arg)
4021 {
4022 	struct kvm_vcpu *vcpu = filp->private_data;
4023 	void __user *argp = (void __user *)arg;
4024 	int r;
4025 	struct kvm_fpu *fpu = NULL;
4026 	struct kvm_sregs *kvm_sregs = NULL;
4027 
4028 	if (vcpu->kvm->mm != current->mm || vcpu->kvm->vm_dead)
4029 		return -EIO;
4030 
4031 	if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
4032 		return -EINVAL;
4033 
4034 	/*
4035 	 * Some architectures have vcpu ioctls that are asynchronous to vcpu
4036 	 * execution; mutex_lock() would break them.
4037 	 */
4038 	r = kvm_arch_vcpu_async_ioctl(filp, ioctl, arg);
4039 	if (r != -ENOIOCTLCMD)
4040 		return r;
4041 
4042 	if (mutex_lock_killable(&vcpu->mutex))
4043 		return -EINTR;
4044 	switch (ioctl) {
4045 	case KVM_RUN: {
4046 		struct pid *oldpid;
4047 		r = -EINVAL;
4048 		if (arg)
4049 			goto out;
4050 		oldpid = rcu_access_pointer(vcpu->pid);
4051 		if (unlikely(oldpid != task_pid(current))) {
4052 			/* The thread running this VCPU changed. */
4053 			struct pid *newpid;
4054 
4055 			r = kvm_arch_vcpu_run_pid_change(vcpu);
4056 			if (r)
4057 				break;
4058 
4059 			newpid = get_task_pid(current, PIDTYPE_PID);
4060 			rcu_assign_pointer(vcpu->pid, newpid);
4061 			if (oldpid)
4062 				synchronize_rcu();
4063 			put_pid(oldpid);
4064 		}
4065 		r = kvm_arch_vcpu_ioctl_run(vcpu);
4066 		trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
4067 		break;
4068 	}
4069 	case KVM_GET_REGS: {
4070 		struct kvm_regs *kvm_regs;
4071 
4072 		r = -ENOMEM;
4073 		kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL_ACCOUNT);
4074 		if (!kvm_regs)
4075 			goto out;
4076 		r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
4077 		if (r)
4078 			goto out_free1;
4079 		r = -EFAULT;
4080 		if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
4081 			goto out_free1;
4082 		r = 0;
4083 out_free1:
4084 		kfree(kvm_regs);
4085 		break;
4086 	}
4087 	case KVM_SET_REGS: {
4088 		struct kvm_regs *kvm_regs;
4089 
4090 		kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
4091 		if (IS_ERR(kvm_regs)) {
4092 			r = PTR_ERR(kvm_regs);
4093 			goto out;
4094 		}
4095 		r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
4096 		kfree(kvm_regs);
4097 		break;
4098 	}
4099 	case KVM_GET_SREGS: {
4100 		kvm_sregs = kzalloc(sizeof(struct kvm_sregs),
4101 				    GFP_KERNEL_ACCOUNT);
4102 		r = -ENOMEM;
4103 		if (!kvm_sregs)
4104 			goto out;
4105 		r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
4106 		if (r)
4107 			goto out;
4108 		r = -EFAULT;
4109 		if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
4110 			goto out;
4111 		r = 0;
4112 		break;
4113 	}
4114 	case KVM_SET_SREGS: {
4115 		kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
4116 		if (IS_ERR(kvm_sregs)) {
4117 			r = PTR_ERR(kvm_sregs);
4118 			kvm_sregs = NULL;
4119 			goto out;
4120 		}
4121 		r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
4122 		break;
4123 	}
4124 	case KVM_GET_MP_STATE: {
4125 		struct kvm_mp_state mp_state;
4126 
4127 		r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
4128 		if (r)
4129 			goto out;
4130 		r = -EFAULT;
4131 		if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
4132 			goto out;
4133 		r = 0;
4134 		break;
4135 	}
4136 	case KVM_SET_MP_STATE: {
4137 		struct kvm_mp_state mp_state;
4138 
4139 		r = -EFAULT;
4140 		if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
4141 			goto out;
4142 		r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
4143 		break;
4144 	}
4145 	case KVM_TRANSLATE: {
4146 		struct kvm_translation tr;
4147 
4148 		r = -EFAULT;
4149 		if (copy_from_user(&tr, argp, sizeof(tr)))
4150 			goto out;
4151 		r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
4152 		if (r)
4153 			goto out;
4154 		r = -EFAULT;
4155 		if (copy_to_user(argp, &tr, sizeof(tr)))
4156 			goto out;
4157 		r = 0;
4158 		break;
4159 	}
4160 	case KVM_SET_GUEST_DEBUG: {
4161 		struct kvm_guest_debug dbg;
4162 
4163 		r = -EFAULT;
4164 		if (copy_from_user(&dbg, argp, sizeof(dbg)))
4165 			goto out;
4166 		r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
4167 		break;
4168 	}
4169 	case KVM_SET_SIGNAL_MASK: {
4170 		struct kvm_signal_mask __user *sigmask_arg = argp;
4171 		struct kvm_signal_mask kvm_sigmask;
4172 		sigset_t sigset, *p;
4173 
4174 		p = NULL;
4175 		if (argp) {
4176 			r = -EFAULT;
4177 			if (copy_from_user(&kvm_sigmask, argp,
4178 					   sizeof(kvm_sigmask)))
4179 				goto out;
4180 			r = -EINVAL;
4181 			if (kvm_sigmask.len != sizeof(sigset))
4182 				goto out;
4183 			r = -EFAULT;
4184 			if (copy_from_user(&sigset, sigmask_arg->sigset,
4185 					   sizeof(sigset)))
4186 				goto out;
4187 			p = &sigset;
4188 		}
4189 		r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
4190 		break;
4191 	}
4192 	case KVM_GET_FPU: {
4193 		fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL_ACCOUNT);
4194 		r = -ENOMEM;
4195 		if (!fpu)
4196 			goto out;
4197 		r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
4198 		if (r)
4199 			goto out;
4200 		r = -EFAULT;
4201 		if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
4202 			goto out;
4203 		r = 0;
4204 		break;
4205 	}
4206 	case KVM_SET_FPU: {
4207 		fpu = memdup_user(argp, sizeof(*fpu));
4208 		if (IS_ERR(fpu)) {
4209 			r = PTR_ERR(fpu);
4210 			fpu = NULL;
4211 			goto out;
4212 		}
4213 		r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
4214 		break;
4215 	}
4216 	case KVM_GET_STATS_FD: {
4217 		r = kvm_vcpu_ioctl_get_stats_fd(vcpu);
4218 		break;
4219 	}
4220 	default:
4221 		r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
4222 	}
4223 out:
4224 	mutex_unlock(&vcpu->mutex);
4225 	kfree(fpu);
4226 	kfree(kvm_sregs);
4227 	return r;
4228 }
4229 
4230 #ifdef CONFIG_KVM_COMPAT
4231 static long kvm_vcpu_compat_ioctl(struct file *filp,
4232 				  unsigned int ioctl, unsigned long arg)
4233 {
4234 	struct kvm_vcpu *vcpu = filp->private_data;
4235 	void __user *argp = compat_ptr(arg);
4236 	int r;
4237 
4238 	if (vcpu->kvm->mm != current->mm || vcpu->kvm->vm_dead)
4239 		return -EIO;
4240 
4241 	switch (ioctl) {
4242 	case KVM_SET_SIGNAL_MASK: {
4243 		struct kvm_signal_mask __user *sigmask_arg = argp;
4244 		struct kvm_signal_mask kvm_sigmask;
4245 		sigset_t sigset;
4246 
4247 		if (argp) {
4248 			r = -EFAULT;
4249 			if (copy_from_user(&kvm_sigmask, argp,
4250 					   sizeof(kvm_sigmask)))
4251 				goto out;
4252 			r = -EINVAL;
4253 			if (kvm_sigmask.len != sizeof(compat_sigset_t))
4254 				goto out;
4255 			r = -EFAULT;
4256 			if (get_compat_sigset(&sigset,
4257 					      (compat_sigset_t __user *)sigmask_arg->sigset))
4258 				goto out;
4259 			r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
4260 		} else
4261 			r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
4262 		break;
4263 	}
4264 	default:
4265 		r = kvm_vcpu_ioctl(filp, ioctl, arg);
4266 	}
4267 
4268 out:
4269 	return r;
4270 }
4271 #endif
4272 
4273 static int kvm_device_mmap(struct file *filp, struct vm_area_struct *vma)
4274 {
4275 	struct kvm_device *dev = filp->private_data;
4276 
4277 	if (dev->ops->mmap)
4278 		return dev->ops->mmap(dev, vma);
4279 
4280 	return -ENODEV;
4281 }
4282 
4283 static int kvm_device_ioctl_attr(struct kvm_device *dev,
4284 				 int (*accessor)(struct kvm_device *dev,
4285 						 struct kvm_device_attr *attr),
4286 				 unsigned long arg)
4287 {
4288 	struct kvm_device_attr attr;
4289 
4290 	if (!accessor)
4291 		return -EPERM;
4292 
4293 	if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
4294 		return -EFAULT;
4295 
4296 	return accessor(dev, &attr);
4297 }
4298 
4299 static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
4300 			     unsigned long arg)
4301 {
4302 	struct kvm_device *dev = filp->private_data;
4303 
4304 	if (dev->kvm->mm != current->mm || dev->kvm->vm_dead)
4305 		return -EIO;
4306 
4307 	switch (ioctl) {
4308 	case KVM_SET_DEVICE_ATTR:
4309 		return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
4310 	case KVM_GET_DEVICE_ATTR:
4311 		return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
4312 	case KVM_HAS_DEVICE_ATTR:
4313 		return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
4314 	default:
4315 		if (dev->ops->ioctl)
4316 			return dev->ops->ioctl(dev, ioctl, arg);
4317 
4318 		return -ENOTTY;
4319 	}
4320 }
4321 
4322 static int kvm_device_release(struct inode *inode, struct file *filp)
4323 {
4324 	struct kvm_device *dev = filp->private_data;
4325 	struct kvm *kvm = dev->kvm;
4326 
4327 	if (dev->ops->release) {
4328 		mutex_lock(&kvm->lock);
4329 		list_del(&dev->vm_node);
4330 		dev->ops->release(dev);
4331 		mutex_unlock(&kvm->lock);
4332 	}
4333 
4334 	kvm_put_kvm(kvm);
4335 	return 0;
4336 }
4337 
4338 static const struct file_operations kvm_device_fops = {
4339 	.unlocked_ioctl = kvm_device_ioctl,
4340 	.release = kvm_device_release,
4341 	KVM_COMPAT(kvm_device_ioctl),
4342 	.mmap = kvm_device_mmap,
4343 };
4344 
4345 struct kvm_device *kvm_device_from_filp(struct file *filp)
4346 {
4347 	if (filp->f_op != &kvm_device_fops)
4348 		return NULL;
4349 
4350 	return filp->private_data;
4351 }
4352 
4353 static const struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
4354 #ifdef CONFIG_KVM_MPIC
4355 	[KVM_DEV_TYPE_FSL_MPIC_20]	= &kvm_mpic_ops,
4356 	[KVM_DEV_TYPE_FSL_MPIC_42]	= &kvm_mpic_ops,
4357 #endif
4358 };
4359 
4360 int kvm_register_device_ops(const struct kvm_device_ops *ops, u32 type)
4361 {
4362 	if (type >= ARRAY_SIZE(kvm_device_ops_table))
4363 		return -ENOSPC;
4364 
4365 	if (kvm_device_ops_table[type] != NULL)
4366 		return -EEXIST;
4367 
4368 	kvm_device_ops_table[type] = ops;
4369 	return 0;
4370 }
4371 
4372 void kvm_unregister_device_ops(u32 type)
4373 {
4374 	if (kvm_device_ops_table[type] != NULL)
4375 		kvm_device_ops_table[type] = NULL;
4376 }
4377 
4378 static int kvm_ioctl_create_device(struct kvm *kvm,
4379 				   struct kvm_create_device *cd)
4380 {
4381 	const struct kvm_device_ops *ops;
4382 	struct kvm_device *dev;
4383 	bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
4384 	int type;
4385 	int ret;
4386 
4387 	if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
4388 		return -ENODEV;
4389 
4390 	type = array_index_nospec(cd->type, ARRAY_SIZE(kvm_device_ops_table));
4391 	ops = kvm_device_ops_table[type];
4392 	if (ops == NULL)
4393 		return -ENODEV;
4394 
4395 	if (test)
4396 		return 0;
4397 
4398 	dev = kzalloc(sizeof(*dev), GFP_KERNEL_ACCOUNT);
4399 	if (!dev)
4400 		return -ENOMEM;
4401 
4402 	dev->ops = ops;
4403 	dev->kvm = kvm;
4404 
4405 	mutex_lock(&kvm->lock);
4406 	ret = ops->create(dev, type);
4407 	if (ret < 0) {
4408 		mutex_unlock(&kvm->lock);
4409 		kfree(dev);
4410 		return ret;
4411 	}
4412 	list_add(&dev->vm_node, &kvm->devices);
4413 	mutex_unlock(&kvm->lock);
4414 
4415 	if (ops->init)
4416 		ops->init(dev);
4417 
4418 	kvm_get_kvm(kvm);
4419 	ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
4420 	if (ret < 0) {
4421 		kvm_put_kvm_no_destroy(kvm);
4422 		mutex_lock(&kvm->lock);
4423 		list_del(&dev->vm_node);
4424 		if (ops->release)
4425 			ops->release(dev);
4426 		mutex_unlock(&kvm->lock);
4427 		if (ops->destroy)
4428 			ops->destroy(dev);
4429 		return ret;
4430 	}
4431 
4432 	cd->fd = ret;
4433 	return 0;
4434 }
4435 
4436 static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
4437 {
4438 	switch (arg) {
4439 	case KVM_CAP_USER_MEMORY:
4440 	case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
4441 	case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
4442 	case KVM_CAP_INTERNAL_ERROR_DATA:
4443 #ifdef CONFIG_HAVE_KVM_MSI
4444 	case KVM_CAP_SIGNAL_MSI:
4445 #endif
4446 #ifdef CONFIG_HAVE_KVM_IRQFD
4447 	case KVM_CAP_IRQFD:
4448 	case KVM_CAP_IRQFD_RESAMPLE:
4449 #endif
4450 	case KVM_CAP_IOEVENTFD_ANY_LENGTH:
4451 	case KVM_CAP_CHECK_EXTENSION_VM:
4452 	case KVM_CAP_ENABLE_CAP_VM:
4453 	case KVM_CAP_HALT_POLL:
4454 		return 1;
4455 #ifdef CONFIG_KVM_MMIO
4456 	case KVM_CAP_COALESCED_MMIO:
4457 		return KVM_COALESCED_MMIO_PAGE_OFFSET;
4458 	case KVM_CAP_COALESCED_PIO:
4459 		return 1;
4460 #endif
4461 #ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
4462 	case KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2:
4463 		return KVM_DIRTY_LOG_MANUAL_CAPS;
4464 #endif
4465 #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
4466 	case KVM_CAP_IRQ_ROUTING:
4467 		return KVM_MAX_IRQ_ROUTES;
4468 #endif
4469 #if KVM_ADDRESS_SPACE_NUM > 1
4470 	case KVM_CAP_MULTI_ADDRESS_SPACE:
4471 		return KVM_ADDRESS_SPACE_NUM;
4472 #endif
4473 	case KVM_CAP_NR_MEMSLOTS:
4474 		return KVM_USER_MEM_SLOTS;
4475 	case KVM_CAP_DIRTY_LOG_RING:
4476 #ifdef CONFIG_HAVE_KVM_DIRTY_RING_TSO
4477 		return KVM_DIRTY_RING_MAX_ENTRIES * sizeof(struct kvm_dirty_gfn);
4478 #else
4479 		return 0;
4480 #endif
4481 	case KVM_CAP_DIRTY_LOG_RING_ACQ_REL:
4482 #ifdef CONFIG_HAVE_KVM_DIRTY_RING_ACQ_REL
4483 		return KVM_DIRTY_RING_MAX_ENTRIES * sizeof(struct kvm_dirty_gfn);
4484 #else
4485 		return 0;
4486 #endif
4487 	case KVM_CAP_BINARY_STATS_FD:
4488 	case KVM_CAP_SYSTEM_EVENT_DATA:
4489 		return 1;
4490 	default:
4491 		break;
4492 	}
4493 	return kvm_vm_ioctl_check_extension(kvm, arg);
4494 }
4495 
4496 static int kvm_vm_ioctl_enable_dirty_log_ring(struct kvm *kvm, u32 size)
4497 {
4498 	int r;
4499 
4500 	if (!KVM_DIRTY_LOG_PAGE_OFFSET)
4501 		return -EINVAL;
4502 
4503 	/* the size should be power of 2 */
4504 	if (!size || (size & (size - 1)))
4505 		return -EINVAL;
4506 
4507 	/* Should be bigger to keep the reserved entries, or a page */
4508 	if (size < kvm_dirty_ring_get_rsvd_entries() *
4509 	    sizeof(struct kvm_dirty_gfn) || size < PAGE_SIZE)
4510 		return -EINVAL;
4511 
4512 	if (size > KVM_DIRTY_RING_MAX_ENTRIES *
4513 	    sizeof(struct kvm_dirty_gfn))
4514 		return -E2BIG;
4515 
4516 	/* We only allow it to set once */
4517 	if (kvm->dirty_ring_size)
4518 		return -EINVAL;
4519 
4520 	mutex_lock(&kvm->lock);
4521 
4522 	if (kvm->created_vcpus) {
4523 		/* We don't allow to change this value after vcpu created */
4524 		r = -EINVAL;
4525 	} else {
4526 		kvm->dirty_ring_size = size;
4527 		r = 0;
4528 	}
4529 
4530 	mutex_unlock(&kvm->lock);
4531 	return r;
4532 }
4533 
4534 static int kvm_vm_ioctl_reset_dirty_pages(struct kvm *kvm)
4535 {
4536 	unsigned long i;
4537 	struct kvm_vcpu *vcpu;
4538 	int cleared = 0;
4539 
4540 	if (!kvm->dirty_ring_size)
4541 		return -EINVAL;
4542 
4543 	mutex_lock(&kvm->slots_lock);
4544 
4545 	kvm_for_each_vcpu(i, vcpu, kvm)
4546 		cleared += kvm_dirty_ring_reset(vcpu->kvm, &vcpu->dirty_ring);
4547 
4548 	mutex_unlock(&kvm->slots_lock);
4549 
4550 	if (cleared)
4551 		kvm_flush_remote_tlbs(kvm);
4552 
4553 	return cleared;
4554 }
4555 
4556 int __attribute__((weak)) kvm_vm_ioctl_enable_cap(struct kvm *kvm,
4557 						  struct kvm_enable_cap *cap)
4558 {
4559 	return -EINVAL;
4560 }
4561 
4562 static int kvm_vm_ioctl_enable_cap_generic(struct kvm *kvm,
4563 					   struct kvm_enable_cap *cap)
4564 {
4565 	switch (cap->cap) {
4566 #ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
4567 	case KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2: {
4568 		u64 allowed_options = KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE;
4569 
4570 		if (cap->args[0] & KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE)
4571 			allowed_options = KVM_DIRTY_LOG_MANUAL_CAPS;
4572 
4573 		if (cap->flags || (cap->args[0] & ~allowed_options))
4574 			return -EINVAL;
4575 		kvm->manual_dirty_log_protect = cap->args[0];
4576 		return 0;
4577 	}
4578 #endif
4579 	case KVM_CAP_HALT_POLL: {
4580 		if (cap->flags || cap->args[0] != (unsigned int)cap->args[0])
4581 			return -EINVAL;
4582 
4583 		kvm->max_halt_poll_ns = cap->args[0];
4584 		return 0;
4585 	}
4586 	case KVM_CAP_DIRTY_LOG_RING:
4587 	case KVM_CAP_DIRTY_LOG_RING_ACQ_REL:
4588 		if (!kvm_vm_ioctl_check_extension_generic(kvm, cap->cap))
4589 			return -EINVAL;
4590 
4591 		return kvm_vm_ioctl_enable_dirty_log_ring(kvm, cap->args[0]);
4592 	default:
4593 		return kvm_vm_ioctl_enable_cap(kvm, cap);
4594 	}
4595 }
4596 
4597 static ssize_t kvm_vm_stats_read(struct file *file, char __user *user_buffer,
4598 			      size_t size, loff_t *offset)
4599 {
4600 	struct kvm *kvm = file->private_data;
4601 
4602 	return kvm_stats_read(kvm->stats_id, &kvm_vm_stats_header,
4603 				&kvm_vm_stats_desc[0], &kvm->stat,
4604 				sizeof(kvm->stat), user_buffer, size, offset);
4605 }
4606 
4607 static const struct file_operations kvm_vm_stats_fops = {
4608 	.read = kvm_vm_stats_read,
4609 	.llseek = noop_llseek,
4610 };
4611 
4612 static int kvm_vm_ioctl_get_stats_fd(struct kvm *kvm)
4613 {
4614 	int fd;
4615 	struct file *file;
4616 
4617 	fd = get_unused_fd_flags(O_CLOEXEC);
4618 	if (fd < 0)
4619 		return fd;
4620 
4621 	file = anon_inode_getfile("kvm-vm-stats",
4622 			&kvm_vm_stats_fops, kvm, O_RDONLY);
4623 	if (IS_ERR(file)) {
4624 		put_unused_fd(fd);
4625 		return PTR_ERR(file);
4626 	}
4627 	file->f_mode |= FMODE_PREAD;
4628 	fd_install(fd, file);
4629 
4630 	return fd;
4631 }
4632 
4633 static long kvm_vm_ioctl(struct file *filp,
4634 			   unsigned int ioctl, unsigned long arg)
4635 {
4636 	struct kvm *kvm = filp->private_data;
4637 	void __user *argp = (void __user *)arg;
4638 	int r;
4639 
4640 	if (kvm->mm != current->mm || kvm->vm_dead)
4641 		return -EIO;
4642 	switch (ioctl) {
4643 	case KVM_CREATE_VCPU:
4644 		r = kvm_vm_ioctl_create_vcpu(kvm, arg);
4645 		break;
4646 	case KVM_ENABLE_CAP: {
4647 		struct kvm_enable_cap cap;
4648 
4649 		r = -EFAULT;
4650 		if (copy_from_user(&cap, argp, sizeof(cap)))
4651 			goto out;
4652 		r = kvm_vm_ioctl_enable_cap_generic(kvm, &cap);
4653 		break;
4654 	}
4655 	case KVM_SET_USER_MEMORY_REGION: {
4656 		struct kvm_userspace_memory_region kvm_userspace_mem;
4657 
4658 		r = -EFAULT;
4659 		if (copy_from_user(&kvm_userspace_mem, argp,
4660 						sizeof(kvm_userspace_mem)))
4661 			goto out;
4662 
4663 		r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
4664 		break;
4665 	}
4666 	case KVM_GET_DIRTY_LOG: {
4667 		struct kvm_dirty_log log;
4668 
4669 		r = -EFAULT;
4670 		if (copy_from_user(&log, argp, sizeof(log)))
4671 			goto out;
4672 		r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
4673 		break;
4674 	}
4675 #ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
4676 	case KVM_CLEAR_DIRTY_LOG: {
4677 		struct kvm_clear_dirty_log log;
4678 
4679 		r = -EFAULT;
4680 		if (copy_from_user(&log, argp, sizeof(log)))
4681 			goto out;
4682 		r = kvm_vm_ioctl_clear_dirty_log(kvm, &log);
4683 		break;
4684 	}
4685 #endif
4686 #ifdef CONFIG_KVM_MMIO
4687 	case KVM_REGISTER_COALESCED_MMIO: {
4688 		struct kvm_coalesced_mmio_zone zone;
4689 
4690 		r = -EFAULT;
4691 		if (copy_from_user(&zone, argp, sizeof(zone)))
4692 			goto out;
4693 		r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
4694 		break;
4695 	}
4696 	case KVM_UNREGISTER_COALESCED_MMIO: {
4697 		struct kvm_coalesced_mmio_zone zone;
4698 
4699 		r = -EFAULT;
4700 		if (copy_from_user(&zone, argp, sizeof(zone)))
4701 			goto out;
4702 		r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
4703 		break;
4704 	}
4705 #endif
4706 	case KVM_IRQFD: {
4707 		struct kvm_irqfd data;
4708 
4709 		r = -EFAULT;
4710 		if (copy_from_user(&data, argp, sizeof(data)))
4711 			goto out;
4712 		r = kvm_irqfd(kvm, &data);
4713 		break;
4714 	}
4715 	case KVM_IOEVENTFD: {
4716 		struct kvm_ioeventfd data;
4717 
4718 		r = -EFAULT;
4719 		if (copy_from_user(&data, argp, sizeof(data)))
4720 			goto out;
4721 		r = kvm_ioeventfd(kvm, &data);
4722 		break;
4723 	}
4724 #ifdef CONFIG_HAVE_KVM_MSI
4725 	case KVM_SIGNAL_MSI: {
4726 		struct kvm_msi msi;
4727 
4728 		r = -EFAULT;
4729 		if (copy_from_user(&msi, argp, sizeof(msi)))
4730 			goto out;
4731 		r = kvm_send_userspace_msi(kvm, &msi);
4732 		break;
4733 	}
4734 #endif
4735 #ifdef __KVM_HAVE_IRQ_LINE
4736 	case KVM_IRQ_LINE_STATUS:
4737 	case KVM_IRQ_LINE: {
4738 		struct kvm_irq_level irq_event;
4739 
4740 		r = -EFAULT;
4741 		if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
4742 			goto out;
4743 
4744 		r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
4745 					ioctl == KVM_IRQ_LINE_STATUS);
4746 		if (r)
4747 			goto out;
4748 
4749 		r = -EFAULT;
4750 		if (ioctl == KVM_IRQ_LINE_STATUS) {
4751 			if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
4752 				goto out;
4753 		}
4754 
4755 		r = 0;
4756 		break;
4757 	}
4758 #endif
4759 #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
4760 	case KVM_SET_GSI_ROUTING: {
4761 		struct kvm_irq_routing routing;
4762 		struct kvm_irq_routing __user *urouting;
4763 		struct kvm_irq_routing_entry *entries = NULL;
4764 
4765 		r = -EFAULT;
4766 		if (copy_from_user(&routing, argp, sizeof(routing)))
4767 			goto out;
4768 		r = -EINVAL;
4769 		if (!kvm_arch_can_set_irq_routing(kvm))
4770 			goto out;
4771 		if (routing.nr > KVM_MAX_IRQ_ROUTES)
4772 			goto out;
4773 		if (routing.flags)
4774 			goto out;
4775 		if (routing.nr) {
4776 			urouting = argp;
4777 			entries = vmemdup_user(urouting->entries,
4778 					       array_size(sizeof(*entries),
4779 							  routing.nr));
4780 			if (IS_ERR(entries)) {
4781 				r = PTR_ERR(entries);
4782 				goto out;
4783 			}
4784 		}
4785 		r = kvm_set_irq_routing(kvm, entries, routing.nr,
4786 					routing.flags);
4787 		kvfree(entries);
4788 		break;
4789 	}
4790 #endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
4791 	case KVM_CREATE_DEVICE: {
4792 		struct kvm_create_device cd;
4793 
4794 		r = -EFAULT;
4795 		if (copy_from_user(&cd, argp, sizeof(cd)))
4796 			goto out;
4797 
4798 		r = kvm_ioctl_create_device(kvm, &cd);
4799 		if (r)
4800 			goto out;
4801 
4802 		r = -EFAULT;
4803 		if (copy_to_user(argp, &cd, sizeof(cd)))
4804 			goto out;
4805 
4806 		r = 0;
4807 		break;
4808 	}
4809 	case KVM_CHECK_EXTENSION:
4810 		r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
4811 		break;
4812 	case KVM_RESET_DIRTY_RINGS:
4813 		r = kvm_vm_ioctl_reset_dirty_pages(kvm);
4814 		break;
4815 	case KVM_GET_STATS_FD:
4816 		r = kvm_vm_ioctl_get_stats_fd(kvm);
4817 		break;
4818 	default:
4819 		r = kvm_arch_vm_ioctl(filp, ioctl, arg);
4820 	}
4821 out:
4822 	return r;
4823 }
4824 
4825 #ifdef CONFIG_KVM_COMPAT
4826 struct compat_kvm_dirty_log {
4827 	__u32 slot;
4828 	__u32 padding1;
4829 	union {
4830 		compat_uptr_t dirty_bitmap; /* one bit per page */
4831 		__u64 padding2;
4832 	};
4833 };
4834 
4835 struct compat_kvm_clear_dirty_log {
4836 	__u32 slot;
4837 	__u32 num_pages;
4838 	__u64 first_page;
4839 	union {
4840 		compat_uptr_t dirty_bitmap; /* one bit per page */
4841 		__u64 padding2;
4842 	};
4843 };
4844 
4845 long __weak kvm_arch_vm_compat_ioctl(struct file *filp, unsigned int ioctl,
4846 				     unsigned long arg)
4847 {
4848 	return -ENOTTY;
4849 }
4850 
4851 static long kvm_vm_compat_ioctl(struct file *filp,
4852 			   unsigned int ioctl, unsigned long arg)
4853 {
4854 	struct kvm *kvm = filp->private_data;
4855 	int r;
4856 
4857 	if (kvm->mm != current->mm || kvm->vm_dead)
4858 		return -EIO;
4859 
4860 	r = kvm_arch_vm_compat_ioctl(filp, ioctl, arg);
4861 	if (r != -ENOTTY)
4862 		return r;
4863 
4864 	switch (ioctl) {
4865 #ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
4866 	case KVM_CLEAR_DIRTY_LOG: {
4867 		struct compat_kvm_clear_dirty_log compat_log;
4868 		struct kvm_clear_dirty_log log;
4869 
4870 		if (copy_from_user(&compat_log, (void __user *)arg,
4871 				   sizeof(compat_log)))
4872 			return -EFAULT;
4873 		log.slot	 = compat_log.slot;
4874 		log.num_pages	 = compat_log.num_pages;
4875 		log.first_page	 = compat_log.first_page;
4876 		log.padding2	 = compat_log.padding2;
4877 		log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
4878 
4879 		r = kvm_vm_ioctl_clear_dirty_log(kvm, &log);
4880 		break;
4881 	}
4882 #endif
4883 	case KVM_GET_DIRTY_LOG: {
4884 		struct compat_kvm_dirty_log compat_log;
4885 		struct kvm_dirty_log log;
4886 
4887 		if (copy_from_user(&compat_log, (void __user *)arg,
4888 				   sizeof(compat_log)))
4889 			return -EFAULT;
4890 		log.slot	 = compat_log.slot;
4891 		log.padding1	 = compat_log.padding1;
4892 		log.padding2	 = compat_log.padding2;
4893 		log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
4894 
4895 		r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
4896 		break;
4897 	}
4898 	default:
4899 		r = kvm_vm_ioctl(filp, ioctl, arg);
4900 	}
4901 	return r;
4902 }
4903 #endif
4904 
4905 static const struct file_operations kvm_vm_fops = {
4906 	.release        = kvm_vm_release,
4907 	.unlocked_ioctl = kvm_vm_ioctl,
4908 	.llseek		= noop_llseek,
4909 	KVM_COMPAT(kvm_vm_compat_ioctl),
4910 };
4911 
4912 bool file_is_kvm(struct file *file)
4913 {
4914 	return file && file->f_op == &kvm_vm_fops;
4915 }
4916 EXPORT_SYMBOL_GPL(file_is_kvm);
4917 
4918 static int kvm_dev_ioctl_create_vm(unsigned long type)
4919 {
4920 	char fdname[ITOA_MAX_LEN + 1];
4921 	int r, fd;
4922 	struct kvm *kvm;
4923 	struct file *file;
4924 
4925 	fd = get_unused_fd_flags(O_CLOEXEC);
4926 	if (fd < 0)
4927 		return fd;
4928 
4929 	snprintf(fdname, sizeof(fdname), "%d", fd);
4930 
4931 	kvm = kvm_create_vm(type, fdname);
4932 	if (IS_ERR(kvm)) {
4933 		r = PTR_ERR(kvm);
4934 		goto put_fd;
4935 	}
4936 
4937 	file = anon_inode_getfile("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
4938 	if (IS_ERR(file)) {
4939 		r = PTR_ERR(file);
4940 		goto put_kvm;
4941 	}
4942 
4943 	/*
4944 	 * Don't call kvm_put_kvm anymore at this point; file->f_op is
4945 	 * already set, with ->release() being kvm_vm_release().  In error
4946 	 * cases it will be called by the final fput(file) and will take
4947 	 * care of doing kvm_put_kvm(kvm).
4948 	 */
4949 	kvm_uevent_notify_change(KVM_EVENT_CREATE_VM, kvm);
4950 
4951 	fd_install(fd, file);
4952 	return fd;
4953 
4954 put_kvm:
4955 	kvm_put_kvm(kvm);
4956 put_fd:
4957 	put_unused_fd(fd);
4958 	return r;
4959 }
4960 
4961 static long kvm_dev_ioctl(struct file *filp,
4962 			  unsigned int ioctl, unsigned long arg)
4963 {
4964 	long r = -EINVAL;
4965 
4966 	switch (ioctl) {
4967 	case KVM_GET_API_VERSION:
4968 		if (arg)
4969 			goto out;
4970 		r = KVM_API_VERSION;
4971 		break;
4972 	case KVM_CREATE_VM:
4973 		r = kvm_dev_ioctl_create_vm(arg);
4974 		break;
4975 	case KVM_CHECK_EXTENSION:
4976 		r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
4977 		break;
4978 	case KVM_GET_VCPU_MMAP_SIZE:
4979 		if (arg)
4980 			goto out;
4981 		r = PAGE_SIZE;     /* struct kvm_run */
4982 #ifdef CONFIG_X86
4983 		r += PAGE_SIZE;    /* pio data page */
4984 #endif
4985 #ifdef CONFIG_KVM_MMIO
4986 		r += PAGE_SIZE;    /* coalesced mmio ring page */
4987 #endif
4988 		break;
4989 	case KVM_TRACE_ENABLE:
4990 	case KVM_TRACE_PAUSE:
4991 	case KVM_TRACE_DISABLE:
4992 		r = -EOPNOTSUPP;
4993 		break;
4994 	default:
4995 		return kvm_arch_dev_ioctl(filp, ioctl, arg);
4996 	}
4997 out:
4998 	return r;
4999 }
5000 
5001 static struct file_operations kvm_chardev_ops = {
5002 	.unlocked_ioctl = kvm_dev_ioctl,
5003 	.llseek		= noop_llseek,
5004 	KVM_COMPAT(kvm_dev_ioctl),
5005 };
5006 
5007 static struct miscdevice kvm_dev = {
5008 	KVM_MINOR,
5009 	"kvm",
5010 	&kvm_chardev_ops,
5011 };
5012 
5013 static void hardware_enable_nolock(void *junk)
5014 {
5015 	int cpu = raw_smp_processor_id();
5016 	int r;
5017 
5018 	if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
5019 		return;
5020 
5021 	cpumask_set_cpu(cpu, cpus_hardware_enabled);
5022 
5023 	r = kvm_arch_hardware_enable();
5024 
5025 	if (r) {
5026 		cpumask_clear_cpu(cpu, cpus_hardware_enabled);
5027 		atomic_inc(&hardware_enable_failed);
5028 		pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
5029 	}
5030 }
5031 
5032 static int kvm_starting_cpu(unsigned int cpu)
5033 {
5034 	raw_spin_lock(&kvm_count_lock);
5035 	if (kvm_usage_count)
5036 		hardware_enable_nolock(NULL);
5037 	raw_spin_unlock(&kvm_count_lock);
5038 	return 0;
5039 }
5040 
5041 static void hardware_disable_nolock(void *junk)
5042 {
5043 	int cpu = raw_smp_processor_id();
5044 
5045 	if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
5046 		return;
5047 	cpumask_clear_cpu(cpu, cpus_hardware_enabled);
5048 	kvm_arch_hardware_disable();
5049 }
5050 
5051 static int kvm_dying_cpu(unsigned int cpu)
5052 {
5053 	raw_spin_lock(&kvm_count_lock);
5054 	if (kvm_usage_count)
5055 		hardware_disable_nolock(NULL);
5056 	raw_spin_unlock(&kvm_count_lock);
5057 	return 0;
5058 }
5059 
5060 static void hardware_disable_all_nolock(void)
5061 {
5062 	BUG_ON(!kvm_usage_count);
5063 
5064 	kvm_usage_count--;
5065 	if (!kvm_usage_count)
5066 		on_each_cpu(hardware_disable_nolock, NULL, 1);
5067 }
5068 
5069 static void hardware_disable_all(void)
5070 {
5071 	raw_spin_lock(&kvm_count_lock);
5072 	hardware_disable_all_nolock();
5073 	raw_spin_unlock(&kvm_count_lock);
5074 }
5075 
5076 static int hardware_enable_all(void)
5077 {
5078 	int r = 0;
5079 
5080 	raw_spin_lock(&kvm_count_lock);
5081 
5082 	kvm_usage_count++;
5083 	if (kvm_usage_count == 1) {
5084 		atomic_set(&hardware_enable_failed, 0);
5085 		on_each_cpu(hardware_enable_nolock, NULL, 1);
5086 
5087 		if (atomic_read(&hardware_enable_failed)) {
5088 			hardware_disable_all_nolock();
5089 			r = -EBUSY;
5090 		}
5091 	}
5092 
5093 	raw_spin_unlock(&kvm_count_lock);
5094 
5095 	return r;
5096 }
5097 
5098 static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
5099 		      void *v)
5100 {
5101 	/*
5102 	 * Some (well, at least mine) BIOSes hang on reboot if
5103 	 * in vmx root mode.
5104 	 *
5105 	 * And Intel TXT required VMX off for all cpu when system shutdown.
5106 	 */
5107 	pr_info("kvm: exiting hardware virtualization\n");
5108 	kvm_rebooting = true;
5109 	on_each_cpu(hardware_disable_nolock, NULL, 1);
5110 	return NOTIFY_OK;
5111 }
5112 
5113 static struct notifier_block kvm_reboot_notifier = {
5114 	.notifier_call = kvm_reboot,
5115 	.priority = 0,
5116 };
5117 
5118 static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
5119 {
5120 	int i;
5121 
5122 	for (i = 0; i < bus->dev_count; i++) {
5123 		struct kvm_io_device *pos = bus->range[i].dev;
5124 
5125 		kvm_iodevice_destructor(pos);
5126 	}
5127 	kfree(bus);
5128 }
5129 
5130 static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
5131 				 const struct kvm_io_range *r2)
5132 {
5133 	gpa_t addr1 = r1->addr;
5134 	gpa_t addr2 = r2->addr;
5135 
5136 	if (addr1 < addr2)
5137 		return -1;
5138 
5139 	/* If r2->len == 0, match the exact address.  If r2->len != 0,
5140 	 * accept any overlapping write.  Any order is acceptable for
5141 	 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
5142 	 * we process all of them.
5143 	 */
5144 	if (r2->len) {
5145 		addr1 += r1->len;
5146 		addr2 += r2->len;
5147 	}
5148 
5149 	if (addr1 > addr2)
5150 		return 1;
5151 
5152 	return 0;
5153 }
5154 
5155 static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
5156 {
5157 	return kvm_io_bus_cmp(p1, p2);
5158 }
5159 
5160 static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
5161 			     gpa_t addr, int len)
5162 {
5163 	struct kvm_io_range *range, key;
5164 	int off;
5165 
5166 	key = (struct kvm_io_range) {
5167 		.addr = addr,
5168 		.len = len,
5169 	};
5170 
5171 	range = bsearch(&key, bus->range, bus->dev_count,
5172 			sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
5173 	if (range == NULL)
5174 		return -ENOENT;
5175 
5176 	off = range - bus->range;
5177 
5178 	while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
5179 		off--;
5180 
5181 	return off;
5182 }
5183 
5184 static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
5185 			      struct kvm_io_range *range, const void *val)
5186 {
5187 	int idx;
5188 
5189 	idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
5190 	if (idx < 0)
5191 		return -EOPNOTSUPP;
5192 
5193 	while (idx < bus->dev_count &&
5194 		kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
5195 		if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
5196 					range->len, val))
5197 			return idx;
5198 		idx++;
5199 	}
5200 
5201 	return -EOPNOTSUPP;
5202 }
5203 
5204 /* kvm_io_bus_write - called under kvm->slots_lock */
5205 int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
5206 		     int len, const void *val)
5207 {
5208 	struct kvm_io_bus *bus;
5209 	struct kvm_io_range range;
5210 	int r;
5211 
5212 	range = (struct kvm_io_range) {
5213 		.addr = addr,
5214 		.len = len,
5215 	};
5216 
5217 	bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
5218 	if (!bus)
5219 		return -ENOMEM;
5220 	r = __kvm_io_bus_write(vcpu, bus, &range, val);
5221 	return r < 0 ? r : 0;
5222 }
5223 EXPORT_SYMBOL_GPL(kvm_io_bus_write);
5224 
5225 /* kvm_io_bus_write_cookie - called under kvm->slots_lock */
5226 int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
5227 			    gpa_t addr, int len, const void *val, long cookie)
5228 {
5229 	struct kvm_io_bus *bus;
5230 	struct kvm_io_range range;
5231 
5232 	range = (struct kvm_io_range) {
5233 		.addr = addr,
5234 		.len = len,
5235 	};
5236 
5237 	bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
5238 	if (!bus)
5239 		return -ENOMEM;
5240 
5241 	/* First try the device referenced by cookie. */
5242 	if ((cookie >= 0) && (cookie < bus->dev_count) &&
5243 	    (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
5244 		if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
5245 					val))
5246 			return cookie;
5247 
5248 	/*
5249 	 * cookie contained garbage; fall back to search and return the
5250 	 * correct cookie value.
5251 	 */
5252 	return __kvm_io_bus_write(vcpu, bus, &range, val);
5253 }
5254 
5255 static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
5256 			     struct kvm_io_range *range, void *val)
5257 {
5258 	int idx;
5259 
5260 	idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
5261 	if (idx < 0)
5262 		return -EOPNOTSUPP;
5263 
5264 	while (idx < bus->dev_count &&
5265 		kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
5266 		if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
5267 				       range->len, val))
5268 			return idx;
5269 		idx++;
5270 	}
5271 
5272 	return -EOPNOTSUPP;
5273 }
5274 
5275 /* kvm_io_bus_read - called under kvm->slots_lock */
5276 int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
5277 		    int len, void *val)
5278 {
5279 	struct kvm_io_bus *bus;
5280 	struct kvm_io_range range;
5281 	int r;
5282 
5283 	range = (struct kvm_io_range) {
5284 		.addr = addr,
5285 		.len = len,
5286 	};
5287 
5288 	bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
5289 	if (!bus)
5290 		return -ENOMEM;
5291 	r = __kvm_io_bus_read(vcpu, bus, &range, val);
5292 	return r < 0 ? r : 0;
5293 }
5294 
5295 /* Caller must hold slots_lock. */
5296 int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
5297 			    int len, struct kvm_io_device *dev)
5298 {
5299 	int i;
5300 	struct kvm_io_bus *new_bus, *bus;
5301 	struct kvm_io_range range;
5302 
5303 	bus = kvm_get_bus(kvm, bus_idx);
5304 	if (!bus)
5305 		return -ENOMEM;
5306 
5307 	/* exclude ioeventfd which is limited by maximum fd */
5308 	if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
5309 		return -ENOSPC;
5310 
5311 	new_bus = kmalloc(struct_size(bus, range, bus->dev_count + 1),
5312 			  GFP_KERNEL_ACCOUNT);
5313 	if (!new_bus)
5314 		return -ENOMEM;
5315 
5316 	range = (struct kvm_io_range) {
5317 		.addr = addr,
5318 		.len = len,
5319 		.dev = dev,
5320 	};
5321 
5322 	for (i = 0; i < bus->dev_count; i++)
5323 		if (kvm_io_bus_cmp(&bus->range[i], &range) > 0)
5324 			break;
5325 
5326 	memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
5327 	new_bus->dev_count++;
5328 	new_bus->range[i] = range;
5329 	memcpy(new_bus->range + i + 1, bus->range + i,
5330 		(bus->dev_count - i) * sizeof(struct kvm_io_range));
5331 	rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
5332 	synchronize_srcu_expedited(&kvm->srcu);
5333 	kfree(bus);
5334 
5335 	return 0;
5336 }
5337 
5338 int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
5339 			      struct kvm_io_device *dev)
5340 {
5341 	int i, j;
5342 	struct kvm_io_bus *new_bus, *bus;
5343 
5344 	lockdep_assert_held(&kvm->slots_lock);
5345 
5346 	bus = kvm_get_bus(kvm, bus_idx);
5347 	if (!bus)
5348 		return 0;
5349 
5350 	for (i = 0; i < bus->dev_count; i++) {
5351 		if (bus->range[i].dev == dev) {
5352 			break;
5353 		}
5354 	}
5355 
5356 	if (i == bus->dev_count)
5357 		return 0;
5358 
5359 	new_bus = kmalloc(struct_size(bus, range, bus->dev_count - 1),
5360 			  GFP_KERNEL_ACCOUNT);
5361 	if (new_bus) {
5362 		memcpy(new_bus, bus, struct_size(bus, range, i));
5363 		new_bus->dev_count--;
5364 		memcpy(new_bus->range + i, bus->range + i + 1,
5365 				flex_array_size(new_bus, range, new_bus->dev_count - i));
5366 	}
5367 
5368 	rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
5369 	synchronize_srcu_expedited(&kvm->srcu);
5370 
5371 	/* Destroy the old bus _after_ installing the (null) bus. */
5372 	if (!new_bus) {
5373 		pr_err("kvm: failed to shrink bus, removing it completely\n");
5374 		for (j = 0; j < bus->dev_count; j++) {
5375 			if (j == i)
5376 				continue;
5377 			kvm_iodevice_destructor(bus->range[j].dev);
5378 		}
5379 	}
5380 
5381 	kfree(bus);
5382 	return new_bus ? 0 : -ENOMEM;
5383 }
5384 
5385 struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
5386 					 gpa_t addr)
5387 {
5388 	struct kvm_io_bus *bus;
5389 	int dev_idx, srcu_idx;
5390 	struct kvm_io_device *iodev = NULL;
5391 
5392 	srcu_idx = srcu_read_lock(&kvm->srcu);
5393 
5394 	bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
5395 	if (!bus)
5396 		goto out_unlock;
5397 
5398 	dev_idx = kvm_io_bus_get_first_dev(bus, addr, 1);
5399 	if (dev_idx < 0)
5400 		goto out_unlock;
5401 
5402 	iodev = bus->range[dev_idx].dev;
5403 
5404 out_unlock:
5405 	srcu_read_unlock(&kvm->srcu, srcu_idx);
5406 
5407 	return iodev;
5408 }
5409 EXPORT_SYMBOL_GPL(kvm_io_bus_get_dev);
5410 
5411 static int kvm_debugfs_open(struct inode *inode, struct file *file,
5412 			   int (*get)(void *, u64 *), int (*set)(void *, u64),
5413 			   const char *fmt)
5414 {
5415 	int ret;
5416 	struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
5417 					  inode->i_private;
5418 
5419 	/*
5420 	 * The debugfs files are a reference to the kvm struct which
5421         * is still valid when kvm_destroy_vm is called.  kvm_get_kvm_safe
5422         * avoids the race between open and the removal of the debugfs directory.
5423 	 */
5424 	if (!kvm_get_kvm_safe(stat_data->kvm))
5425 		return -ENOENT;
5426 
5427 	ret = simple_attr_open(inode, file, get,
5428 			       kvm_stats_debugfs_mode(stat_data->desc) & 0222
5429 			       ? set : NULL, fmt);
5430 	if (ret)
5431 		kvm_put_kvm(stat_data->kvm);
5432 
5433 	return ret;
5434 }
5435 
5436 static int kvm_debugfs_release(struct inode *inode, struct file *file)
5437 {
5438 	struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
5439 					  inode->i_private;
5440 
5441 	simple_attr_release(inode, file);
5442 	kvm_put_kvm(stat_data->kvm);
5443 
5444 	return 0;
5445 }
5446 
5447 static int kvm_get_stat_per_vm(struct kvm *kvm, size_t offset, u64 *val)
5448 {
5449 	*val = *(u64 *)((void *)(&kvm->stat) + offset);
5450 
5451 	return 0;
5452 }
5453 
5454 static int kvm_clear_stat_per_vm(struct kvm *kvm, size_t offset)
5455 {
5456 	*(u64 *)((void *)(&kvm->stat) + offset) = 0;
5457 
5458 	return 0;
5459 }
5460 
5461 static int kvm_get_stat_per_vcpu(struct kvm *kvm, size_t offset, u64 *val)
5462 {
5463 	unsigned long i;
5464 	struct kvm_vcpu *vcpu;
5465 
5466 	*val = 0;
5467 
5468 	kvm_for_each_vcpu(i, vcpu, kvm)
5469 		*val += *(u64 *)((void *)(&vcpu->stat) + offset);
5470 
5471 	return 0;
5472 }
5473 
5474 static int kvm_clear_stat_per_vcpu(struct kvm *kvm, size_t offset)
5475 {
5476 	unsigned long i;
5477 	struct kvm_vcpu *vcpu;
5478 
5479 	kvm_for_each_vcpu(i, vcpu, kvm)
5480 		*(u64 *)((void *)(&vcpu->stat) + offset) = 0;
5481 
5482 	return 0;
5483 }
5484 
5485 static int kvm_stat_data_get(void *data, u64 *val)
5486 {
5487 	int r = -EFAULT;
5488 	struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
5489 
5490 	switch (stat_data->kind) {
5491 	case KVM_STAT_VM:
5492 		r = kvm_get_stat_per_vm(stat_data->kvm,
5493 					stat_data->desc->desc.offset, val);
5494 		break;
5495 	case KVM_STAT_VCPU:
5496 		r = kvm_get_stat_per_vcpu(stat_data->kvm,
5497 					  stat_data->desc->desc.offset, val);
5498 		break;
5499 	}
5500 
5501 	return r;
5502 }
5503 
5504 static int kvm_stat_data_clear(void *data, u64 val)
5505 {
5506 	int r = -EFAULT;
5507 	struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
5508 
5509 	if (val)
5510 		return -EINVAL;
5511 
5512 	switch (stat_data->kind) {
5513 	case KVM_STAT_VM:
5514 		r = kvm_clear_stat_per_vm(stat_data->kvm,
5515 					  stat_data->desc->desc.offset);
5516 		break;
5517 	case KVM_STAT_VCPU:
5518 		r = kvm_clear_stat_per_vcpu(stat_data->kvm,
5519 					    stat_data->desc->desc.offset);
5520 		break;
5521 	}
5522 
5523 	return r;
5524 }
5525 
5526 static int kvm_stat_data_open(struct inode *inode, struct file *file)
5527 {
5528 	__simple_attr_check_format("%llu\n", 0ull);
5529 	return kvm_debugfs_open(inode, file, kvm_stat_data_get,
5530 				kvm_stat_data_clear, "%llu\n");
5531 }
5532 
5533 static const struct file_operations stat_fops_per_vm = {
5534 	.owner = THIS_MODULE,
5535 	.open = kvm_stat_data_open,
5536 	.release = kvm_debugfs_release,
5537 	.read = simple_attr_read,
5538 	.write = simple_attr_write,
5539 	.llseek = no_llseek,
5540 };
5541 
5542 static int vm_stat_get(void *_offset, u64 *val)
5543 {
5544 	unsigned offset = (long)_offset;
5545 	struct kvm *kvm;
5546 	u64 tmp_val;
5547 
5548 	*val = 0;
5549 	mutex_lock(&kvm_lock);
5550 	list_for_each_entry(kvm, &vm_list, vm_list) {
5551 		kvm_get_stat_per_vm(kvm, offset, &tmp_val);
5552 		*val += tmp_val;
5553 	}
5554 	mutex_unlock(&kvm_lock);
5555 	return 0;
5556 }
5557 
5558 static int vm_stat_clear(void *_offset, u64 val)
5559 {
5560 	unsigned offset = (long)_offset;
5561 	struct kvm *kvm;
5562 
5563 	if (val)
5564 		return -EINVAL;
5565 
5566 	mutex_lock(&kvm_lock);
5567 	list_for_each_entry(kvm, &vm_list, vm_list) {
5568 		kvm_clear_stat_per_vm(kvm, offset);
5569 	}
5570 	mutex_unlock(&kvm_lock);
5571 
5572 	return 0;
5573 }
5574 
5575 DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, vm_stat_clear, "%llu\n");
5576 DEFINE_SIMPLE_ATTRIBUTE(vm_stat_readonly_fops, vm_stat_get, NULL, "%llu\n");
5577 
5578 static int vcpu_stat_get(void *_offset, u64 *val)
5579 {
5580 	unsigned offset = (long)_offset;
5581 	struct kvm *kvm;
5582 	u64 tmp_val;
5583 
5584 	*val = 0;
5585 	mutex_lock(&kvm_lock);
5586 	list_for_each_entry(kvm, &vm_list, vm_list) {
5587 		kvm_get_stat_per_vcpu(kvm, offset, &tmp_val);
5588 		*val += tmp_val;
5589 	}
5590 	mutex_unlock(&kvm_lock);
5591 	return 0;
5592 }
5593 
5594 static int vcpu_stat_clear(void *_offset, u64 val)
5595 {
5596 	unsigned offset = (long)_offset;
5597 	struct kvm *kvm;
5598 
5599 	if (val)
5600 		return -EINVAL;
5601 
5602 	mutex_lock(&kvm_lock);
5603 	list_for_each_entry(kvm, &vm_list, vm_list) {
5604 		kvm_clear_stat_per_vcpu(kvm, offset);
5605 	}
5606 	mutex_unlock(&kvm_lock);
5607 
5608 	return 0;
5609 }
5610 
5611 DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, vcpu_stat_clear,
5612 			"%llu\n");
5613 DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_readonly_fops, vcpu_stat_get, NULL, "%llu\n");
5614 
5615 static void kvm_uevent_notify_change(unsigned int type, struct kvm *kvm)
5616 {
5617 	struct kobj_uevent_env *env;
5618 	unsigned long long created, active;
5619 
5620 	if (!kvm_dev.this_device || !kvm)
5621 		return;
5622 
5623 	mutex_lock(&kvm_lock);
5624 	if (type == KVM_EVENT_CREATE_VM) {
5625 		kvm_createvm_count++;
5626 		kvm_active_vms++;
5627 	} else if (type == KVM_EVENT_DESTROY_VM) {
5628 		kvm_active_vms--;
5629 	}
5630 	created = kvm_createvm_count;
5631 	active = kvm_active_vms;
5632 	mutex_unlock(&kvm_lock);
5633 
5634 	env = kzalloc(sizeof(*env), GFP_KERNEL_ACCOUNT);
5635 	if (!env)
5636 		return;
5637 
5638 	add_uevent_var(env, "CREATED=%llu", created);
5639 	add_uevent_var(env, "COUNT=%llu", active);
5640 
5641 	if (type == KVM_EVENT_CREATE_VM) {
5642 		add_uevent_var(env, "EVENT=create");
5643 		kvm->userspace_pid = task_pid_nr(current);
5644 	} else if (type == KVM_EVENT_DESTROY_VM) {
5645 		add_uevent_var(env, "EVENT=destroy");
5646 	}
5647 	add_uevent_var(env, "PID=%d", kvm->userspace_pid);
5648 
5649 	if (!IS_ERR(kvm->debugfs_dentry)) {
5650 		char *tmp, *p = kmalloc(PATH_MAX, GFP_KERNEL_ACCOUNT);
5651 
5652 		if (p) {
5653 			tmp = dentry_path_raw(kvm->debugfs_dentry, p, PATH_MAX);
5654 			if (!IS_ERR(tmp))
5655 				add_uevent_var(env, "STATS_PATH=%s", tmp);
5656 			kfree(p);
5657 		}
5658 	}
5659 	/* no need for checks, since we are adding at most only 5 keys */
5660 	env->envp[env->envp_idx++] = NULL;
5661 	kobject_uevent_env(&kvm_dev.this_device->kobj, KOBJ_CHANGE, env->envp);
5662 	kfree(env);
5663 }
5664 
5665 static void kvm_init_debug(void)
5666 {
5667 	const struct file_operations *fops;
5668 	const struct _kvm_stats_desc *pdesc;
5669 	int i;
5670 
5671 	kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
5672 
5673 	for (i = 0; i < kvm_vm_stats_header.num_desc; ++i) {
5674 		pdesc = &kvm_vm_stats_desc[i];
5675 		if (kvm_stats_debugfs_mode(pdesc) & 0222)
5676 			fops = &vm_stat_fops;
5677 		else
5678 			fops = &vm_stat_readonly_fops;
5679 		debugfs_create_file(pdesc->name, kvm_stats_debugfs_mode(pdesc),
5680 				kvm_debugfs_dir,
5681 				(void *)(long)pdesc->desc.offset, fops);
5682 	}
5683 
5684 	for (i = 0; i < kvm_vcpu_stats_header.num_desc; ++i) {
5685 		pdesc = &kvm_vcpu_stats_desc[i];
5686 		if (kvm_stats_debugfs_mode(pdesc) & 0222)
5687 			fops = &vcpu_stat_fops;
5688 		else
5689 			fops = &vcpu_stat_readonly_fops;
5690 		debugfs_create_file(pdesc->name, kvm_stats_debugfs_mode(pdesc),
5691 				kvm_debugfs_dir,
5692 				(void *)(long)pdesc->desc.offset, fops);
5693 	}
5694 }
5695 
5696 static int kvm_suspend(void)
5697 {
5698 	if (kvm_usage_count)
5699 		hardware_disable_nolock(NULL);
5700 	return 0;
5701 }
5702 
5703 static void kvm_resume(void)
5704 {
5705 	if (kvm_usage_count) {
5706 		lockdep_assert_not_held(&kvm_count_lock);
5707 		hardware_enable_nolock(NULL);
5708 	}
5709 }
5710 
5711 static struct syscore_ops kvm_syscore_ops = {
5712 	.suspend = kvm_suspend,
5713 	.resume = kvm_resume,
5714 };
5715 
5716 static inline
5717 struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
5718 {
5719 	return container_of(pn, struct kvm_vcpu, preempt_notifier);
5720 }
5721 
5722 static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
5723 {
5724 	struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
5725 
5726 	WRITE_ONCE(vcpu->preempted, false);
5727 	WRITE_ONCE(vcpu->ready, false);
5728 
5729 	__this_cpu_write(kvm_running_vcpu, vcpu);
5730 	kvm_arch_sched_in(vcpu, cpu);
5731 	kvm_arch_vcpu_load(vcpu, cpu);
5732 }
5733 
5734 static void kvm_sched_out(struct preempt_notifier *pn,
5735 			  struct task_struct *next)
5736 {
5737 	struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
5738 
5739 	if (current->on_rq) {
5740 		WRITE_ONCE(vcpu->preempted, true);
5741 		WRITE_ONCE(vcpu->ready, true);
5742 	}
5743 	kvm_arch_vcpu_put(vcpu);
5744 	__this_cpu_write(kvm_running_vcpu, NULL);
5745 }
5746 
5747 /**
5748  * kvm_get_running_vcpu - get the vcpu running on the current CPU.
5749  *
5750  * We can disable preemption locally around accessing the per-CPU variable,
5751  * and use the resolved vcpu pointer after enabling preemption again,
5752  * because even if the current thread is migrated to another CPU, reading
5753  * the per-CPU value later will give us the same value as we update the
5754  * per-CPU variable in the preempt notifier handlers.
5755  */
5756 struct kvm_vcpu *kvm_get_running_vcpu(void)
5757 {
5758 	struct kvm_vcpu *vcpu;
5759 
5760 	preempt_disable();
5761 	vcpu = __this_cpu_read(kvm_running_vcpu);
5762 	preempt_enable();
5763 
5764 	return vcpu;
5765 }
5766 EXPORT_SYMBOL_GPL(kvm_get_running_vcpu);
5767 
5768 /**
5769  * kvm_get_running_vcpus - get the per-CPU array of currently running vcpus.
5770  */
5771 struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void)
5772 {
5773         return &kvm_running_vcpu;
5774 }
5775 
5776 #ifdef CONFIG_GUEST_PERF_EVENTS
5777 static unsigned int kvm_guest_state(void)
5778 {
5779 	struct kvm_vcpu *vcpu = kvm_get_running_vcpu();
5780 	unsigned int state;
5781 
5782 	if (!kvm_arch_pmi_in_guest(vcpu))
5783 		return 0;
5784 
5785 	state = PERF_GUEST_ACTIVE;
5786 	if (!kvm_arch_vcpu_in_kernel(vcpu))
5787 		state |= PERF_GUEST_USER;
5788 
5789 	return state;
5790 }
5791 
5792 static unsigned long kvm_guest_get_ip(void)
5793 {
5794 	struct kvm_vcpu *vcpu = kvm_get_running_vcpu();
5795 
5796 	/* Retrieving the IP must be guarded by a call to kvm_guest_state(). */
5797 	if (WARN_ON_ONCE(!kvm_arch_pmi_in_guest(vcpu)))
5798 		return 0;
5799 
5800 	return kvm_arch_vcpu_get_ip(vcpu);
5801 }
5802 
5803 static struct perf_guest_info_callbacks kvm_guest_cbs = {
5804 	.state			= kvm_guest_state,
5805 	.get_ip			= kvm_guest_get_ip,
5806 	.handle_intel_pt_intr	= NULL,
5807 };
5808 
5809 void kvm_register_perf_callbacks(unsigned int (*pt_intr_handler)(void))
5810 {
5811 	kvm_guest_cbs.handle_intel_pt_intr = pt_intr_handler;
5812 	perf_register_guest_info_callbacks(&kvm_guest_cbs);
5813 }
5814 void kvm_unregister_perf_callbacks(void)
5815 {
5816 	perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
5817 }
5818 #endif
5819 
5820 struct kvm_cpu_compat_check {
5821 	void *opaque;
5822 	int *ret;
5823 };
5824 
5825 static void check_processor_compat(void *data)
5826 {
5827 	struct kvm_cpu_compat_check *c = data;
5828 
5829 	*c->ret = kvm_arch_check_processor_compat(c->opaque);
5830 }
5831 
5832 int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
5833 		  struct module *module)
5834 {
5835 	struct kvm_cpu_compat_check c;
5836 	int r;
5837 	int cpu;
5838 
5839 	r = kvm_arch_init(opaque);
5840 	if (r)
5841 		goto out_fail;
5842 
5843 	/*
5844 	 * kvm_arch_init makes sure there's at most one caller
5845 	 * for architectures that support multiple implementations,
5846 	 * like intel and amd on x86.
5847 	 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
5848 	 * conflicts in case kvm is already setup for another implementation.
5849 	 */
5850 	r = kvm_irqfd_init();
5851 	if (r)
5852 		goto out_irqfd;
5853 
5854 	if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
5855 		r = -ENOMEM;
5856 		goto out_free_0;
5857 	}
5858 
5859 	r = kvm_arch_hardware_setup(opaque);
5860 	if (r < 0)
5861 		goto out_free_1;
5862 
5863 	c.ret = &r;
5864 	c.opaque = opaque;
5865 	for_each_online_cpu(cpu) {
5866 		smp_call_function_single(cpu, check_processor_compat, &c, 1);
5867 		if (r < 0)
5868 			goto out_free_2;
5869 	}
5870 
5871 	r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "kvm/cpu:starting",
5872 				      kvm_starting_cpu, kvm_dying_cpu);
5873 	if (r)
5874 		goto out_free_2;
5875 	register_reboot_notifier(&kvm_reboot_notifier);
5876 
5877 	/* A kmem cache lets us meet the alignment requirements of fx_save. */
5878 	if (!vcpu_align)
5879 		vcpu_align = __alignof__(struct kvm_vcpu);
5880 	kvm_vcpu_cache =
5881 		kmem_cache_create_usercopy("kvm_vcpu", vcpu_size, vcpu_align,
5882 					   SLAB_ACCOUNT,
5883 					   offsetof(struct kvm_vcpu, arch),
5884 					   offsetofend(struct kvm_vcpu, stats_id)
5885 					   - offsetof(struct kvm_vcpu, arch),
5886 					   NULL);
5887 	if (!kvm_vcpu_cache) {
5888 		r = -ENOMEM;
5889 		goto out_free_3;
5890 	}
5891 
5892 	for_each_possible_cpu(cpu) {
5893 		if (!alloc_cpumask_var_node(&per_cpu(cpu_kick_mask, cpu),
5894 					    GFP_KERNEL, cpu_to_node(cpu))) {
5895 			r = -ENOMEM;
5896 			goto out_free_4;
5897 		}
5898 	}
5899 
5900 	r = kvm_async_pf_init();
5901 	if (r)
5902 		goto out_free_4;
5903 
5904 	kvm_chardev_ops.owner = module;
5905 
5906 	r = misc_register(&kvm_dev);
5907 	if (r) {
5908 		pr_err("kvm: misc device register failed\n");
5909 		goto out_unreg;
5910 	}
5911 
5912 	register_syscore_ops(&kvm_syscore_ops);
5913 
5914 	kvm_preempt_ops.sched_in = kvm_sched_in;
5915 	kvm_preempt_ops.sched_out = kvm_sched_out;
5916 
5917 	kvm_init_debug();
5918 
5919 	r = kvm_vfio_ops_init();
5920 	WARN_ON(r);
5921 
5922 	return 0;
5923 
5924 out_unreg:
5925 	kvm_async_pf_deinit();
5926 out_free_4:
5927 	for_each_possible_cpu(cpu)
5928 		free_cpumask_var(per_cpu(cpu_kick_mask, cpu));
5929 	kmem_cache_destroy(kvm_vcpu_cache);
5930 out_free_3:
5931 	unregister_reboot_notifier(&kvm_reboot_notifier);
5932 	cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
5933 out_free_2:
5934 	kvm_arch_hardware_unsetup();
5935 out_free_1:
5936 	free_cpumask_var(cpus_hardware_enabled);
5937 out_free_0:
5938 	kvm_irqfd_exit();
5939 out_irqfd:
5940 	kvm_arch_exit();
5941 out_fail:
5942 	return r;
5943 }
5944 EXPORT_SYMBOL_GPL(kvm_init);
5945 
5946 void kvm_exit(void)
5947 {
5948 	int cpu;
5949 
5950 	debugfs_remove_recursive(kvm_debugfs_dir);
5951 	misc_deregister(&kvm_dev);
5952 	for_each_possible_cpu(cpu)
5953 		free_cpumask_var(per_cpu(cpu_kick_mask, cpu));
5954 	kmem_cache_destroy(kvm_vcpu_cache);
5955 	kvm_async_pf_deinit();
5956 	unregister_syscore_ops(&kvm_syscore_ops);
5957 	unregister_reboot_notifier(&kvm_reboot_notifier);
5958 	cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
5959 	on_each_cpu(hardware_disable_nolock, NULL, 1);
5960 	kvm_arch_hardware_unsetup();
5961 	kvm_arch_exit();
5962 	kvm_irqfd_exit();
5963 	free_cpumask_var(cpus_hardware_enabled);
5964 	kvm_vfio_ops_exit();
5965 }
5966 EXPORT_SYMBOL_GPL(kvm_exit);
5967 
5968 struct kvm_vm_worker_thread_context {
5969 	struct kvm *kvm;
5970 	struct task_struct *parent;
5971 	struct completion init_done;
5972 	kvm_vm_thread_fn_t thread_fn;
5973 	uintptr_t data;
5974 	int err;
5975 };
5976 
5977 static int kvm_vm_worker_thread(void *context)
5978 {
5979 	/*
5980 	 * The init_context is allocated on the stack of the parent thread, so
5981 	 * we have to locally copy anything that is needed beyond initialization
5982 	 */
5983 	struct kvm_vm_worker_thread_context *init_context = context;
5984 	struct task_struct *parent;
5985 	struct kvm *kvm = init_context->kvm;
5986 	kvm_vm_thread_fn_t thread_fn = init_context->thread_fn;
5987 	uintptr_t data = init_context->data;
5988 	int err;
5989 
5990 	err = kthread_park(current);
5991 	/* kthread_park(current) is never supposed to return an error */
5992 	WARN_ON(err != 0);
5993 	if (err)
5994 		goto init_complete;
5995 
5996 	err = cgroup_attach_task_all(init_context->parent, current);
5997 	if (err) {
5998 		kvm_err("%s: cgroup_attach_task_all failed with err %d\n",
5999 			__func__, err);
6000 		goto init_complete;
6001 	}
6002 
6003 	set_user_nice(current, task_nice(init_context->parent));
6004 
6005 init_complete:
6006 	init_context->err = err;
6007 	complete(&init_context->init_done);
6008 	init_context = NULL;
6009 
6010 	if (err)
6011 		goto out;
6012 
6013 	/* Wait to be woken up by the spawner before proceeding. */
6014 	kthread_parkme();
6015 
6016 	if (!kthread_should_stop())
6017 		err = thread_fn(kvm, data);
6018 
6019 out:
6020 	/*
6021 	 * Move kthread back to its original cgroup to prevent it lingering in
6022 	 * the cgroup of the VM process, after the latter finishes its
6023 	 * execution.
6024 	 *
6025 	 * kthread_stop() waits on the 'exited' completion condition which is
6026 	 * set in exit_mm(), via mm_release(), in do_exit(). However, the
6027 	 * kthread is removed from the cgroup in the cgroup_exit() which is
6028 	 * called after the exit_mm(). This causes the kthread_stop() to return
6029 	 * before the kthread actually quits the cgroup.
6030 	 */
6031 	rcu_read_lock();
6032 	parent = rcu_dereference(current->real_parent);
6033 	get_task_struct(parent);
6034 	rcu_read_unlock();
6035 	cgroup_attach_task_all(parent, current);
6036 	put_task_struct(parent);
6037 
6038 	return err;
6039 }
6040 
6041 int kvm_vm_create_worker_thread(struct kvm *kvm, kvm_vm_thread_fn_t thread_fn,
6042 				uintptr_t data, const char *name,
6043 				struct task_struct **thread_ptr)
6044 {
6045 	struct kvm_vm_worker_thread_context init_context = {};
6046 	struct task_struct *thread;
6047 
6048 	*thread_ptr = NULL;
6049 	init_context.kvm = kvm;
6050 	init_context.parent = current;
6051 	init_context.thread_fn = thread_fn;
6052 	init_context.data = data;
6053 	init_completion(&init_context.init_done);
6054 
6055 	thread = kthread_run(kvm_vm_worker_thread, &init_context,
6056 			     "%s-%d", name, task_pid_nr(current));
6057 	if (IS_ERR(thread))
6058 		return PTR_ERR(thread);
6059 
6060 	/* kthread_run is never supposed to return NULL */
6061 	WARN_ON(thread == NULL);
6062 
6063 	wait_for_completion(&init_context.init_done);
6064 
6065 	if (!init_context.err)
6066 		*thread_ptr = thread;
6067 
6068 	return init_context.err;
6069 }
6070