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