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