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