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