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