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