7338e30421d84101313535a5cdc51a23678682ac
[GitHub/exynos8895/android_kernel_samsung_universal8895.git] / virt / kvm / kvm_main.c
1 /*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
8 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
9 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
19 #include <kvm/iodev.h>
20
21 #include <linux/kvm_host.h>
22 #include <linux/kvm.h>
23 #include <linux/module.h>
24 #include <linux/errno.h>
25 #include <linux/percpu.h>
26 #include <linux/mm.h>
27 #include <linux/miscdevice.h>
28 #include <linux/vmalloc.h>
29 #include <linux/reboot.h>
30 #include <linux/debugfs.h>
31 #include <linux/highmem.h>
32 #include <linux/file.h>
33 #include <linux/syscore_ops.h>
34 #include <linux/cpu.h>
35 #include <linux/sched.h>
36 #include <linux/cpumask.h>
37 #include <linux/smp.h>
38 #include <linux/anon_inodes.h>
39 #include <linux/profile.h>
40 #include <linux/kvm_para.h>
41 #include <linux/pagemap.h>
42 #include <linux/mman.h>
43 #include <linux/swap.h>
44 #include <linux/bitops.h>
45 #include <linux/spinlock.h>
46 #include <linux/compat.h>
47 #include <linux/srcu.h>
48 #include <linux/hugetlb.h>
49 #include <linux/slab.h>
50 #include <linux/sort.h>
51 #include <linux/bsearch.h>
52
53 #include <asm/processor.h>
54 #include <asm/io.h>
55 #include <asm/ioctl.h>
56 #include <asm/uaccess.h>
57 #include <asm/pgtable.h>
58
59 #include "coalesced_mmio.h"
60 #include "async_pf.h"
61 #include "vfio.h"
62
63 #define CREATE_TRACE_POINTS
64 #include <trace/events/kvm.h>
65
66 MODULE_AUTHOR("Qumranet");
67 MODULE_LICENSE("GPL");
68
69 /* Architectures should define their poll value according to the halt latency */
70 static unsigned int halt_poll_ns = KVM_HALT_POLL_NS_DEFAULT;
71 module_param(halt_poll_ns, uint, S_IRUGO | S_IWUSR);
72
73 /* Default doubles per-vcpu halt_poll_ns. */
74 static unsigned int halt_poll_ns_grow = 2;
75 module_param(halt_poll_ns_grow, int, S_IRUGO);
76
77 /* Default resets per-vcpu halt_poll_ns . */
78 static unsigned int halt_poll_ns_shrink;
79 module_param(halt_poll_ns_shrink, int, S_IRUGO);
80
81 /*
82 * Ordering of locks:
83 *
84 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
85 */
86
87 DEFINE_SPINLOCK(kvm_lock);
88 static DEFINE_RAW_SPINLOCK(kvm_count_lock);
89 LIST_HEAD(vm_list);
90
91 static cpumask_var_t cpus_hardware_enabled;
92 static int kvm_usage_count;
93 static atomic_t hardware_enable_failed;
94
95 struct kmem_cache *kvm_vcpu_cache;
96 EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
97
98 static __read_mostly struct preempt_ops kvm_preempt_ops;
99
100 struct dentry *kvm_debugfs_dir;
101 EXPORT_SYMBOL_GPL(kvm_debugfs_dir);
102
103 static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
104 unsigned long arg);
105 #ifdef CONFIG_KVM_COMPAT
106 static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
107 unsigned long arg);
108 #endif
109 static int hardware_enable_all(void);
110 static void hardware_disable_all(void);
111
112 static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
113
114 static void kvm_release_pfn_dirty(pfn_t pfn);
115 static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot, gfn_t gfn);
116
117 __visible bool kvm_rebooting;
118 EXPORT_SYMBOL_GPL(kvm_rebooting);
119
120 static bool largepages_enabled = true;
121
122 bool kvm_is_reserved_pfn(pfn_t pfn)
123 {
124 if (pfn_valid(pfn))
125 return PageReserved(pfn_to_page(pfn));
126
127 return true;
128 }
129
130 /*
131 * Switches to specified vcpu, until a matching vcpu_put()
132 */
133 int vcpu_load(struct kvm_vcpu *vcpu)
134 {
135 int cpu;
136
137 if (mutex_lock_killable(&vcpu->mutex))
138 return -EINTR;
139 cpu = get_cpu();
140 preempt_notifier_register(&vcpu->preempt_notifier);
141 kvm_arch_vcpu_load(vcpu, cpu);
142 put_cpu();
143 return 0;
144 }
145
146 void vcpu_put(struct kvm_vcpu *vcpu)
147 {
148 preempt_disable();
149 kvm_arch_vcpu_put(vcpu);
150 preempt_notifier_unregister(&vcpu->preempt_notifier);
151 preempt_enable();
152 mutex_unlock(&vcpu->mutex);
153 }
154
155 static void ack_flush(void *_completed)
156 {
157 }
158
159 bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req)
160 {
161 int i, cpu, me;
162 cpumask_var_t cpus;
163 bool called = true;
164 struct kvm_vcpu *vcpu;
165
166 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
167
168 me = get_cpu();
169 kvm_for_each_vcpu(i, vcpu, kvm) {
170 kvm_make_request(req, vcpu);
171 cpu = vcpu->cpu;
172
173 /* Set ->requests bit before we read ->mode */
174 smp_mb();
175
176 if (cpus != NULL && cpu != -1 && cpu != me &&
177 kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE)
178 cpumask_set_cpu(cpu, cpus);
179 }
180 if (unlikely(cpus == NULL))
181 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
182 else if (!cpumask_empty(cpus))
183 smp_call_function_many(cpus, ack_flush, NULL, 1);
184 else
185 called = false;
186 put_cpu();
187 free_cpumask_var(cpus);
188 return called;
189 }
190
191 #ifndef CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL
192 void kvm_flush_remote_tlbs(struct kvm *kvm)
193 {
194 long dirty_count = kvm->tlbs_dirty;
195
196 smp_mb();
197 if (kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
198 ++kvm->stat.remote_tlb_flush;
199 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
200 }
201 EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
202 #endif
203
204 void kvm_reload_remote_mmus(struct kvm *kvm)
205 {
206 kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
207 }
208
209 void kvm_make_mclock_inprogress_request(struct kvm *kvm)
210 {
211 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
212 }
213
214 void kvm_make_scan_ioapic_request(struct kvm *kvm)
215 {
216 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
217 }
218
219 int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
220 {
221 struct page *page;
222 int r;
223
224 mutex_init(&vcpu->mutex);
225 vcpu->cpu = -1;
226 vcpu->kvm = kvm;
227 vcpu->vcpu_id = id;
228 vcpu->pid = NULL;
229 vcpu->halt_poll_ns = 0;
230 init_waitqueue_head(&vcpu->wq);
231 kvm_async_pf_vcpu_init(vcpu);
232
233 vcpu->pre_pcpu = -1;
234 INIT_LIST_HEAD(&vcpu->blocked_vcpu_list);
235
236 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
237 if (!page) {
238 r = -ENOMEM;
239 goto fail;
240 }
241 vcpu->run = page_address(page);
242
243 kvm_vcpu_set_in_spin_loop(vcpu, false);
244 kvm_vcpu_set_dy_eligible(vcpu, false);
245 vcpu->preempted = false;
246
247 r = kvm_arch_vcpu_init(vcpu);
248 if (r < 0)
249 goto fail_free_run;
250 return 0;
251
252 fail_free_run:
253 free_page((unsigned long)vcpu->run);
254 fail:
255 return r;
256 }
257 EXPORT_SYMBOL_GPL(kvm_vcpu_init);
258
259 void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
260 {
261 put_pid(vcpu->pid);
262 kvm_arch_vcpu_uninit(vcpu);
263 free_page((unsigned long)vcpu->run);
264 }
265 EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
266
267 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
268 static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
269 {
270 return container_of(mn, struct kvm, mmu_notifier);
271 }
272
273 static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
274 struct mm_struct *mm,
275 unsigned long address)
276 {
277 struct kvm *kvm = mmu_notifier_to_kvm(mn);
278 int need_tlb_flush, idx;
279
280 /*
281 * When ->invalidate_page runs, the linux pte has been zapped
282 * already but the page is still allocated until
283 * ->invalidate_page returns. So if we increase the sequence
284 * here the kvm page fault will notice if the spte can't be
285 * established because the page is going to be freed. If
286 * instead the kvm page fault establishes the spte before
287 * ->invalidate_page runs, kvm_unmap_hva will release it
288 * before returning.
289 *
290 * The sequence increase only need to be seen at spin_unlock
291 * time, and not at spin_lock time.
292 *
293 * Increasing the sequence after the spin_unlock would be
294 * unsafe because the kvm page fault could then establish the
295 * pte after kvm_unmap_hva returned, without noticing the page
296 * is going to be freed.
297 */
298 idx = srcu_read_lock(&kvm->srcu);
299 spin_lock(&kvm->mmu_lock);
300
301 kvm->mmu_notifier_seq++;
302 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
303 /* we've to flush the tlb before the pages can be freed */
304 if (need_tlb_flush)
305 kvm_flush_remote_tlbs(kvm);
306
307 spin_unlock(&kvm->mmu_lock);
308
309 kvm_arch_mmu_notifier_invalidate_page(kvm, address);
310
311 srcu_read_unlock(&kvm->srcu, idx);
312 }
313
314 static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
315 struct mm_struct *mm,
316 unsigned long address,
317 pte_t pte)
318 {
319 struct kvm *kvm = mmu_notifier_to_kvm(mn);
320 int idx;
321
322 idx = srcu_read_lock(&kvm->srcu);
323 spin_lock(&kvm->mmu_lock);
324 kvm->mmu_notifier_seq++;
325 kvm_set_spte_hva(kvm, address, pte);
326 spin_unlock(&kvm->mmu_lock);
327 srcu_read_unlock(&kvm->srcu, idx);
328 }
329
330 static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
331 struct mm_struct *mm,
332 unsigned long start,
333 unsigned long end)
334 {
335 struct kvm *kvm = mmu_notifier_to_kvm(mn);
336 int need_tlb_flush = 0, idx;
337
338 idx = srcu_read_lock(&kvm->srcu);
339 spin_lock(&kvm->mmu_lock);
340 /*
341 * The count increase must become visible at unlock time as no
342 * spte can be established without taking the mmu_lock and
343 * count is also read inside the mmu_lock critical section.
344 */
345 kvm->mmu_notifier_count++;
346 need_tlb_flush = kvm_unmap_hva_range(kvm, start, end);
347 need_tlb_flush |= kvm->tlbs_dirty;
348 /* we've to flush the tlb before the pages can be freed */
349 if (need_tlb_flush)
350 kvm_flush_remote_tlbs(kvm);
351
352 spin_unlock(&kvm->mmu_lock);
353 srcu_read_unlock(&kvm->srcu, idx);
354 }
355
356 static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
357 struct mm_struct *mm,
358 unsigned long start,
359 unsigned long end)
360 {
361 struct kvm *kvm = mmu_notifier_to_kvm(mn);
362
363 spin_lock(&kvm->mmu_lock);
364 /*
365 * This sequence increase will notify the kvm page fault that
366 * the page that is going to be mapped in the spte could have
367 * been freed.
368 */
369 kvm->mmu_notifier_seq++;
370 smp_wmb();
371 /*
372 * The above sequence increase must be visible before the
373 * below count decrease, which is ensured by the smp_wmb above
374 * in conjunction with the smp_rmb in mmu_notifier_retry().
375 */
376 kvm->mmu_notifier_count--;
377 spin_unlock(&kvm->mmu_lock);
378
379 BUG_ON(kvm->mmu_notifier_count < 0);
380 }
381
382 static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
383 struct mm_struct *mm,
384 unsigned long start,
385 unsigned long end)
386 {
387 struct kvm *kvm = mmu_notifier_to_kvm(mn);
388 int young, idx;
389
390 idx = srcu_read_lock(&kvm->srcu);
391 spin_lock(&kvm->mmu_lock);
392
393 young = kvm_age_hva(kvm, start, end);
394 if (young)
395 kvm_flush_remote_tlbs(kvm);
396
397 spin_unlock(&kvm->mmu_lock);
398 srcu_read_unlock(&kvm->srcu, idx);
399
400 return young;
401 }
402
403 static int kvm_mmu_notifier_clear_young(struct mmu_notifier *mn,
404 struct mm_struct *mm,
405 unsigned long start,
406 unsigned long end)
407 {
408 struct kvm *kvm = mmu_notifier_to_kvm(mn);
409 int young, idx;
410
411 idx = srcu_read_lock(&kvm->srcu);
412 spin_lock(&kvm->mmu_lock);
413 /*
414 * Even though we do not flush TLB, this will still adversely
415 * affect performance on pre-Haswell Intel EPT, where there is
416 * no EPT Access Bit to clear so that we have to tear down EPT
417 * tables instead. If we find this unacceptable, we can always
418 * add a parameter to kvm_age_hva so that it effectively doesn't
419 * do anything on clear_young.
420 *
421 * Also note that currently we never issue secondary TLB flushes
422 * from clear_young, leaving this job up to the regular system
423 * cadence. If we find this inaccurate, we might come up with a
424 * more sophisticated heuristic later.
425 */
426 young = kvm_age_hva(kvm, start, end);
427 spin_unlock(&kvm->mmu_lock);
428 srcu_read_unlock(&kvm->srcu, idx);
429
430 return young;
431 }
432
433 static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
434 struct mm_struct *mm,
435 unsigned long address)
436 {
437 struct kvm *kvm = mmu_notifier_to_kvm(mn);
438 int young, idx;
439
440 idx = srcu_read_lock(&kvm->srcu);
441 spin_lock(&kvm->mmu_lock);
442 young = kvm_test_age_hva(kvm, address);
443 spin_unlock(&kvm->mmu_lock);
444 srcu_read_unlock(&kvm->srcu, idx);
445
446 return young;
447 }
448
449 static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
450 struct mm_struct *mm)
451 {
452 struct kvm *kvm = mmu_notifier_to_kvm(mn);
453 int idx;
454
455 idx = srcu_read_lock(&kvm->srcu);
456 kvm_arch_flush_shadow_all(kvm);
457 srcu_read_unlock(&kvm->srcu, idx);
458 }
459
460 static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
461 .invalidate_page = kvm_mmu_notifier_invalidate_page,
462 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
463 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
464 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
465 .clear_young = kvm_mmu_notifier_clear_young,
466 .test_young = kvm_mmu_notifier_test_young,
467 .change_pte = kvm_mmu_notifier_change_pte,
468 .release = kvm_mmu_notifier_release,
469 };
470
471 static int kvm_init_mmu_notifier(struct kvm *kvm)
472 {
473 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
474 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
475 }
476
477 #else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
478
479 static int kvm_init_mmu_notifier(struct kvm *kvm)
480 {
481 return 0;
482 }
483
484 #endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
485
486 static struct kvm_memslots *kvm_alloc_memslots(void)
487 {
488 int i;
489 struct kvm_memslots *slots;
490
491 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
492 if (!slots)
493 return NULL;
494
495 /*
496 * Init kvm generation close to the maximum to easily test the
497 * code of handling generation number wrap-around.
498 */
499 slots->generation = -150;
500 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
501 slots->id_to_index[i] = slots->memslots[i].id = i;
502
503 return slots;
504 }
505
506 static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
507 {
508 if (!memslot->dirty_bitmap)
509 return;
510
511 kvfree(memslot->dirty_bitmap);
512 memslot->dirty_bitmap = NULL;
513 }
514
515 /*
516 * Free any memory in @free but not in @dont.
517 */
518 static void kvm_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
519 struct kvm_memory_slot *dont)
520 {
521 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
522 kvm_destroy_dirty_bitmap(free);
523
524 kvm_arch_free_memslot(kvm, free, dont);
525
526 free->npages = 0;
527 }
528
529 static void kvm_free_memslots(struct kvm *kvm, struct kvm_memslots *slots)
530 {
531 struct kvm_memory_slot *memslot;
532
533 if (!slots)
534 return;
535
536 kvm_for_each_memslot(memslot, slots)
537 kvm_free_memslot(kvm, memslot, NULL);
538
539 kvfree(slots);
540 }
541
542 static struct kvm *kvm_create_vm(unsigned long type)
543 {
544 int r, i;
545 struct kvm *kvm = kvm_arch_alloc_vm();
546
547 if (!kvm)
548 return ERR_PTR(-ENOMEM);
549
550 r = kvm_arch_init_vm(kvm, type);
551 if (r)
552 goto out_err_no_disable;
553
554 r = hardware_enable_all();
555 if (r)
556 goto out_err_no_disable;
557
558 #ifdef CONFIG_HAVE_KVM_IRQFD
559 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
560 #endif
561
562 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
563
564 r = -ENOMEM;
565 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
566 kvm->memslots[i] = kvm_alloc_memslots();
567 if (!kvm->memslots[i])
568 goto out_err_no_srcu;
569 }
570
571 if (init_srcu_struct(&kvm->srcu))
572 goto out_err_no_srcu;
573 if (init_srcu_struct(&kvm->irq_srcu))
574 goto out_err_no_irq_srcu;
575 for (i = 0; i < KVM_NR_BUSES; i++) {
576 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
577 GFP_KERNEL);
578 if (!kvm->buses[i])
579 goto out_err;
580 }
581
582 spin_lock_init(&kvm->mmu_lock);
583 kvm->mm = current->mm;
584 atomic_inc(&kvm->mm->mm_count);
585 kvm_eventfd_init(kvm);
586 mutex_init(&kvm->lock);
587 mutex_init(&kvm->irq_lock);
588 mutex_init(&kvm->slots_lock);
589 atomic_set(&kvm->users_count, 1);
590 INIT_LIST_HEAD(&kvm->devices);
591
592 r = kvm_init_mmu_notifier(kvm);
593 if (r)
594 goto out_err;
595
596 spin_lock(&kvm_lock);
597 list_add(&kvm->vm_list, &vm_list);
598 spin_unlock(&kvm_lock);
599
600 preempt_notifier_inc();
601
602 return kvm;
603
604 out_err:
605 cleanup_srcu_struct(&kvm->irq_srcu);
606 out_err_no_irq_srcu:
607 cleanup_srcu_struct(&kvm->srcu);
608 out_err_no_srcu:
609 hardware_disable_all();
610 out_err_no_disable:
611 for (i = 0; i < KVM_NR_BUSES; i++)
612 kfree(kvm->buses[i]);
613 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
614 kvm_free_memslots(kvm, kvm->memslots[i]);
615 kvm_arch_free_vm(kvm);
616 return ERR_PTR(r);
617 }
618
619 /*
620 * Avoid using vmalloc for a small buffer.
621 * Should not be used when the size is statically known.
622 */
623 void *kvm_kvzalloc(unsigned long size)
624 {
625 if (size > PAGE_SIZE)
626 return vzalloc(size);
627 else
628 return kzalloc(size, GFP_KERNEL);
629 }
630
631 static void kvm_destroy_devices(struct kvm *kvm)
632 {
633 struct list_head *node, *tmp;
634
635 list_for_each_safe(node, tmp, &kvm->devices) {
636 struct kvm_device *dev =
637 list_entry(node, struct kvm_device, vm_node);
638
639 list_del(node);
640 dev->ops->destroy(dev);
641 }
642 }
643
644 static void kvm_destroy_vm(struct kvm *kvm)
645 {
646 int i;
647 struct mm_struct *mm = kvm->mm;
648
649 kvm_arch_sync_events(kvm);
650 spin_lock(&kvm_lock);
651 list_del(&kvm->vm_list);
652 spin_unlock(&kvm_lock);
653 kvm_free_irq_routing(kvm);
654 for (i = 0; i < KVM_NR_BUSES; i++)
655 kvm_io_bus_destroy(kvm->buses[i]);
656 kvm_coalesced_mmio_free(kvm);
657 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
658 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
659 #else
660 kvm_arch_flush_shadow_all(kvm);
661 #endif
662 kvm_arch_destroy_vm(kvm);
663 kvm_destroy_devices(kvm);
664 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
665 kvm_free_memslots(kvm, kvm->memslots[i]);
666 cleanup_srcu_struct(&kvm->irq_srcu);
667 cleanup_srcu_struct(&kvm->srcu);
668 kvm_arch_free_vm(kvm);
669 preempt_notifier_dec();
670 hardware_disable_all();
671 mmdrop(mm);
672 }
673
674 void kvm_get_kvm(struct kvm *kvm)
675 {
676 atomic_inc(&kvm->users_count);
677 }
678 EXPORT_SYMBOL_GPL(kvm_get_kvm);
679
680 void kvm_put_kvm(struct kvm *kvm)
681 {
682 if (atomic_dec_and_test(&kvm->users_count))
683 kvm_destroy_vm(kvm);
684 }
685 EXPORT_SYMBOL_GPL(kvm_put_kvm);
686
687
688 static int kvm_vm_release(struct inode *inode, struct file *filp)
689 {
690 struct kvm *kvm = filp->private_data;
691
692 kvm_irqfd_release(kvm);
693
694 kvm_put_kvm(kvm);
695 return 0;
696 }
697
698 /*
699 * Allocation size is twice as large as the actual dirty bitmap size.
700 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
701 */
702 static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
703 {
704 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
705
706 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
707 if (!memslot->dirty_bitmap)
708 return -ENOMEM;
709
710 return 0;
711 }
712
713 /*
714 * Insert memslot and re-sort memslots based on their GFN,
715 * so binary search could be used to lookup GFN.
716 * Sorting algorithm takes advantage of having initially
717 * sorted array and known changed memslot position.
718 */
719 static void update_memslots(struct kvm_memslots *slots,
720 struct kvm_memory_slot *new)
721 {
722 int id = new->id;
723 int i = slots->id_to_index[id];
724 struct kvm_memory_slot *mslots = slots->memslots;
725
726 WARN_ON(mslots[i].id != id);
727 if (!new->npages) {
728 WARN_ON(!mslots[i].npages);
729 if (mslots[i].npages)
730 slots->used_slots--;
731 } else {
732 if (!mslots[i].npages)
733 slots->used_slots++;
734 }
735
736 while (i < KVM_MEM_SLOTS_NUM - 1 &&
737 new->base_gfn <= mslots[i + 1].base_gfn) {
738 if (!mslots[i + 1].npages)
739 break;
740 mslots[i] = mslots[i + 1];
741 slots->id_to_index[mslots[i].id] = i;
742 i++;
743 }
744
745 /*
746 * The ">=" is needed when creating a slot with base_gfn == 0,
747 * so that it moves before all those with base_gfn == npages == 0.
748 *
749 * On the other hand, if new->npages is zero, the above loop has
750 * already left i pointing to the beginning of the empty part of
751 * mslots, and the ">=" would move the hole backwards in this
752 * case---which is wrong. So skip the loop when deleting a slot.
753 */
754 if (new->npages) {
755 while (i > 0 &&
756 new->base_gfn >= mslots[i - 1].base_gfn) {
757 mslots[i] = mslots[i - 1];
758 slots->id_to_index[mslots[i].id] = i;
759 i--;
760 }
761 } else
762 WARN_ON_ONCE(i != slots->used_slots);
763
764 mslots[i] = *new;
765 slots->id_to_index[mslots[i].id] = i;
766 }
767
768 static int check_memory_region_flags(const struct kvm_userspace_memory_region *mem)
769 {
770 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
771
772 #ifdef __KVM_HAVE_READONLY_MEM
773 valid_flags |= KVM_MEM_READONLY;
774 #endif
775
776 if (mem->flags & ~valid_flags)
777 return -EINVAL;
778
779 return 0;
780 }
781
782 static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
783 int as_id, struct kvm_memslots *slots)
784 {
785 struct kvm_memslots *old_memslots = __kvm_memslots(kvm, as_id);
786
787 /*
788 * Set the low bit in the generation, which disables SPTE caching
789 * until the end of synchronize_srcu_expedited.
790 */
791 WARN_ON(old_memslots->generation & 1);
792 slots->generation = old_memslots->generation + 1;
793
794 rcu_assign_pointer(kvm->memslots[as_id], slots);
795 synchronize_srcu_expedited(&kvm->srcu);
796
797 /*
798 * Increment the new memslot generation a second time. This prevents
799 * vm exits that race with memslot updates from caching a memslot
800 * generation that will (potentially) be valid forever.
801 */
802 slots->generation++;
803
804 kvm_arch_memslots_updated(kvm, slots);
805
806 return old_memslots;
807 }
808
809 /*
810 * Allocate some memory and give it an address in the guest physical address
811 * space.
812 *
813 * Discontiguous memory is allowed, mostly for framebuffers.
814 *
815 * Must be called holding kvm->slots_lock for write.
816 */
817 int __kvm_set_memory_region(struct kvm *kvm,
818 const struct kvm_userspace_memory_region *mem)
819 {
820 int r;
821 gfn_t base_gfn;
822 unsigned long npages;
823 struct kvm_memory_slot *slot;
824 struct kvm_memory_slot old, new;
825 struct kvm_memslots *slots = NULL, *old_memslots;
826 int as_id, id;
827 enum kvm_mr_change change;
828
829 r = check_memory_region_flags(mem);
830 if (r)
831 goto out;
832
833 r = -EINVAL;
834 as_id = mem->slot >> 16;
835 id = (u16)mem->slot;
836
837 /* General sanity checks */
838 if (mem->memory_size & (PAGE_SIZE - 1))
839 goto out;
840 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
841 goto out;
842 /* We can read the guest memory with __xxx_user() later on. */
843 if ((id < KVM_USER_MEM_SLOTS) &&
844 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
845 !access_ok(VERIFY_WRITE,
846 (void __user *)(unsigned long)mem->userspace_addr,
847 mem->memory_size)))
848 goto out;
849 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_MEM_SLOTS_NUM)
850 goto out;
851 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
852 goto out;
853
854 slot = id_to_memslot(__kvm_memslots(kvm, as_id), id);
855 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
856 npages = mem->memory_size >> PAGE_SHIFT;
857
858 if (npages > KVM_MEM_MAX_NR_PAGES)
859 goto out;
860
861 new = old = *slot;
862
863 new.id = id;
864 new.base_gfn = base_gfn;
865 new.npages = npages;
866 new.flags = mem->flags;
867
868 if (npages) {
869 if (!old.npages)
870 change = KVM_MR_CREATE;
871 else { /* Modify an existing slot. */
872 if ((mem->userspace_addr != old.userspace_addr) ||
873 (npages != old.npages) ||
874 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
875 goto out;
876
877 if (base_gfn != old.base_gfn)
878 change = KVM_MR_MOVE;
879 else if (new.flags != old.flags)
880 change = KVM_MR_FLAGS_ONLY;
881 else { /* Nothing to change. */
882 r = 0;
883 goto out;
884 }
885 }
886 } else {
887 if (!old.npages)
888 goto out;
889
890 change = KVM_MR_DELETE;
891 new.base_gfn = 0;
892 new.flags = 0;
893 }
894
895 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
896 /* Check for overlaps */
897 r = -EEXIST;
898 kvm_for_each_memslot(slot, __kvm_memslots(kvm, as_id)) {
899 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
900 (slot->id == id))
901 continue;
902 if (!((base_gfn + npages <= slot->base_gfn) ||
903 (base_gfn >= slot->base_gfn + slot->npages)))
904 goto out;
905 }
906 }
907
908 /* Free page dirty bitmap if unneeded */
909 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
910 new.dirty_bitmap = NULL;
911
912 r = -ENOMEM;
913 if (change == KVM_MR_CREATE) {
914 new.userspace_addr = mem->userspace_addr;
915
916 if (kvm_arch_create_memslot(kvm, &new, npages))
917 goto out_free;
918 }
919
920 /* Allocate page dirty bitmap if needed */
921 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
922 if (kvm_create_dirty_bitmap(&new) < 0)
923 goto out_free;
924 }
925
926 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
927 if (!slots)
928 goto out_free;
929 memcpy(slots, __kvm_memslots(kvm, as_id), sizeof(struct kvm_memslots));
930
931 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
932 slot = id_to_memslot(slots, id);
933 slot->flags |= KVM_MEMSLOT_INVALID;
934
935 old_memslots = install_new_memslots(kvm, as_id, slots);
936
937 /* slot was deleted or moved, clear iommu mapping */
938 kvm_iommu_unmap_pages(kvm, &old);
939 /* From this point no new shadow pages pointing to a deleted,
940 * or moved, memslot will be created.
941 *
942 * validation of sp->gfn happens in:
943 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
944 * - kvm_is_visible_gfn (mmu_check_roots)
945 */
946 kvm_arch_flush_shadow_memslot(kvm, slot);
947
948 /*
949 * We can re-use the old_memslots from above, the only difference
950 * from the currently installed memslots is the invalid flag. This
951 * will get overwritten by update_memslots anyway.
952 */
953 slots = old_memslots;
954 }
955
956 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
957 if (r)
958 goto out_slots;
959
960 /* actual memory is freed via old in kvm_free_memslot below */
961 if (change == KVM_MR_DELETE) {
962 new.dirty_bitmap = NULL;
963 memset(&new.arch, 0, sizeof(new.arch));
964 }
965
966 update_memslots(slots, &new);
967 old_memslots = install_new_memslots(kvm, as_id, slots);
968
969 kvm_arch_commit_memory_region(kvm, mem, &old, &new, change);
970
971 kvm_free_memslot(kvm, &old, &new);
972 kvfree(old_memslots);
973
974 /*
975 * IOMMU mapping: New slots need to be mapped. Old slots need to be
976 * un-mapped and re-mapped if their base changes. Since base change
977 * unmapping is handled above with slot deletion, mapping alone is
978 * needed here. Anything else the iommu might care about for existing
979 * slots (size changes, userspace addr changes and read-only flag
980 * changes) is disallowed above, so any other attribute changes getting
981 * here can be skipped.
982 */
983 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
984 r = kvm_iommu_map_pages(kvm, &new);
985 return r;
986 }
987
988 return 0;
989
990 out_slots:
991 kvfree(slots);
992 out_free:
993 kvm_free_memslot(kvm, &new, &old);
994 out:
995 return r;
996 }
997 EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
998
999 int kvm_set_memory_region(struct kvm *kvm,
1000 const struct kvm_userspace_memory_region *mem)
1001 {
1002 int r;
1003
1004 mutex_lock(&kvm->slots_lock);
1005 r = __kvm_set_memory_region(kvm, mem);
1006 mutex_unlock(&kvm->slots_lock);
1007 return r;
1008 }
1009 EXPORT_SYMBOL_GPL(kvm_set_memory_region);
1010
1011 static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
1012 struct kvm_userspace_memory_region *mem)
1013 {
1014 if ((u16)mem->slot >= KVM_USER_MEM_SLOTS)
1015 return -EINVAL;
1016
1017 return kvm_set_memory_region(kvm, mem);
1018 }
1019
1020 int kvm_get_dirty_log(struct kvm *kvm,
1021 struct kvm_dirty_log *log, int *is_dirty)
1022 {
1023 struct kvm_memslots *slots;
1024 struct kvm_memory_slot *memslot;
1025 int r, i, as_id, id;
1026 unsigned long n;
1027 unsigned long any = 0;
1028
1029 r = -EINVAL;
1030 as_id = log->slot >> 16;
1031 id = (u16)log->slot;
1032 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
1033 goto out;
1034
1035 slots = __kvm_memslots(kvm, as_id);
1036 memslot = id_to_memslot(slots, id);
1037 r = -ENOENT;
1038 if (!memslot->dirty_bitmap)
1039 goto out;
1040
1041 n = kvm_dirty_bitmap_bytes(memslot);
1042
1043 for (i = 0; !any && i < n/sizeof(long); ++i)
1044 any = memslot->dirty_bitmap[i];
1045
1046 r = -EFAULT;
1047 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
1048 goto out;
1049
1050 if (any)
1051 *is_dirty = 1;
1052
1053 r = 0;
1054 out:
1055 return r;
1056 }
1057 EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
1058
1059 #ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
1060 /**
1061 * kvm_get_dirty_log_protect - get a snapshot of dirty pages, and if any pages
1062 * are dirty write protect them for next write.
1063 * @kvm: pointer to kvm instance
1064 * @log: slot id and address to which we copy the log
1065 * @is_dirty: flag set if any page is dirty
1066 *
1067 * We need to keep it in mind that VCPU threads can write to the bitmap
1068 * concurrently. So, to avoid losing track of dirty pages we keep the
1069 * following order:
1070 *
1071 * 1. Take a snapshot of the bit and clear it if needed.
1072 * 2. Write protect the corresponding page.
1073 * 3. Copy the snapshot to the userspace.
1074 * 4. Upon return caller flushes TLB's if needed.
1075 *
1076 * Between 2 and 4, the guest may write to the page using the remaining TLB
1077 * entry. This is not a problem because the page is reported dirty using
1078 * the snapshot taken before and step 4 ensures that writes done after
1079 * exiting to userspace will be logged for the next call.
1080 *
1081 */
1082 int kvm_get_dirty_log_protect(struct kvm *kvm,
1083 struct kvm_dirty_log *log, bool *is_dirty)
1084 {
1085 struct kvm_memslots *slots;
1086 struct kvm_memory_slot *memslot;
1087 int r, i, as_id, id;
1088 unsigned long n;
1089 unsigned long *dirty_bitmap;
1090 unsigned long *dirty_bitmap_buffer;
1091
1092 r = -EINVAL;
1093 as_id = log->slot >> 16;
1094 id = (u16)log->slot;
1095 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
1096 goto out;
1097
1098 slots = __kvm_memslots(kvm, as_id);
1099 memslot = id_to_memslot(slots, id);
1100
1101 dirty_bitmap = memslot->dirty_bitmap;
1102 r = -ENOENT;
1103 if (!dirty_bitmap)
1104 goto out;
1105
1106 n = kvm_dirty_bitmap_bytes(memslot);
1107
1108 dirty_bitmap_buffer = dirty_bitmap + n / sizeof(long);
1109 memset(dirty_bitmap_buffer, 0, n);
1110
1111 spin_lock(&kvm->mmu_lock);
1112 *is_dirty = false;
1113 for (i = 0; i < n / sizeof(long); i++) {
1114 unsigned long mask;
1115 gfn_t offset;
1116
1117 if (!dirty_bitmap[i])
1118 continue;
1119
1120 *is_dirty = true;
1121
1122 mask = xchg(&dirty_bitmap[i], 0);
1123 dirty_bitmap_buffer[i] = mask;
1124
1125 if (mask) {
1126 offset = i * BITS_PER_LONG;
1127 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1128 offset, mask);
1129 }
1130 }
1131
1132 spin_unlock(&kvm->mmu_lock);
1133
1134 r = -EFAULT;
1135 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
1136 goto out;
1137
1138 r = 0;
1139 out:
1140 return r;
1141 }
1142 EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect);
1143 #endif
1144
1145 bool kvm_largepages_enabled(void)
1146 {
1147 return largepages_enabled;
1148 }
1149
1150 void kvm_disable_largepages(void)
1151 {
1152 largepages_enabled = false;
1153 }
1154 EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1155
1156 struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1157 {
1158 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1159 }
1160 EXPORT_SYMBOL_GPL(gfn_to_memslot);
1161
1162 struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn)
1163 {
1164 return __gfn_to_memslot(kvm_vcpu_memslots(vcpu), gfn);
1165 }
1166
1167 int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
1168 {
1169 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
1170
1171 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
1172 memslot->flags & KVM_MEMSLOT_INVALID)
1173 return 0;
1174
1175 return 1;
1176 }
1177 EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1178
1179 unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1180 {
1181 struct vm_area_struct *vma;
1182 unsigned long addr, size;
1183
1184 size = PAGE_SIZE;
1185
1186 addr = gfn_to_hva(kvm, gfn);
1187 if (kvm_is_error_hva(addr))
1188 return PAGE_SIZE;
1189
1190 down_read(&current->mm->mmap_sem);
1191 vma = find_vma(current->mm, addr);
1192 if (!vma)
1193 goto out;
1194
1195 size = vma_kernel_pagesize(vma);
1196
1197 out:
1198 up_read(&current->mm->mmap_sem);
1199
1200 return size;
1201 }
1202
1203 static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1204 {
1205 return slot->flags & KVM_MEM_READONLY;
1206 }
1207
1208 static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1209 gfn_t *nr_pages, bool write)
1210 {
1211 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
1212 return KVM_HVA_ERR_BAD;
1213
1214 if (memslot_is_readonly(slot) && write)
1215 return KVM_HVA_ERR_RO_BAD;
1216
1217 if (nr_pages)
1218 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1219
1220 return __gfn_to_hva_memslot(slot, gfn);
1221 }
1222
1223 static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1224 gfn_t *nr_pages)
1225 {
1226 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1227 }
1228
1229 unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
1230 gfn_t gfn)
1231 {
1232 return gfn_to_hva_many(slot, gfn, NULL);
1233 }
1234 EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1235
1236 unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1237 {
1238 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
1239 }
1240 EXPORT_SYMBOL_GPL(gfn_to_hva);
1241
1242 unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn)
1243 {
1244 return gfn_to_hva_many(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn, NULL);
1245 }
1246 EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva);
1247
1248 /*
1249 * If writable is set to false, the hva returned by this function is only
1250 * allowed to be read.
1251 */
1252 unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1253 gfn_t gfn, bool *writable)
1254 {
1255 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1256
1257 if (!kvm_is_error_hva(hva) && writable)
1258 *writable = !memslot_is_readonly(slot);
1259
1260 return hva;
1261 }
1262
1263 unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1264 {
1265 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1266
1267 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1268 }
1269
1270 unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable)
1271 {
1272 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1273
1274 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1275 }
1276
1277 static int get_user_page_nowait(struct task_struct *tsk, struct mm_struct *mm,
1278 unsigned long start, int write, struct page **page)
1279 {
1280 int flags = FOLL_TOUCH | FOLL_NOWAIT | FOLL_HWPOISON | FOLL_GET;
1281
1282 if (write)
1283 flags |= FOLL_WRITE;
1284
1285 return __get_user_pages(tsk, mm, start, 1, flags, page, NULL, NULL);
1286 }
1287
1288 static inline int check_user_page_hwpoison(unsigned long addr)
1289 {
1290 int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE;
1291
1292 rc = __get_user_pages(current, current->mm, addr, 1,
1293 flags, NULL, NULL, NULL);
1294 return rc == -EHWPOISON;
1295 }
1296
1297 /*
1298 * The atomic path to get the writable pfn which will be stored in @pfn,
1299 * true indicates success, otherwise false is returned.
1300 */
1301 static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
1302 bool write_fault, bool *writable, pfn_t *pfn)
1303 {
1304 struct page *page[1];
1305 int npages;
1306
1307 if (!(async || atomic))
1308 return false;
1309
1310 /*
1311 * Fast pin a writable pfn only if it is a write fault request
1312 * or the caller allows to map a writable pfn for a read fault
1313 * request.
1314 */
1315 if (!(write_fault || writable))
1316 return false;
1317
1318 npages = __get_user_pages_fast(addr, 1, 1, page);
1319 if (npages == 1) {
1320 *pfn = page_to_pfn(page[0]);
1321
1322 if (writable)
1323 *writable = true;
1324 return true;
1325 }
1326
1327 return false;
1328 }
1329
1330 /*
1331 * The slow path to get the pfn of the specified host virtual address,
1332 * 1 indicates success, -errno is returned if error is detected.
1333 */
1334 static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
1335 bool *writable, pfn_t *pfn)
1336 {
1337 struct page *page[1];
1338 int npages = 0;
1339
1340 might_sleep();
1341
1342 if (writable)
1343 *writable = write_fault;
1344
1345 if (async) {
1346 down_read(&current->mm->mmap_sem);
1347 npages = get_user_page_nowait(current, current->mm,
1348 addr, write_fault, page);
1349 up_read(&current->mm->mmap_sem);
1350 } else
1351 npages = __get_user_pages_unlocked(current, current->mm, addr, 1,
1352 write_fault, 0, page,
1353 FOLL_TOUCH|FOLL_HWPOISON);
1354 if (npages != 1)
1355 return npages;
1356
1357 /* map read fault as writable if possible */
1358 if (unlikely(!write_fault) && writable) {
1359 struct page *wpage[1];
1360
1361 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1362 if (npages == 1) {
1363 *writable = true;
1364 put_page(page[0]);
1365 page[0] = wpage[0];
1366 }
1367
1368 npages = 1;
1369 }
1370 *pfn = page_to_pfn(page[0]);
1371 return npages;
1372 }
1373
1374 static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1375 {
1376 if (unlikely(!(vma->vm_flags & VM_READ)))
1377 return false;
1378
1379 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1380 return false;
1381
1382 return true;
1383 }
1384
1385 /*
1386 * Pin guest page in memory and return its pfn.
1387 * @addr: host virtual address which maps memory to the guest
1388 * @atomic: whether this function can sleep
1389 * @async: whether this function need to wait IO complete if the
1390 * host page is not in the memory
1391 * @write_fault: whether we should get a writable host page
1392 * @writable: whether it allows to map a writable host page for !@write_fault
1393 *
1394 * The function will map a writable host page for these two cases:
1395 * 1): @write_fault = true
1396 * 2): @write_fault = false && @writable, @writable will tell the caller
1397 * whether the mapping is writable.
1398 */
1399 static pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
1400 bool write_fault, bool *writable)
1401 {
1402 struct vm_area_struct *vma;
1403 pfn_t pfn = 0;
1404 int npages;
1405
1406 /* we can do it either atomically or asynchronously, not both */
1407 BUG_ON(atomic && async);
1408
1409 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1410 return pfn;
1411
1412 if (atomic)
1413 return KVM_PFN_ERR_FAULT;
1414
1415 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1416 if (npages == 1)
1417 return pfn;
1418
1419 down_read(&current->mm->mmap_sem);
1420 if (npages == -EHWPOISON ||
1421 (!async && check_user_page_hwpoison(addr))) {
1422 pfn = KVM_PFN_ERR_HWPOISON;
1423 goto exit;
1424 }
1425
1426 vma = find_vma_intersection(current->mm, addr, addr + 1);
1427
1428 if (vma == NULL)
1429 pfn = KVM_PFN_ERR_FAULT;
1430 else if ((vma->vm_flags & VM_PFNMAP)) {
1431 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1432 vma->vm_pgoff;
1433 BUG_ON(!kvm_is_reserved_pfn(pfn));
1434 } else {
1435 if (async && vma_is_valid(vma, write_fault))
1436 *async = true;
1437 pfn = KVM_PFN_ERR_FAULT;
1438 }
1439 exit:
1440 up_read(&current->mm->mmap_sem);
1441 return pfn;
1442 }
1443
1444 pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, bool atomic,
1445 bool *async, bool write_fault, bool *writable)
1446 {
1447 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1448
1449 if (addr == KVM_HVA_ERR_RO_BAD)
1450 return KVM_PFN_ERR_RO_FAULT;
1451
1452 if (kvm_is_error_hva(addr))
1453 return KVM_PFN_NOSLOT;
1454
1455 /* Do not map writable pfn in the readonly memslot. */
1456 if (writable && memslot_is_readonly(slot)) {
1457 *writable = false;
1458 writable = NULL;
1459 }
1460
1461 return hva_to_pfn(addr, atomic, async, write_fault,
1462 writable);
1463 }
1464 EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot);
1465
1466 pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1467 bool *writable)
1468 {
1469 return __gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn, false, NULL,
1470 write_fault, writable);
1471 }
1472 EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1473
1474 pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
1475 {
1476 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
1477 }
1478 EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot);
1479
1480 pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
1481 {
1482 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
1483 }
1484 EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1485
1486 pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1487 {
1488 return gfn_to_pfn_memslot_atomic(gfn_to_memslot(kvm, gfn), gfn);
1489 }
1490 EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1491
1492 pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn)
1493 {
1494 return gfn_to_pfn_memslot_atomic(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1495 }
1496 EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn_atomic);
1497
1498 pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1499 {
1500 return gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn);
1501 }
1502 EXPORT_SYMBOL_GPL(gfn_to_pfn);
1503
1504 pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn)
1505 {
1506 return gfn_to_pfn_memslot(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1507 }
1508 EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn);
1509
1510 int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1511 struct page **pages, int nr_pages)
1512 {
1513 unsigned long addr;
1514 gfn_t entry;
1515
1516 addr = gfn_to_hva_many(slot, gfn, &entry);
1517 if (kvm_is_error_hva(addr))
1518 return -1;
1519
1520 if (entry < nr_pages)
1521 return 0;
1522
1523 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1524 }
1525 EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1526
1527 static struct page *kvm_pfn_to_page(pfn_t pfn)
1528 {
1529 if (is_error_noslot_pfn(pfn))
1530 return KVM_ERR_PTR_BAD_PAGE;
1531
1532 if (kvm_is_reserved_pfn(pfn)) {
1533 WARN_ON(1);
1534 return KVM_ERR_PTR_BAD_PAGE;
1535 }
1536
1537 return pfn_to_page(pfn);
1538 }
1539
1540 struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1541 {
1542 pfn_t pfn;
1543
1544 pfn = gfn_to_pfn(kvm, gfn);
1545
1546 return kvm_pfn_to_page(pfn);
1547 }
1548 EXPORT_SYMBOL_GPL(gfn_to_page);
1549
1550 struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn)
1551 {
1552 pfn_t pfn;
1553
1554 pfn = kvm_vcpu_gfn_to_pfn(vcpu, gfn);
1555
1556 return kvm_pfn_to_page(pfn);
1557 }
1558 EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_page);
1559
1560 void kvm_release_page_clean(struct page *page)
1561 {
1562 WARN_ON(is_error_page(page));
1563
1564 kvm_release_pfn_clean(page_to_pfn(page));
1565 }
1566 EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1567
1568 void kvm_release_pfn_clean(pfn_t pfn)
1569 {
1570 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
1571 put_page(pfn_to_page(pfn));
1572 }
1573 EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1574
1575 void kvm_release_page_dirty(struct page *page)
1576 {
1577 WARN_ON(is_error_page(page));
1578
1579 kvm_release_pfn_dirty(page_to_pfn(page));
1580 }
1581 EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
1582
1583 static void kvm_release_pfn_dirty(pfn_t pfn)
1584 {
1585 kvm_set_pfn_dirty(pfn);
1586 kvm_release_pfn_clean(pfn);
1587 }
1588
1589 void kvm_set_pfn_dirty(pfn_t pfn)
1590 {
1591 if (!kvm_is_reserved_pfn(pfn)) {
1592 struct page *page = pfn_to_page(pfn);
1593
1594 if (!PageReserved(page))
1595 SetPageDirty(page);
1596 }
1597 }
1598 EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1599
1600 void kvm_set_pfn_accessed(pfn_t pfn)
1601 {
1602 if (!kvm_is_reserved_pfn(pfn))
1603 mark_page_accessed(pfn_to_page(pfn));
1604 }
1605 EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1606
1607 void kvm_get_pfn(pfn_t pfn)
1608 {
1609 if (!kvm_is_reserved_pfn(pfn))
1610 get_page(pfn_to_page(pfn));
1611 }
1612 EXPORT_SYMBOL_GPL(kvm_get_pfn);
1613
1614 static int next_segment(unsigned long len, int offset)
1615 {
1616 if (len > PAGE_SIZE - offset)
1617 return PAGE_SIZE - offset;
1618 else
1619 return len;
1620 }
1621
1622 static int __kvm_read_guest_page(struct kvm_memory_slot *slot, gfn_t gfn,
1623 void *data, int offset, int len)
1624 {
1625 int r;
1626 unsigned long addr;
1627
1628 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
1629 if (kvm_is_error_hva(addr))
1630 return -EFAULT;
1631 r = __copy_from_user(data, (void __user *)addr + offset, len);
1632 if (r)
1633 return -EFAULT;
1634 return 0;
1635 }
1636
1637 int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1638 int len)
1639 {
1640 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1641
1642 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1643 }
1644 EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1645
1646 int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data,
1647 int offset, int len)
1648 {
1649 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1650
1651 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1652 }
1653 EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_page);
1654
1655 int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1656 {
1657 gfn_t gfn = gpa >> PAGE_SHIFT;
1658 int seg;
1659 int offset = offset_in_page(gpa);
1660 int ret;
1661
1662 while ((seg = next_segment(len, offset)) != 0) {
1663 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1664 if (ret < 0)
1665 return ret;
1666 offset = 0;
1667 len -= seg;
1668 data += seg;
1669 ++gfn;
1670 }
1671 return 0;
1672 }
1673 EXPORT_SYMBOL_GPL(kvm_read_guest);
1674
1675 int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned long len)
1676 {
1677 gfn_t gfn = gpa >> PAGE_SHIFT;
1678 int seg;
1679 int offset = offset_in_page(gpa);
1680 int ret;
1681
1682 while ((seg = next_segment(len, offset)) != 0) {
1683 ret = kvm_vcpu_read_guest_page(vcpu, gfn, data, offset, seg);
1684 if (ret < 0)
1685 return ret;
1686 offset = 0;
1687 len -= seg;
1688 data += seg;
1689 ++gfn;
1690 }
1691 return 0;
1692 }
1693 EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest);
1694
1695 static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1696 void *data, int offset, unsigned long len)
1697 {
1698 int r;
1699 unsigned long addr;
1700
1701 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
1702 if (kvm_is_error_hva(addr))
1703 return -EFAULT;
1704 pagefault_disable();
1705 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
1706 pagefault_enable();
1707 if (r)
1708 return -EFAULT;
1709 return 0;
1710 }
1711
1712 int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1713 unsigned long len)
1714 {
1715 gfn_t gfn = gpa >> PAGE_SHIFT;
1716 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1717 int offset = offset_in_page(gpa);
1718
1719 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1720 }
1721 EXPORT_SYMBOL_GPL(kvm_read_guest_atomic);
1722
1723 int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa,
1724 void *data, unsigned long len)
1725 {
1726 gfn_t gfn = gpa >> PAGE_SHIFT;
1727 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1728 int offset = offset_in_page(gpa);
1729
1730 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1731 }
1732 EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic);
1733
1734 static int __kvm_write_guest_page(struct kvm_memory_slot *memslot, gfn_t gfn,
1735 const void *data, int offset, int len)
1736 {
1737 int r;
1738 unsigned long addr;
1739
1740 addr = gfn_to_hva_memslot(memslot, gfn);
1741 if (kvm_is_error_hva(addr))
1742 return -EFAULT;
1743 r = __copy_to_user((void __user *)addr + offset, data, len);
1744 if (r)
1745 return -EFAULT;
1746 mark_page_dirty_in_slot(memslot, gfn);
1747 return 0;
1748 }
1749
1750 int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn,
1751 const void *data, int offset, int len)
1752 {
1753 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1754
1755 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1756 }
1757 EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1758
1759 int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
1760 const void *data, int offset, int len)
1761 {
1762 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1763
1764 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1765 }
1766 EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_page);
1767
1768 int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1769 unsigned long len)
1770 {
1771 gfn_t gfn = gpa >> PAGE_SHIFT;
1772 int seg;
1773 int offset = offset_in_page(gpa);
1774 int ret;
1775
1776 while ((seg = next_segment(len, offset)) != 0) {
1777 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1778 if (ret < 0)
1779 return ret;
1780 offset = 0;
1781 len -= seg;
1782 data += seg;
1783 ++gfn;
1784 }
1785 return 0;
1786 }
1787 EXPORT_SYMBOL_GPL(kvm_write_guest);
1788
1789 int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
1790 unsigned long len)
1791 {
1792 gfn_t gfn = gpa >> PAGE_SHIFT;
1793 int seg;
1794 int offset = offset_in_page(gpa);
1795 int ret;
1796
1797 while ((seg = next_segment(len, offset)) != 0) {
1798 ret = kvm_vcpu_write_guest_page(vcpu, gfn, data, offset, seg);
1799 if (ret < 0)
1800 return ret;
1801 offset = 0;
1802 len -= seg;
1803 data += seg;
1804 ++gfn;
1805 }
1806 return 0;
1807 }
1808 EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest);
1809
1810 int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1811 gpa_t gpa, unsigned long len)
1812 {
1813 struct kvm_memslots *slots = kvm_memslots(kvm);
1814 int offset = offset_in_page(gpa);
1815 gfn_t start_gfn = gpa >> PAGE_SHIFT;
1816 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
1817 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
1818 gfn_t nr_pages_avail;
1819
1820 ghc->gpa = gpa;
1821 ghc->generation = slots->generation;
1822 ghc->len = len;
1823 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
1824 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, NULL);
1825 if (!kvm_is_error_hva(ghc->hva) && nr_pages_needed <= 1) {
1826 ghc->hva += offset;
1827 } else {
1828 /*
1829 * If the requested region crosses two memslots, we still
1830 * verify that the entire region is valid here.
1831 */
1832 while (start_gfn <= end_gfn) {
1833 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
1834 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
1835 &nr_pages_avail);
1836 if (kvm_is_error_hva(ghc->hva))
1837 return -EFAULT;
1838 start_gfn += nr_pages_avail;
1839 }
1840 /* Use the slow path for cross page reads and writes. */
1841 ghc->memslot = NULL;
1842 }
1843 return 0;
1844 }
1845 EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1846
1847 int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1848 void *data, unsigned long len)
1849 {
1850 struct kvm_memslots *slots = kvm_memslots(kvm);
1851 int r;
1852
1853 BUG_ON(len > ghc->len);
1854
1855 if (slots->generation != ghc->generation)
1856 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1857
1858 if (unlikely(!ghc->memslot))
1859 return kvm_write_guest(kvm, ghc->gpa, data, len);
1860
1861 if (kvm_is_error_hva(ghc->hva))
1862 return -EFAULT;
1863
1864 r = __copy_to_user((void __user *)ghc->hva, data, len);
1865 if (r)
1866 return -EFAULT;
1867 mark_page_dirty_in_slot(ghc->memslot, ghc->gpa >> PAGE_SHIFT);
1868
1869 return 0;
1870 }
1871 EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1872
1873 int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1874 void *data, unsigned long len)
1875 {
1876 struct kvm_memslots *slots = kvm_memslots(kvm);
1877 int r;
1878
1879 BUG_ON(len > ghc->len);
1880
1881 if (slots->generation != ghc->generation)
1882 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1883
1884 if (unlikely(!ghc->memslot))
1885 return kvm_read_guest(kvm, ghc->gpa, data, len);
1886
1887 if (kvm_is_error_hva(ghc->hva))
1888 return -EFAULT;
1889
1890 r = __copy_from_user(data, (void __user *)ghc->hva, len);
1891 if (r)
1892 return -EFAULT;
1893
1894 return 0;
1895 }
1896 EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
1897
1898 int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1899 {
1900 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
1901
1902 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
1903 }
1904 EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1905
1906 int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1907 {
1908 gfn_t gfn = gpa >> PAGE_SHIFT;
1909 int seg;
1910 int offset = offset_in_page(gpa);
1911 int ret;
1912
1913 while ((seg = next_segment(len, offset)) != 0) {
1914 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1915 if (ret < 0)
1916 return ret;
1917 offset = 0;
1918 len -= seg;
1919 ++gfn;
1920 }
1921 return 0;
1922 }
1923 EXPORT_SYMBOL_GPL(kvm_clear_guest);
1924
1925 static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot,
1926 gfn_t gfn)
1927 {
1928 if (memslot && memslot->dirty_bitmap) {
1929 unsigned long rel_gfn = gfn - memslot->base_gfn;
1930
1931 set_bit_le(rel_gfn, memslot->dirty_bitmap);
1932 }
1933 }
1934
1935 void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1936 {
1937 struct kvm_memory_slot *memslot;
1938
1939 memslot = gfn_to_memslot(kvm, gfn);
1940 mark_page_dirty_in_slot(memslot, gfn);
1941 }
1942 EXPORT_SYMBOL_GPL(mark_page_dirty);
1943
1944 void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn)
1945 {
1946 struct kvm_memory_slot *memslot;
1947
1948 memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1949 mark_page_dirty_in_slot(memslot, gfn);
1950 }
1951 EXPORT_SYMBOL_GPL(kvm_vcpu_mark_page_dirty);
1952
1953 static void grow_halt_poll_ns(struct kvm_vcpu *vcpu)
1954 {
1955 int old, val;
1956
1957 old = val = vcpu->halt_poll_ns;
1958 /* 10us base */
1959 if (val == 0 && halt_poll_ns_grow)
1960 val = 10000;
1961 else
1962 val *= halt_poll_ns_grow;
1963
1964 if (val > halt_poll_ns)
1965 val = halt_poll_ns;
1966
1967 vcpu->halt_poll_ns = val;
1968 trace_kvm_halt_poll_ns_grow(vcpu->vcpu_id, val, old);
1969 }
1970
1971 static void shrink_halt_poll_ns(struct kvm_vcpu *vcpu)
1972 {
1973 int old, val;
1974
1975 old = val = vcpu->halt_poll_ns;
1976 if (halt_poll_ns_shrink == 0)
1977 val = 0;
1978 else
1979 val /= halt_poll_ns_shrink;
1980
1981 vcpu->halt_poll_ns = val;
1982 trace_kvm_halt_poll_ns_shrink(vcpu->vcpu_id, val, old);
1983 }
1984
1985 static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
1986 {
1987 if (kvm_arch_vcpu_runnable(vcpu)) {
1988 kvm_make_request(KVM_REQ_UNHALT, vcpu);
1989 return -EINTR;
1990 }
1991 if (kvm_cpu_has_pending_timer(vcpu))
1992 return -EINTR;
1993 if (signal_pending(current))
1994 return -EINTR;
1995
1996 return 0;
1997 }
1998
1999 /*
2000 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
2001 */
2002 void kvm_vcpu_block(struct kvm_vcpu *vcpu)
2003 {
2004 ktime_t start, cur;
2005 DEFINE_WAIT(wait);
2006 bool waited = false;
2007 u64 block_ns;
2008
2009 start = cur = ktime_get();
2010 if (vcpu->halt_poll_ns) {
2011 ktime_t stop = ktime_add_ns(ktime_get(), vcpu->halt_poll_ns);
2012
2013 ++vcpu->stat.halt_attempted_poll;
2014 do {
2015 /*
2016 * This sets KVM_REQ_UNHALT if an interrupt
2017 * arrives.
2018 */
2019 if (kvm_vcpu_check_block(vcpu) < 0) {
2020 ++vcpu->stat.halt_successful_poll;
2021 goto out;
2022 }
2023 cur = ktime_get();
2024 } while (single_task_running() && ktime_before(cur, stop));
2025 }
2026
2027 kvm_arch_vcpu_blocking(vcpu);
2028
2029 for (;;) {
2030 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
2031
2032 if (kvm_vcpu_check_block(vcpu) < 0)
2033 break;
2034
2035 waited = true;
2036 schedule();
2037 }
2038
2039 finish_wait(&vcpu->wq, &wait);
2040 cur = ktime_get();
2041
2042 kvm_arch_vcpu_unblocking(vcpu);
2043 out:
2044 block_ns = ktime_to_ns(cur) - ktime_to_ns(start);
2045
2046 if (halt_poll_ns) {
2047 if (block_ns <= vcpu->halt_poll_ns)
2048 ;
2049 /* we had a long block, shrink polling */
2050 else if (vcpu->halt_poll_ns && block_ns > halt_poll_ns)
2051 shrink_halt_poll_ns(vcpu);
2052 /* we had a short halt and our poll time is too small */
2053 else if (vcpu->halt_poll_ns < halt_poll_ns &&
2054 block_ns < halt_poll_ns)
2055 grow_halt_poll_ns(vcpu);
2056 } else
2057 vcpu->halt_poll_ns = 0;
2058
2059 trace_kvm_vcpu_wakeup(block_ns, waited);
2060 }
2061 EXPORT_SYMBOL_GPL(kvm_vcpu_block);
2062
2063 #ifndef CONFIG_S390
2064 /*
2065 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
2066 */
2067 void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
2068 {
2069 int me;
2070 int cpu = vcpu->cpu;
2071 wait_queue_head_t *wqp;
2072
2073 wqp = kvm_arch_vcpu_wq(vcpu);
2074 if (waitqueue_active(wqp)) {
2075 wake_up_interruptible(wqp);
2076 ++vcpu->stat.halt_wakeup;
2077 }
2078
2079 me = get_cpu();
2080 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
2081 if (kvm_arch_vcpu_should_kick(vcpu))
2082 smp_send_reschedule(cpu);
2083 put_cpu();
2084 }
2085 EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
2086 #endif /* !CONFIG_S390 */
2087
2088 int kvm_vcpu_yield_to(struct kvm_vcpu *target)
2089 {
2090 struct pid *pid;
2091 struct task_struct *task = NULL;
2092 int ret = 0;
2093
2094 rcu_read_lock();
2095 pid = rcu_dereference(target->pid);
2096 if (pid)
2097 task = get_pid_task(pid, PIDTYPE_PID);
2098 rcu_read_unlock();
2099 if (!task)
2100 return ret;
2101 ret = yield_to(task, 1);
2102 put_task_struct(task);
2103
2104 return ret;
2105 }
2106 EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
2107
2108 /*
2109 * Helper that checks whether a VCPU is eligible for directed yield.
2110 * Most eligible candidate to yield is decided by following heuristics:
2111 *
2112 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
2113 * (preempted lock holder), indicated by @in_spin_loop.
2114 * Set at the beiginning and cleared at the end of interception/PLE handler.
2115 *
2116 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
2117 * chance last time (mostly it has become eligible now since we have probably
2118 * yielded to lockholder in last iteration. This is done by toggling
2119 * @dy_eligible each time a VCPU checked for eligibility.)
2120 *
2121 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
2122 * to preempted lock-holder could result in wrong VCPU selection and CPU
2123 * burning. Giving priority for a potential lock-holder increases lock
2124 * progress.
2125 *
2126 * Since algorithm is based on heuristics, accessing another VCPU data without
2127 * locking does not harm. It may result in trying to yield to same VCPU, fail
2128 * and continue with next VCPU and so on.
2129 */
2130 static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
2131 {
2132 #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
2133 bool eligible;
2134
2135 eligible = !vcpu->spin_loop.in_spin_loop ||
2136 vcpu->spin_loop.dy_eligible;
2137
2138 if (vcpu->spin_loop.in_spin_loop)
2139 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
2140
2141 return eligible;
2142 #else
2143 return true;
2144 #endif
2145 }
2146
2147 void kvm_vcpu_on_spin(struct kvm_vcpu *me)
2148 {
2149 struct kvm *kvm = me->kvm;
2150 struct kvm_vcpu *vcpu;
2151 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
2152 int yielded = 0;
2153 int try = 3;
2154 int pass;
2155 int i;
2156
2157 kvm_vcpu_set_in_spin_loop(me, true);
2158 /*
2159 * We boost the priority of a VCPU that is runnable but not
2160 * currently running, because it got preempted by something
2161 * else and called schedule in __vcpu_run. Hopefully that
2162 * VCPU is holding the lock that we need and will release it.
2163 * We approximate round-robin by starting at the last boosted VCPU.
2164 */
2165 for (pass = 0; pass < 2 && !yielded && try; pass++) {
2166 kvm_for_each_vcpu(i, vcpu, kvm) {
2167 if (!pass && i <= last_boosted_vcpu) {
2168 i = last_boosted_vcpu;
2169 continue;
2170 } else if (pass && i > last_boosted_vcpu)
2171 break;
2172 if (!ACCESS_ONCE(vcpu->preempted))
2173 continue;
2174 if (vcpu == me)
2175 continue;
2176 if (waitqueue_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
2177 continue;
2178 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
2179 continue;
2180
2181 yielded = kvm_vcpu_yield_to(vcpu);
2182 if (yielded > 0) {
2183 kvm->last_boosted_vcpu = i;
2184 break;
2185 } else if (yielded < 0) {
2186 try--;
2187 if (!try)
2188 break;
2189 }
2190 }
2191 }
2192 kvm_vcpu_set_in_spin_loop(me, false);
2193
2194 /* Ensure vcpu is not eligible during next spinloop */
2195 kvm_vcpu_set_dy_eligible(me, false);
2196 }
2197 EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
2198
2199 static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2200 {
2201 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
2202 struct page *page;
2203
2204 if (vmf->pgoff == 0)
2205 page = virt_to_page(vcpu->run);
2206 #ifdef CONFIG_X86
2207 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
2208 page = virt_to_page(vcpu->arch.pio_data);
2209 #endif
2210 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2211 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
2212 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
2213 #endif
2214 else
2215 return kvm_arch_vcpu_fault(vcpu, vmf);
2216 get_page(page);
2217 vmf->page = page;
2218 return 0;
2219 }
2220
2221 static const struct vm_operations_struct kvm_vcpu_vm_ops = {
2222 .fault = kvm_vcpu_fault,
2223 };
2224
2225 static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2226 {
2227 vma->vm_ops = &kvm_vcpu_vm_ops;
2228 return 0;
2229 }
2230
2231 static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2232 {
2233 struct kvm_vcpu *vcpu = filp->private_data;
2234
2235 kvm_put_kvm(vcpu->kvm);
2236 return 0;
2237 }
2238
2239 static struct file_operations kvm_vcpu_fops = {
2240 .release = kvm_vcpu_release,
2241 .unlocked_ioctl = kvm_vcpu_ioctl,
2242 #ifdef CONFIG_KVM_COMPAT
2243 .compat_ioctl = kvm_vcpu_compat_ioctl,
2244 #endif
2245 .mmap = kvm_vcpu_mmap,
2246 .llseek = noop_llseek,
2247 };
2248
2249 /*
2250 * Allocates an inode for the vcpu.
2251 */
2252 static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2253 {
2254 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
2255 }
2256
2257 /*
2258 * Creates some virtual cpus. Good luck creating more than one.
2259 */
2260 static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
2261 {
2262 int r;
2263 struct kvm_vcpu *vcpu, *v;
2264
2265 if (id >= KVM_MAX_VCPUS)
2266 return -EINVAL;
2267
2268 vcpu = kvm_arch_vcpu_create(kvm, id);
2269 if (IS_ERR(vcpu))
2270 return PTR_ERR(vcpu);
2271
2272 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2273
2274 r = kvm_arch_vcpu_setup(vcpu);
2275 if (r)
2276 goto vcpu_destroy;
2277
2278 mutex_lock(&kvm->lock);
2279 if (!kvm_vcpu_compatible(vcpu)) {
2280 r = -EINVAL;
2281 goto unlock_vcpu_destroy;
2282 }
2283 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
2284 r = -EINVAL;
2285 goto unlock_vcpu_destroy;
2286 }
2287
2288 kvm_for_each_vcpu(r, v, kvm)
2289 if (v->vcpu_id == id) {
2290 r = -EEXIST;
2291 goto unlock_vcpu_destroy;
2292 }
2293
2294 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
2295
2296 /* Now it's all set up, let userspace reach it */
2297 kvm_get_kvm(kvm);
2298 r = create_vcpu_fd(vcpu);
2299 if (r < 0) {
2300 kvm_put_kvm(kvm);
2301 goto unlock_vcpu_destroy;
2302 }
2303
2304 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
2305
2306 /*
2307 * Pairs with smp_rmb() in kvm_get_vcpu. Write kvm->vcpus
2308 * before kvm->online_vcpu's incremented value.
2309 */
2310 smp_wmb();
2311 atomic_inc(&kvm->online_vcpus);
2312
2313 mutex_unlock(&kvm->lock);
2314 kvm_arch_vcpu_postcreate(vcpu);
2315 return r;
2316
2317 unlock_vcpu_destroy:
2318 mutex_unlock(&kvm->lock);
2319 vcpu_destroy:
2320 kvm_arch_vcpu_destroy(vcpu);
2321 return r;
2322 }
2323
2324 static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2325 {
2326 if (sigset) {
2327 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2328 vcpu->sigset_active = 1;
2329 vcpu->sigset = *sigset;
2330 } else
2331 vcpu->sigset_active = 0;
2332 return 0;
2333 }
2334
2335 static long kvm_vcpu_ioctl(struct file *filp,
2336 unsigned int ioctl, unsigned long arg)
2337 {
2338 struct kvm_vcpu *vcpu = filp->private_data;
2339 void __user *argp = (void __user *)arg;
2340 int r;
2341 struct kvm_fpu *fpu = NULL;
2342 struct kvm_sregs *kvm_sregs = NULL;
2343
2344 if (vcpu->kvm->mm != current->mm)
2345 return -EIO;
2346
2347 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2348 return -EINVAL;
2349
2350 #if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
2351 /*
2352 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
2353 * so vcpu_load() would break it.
2354 */
2355 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_S390_IRQ || ioctl == KVM_INTERRUPT)
2356 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2357 #endif
2358
2359
2360 r = vcpu_load(vcpu);
2361 if (r)
2362 return r;
2363 switch (ioctl) {
2364 case KVM_RUN:
2365 r = -EINVAL;
2366 if (arg)
2367 goto out;
2368 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
2369 /* The thread running this VCPU changed. */
2370 struct pid *oldpid = vcpu->pid;
2371 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
2372
2373 rcu_assign_pointer(vcpu->pid, newpid);
2374 if (oldpid)
2375 synchronize_rcu();
2376 put_pid(oldpid);
2377 }
2378 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
2379 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
2380 break;
2381 case KVM_GET_REGS: {
2382 struct kvm_regs *kvm_regs;
2383
2384 r = -ENOMEM;
2385 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2386 if (!kvm_regs)
2387 goto out;
2388 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
2389 if (r)
2390 goto out_free1;
2391 r = -EFAULT;
2392 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2393 goto out_free1;
2394 r = 0;
2395 out_free1:
2396 kfree(kvm_regs);
2397 break;
2398 }
2399 case KVM_SET_REGS: {
2400 struct kvm_regs *kvm_regs;
2401
2402 r = -ENOMEM;
2403 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2404 if (IS_ERR(kvm_regs)) {
2405 r = PTR_ERR(kvm_regs);
2406 goto out;
2407 }
2408 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
2409 kfree(kvm_regs);
2410 break;
2411 }
2412 case KVM_GET_SREGS: {
2413 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2414 r = -ENOMEM;
2415 if (!kvm_sregs)
2416 goto out;
2417 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
2418 if (r)
2419 goto out;
2420 r = -EFAULT;
2421 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
2422 goto out;
2423 r = 0;
2424 break;
2425 }
2426 case KVM_SET_SREGS: {
2427 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2428 if (IS_ERR(kvm_sregs)) {
2429 r = PTR_ERR(kvm_sregs);
2430 kvm_sregs = NULL;
2431 goto out;
2432 }
2433 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
2434 break;
2435 }
2436 case KVM_GET_MP_STATE: {
2437 struct kvm_mp_state mp_state;
2438
2439 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2440 if (r)
2441 goto out;
2442 r = -EFAULT;
2443 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
2444 goto out;
2445 r = 0;
2446 break;
2447 }
2448 case KVM_SET_MP_STATE: {
2449 struct kvm_mp_state mp_state;
2450
2451 r = -EFAULT;
2452 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
2453 goto out;
2454 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
2455 break;
2456 }
2457 case KVM_TRANSLATE: {
2458 struct kvm_translation tr;
2459
2460 r = -EFAULT;
2461 if (copy_from_user(&tr, argp, sizeof(tr)))
2462 goto out;
2463 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
2464 if (r)
2465 goto out;
2466 r = -EFAULT;
2467 if (copy_to_user(argp, &tr, sizeof(tr)))
2468 goto out;
2469 r = 0;
2470 break;
2471 }
2472 case KVM_SET_GUEST_DEBUG: {
2473 struct kvm_guest_debug dbg;
2474
2475 r = -EFAULT;
2476 if (copy_from_user(&dbg, argp, sizeof(dbg)))
2477 goto out;
2478 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
2479 break;
2480 }
2481 case KVM_SET_SIGNAL_MASK: {
2482 struct kvm_signal_mask __user *sigmask_arg = argp;
2483 struct kvm_signal_mask kvm_sigmask;
2484 sigset_t sigset, *p;
2485
2486 p = NULL;
2487 if (argp) {
2488 r = -EFAULT;
2489 if (copy_from_user(&kvm_sigmask, argp,
2490 sizeof(kvm_sigmask)))
2491 goto out;
2492 r = -EINVAL;
2493 if (kvm_sigmask.len != sizeof(sigset))
2494 goto out;
2495 r = -EFAULT;
2496 if (copy_from_user(&sigset, sigmask_arg->sigset,
2497 sizeof(sigset)))
2498 goto out;
2499 p = &sigset;
2500 }
2501 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
2502 break;
2503 }
2504 case KVM_GET_FPU: {
2505 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2506 r = -ENOMEM;
2507 if (!fpu)
2508 goto out;
2509 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
2510 if (r)
2511 goto out;
2512 r = -EFAULT;
2513 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
2514 goto out;
2515 r = 0;
2516 break;
2517 }
2518 case KVM_SET_FPU: {
2519 fpu = memdup_user(argp, sizeof(*fpu));
2520 if (IS_ERR(fpu)) {
2521 r = PTR_ERR(fpu);
2522 fpu = NULL;
2523 goto out;
2524 }
2525 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
2526 break;
2527 }
2528 default:
2529 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2530 }
2531 out:
2532 vcpu_put(vcpu);
2533 kfree(fpu);
2534 kfree(kvm_sregs);
2535 return r;
2536 }
2537
2538 #ifdef CONFIG_KVM_COMPAT
2539 static long kvm_vcpu_compat_ioctl(struct file *filp,
2540 unsigned int ioctl, unsigned long arg)
2541 {
2542 struct kvm_vcpu *vcpu = filp->private_data;
2543 void __user *argp = compat_ptr(arg);
2544 int r;
2545
2546 if (vcpu->kvm->mm != current->mm)
2547 return -EIO;
2548
2549 switch (ioctl) {
2550 case KVM_SET_SIGNAL_MASK: {
2551 struct kvm_signal_mask __user *sigmask_arg = argp;
2552 struct kvm_signal_mask kvm_sigmask;
2553 compat_sigset_t csigset;
2554 sigset_t sigset;
2555
2556 if (argp) {
2557 r = -EFAULT;
2558 if (copy_from_user(&kvm_sigmask, argp,
2559 sizeof(kvm_sigmask)))
2560 goto out;
2561 r = -EINVAL;
2562 if (kvm_sigmask.len != sizeof(csigset))
2563 goto out;
2564 r = -EFAULT;
2565 if (copy_from_user(&csigset, sigmask_arg->sigset,
2566 sizeof(csigset)))
2567 goto out;
2568 sigset_from_compat(&sigset, &csigset);
2569 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2570 } else
2571 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
2572 break;
2573 }
2574 default:
2575 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2576 }
2577
2578 out:
2579 return r;
2580 }
2581 #endif
2582
2583 static int kvm_device_ioctl_attr(struct kvm_device *dev,
2584 int (*accessor)(struct kvm_device *dev,
2585 struct kvm_device_attr *attr),
2586 unsigned long arg)
2587 {
2588 struct kvm_device_attr attr;
2589
2590 if (!accessor)
2591 return -EPERM;
2592
2593 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2594 return -EFAULT;
2595
2596 return accessor(dev, &attr);
2597 }
2598
2599 static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2600 unsigned long arg)
2601 {
2602 struct kvm_device *dev = filp->private_data;
2603
2604 switch (ioctl) {
2605 case KVM_SET_DEVICE_ATTR:
2606 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2607 case KVM_GET_DEVICE_ATTR:
2608 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2609 case KVM_HAS_DEVICE_ATTR:
2610 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2611 default:
2612 if (dev->ops->ioctl)
2613 return dev->ops->ioctl(dev, ioctl, arg);
2614
2615 return -ENOTTY;
2616 }
2617 }
2618
2619 static int kvm_device_release(struct inode *inode, struct file *filp)
2620 {
2621 struct kvm_device *dev = filp->private_data;
2622 struct kvm *kvm = dev->kvm;
2623
2624 kvm_put_kvm(kvm);
2625 return 0;
2626 }
2627
2628 static const struct file_operations kvm_device_fops = {
2629 .unlocked_ioctl = kvm_device_ioctl,
2630 #ifdef CONFIG_KVM_COMPAT
2631 .compat_ioctl = kvm_device_ioctl,
2632 #endif
2633 .release = kvm_device_release,
2634 };
2635
2636 struct kvm_device *kvm_device_from_filp(struct file *filp)
2637 {
2638 if (filp->f_op != &kvm_device_fops)
2639 return NULL;
2640
2641 return filp->private_data;
2642 }
2643
2644 static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
2645 #ifdef CONFIG_KVM_MPIC
2646 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
2647 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
2648 #endif
2649
2650 #ifdef CONFIG_KVM_XICS
2651 [KVM_DEV_TYPE_XICS] = &kvm_xics_ops,
2652 #endif
2653 };
2654
2655 int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
2656 {
2657 if (type >= ARRAY_SIZE(kvm_device_ops_table))
2658 return -ENOSPC;
2659
2660 if (kvm_device_ops_table[type] != NULL)
2661 return -EEXIST;
2662
2663 kvm_device_ops_table[type] = ops;
2664 return 0;
2665 }
2666
2667 void kvm_unregister_device_ops(u32 type)
2668 {
2669 if (kvm_device_ops_table[type] != NULL)
2670 kvm_device_ops_table[type] = NULL;
2671 }
2672
2673 static int kvm_ioctl_create_device(struct kvm *kvm,
2674 struct kvm_create_device *cd)
2675 {
2676 struct kvm_device_ops *ops = NULL;
2677 struct kvm_device *dev;
2678 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2679 int ret;
2680
2681 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
2682 return -ENODEV;
2683
2684 ops = kvm_device_ops_table[cd->type];
2685 if (ops == NULL)
2686 return -ENODEV;
2687
2688 if (test)
2689 return 0;
2690
2691 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2692 if (!dev)
2693 return -ENOMEM;
2694
2695 dev->ops = ops;
2696 dev->kvm = kvm;
2697
2698 ret = ops->create(dev, cd->type);
2699 if (ret < 0) {
2700 kfree(dev);
2701 return ret;
2702 }
2703
2704 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
2705 if (ret < 0) {
2706 ops->destroy(dev);
2707 return ret;
2708 }
2709
2710 list_add(&dev->vm_node, &kvm->devices);
2711 kvm_get_kvm(kvm);
2712 cd->fd = ret;
2713 return 0;
2714 }
2715
2716 static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2717 {
2718 switch (arg) {
2719 case KVM_CAP_USER_MEMORY:
2720 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2721 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
2722 case KVM_CAP_INTERNAL_ERROR_DATA:
2723 #ifdef CONFIG_HAVE_KVM_MSI
2724 case KVM_CAP_SIGNAL_MSI:
2725 #endif
2726 #ifdef CONFIG_HAVE_KVM_IRQFD
2727 case KVM_CAP_IRQFD:
2728 case KVM_CAP_IRQFD_RESAMPLE:
2729 #endif
2730 case KVM_CAP_IOEVENTFD_ANY_LENGTH:
2731 case KVM_CAP_CHECK_EXTENSION_VM:
2732 return 1;
2733 #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2734 case KVM_CAP_IRQ_ROUTING:
2735 return KVM_MAX_IRQ_ROUTES;
2736 #endif
2737 #if KVM_ADDRESS_SPACE_NUM > 1
2738 case KVM_CAP_MULTI_ADDRESS_SPACE:
2739 return KVM_ADDRESS_SPACE_NUM;
2740 #endif
2741 default:
2742 break;
2743 }
2744 return kvm_vm_ioctl_check_extension(kvm, arg);
2745 }
2746
2747 static long kvm_vm_ioctl(struct file *filp,
2748 unsigned int ioctl, unsigned long arg)
2749 {
2750 struct kvm *kvm = filp->private_data;
2751 void __user *argp = (void __user *)arg;
2752 int r;
2753
2754 if (kvm->mm != current->mm)
2755 return -EIO;
2756 switch (ioctl) {
2757 case KVM_CREATE_VCPU:
2758 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
2759 break;
2760 case KVM_SET_USER_MEMORY_REGION: {
2761 struct kvm_userspace_memory_region kvm_userspace_mem;
2762
2763 r = -EFAULT;
2764 if (copy_from_user(&kvm_userspace_mem, argp,
2765 sizeof(kvm_userspace_mem)))
2766 goto out;
2767
2768 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
2769 break;
2770 }
2771 case KVM_GET_DIRTY_LOG: {
2772 struct kvm_dirty_log log;
2773
2774 r = -EFAULT;
2775 if (copy_from_user(&log, argp, sizeof(log)))
2776 goto out;
2777 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
2778 break;
2779 }
2780 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2781 case KVM_REGISTER_COALESCED_MMIO: {
2782 struct kvm_coalesced_mmio_zone zone;
2783
2784 r = -EFAULT;
2785 if (copy_from_user(&zone, argp, sizeof(zone)))
2786 goto out;
2787 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
2788 break;
2789 }
2790 case KVM_UNREGISTER_COALESCED_MMIO: {
2791 struct kvm_coalesced_mmio_zone zone;
2792
2793 r = -EFAULT;
2794 if (copy_from_user(&zone, argp, sizeof(zone)))
2795 goto out;
2796 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
2797 break;
2798 }
2799 #endif
2800 case KVM_IRQFD: {
2801 struct kvm_irqfd data;
2802
2803 r = -EFAULT;
2804 if (copy_from_user(&data, argp, sizeof(data)))
2805 goto out;
2806 r = kvm_irqfd(kvm, &data);
2807 break;
2808 }
2809 case KVM_IOEVENTFD: {
2810 struct kvm_ioeventfd data;
2811
2812 r = -EFAULT;
2813 if (copy_from_user(&data, argp, sizeof(data)))
2814 goto out;
2815 r = kvm_ioeventfd(kvm, &data);
2816 break;
2817 }
2818 #ifdef CONFIG_HAVE_KVM_MSI
2819 case KVM_SIGNAL_MSI: {
2820 struct kvm_msi msi;
2821
2822 r = -EFAULT;
2823 if (copy_from_user(&msi, argp, sizeof(msi)))
2824 goto out;
2825 r = kvm_send_userspace_msi(kvm, &msi);
2826 break;
2827 }
2828 #endif
2829 #ifdef __KVM_HAVE_IRQ_LINE
2830 case KVM_IRQ_LINE_STATUS:
2831 case KVM_IRQ_LINE: {
2832 struct kvm_irq_level irq_event;
2833
2834 r = -EFAULT;
2835 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
2836 goto out;
2837
2838 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
2839 ioctl == KVM_IRQ_LINE_STATUS);
2840 if (r)
2841 goto out;
2842
2843 r = -EFAULT;
2844 if (ioctl == KVM_IRQ_LINE_STATUS) {
2845 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
2846 goto out;
2847 }
2848
2849 r = 0;
2850 break;
2851 }
2852 #endif
2853 #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2854 case KVM_SET_GSI_ROUTING: {
2855 struct kvm_irq_routing routing;
2856 struct kvm_irq_routing __user *urouting;
2857 struct kvm_irq_routing_entry *entries;
2858
2859 r = -EFAULT;
2860 if (copy_from_user(&routing, argp, sizeof(routing)))
2861 goto out;
2862 r = -EINVAL;
2863 if (routing.nr >= KVM_MAX_IRQ_ROUTES)
2864 goto out;
2865 if (routing.flags)
2866 goto out;
2867 r = -ENOMEM;
2868 entries = vmalloc(routing.nr * sizeof(*entries));
2869 if (!entries)
2870 goto out;
2871 r = -EFAULT;
2872 urouting = argp;
2873 if (copy_from_user(entries, urouting->entries,
2874 routing.nr * sizeof(*entries)))
2875 goto out_free_irq_routing;
2876 r = kvm_set_irq_routing(kvm, entries, routing.nr,
2877 routing.flags);
2878 out_free_irq_routing:
2879 vfree(entries);
2880 break;
2881 }
2882 #endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
2883 case KVM_CREATE_DEVICE: {
2884 struct kvm_create_device cd;
2885
2886 r = -EFAULT;
2887 if (copy_from_user(&cd, argp, sizeof(cd)))
2888 goto out;
2889
2890 r = kvm_ioctl_create_device(kvm, &cd);
2891 if (r)
2892 goto out;
2893
2894 r = -EFAULT;
2895 if (copy_to_user(argp, &cd, sizeof(cd)))
2896 goto out;
2897
2898 r = 0;
2899 break;
2900 }
2901 case KVM_CHECK_EXTENSION:
2902 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
2903 break;
2904 default:
2905 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
2906 }
2907 out:
2908 return r;
2909 }
2910
2911 #ifdef CONFIG_KVM_COMPAT
2912 struct compat_kvm_dirty_log {
2913 __u32 slot;
2914 __u32 padding1;
2915 union {
2916 compat_uptr_t dirty_bitmap; /* one bit per page */
2917 __u64 padding2;
2918 };
2919 };
2920
2921 static long kvm_vm_compat_ioctl(struct file *filp,
2922 unsigned int ioctl, unsigned long arg)
2923 {
2924 struct kvm *kvm = filp->private_data;
2925 int r;
2926
2927 if (kvm->mm != current->mm)
2928 return -EIO;
2929 switch (ioctl) {
2930 case KVM_GET_DIRTY_LOG: {
2931 struct compat_kvm_dirty_log compat_log;
2932 struct kvm_dirty_log log;
2933
2934 r = -EFAULT;
2935 if (copy_from_user(&compat_log, (void __user *)arg,
2936 sizeof(compat_log)))
2937 goto out;
2938 log.slot = compat_log.slot;
2939 log.padding1 = compat_log.padding1;
2940 log.padding2 = compat_log.padding2;
2941 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
2942
2943 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
2944 break;
2945 }
2946 default:
2947 r = kvm_vm_ioctl(filp, ioctl, arg);
2948 }
2949
2950 out:
2951 return r;
2952 }
2953 #endif
2954
2955 static struct file_operations kvm_vm_fops = {
2956 .release = kvm_vm_release,
2957 .unlocked_ioctl = kvm_vm_ioctl,
2958 #ifdef CONFIG_KVM_COMPAT
2959 .compat_ioctl = kvm_vm_compat_ioctl,
2960 #endif
2961 .llseek = noop_llseek,
2962 };
2963
2964 static int kvm_dev_ioctl_create_vm(unsigned long type)
2965 {
2966 int r;
2967 struct kvm *kvm;
2968
2969 kvm = kvm_create_vm(type);
2970 if (IS_ERR(kvm))
2971 return PTR_ERR(kvm);
2972 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2973 r = kvm_coalesced_mmio_init(kvm);
2974 if (r < 0) {
2975 kvm_put_kvm(kvm);
2976 return r;
2977 }
2978 #endif
2979 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR | O_CLOEXEC);
2980 if (r < 0)
2981 kvm_put_kvm(kvm);
2982
2983 return r;
2984 }
2985
2986 static long kvm_dev_ioctl(struct file *filp,
2987 unsigned int ioctl, unsigned long arg)
2988 {
2989 long r = -EINVAL;
2990
2991 switch (ioctl) {
2992 case KVM_GET_API_VERSION:
2993 if (arg)
2994 goto out;
2995 r = KVM_API_VERSION;
2996 break;
2997 case KVM_CREATE_VM:
2998 r = kvm_dev_ioctl_create_vm(arg);
2999 break;
3000 case KVM_CHECK_EXTENSION:
3001 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
3002 break;
3003 case KVM_GET_VCPU_MMAP_SIZE:
3004 if (arg)
3005 goto out;
3006 r = PAGE_SIZE; /* struct kvm_run */
3007 #ifdef CONFIG_X86
3008 r += PAGE_SIZE; /* pio data page */
3009 #endif
3010 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
3011 r += PAGE_SIZE; /* coalesced mmio ring page */
3012 #endif
3013 break;
3014 case KVM_TRACE_ENABLE:
3015 case KVM_TRACE_PAUSE:
3016 case KVM_TRACE_DISABLE:
3017 r = -EOPNOTSUPP;
3018 break;
3019 default:
3020 return kvm_arch_dev_ioctl(filp, ioctl, arg);
3021 }
3022 out:
3023 return r;
3024 }
3025
3026 static struct file_operations kvm_chardev_ops = {
3027 .unlocked_ioctl = kvm_dev_ioctl,
3028 .compat_ioctl = kvm_dev_ioctl,
3029 .llseek = noop_llseek,
3030 };
3031
3032 static struct miscdevice kvm_dev = {
3033 KVM_MINOR,
3034 "kvm",
3035 &kvm_chardev_ops,
3036 };
3037
3038 static void hardware_enable_nolock(void *junk)
3039 {
3040 int cpu = raw_smp_processor_id();
3041 int r;
3042
3043 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
3044 return;
3045
3046 cpumask_set_cpu(cpu, cpus_hardware_enabled);
3047
3048 r = kvm_arch_hardware_enable();
3049
3050 if (r) {
3051 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
3052 atomic_inc(&hardware_enable_failed);
3053 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
3054 }
3055 }
3056
3057 static void hardware_enable(void)
3058 {
3059 raw_spin_lock(&kvm_count_lock);
3060 if (kvm_usage_count)
3061 hardware_enable_nolock(NULL);
3062 raw_spin_unlock(&kvm_count_lock);
3063 }
3064
3065 static void hardware_disable_nolock(void *junk)
3066 {
3067 int cpu = raw_smp_processor_id();
3068
3069 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
3070 return;
3071 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
3072 kvm_arch_hardware_disable();
3073 }
3074
3075 static void hardware_disable(void)
3076 {
3077 raw_spin_lock(&kvm_count_lock);
3078 if (kvm_usage_count)
3079 hardware_disable_nolock(NULL);
3080 raw_spin_unlock(&kvm_count_lock);
3081 }
3082
3083 static void hardware_disable_all_nolock(void)
3084 {
3085 BUG_ON(!kvm_usage_count);
3086
3087 kvm_usage_count--;
3088 if (!kvm_usage_count)
3089 on_each_cpu(hardware_disable_nolock, NULL, 1);
3090 }
3091
3092 static void hardware_disable_all(void)
3093 {
3094 raw_spin_lock(&kvm_count_lock);
3095 hardware_disable_all_nolock();
3096 raw_spin_unlock(&kvm_count_lock);
3097 }
3098
3099 static int hardware_enable_all(void)
3100 {
3101 int r = 0;
3102
3103 raw_spin_lock(&kvm_count_lock);
3104
3105 kvm_usage_count++;
3106 if (kvm_usage_count == 1) {
3107 atomic_set(&hardware_enable_failed, 0);
3108 on_each_cpu(hardware_enable_nolock, NULL, 1);
3109
3110 if (atomic_read(&hardware_enable_failed)) {
3111 hardware_disable_all_nolock();
3112 r = -EBUSY;
3113 }
3114 }
3115
3116 raw_spin_unlock(&kvm_count_lock);
3117
3118 return r;
3119 }
3120
3121 static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
3122 void *v)
3123 {
3124 val &= ~CPU_TASKS_FROZEN;
3125 switch (val) {
3126 case CPU_DYING:
3127 hardware_disable();
3128 break;
3129 case CPU_STARTING:
3130 hardware_enable();
3131 break;
3132 }
3133 return NOTIFY_OK;
3134 }
3135
3136 static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
3137 void *v)
3138 {
3139 /*
3140 * Some (well, at least mine) BIOSes hang on reboot if
3141 * in vmx root mode.
3142 *
3143 * And Intel TXT required VMX off for all cpu when system shutdown.
3144 */
3145 pr_info("kvm: exiting hardware virtualization\n");
3146 kvm_rebooting = true;
3147 on_each_cpu(hardware_disable_nolock, NULL, 1);
3148 return NOTIFY_OK;
3149 }
3150
3151 static struct notifier_block kvm_reboot_notifier = {
3152 .notifier_call = kvm_reboot,
3153 .priority = 0,
3154 };
3155
3156 static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
3157 {
3158 int i;
3159
3160 for (i = 0; i < bus->dev_count; i++) {
3161 struct kvm_io_device *pos = bus->range[i].dev;
3162
3163 kvm_iodevice_destructor(pos);
3164 }
3165 kfree(bus);
3166 }
3167
3168 static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
3169 const struct kvm_io_range *r2)
3170 {
3171 gpa_t addr1 = r1->addr;
3172 gpa_t addr2 = r2->addr;
3173
3174 if (addr1 < addr2)
3175 return -1;
3176
3177 /* If r2->len == 0, match the exact address. If r2->len != 0,
3178 * accept any overlapping write. Any order is acceptable for
3179 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
3180 * we process all of them.
3181 */
3182 if (r2->len) {
3183 addr1 += r1->len;
3184 addr2 += r2->len;
3185 }
3186
3187 if (addr1 > addr2)
3188 return 1;
3189
3190 return 0;
3191 }
3192
3193 static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
3194 {
3195 return kvm_io_bus_cmp(p1, p2);
3196 }
3197
3198 static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
3199 gpa_t addr, int len)
3200 {
3201 bus->range[bus->dev_count++] = (struct kvm_io_range) {
3202 .addr = addr,
3203 .len = len,
3204 .dev = dev,
3205 };
3206
3207 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
3208 kvm_io_bus_sort_cmp, NULL);
3209
3210 return 0;
3211 }
3212
3213 static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
3214 gpa_t addr, int len)
3215 {
3216 struct kvm_io_range *range, key;
3217 int off;
3218
3219 key = (struct kvm_io_range) {
3220 .addr = addr,
3221 .len = len,
3222 };
3223
3224 range = bsearch(&key, bus->range, bus->dev_count,
3225 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
3226 if (range == NULL)
3227 return -ENOENT;
3228
3229 off = range - bus->range;
3230
3231 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
3232 off--;
3233
3234 return off;
3235 }
3236
3237 static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3238 struct kvm_io_range *range, const void *val)
3239 {
3240 int idx;
3241
3242 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3243 if (idx < 0)
3244 return -EOPNOTSUPP;
3245
3246 while (idx < bus->dev_count &&
3247 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
3248 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
3249 range->len, val))
3250 return idx;
3251 idx++;
3252 }
3253
3254 return -EOPNOTSUPP;
3255 }
3256
3257 /* kvm_io_bus_write - called under kvm->slots_lock */
3258 int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
3259 int len, const void *val)
3260 {
3261 struct kvm_io_bus *bus;
3262 struct kvm_io_range range;
3263 int r;
3264
3265 range = (struct kvm_io_range) {
3266 .addr = addr,
3267 .len = len,
3268 };
3269
3270 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3271 r = __kvm_io_bus_write(vcpu, bus, &range, val);
3272 return r < 0 ? r : 0;
3273 }
3274
3275 /* kvm_io_bus_write_cookie - called under kvm->slots_lock */
3276 int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3277 gpa_t addr, int len, const void *val, long cookie)
3278 {
3279 struct kvm_io_bus *bus;
3280 struct kvm_io_range range;
3281
3282 range = (struct kvm_io_range) {
3283 .addr = addr,
3284 .len = len,
3285 };
3286
3287 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3288
3289 /* First try the device referenced by cookie. */
3290 if ((cookie >= 0) && (cookie < bus->dev_count) &&
3291 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
3292 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
3293 val))
3294 return cookie;
3295
3296 /*
3297 * cookie contained garbage; fall back to search and return the
3298 * correct cookie value.
3299 */
3300 return __kvm_io_bus_write(vcpu, bus, &range, val);
3301 }
3302
3303 static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3304 struct kvm_io_range *range, void *val)
3305 {
3306 int idx;
3307
3308 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3309 if (idx < 0)
3310 return -EOPNOTSUPP;
3311
3312 while (idx < bus->dev_count &&
3313 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
3314 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
3315 range->len, val))
3316 return idx;
3317 idx++;
3318 }
3319
3320 return -EOPNOTSUPP;
3321 }
3322 EXPORT_SYMBOL_GPL(kvm_io_bus_write);
3323
3324 /* kvm_io_bus_read - called under kvm->slots_lock */
3325 int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
3326 int len, void *val)
3327 {
3328 struct kvm_io_bus *bus;
3329 struct kvm_io_range range;
3330 int r;
3331
3332 range = (struct kvm_io_range) {
3333 .addr = addr,
3334 .len = len,
3335 };
3336
3337 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3338 r = __kvm_io_bus_read(vcpu, bus, &range, val);
3339 return r < 0 ? r : 0;
3340 }
3341
3342
3343 /* Caller must hold slots_lock. */
3344 int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3345 int len, struct kvm_io_device *dev)
3346 {
3347 struct kvm_io_bus *new_bus, *bus;
3348
3349 bus = kvm->buses[bus_idx];
3350 /* exclude ioeventfd which is limited by maximum fd */
3351 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
3352 return -ENOSPC;
3353
3354 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count + 1) *
3355 sizeof(struct kvm_io_range)), GFP_KERNEL);
3356 if (!new_bus)
3357 return -ENOMEM;
3358 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
3359 sizeof(struct kvm_io_range)));
3360 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
3361 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3362 synchronize_srcu_expedited(&kvm->srcu);
3363 kfree(bus);
3364
3365 return 0;
3366 }
3367
3368 /* Caller must hold slots_lock. */
3369 int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3370 struct kvm_io_device *dev)
3371 {
3372 int i, r;
3373 struct kvm_io_bus *new_bus, *bus;
3374
3375 bus = kvm->buses[bus_idx];
3376 r = -ENOENT;
3377 for (i = 0; i < bus->dev_count; i++)
3378 if (bus->range[i].dev == dev) {
3379 r = 0;
3380 break;
3381 }
3382
3383 if (r)
3384 return r;
3385
3386 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count - 1) *
3387 sizeof(struct kvm_io_range)), GFP_KERNEL);
3388 if (!new_bus)
3389 return -ENOMEM;
3390
3391 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3392 new_bus->dev_count--;
3393 memcpy(new_bus->range + i, bus->range + i + 1,
3394 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
3395
3396 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3397 synchronize_srcu_expedited(&kvm->srcu);
3398 kfree(bus);
3399 return r;
3400 }
3401
3402 static struct notifier_block kvm_cpu_notifier = {
3403 .notifier_call = kvm_cpu_hotplug,
3404 };
3405
3406 static int vm_stat_get(void *_offset, u64 *val)
3407 {
3408 unsigned offset = (long)_offset;
3409 struct kvm *kvm;
3410
3411 *val = 0;
3412 spin_lock(&kvm_lock);
3413 list_for_each_entry(kvm, &vm_list, vm_list)
3414 *val += *(u32 *)((void *)kvm + offset);
3415 spin_unlock(&kvm_lock);
3416 return 0;
3417 }
3418
3419 DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
3420
3421 static int vcpu_stat_get(void *_offset, u64 *val)
3422 {
3423 unsigned offset = (long)_offset;
3424 struct kvm *kvm;
3425 struct kvm_vcpu *vcpu;
3426 int i;
3427
3428 *val = 0;
3429 spin_lock(&kvm_lock);
3430 list_for_each_entry(kvm, &vm_list, vm_list)
3431 kvm_for_each_vcpu(i, vcpu, kvm)
3432 *val += *(u32 *)((void *)vcpu + offset);
3433
3434 spin_unlock(&kvm_lock);
3435 return 0;
3436 }
3437
3438 DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
3439
3440 static const struct file_operations *stat_fops[] = {
3441 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3442 [KVM_STAT_VM] = &vm_stat_fops,
3443 };
3444
3445 static int kvm_init_debug(void)
3446 {
3447 int r = -EEXIST;
3448 struct kvm_stats_debugfs_item *p;
3449
3450 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
3451 if (kvm_debugfs_dir == NULL)
3452 goto out;
3453
3454 for (p = debugfs_entries; p->name; ++p) {
3455 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
3456 (void *)(long)p->offset,
3457 stat_fops[p->kind]);
3458 if (p->dentry == NULL)
3459 goto out_dir;
3460 }
3461
3462 return 0;
3463
3464 out_dir:
3465 debugfs_remove_recursive(kvm_debugfs_dir);
3466 out:
3467 return r;
3468 }
3469
3470 static void kvm_exit_debug(void)
3471 {
3472 struct kvm_stats_debugfs_item *p;
3473
3474 for (p = debugfs_entries; p->name; ++p)
3475 debugfs_remove(p->dentry);
3476 debugfs_remove(kvm_debugfs_dir);
3477 }
3478
3479 static int kvm_suspend(void)
3480 {
3481 if (kvm_usage_count)
3482 hardware_disable_nolock(NULL);
3483 return 0;
3484 }
3485
3486 static void kvm_resume(void)
3487 {
3488 if (kvm_usage_count) {
3489 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
3490 hardware_enable_nolock(NULL);
3491 }
3492 }
3493
3494 static struct syscore_ops kvm_syscore_ops = {
3495 .suspend = kvm_suspend,
3496 .resume = kvm_resume,
3497 };
3498
3499 static inline
3500 struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3501 {
3502 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3503 }
3504
3505 static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3506 {
3507 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3508
3509 if (vcpu->preempted)
3510 vcpu->preempted = false;
3511
3512 kvm_arch_sched_in(vcpu, cpu);
3513
3514 kvm_arch_vcpu_load(vcpu, cpu);
3515 }
3516
3517 static void kvm_sched_out(struct preempt_notifier *pn,
3518 struct task_struct *next)
3519 {
3520 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3521
3522 if (current->state == TASK_RUNNING)
3523 vcpu->preempted = true;
3524 kvm_arch_vcpu_put(vcpu);
3525 }
3526
3527 int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
3528 struct module *module)
3529 {
3530 int r;
3531 int cpu;
3532
3533 r = kvm_arch_init(opaque);
3534 if (r)
3535 goto out_fail;
3536
3537 /*
3538 * kvm_arch_init makes sure there's at most one caller
3539 * for architectures that support multiple implementations,
3540 * like intel and amd on x86.
3541 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3542 * conflicts in case kvm is already setup for another implementation.
3543 */
3544 r = kvm_irqfd_init();
3545 if (r)
3546 goto out_irqfd;
3547
3548 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
3549 r = -ENOMEM;
3550 goto out_free_0;
3551 }
3552
3553 r = kvm_arch_hardware_setup();
3554 if (r < 0)
3555 goto out_free_0a;
3556
3557 for_each_online_cpu(cpu) {
3558 smp_call_function_single(cpu,
3559 kvm_arch_check_processor_compat,
3560 &r, 1);
3561 if (r < 0)
3562 goto out_free_1;
3563 }
3564
3565 r = register_cpu_notifier(&kvm_cpu_notifier);
3566 if (r)
3567 goto out_free_2;
3568 register_reboot_notifier(&kvm_reboot_notifier);
3569
3570 /* A kmem cache lets us meet the alignment requirements of fx_save. */
3571 if (!vcpu_align)
3572 vcpu_align = __alignof__(struct kvm_vcpu);
3573 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
3574 0, NULL);
3575 if (!kvm_vcpu_cache) {
3576 r = -ENOMEM;
3577 goto out_free_3;
3578 }
3579
3580 r = kvm_async_pf_init();
3581 if (r)
3582 goto out_free;
3583
3584 kvm_chardev_ops.owner = module;
3585 kvm_vm_fops.owner = module;
3586 kvm_vcpu_fops.owner = module;
3587
3588 r = misc_register(&kvm_dev);
3589 if (r) {
3590 pr_err("kvm: misc device register failed\n");
3591 goto out_unreg;
3592 }
3593
3594 register_syscore_ops(&kvm_syscore_ops);
3595
3596 kvm_preempt_ops.sched_in = kvm_sched_in;
3597 kvm_preempt_ops.sched_out = kvm_sched_out;
3598
3599 r = kvm_init_debug();
3600 if (r) {
3601 pr_err("kvm: create debugfs files failed\n");
3602 goto out_undebugfs;
3603 }
3604
3605 r = kvm_vfio_ops_init();
3606 WARN_ON(r);
3607
3608 return 0;
3609
3610 out_undebugfs:
3611 unregister_syscore_ops(&kvm_syscore_ops);
3612 misc_deregister(&kvm_dev);
3613 out_unreg:
3614 kvm_async_pf_deinit();
3615 out_free:
3616 kmem_cache_destroy(kvm_vcpu_cache);
3617 out_free_3:
3618 unregister_reboot_notifier(&kvm_reboot_notifier);
3619 unregister_cpu_notifier(&kvm_cpu_notifier);
3620 out_free_2:
3621 out_free_1:
3622 kvm_arch_hardware_unsetup();
3623 out_free_0a:
3624 free_cpumask_var(cpus_hardware_enabled);
3625 out_free_0:
3626 kvm_irqfd_exit();
3627 out_irqfd:
3628 kvm_arch_exit();
3629 out_fail:
3630 return r;
3631 }
3632 EXPORT_SYMBOL_GPL(kvm_init);
3633
3634 void kvm_exit(void)
3635 {
3636 kvm_exit_debug();
3637 misc_deregister(&kvm_dev);
3638 kmem_cache_destroy(kvm_vcpu_cache);
3639 kvm_async_pf_deinit();
3640 unregister_syscore_ops(&kvm_syscore_ops);
3641 unregister_reboot_notifier(&kvm_reboot_notifier);
3642 unregister_cpu_notifier(&kvm_cpu_notifier);
3643 on_each_cpu(hardware_disable_nolock, NULL, 1);
3644 kvm_arch_hardware_unsetup();
3645 kvm_arch_exit();
3646 kvm_irqfd_exit();
3647 free_cpumask_var(cpus_hardware_enabled);
3648 kvm_vfio_ops_exit();
3649 }
3650 EXPORT_SYMBOL_GPL(kvm_exit);