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