2 * Kernel-based Virtual Machine driver for Linux
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
7 * Copyright (C) 2006 Qumranet, Inc.
10 * Avi Kivity <avi@qumranet.com>
11 * Yaniv Kamay <yaniv@qumranet.com>
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
20 #include <linux/kvm_host.h>
21 #include <linux/kvm.h>
22 #include <linux/module.h>
23 #include <linux/errno.h>
24 #include <linux/percpu.h>
25 #include <linux/gfp.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/sysdev.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>
48 #include <asm/processor.h>
50 #include <asm/uaccess.h>
51 #include <asm/pgtable.h>
52 #include <asm-generic/bitops/le.h>
54 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
55 #include "coalesced_mmio.h"
58 #define CREATE_TRACE_POINTS
59 #include <trace/events/kvm.h>
61 MODULE_AUTHOR("Qumranet");
62 MODULE_LICENSE("GPL");
67 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
70 DEFINE_SPINLOCK(kvm_lock
);
73 static cpumask_var_t cpus_hardware_enabled
;
74 static int kvm_usage_count
= 0;
75 static atomic_t hardware_enable_failed
;
77 struct kmem_cache
*kvm_vcpu_cache
;
78 EXPORT_SYMBOL_GPL(kvm_vcpu_cache
);
80 static __read_mostly
struct preempt_ops kvm_preempt_ops
;
82 struct dentry
*kvm_debugfs_dir
;
84 static long kvm_vcpu_ioctl(struct file
*file
, unsigned int ioctl
,
86 static int hardware_enable_all(void);
87 static void hardware_disable_all(void);
89 static bool kvm_rebooting
;
91 static bool largepages_enabled
= true;
93 inline int kvm_is_mmio_pfn(pfn_t pfn
)
96 struct page
*page
= compound_head(pfn_to_page(pfn
));
97 return PageReserved(page
);
104 * Switches to specified vcpu, until a matching vcpu_put()
106 void vcpu_load(struct kvm_vcpu
*vcpu
)
110 mutex_lock(&vcpu
->mutex
);
112 preempt_notifier_register(&vcpu
->preempt_notifier
);
113 kvm_arch_vcpu_load(vcpu
, cpu
);
117 void vcpu_put(struct kvm_vcpu
*vcpu
)
120 kvm_arch_vcpu_put(vcpu
);
121 preempt_notifier_unregister(&vcpu
->preempt_notifier
);
123 mutex_unlock(&vcpu
->mutex
);
126 static void ack_flush(void *_completed
)
130 static bool make_all_cpus_request(struct kvm
*kvm
, unsigned int req
)
135 struct kvm_vcpu
*vcpu
;
137 zalloc_cpumask_var(&cpus
, GFP_ATOMIC
);
139 spin_lock(&kvm
->requests_lock
);
140 me
= smp_processor_id();
141 kvm_for_each_vcpu(i
, vcpu
, kvm
) {
142 if (test_and_set_bit(req
, &vcpu
->requests
))
145 if (cpus
!= NULL
&& cpu
!= -1 && cpu
!= me
)
146 cpumask_set_cpu(cpu
, cpus
);
148 if (unlikely(cpus
== NULL
))
149 smp_call_function_many(cpu_online_mask
, ack_flush
, NULL
, 1);
150 else if (!cpumask_empty(cpus
))
151 smp_call_function_many(cpus
, ack_flush
, NULL
, 1);
154 spin_unlock(&kvm
->requests_lock
);
155 free_cpumask_var(cpus
);
159 void kvm_flush_remote_tlbs(struct kvm
*kvm
)
161 if (make_all_cpus_request(kvm
, KVM_REQ_TLB_FLUSH
))
162 ++kvm
->stat
.remote_tlb_flush
;
165 void kvm_reload_remote_mmus(struct kvm
*kvm
)
167 make_all_cpus_request(kvm
, KVM_REQ_MMU_RELOAD
);
170 int kvm_vcpu_init(struct kvm_vcpu
*vcpu
, struct kvm
*kvm
, unsigned id
)
175 mutex_init(&vcpu
->mutex
);
179 init_waitqueue_head(&vcpu
->wq
);
181 page
= alloc_page(GFP_KERNEL
| __GFP_ZERO
);
186 vcpu
->run
= page_address(page
);
188 r
= kvm_arch_vcpu_init(vcpu
);
194 free_page((unsigned long)vcpu
->run
);
198 EXPORT_SYMBOL_GPL(kvm_vcpu_init
);
200 void kvm_vcpu_uninit(struct kvm_vcpu
*vcpu
)
202 kvm_arch_vcpu_uninit(vcpu
);
203 free_page((unsigned long)vcpu
->run
);
205 EXPORT_SYMBOL_GPL(kvm_vcpu_uninit
);
207 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
208 static inline struct kvm
*mmu_notifier_to_kvm(struct mmu_notifier
*mn
)
210 return container_of(mn
, struct kvm
, mmu_notifier
);
213 static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier
*mn
,
214 struct mm_struct
*mm
,
215 unsigned long address
)
217 struct kvm
*kvm
= mmu_notifier_to_kvm(mn
);
221 * When ->invalidate_page runs, the linux pte has been zapped
222 * already but the page is still allocated until
223 * ->invalidate_page returns. So if we increase the sequence
224 * here the kvm page fault will notice if the spte can't be
225 * established because the page is going to be freed. If
226 * instead the kvm page fault establishes the spte before
227 * ->invalidate_page runs, kvm_unmap_hva will release it
230 * The sequence increase only need to be seen at spin_unlock
231 * time, and not at spin_lock time.
233 * Increasing the sequence after the spin_unlock would be
234 * unsafe because the kvm page fault could then establish the
235 * pte after kvm_unmap_hva returned, without noticing the page
236 * is going to be freed.
238 spin_lock(&kvm
->mmu_lock
);
239 kvm
->mmu_notifier_seq
++;
240 need_tlb_flush
= kvm_unmap_hva(kvm
, address
);
241 spin_unlock(&kvm
->mmu_lock
);
243 /* we've to flush the tlb before the pages can be freed */
245 kvm_flush_remote_tlbs(kvm
);
249 static void kvm_mmu_notifier_change_pte(struct mmu_notifier
*mn
,
250 struct mm_struct
*mm
,
251 unsigned long address
,
254 struct kvm
*kvm
= mmu_notifier_to_kvm(mn
);
256 spin_lock(&kvm
->mmu_lock
);
257 kvm
->mmu_notifier_seq
++;
258 kvm_set_spte_hva(kvm
, address
, pte
);
259 spin_unlock(&kvm
->mmu_lock
);
262 static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier
*mn
,
263 struct mm_struct
*mm
,
267 struct kvm
*kvm
= mmu_notifier_to_kvm(mn
);
268 int need_tlb_flush
= 0;
270 spin_lock(&kvm
->mmu_lock
);
272 * The count increase must become visible at unlock time as no
273 * spte can be established without taking the mmu_lock and
274 * count is also read inside the mmu_lock critical section.
276 kvm
->mmu_notifier_count
++;
277 for (; start
< end
; start
+= PAGE_SIZE
)
278 need_tlb_flush
|= kvm_unmap_hva(kvm
, start
);
279 spin_unlock(&kvm
->mmu_lock
);
281 /* we've to flush the tlb before the pages can be freed */
283 kvm_flush_remote_tlbs(kvm
);
286 static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier
*mn
,
287 struct mm_struct
*mm
,
291 struct kvm
*kvm
= mmu_notifier_to_kvm(mn
);
293 spin_lock(&kvm
->mmu_lock
);
295 * This sequence increase will notify the kvm page fault that
296 * the page that is going to be mapped in the spte could have
299 kvm
->mmu_notifier_seq
++;
301 * The above sequence increase must be visible before the
302 * below count decrease but both values are read by the kvm
303 * page fault under mmu_lock spinlock so we don't need to add
304 * a smb_wmb() here in between the two.
306 kvm
->mmu_notifier_count
--;
307 spin_unlock(&kvm
->mmu_lock
);
309 BUG_ON(kvm
->mmu_notifier_count
< 0);
312 static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier
*mn
,
313 struct mm_struct
*mm
,
314 unsigned long address
)
316 struct kvm
*kvm
= mmu_notifier_to_kvm(mn
);
319 spin_lock(&kvm
->mmu_lock
);
320 young
= kvm_age_hva(kvm
, address
);
321 spin_unlock(&kvm
->mmu_lock
);
324 kvm_flush_remote_tlbs(kvm
);
329 static void kvm_mmu_notifier_release(struct mmu_notifier
*mn
,
330 struct mm_struct
*mm
)
332 struct kvm
*kvm
= mmu_notifier_to_kvm(mn
);
333 kvm_arch_flush_shadow(kvm
);
336 static const struct mmu_notifier_ops kvm_mmu_notifier_ops
= {
337 .invalidate_page
= kvm_mmu_notifier_invalidate_page
,
338 .invalidate_range_start
= kvm_mmu_notifier_invalidate_range_start
,
339 .invalidate_range_end
= kvm_mmu_notifier_invalidate_range_end
,
340 .clear_flush_young
= kvm_mmu_notifier_clear_flush_young
,
341 .change_pte
= kvm_mmu_notifier_change_pte
,
342 .release
= kvm_mmu_notifier_release
,
344 #endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
346 static struct kvm
*kvm_create_vm(void)
349 struct kvm
*kvm
= kvm_arch_create_vm();
350 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
357 r
= hardware_enable_all();
359 goto out_err_nodisable
;
361 #ifdef CONFIG_HAVE_KVM_IRQCHIP
362 INIT_HLIST_HEAD(&kvm
->mask_notifier_list
);
363 INIT_HLIST_HEAD(&kvm
->irq_ack_notifier_list
);
366 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
367 page
= alloc_page(GFP_KERNEL
| __GFP_ZERO
);
372 kvm
->coalesced_mmio_ring
=
373 (struct kvm_coalesced_mmio_ring
*)page_address(page
);
376 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
378 kvm
->mmu_notifier
.ops
= &kvm_mmu_notifier_ops
;
379 r
= mmu_notifier_register(&kvm
->mmu_notifier
, current
->mm
);
381 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
389 kvm
->mm
= current
->mm
;
390 atomic_inc(&kvm
->mm
->mm_count
);
391 spin_lock_init(&kvm
->mmu_lock
);
392 spin_lock_init(&kvm
->requests_lock
);
393 kvm_io_bus_init(&kvm
->pio_bus
);
394 kvm_eventfd_init(kvm
);
395 mutex_init(&kvm
->lock
);
396 mutex_init(&kvm
->irq_lock
);
397 kvm_io_bus_init(&kvm
->mmio_bus
);
398 init_rwsem(&kvm
->slots_lock
);
399 atomic_set(&kvm
->users_count
, 1);
400 spin_lock(&kvm_lock
);
401 list_add(&kvm
->vm_list
, &vm_list
);
402 spin_unlock(&kvm_lock
);
403 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
404 kvm_coalesced_mmio_init(kvm
);
409 #if defined(KVM_COALESCED_MMIO_PAGE_OFFSET) || \
410 (defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER))
412 hardware_disable_all();
420 * Free any memory in @free but not in @dont.
422 static void kvm_free_physmem_slot(struct kvm_memory_slot
*free
,
423 struct kvm_memory_slot
*dont
)
427 if (!dont
|| free
->rmap
!= dont
->rmap
)
430 if (!dont
|| free
->dirty_bitmap
!= dont
->dirty_bitmap
)
431 vfree(free
->dirty_bitmap
);
434 for (i
= 0; i
< KVM_NR_PAGE_SIZES
- 1; ++i
) {
435 if (!dont
|| free
->lpage_info
[i
] != dont
->lpage_info
[i
]) {
436 vfree(free
->lpage_info
[i
]);
437 free
->lpage_info
[i
] = NULL
;
442 free
->dirty_bitmap
= NULL
;
446 void kvm_free_physmem(struct kvm
*kvm
)
450 for (i
= 0; i
< kvm
->nmemslots
; ++i
)
451 kvm_free_physmem_slot(&kvm
->memslots
[i
], NULL
);
454 static void kvm_destroy_vm(struct kvm
*kvm
)
456 struct mm_struct
*mm
= kvm
->mm
;
458 kvm_arch_sync_events(kvm
);
459 spin_lock(&kvm_lock
);
460 list_del(&kvm
->vm_list
);
461 spin_unlock(&kvm_lock
);
462 kvm_free_irq_routing(kvm
);
463 kvm_io_bus_destroy(&kvm
->pio_bus
);
464 kvm_io_bus_destroy(&kvm
->mmio_bus
);
465 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
466 if (kvm
->coalesced_mmio_ring
!= NULL
)
467 free_page((unsigned long)kvm
->coalesced_mmio_ring
);
469 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
470 mmu_notifier_unregister(&kvm
->mmu_notifier
, kvm
->mm
);
472 kvm_arch_flush_shadow(kvm
);
474 kvm_arch_destroy_vm(kvm
);
475 hardware_disable_all();
479 void kvm_get_kvm(struct kvm
*kvm
)
481 atomic_inc(&kvm
->users_count
);
483 EXPORT_SYMBOL_GPL(kvm_get_kvm
);
485 void kvm_put_kvm(struct kvm
*kvm
)
487 if (atomic_dec_and_test(&kvm
->users_count
))
490 EXPORT_SYMBOL_GPL(kvm_put_kvm
);
493 static int kvm_vm_release(struct inode
*inode
, struct file
*filp
)
495 struct kvm
*kvm
= filp
->private_data
;
497 kvm_irqfd_release(kvm
);
504 * Allocate some memory and give it an address in the guest physical address
507 * Discontiguous memory is allowed, mostly for framebuffers.
509 * Must be called holding mmap_sem for write.
511 int __kvm_set_memory_region(struct kvm
*kvm
,
512 struct kvm_userspace_memory_region
*mem
,
517 unsigned long npages
;
519 struct kvm_memory_slot
*memslot
;
520 struct kvm_memory_slot old
, new;
523 /* General sanity checks */
524 if (mem
->memory_size
& (PAGE_SIZE
- 1))
526 if (mem
->guest_phys_addr
& (PAGE_SIZE
- 1))
528 if (user_alloc
&& (mem
->userspace_addr
& (PAGE_SIZE
- 1)))
530 if (mem
->slot
>= KVM_MEMORY_SLOTS
+ KVM_PRIVATE_MEM_SLOTS
)
532 if (mem
->guest_phys_addr
+ mem
->memory_size
< mem
->guest_phys_addr
)
535 memslot
= &kvm
->memslots
[mem
->slot
];
536 base_gfn
= mem
->guest_phys_addr
>> PAGE_SHIFT
;
537 npages
= mem
->memory_size
>> PAGE_SHIFT
;
540 mem
->flags
&= ~KVM_MEM_LOG_DIRTY_PAGES
;
542 new = old
= *memslot
;
544 new.base_gfn
= base_gfn
;
546 new.flags
= mem
->flags
;
548 /* Disallow changing a memory slot's size. */
550 if (npages
&& old
.npages
&& npages
!= old
.npages
)
553 /* Check for overlaps */
555 for (i
= 0; i
< KVM_MEMORY_SLOTS
; ++i
) {
556 struct kvm_memory_slot
*s
= &kvm
->memslots
[i
];
558 if (s
== memslot
|| !s
->npages
)
560 if (!((base_gfn
+ npages
<= s
->base_gfn
) ||
561 (base_gfn
>= s
->base_gfn
+ s
->npages
)))
565 /* Free page dirty bitmap if unneeded */
566 if (!(new.flags
& KVM_MEM_LOG_DIRTY_PAGES
))
567 new.dirty_bitmap
= NULL
;
571 /* Allocate if a slot is being created */
573 if (npages
&& !new.rmap
) {
574 new.rmap
= vmalloc(npages
* sizeof(struct page
*));
579 memset(new.rmap
, 0, npages
* sizeof(*new.rmap
));
581 new.user_alloc
= user_alloc
;
583 * hva_to_rmmap() serialzies with the mmu_lock and to be
584 * safe it has to ignore memslots with !user_alloc &&
588 new.userspace_addr
= mem
->userspace_addr
;
590 new.userspace_addr
= 0;
595 for (i
= 0; i
< KVM_NR_PAGE_SIZES
- 1; ++i
) {
601 /* Avoid unused variable warning if no large pages */
604 if (new.lpage_info
[i
])
607 lpages
= 1 + (base_gfn
+ npages
- 1) /
608 KVM_PAGES_PER_HPAGE(level
);
609 lpages
-= base_gfn
/ KVM_PAGES_PER_HPAGE(level
);
611 new.lpage_info
[i
] = vmalloc(lpages
* sizeof(*new.lpage_info
[i
]));
613 if (!new.lpage_info
[i
])
616 memset(new.lpage_info
[i
], 0,
617 lpages
* sizeof(*new.lpage_info
[i
]));
619 if (base_gfn
% KVM_PAGES_PER_HPAGE(level
))
620 new.lpage_info
[i
][0].write_count
= 1;
621 if ((base_gfn
+npages
) % KVM_PAGES_PER_HPAGE(level
))
622 new.lpage_info
[i
][lpages
- 1].write_count
= 1;
623 ugfn
= new.userspace_addr
>> PAGE_SHIFT
;
625 * If the gfn and userspace address are not aligned wrt each
626 * other, or if explicitly asked to, disable large page
627 * support for this slot
629 if ((base_gfn
^ ugfn
) & (KVM_PAGES_PER_HPAGE(level
) - 1) ||
631 for (j
= 0; j
< lpages
; ++j
)
632 new.lpage_info
[i
][j
].write_count
= 1;
637 /* Allocate page dirty bitmap if needed */
638 if ((new.flags
& KVM_MEM_LOG_DIRTY_PAGES
) && !new.dirty_bitmap
) {
639 unsigned dirty_bytes
= ALIGN(npages
, BITS_PER_LONG
) / 8;
641 new.dirty_bitmap
= vmalloc(dirty_bytes
);
642 if (!new.dirty_bitmap
)
644 memset(new.dirty_bitmap
, 0, dirty_bytes
);
646 kvm_arch_flush_shadow(kvm
);
648 #else /* not defined CONFIG_S390 */
649 new.user_alloc
= user_alloc
;
651 new.userspace_addr
= mem
->userspace_addr
;
652 #endif /* not defined CONFIG_S390 */
655 kvm_arch_flush_shadow(kvm
);
657 spin_lock(&kvm
->mmu_lock
);
658 if (mem
->slot
>= kvm
->nmemslots
)
659 kvm
->nmemslots
= mem
->slot
+ 1;
662 spin_unlock(&kvm
->mmu_lock
);
664 r
= kvm_arch_set_memory_region(kvm
, mem
, old
, user_alloc
);
666 spin_lock(&kvm
->mmu_lock
);
668 spin_unlock(&kvm
->mmu_lock
);
672 kvm_free_physmem_slot(&old
, npages
? &new : NULL
);
673 /* Slot deletion case: we have to update the current slot */
674 spin_lock(&kvm
->mmu_lock
);
677 spin_unlock(&kvm
->mmu_lock
);
679 /* map the pages in iommu page table */
680 r
= kvm_iommu_map_pages(kvm
, base_gfn
, npages
);
687 kvm_free_physmem_slot(&new, &old
);
692 EXPORT_SYMBOL_GPL(__kvm_set_memory_region
);
694 int kvm_set_memory_region(struct kvm
*kvm
,
695 struct kvm_userspace_memory_region
*mem
,
700 down_write(&kvm
->slots_lock
);
701 r
= __kvm_set_memory_region(kvm
, mem
, user_alloc
);
702 up_write(&kvm
->slots_lock
);
705 EXPORT_SYMBOL_GPL(kvm_set_memory_region
);
707 int kvm_vm_ioctl_set_memory_region(struct kvm
*kvm
,
709 kvm_userspace_memory_region
*mem
,
712 if (mem
->slot
>= KVM_MEMORY_SLOTS
)
714 return kvm_set_memory_region(kvm
, mem
, user_alloc
);
717 int kvm_get_dirty_log(struct kvm
*kvm
,
718 struct kvm_dirty_log
*log
, int *is_dirty
)
720 struct kvm_memory_slot
*memslot
;
723 unsigned long any
= 0;
726 if (log
->slot
>= KVM_MEMORY_SLOTS
)
729 memslot
= &kvm
->memslots
[log
->slot
];
731 if (!memslot
->dirty_bitmap
)
734 n
= ALIGN(memslot
->npages
, BITS_PER_LONG
) / 8;
736 for (i
= 0; !any
&& i
< n
/sizeof(long); ++i
)
737 any
= memslot
->dirty_bitmap
[i
];
740 if (copy_to_user(log
->dirty_bitmap
, memslot
->dirty_bitmap
, n
))
751 void kvm_disable_largepages(void)
753 largepages_enabled
= false;
755 EXPORT_SYMBOL_GPL(kvm_disable_largepages
);
757 int is_error_page(struct page
*page
)
759 return page
== bad_page
;
761 EXPORT_SYMBOL_GPL(is_error_page
);
763 int is_error_pfn(pfn_t pfn
)
765 return pfn
== bad_pfn
;
767 EXPORT_SYMBOL_GPL(is_error_pfn
);
769 static inline unsigned long bad_hva(void)
774 int kvm_is_error_hva(unsigned long addr
)
776 return addr
== bad_hva();
778 EXPORT_SYMBOL_GPL(kvm_is_error_hva
);
780 struct kvm_memory_slot
*gfn_to_memslot_unaliased(struct kvm
*kvm
, gfn_t gfn
)
784 for (i
= 0; i
< kvm
->nmemslots
; ++i
) {
785 struct kvm_memory_slot
*memslot
= &kvm
->memslots
[i
];
787 if (gfn
>= memslot
->base_gfn
788 && gfn
< memslot
->base_gfn
+ memslot
->npages
)
793 EXPORT_SYMBOL_GPL(gfn_to_memslot_unaliased
);
795 struct kvm_memory_slot
*gfn_to_memslot(struct kvm
*kvm
, gfn_t gfn
)
797 gfn
= unalias_gfn(kvm
, gfn
);
798 return gfn_to_memslot_unaliased(kvm
, gfn
);
801 int kvm_is_visible_gfn(struct kvm
*kvm
, gfn_t gfn
)
805 gfn
= unalias_gfn(kvm
, gfn
);
806 for (i
= 0; i
< KVM_MEMORY_SLOTS
; ++i
) {
807 struct kvm_memory_slot
*memslot
= &kvm
->memslots
[i
];
809 if (gfn
>= memslot
->base_gfn
810 && gfn
< memslot
->base_gfn
+ memslot
->npages
)
815 EXPORT_SYMBOL_GPL(kvm_is_visible_gfn
);
817 unsigned long gfn_to_hva(struct kvm
*kvm
, gfn_t gfn
)
819 struct kvm_memory_slot
*slot
;
821 gfn
= unalias_gfn(kvm
, gfn
);
822 slot
= gfn_to_memslot_unaliased(kvm
, gfn
);
825 return (slot
->userspace_addr
+ (gfn
- slot
->base_gfn
) * PAGE_SIZE
);
827 EXPORT_SYMBOL_GPL(gfn_to_hva
);
829 pfn_t
gfn_to_pfn(struct kvm
*kvm
, gfn_t gfn
)
831 struct page
*page
[1];
838 addr
= gfn_to_hva(kvm
, gfn
);
839 if (kvm_is_error_hva(addr
)) {
841 return page_to_pfn(bad_page
);
844 npages
= get_user_pages_fast(addr
, 1, 1, page
);
846 if (unlikely(npages
!= 1)) {
847 struct vm_area_struct
*vma
;
849 down_read(¤t
->mm
->mmap_sem
);
850 vma
= find_vma(current
->mm
, addr
);
852 if (vma
== NULL
|| addr
< vma
->vm_start
||
853 !(vma
->vm_flags
& VM_PFNMAP
)) {
854 up_read(¤t
->mm
->mmap_sem
);
856 return page_to_pfn(bad_page
);
859 pfn
= ((addr
- vma
->vm_start
) >> PAGE_SHIFT
) + vma
->vm_pgoff
;
860 up_read(¤t
->mm
->mmap_sem
);
861 BUG_ON(!kvm_is_mmio_pfn(pfn
));
863 pfn
= page_to_pfn(page
[0]);
868 EXPORT_SYMBOL_GPL(gfn_to_pfn
);
870 struct page
*gfn_to_page(struct kvm
*kvm
, gfn_t gfn
)
874 pfn
= gfn_to_pfn(kvm
, gfn
);
875 if (!kvm_is_mmio_pfn(pfn
))
876 return pfn_to_page(pfn
);
878 WARN_ON(kvm_is_mmio_pfn(pfn
));
884 EXPORT_SYMBOL_GPL(gfn_to_page
);
886 void kvm_release_page_clean(struct page
*page
)
888 kvm_release_pfn_clean(page_to_pfn(page
));
890 EXPORT_SYMBOL_GPL(kvm_release_page_clean
);
892 void kvm_release_pfn_clean(pfn_t pfn
)
894 if (!kvm_is_mmio_pfn(pfn
))
895 put_page(pfn_to_page(pfn
));
897 EXPORT_SYMBOL_GPL(kvm_release_pfn_clean
);
899 void kvm_release_page_dirty(struct page
*page
)
901 kvm_release_pfn_dirty(page_to_pfn(page
));
903 EXPORT_SYMBOL_GPL(kvm_release_page_dirty
);
905 void kvm_release_pfn_dirty(pfn_t pfn
)
907 kvm_set_pfn_dirty(pfn
);
908 kvm_release_pfn_clean(pfn
);
910 EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty
);
912 void kvm_set_page_dirty(struct page
*page
)
914 kvm_set_pfn_dirty(page_to_pfn(page
));
916 EXPORT_SYMBOL_GPL(kvm_set_page_dirty
);
918 void kvm_set_pfn_dirty(pfn_t pfn
)
920 if (!kvm_is_mmio_pfn(pfn
)) {
921 struct page
*page
= pfn_to_page(pfn
);
922 if (!PageReserved(page
))
926 EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty
);
928 void kvm_set_pfn_accessed(pfn_t pfn
)
930 if (!kvm_is_mmio_pfn(pfn
))
931 mark_page_accessed(pfn_to_page(pfn
));
933 EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed
);
935 void kvm_get_pfn(pfn_t pfn
)
937 if (!kvm_is_mmio_pfn(pfn
))
938 get_page(pfn_to_page(pfn
));
940 EXPORT_SYMBOL_GPL(kvm_get_pfn
);
942 static int next_segment(unsigned long len
, int offset
)
944 if (len
> PAGE_SIZE
- offset
)
945 return PAGE_SIZE
- offset
;
950 int kvm_read_guest_page(struct kvm
*kvm
, gfn_t gfn
, void *data
, int offset
,
956 addr
= gfn_to_hva(kvm
, gfn
);
957 if (kvm_is_error_hva(addr
))
959 r
= copy_from_user(data
, (void __user
*)addr
+ offset
, len
);
964 EXPORT_SYMBOL_GPL(kvm_read_guest_page
);
966 int kvm_read_guest(struct kvm
*kvm
, gpa_t gpa
, void *data
, unsigned long len
)
968 gfn_t gfn
= gpa
>> PAGE_SHIFT
;
970 int offset
= offset_in_page(gpa
);
973 while ((seg
= next_segment(len
, offset
)) != 0) {
974 ret
= kvm_read_guest_page(kvm
, gfn
, data
, offset
, seg
);
984 EXPORT_SYMBOL_GPL(kvm_read_guest
);
986 int kvm_read_guest_atomic(struct kvm
*kvm
, gpa_t gpa
, void *data
,
991 gfn_t gfn
= gpa
>> PAGE_SHIFT
;
992 int offset
= offset_in_page(gpa
);
994 addr
= gfn_to_hva(kvm
, gfn
);
995 if (kvm_is_error_hva(addr
))
998 r
= __copy_from_user_inatomic(data
, (void __user
*)addr
+ offset
, len
);
1004 EXPORT_SYMBOL(kvm_read_guest_atomic
);
1006 int kvm_write_guest_page(struct kvm
*kvm
, gfn_t gfn
, const void *data
,
1007 int offset
, int len
)
1012 addr
= gfn_to_hva(kvm
, gfn
);
1013 if (kvm_is_error_hva(addr
))
1015 r
= copy_to_user((void __user
*)addr
+ offset
, data
, len
);
1018 mark_page_dirty(kvm
, gfn
);
1021 EXPORT_SYMBOL_GPL(kvm_write_guest_page
);
1023 int kvm_write_guest(struct kvm
*kvm
, gpa_t gpa
, const void *data
,
1026 gfn_t gfn
= gpa
>> PAGE_SHIFT
;
1028 int offset
= offset_in_page(gpa
);
1031 while ((seg
= next_segment(len
, offset
)) != 0) {
1032 ret
= kvm_write_guest_page(kvm
, gfn
, data
, offset
, seg
);
1043 int kvm_clear_guest_page(struct kvm
*kvm
, gfn_t gfn
, int offset
, int len
)
1045 return kvm_write_guest_page(kvm
, gfn
, empty_zero_page
, offset
, len
);
1047 EXPORT_SYMBOL_GPL(kvm_clear_guest_page
);
1049 int kvm_clear_guest(struct kvm
*kvm
, gpa_t gpa
, unsigned long len
)
1051 gfn_t gfn
= gpa
>> PAGE_SHIFT
;
1053 int offset
= offset_in_page(gpa
);
1056 while ((seg
= next_segment(len
, offset
)) != 0) {
1057 ret
= kvm_clear_guest_page(kvm
, gfn
, offset
, seg
);
1066 EXPORT_SYMBOL_GPL(kvm_clear_guest
);
1068 void mark_page_dirty(struct kvm
*kvm
, gfn_t gfn
)
1070 struct kvm_memory_slot
*memslot
;
1072 gfn
= unalias_gfn(kvm
, gfn
);
1073 memslot
= gfn_to_memslot_unaliased(kvm
, gfn
);
1074 if (memslot
&& memslot
->dirty_bitmap
) {
1075 unsigned long rel_gfn
= gfn
- memslot
->base_gfn
;
1078 if (!generic_test_le_bit(rel_gfn
, memslot
->dirty_bitmap
))
1079 generic___set_le_bit(rel_gfn
, memslot
->dirty_bitmap
);
1084 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1086 void kvm_vcpu_block(struct kvm_vcpu
*vcpu
)
1091 prepare_to_wait(&vcpu
->wq
, &wait
, TASK_INTERRUPTIBLE
);
1093 if (kvm_arch_vcpu_runnable(vcpu
)) {
1094 set_bit(KVM_REQ_UNHALT
, &vcpu
->requests
);
1097 if (kvm_cpu_has_pending_timer(vcpu
))
1099 if (signal_pending(current
))
1105 finish_wait(&vcpu
->wq
, &wait
);
1108 void kvm_resched(struct kvm_vcpu
*vcpu
)
1110 if (!need_resched())
1114 EXPORT_SYMBOL_GPL(kvm_resched
);
1116 void kvm_vcpu_on_spin(struct kvm_vcpu
*vcpu
)
1121 prepare_to_wait(&vcpu
->wq
, &wait
, TASK_INTERRUPTIBLE
);
1123 /* Sleep for 100 us, and hope lock-holder got scheduled */
1124 expires
= ktime_add_ns(ktime_get(), 100000UL);
1125 schedule_hrtimeout(&expires
, HRTIMER_MODE_ABS
);
1127 finish_wait(&vcpu
->wq
, &wait
);
1129 EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin
);
1131 static int kvm_vcpu_fault(struct vm_area_struct
*vma
, struct vm_fault
*vmf
)
1133 struct kvm_vcpu
*vcpu
= vma
->vm_file
->private_data
;
1136 if (vmf
->pgoff
== 0)
1137 page
= virt_to_page(vcpu
->run
);
1139 else if (vmf
->pgoff
== KVM_PIO_PAGE_OFFSET
)
1140 page
= virt_to_page(vcpu
->arch
.pio_data
);
1142 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1143 else if (vmf
->pgoff
== KVM_COALESCED_MMIO_PAGE_OFFSET
)
1144 page
= virt_to_page(vcpu
->kvm
->coalesced_mmio_ring
);
1147 return VM_FAULT_SIGBUS
;
1153 static const struct vm_operations_struct kvm_vcpu_vm_ops
= {
1154 .fault
= kvm_vcpu_fault
,
1157 static int kvm_vcpu_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1159 vma
->vm_ops
= &kvm_vcpu_vm_ops
;
1163 static int kvm_vcpu_release(struct inode
*inode
, struct file
*filp
)
1165 struct kvm_vcpu
*vcpu
= filp
->private_data
;
1167 kvm_put_kvm(vcpu
->kvm
);
1171 static struct file_operations kvm_vcpu_fops
= {
1172 .release
= kvm_vcpu_release
,
1173 .unlocked_ioctl
= kvm_vcpu_ioctl
,
1174 .compat_ioctl
= kvm_vcpu_ioctl
,
1175 .mmap
= kvm_vcpu_mmap
,
1179 * Allocates an inode for the vcpu.
1181 static int create_vcpu_fd(struct kvm_vcpu
*vcpu
)
1183 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops
, vcpu
, O_RDWR
);
1187 * Creates some virtual cpus. Good luck creating more than one.
1189 static int kvm_vm_ioctl_create_vcpu(struct kvm
*kvm
, u32 id
)
1192 struct kvm_vcpu
*vcpu
, *v
;
1194 vcpu
= kvm_arch_vcpu_create(kvm
, id
);
1196 return PTR_ERR(vcpu
);
1198 preempt_notifier_init(&vcpu
->preempt_notifier
, &kvm_preempt_ops
);
1200 r
= kvm_arch_vcpu_setup(vcpu
);
1204 mutex_lock(&kvm
->lock
);
1205 if (atomic_read(&kvm
->online_vcpus
) == KVM_MAX_VCPUS
) {
1210 kvm_for_each_vcpu(r
, v
, kvm
)
1211 if (v
->vcpu_id
== id
) {
1216 BUG_ON(kvm
->vcpus
[atomic_read(&kvm
->online_vcpus
)]);
1218 /* Now it's all set up, let userspace reach it */
1220 r
= create_vcpu_fd(vcpu
);
1226 kvm
->vcpus
[atomic_read(&kvm
->online_vcpus
)] = vcpu
;
1228 atomic_inc(&kvm
->online_vcpus
);
1230 #ifdef CONFIG_KVM_APIC_ARCHITECTURE
1231 if (kvm
->bsp_vcpu_id
== id
)
1232 kvm
->bsp_vcpu
= vcpu
;
1234 mutex_unlock(&kvm
->lock
);
1238 mutex_unlock(&kvm
->lock
);
1239 kvm_arch_vcpu_destroy(vcpu
);
1243 static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu
*vcpu
, sigset_t
*sigset
)
1246 sigdelsetmask(sigset
, sigmask(SIGKILL
)|sigmask(SIGSTOP
));
1247 vcpu
->sigset_active
= 1;
1248 vcpu
->sigset
= *sigset
;
1250 vcpu
->sigset_active
= 0;
1254 static long kvm_vcpu_ioctl(struct file
*filp
,
1255 unsigned int ioctl
, unsigned long arg
)
1257 struct kvm_vcpu
*vcpu
= filp
->private_data
;
1258 void __user
*argp
= (void __user
*)arg
;
1260 struct kvm_fpu
*fpu
= NULL
;
1261 struct kvm_sregs
*kvm_sregs
= NULL
;
1263 if (vcpu
->kvm
->mm
!= current
->mm
)
1270 r
= kvm_arch_vcpu_ioctl_run(vcpu
, vcpu
->run
);
1272 case KVM_GET_REGS
: {
1273 struct kvm_regs
*kvm_regs
;
1276 kvm_regs
= kzalloc(sizeof(struct kvm_regs
), GFP_KERNEL
);
1279 r
= kvm_arch_vcpu_ioctl_get_regs(vcpu
, kvm_regs
);
1283 if (copy_to_user(argp
, kvm_regs
, sizeof(struct kvm_regs
)))
1290 case KVM_SET_REGS
: {
1291 struct kvm_regs
*kvm_regs
;
1294 kvm_regs
= kzalloc(sizeof(struct kvm_regs
), GFP_KERNEL
);
1298 if (copy_from_user(kvm_regs
, argp
, sizeof(struct kvm_regs
)))
1300 r
= kvm_arch_vcpu_ioctl_set_regs(vcpu
, kvm_regs
);
1308 case KVM_GET_SREGS
: {
1309 kvm_sregs
= kzalloc(sizeof(struct kvm_sregs
), GFP_KERNEL
);
1313 r
= kvm_arch_vcpu_ioctl_get_sregs(vcpu
, kvm_sregs
);
1317 if (copy_to_user(argp
, kvm_sregs
, sizeof(struct kvm_sregs
)))
1322 case KVM_SET_SREGS
: {
1323 kvm_sregs
= kmalloc(sizeof(struct kvm_sregs
), GFP_KERNEL
);
1328 if (copy_from_user(kvm_sregs
, argp
, sizeof(struct kvm_sregs
)))
1330 r
= kvm_arch_vcpu_ioctl_set_sregs(vcpu
, kvm_sregs
);
1336 case KVM_GET_MP_STATE
: {
1337 struct kvm_mp_state mp_state
;
1339 r
= kvm_arch_vcpu_ioctl_get_mpstate(vcpu
, &mp_state
);
1343 if (copy_to_user(argp
, &mp_state
, sizeof mp_state
))
1348 case KVM_SET_MP_STATE
: {
1349 struct kvm_mp_state mp_state
;
1352 if (copy_from_user(&mp_state
, argp
, sizeof mp_state
))
1354 r
= kvm_arch_vcpu_ioctl_set_mpstate(vcpu
, &mp_state
);
1360 case KVM_TRANSLATE
: {
1361 struct kvm_translation tr
;
1364 if (copy_from_user(&tr
, argp
, sizeof tr
))
1366 r
= kvm_arch_vcpu_ioctl_translate(vcpu
, &tr
);
1370 if (copy_to_user(argp
, &tr
, sizeof tr
))
1375 case KVM_SET_GUEST_DEBUG
: {
1376 struct kvm_guest_debug dbg
;
1379 if (copy_from_user(&dbg
, argp
, sizeof dbg
))
1381 r
= kvm_arch_vcpu_ioctl_set_guest_debug(vcpu
, &dbg
);
1387 case KVM_SET_SIGNAL_MASK
: {
1388 struct kvm_signal_mask __user
*sigmask_arg
= argp
;
1389 struct kvm_signal_mask kvm_sigmask
;
1390 sigset_t sigset
, *p
;
1395 if (copy_from_user(&kvm_sigmask
, argp
,
1396 sizeof kvm_sigmask
))
1399 if (kvm_sigmask
.len
!= sizeof sigset
)
1402 if (copy_from_user(&sigset
, sigmask_arg
->sigset
,
1407 r
= kvm_vcpu_ioctl_set_sigmask(vcpu
, &sigset
);
1411 fpu
= kzalloc(sizeof(struct kvm_fpu
), GFP_KERNEL
);
1415 r
= kvm_arch_vcpu_ioctl_get_fpu(vcpu
, fpu
);
1419 if (copy_to_user(argp
, fpu
, sizeof(struct kvm_fpu
)))
1425 fpu
= kmalloc(sizeof(struct kvm_fpu
), GFP_KERNEL
);
1430 if (copy_from_user(fpu
, argp
, sizeof(struct kvm_fpu
)))
1432 r
= kvm_arch_vcpu_ioctl_set_fpu(vcpu
, fpu
);
1439 r
= kvm_arch_vcpu_ioctl(filp
, ioctl
, arg
);
1447 static long kvm_vm_ioctl(struct file
*filp
,
1448 unsigned int ioctl
, unsigned long arg
)
1450 struct kvm
*kvm
= filp
->private_data
;
1451 void __user
*argp
= (void __user
*)arg
;
1454 if (kvm
->mm
!= current
->mm
)
1457 case KVM_CREATE_VCPU
:
1458 r
= kvm_vm_ioctl_create_vcpu(kvm
, arg
);
1462 case KVM_SET_USER_MEMORY_REGION
: {
1463 struct kvm_userspace_memory_region kvm_userspace_mem
;
1466 if (copy_from_user(&kvm_userspace_mem
, argp
,
1467 sizeof kvm_userspace_mem
))
1470 r
= kvm_vm_ioctl_set_memory_region(kvm
, &kvm_userspace_mem
, 1);
1475 case KVM_GET_DIRTY_LOG
: {
1476 struct kvm_dirty_log log
;
1479 if (copy_from_user(&log
, argp
, sizeof log
))
1481 r
= kvm_vm_ioctl_get_dirty_log(kvm
, &log
);
1486 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1487 case KVM_REGISTER_COALESCED_MMIO
: {
1488 struct kvm_coalesced_mmio_zone zone
;
1490 if (copy_from_user(&zone
, argp
, sizeof zone
))
1493 r
= kvm_vm_ioctl_register_coalesced_mmio(kvm
, &zone
);
1499 case KVM_UNREGISTER_COALESCED_MMIO
: {
1500 struct kvm_coalesced_mmio_zone zone
;
1502 if (copy_from_user(&zone
, argp
, sizeof zone
))
1505 r
= kvm_vm_ioctl_unregister_coalesced_mmio(kvm
, &zone
);
1513 struct kvm_irqfd data
;
1516 if (copy_from_user(&data
, argp
, sizeof data
))
1518 r
= kvm_irqfd(kvm
, data
.fd
, data
.gsi
, data
.flags
);
1521 case KVM_IOEVENTFD
: {
1522 struct kvm_ioeventfd data
;
1525 if (copy_from_user(&data
, argp
, sizeof data
))
1527 r
= kvm_ioeventfd(kvm
, &data
);
1530 #ifdef CONFIG_KVM_APIC_ARCHITECTURE
1531 case KVM_SET_BOOT_CPU_ID
:
1533 mutex_lock(&kvm
->lock
);
1534 if (atomic_read(&kvm
->online_vcpus
) != 0)
1537 kvm
->bsp_vcpu_id
= arg
;
1538 mutex_unlock(&kvm
->lock
);
1542 r
= kvm_arch_vm_ioctl(filp
, ioctl
, arg
);
1544 r
= kvm_vm_ioctl_assigned_device(kvm
, ioctl
, arg
);
1550 #ifdef CONFIG_COMPAT
1551 struct compat_kvm_dirty_log
{
1555 compat_uptr_t dirty_bitmap
; /* one bit per page */
1560 static long kvm_vm_compat_ioctl(struct file
*filp
,
1561 unsigned int ioctl
, unsigned long arg
)
1563 struct kvm
*kvm
= filp
->private_data
;
1566 if (kvm
->mm
!= current
->mm
)
1569 case KVM_GET_DIRTY_LOG
: {
1570 struct compat_kvm_dirty_log compat_log
;
1571 struct kvm_dirty_log log
;
1574 if (copy_from_user(&compat_log
, (void __user
*)arg
,
1575 sizeof(compat_log
)))
1577 log
.slot
= compat_log
.slot
;
1578 log
.padding1
= compat_log
.padding1
;
1579 log
.padding2
= compat_log
.padding2
;
1580 log
.dirty_bitmap
= compat_ptr(compat_log
.dirty_bitmap
);
1582 r
= kvm_vm_ioctl_get_dirty_log(kvm
, &log
);
1588 r
= kvm_vm_ioctl(filp
, ioctl
, arg
);
1596 static int kvm_vm_fault(struct vm_area_struct
*vma
, struct vm_fault
*vmf
)
1598 struct page
*page
[1];
1601 gfn_t gfn
= vmf
->pgoff
;
1602 struct kvm
*kvm
= vma
->vm_file
->private_data
;
1604 addr
= gfn_to_hva(kvm
, gfn
);
1605 if (kvm_is_error_hva(addr
))
1606 return VM_FAULT_SIGBUS
;
1608 npages
= get_user_pages(current
, current
->mm
, addr
, 1, 1, 0, page
,
1610 if (unlikely(npages
!= 1))
1611 return VM_FAULT_SIGBUS
;
1613 vmf
->page
= page
[0];
1617 static const struct vm_operations_struct kvm_vm_vm_ops
= {
1618 .fault
= kvm_vm_fault
,
1621 static int kvm_vm_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1623 vma
->vm_ops
= &kvm_vm_vm_ops
;
1627 static struct file_operations kvm_vm_fops
= {
1628 .release
= kvm_vm_release
,
1629 .unlocked_ioctl
= kvm_vm_ioctl
,
1630 #ifdef CONFIG_COMPAT
1631 .compat_ioctl
= kvm_vm_compat_ioctl
,
1633 .mmap
= kvm_vm_mmap
,
1636 static int kvm_dev_ioctl_create_vm(void)
1641 kvm
= kvm_create_vm();
1643 return PTR_ERR(kvm
);
1644 fd
= anon_inode_getfd("kvm-vm", &kvm_vm_fops
, kvm
, O_RDWR
);
1651 static long kvm_dev_ioctl_check_extension_generic(long arg
)
1654 case KVM_CAP_USER_MEMORY
:
1655 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS
:
1656 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS
:
1657 #ifdef CONFIG_KVM_APIC_ARCHITECTURE
1658 case KVM_CAP_SET_BOOT_CPU_ID
:
1660 case KVM_CAP_INTERNAL_ERROR_DATA
:
1662 #ifdef CONFIG_HAVE_KVM_IRQCHIP
1663 case KVM_CAP_IRQ_ROUTING
:
1664 return KVM_MAX_IRQ_ROUTES
;
1669 return kvm_dev_ioctl_check_extension(arg
);
1672 static long kvm_dev_ioctl(struct file
*filp
,
1673 unsigned int ioctl
, unsigned long arg
)
1678 case KVM_GET_API_VERSION
:
1682 r
= KVM_API_VERSION
;
1688 r
= kvm_dev_ioctl_create_vm();
1690 case KVM_CHECK_EXTENSION
:
1691 r
= kvm_dev_ioctl_check_extension_generic(arg
);
1693 case KVM_GET_VCPU_MMAP_SIZE
:
1697 r
= PAGE_SIZE
; /* struct kvm_run */
1699 r
+= PAGE_SIZE
; /* pio data page */
1701 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1702 r
+= PAGE_SIZE
; /* coalesced mmio ring page */
1705 case KVM_TRACE_ENABLE
:
1706 case KVM_TRACE_PAUSE
:
1707 case KVM_TRACE_DISABLE
:
1711 return kvm_arch_dev_ioctl(filp
, ioctl
, arg
);
1717 static struct file_operations kvm_chardev_ops
= {
1718 .unlocked_ioctl
= kvm_dev_ioctl
,
1719 .compat_ioctl
= kvm_dev_ioctl
,
1722 static struct miscdevice kvm_dev
= {
1728 static void hardware_enable(void *junk
)
1730 int cpu
= raw_smp_processor_id();
1733 if (cpumask_test_cpu(cpu
, cpus_hardware_enabled
))
1736 cpumask_set_cpu(cpu
, cpus_hardware_enabled
);
1738 r
= kvm_arch_hardware_enable(NULL
);
1741 cpumask_clear_cpu(cpu
, cpus_hardware_enabled
);
1742 atomic_inc(&hardware_enable_failed
);
1743 printk(KERN_INFO
"kvm: enabling virtualization on "
1744 "CPU%d failed\n", cpu
);
1748 static void hardware_disable(void *junk
)
1750 int cpu
= raw_smp_processor_id();
1752 if (!cpumask_test_cpu(cpu
, cpus_hardware_enabled
))
1754 cpumask_clear_cpu(cpu
, cpus_hardware_enabled
);
1755 kvm_arch_hardware_disable(NULL
);
1758 static void hardware_disable_all_nolock(void)
1760 BUG_ON(!kvm_usage_count
);
1763 if (!kvm_usage_count
)
1764 on_each_cpu(hardware_disable
, NULL
, 1);
1767 static void hardware_disable_all(void)
1769 spin_lock(&kvm_lock
);
1770 hardware_disable_all_nolock();
1771 spin_unlock(&kvm_lock
);
1774 static int hardware_enable_all(void)
1778 spin_lock(&kvm_lock
);
1781 if (kvm_usage_count
== 1) {
1782 atomic_set(&hardware_enable_failed
, 0);
1783 on_each_cpu(hardware_enable
, NULL
, 1);
1785 if (atomic_read(&hardware_enable_failed
)) {
1786 hardware_disable_all_nolock();
1791 spin_unlock(&kvm_lock
);
1796 static int kvm_cpu_hotplug(struct notifier_block
*notifier
, unsigned long val
,
1801 if (!kvm_usage_count
)
1804 val
&= ~CPU_TASKS_FROZEN
;
1807 printk(KERN_INFO
"kvm: disabling virtualization on CPU%d\n",
1809 hardware_disable(NULL
);
1811 case CPU_UP_CANCELED
:
1812 printk(KERN_INFO
"kvm: disabling virtualization on CPU%d\n",
1814 smp_call_function_single(cpu
, hardware_disable
, NULL
, 1);
1817 printk(KERN_INFO
"kvm: enabling virtualization on CPU%d\n",
1819 smp_call_function_single(cpu
, hardware_enable
, NULL
, 1);
1826 asmlinkage
void kvm_handle_fault_on_reboot(void)
1829 /* spin while reset goes on */
1832 /* Fault while not rebooting. We want the trace. */
1835 EXPORT_SYMBOL_GPL(kvm_handle_fault_on_reboot
);
1837 static int kvm_reboot(struct notifier_block
*notifier
, unsigned long val
,
1841 * Some (well, at least mine) BIOSes hang on reboot if
1844 * And Intel TXT required VMX off for all cpu when system shutdown.
1846 printk(KERN_INFO
"kvm: exiting hardware virtualization\n");
1847 kvm_rebooting
= true;
1848 on_each_cpu(hardware_disable
, NULL
, 1);
1852 static struct notifier_block kvm_reboot_notifier
= {
1853 .notifier_call
= kvm_reboot
,
1857 void kvm_io_bus_init(struct kvm_io_bus
*bus
)
1859 memset(bus
, 0, sizeof(*bus
));
1862 void kvm_io_bus_destroy(struct kvm_io_bus
*bus
)
1866 for (i
= 0; i
< bus
->dev_count
; i
++) {
1867 struct kvm_io_device
*pos
= bus
->devs
[i
];
1869 kvm_iodevice_destructor(pos
);
1873 /* kvm_io_bus_write - called under kvm->slots_lock */
1874 int kvm_io_bus_write(struct kvm_io_bus
*bus
, gpa_t addr
,
1875 int len
, const void *val
)
1878 for (i
= 0; i
< bus
->dev_count
; i
++)
1879 if (!kvm_iodevice_write(bus
->devs
[i
], addr
, len
, val
))
1884 /* kvm_io_bus_read - called under kvm->slots_lock */
1885 int kvm_io_bus_read(struct kvm_io_bus
*bus
, gpa_t addr
, int len
, void *val
)
1888 for (i
= 0; i
< bus
->dev_count
; i
++)
1889 if (!kvm_iodevice_read(bus
->devs
[i
], addr
, len
, val
))
1894 int kvm_io_bus_register_dev(struct kvm
*kvm
, struct kvm_io_bus
*bus
,
1895 struct kvm_io_device
*dev
)
1899 down_write(&kvm
->slots_lock
);
1900 ret
= __kvm_io_bus_register_dev(bus
, dev
);
1901 up_write(&kvm
->slots_lock
);
1906 /* An unlocked version. Caller must have write lock on slots_lock. */
1907 int __kvm_io_bus_register_dev(struct kvm_io_bus
*bus
,
1908 struct kvm_io_device
*dev
)
1910 if (bus
->dev_count
> NR_IOBUS_DEVS
-1)
1913 bus
->devs
[bus
->dev_count
++] = dev
;
1918 void kvm_io_bus_unregister_dev(struct kvm
*kvm
,
1919 struct kvm_io_bus
*bus
,
1920 struct kvm_io_device
*dev
)
1922 down_write(&kvm
->slots_lock
);
1923 __kvm_io_bus_unregister_dev(bus
, dev
);
1924 up_write(&kvm
->slots_lock
);
1927 /* An unlocked version. Caller must have write lock on slots_lock. */
1928 void __kvm_io_bus_unregister_dev(struct kvm_io_bus
*bus
,
1929 struct kvm_io_device
*dev
)
1933 for (i
= 0; i
< bus
->dev_count
; i
++)
1934 if (bus
->devs
[i
] == dev
) {
1935 bus
->devs
[i
] = bus
->devs
[--bus
->dev_count
];
1940 static struct notifier_block kvm_cpu_notifier
= {
1941 .notifier_call
= kvm_cpu_hotplug
,
1942 .priority
= 20, /* must be > scheduler priority */
1945 static int vm_stat_get(void *_offset
, u64
*val
)
1947 unsigned offset
= (long)_offset
;
1951 spin_lock(&kvm_lock
);
1952 list_for_each_entry(kvm
, &vm_list
, vm_list
)
1953 *val
+= *(u32
*)((void *)kvm
+ offset
);
1954 spin_unlock(&kvm_lock
);
1958 DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops
, vm_stat_get
, NULL
, "%llu\n");
1960 static int vcpu_stat_get(void *_offset
, u64
*val
)
1962 unsigned offset
= (long)_offset
;
1964 struct kvm_vcpu
*vcpu
;
1968 spin_lock(&kvm_lock
);
1969 list_for_each_entry(kvm
, &vm_list
, vm_list
)
1970 kvm_for_each_vcpu(i
, vcpu
, kvm
)
1971 *val
+= *(u32
*)((void *)vcpu
+ offset
);
1973 spin_unlock(&kvm_lock
);
1977 DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops
, vcpu_stat_get
, NULL
, "%llu\n");
1979 static const struct file_operations
*stat_fops
[] = {
1980 [KVM_STAT_VCPU
] = &vcpu_stat_fops
,
1981 [KVM_STAT_VM
] = &vm_stat_fops
,
1984 static void kvm_init_debug(void)
1986 struct kvm_stats_debugfs_item
*p
;
1988 kvm_debugfs_dir
= debugfs_create_dir("kvm", NULL
);
1989 for (p
= debugfs_entries
; p
->name
; ++p
)
1990 p
->dentry
= debugfs_create_file(p
->name
, 0444, kvm_debugfs_dir
,
1991 (void *)(long)p
->offset
,
1992 stat_fops
[p
->kind
]);
1995 static void kvm_exit_debug(void)
1997 struct kvm_stats_debugfs_item
*p
;
1999 for (p
= debugfs_entries
; p
->name
; ++p
)
2000 debugfs_remove(p
->dentry
);
2001 debugfs_remove(kvm_debugfs_dir
);
2004 static int kvm_suspend(struct sys_device
*dev
, pm_message_t state
)
2006 if (kvm_usage_count
)
2007 hardware_disable(NULL
);
2011 static int kvm_resume(struct sys_device
*dev
)
2013 if (kvm_usage_count
)
2014 hardware_enable(NULL
);
2018 static struct sysdev_class kvm_sysdev_class
= {
2020 .suspend
= kvm_suspend
,
2021 .resume
= kvm_resume
,
2024 static struct sys_device kvm_sysdev
= {
2026 .cls
= &kvm_sysdev_class
,
2029 struct page
*bad_page
;
2033 struct kvm_vcpu
*preempt_notifier_to_vcpu(struct preempt_notifier
*pn
)
2035 return container_of(pn
, struct kvm_vcpu
, preempt_notifier
);
2038 static void kvm_sched_in(struct preempt_notifier
*pn
, int cpu
)
2040 struct kvm_vcpu
*vcpu
= preempt_notifier_to_vcpu(pn
);
2042 kvm_arch_vcpu_load(vcpu
, cpu
);
2045 static void kvm_sched_out(struct preempt_notifier
*pn
,
2046 struct task_struct
*next
)
2048 struct kvm_vcpu
*vcpu
= preempt_notifier_to_vcpu(pn
);
2050 kvm_arch_vcpu_put(vcpu
);
2053 int kvm_init(void *opaque
, unsigned int vcpu_size
,
2054 struct module
*module
)
2059 r
= kvm_arch_init(opaque
);
2063 bad_page
= alloc_page(GFP_KERNEL
| __GFP_ZERO
);
2065 if (bad_page
== NULL
) {
2070 bad_pfn
= page_to_pfn(bad_page
);
2072 if (!zalloc_cpumask_var(&cpus_hardware_enabled
, GFP_KERNEL
)) {
2077 r
= kvm_arch_hardware_setup();
2081 for_each_online_cpu(cpu
) {
2082 smp_call_function_single(cpu
,
2083 kvm_arch_check_processor_compat
,
2089 r
= register_cpu_notifier(&kvm_cpu_notifier
);
2092 register_reboot_notifier(&kvm_reboot_notifier
);
2094 r
= sysdev_class_register(&kvm_sysdev_class
);
2098 r
= sysdev_register(&kvm_sysdev
);
2102 /* A kmem cache lets us meet the alignment requirements of fx_save. */
2103 kvm_vcpu_cache
= kmem_cache_create("kvm_vcpu", vcpu_size
,
2104 __alignof__(struct kvm_vcpu
),
2106 if (!kvm_vcpu_cache
) {
2111 kvm_chardev_ops
.owner
= module
;
2112 kvm_vm_fops
.owner
= module
;
2113 kvm_vcpu_fops
.owner
= module
;
2115 r
= misc_register(&kvm_dev
);
2117 printk(KERN_ERR
"kvm: misc device register failed\n");
2121 kvm_preempt_ops
.sched_in
= kvm_sched_in
;
2122 kvm_preempt_ops
.sched_out
= kvm_sched_out
;
2129 kmem_cache_destroy(kvm_vcpu_cache
);
2131 sysdev_unregister(&kvm_sysdev
);
2133 sysdev_class_unregister(&kvm_sysdev_class
);
2135 unregister_reboot_notifier(&kvm_reboot_notifier
);
2136 unregister_cpu_notifier(&kvm_cpu_notifier
);
2139 kvm_arch_hardware_unsetup();
2141 free_cpumask_var(cpus_hardware_enabled
);
2143 __free_page(bad_page
);
2149 EXPORT_SYMBOL_GPL(kvm_init
);
2153 tracepoint_synchronize_unregister();
2155 misc_deregister(&kvm_dev
);
2156 kmem_cache_destroy(kvm_vcpu_cache
);
2157 sysdev_unregister(&kvm_sysdev
);
2158 sysdev_class_unregister(&kvm_sysdev_class
);
2159 unregister_reboot_notifier(&kvm_reboot_notifier
);
2160 unregister_cpu_notifier(&kvm_cpu_notifier
);
2161 on_each_cpu(hardware_disable
, NULL
, 1);
2162 kvm_arch_hardware_unsetup();
2164 free_cpumask_var(cpus_hardware_enabled
);
2165 __free_page(bad_page
);
2167 EXPORT_SYMBOL_GPL(kvm_exit
);