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