KVM: return if kvm_vcpu_wake_up() did wake up the VCPU
[linux-2.6-block.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
178f02ff
RK
186 if (!(req & KVM_REQUEST_NO_WAKEUP) && kvm_vcpu_wake_up(vcpu))
187 continue;
6c6e8360 188
6b7e2d09
XG
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
178f02ff 2198bool 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 2205 ++vcpu->stat.halt_wakeup;
178f02ff 2206 return true;
b6d33834
CD
2207 }
2208
178f02ff 2209 return false;
dd1a4cc1
RK
2210}
2211EXPORT_SYMBOL_GPL(kvm_vcpu_wake_up);
2212
2213/*
2214 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
2215 */
2216void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
2217{
2218 int me;
2219 int cpu = vcpu->cpu;
2220
178f02ff
RK
2221 if (kvm_vcpu_wake_up(vcpu))
2222 return;
2223
b6d33834
CD
2224 me = get_cpu();
2225 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
2226 if (kvm_arch_vcpu_should_kick(vcpu))
2227 smp_send_reschedule(cpu);
2228 put_cpu();
2229}
a20ed54d 2230EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
b6d33834 2231
fa93384f 2232int kvm_vcpu_yield_to(struct kvm_vcpu *target)
41628d33
KW
2233{
2234 struct pid *pid;
2235 struct task_struct *task = NULL;
fa93384f 2236 int ret = 0;
41628d33
KW
2237
2238 rcu_read_lock();
2239 pid = rcu_dereference(target->pid);
2240 if (pid)
27fbe64b 2241 task = get_pid_task(pid, PIDTYPE_PID);
41628d33
KW
2242 rcu_read_unlock();
2243 if (!task)
c45c528e 2244 return ret;
c45c528e 2245 ret = yield_to(task, 1);
41628d33 2246 put_task_struct(task);
c45c528e
R
2247
2248 return ret;
41628d33
KW
2249}
2250EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
2251
06e48c51
R
2252/*
2253 * Helper that checks whether a VCPU is eligible for directed yield.
2254 * Most eligible candidate to yield is decided by following heuristics:
2255 *
2256 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
2257 * (preempted lock holder), indicated by @in_spin_loop.
2258 * Set at the beiginning and cleared at the end of interception/PLE handler.
2259 *
2260 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
2261 * chance last time (mostly it has become eligible now since we have probably
2262 * yielded to lockholder in last iteration. This is done by toggling
2263 * @dy_eligible each time a VCPU checked for eligibility.)
2264 *
2265 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
2266 * to preempted lock-holder could result in wrong VCPU selection and CPU
2267 * burning. Giving priority for a potential lock-holder increases lock
2268 * progress.
2269 *
2270 * Since algorithm is based on heuristics, accessing another VCPU data without
2271 * locking does not harm. It may result in trying to yield to same VCPU, fail
2272 * and continue with next VCPU and so on.
2273 */
7940876e 2274static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
06e48c51 2275{
4a55dd72 2276#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
06e48c51
R
2277 bool eligible;
2278
2279 eligible = !vcpu->spin_loop.in_spin_loop ||
34656113 2280 vcpu->spin_loop.dy_eligible;
06e48c51
R
2281
2282 if (vcpu->spin_loop.in_spin_loop)
2283 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
2284
2285 return eligible;
4a55dd72
SW
2286#else
2287 return true;
06e48c51 2288#endif
4a55dd72 2289}
c45c528e 2290
217ece61 2291void kvm_vcpu_on_spin(struct kvm_vcpu *me)
d255f4f2 2292{
217ece61
RR
2293 struct kvm *kvm = me->kvm;
2294 struct kvm_vcpu *vcpu;
2295 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
2296 int yielded = 0;
c45c528e 2297 int try = 3;
217ece61
RR
2298 int pass;
2299 int i;
d255f4f2 2300
4c088493 2301 kvm_vcpu_set_in_spin_loop(me, true);
217ece61
RR
2302 /*
2303 * We boost the priority of a VCPU that is runnable but not
2304 * currently running, because it got preempted by something
2305 * else and called schedule in __vcpu_run. Hopefully that
2306 * VCPU is holding the lock that we need and will release it.
2307 * We approximate round-robin by starting at the last boosted VCPU.
2308 */
c45c528e 2309 for (pass = 0; pass < 2 && !yielded && try; pass++) {
217ece61 2310 kvm_for_each_vcpu(i, vcpu, kvm) {
5cfc2aab 2311 if (!pass && i <= last_boosted_vcpu) {
217ece61
RR
2312 i = last_boosted_vcpu;
2313 continue;
2314 } else if (pass && i > last_boosted_vcpu)
2315 break;
7bc7ae25
R
2316 if (!ACCESS_ONCE(vcpu->preempted))
2317 continue;
217ece61
RR
2318 if (vcpu == me)
2319 continue;
8577370f 2320 if (swait_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
217ece61 2321 continue;
06e48c51
R
2322 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
2323 continue;
c45c528e
R
2324
2325 yielded = kvm_vcpu_yield_to(vcpu);
2326 if (yielded > 0) {
217ece61 2327 kvm->last_boosted_vcpu = i;
217ece61 2328 break;
c45c528e
R
2329 } else if (yielded < 0) {
2330 try--;
2331 if (!try)
2332 break;
217ece61 2333 }
217ece61
RR
2334 }
2335 }
4c088493 2336 kvm_vcpu_set_in_spin_loop(me, false);
06e48c51
R
2337
2338 /* Ensure vcpu is not eligible during next spinloop */
2339 kvm_vcpu_set_dy_eligible(me, false);
d255f4f2
ZE
2340}
2341EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
2342
11bac800 2343static int kvm_vcpu_fault(struct vm_fault *vmf)
9a2bb7f4 2344{
11bac800 2345 struct kvm_vcpu *vcpu = vmf->vma->vm_file->private_data;
9a2bb7f4
AK
2346 struct page *page;
2347
e4a533a4 2348 if (vmf->pgoff == 0)
039576c0 2349 page = virt_to_page(vcpu->run);
09566765 2350#ifdef CONFIG_X86
e4a533a4 2351 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
ad312c7c 2352 page = virt_to_page(vcpu->arch.pio_data);
5f94c174 2353#endif
4b4357e0 2354#ifdef CONFIG_KVM_MMIO
5f94c174
LV
2355 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
2356 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
09566765 2357#endif
039576c0 2358 else
5b1c1493 2359 return kvm_arch_vcpu_fault(vcpu, vmf);
9a2bb7f4 2360 get_page(page);
e4a533a4 2361 vmf->page = page;
2362 return 0;
9a2bb7f4
AK
2363}
2364
f0f37e2f 2365static const struct vm_operations_struct kvm_vcpu_vm_ops = {
e4a533a4 2366 .fault = kvm_vcpu_fault,
9a2bb7f4
AK
2367};
2368
2369static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2370{
2371 vma->vm_ops = &kvm_vcpu_vm_ops;
2372 return 0;
2373}
2374
bccf2150
AK
2375static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2376{
2377 struct kvm_vcpu *vcpu = filp->private_data;
2378
45b5939e 2379 debugfs_remove_recursive(vcpu->debugfs_dentry);
66c0b394 2380 kvm_put_kvm(vcpu->kvm);
bccf2150
AK
2381 return 0;
2382}
2383
3d3aab1b 2384static struct file_operations kvm_vcpu_fops = {
bccf2150
AK
2385 .release = kvm_vcpu_release,
2386 .unlocked_ioctl = kvm_vcpu_ioctl,
de8e5d74 2387#ifdef CONFIG_KVM_COMPAT
1dda606c
AG
2388 .compat_ioctl = kvm_vcpu_compat_ioctl,
2389#endif
9a2bb7f4 2390 .mmap = kvm_vcpu_mmap,
6038f373 2391 .llseek = noop_llseek,
bccf2150
AK
2392};
2393
2394/*
2395 * Allocates an inode for the vcpu.
2396 */
2397static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2398{
24009b05 2399 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
bccf2150
AK
2400}
2401
45b5939e
LC
2402static int kvm_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
2403{
2404 char dir_name[ITOA_MAX_LEN * 2];
2405 int ret;
2406
2407 if (!kvm_arch_has_vcpu_debugfs())
2408 return 0;
2409
2410 if (!debugfs_initialized())
2411 return 0;
2412
2413 snprintf(dir_name, sizeof(dir_name), "vcpu%d", vcpu->vcpu_id);
2414 vcpu->debugfs_dentry = debugfs_create_dir(dir_name,
2415 vcpu->kvm->debugfs_dentry);
2416 if (!vcpu->debugfs_dentry)
2417 return -ENOMEM;
2418
2419 ret = kvm_arch_create_vcpu_debugfs(vcpu);
2420 if (ret < 0) {
2421 debugfs_remove_recursive(vcpu->debugfs_dentry);
2422 return ret;
2423 }
2424
2425 return 0;
2426}
2427
c5ea7660
AK
2428/*
2429 * Creates some virtual cpus. Good luck creating more than one.
2430 */
73880c80 2431static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
c5ea7660
AK
2432{
2433 int r;
e09fefde 2434 struct kvm_vcpu *vcpu;
c5ea7660 2435
0b1b1dfd 2436 if (id >= KVM_MAX_VCPU_ID)
338c7dba
AH
2437 return -EINVAL;
2438
6c7caebc
PB
2439 mutex_lock(&kvm->lock);
2440 if (kvm->created_vcpus == KVM_MAX_VCPUS) {
2441 mutex_unlock(&kvm->lock);
2442 return -EINVAL;
2443 }
2444
2445 kvm->created_vcpus++;
2446 mutex_unlock(&kvm->lock);
2447
73880c80 2448 vcpu = kvm_arch_vcpu_create(kvm, id);
6c7caebc
PB
2449 if (IS_ERR(vcpu)) {
2450 r = PTR_ERR(vcpu);
2451 goto vcpu_decrement;
2452 }
c5ea7660 2453
15ad7146
AK
2454 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2455
26e5215f
AK
2456 r = kvm_arch_vcpu_setup(vcpu);
2457 if (r)
d780592b 2458 goto vcpu_destroy;
26e5215f 2459
45b5939e
LC
2460 r = kvm_create_vcpu_debugfs(vcpu);
2461 if (r)
2462 goto vcpu_destroy;
2463
11ec2804 2464 mutex_lock(&kvm->lock);
e09fefde
DH
2465 if (kvm_get_vcpu_by_id(kvm, id)) {
2466 r = -EEXIST;
2467 goto unlock_vcpu_destroy;
2468 }
73880c80
GN
2469
2470 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
c5ea7660 2471
fb3f0f51 2472 /* Now it's all set up, let userspace reach it */
66c0b394 2473 kvm_get_kvm(kvm);
bccf2150 2474 r = create_vcpu_fd(vcpu);
73880c80
GN
2475 if (r < 0) {
2476 kvm_put_kvm(kvm);
d780592b 2477 goto unlock_vcpu_destroy;
73880c80
GN
2478 }
2479
2480 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
dd489240
PB
2481
2482 /*
2483 * Pairs with smp_rmb() in kvm_get_vcpu. Write kvm->vcpus
2484 * before kvm->online_vcpu's incremented value.
2485 */
73880c80
GN
2486 smp_wmb();
2487 atomic_inc(&kvm->online_vcpus);
2488
73880c80 2489 mutex_unlock(&kvm->lock);
42897d86 2490 kvm_arch_vcpu_postcreate(vcpu);
fb3f0f51 2491 return r;
39c3b86e 2492
d780592b 2493unlock_vcpu_destroy:
7d8fece6 2494 mutex_unlock(&kvm->lock);
45b5939e 2495 debugfs_remove_recursive(vcpu->debugfs_dentry);
d780592b 2496vcpu_destroy:
d40ccc62 2497 kvm_arch_vcpu_destroy(vcpu);
6c7caebc
PB
2498vcpu_decrement:
2499 mutex_lock(&kvm->lock);
2500 kvm->created_vcpus--;
2501 mutex_unlock(&kvm->lock);
c5ea7660
AK
2502 return r;
2503}
2504
1961d276
AK
2505static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2506{
2507 if (sigset) {
2508 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2509 vcpu->sigset_active = 1;
2510 vcpu->sigset = *sigset;
2511 } else
2512 vcpu->sigset_active = 0;
2513 return 0;
2514}
2515
bccf2150
AK
2516static long kvm_vcpu_ioctl(struct file *filp,
2517 unsigned int ioctl, unsigned long arg)
6aa8b732 2518{
bccf2150 2519 struct kvm_vcpu *vcpu = filp->private_data;
2f366987 2520 void __user *argp = (void __user *)arg;
313a3dc7 2521 int r;
fa3795a7
DH
2522 struct kvm_fpu *fpu = NULL;
2523 struct kvm_sregs *kvm_sregs = NULL;
6aa8b732 2524
6d4e4c4f
AK
2525 if (vcpu->kvm->mm != current->mm)
2526 return -EIO;
2122ff5e 2527
2ea75be3
DM
2528 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2529 return -EINVAL;
2530
2f4d9b54 2531#if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
2122ff5e
AK
2532 /*
2533 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
2534 * so vcpu_load() would break it.
2535 */
47b43c52 2536 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_S390_IRQ || ioctl == KVM_INTERRUPT)
2122ff5e
AK
2537 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2538#endif
2539
2540
9fc77441
MT
2541 r = vcpu_load(vcpu);
2542 if (r)
2543 return r;
6aa8b732 2544 switch (ioctl) {
9a2bb7f4 2545 case KVM_RUN:
f0fe5108
AK
2546 r = -EINVAL;
2547 if (arg)
2548 goto out;
7a72f7a1
CB
2549 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
2550 /* The thread running this VCPU changed. */
2551 struct pid *oldpid = vcpu->pid;
2552 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
f95ef0cd 2553
7a72f7a1
CB
2554 rcu_assign_pointer(vcpu->pid, newpid);
2555 if (oldpid)
2556 synchronize_rcu();
2557 put_pid(oldpid);
2558 }
b6c7a5dc 2559 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
64be5007 2560 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
6aa8b732 2561 break;
6aa8b732 2562 case KVM_GET_REGS: {
3e4bb3ac 2563 struct kvm_regs *kvm_regs;
6aa8b732 2564
3e4bb3ac
XZ
2565 r = -ENOMEM;
2566 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2567 if (!kvm_regs)
6aa8b732 2568 goto out;
3e4bb3ac
XZ
2569 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
2570 if (r)
2571 goto out_free1;
6aa8b732 2572 r = -EFAULT;
3e4bb3ac
XZ
2573 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2574 goto out_free1;
6aa8b732 2575 r = 0;
3e4bb3ac
XZ
2576out_free1:
2577 kfree(kvm_regs);
6aa8b732
AK
2578 break;
2579 }
2580 case KVM_SET_REGS: {
3e4bb3ac 2581 struct kvm_regs *kvm_regs;
6aa8b732 2582
3e4bb3ac 2583 r = -ENOMEM;
ff5c2c03
SL
2584 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2585 if (IS_ERR(kvm_regs)) {
2586 r = PTR_ERR(kvm_regs);
6aa8b732 2587 goto out;
ff5c2c03 2588 }
3e4bb3ac 2589 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
3e4bb3ac 2590 kfree(kvm_regs);
6aa8b732
AK
2591 break;
2592 }
2593 case KVM_GET_SREGS: {
fa3795a7
DH
2594 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2595 r = -ENOMEM;
2596 if (!kvm_sregs)
2597 goto out;
2598 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
6aa8b732
AK
2599 if (r)
2600 goto out;
2601 r = -EFAULT;
fa3795a7 2602 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
6aa8b732
AK
2603 goto out;
2604 r = 0;
2605 break;
2606 }
2607 case KVM_SET_SREGS: {
ff5c2c03
SL
2608 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2609 if (IS_ERR(kvm_sregs)) {
2610 r = PTR_ERR(kvm_sregs);
18595411 2611 kvm_sregs = NULL;
6aa8b732 2612 goto out;
ff5c2c03 2613 }
fa3795a7 2614 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
6aa8b732
AK
2615 break;
2616 }
62d9f0db
MT
2617 case KVM_GET_MP_STATE: {
2618 struct kvm_mp_state mp_state;
2619
2620 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2621 if (r)
2622 goto out;
2623 r = -EFAULT;
893bdbf1 2624 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
62d9f0db
MT
2625 goto out;
2626 r = 0;
2627 break;
2628 }
2629 case KVM_SET_MP_STATE: {
2630 struct kvm_mp_state mp_state;
2631
2632 r = -EFAULT;
893bdbf1 2633 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
62d9f0db
MT
2634 goto out;
2635 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
62d9f0db
MT
2636 break;
2637 }
6aa8b732
AK
2638 case KVM_TRANSLATE: {
2639 struct kvm_translation tr;
2640
2641 r = -EFAULT;
893bdbf1 2642 if (copy_from_user(&tr, argp, sizeof(tr)))
6aa8b732 2643 goto out;
8b006791 2644 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
6aa8b732
AK
2645 if (r)
2646 goto out;
2647 r = -EFAULT;
893bdbf1 2648 if (copy_to_user(argp, &tr, sizeof(tr)))
6aa8b732
AK
2649 goto out;
2650 r = 0;
2651 break;
2652 }
d0bfb940
JK
2653 case KVM_SET_GUEST_DEBUG: {
2654 struct kvm_guest_debug dbg;
6aa8b732
AK
2655
2656 r = -EFAULT;
893bdbf1 2657 if (copy_from_user(&dbg, argp, sizeof(dbg)))
6aa8b732 2658 goto out;
d0bfb940 2659 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
6aa8b732
AK
2660 break;
2661 }
1961d276
AK
2662 case KVM_SET_SIGNAL_MASK: {
2663 struct kvm_signal_mask __user *sigmask_arg = argp;
2664 struct kvm_signal_mask kvm_sigmask;
2665 sigset_t sigset, *p;
2666
2667 p = NULL;
2668 if (argp) {
2669 r = -EFAULT;
2670 if (copy_from_user(&kvm_sigmask, argp,
893bdbf1 2671 sizeof(kvm_sigmask)))
1961d276
AK
2672 goto out;
2673 r = -EINVAL;
893bdbf1 2674 if (kvm_sigmask.len != sizeof(sigset))
1961d276
AK
2675 goto out;
2676 r = -EFAULT;
2677 if (copy_from_user(&sigset, sigmask_arg->sigset,
893bdbf1 2678 sizeof(sigset)))
1961d276
AK
2679 goto out;
2680 p = &sigset;
2681 }
376d41ff 2682 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
1961d276
AK
2683 break;
2684 }
b8836737 2685 case KVM_GET_FPU: {
fa3795a7
DH
2686 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2687 r = -ENOMEM;
2688 if (!fpu)
2689 goto out;
2690 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
b8836737
AK
2691 if (r)
2692 goto out;
2693 r = -EFAULT;
fa3795a7 2694 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
b8836737
AK
2695 goto out;
2696 r = 0;
2697 break;
2698 }
2699 case KVM_SET_FPU: {
ff5c2c03
SL
2700 fpu = memdup_user(argp, sizeof(*fpu));
2701 if (IS_ERR(fpu)) {
2702 r = PTR_ERR(fpu);
18595411 2703 fpu = NULL;
b8836737 2704 goto out;
ff5c2c03 2705 }
fa3795a7 2706 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
b8836737
AK
2707 break;
2708 }
bccf2150 2709 default:
313a3dc7 2710 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
bccf2150
AK
2711 }
2712out:
2122ff5e 2713 vcpu_put(vcpu);
fa3795a7
DH
2714 kfree(fpu);
2715 kfree(kvm_sregs);
bccf2150
AK
2716 return r;
2717}
2718
de8e5d74 2719#ifdef CONFIG_KVM_COMPAT
1dda606c
AG
2720static long kvm_vcpu_compat_ioctl(struct file *filp,
2721 unsigned int ioctl, unsigned long arg)
2722{
2723 struct kvm_vcpu *vcpu = filp->private_data;
2724 void __user *argp = compat_ptr(arg);
2725 int r;
2726
2727 if (vcpu->kvm->mm != current->mm)
2728 return -EIO;
2729
2730 switch (ioctl) {
2731 case KVM_SET_SIGNAL_MASK: {
2732 struct kvm_signal_mask __user *sigmask_arg = argp;
2733 struct kvm_signal_mask kvm_sigmask;
2734 compat_sigset_t csigset;
2735 sigset_t sigset;
2736
2737 if (argp) {
2738 r = -EFAULT;
2739 if (copy_from_user(&kvm_sigmask, argp,
893bdbf1 2740 sizeof(kvm_sigmask)))
1dda606c
AG
2741 goto out;
2742 r = -EINVAL;
893bdbf1 2743 if (kvm_sigmask.len != sizeof(csigset))
1dda606c
AG
2744 goto out;
2745 r = -EFAULT;
2746 if (copy_from_user(&csigset, sigmask_arg->sigset,
893bdbf1 2747 sizeof(csigset)))
1dda606c 2748 goto out;
760a9a30
AC
2749 sigset_from_compat(&sigset, &csigset);
2750 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2751 } else
2752 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
1dda606c
AG
2753 break;
2754 }
2755 default:
2756 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2757 }
2758
2759out:
2760 return r;
2761}
2762#endif
2763
852b6d57
SW
2764static int kvm_device_ioctl_attr(struct kvm_device *dev,
2765 int (*accessor)(struct kvm_device *dev,
2766 struct kvm_device_attr *attr),
2767 unsigned long arg)
2768{
2769 struct kvm_device_attr attr;
2770
2771 if (!accessor)
2772 return -EPERM;
2773
2774 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2775 return -EFAULT;
2776
2777 return accessor(dev, &attr);
2778}
2779
2780static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2781 unsigned long arg)
2782{
2783 struct kvm_device *dev = filp->private_data;
2784
2785 switch (ioctl) {
2786 case KVM_SET_DEVICE_ATTR:
2787 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2788 case KVM_GET_DEVICE_ATTR:
2789 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2790 case KVM_HAS_DEVICE_ATTR:
2791 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2792 default:
2793 if (dev->ops->ioctl)
2794 return dev->ops->ioctl(dev, ioctl, arg);
2795
2796 return -ENOTTY;
2797 }
2798}
2799
852b6d57
SW
2800static int kvm_device_release(struct inode *inode, struct file *filp)
2801{
2802 struct kvm_device *dev = filp->private_data;
2803 struct kvm *kvm = dev->kvm;
2804
852b6d57
SW
2805 kvm_put_kvm(kvm);
2806 return 0;
2807}
2808
2809static const struct file_operations kvm_device_fops = {
2810 .unlocked_ioctl = kvm_device_ioctl,
de8e5d74 2811#ifdef CONFIG_KVM_COMPAT
db6ae615
SW
2812 .compat_ioctl = kvm_device_ioctl,
2813#endif
852b6d57
SW
2814 .release = kvm_device_release,
2815};
2816
2817struct kvm_device *kvm_device_from_filp(struct file *filp)
2818{
2819 if (filp->f_op != &kvm_device_fops)
2820 return NULL;
2821
2822 return filp->private_data;
2823}
2824
d60eacb0 2825static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
5df554ad 2826#ifdef CONFIG_KVM_MPIC
d60eacb0
WD
2827 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
2828 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
5975a2e0 2829#endif
d60eacb0 2830
5975a2e0 2831#ifdef CONFIG_KVM_XICS
d60eacb0 2832 [KVM_DEV_TYPE_XICS] = &kvm_xics_ops,
ec53500f 2833#endif
d60eacb0
WD
2834};
2835
2836int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
2837{
2838 if (type >= ARRAY_SIZE(kvm_device_ops_table))
2839 return -ENOSPC;
2840
2841 if (kvm_device_ops_table[type] != NULL)
2842 return -EEXIST;
2843
2844 kvm_device_ops_table[type] = ops;
2845 return 0;
2846}
2847
571ee1b6
WL
2848void kvm_unregister_device_ops(u32 type)
2849{
2850 if (kvm_device_ops_table[type] != NULL)
2851 kvm_device_ops_table[type] = NULL;
2852}
2853
852b6d57
SW
2854static int kvm_ioctl_create_device(struct kvm *kvm,
2855 struct kvm_create_device *cd)
2856{
2857 struct kvm_device_ops *ops = NULL;
2858 struct kvm_device *dev;
2859 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2860 int ret;
2861
d60eacb0
WD
2862 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
2863 return -ENODEV;
2864
2865 ops = kvm_device_ops_table[cd->type];
2866 if (ops == NULL)
852b6d57 2867 return -ENODEV;
852b6d57
SW
2868
2869 if (test)
2870 return 0;
2871
2872 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2873 if (!dev)
2874 return -ENOMEM;
2875
2876 dev->ops = ops;
2877 dev->kvm = kvm;
852b6d57 2878
a28ebea2 2879 mutex_lock(&kvm->lock);
852b6d57
SW
2880 ret = ops->create(dev, cd->type);
2881 if (ret < 0) {
a28ebea2 2882 mutex_unlock(&kvm->lock);
852b6d57
SW
2883 kfree(dev);
2884 return ret;
2885 }
a28ebea2
CD
2886 list_add(&dev->vm_node, &kvm->devices);
2887 mutex_unlock(&kvm->lock);
852b6d57 2888
023e9fdd
CD
2889 if (ops->init)
2890 ops->init(dev);
2891
24009b05 2892 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
852b6d57 2893 if (ret < 0) {
a28ebea2
CD
2894 mutex_lock(&kvm->lock);
2895 list_del(&dev->vm_node);
2896 mutex_unlock(&kvm->lock);
a0f1d21c 2897 ops->destroy(dev);
852b6d57
SW
2898 return ret;
2899 }
2900
2901 kvm_get_kvm(kvm);
2902 cd->fd = ret;
2903 return 0;
2904}
2905
92b591a4
AG
2906static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2907{
2908 switch (arg) {
2909 case KVM_CAP_USER_MEMORY:
2910 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2911 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
92b591a4
AG
2912 case KVM_CAP_INTERNAL_ERROR_DATA:
2913#ifdef CONFIG_HAVE_KVM_MSI
2914 case KVM_CAP_SIGNAL_MSI:
2915#endif
297e2105 2916#ifdef CONFIG_HAVE_KVM_IRQFD
dc9be0fa 2917 case KVM_CAP_IRQFD:
92b591a4
AG
2918 case KVM_CAP_IRQFD_RESAMPLE:
2919#endif
e9ea5069 2920 case KVM_CAP_IOEVENTFD_ANY_LENGTH:
92b591a4
AG
2921 case KVM_CAP_CHECK_EXTENSION_VM:
2922 return 1;
4b4357e0 2923#ifdef CONFIG_KVM_MMIO
30422558
PB
2924 case KVM_CAP_COALESCED_MMIO:
2925 return KVM_COALESCED_MMIO_PAGE_OFFSET;
2926#endif
92b591a4
AG
2927#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2928 case KVM_CAP_IRQ_ROUTING:
2929 return KVM_MAX_IRQ_ROUTES;
f481b069
PB
2930#endif
2931#if KVM_ADDRESS_SPACE_NUM > 1
2932 case KVM_CAP_MULTI_ADDRESS_SPACE:
2933 return KVM_ADDRESS_SPACE_NUM;
92b591a4 2934#endif
0b1b1dfd
GK
2935 case KVM_CAP_MAX_VCPU_ID:
2936 return KVM_MAX_VCPU_ID;
92b591a4
AG
2937 default:
2938 break;
2939 }
2940 return kvm_vm_ioctl_check_extension(kvm, arg);
2941}
2942
bccf2150
AK
2943static long kvm_vm_ioctl(struct file *filp,
2944 unsigned int ioctl, unsigned long arg)
2945{
2946 struct kvm *kvm = filp->private_data;
2947 void __user *argp = (void __user *)arg;
1fe779f8 2948 int r;
bccf2150 2949
6d4e4c4f
AK
2950 if (kvm->mm != current->mm)
2951 return -EIO;
bccf2150
AK
2952 switch (ioctl) {
2953 case KVM_CREATE_VCPU:
2954 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
bccf2150 2955 break;
6fc138d2
IE
2956 case KVM_SET_USER_MEMORY_REGION: {
2957 struct kvm_userspace_memory_region kvm_userspace_mem;
2958
2959 r = -EFAULT;
2960 if (copy_from_user(&kvm_userspace_mem, argp,
893bdbf1 2961 sizeof(kvm_userspace_mem)))
6fc138d2
IE
2962 goto out;
2963
47ae31e2 2964 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
6aa8b732
AK
2965 break;
2966 }
2967 case KVM_GET_DIRTY_LOG: {
2968 struct kvm_dirty_log log;
2969
2970 r = -EFAULT;
893bdbf1 2971 if (copy_from_user(&log, argp, sizeof(log)))
6aa8b732 2972 goto out;
2c6f5df9 2973 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
6aa8b732
AK
2974 break;
2975 }
4b4357e0 2976#ifdef CONFIG_KVM_MMIO
5f94c174
LV
2977 case KVM_REGISTER_COALESCED_MMIO: {
2978 struct kvm_coalesced_mmio_zone zone;
f95ef0cd 2979
5f94c174 2980 r = -EFAULT;
893bdbf1 2981 if (copy_from_user(&zone, argp, sizeof(zone)))
5f94c174 2982 goto out;
5f94c174 2983 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
5f94c174
LV
2984 break;
2985 }
2986 case KVM_UNREGISTER_COALESCED_MMIO: {
2987 struct kvm_coalesced_mmio_zone zone;
f95ef0cd 2988
5f94c174 2989 r = -EFAULT;
893bdbf1 2990 if (copy_from_user(&zone, argp, sizeof(zone)))
5f94c174 2991 goto out;
5f94c174 2992 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
5f94c174
LV
2993 break;
2994 }
2995#endif
721eecbf
GH
2996 case KVM_IRQFD: {
2997 struct kvm_irqfd data;
2998
2999 r = -EFAULT;
893bdbf1 3000 if (copy_from_user(&data, argp, sizeof(data)))
721eecbf 3001 goto out;
d4db2935 3002 r = kvm_irqfd(kvm, &data);
721eecbf
GH
3003 break;
3004 }
d34e6b17
GH
3005 case KVM_IOEVENTFD: {
3006 struct kvm_ioeventfd data;
3007
3008 r = -EFAULT;
893bdbf1 3009 if (copy_from_user(&data, argp, sizeof(data)))
d34e6b17
GH
3010 goto out;
3011 r = kvm_ioeventfd(kvm, &data);
3012 break;
3013 }
07975ad3
JK
3014#ifdef CONFIG_HAVE_KVM_MSI
3015 case KVM_SIGNAL_MSI: {
3016 struct kvm_msi msi;
3017
3018 r = -EFAULT;
893bdbf1 3019 if (copy_from_user(&msi, argp, sizeof(msi)))
07975ad3
JK
3020 goto out;
3021 r = kvm_send_userspace_msi(kvm, &msi);
3022 break;
3023 }
23d43cf9
CD
3024#endif
3025#ifdef __KVM_HAVE_IRQ_LINE
3026 case KVM_IRQ_LINE_STATUS:
3027 case KVM_IRQ_LINE: {
3028 struct kvm_irq_level irq_event;
3029
3030 r = -EFAULT;
893bdbf1 3031 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
23d43cf9
CD
3032 goto out;
3033
aa2fbe6d
YZ
3034 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
3035 ioctl == KVM_IRQ_LINE_STATUS);
23d43cf9
CD
3036 if (r)
3037 goto out;
3038
3039 r = -EFAULT;
3040 if (ioctl == KVM_IRQ_LINE_STATUS) {
893bdbf1 3041 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
23d43cf9
CD
3042 goto out;
3043 }
3044
3045 r = 0;
3046 break;
3047 }
73880c80 3048#endif
aa8d5944
AG
3049#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
3050 case KVM_SET_GSI_ROUTING: {
3051 struct kvm_irq_routing routing;
3052 struct kvm_irq_routing __user *urouting;
f8c1b85b 3053 struct kvm_irq_routing_entry *entries = NULL;
aa8d5944
AG
3054
3055 r = -EFAULT;
3056 if (copy_from_user(&routing, argp, sizeof(routing)))
3057 goto out;
3058 r = -EINVAL;
caf1ff26 3059 if (routing.nr > KVM_MAX_IRQ_ROUTES)
aa8d5944
AG
3060 goto out;
3061 if (routing.flags)
3062 goto out;
f8c1b85b
PB
3063 if (routing.nr) {
3064 r = -ENOMEM;
3065 entries = vmalloc(routing.nr * sizeof(*entries));
3066 if (!entries)
3067 goto out;
3068 r = -EFAULT;
3069 urouting = argp;
3070 if (copy_from_user(entries, urouting->entries,
3071 routing.nr * sizeof(*entries)))
3072 goto out_free_irq_routing;
3073 }
1df6dded
DH
3074 /* avoid races with KVM_CREATE_IRQCHIP on x86 */
3075 mutex_lock(&kvm->lock);
aa8d5944
AG
3076 r = kvm_set_irq_routing(kvm, entries, routing.nr,
3077 routing.flags);
1df6dded 3078 mutex_unlock(&kvm->lock);
a642a175 3079out_free_irq_routing:
aa8d5944
AG
3080 vfree(entries);
3081 break;
3082 }
3083#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
852b6d57
SW
3084 case KVM_CREATE_DEVICE: {
3085 struct kvm_create_device cd;
3086
3087 r = -EFAULT;
3088 if (copy_from_user(&cd, argp, sizeof(cd)))
3089 goto out;
3090
3091 r = kvm_ioctl_create_device(kvm, &cd);
3092 if (r)
3093 goto out;
3094
3095 r = -EFAULT;
3096 if (copy_to_user(argp, &cd, sizeof(cd)))
3097 goto out;
3098
3099 r = 0;
3100 break;
3101 }
92b591a4
AG
3102 case KVM_CHECK_EXTENSION:
3103 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
3104 break;
f17abe9a 3105 default:
1fe779f8 3106 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
f17abe9a
AK
3107 }
3108out:
3109 return r;
3110}
3111
de8e5d74 3112#ifdef CONFIG_KVM_COMPAT
6ff5894c
AB
3113struct compat_kvm_dirty_log {
3114 __u32 slot;
3115 __u32 padding1;
3116 union {
3117 compat_uptr_t dirty_bitmap; /* one bit per page */
3118 __u64 padding2;
3119 };
3120};
3121
3122static long kvm_vm_compat_ioctl(struct file *filp,
3123 unsigned int ioctl, unsigned long arg)
3124{
3125 struct kvm *kvm = filp->private_data;
3126 int r;
3127
3128 if (kvm->mm != current->mm)
3129 return -EIO;
3130 switch (ioctl) {
3131 case KVM_GET_DIRTY_LOG: {
3132 struct compat_kvm_dirty_log compat_log;
3133 struct kvm_dirty_log log;
3134
6ff5894c
AB
3135 if (copy_from_user(&compat_log, (void __user *)arg,
3136 sizeof(compat_log)))
f6a3b168 3137 return -EFAULT;
6ff5894c
AB
3138 log.slot = compat_log.slot;
3139 log.padding1 = compat_log.padding1;
3140 log.padding2 = compat_log.padding2;
3141 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
3142
3143 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
6ff5894c
AB
3144 break;
3145 }
3146 default:
3147 r = kvm_vm_ioctl(filp, ioctl, arg);
3148 }
6ff5894c
AB
3149 return r;
3150}
3151#endif
3152
3d3aab1b 3153static struct file_operations kvm_vm_fops = {
f17abe9a
AK
3154 .release = kvm_vm_release,
3155 .unlocked_ioctl = kvm_vm_ioctl,
de8e5d74 3156#ifdef CONFIG_KVM_COMPAT
6ff5894c
AB
3157 .compat_ioctl = kvm_vm_compat_ioctl,
3158#endif
6038f373 3159 .llseek = noop_llseek,
f17abe9a
AK
3160};
3161
e08b9637 3162static int kvm_dev_ioctl_create_vm(unsigned long type)
f17abe9a 3163{
aac87636 3164 int r;
f17abe9a 3165 struct kvm *kvm;
506cfba9 3166 struct file *file;
f17abe9a 3167
e08b9637 3168 kvm = kvm_create_vm(type);
d6d28168
AK
3169 if (IS_ERR(kvm))
3170 return PTR_ERR(kvm);
4b4357e0 3171#ifdef CONFIG_KVM_MMIO
6ce5a090
TY
3172 r = kvm_coalesced_mmio_init(kvm);
3173 if (r < 0) {
3174 kvm_put_kvm(kvm);
3175 return r;
3176 }
3177#endif
506cfba9 3178 r = get_unused_fd_flags(O_CLOEXEC);
536a6f88 3179 if (r < 0) {
66c0b394 3180 kvm_put_kvm(kvm);
536a6f88
JF
3181 return r;
3182 }
506cfba9
AV
3183 file = anon_inode_getfile("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
3184 if (IS_ERR(file)) {
3185 put_unused_fd(r);
3186 kvm_put_kvm(kvm);
3187 return PTR_ERR(file);
3188 }
536a6f88
JF
3189
3190 if (kvm_create_vm_debugfs(kvm, r) < 0) {
506cfba9
AV
3191 put_unused_fd(r);
3192 fput(file);
536a6f88
JF
3193 return -ENOMEM;
3194 }
f17abe9a 3195
506cfba9 3196 fd_install(r, file);
aac87636 3197 return r;
f17abe9a
AK
3198}
3199
3200static long kvm_dev_ioctl(struct file *filp,
3201 unsigned int ioctl, unsigned long arg)
3202{
07c45a36 3203 long r = -EINVAL;
f17abe9a
AK
3204
3205 switch (ioctl) {
3206 case KVM_GET_API_VERSION:
f0fe5108
AK
3207 if (arg)
3208 goto out;
f17abe9a
AK
3209 r = KVM_API_VERSION;
3210 break;
3211 case KVM_CREATE_VM:
e08b9637 3212 r = kvm_dev_ioctl_create_vm(arg);
f17abe9a 3213 break;
018d00d2 3214 case KVM_CHECK_EXTENSION:
784aa3d7 3215 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
5d308f45 3216 break;
07c45a36 3217 case KVM_GET_VCPU_MMAP_SIZE:
07c45a36
AK
3218 if (arg)
3219 goto out;
adb1ff46
AK
3220 r = PAGE_SIZE; /* struct kvm_run */
3221#ifdef CONFIG_X86
3222 r += PAGE_SIZE; /* pio data page */
5f94c174 3223#endif
4b4357e0 3224#ifdef CONFIG_KVM_MMIO
5f94c174 3225 r += PAGE_SIZE; /* coalesced mmio ring page */
adb1ff46 3226#endif
07c45a36 3227 break;
d4c9ff2d
FEL
3228 case KVM_TRACE_ENABLE:
3229 case KVM_TRACE_PAUSE:
3230 case KVM_TRACE_DISABLE:
2023a29c 3231 r = -EOPNOTSUPP;
d4c9ff2d 3232 break;
6aa8b732 3233 default:
043405e1 3234 return kvm_arch_dev_ioctl(filp, ioctl, arg);
6aa8b732
AK
3235 }
3236out:
3237 return r;
3238}
3239
6aa8b732 3240static struct file_operations kvm_chardev_ops = {
6aa8b732
AK
3241 .unlocked_ioctl = kvm_dev_ioctl,
3242 .compat_ioctl = kvm_dev_ioctl,
6038f373 3243 .llseek = noop_llseek,
6aa8b732
AK
3244};
3245
3246static struct miscdevice kvm_dev = {
bbe4432e 3247 KVM_MINOR,
6aa8b732
AK
3248 "kvm",
3249 &kvm_chardev_ops,
3250};
3251
75b7127c 3252static void hardware_enable_nolock(void *junk)
1b6c0168
AK
3253{
3254 int cpu = raw_smp_processor_id();
10474ae8 3255 int r;
1b6c0168 3256
7f59f492 3257 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
1b6c0168 3258 return;
10474ae8 3259
7f59f492 3260 cpumask_set_cpu(cpu, cpus_hardware_enabled);
10474ae8 3261
13a34e06 3262 r = kvm_arch_hardware_enable();
10474ae8
AG
3263
3264 if (r) {
3265 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
3266 atomic_inc(&hardware_enable_failed);
1170adc6 3267 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
10474ae8 3268 }
1b6c0168
AK
3269}
3270
8c18b2d2 3271static int kvm_starting_cpu(unsigned int cpu)
75b7127c 3272{
4a937f96 3273 raw_spin_lock(&kvm_count_lock);
4fa92fb2
PB
3274 if (kvm_usage_count)
3275 hardware_enable_nolock(NULL);
4a937f96 3276 raw_spin_unlock(&kvm_count_lock);
8c18b2d2 3277 return 0;
75b7127c
TY
3278}
3279
3280static void hardware_disable_nolock(void *junk)
1b6c0168
AK
3281{
3282 int cpu = raw_smp_processor_id();
3283
7f59f492 3284 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
1b6c0168 3285 return;
7f59f492 3286 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
13a34e06 3287 kvm_arch_hardware_disable();
1b6c0168
AK
3288}
3289
8c18b2d2 3290static int kvm_dying_cpu(unsigned int cpu)
75b7127c 3291{
4a937f96 3292 raw_spin_lock(&kvm_count_lock);
4fa92fb2
PB
3293 if (kvm_usage_count)
3294 hardware_disable_nolock(NULL);
4a937f96 3295 raw_spin_unlock(&kvm_count_lock);
8c18b2d2 3296 return 0;
75b7127c
TY
3297}
3298
10474ae8
AG
3299static void hardware_disable_all_nolock(void)
3300{
3301 BUG_ON(!kvm_usage_count);
3302
3303 kvm_usage_count--;
3304 if (!kvm_usage_count)
75b7127c 3305 on_each_cpu(hardware_disable_nolock, NULL, 1);
10474ae8
AG
3306}
3307
3308static void hardware_disable_all(void)
3309{
4a937f96 3310 raw_spin_lock(&kvm_count_lock);
10474ae8 3311 hardware_disable_all_nolock();
4a937f96 3312 raw_spin_unlock(&kvm_count_lock);
10474ae8
AG
3313}
3314
3315static int hardware_enable_all(void)
3316{
3317 int r = 0;
3318
4a937f96 3319 raw_spin_lock(&kvm_count_lock);
10474ae8
AG
3320
3321 kvm_usage_count++;
3322 if (kvm_usage_count == 1) {
3323 atomic_set(&hardware_enable_failed, 0);
75b7127c 3324 on_each_cpu(hardware_enable_nolock, NULL, 1);
10474ae8
AG
3325
3326 if (atomic_read(&hardware_enable_failed)) {
3327 hardware_disable_all_nolock();
3328 r = -EBUSY;
3329 }
3330 }
3331
4a937f96 3332 raw_spin_unlock(&kvm_count_lock);
10474ae8
AG
3333
3334 return r;
3335}
3336
9a2b85c6 3337static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
d77c26fc 3338 void *v)
9a2b85c6 3339{
8e1c1815
SY
3340 /*
3341 * Some (well, at least mine) BIOSes hang on reboot if
3342 * in vmx root mode.
3343 *
3344 * And Intel TXT required VMX off for all cpu when system shutdown.
3345 */
1170adc6 3346 pr_info("kvm: exiting hardware virtualization\n");
8e1c1815 3347 kvm_rebooting = true;
75b7127c 3348 on_each_cpu(hardware_disable_nolock, NULL, 1);
9a2b85c6
RR
3349 return NOTIFY_OK;
3350}
3351
3352static struct notifier_block kvm_reboot_notifier = {
3353 .notifier_call = kvm_reboot,
3354 .priority = 0,
3355};
3356
e93f8a0f 3357static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
2eeb2e94
GH
3358{
3359 int i;
3360
3361 for (i = 0; i < bus->dev_count; i++) {
743eeb0b 3362 struct kvm_io_device *pos = bus->range[i].dev;
2eeb2e94
GH
3363
3364 kvm_iodevice_destructor(pos);
3365 }
e93f8a0f 3366 kfree(bus);
2eeb2e94
GH
3367}
3368
c21fbff1 3369static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
20e87b72 3370 const struct kvm_io_range *r2)
743eeb0b 3371{
8f4216c7
JW
3372 gpa_t addr1 = r1->addr;
3373 gpa_t addr2 = r2->addr;
3374
3375 if (addr1 < addr2)
743eeb0b 3376 return -1;
8f4216c7
JW
3377
3378 /* If r2->len == 0, match the exact address. If r2->len != 0,
3379 * accept any overlapping write. Any order is acceptable for
3380 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
3381 * we process all of them.
3382 */
3383 if (r2->len) {
3384 addr1 += r1->len;
3385 addr2 += r2->len;
3386 }
3387
3388 if (addr1 > addr2)
743eeb0b 3389 return 1;
8f4216c7 3390
743eeb0b
SL
3391 return 0;
3392}
3393
a343c9b7
PB
3394static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
3395{
c21fbff1 3396 return kvm_io_bus_cmp(p1, p2);
a343c9b7
PB
3397}
3398
39369f7a 3399static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
743eeb0b
SL
3400 gpa_t addr, int len)
3401{
743eeb0b
SL
3402 bus->range[bus->dev_count++] = (struct kvm_io_range) {
3403 .addr = addr,
3404 .len = len,
3405 .dev = dev,
3406 };
3407
3408 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
3409 kvm_io_bus_sort_cmp, NULL);
3410
3411 return 0;
3412}
3413
39369f7a 3414static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
743eeb0b
SL
3415 gpa_t addr, int len)
3416{
3417 struct kvm_io_range *range, key;
3418 int off;
3419
3420 key = (struct kvm_io_range) {
3421 .addr = addr,
3422 .len = len,
3423 };
3424
3425 range = bsearch(&key, bus->range, bus->dev_count,
3426 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
3427 if (range == NULL)
3428 return -ENOENT;
3429
3430 off = range - bus->range;
3431
c21fbff1 3432 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
743eeb0b
SL
3433 off--;
3434
3435 return off;
3436}
3437
e32edf4f 3438static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
126a5af5
CH
3439 struct kvm_io_range *range, const void *val)
3440{
3441 int idx;
3442
3443 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3444 if (idx < 0)
3445 return -EOPNOTSUPP;
3446
3447 while (idx < bus->dev_count &&
c21fbff1 3448 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
e32edf4f 3449 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
126a5af5
CH
3450 range->len, val))
3451 return idx;
3452 idx++;
3453 }
3454
3455 return -EOPNOTSUPP;
3456}
3457
bda9020e 3458/* kvm_io_bus_write - called under kvm->slots_lock */
e32edf4f 3459int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
bda9020e 3460 int len, const void *val)
2eeb2e94 3461{
90d83dc3 3462 struct kvm_io_bus *bus;
743eeb0b 3463 struct kvm_io_range range;
126a5af5 3464 int r;
743eeb0b
SL
3465
3466 range = (struct kvm_io_range) {
3467 .addr = addr,
3468 .len = len,
3469 };
90d83dc3 3470
e32edf4f 3471 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
90db1043
DH
3472 if (!bus)
3473 return -ENOMEM;
e32edf4f 3474 r = __kvm_io_bus_write(vcpu, bus, &range, val);
126a5af5
CH
3475 return r < 0 ? r : 0;
3476}
3477
3478/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
e32edf4f
NN
3479int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3480 gpa_t addr, int len, const void *val, long cookie)
126a5af5
CH
3481{
3482 struct kvm_io_bus *bus;
3483 struct kvm_io_range range;
3484
3485 range = (struct kvm_io_range) {
3486 .addr = addr,
3487 .len = len,
3488 };
3489
e32edf4f 3490 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
90db1043
DH
3491 if (!bus)
3492 return -ENOMEM;
126a5af5
CH
3493
3494 /* First try the device referenced by cookie. */
3495 if ((cookie >= 0) && (cookie < bus->dev_count) &&
c21fbff1 3496 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
e32edf4f 3497 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
126a5af5
CH
3498 val))
3499 return cookie;
3500
3501 /*
3502 * cookie contained garbage; fall back to search and return the
3503 * correct cookie value.
3504 */
e32edf4f 3505 return __kvm_io_bus_write(vcpu, bus, &range, val);
126a5af5
CH
3506}
3507
e32edf4f
NN
3508static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3509 struct kvm_io_range *range, void *val)
126a5af5
CH
3510{
3511 int idx;
3512
3513 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
743eeb0b
SL
3514 if (idx < 0)
3515 return -EOPNOTSUPP;
3516
3517 while (idx < bus->dev_count &&
c21fbff1 3518 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
e32edf4f 3519 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
126a5af5
CH
3520 range->len, val))
3521 return idx;
743eeb0b
SL
3522 idx++;
3523 }
3524
bda9020e
MT
3525 return -EOPNOTSUPP;
3526}
68c3b4d1 3527EXPORT_SYMBOL_GPL(kvm_io_bus_write);
2eeb2e94 3528
bda9020e 3529/* kvm_io_bus_read - called under kvm->slots_lock */
e32edf4f 3530int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
e93f8a0f 3531 int len, void *val)
bda9020e 3532{
90d83dc3 3533 struct kvm_io_bus *bus;
743eeb0b 3534 struct kvm_io_range range;
126a5af5 3535 int r;
743eeb0b
SL
3536
3537 range = (struct kvm_io_range) {
3538 .addr = addr,
3539 .len = len,
3540 };
e93f8a0f 3541
e32edf4f 3542 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
90db1043
DH
3543 if (!bus)
3544 return -ENOMEM;
e32edf4f 3545 r = __kvm_io_bus_read(vcpu, bus, &range, val);
126a5af5
CH
3546 return r < 0 ? r : 0;
3547}
743eeb0b 3548
2eeb2e94 3549
79fac95e 3550/* Caller must hold slots_lock. */
743eeb0b
SL
3551int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3552 int len, struct kvm_io_device *dev)
6c474694 3553{
e93f8a0f 3554 struct kvm_io_bus *new_bus, *bus;
090b7aff 3555
e93f8a0f 3556 bus = kvm->buses[bus_idx];
90db1043
DH
3557 if (!bus)
3558 return -ENOMEM;
3559
6ea34c9b
AK
3560 /* exclude ioeventfd which is limited by maximum fd */
3561 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
090b7aff 3562 return -ENOSPC;
2eeb2e94 3563
d3febddd 3564 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count + 1) *
a1300716 3565 sizeof(struct kvm_io_range)), GFP_KERNEL);
e93f8a0f
MT
3566 if (!new_bus)
3567 return -ENOMEM;
a1300716
AK
3568 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
3569 sizeof(struct kvm_io_range)));
743eeb0b 3570 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
e93f8a0f
MT
3571 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3572 synchronize_srcu_expedited(&kvm->srcu);
3573 kfree(bus);
090b7aff
GH
3574
3575 return 0;
3576}
3577
79fac95e 3578/* Caller must hold slots_lock. */
90db1043
DH
3579void kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3580 struct kvm_io_device *dev)
090b7aff 3581{
90db1043 3582 int i;
e93f8a0f 3583 struct kvm_io_bus *new_bus, *bus;
090b7aff 3584
cdfca7b3 3585 bus = kvm->buses[bus_idx];
df630b8c 3586 if (!bus)
90db1043 3587 return;
df630b8c 3588
a1300716
AK
3589 for (i = 0; i < bus->dev_count; i++)
3590 if (bus->range[i].dev == dev) {
090b7aff
GH
3591 break;
3592 }
e93f8a0f 3593
90db1043
DH
3594 if (i == bus->dev_count)
3595 return;
a1300716 3596
d3febddd 3597 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count - 1) *
a1300716 3598 sizeof(struct kvm_io_range)), GFP_KERNEL);
90db1043
DH
3599 if (!new_bus) {
3600 pr_err("kvm: failed to shrink bus, removing it completely\n");
3601 goto broken;
3602 }
a1300716
AK
3603
3604 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3605 new_bus->dev_count--;
3606 memcpy(new_bus->range + i, bus->range + i + 1,
3607 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
e93f8a0f 3608
90db1043 3609broken:
e93f8a0f
MT
3610 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3611 synchronize_srcu_expedited(&kvm->srcu);
3612 kfree(bus);
90db1043 3613 return;
2eeb2e94
GH
3614}
3615
8a39d006
AP
3616struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3617 gpa_t addr)
3618{
3619 struct kvm_io_bus *bus;
3620 int dev_idx, srcu_idx;
3621 struct kvm_io_device *iodev = NULL;
3622
3623 srcu_idx = srcu_read_lock(&kvm->srcu);
3624
3625 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
90db1043
DH
3626 if (!bus)
3627 goto out_unlock;
8a39d006
AP
3628
3629 dev_idx = kvm_io_bus_get_first_dev(bus, addr, 1);
3630 if (dev_idx < 0)
3631 goto out_unlock;
3632
3633 iodev = bus->range[dev_idx].dev;
3634
3635out_unlock:
3636 srcu_read_unlock(&kvm->srcu, srcu_idx);
3637
3638 return iodev;
3639}
3640EXPORT_SYMBOL_GPL(kvm_io_bus_get_dev);
3641
536a6f88
JF
3642static int kvm_debugfs_open(struct inode *inode, struct file *file,
3643 int (*get)(void *, u64 *), int (*set)(void *, u64),
3644 const char *fmt)
3645{
3646 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
3647 inode->i_private;
3648
3649 /* The debugfs files are a reference to the kvm struct which
3650 * is still valid when kvm_destroy_vm is called.
3651 * To avoid the race between open and the removal of the debugfs
3652 * directory we test against the users count.
3653 */
e3736c3e 3654 if (!refcount_inc_not_zero(&stat_data->kvm->users_count))
536a6f88
JF
3655 return -ENOENT;
3656
3657 if (simple_attr_open(inode, file, get, set, fmt)) {
3658 kvm_put_kvm(stat_data->kvm);
3659 return -ENOMEM;
3660 }
3661
3662 return 0;
3663}
3664
3665static int kvm_debugfs_release(struct inode *inode, struct file *file)
3666{
3667 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
3668 inode->i_private;
3669
3670 simple_attr_release(inode, file);
3671 kvm_put_kvm(stat_data->kvm);
3672
3673 return 0;
3674}
3675
3676static int vm_stat_get_per_vm(void *data, u64 *val)
3677{
3678 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3679
8a7e75d4 3680 *val = *(ulong *)((void *)stat_data->kvm + stat_data->offset);
536a6f88
JF
3681
3682 return 0;
3683}
3684
ce35ef27
SJS
3685static int vm_stat_clear_per_vm(void *data, u64 val)
3686{
3687 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3688
3689 if (val)
3690 return -EINVAL;
3691
3692 *(ulong *)((void *)stat_data->kvm + stat_data->offset) = 0;
3693
3694 return 0;
3695}
3696
536a6f88
JF
3697static int vm_stat_get_per_vm_open(struct inode *inode, struct file *file)
3698{
3699 __simple_attr_check_format("%llu\n", 0ull);
3700 return kvm_debugfs_open(inode, file, vm_stat_get_per_vm,
ce35ef27 3701 vm_stat_clear_per_vm, "%llu\n");
536a6f88
JF
3702}
3703
3704static const struct file_operations vm_stat_get_per_vm_fops = {
3705 .owner = THIS_MODULE,
3706 .open = vm_stat_get_per_vm_open,
3707 .release = kvm_debugfs_release,
3708 .read = simple_attr_read,
3709 .write = simple_attr_write,
3710 .llseek = generic_file_llseek,
3711};
3712
3713static int vcpu_stat_get_per_vm(void *data, u64 *val)
3714{
3715 int i;
3716 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3717 struct kvm_vcpu *vcpu;
3718
3719 *val = 0;
3720
3721 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
8a7e75d4 3722 *val += *(u64 *)((void *)vcpu + stat_data->offset);
536a6f88
JF
3723
3724 return 0;
3725}
3726
ce35ef27
SJS
3727static int vcpu_stat_clear_per_vm(void *data, u64 val)
3728{
3729 int i;
3730 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3731 struct kvm_vcpu *vcpu;
3732
3733 if (val)
3734 return -EINVAL;
3735
3736 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
3737 *(u64 *)((void *)vcpu + stat_data->offset) = 0;
3738
3739 return 0;
3740}
3741
536a6f88
JF
3742static int vcpu_stat_get_per_vm_open(struct inode *inode, struct file *file)
3743{
3744 __simple_attr_check_format("%llu\n", 0ull);
3745 return kvm_debugfs_open(inode, file, vcpu_stat_get_per_vm,
ce35ef27 3746 vcpu_stat_clear_per_vm, "%llu\n");
536a6f88
JF
3747}
3748
3749static const struct file_operations vcpu_stat_get_per_vm_fops = {
3750 .owner = THIS_MODULE,
3751 .open = vcpu_stat_get_per_vm_open,
3752 .release = kvm_debugfs_release,
3753 .read = simple_attr_read,
3754 .write = simple_attr_write,
3755 .llseek = generic_file_llseek,
3756};
3757
3758static const struct file_operations *stat_fops_per_vm[] = {
3759 [KVM_STAT_VCPU] = &vcpu_stat_get_per_vm_fops,
3760 [KVM_STAT_VM] = &vm_stat_get_per_vm_fops,
3761};
3762
8b88b099 3763static int vm_stat_get(void *_offset, u64 *val)
ba1389b7
AK
3764{
3765 unsigned offset = (long)_offset;
ba1389b7 3766 struct kvm *kvm;
536a6f88
JF
3767 struct kvm_stat_data stat_tmp = {.offset = offset};
3768 u64 tmp_val;
ba1389b7 3769
8b88b099 3770 *val = 0;
2f303b74 3771 spin_lock(&kvm_lock);
536a6f88
JF
3772 list_for_each_entry(kvm, &vm_list, vm_list) {
3773 stat_tmp.kvm = kvm;
3774 vm_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
3775 *val += tmp_val;
3776 }
2f303b74 3777 spin_unlock(&kvm_lock);
8b88b099 3778 return 0;
ba1389b7
AK
3779}
3780
ce35ef27
SJS
3781static int vm_stat_clear(void *_offset, u64 val)
3782{
3783 unsigned offset = (long)_offset;
3784 struct kvm *kvm;
3785 struct kvm_stat_data stat_tmp = {.offset = offset};
3786
3787 if (val)
3788 return -EINVAL;
3789
3790 spin_lock(&kvm_lock);
3791 list_for_each_entry(kvm, &vm_list, vm_list) {
3792 stat_tmp.kvm = kvm;
3793 vm_stat_clear_per_vm((void *)&stat_tmp, 0);
3794 }
3795 spin_unlock(&kvm_lock);
3796
3797 return 0;
3798}
3799
3800DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, vm_stat_clear, "%llu\n");
ba1389b7 3801
8b88b099 3802static int vcpu_stat_get(void *_offset, u64 *val)
1165f5fe
AK
3803{
3804 unsigned offset = (long)_offset;
1165f5fe 3805 struct kvm *kvm;
536a6f88
JF
3806 struct kvm_stat_data stat_tmp = {.offset = offset};
3807 u64 tmp_val;
1165f5fe 3808
8b88b099 3809 *val = 0;
2f303b74 3810 spin_lock(&kvm_lock);
536a6f88
JF
3811 list_for_each_entry(kvm, &vm_list, vm_list) {
3812 stat_tmp.kvm = kvm;
3813 vcpu_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
3814 *val += tmp_val;
3815 }
2f303b74 3816 spin_unlock(&kvm_lock);
8b88b099 3817 return 0;
1165f5fe
AK
3818}
3819
ce35ef27
SJS
3820static int vcpu_stat_clear(void *_offset, u64 val)
3821{
3822 unsigned offset = (long)_offset;
3823 struct kvm *kvm;
3824 struct kvm_stat_data stat_tmp = {.offset = offset};
3825
3826 if (val)
3827 return -EINVAL;
3828
3829 spin_lock(&kvm_lock);
3830 list_for_each_entry(kvm, &vm_list, vm_list) {
3831 stat_tmp.kvm = kvm;
3832 vcpu_stat_clear_per_vm((void *)&stat_tmp, 0);
3833 }
3834 spin_unlock(&kvm_lock);
3835
3836 return 0;
3837}
3838
3839DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, vcpu_stat_clear,
3840 "%llu\n");
ba1389b7 3841
828c0950 3842static const struct file_operations *stat_fops[] = {
ba1389b7
AK
3843 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3844 [KVM_STAT_VM] = &vm_stat_fops,
3845};
1165f5fe 3846
4f69b680 3847static int kvm_init_debug(void)
6aa8b732 3848{
0c8eb04a 3849 int r = -EEXIST;
6aa8b732
AK
3850 struct kvm_stats_debugfs_item *p;
3851
76f7c879 3852 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
4f69b680
H
3853 if (kvm_debugfs_dir == NULL)
3854 goto out;
3855
536a6f88
JF
3856 kvm_debugfs_num_entries = 0;
3857 for (p = debugfs_entries; p->name; ++p, kvm_debugfs_num_entries++) {
ce35ef27 3858 if (!debugfs_create_file(p->name, 0644, kvm_debugfs_dir,
4bd33b56
JF
3859 (void *)(long)p->offset,
3860 stat_fops[p->kind]))
4f69b680
H
3861 goto out_dir;
3862 }
3863
3864 return 0;
3865
3866out_dir:
3867 debugfs_remove_recursive(kvm_debugfs_dir);
3868out:
3869 return r;
6aa8b732
AK
3870}
3871
fb3600cc 3872static int kvm_suspend(void)
59ae6c6b 3873{
10474ae8 3874 if (kvm_usage_count)
75b7127c 3875 hardware_disable_nolock(NULL);
59ae6c6b
AK
3876 return 0;
3877}
3878
fb3600cc 3879static void kvm_resume(void)
59ae6c6b 3880{
ca84d1a2 3881 if (kvm_usage_count) {
4a937f96 3882 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
75b7127c 3883 hardware_enable_nolock(NULL);
ca84d1a2 3884 }
59ae6c6b
AK
3885}
3886
fb3600cc 3887static struct syscore_ops kvm_syscore_ops = {
59ae6c6b
AK
3888 .suspend = kvm_suspend,
3889 .resume = kvm_resume,
3890};
3891
15ad7146
AK
3892static inline
3893struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3894{
3895 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3896}
3897
3898static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3899{
3900 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
f95ef0cd 3901
3a08a8f9
R
3902 if (vcpu->preempted)
3903 vcpu->preempted = false;
15ad7146 3904
e790d9ef
RK
3905 kvm_arch_sched_in(vcpu, cpu);
3906
e9b11c17 3907 kvm_arch_vcpu_load(vcpu, cpu);
15ad7146
AK
3908}
3909
3910static void kvm_sched_out(struct preempt_notifier *pn,
3911 struct task_struct *next)
3912{
3913 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3914
3a08a8f9
R
3915 if (current->state == TASK_RUNNING)
3916 vcpu->preempted = true;
e9b11c17 3917 kvm_arch_vcpu_put(vcpu);
15ad7146
AK
3918}
3919
0ee75bea 3920int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
c16f862d 3921 struct module *module)
6aa8b732
AK
3922{
3923 int r;
002c7f7c 3924 int cpu;
6aa8b732 3925
f8c16bba
ZX
3926 r = kvm_arch_init(opaque);
3927 if (r)
d2308784 3928 goto out_fail;
cb498ea2 3929
7dac16c3
AH
3930 /*
3931 * kvm_arch_init makes sure there's at most one caller
3932 * for architectures that support multiple implementations,
3933 * like intel and amd on x86.
36343f6e
PB
3934 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3935 * conflicts in case kvm is already setup for another implementation.
7dac16c3 3936 */
36343f6e
PB
3937 r = kvm_irqfd_init();
3938 if (r)
3939 goto out_irqfd;
7dac16c3 3940
8437a617 3941 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
7f59f492
RR
3942 r = -ENOMEM;
3943 goto out_free_0;
3944 }
3945
e9b11c17 3946 r = kvm_arch_hardware_setup();
6aa8b732 3947 if (r < 0)
7f59f492 3948 goto out_free_0a;
6aa8b732 3949
002c7f7c
YS
3950 for_each_online_cpu(cpu) {
3951 smp_call_function_single(cpu,
e9b11c17 3952 kvm_arch_check_processor_compat,
8691e5a8 3953 &r, 1);
002c7f7c 3954 if (r < 0)
d2308784 3955 goto out_free_1;
002c7f7c
YS
3956 }
3957
73c1b41e 3958 r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "kvm/cpu:starting",
8c18b2d2 3959 kvm_starting_cpu, kvm_dying_cpu);
774c47f1 3960 if (r)
d2308784 3961 goto out_free_2;
6aa8b732
AK
3962 register_reboot_notifier(&kvm_reboot_notifier);
3963
c16f862d 3964 /* A kmem cache lets us meet the alignment requirements of fx_save. */
0ee75bea
AK
3965 if (!vcpu_align)
3966 vcpu_align = __alignof__(struct kvm_vcpu);
3967 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
56919c5c 3968 0, NULL);
c16f862d
RR
3969 if (!kvm_vcpu_cache) {
3970 r = -ENOMEM;
fb3600cc 3971 goto out_free_3;
c16f862d
RR
3972 }
3973
af585b92
GN
3974 r = kvm_async_pf_init();
3975 if (r)
3976 goto out_free;
3977
6aa8b732 3978 kvm_chardev_ops.owner = module;
3d3aab1b
CB
3979 kvm_vm_fops.owner = module;
3980 kvm_vcpu_fops.owner = module;
6aa8b732
AK
3981
3982 r = misc_register(&kvm_dev);
3983 if (r) {
1170adc6 3984 pr_err("kvm: misc device register failed\n");
af585b92 3985 goto out_unreg;
6aa8b732
AK
3986 }
3987
fb3600cc
RW
3988 register_syscore_ops(&kvm_syscore_ops);
3989
15ad7146
AK
3990 kvm_preempt_ops.sched_in = kvm_sched_in;
3991 kvm_preempt_ops.sched_out = kvm_sched_out;
3992
4f69b680
H
3993 r = kvm_init_debug();
3994 if (r) {
1170adc6 3995 pr_err("kvm: create debugfs files failed\n");
4f69b680
H
3996 goto out_undebugfs;
3997 }
0ea4ed8e 3998
3c3c29fd
PB
3999 r = kvm_vfio_ops_init();
4000 WARN_ON(r);
4001
c7addb90 4002 return 0;
6aa8b732 4003
4f69b680
H
4004out_undebugfs:
4005 unregister_syscore_ops(&kvm_syscore_ops);
afc2f792 4006 misc_deregister(&kvm_dev);
af585b92
GN
4007out_unreg:
4008 kvm_async_pf_deinit();
6aa8b732 4009out_free:
c16f862d 4010 kmem_cache_destroy(kvm_vcpu_cache);
d2308784 4011out_free_3:
6aa8b732 4012 unregister_reboot_notifier(&kvm_reboot_notifier);
8c18b2d2 4013 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
d2308784 4014out_free_2:
d2308784 4015out_free_1:
e9b11c17 4016 kvm_arch_hardware_unsetup();
7f59f492
RR
4017out_free_0a:
4018 free_cpumask_var(cpus_hardware_enabled);
d2308784 4019out_free_0:
a0f155e9 4020 kvm_irqfd_exit();
36343f6e 4021out_irqfd:
7dac16c3
AH
4022 kvm_arch_exit();
4023out_fail:
6aa8b732
AK
4024 return r;
4025}
cb498ea2 4026EXPORT_SYMBOL_GPL(kvm_init);
6aa8b732 4027
cb498ea2 4028void kvm_exit(void)
6aa8b732 4029{
4bd33b56 4030 debugfs_remove_recursive(kvm_debugfs_dir);
6aa8b732 4031 misc_deregister(&kvm_dev);
c16f862d 4032 kmem_cache_destroy(kvm_vcpu_cache);
af585b92 4033 kvm_async_pf_deinit();
fb3600cc 4034 unregister_syscore_ops(&kvm_syscore_ops);
6aa8b732 4035 unregister_reboot_notifier(&kvm_reboot_notifier);
8c18b2d2 4036 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
75b7127c 4037 on_each_cpu(hardware_disable_nolock, NULL, 1);
e9b11c17 4038 kvm_arch_hardware_unsetup();
f8c16bba 4039 kvm_arch_exit();
a0f155e9 4040 kvm_irqfd_exit();
7f59f492 4041 free_cpumask_var(cpus_hardware_enabled);
571ee1b6 4042 kvm_vfio_ops_exit();
6aa8b732 4043}
cb498ea2 4044EXPORT_SYMBOL_GPL(kvm_exit);