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