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