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