]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - virt/kvm/kvm_main.c
KVM: x86: Replace X86_FEATURE_NX offset with the definition
[mirror_ubuntu-artful-kernel.git] / virt / kvm / kvm_main.c
CommitLineData
6aa8b732
AK
1/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
9611c187 8 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
6aa8b732
AK
9 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
e2174021 19#include "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>
e8edc6e0 35#include <linux/sched.h>
d9e368d6
AK
36#include <linux/cpumask.h>
37#include <linux/smp.h>
d6d28168 38#include <linux/anon_inodes.h>
04d2cc77 39#include <linux/profile.h>
7aa81cc0 40#include <linux/kvm_para.h>
6fc138d2 41#include <linux/pagemap.h>
8d4e1288 42#include <linux/mman.h>
35149e21 43#include <linux/swap.h>
e56d532f 44#include <linux/bitops.h>
547de29e 45#include <linux/spinlock.h>
6ff5894c 46#include <linux/compat.h>
bc6678a3 47#include <linux/srcu.h>
8f0b1ab6 48#include <linux/hugetlb.h>
5a0e3ad6 49#include <linux/slab.h>
743eeb0b
SL
50#include <linux/sort.h>
51#include <linux/bsearch.h>
6aa8b732 52
e495606d 53#include <asm/processor.h>
e495606d
AK
54#include <asm/io.h>
55#include <asm/uaccess.h>
3e021bf5 56#include <asm/pgtable.h>
6aa8b732 57
5f94c174 58#include "coalesced_mmio.h"
af585b92 59#include "async_pf.h"
5f94c174 60
229456fc
MT
61#define CREATE_TRACE_POINTS
62#include <trace/events/kvm.h>
63
6aa8b732
AK
64MODULE_AUTHOR("Qumranet");
65MODULE_LICENSE("GPL");
66
fa40a821
MT
67/*
68 * Ordering of locks:
69 *
fae3a353 70 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
fa40a821
MT
71 */
72
2f303b74 73DEFINE_SPINLOCK(kvm_lock);
4a937f96 74static DEFINE_RAW_SPINLOCK(kvm_count_lock);
e9b11c17 75LIST_HEAD(vm_list);
133de902 76
7f59f492 77static cpumask_var_t cpus_hardware_enabled;
10474ae8
AG
78static int kvm_usage_count = 0;
79static atomic_t hardware_enable_failed;
1b6c0168 80
c16f862d
RR
81struct kmem_cache *kvm_vcpu_cache;
82EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
1165f5fe 83
15ad7146
AK
84static __read_mostly struct preempt_ops kvm_preempt_ops;
85
76f7c879 86struct dentry *kvm_debugfs_dir;
6aa8b732 87
bccf2150
AK
88static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
89 unsigned long arg);
1dda606c
AG
90#ifdef CONFIG_COMPAT
91static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
92 unsigned long arg);
93#endif
10474ae8
AG
94static int hardware_enable_all(void);
95static void hardware_disable_all(void);
bccf2150 96
e93f8a0f 97static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
7940876e
SH
98static void update_memslots(struct kvm_memslots *slots,
99 struct kvm_memory_slot *new, u64 last_generation);
100
101static void kvm_release_pfn_dirty(pfn_t pfn);
102static void mark_page_dirty_in_slot(struct kvm *kvm,
103 struct kvm_memory_slot *memslot, gfn_t gfn);
e93f8a0f 104
52480137 105__visible bool kvm_rebooting;
b7c4145b 106EXPORT_SYMBOL_GPL(kvm_rebooting);
4ecac3fd 107
54dee993
MT
108static bool largepages_enabled = true;
109
a2766325 110bool kvm_is_mmio_pfn(pfn_t pfn)
cbff90a7 111{
11feeb49
AA
112 if (pfn_valid(pfn))
113 return PageReserved(pfn_to_page(pfn));
cbff90a7
BAY
114
115 return true;
116}
117
bccf2150
AK
118/*
119 * Switches to specified vcpu, until a matching vcpu_put()
120 */
9fc77441 121int vcpu_load(struct kvm_vcpu *vcpu)
6aa8b732 122{
15ad7146
AK
123 int cpu;
124
9fc77441
MT
125 if (mutex_lock_killable(&vcpu->mutex))
126 return -EINTR;
34bb10b7
RR
127 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
128 /* The thread running this VCPU changed. */
129 struct pid *oldpid = vcpu->pid;
130 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
131 rcu_assign_pointer(vcpu->pid, newpid);
7103f60d
CB
132 if (oldpid)
133 synchronize_rcu();
34bb10b7
RR
134 put_pid(oldpid);
135 }
15ad7146
AK
136 cpu = get_cpu();
137 preempt_notifier_register(&vcpu->preempt_notifier);
313a3dc7 138 kvm_arch_vcpu_load(vcpu, cpu);
15ad7146 139 put_cpu();
9fc77441 140 return 0;
6aa8b732
AK
141}
142
313a3dc7 143void vcpu_put(struct kvm_vcpu *vcpu)
6aa8b732 144{
15ad7146 145 preempt_disable();
313a3dc7 146 kvm_arch_vcpu_put(vcpu);
15ad7146
AK
147 preempt_notifier_unregister(&vcpu->preempt_notifier);
148 preempt_enable();
6aa8b732
AK
149 mutex_unlock(&vcpu->mutex);
150}
151
d9e368d6
AK
152static void ack_flush(void *_completed)
153{
d9e368d6
AK
154}
155
49846896 156static bool make_all_cpus_request(struct kvm *kvm, unsigned int req)
d9e368d6 157{
597a5f55 158 int i, cpu, me;
6ef7a1bc
RR
159 cpumask_var_t cpus;
160 bool called = true;
d9e368d6 161 struct kvm_vcpu *vcpu;
d9e368d6 162
79f55997 163 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
6ef7a1bc 164
3cba4130 165 me = get_cpu();
988a2cae 166 kvm_for_each_vcpu(i, vcpu, kvm) {
3cba4130 167 kvm_make_request(req, vcpu);
d9e368d6 168 cpu = vcpu->cpu;
6b7e2d09
XG
169
170 /* Set ->requests bit before we read ->mode */
171 smp_mb();
172
173 if (cpus != NULL && cpu != -1 && cpu != me &&
174 kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE)
6ef7a1bc 175 cpumask_set_cpu(cpu, cpus);
49846896 176 }
6ef7a1bc
RR
177 if (unlikely(cpus == NULL))
178 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
179 else if (!cpumask_empty(cpus))
180 smp_call_function_many(cpus, ack_flush, NULL, 1);
181 else
182 called = false;
3cba4130 183 put_cpu();
6ef7a1bc 184 free_cpumask_var(cpus);
49846896 185 return called;
d9e368d6
AK
186}
187
49846896 188void kvm_flush_remote_tlbs(struct kvm *kvm)
2e53d63a 189{
a086f6a1
XG
190 long dirty_count = kvm->tlbs_dirty;
191
192 smp_mb();
49846896
RR
193 if (make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
194 ++kvm->stat.remote_tlb_flush;
a086f6a1 195 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
2e53d63a 196}
2ba9f0d8 197EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
2e53d63a 198
49846896
RR
199void kvm_reload_remote_mmus(struct kvm *kvm)
200{
201 make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
202}
2e53d63a 203
d828199e
MT
204void kvm_make_mclock_inprogress_request(struct kvm *kvm)
205{
206 make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
207}
208
3d81bc7e 209void kvm_make_scan_ioapic_request(struct kvm *kvm)
c7c9c56c 210{
3d81bc7e 211 make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
c7c9c56c
YZ
212}
213
fb3f0f51
RR
214int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
215{
216 struct page *page;
217 int r;
218
219 mutex_init(&vcpu->mutex);
220 vcpu->cpu = -1;
fb3f0f51
RR
221 vcpu->kvm = kvm;
222 vcpu->vcpu_id = id;
34bb10b7 223 vcpu->pid = NULL;
b6958ce4 224 init_waitqueue_head(&vcpu->wq);
af585b92 225 kvm_async_pf_vcpu_init(vcpu);
fb3f0f51
RR
226
227 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
228 if (!page) {
229 r = -ENOMEM;
230 goto fail;
231 }
232 vcpu->run = page_address(page);
233
4c088493
R
234 kvm_vcpu_set_in_spin_loop(vcpu, false);
235 kvm_vcpu_set_dy_eligible(vcpu, false);
3a08a8f9 236 vcpu->preempted = false;
4c088493 237
e9b11c17 238 r = kvm_arch_vcpu_init(vcpu);
fb3f0f51 239 if (r < 0)
e9b11c17 240 goto fail_free_run;
fb3f0f51
RR
241 return 0;
242
fb3f0f51
RR
243fail_free_run:
244 free_page((unsigned long)vcpu->run);
245fail:
76fafa5e 246 return r;
fb3f0f51
RR
247}
248EXPORT_SYMBOL_GPL(kvm_vcpu_init);
249
250void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
251{
34bb10b7 252 put_pid(vcpu->pid);
e9b11c17 253 kvm_arch_vcpu_uninit(vcpu);
fb3f0f51
RR
254 free_page((unsigned long)vcpu->run);
255}
256EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
257
e930bffe
AA
258#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
259static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
260{
261 return container_of(mn, struct kvm, mmu_notifier);
262}
263
264static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
265 struct mm_struct *mm,
266 unsigned long address)
267{
268 struct kvm *kvm = mmu_notifier_to_kvm(mn);
bc6678a3 269 int need_tlb_flush, idx;
e930bffe
AA
270
271 /*
272 * When ->invalidate_page runs, the linux pte has been zapped
273 * already but the page is still allocated until
274 * ->invalidate_page returns. So if we increase the sequence
275 * here the kvm page fault will notice if the spte can't be
276 * established because the page is going to be freed. If
277 * instead the kvm page fault establishes the spte before
278 * ->invalidate_page runs, kvm_unmap_hva will release it
279 * before returning.
280 *
281 * The sequence increase only need to be seen at spin_unlock
282 * time, and not at spin_lock time.
283 *
284 * Increasing the sequence after the spin_unlock would be
285 * unsafe because the kvm page fault could then establish the
286 * pte after kvm_unmap_hva returned, without noticing the page
287 * is going to be freed.
288 */
bc6678a3 289 idx = srcu_read_lock(&kvm->srcu);
e930bffe 290 spin_lock(&kvm->mmu_lock);
565f3be2 291
e930bffe 292 kvm->mmu_notifier_seq++;
a4ee1ca4 293 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
e930bffe
AA
294 /* we've to flush the tlb before the pages can be freed */
295 if (need_tlb_flush)
296 kvm_flush_remote_tlbs(kvm);
297
565f3be2
TY
298 spin_unlock(&kvm->mmu_lock);
299 srcu_read_unlock(&kvm->srcu, idx);
e930bffe
AA
300}
301
3da0dd43
IE
302static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
303 struct mm_struct *mm,
304 unsigned long address,
305 pte_t pte)
306{
307 struct kvm *kvm = mmu_notifier_to_kvm(mn);
bc6678a3 308 int idx;
3da0dd43 309
bc6678a3 310 idx = srcu_read_lock(&kvm->srcu);
3da0dd43
IE
311 spin_lock(&kvm->mmu_lock);
312 kvm->mmu_notifier_seq++;
313 kvm_set_spte_hva(kvm, address, pte);
314 spin_unlock(&kvm->mmu_lock);
bc6678a3 315 srcu_read_unlock(&kvm->srcu, idx);
3da0dd43
IE
316}
317
e930bffe
AA
318static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
319 struct mm_struct *mm,
320 unsigned long start,
321 unsigned long end)
322{
323 struct kvm *kvm = mmu_notifier_to_kvm(mn);
bc6678a3 324 int need_tlb_flush = 0, idx;
e930bffe 325
bc6678a3 326 idx = srcu_read_lock(&kvm->srcu);
e930bffe
AA
327 spin_lock(&kvm->mmu_lock);
328 /*
329 * The count increase must become visible at unlock time as no
330 * spte can be established without taking the mmu_lock and
331 * count is also read inside the mmu_lock critical section.
332 */
333 kvm->mmu_notifier_count++;
b3ae2096 334 need_tlb_flush = kvm_unmap_hva_range(kvm, start, end);
a4ee1ca4 335 need_tlb_flush |= kvm->tlbs_dirty;
e930bffe
AA
336 /* we've to flush the tlb before the pages can be freed */
337 if (need_tlb_flush)
338 kvm_flush_remote_tlbs(kvm);
565f3be2
TY
339
340 spin_unlock(&kvm->mmu_lock);
341 srcu_read_unlock(&kvm->srcu, idx);
e930bffe
AA
342}
343
344static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
345 struct mm_struct *mm,
346 unsigned long start,
347 unsigned long end)
348{
349 struct kvm *kvm = mmu_notifier_to_kvm(mn);
350
351 spin_lock(&kvm->mmu_lock);
352 /*
353 * This sequence increase will notify the kvm page fault that
354 * the page that is going to be mapped in the spte could have
355 * been freed.
356 */
357 kvm->mmu_notifier_seq++;
a355aa54 358 smp_wmb();
e930bffe
AA
359 /*
360 * The above sequence increase must be visible before the
a355aa54
PM
361 * below count decrease, which is ensured by the smp_wmb above
362 * in conjunction with the smp_rmb in mmu_notifier_retry().
e930bffe
AA
363 */
364 kvm->mmu_notifier_count--;
365 spin_unlock(&kvm->mmu_lock);
366
367 BUG_ON(kvm->mmu_notifier_count < 0);
368}
369
370static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
371 struct mm_struct *mm,
372 unsigned long address)
373{
374 struct kvm *kvm = mmu_notifier_to_kvm(mn);
bc6678a3 375 int young, idx;
e930bffe 376
bc6678a3 377 idx = srcu_read_lock(&kvm->srcu);
e930bffe 378 spin_lock(&kvm->mmu_lock);
e930bffe 379
565f3be2 380 young = kvm_age_hva(kvm, address);
e930bffe
AA
381 if (young)
382 kvm_flush_remote_tlbs(kvm);
383
565f3be2
TY
384 spin_unlock(&kvm->mmu_lock);
385 srcu_read_unlock(&kvm->srcu, idx);
386
e930bffe
AA
387 return young;
388}
389
8ee53820
AA
390static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
391 struct mm_struct *mm,
392 unsigned long address)
393{
394 struct kvm *kvm = mmu_notifier_to_kvm(mn);
395 int young, idx;
396
397 idx = srcu_read_lock(&kvm->srcu);
398 spin_lock(&kvm->mmu_lock);
399 young = kvm_test_age_hva(kvm, address);
400 spin_unlock(&kvm->mmu_lock);
401 srcu_read_unlock(&kvm->srcu, idx);
402
403 return young;
404}
405
85db06e5
MT
406static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
407 struct mm_struct *mm)
408{
409 struct kvm *kvm = mmu_notifier_to_kvm(mn);
eda2beda
LJ
410 int idx;
411
412 idx = srcu_read_lock(&kvm->srcu);
2df72e9b 413 kvm_arch_flush_shadow_all(kvm);
eda2beda 414 srcu_read_unlock(&kvm->srcu, idx);
85db06e5
MT
415}
416
e930bffe
AA
417static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
418 .invalidate_page = kvm_mmu_notifier_invalidate_page,
419 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
420 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
421 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
8ee53820 422 .test_young = kvm_mmu_notifier_test_young,
3da0dd43 423 .change_pte = kvm_mmu_notifier_change_pte,
85db06e5 424 .release = kvm_mmu_notifier_release,
e930bffe 425};
4c07b0a4
AK
426
427static int kvm_init_mmu_notifier(struct kvm *kvm)
428{
429 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
430 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
431}
432
433#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
434
435static int kvm_init_mmu_notifier(struct kvm *kvm)
436{
437 return 0;
438}
439
e930bffe
AA
440#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
441
bf3e05bc
XG
442static void kvm_init_memslots_id(struct kvm *kvm)
443{
444 int i;
445 struct kvm_memslots *slots = kvm->memslots;
446
447 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
f85e2cb5 448 slots->id_to_index[i] = slots->memslots[i].id = i;
bf3e05bc
XG
449}
450
e08b9637 451static struct kvm *kvm_create_vm(unsigned long type)
6aa8b732 452{
d89f5eff
JK
453 int r, i;
454 struct kvm *kvm = kvm_arch_alloc_vm();
6aa8b732 455
d89f5eff
JK
456 if (!kvm)
457 return ERR_PTR(-ENOMEM);
458
e08b9637 459 r = kvm_arch_init_vm(kvm, type);
d89f5eff 460 if (r)
719d93cd 461 goto out_err_no_disable;
10474ae8
AG
462
463 r = hardware_enable_all();
464 if (r)
719d93cd 465 goto out_err_no_disable;
10474ae8 466
75858a84
AK
467#ifdef CONFIG_HAVE_KVM_IRQCHIP
468 INIT_HLIST_HEAD(&kvm->mask_notifier_list);
c77dcacb
PB
469#endif
470#ifdef CONFIG_HAVE_KVM_IRQFD
136bdfee 471 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
75858a84 472#endif
6aa8b732 473
1e702d9a
AW
474 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
475
46a26bf5
MT
476 r = -ENOMEM;
477 kvm->memslots = kzalloc(sizeof(struct kvm_memslots), GFP_KERNEL);
478 if (!kvm->memslots)
719d93cd 479 goto out_err_no_srcu;
bf3e05bc 480 kvm_init_memslots_id(kvm);
bc6678a3 481 if (init_srcu_struct(&kvm->srcu))
719d93cd
CB
482 goto out_err_no_srcu;
483 if (init_srcu_struct(&kvm->irq_srcu))
484 goto out_err_no_irq_srcu;
e93f8a0f
MT
485 for (i = 0; i < KVM_NR_BUSES; i++) {
486 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
487 GFP_KERNEL);
57e7fbee 488 if (!kvm->buses[i])
e93f8a0f 489 goto out_err;
e93f8a0f 490 }
e930bffe 491
74b5c5bf 492 spin_lock_init(&kvm->mmu_lock);
6d4e4c4f
AK
493 kvm->mm = current->mm;
494 atomic_inc(&kvm->mm->mm_count);
d34e6b17 495 kvm_eventfd_init(kvm);
11ec2804 496 mutex_init(&kvm->lock);
60eead79 497 mutex_init(&kvm->irq_lock);
79fac95e 498 mutex_init(&kvm->slots_lock);
d39f13b0 499 atomic_set(&kvm->users_count, 1);
07f0a7bd 500 INIT_LIST_HEAD(&kvm->devices);
74b5c5bf
MW
501
502 r = kvm_init_mmu_notifier(kvm);
503 if (r)
504 goto out_err;
505
2f303b74 506 spin_lock(&kvm_lock);
5e58cfe4 507 list_add(&kvm->vm_list, &vm_list);
2f303b74 508 spin_unlock(&kvm_lock);
d89f5eff 509
f17abe9a 510 return kvm;
10474ae8
AG
511
512out_err:
719d93cd
CB
513 cleanup_srcu_struct(&kvm->irq_srcu);
514out_err_no_irq_srcu:
57e7fbee 515 cleanup_srcu_struct(&kvm->srcu);
719d93cd 516out_err_no_srcu:
10474ae8 517 hardware_disable_all();
719d93cd 518out_err_no_disable:
e93f8a0f
MT
519 for (i = 0; i < KVM_NR_BUSES; i++)
520 kfree(kvm->buses[i]);
46a26bf5 521 kfree(kvm->memslots);
d89f5eff 522 kvm_arch_free_vm(kvm);
10474ae8 523 return ERR_PTR(r);
f17abe9a
AK
524}
525
92eca8fa
TY
526/*
527 * Avoid using vmalloc for a small buffer.
528 * Should not be used when the size is statically known.
529 */
c1a7b32a 530void *kvm_kvzalloc(unsigned long size)
92eca8fa
TY
531{
532 if (size > PAGE_SIZE)
533 return vzalloc(size);
534 else
535 return kzalloc(size, GFP_KERNEL);
536}
537
c1a7b32a 538void kvm_kvfree(const void *addr)
92eca8fa
TY
539{
540 if (is_vmalloc_addr(addr))
541 vfree(addr);
542 else
543 kfree(addr);
544}
545
a36a57b1
TY
546static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
547{
548 if (!memslot->dirty_bitmap)
549 return;
550
92eca8fa 551 kvm_kvfree(memslot->dirty_bitmap);
a36a57b1
TY
552 memslot->dirty_bitmap = NULL;
553}
554
6aa8b732
AK
555/*
556 * Free any memory in @free but not in @dont.
557 */
5587027c 558static void kvm_free_physmem_slot(struct kvm *kvm, struct kvm_memory_slot *free,
6aa8b732
AK
559 struct kvm_memory_slot *dont)
560{
6aa8b732 561 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
a36a57b1 562 kvm_destroy_dirty_bitmap(free);
6aa8b732 563
5587027c 564 kvm_arch_free_memslot(kvm, free, dont);
05da4558 565
6aa8b732 566 free->npages = 0;
6aa8b732
AK
567}
568
7940876e 569static void kvm_free_physmem(struct kvm *kvm)
6aa8b732 570{
46a26bf5 571 struct kvm_memslots *slots = kvm->memslots;
be6ba0f0 572 struct kvm_memory_slot *memslot;
46a26bf5 573
be6ba0f0 574 kvm_for_each_memslot(memslot, slots)
5587027c 575 kvm_free_physmem_slot(kvm, memslot, NULL);
6aa8b732 576
46a26bf5 577 kfree(kvm->memslots);
6aa8b732
AK
578}
579
07f0a7bd
SW
580static void kvm_destroy_devices(struct kvm *kvm)
581{
582 struct list_head *node, *tmp;
583
584 list_for_each_safe(node, tmp, &kvm->devices) {
585 struct kvm_device *dev =
586 list_entry(node, struct kvm_device, vm_node);
587
588 list_del(node);
589 dev->ops->destroy(dev);
590 }
591}
592
f17abe9a
AK
593static void kvm_destroy_vm(struct kvm *kvm)
594{
e93f8a0f 595 int i;
6d4e4c4f
AK
596 struct mm_struct *mm = kvm->mm;
597
ad8ba2cd 598 kvm_arch_sync_events(kvm);
2f303b74 599 spin_lock(&kvm_lock);
133de902 600 list_del(&kvm->vm_list);
2f303b74 601 spin_unlock(&kvm_lock);
399ec807 602 kvm_free_irq_routing(kvm);
e93f8a0f
MT
603 for (i = 0; i < KVM_NR_BUSES; i++)
604 kvm_io_bus_destroy(kvm->buses[i]);
980da6ce 605 kvm_coalesced_mmio_free(kvm);
e930bffe
AA
606#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
607 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
f00be0ca 608#else
2df72e9b 609 kvm_arch_flush_shadow_all(kvm);
5f94c174 610#endif
d19a9cd2 611 kvm_arch_destroy_vm(kvm);
07f0a7bd 612 kvm_destroy_devices(kvm);
d89f5eff 613 kvm_free_physmem(kvm);
820b3fcd 614 cleanup_srcu_struct(&kvm->irq_srcu);
d89f5eff
JK
615 cleanup_srcu_struct(&kvm->srcu);
616 kvm_arch_free_vm(kvm);
10474ae8 617 hardware_disable_all();
6d4e4c4f 618 mmdrop(mm);
f17abe9a
AK
619}
620
d39f13b0
IE
621void kvm_get_kvm(struct kvm *kvm)
622{
623 atomic_inc(&kvm->users_count);
624}
625EXPORT_SYMBOL_GPL(kvm_get_kvm);
626
627void kvm_put_kvm(struct kvm *kvm)
628{
629 if (atomic_dec_and_test(&kvm->users_count))
630 kvm_destroy_vm(kvm);
631}
632EXPORT_SYMBOL_GPL(kvm_put_kvm);
633
634
f17abe9a
AK
635static int kvm_vm_release(struct inode *inode, struct file *filp)
636{
637 struct kvm *kvm = filp->private_data;
638
721eecbf
GH
639 kvm_irqfd_release(kvm);
640
d39f13b0 641 kvm_put_kvm(kvm);
6aa8b732
AK
642 return 0;
643}
644
515a0127
TY
645/*
646 * Allocation size is twice as large as the actual dirty bitmap size.
93474b25 647 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
515a0127 648 */
a36a57b1
TY
649static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
650{
515a0127 651 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
a36a57b1 652
92eca8fa 653 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
a36a57b1
TY
654 if (!memslot->dirty_bitmap)
655 return -ENOMEM;
656
a36a57b1
TY
657 return 0;
658}
659
bf3e05bc
XG
660static int cmp_memslot(const void *slot1, const void *slot2)
661{
662 struct kvm_memory_slot *s1, *s2;
663
664 s1 = (struct kvm_memory_slot *)slot1;
665 s2 = (struct kvm_memory_slot *)slot2;
666
667 if (s1->npages < s2->npages)
668 return 1;
669 if (s1->npages > s2->npages)
670 return -1;
671
672 return 0;
673}
674
675/*
676 * Sort the memslots base on its size, so the larger slots
677 * will get better fit.
678 */
679static void sort_memslots(struct kvm_memslots *slots)
680{
f85e2cb5
XG
681 int i;
682
bf3e05bc
XG
683 sort(slots->memslots, KVM_MEM_SLOTS_NUM,
684 sizeof(struct kvm_memory_slot), cmp_memslot, NULL);
f85e2cb5
XG
685
686 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
687 slots->id_to_index[slots->memslots[i].id] = i;
bf3e05bc
XG
688}
689
7940876e
SH
690static void update_memslots(struct kvm_memslots *slots,
691 struct kvm_memory_slot *new,
692 u64 last_generation)
be593d62
XG
693{
694 if (new) {
695 int id = new->id;
28a37544 696 struct kvm_memory_slot *old = id_to_memslot(slots, id);
bf3e05bc 697 unsigned long npages = old->npages;
be593d62 698
28a37544 699 *old = *new;
bf3e05bc
XG
700 if (new->npages != npages)
701 sort_memslots(slots);
be593d62
XG
702 }
703
116c14c0 704 slots->generation = last_generation + 1;
be593d62
XG
705}
706
a50d64d6
XG
707static int check_memory_region_flags(struct kvm_userspace_memory_region *mem)
708{
4d8b81ab
XG
709 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
710
711#ifdef KVM_CAP_READONLY_MEM
712 valid_flags |= KVM_MEM_READONLY;
713#endif
714
715 if (mem->flags & ~valid_flags)
a50d64d6
XG
716 return -EINVAL;
717
718 return 0;
719}
720
7ec4fb44
GN
721static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
722 struct kvm_memslots *slots, struct kvm_memory_slot *new)
723{
724 struct kvm_memslots *old_memslots = kvm->memslots;
725
726 update_memslots(slots, new, kvm->memslots->generation);
727 rcu_assign_pointer(kvm->memslots, slots);
728 synchronize_srcu_expedited(&kvm->srcu);
e59dbe09
TY
729
730 kvm_arch_memslots_updated(kvm);
731
732 return old_memslots;
7ec4fb44
GN
733}
734
6aa8b732
AK
735/*
736 * Allocate some memory and give it an address in the guest physical address
737 * space.
738 *
739 * Discontiguous memory is allowed, mostly for framebuffers.
f78e0e2e 740 *
10589a46 741 * Must be called holding mmap_sem for write.
6aa8b732 742 */
f78e0e2e 743int __kvm_set_memory_region(struct kvm *kvm,
47ae31e2 744 struct kvm_userspace_memory_region *mem)
6aa8b732 745{
8234b22e 746 int r;
6aa8b732 747 gfn_t base_gfn;
28bcb112 748 unsigned long npages;
a843fac2 749 struct kvm_memory_slot *slot;
6aa8b732 750 struct kvm_memory_slot old, new;
b7f69c55 751 struct kvm_memslots *slots = NULL, *old_memslots;
f64c0398 752 enum kvm_mr_change change;
6aa8b732 753
a50d64d6
XG
754 r = check_memory_region_flags(mem);
755 if (r)
756 goto out;
757
6aa8b732
AK
758 r = -EINVAL;
759 /* General sanity checks */
760 if (mem->memory_size & (PAGE_SIZE - 1))
761 goto out;
762 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
763 goto out;
fa3d315a 764 /* We can read the guest memory with __xxx_user() later on. */
47ae31e2 765 if ((mem->slot < KVM_USER_MEM_SLOTS) &&
fa3d315a 766 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
9e3bb6b6
HC
767 !access_ok(VERIFY_WRITE,
768 (void __user *)(unsigned long)mem->userspace_addr,
769 mem->memory_size)))
78749809 770 goto out;
93a5cef0 771 if (mem->slot >= KVM_MEM_SLOTS_NUM)
6aa8b732
AK
772 goto out;
773 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
774 goto out;
775
a843fac2 776 slot = id_to_memslot(kvm->memslots, mem->slot);
6aa8b732
AK
777 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
778 npages = mem->memory_size >> PAGE_SHIFT;
779
660c22c4
TY
780 r = -EINVAL;
781 if (npages > KVM_MEM_MAX_NR_PAGES)
782 goto out;
783
6aa8b732
AK
784 if (!npages)
785 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
786
a843fac2 787 new = old = *slot;
6aa8b732 788
e36d96f7 789 new.id = mem->slot;
6aa8b732
AK
790 new.base_gfn = base_gfn;
791 new.npages = npages;
792 new.flags = mem->flags;
793
6aa8b732 794 r = -EINVAL;
f64c0398
TY
795 if (npages) {
796 if (!old.npages)
797 change = KVM_MR_CREATE;
798 else { /* Modify an existing slot. */
799 if ((mem->userspace_addr != old.userspace_addr) ||
75d61fbc
TY
800 (npages != old.npages) ||
801 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
f64c0398
TY
802 goto out;
803
804 if (base_gfn != old.base_gfn)
805 change = KVM_MR_MOVE;
806 else if (new.flags != old.flags)
807 change = KVM_MR_FLAGS_ONLY;
808 else { /* Nothing to change. */
809 r = 0;
810 goto out;
811 }
812 }
813 } else if (old.npages) {
814 change = KVM_MR_DELETE;
815 } else /* Modify a non-existent slot: disallowed. */
0ea75e1d 816 goto out;
6aa8b732 817
f64c0398 818 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
0a706bee
TY
819 /* Check for overlaps */
820 r = -EEXIST;
821 kvm_for_each_memslot(slot, kvm->memslots) {
a843fac2
TY
822 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
823 (slot->id == mem->slot))
0a706bee
TY
824 continue;
825 if (!((base_gfn + npages <= slot->base_gfn) ||
826 (base_gfn >= slot->base_gfn + slot->npages)))
827 goto out;
828 }
6aa8b732 829 }
6aa8b732 830
6aa8b732
AK
831 /* Free page dirty bitmap if unneeded */
832 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
8b6d44c7 833 new.dirty_bitmap = NULL;
6aa8b732
AK
834
835 r = -ENOMEM;
f64c0398 836 if (change == KVM_MR_CREATE) {
189a2f7b 837 new.userspace_addr = mem->userspace_addr;
d89cc617 838
5587027c 839 if (kvm_arch_create_memslot(kvm, &new, npages))
db3fe4eb 840 goto out_free;
6aa8b732 841 }
ec04b260 842
6aa8b732
AK
843 /* Allocate page dirty bitmap if needed */
844 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
a36a57b1 845 if (kvm_create_dirty_bitmap(&new) < 0)
f78e0e2e 846 goto out_free;
6aa8b732
AK
847 }
848
f64c0398 849 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
bc6678a3 850 r = -ENOMEM;
6da64fdb
TM
851 slots = kmemdup(kvm->memslots, sizeof(struct kvm_memslots),
852 GFP_KERNEL);
bc6678a3
MT
853 if (!slots)
854 goto out_free;
28a37544
XG
855 slot = id_to_memslot(slots, mem->slot);
856 slot->flags |= KVM_MEMSLOT_INVALID;
857
7ec4fb44 858 old_memslots = install_new_memslots(kvm, slots, NULL);
bc6678a3 859
e40f193f
AW
860 /* slot was deleted or moved, clear iommu mapping */
861 kvm_iommu_unmap_pages(kvm, &old);
12d6e753
MT
862 /* From this point no new shadow pages pointing to a deleted,
863 * or moved, memslot will be created.
bc6678a3
MT
864 *
865 * validation of sp->gfn happens in:
866 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
867 * - kvm_is_visible_gfn (mmu_check_roots)
868 */
2df72e9b 869 kvm_arch_flush_shadow_memslot(kvm, slot);
b7f69c55 870 slots = old_memslots;
bc6678a3 871 }
34d4cb8f 872
7b6195a9 873 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
f7784b8e 874 if (r)
b7f69c55 875 goto out_slots;
f7784b8e 876
bc6678a3 877 r = -ENOMEM;
b7f69c55
AW
878 /*
879 * We can re-use the old_memslots from above, the only difference
880 * from the currently installed memslots is the invalid flag. This
881 * will get overwritten by update_memslots anyway.
882 */
883 if (!slots) {
884 slots = kmemdup(kvm->memslots, sizeof(struct kvm_memslots),
885 GFP_KERNEL);
886 if (!slots)
887 goto out_free;
888 }
bc6678a3
MT
889
890 /* actual memory is freed via old in kvm_free_physmem_slot below */
f64c0398 891 if (change == KVM_MR_DELETE) {
bc6678a3 892 new.dirty_bitmap = NULL;
db3fe4eb 893 memset(&new.arch, 0, sizeof(new.arch));
bc6678a3
MT
894 }
895
7ec4fb44 896 old_memslots = install_new_memslots(kvm, slots, &new);
3ad82a7e 897
8482644a 898 kvm_arch_commit_memory_region(kvm, mem, &old, change);
82ce2c96 899
5587027c 900 kvm_free_physmem_slot(kvm, &old, &new);
bc6678a3
MT
901 kfree(old_memslots);
902
261874b0
AW
903 /*
904 * IOMMU mapping: New slots need to be mapped. Old slots need to be
75d61fbc
TY
905 * un-mapped and re-mapped if their base changes. Since base change
906 * unmapping is handled above with slot deletion, mapping alone is
907 * needed here. Anything else the iommu might care about for existing
908 * slots (size changes, userspace addr changes and read-only flag
909 * changes) is disallowed above, so any other attribute changes getting
910 * here can be skipped.
261874b0 911 */
75d61fbc
TY
912 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
913 r = kvm_iommu_map_pages(kvm, &new);
e0230e13 914 return r;
bc6678a3
MT
915 }
916
6aa8b732
AK
917 return 0;
918
e40f193f
AW
919out_slots:
920 kfree(slots);
f78e0e2e 921out_free:
5587027c 922 kvm_free_physmem_slot(kvm, &new, &old);
6aa8b732
AK
923out:
924 return r;
210c7c4d 925}
f78e0e2e
SY
926EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
927
928int kvm_set_memory_region(struct kvm *kvm,
47ae31e2 929 struct kvm_userspace_memory_region *mem)
f78e0e2e
SY
930{
931 int r;
932
79fac95e 933 mutex_lock(&kvm->slots_lock);
47ae31e2 934 r = __kvm_set_memory_region(kvm, mem);
79fac95e 935 mutex_unlock(&kvm->slots_lock);
f78e0e2e
SY
936 return r;
937}
210c7c4d
IE
938EXPORT_SYMBOL_GPL(kvm_set_memory_region);
939
7940876e
SH
940static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
941 struct kvm_userspace_memory_region *mem)
210c7c4d 942{
bbacc0c1 943 if (mem->slot >= KVM_USER_MEM_SLOTS)
e0d62c7f 944 return -EINVAL;
47ae31e2 945 return kvm_set_memory_region(kvm, mem);
6aa8b732
AK
946}
947
5bb064dc
ZX
948int kvm_get_dirty_log(struct kvm *kvm,
949 struct kvm_dirty_log *log, int *is_dirty)
6aa8b732
AK
950{
951 struct kvm_memory_slot *memslot;
952 int r, i;
87bf6e7d 953 unsigned long n;
6aa8b732
AK
954 unsigned long any = 0;
955
6aa8b732 956 r = -EINVAL;
bbacc0c1 957 if (log->slot >= KVM_USER_MEM_SLOTS)
6aa8b732
AK
958 goto out;
959
28a37544 960 memslot = id_to_memslot(kvm->memslots, log->slot);
6aa8b732
AK
961 r = -ENOENT;
962 if (!memslot->dirty_bitmap)
963 goto out;
964
87bf6e7d 965 n = kvm_dirty_bitmap_bytes(memslot);
6aa8b732 966
cd1a4a98 967 for (i = 0; !any && i < n/sizeof(long); ++i)
6aa8b732
AK
968 any = memslot->dirty_bitmap[i];
969
970 r = -EFAULT;
971 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
972 goto out;
973
5bb064dc
ZX
974 if (any)
975 *is_dirty = 1;
6aa8b732
AK
976
977 r = 0;
6aa8b732 978out:
6aa8b732
AK
979 return r;
980}
2ba9f0d8 981EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
6aa8b732 982
db3fe4eb
TY
983bool kvm_largepages_enabled(void)
984{
985 return largepages_enabled;
986}
987
54dee993
MT
988void kvm_disable_largepages(void)
989{
990 largepages_enabled = false;
991}
992EXPORT_SYMBOL_GPL(kvm_disable_largepages);
993
49c7754c
GN
994struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
995{
996 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
997}
a1f4d395 998EXPORT_SYMBOL_GPL(gfn_to_memslot);
6aa8b732 999
e0d62c7f
IE
1000int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
1001{
bf3e05bc 1002 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
e0d62c7f 1003
bbacc0c1 1004 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
bf3e05bc
XG
1005 memslot->flags & KVM_MEMSLOT_INVALID)
1006 return 0;
e0d62c7f 1007
bf3e05bc 1008 return 1;
e0d62c7f
IE
1009}
1010EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1011
8f0b1ab6
JR
1012unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1013{
1014 struct vm_area_struct *vma;
1015 unsigned long addr, size;
1016
1017 size = PAGE_SIZE;
1018
1019 addr = gfn_to_hva(kvm, gfn);
1020 if (kvm_is_error_hva(addr))
1021 return PAGE_SIZE;
1022
1023 down_read(&current->mm->mmap_sem);
1024 vma = find_vma(current->mm, addr);
1025 if (!vma)
1026 goto out;
1027
1028 size = vma_kernel_pagesize(vma);
1029
1030out:
1031 up_read(&current->mm->mmap_sem);
1032
1033 return size;
1034}
1035
4d8b81ab
XG
1036static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1037{
1038 return slot->flags & KVM_MEM_READONLY;
1039}
1040
4d8b81ab
XG
1041static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1042 gfn_t *nr_pages, bool write)
539cb660 1043{
bc6678a3 1044 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
ca3a490c 1045 return KVM_HVA_ERR_BAD;
48987781 1046
4d8b81ab
XG
1047 if (memslot_is_readonly(slot) && write)
1048 return KVM_HVA_ERR_RO_BAD;
48987781
XG
1049
1050 if (nr_pages)
1051 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1052
4d8b81ab 1053 return __gfn_to_hva_memslot(slot, gfn);
539cb660 1054}
48987781 1055
4d8b81ab
XG
1056static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1057 gfn_t *nr_pages)
1058{
1059 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
539cb660 1060}
48987781 1061
4d8b81ab 1062unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
7940876e 1063 gfn_t gfn)
4d8b81ab
XG
1064{
1065 return gfn_to_hva_many(slot, gfn, NULL);
1066}
1067EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1068
48987781
XG
1069unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1070{
49c7754c 1071 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
48987781 1072}
0d150298 1073EXPORT_SYMBOL_GPL(gfn_to_hva);
539cb660 1074
86ab8cff 1075/*
ba6a3541
PB
1076 * If writable is set to false, the hva returned by this function is only
1077 * allowed to be read.
86ab8cff 1078 */
ba6a3541 1079unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
86ab8cff 1080{
ba6a3541 1081 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
a2ac07fe
GN
1082 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1083
1084 if (!kvm_is_error_hva(hva) && writable)
ba6a3541
PB
1085 *writable = !memslot_is_readonly(slot);
1086
a2ac07fe 1087 return hva;
86ab8cff
XG
1088}
1089
1090static int kvm_read_hva(void *data, void __user *hva, int len)
8030089f 1091{
86ab8cff
XG
1092 return __copy_from_user(data, hva, len);
1093}
1094
1095static int kvm_read_hva_atomic(void *data, void __user *hva, int len)
1096{
1097 return __copy_from_user_inatomic(data, hva, len);
8030089f
GN
1098}
1099
39369f7a 1100static int get_user_page_nowait(struct task_struct *tsk, struct mm_struct *mm,
0857b9e9
GN
1101 unsigned long start, int write, struct page **page)
1102{
1103 int flags = FOLL_TOUCH | FOLL_NOWAIT | FOLL_HWPOISON | FOLL_GET;
1104
1105 if (write)
1106 flags |= FOLL_WRITE;
1107
1108 return __get_user_pages(tsk, mm, start, 1, flags, page, NULL, NULL);
1109}
1110
fafc3dba
HY
1111static inline int check_user_page_hwpoison(unsigned long addr)
1112{
1113 int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE;
1114
1115 rc = __get_user_pages(current, current->mm, addr, 1,
1116 flags, NULL, NULL, NULL);
1117 return rc == -EHWPOISON;
1118}
1119
2fc84311
XG
1120/*
1121 * The atomic path to get the writable pfn which will be stored in @pfn,
1122 * true indicates success, otherwise false is returned.
1123 */
1124static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
1125 bool write_fault, bool *writable, pfn_t *pfn)
954bbbc2 1126{
8d4e1288 1127 struct page *page[1];
2fc84311 1128 int npages;
954bbbc2 1129
2fc84311
XG
1130 if (!(async || atomic))
1131 return false;
af585b92 1132
12ce13fe
XG
1133 /*
1134 * Fast pin a writable pfn only if it is a write fault request
1135 * or the caller allows to map a writable pfn for a read fault
1136 * request.
1137 */
1138 if (!(write_fault || writable))
1139 return false;
612819c3 1140
2fc84311
XG
1141 npages = __get_user_pages_fast(addr, 1, 1, page);
1142 if (npages == 1) {
1143 *pfn = page_to_pfn(page[0]);
612819c3 1144
2fc84311
XG
1145 if (writable)
1146 *writable = true;
1147 return true;
1148 }
af585b92 1149
2fc84311
XG
1150 return false;
1151}
612819c3 1152
2fc84311
XG
1153/*
1154 * The slow path to get the pfn of the specified host virtual address,
1155 * 1 indicates success, -errno is returned if error is detected.
1156 */
1157static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
1158 bool *writable, pfn_t *pfn)
1159{
1160 struct page *page[1];
1161 int npages = 0;
612819c3 1162
2fc84311
XG
1163 might_sleep();
1164
1165 if (writable)
1166 *writable = write_fault;
1167
1168 if (async) {
1169 down_read(&current->mm->mmap_sem);
1170 npages = get_user_page_nowait(current, current->mm,
1171 addr, write_fault, page);
1172 up_read(&current->mm->mmap_sem);
1173 } else
1174 npages = get_user_pages_fast(addr, 1, write_fault,
1175 page);
1176 if (npages != 1)
1177 return npages;
1178
1179 /* map read fault as writable if possible */
12ce13fe 1180 if (unlikely(!write_fault) && writable) {
2fc84311
XG
1181 struct page *wpage[1];
1182
1183 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1184 if (npages == 1) {
1185 *writable = true;
1186 put_page(page[0]);
1187 page[0] = wpage[0];
612819c3 1188 }
2fc84311
XG
1189
1190 npages = 1;
887c08ac 1191 }
2fc84311
XG
1192 *pfn = page_to_pfn(page[0]);
1193 return npages;
1194}
539cb660 1195
4d8b81ab
XG
1196static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1197{
1198 if (unlikely(!(vma->vm_flags & VM_READ)))
1199 return false;
2e2e3738 1200
4d8b81ab
XG
1201 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1202 return false;
887c08ac 1203
4d8b81ab
XG
1204 return true;
1205}
bf998156 1206
12ce13fe
XG
1207/*
1208 * Pin guest page in memory and return its pfn.
1209 * @addr: host virtual address which maps memory to the guest
1210 * @atomic: whether this function can sleep
1211 * @async: whether this function need to wait IO complete if the
1212 * host page is not in the memory
1213 * @write_fault: whether we should get a writable host page
1214 * @writable: whether it allows to map a writable host page for !@write_fault
1215 *
1216 * The function will map a writable host page for these two cases:
1217 * 1): @write_fault = true
1218 * 2): @write_fault = false && @writable, @writable will tell the caller
1219 * whether the mapping is writable.
1220 */
2fc84311
XG
1221static pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
1222 bool write_fault, bool *writable)
1223{
1224 struct vm_area_struct *vma;
1225 pfn_t pfn = 0;
1226 int npages;
2e2e3738 1227
2fc84311
XG
1228 /* we can do it either atomically or asynchronously, not both */
1229 BUG_ON(atomic && async);
8d4e1288 1230
2fc84311
XG
1231 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1232 return pfn;
1233
1234 if (atomic)
1235 return KVM_PFN_ERR_FAULT;
1236
1237 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1238 if (npages == 1)
1239 return pfn;
8d4e1288 1240
2fc84311
XG
1241 down_read(&current->mm->mmap_sem);
1242 if (npages == -EHWPOISON ||
1243 (!async && check_user_page_hwpoison(addr))) {
1244 pfn = KVM_PFN_ERR_HWPOISON;
1245 goto exit;
1246 }
1247
1248 vma = find_vma_intersection(current->mm, addr, addr + 1);
1249
1250 if (vma == NULL)
1251 pfn = KVM_PFN_ERR_FAULT;
1252 else if ((vma->vm_flags & VM_PFNMAP)) {
1253 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1254 vma->vm_pgoff;
1255 BUG_ON(!kvm_is_mmio_pfn(pfn));
1256 } else {
4d8b81ab 1257 if (async && vma_is_valid(vma, write_fault))
2fc84311
XG
1258 *async = true;
1259 pfn = KVM_PFN_ERR_FAULT;
1260 }
1261exit:
1262 up_read(&current->mm->mmap_sem);
2e2e3738 1263 return pfn;
35149e21
AL
1264}
1265
4d8b81ab
XG
1266static pfn_t
1267__gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, bool atomic,
1268 bool *async, bool write_fault, bool *writable)
887c08ac 1269{
4d8b81ab
XG
1270 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1271
1272 if (addr == KVM_HVA_ERR_RO_BAD)
1273 return KVM_PFN_ERR_RO_FAULT;
1274
1275 if (kvm_is_error_hva(addr))
81c52c56 1276 return KVM_PFN_NOSLOT;
4d8b81ab
XG
1277
1278 /* Do not map writable pfn in the readonly memslot. */
1279 if (writable && memslot_is_readonly(slot)) {
1280 *writable = false;
1281 writable = NULL;
1282 }
1283
1284 return hva_to_pfn(addr, atomic, async, write_fault,
1285 writable);
887c08ac 1286}
887c08ac 1287
612819c3
MT
1288static pfn_t __gfn_to_pfn(struct kvm *kvm, gfn_t gfn, bool atomic, bool *async,
1289 bool write_fault, bool *writable)
506f0d6f 1290{
4d8b81ab 1291 struct kvm_memory_slot *slot;
506f0d6f 1292
af585b92
GN
1293 if (async)
1294 *async = false;
1295
4d8b81ab 1296 slot = gfn_to_memslot(kvm, gfn);
506f0d6f 1297
4d8b81ab
XG
1298 return __gfn_to_pfn_memslot(slot, gfn, atomic, async, write_fault,
1299 writable);
365fb3fd
XG
1300}
1301
1302pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1303{
612819c3 1304 return __gfn_to_pfn(kvm, gfn, true, NULL, true, NULL);
365fb3fd
XG
1305}
1306EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1307
612819c3
MT
1308pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
1309 bool write_fault, bool *writable)
af585b92 1310{
612819c3 1311 return __gfn_to_pfn(kvm, gfn, false, async, write_fault, writable);
af585b92
GN
1312}
1313EXPORT_SYMBOL_GPL(gfn_to_pfn_async);
1314
365fb3fd
XG
1315pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1316{
612819c3 1317 return __gfn_to_pfn(kvm, gfn, false, NULL, true, NULL);
506f0d6f 1318}
35149e21
AL
1319EXPORT_SYMBOL_GPL(gfn_to_pfn);
1320
612819c3
MT
1321pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1322 bool *writable)
1323{
1324 return __gfn_to_pfn(kvm, gfn, false, NULL, write_fault, writable);
1325}
1326EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1327
d5661048 1328pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
506f0d6f 1329{
4d8b81ab 1330 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
506f0d6f
MT
1331}
1332
037d92dc 1333pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
506f0d6f 1334{
4d8b81ab 1335 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
506f0d6f 1336}
037d92dc 1337EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
506f0d6f 1338
48987781
XG
1339int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
1340 int nr_pages)
1341{
1342 unsigned long addr;
1343 gfn_t entry;
1344
49c7754c 1345 addr = gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, &entry);
48987781
XG
1346 if (kvm_is_error_hva(addr))
1347 return -1;
1348
1349 if (entry < nr_pages)
1350 return 0;
1351
1352 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1353}
1354EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1355
a2766325
XG
1356static struct page *kvm_pfn_to_page(pfn_t pfn)
1357{
81c52c56 1358 if (is_error_noslot_pfn(pfn))
cb9aaa30 1359 return KVM_ERR_PTR_BAD_PAGE;
a2766325 1360
cb9aaa30
XG
1361 if (kvm_is_mmio_pfn(pfn)) {
1362 WARN_ON(1);
6cede2e6 1363 return KVM_ERR_PTR_BAD_PAGE;
cb9aaa30 1364 }
a2766325
XG
1365
1366 return pfn_to_page(pfn);
1367}
1368
35149e21
AL
1369struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1370{
2e2e3738
AL
1371 pfn_t pfn;
1372
1373 pfn = gfn_to_pfn(kvm, gfn);
2e2e3738 1374
a2766325 1375 return kvm_pfn_to_page(pfn);
954bbbc2 1376}
aab61cc0 1377
954bbbc2
AK
1378EXPORT_SYMBOL_GPL(gfn_to_page);
1379
b4231d61
IE
1380void kvm_release_page_clean(struct page *page)
1381{
32cad84f
XG
1382 WARN_ON(is_error_page(page));
1383
35149e21 1384 kvm_release_pfn_clean(page_to_pfn(page));
b4231d61
IE
1385}
1386EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1387
35149e21
AL
1388void kvm_release_pfn_clean(pfn_t pfn)
1389{
81c52c56 1390 if (!is_error_noslot_pfn(pfn) && !kvm_is_mmio_pfn(pfn))
2e2e3738 1391 put_page(pfn_to_page(pfn));
35149e21
AL
1392}
1393EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1394
b4231d61 1395void kvm_release_page_dirty(struct page *page)
8a7ae055 1396{
a2766325
XG
1397 WARN_ON(is_error_page(page));
1398
35149e21
AL
1399 kvm_release_pfn_dirty(page_to_pfn(page));
1400}
1401EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
1402
7940876e 1403static void kvm_release_pfn_dirty(pfn_t pfn)
35149e21
AL
1404{
1405 kvm_set_pfn_dirty(pfn);
1406 kvm_release_pfn_clean(pfn);
1407}
35149e21
AL
1408
1409void kvm_set_pfn_dirty(pfn_t pfn)
1410{
c77fb9dc 1411 if (!kvm_is_mmio_pfn(pfn)) {
2e2e3738
AL
1412 struct page *page = pfn_to_page(pfn);
1413 if (!PageReserved(page))
1414 SetPageDirty(page);
1415 }
8a7ae055 1416}
35149e21
AL
1417EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1418
1419void kvm_set_pfn_accessed(pfn_t pfn)
1420{
c77fb9dc 1421 if (!kvm_is_mmio_pfn(pfn))
2e2e3738 1422 mark_page_accessed(pfn_to_page(pfn));
35149e21
AL
1423}
1424EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1425
1426void kvm_get_pfn(pfn_t pfn)
1427{
c77fb9dc 1428 if (!kvm_is_mmio_pfn(pfn))
2e2e3738 1429 get_page(pfn_to_page(pfn));
35149e21
AL
1430}
1431EXPORT_SYMBOL_GPL(kvm_get_pfn);
8a7ae055 1432
195aefde
IE
1433static int next_segment(unsigned long len, int offset)
1434{
1435 if (len > PAGE_SIZE - offset)
1436 return PAGE_SIZE - offset;
1437 else
1438 return len;
1439}
1440
1441int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1442 int len)
1443{
e0506bcb
IE
1444 int r;
1445 unsigned long addr;
195aefde 1446
ba6a3541 1447 addr = gfn_to_hva_prot(kvm, gfn, NULL);
e0506bcb
IE
1448 if (kvm_is_error_hva(addr))
1449 return -EFAULT;
86ab8cff 1450 r = kvm_read_hva(data, (void __user *)addr + offset, len);
e0506bcb 1451 if (r)
195aefde 1452 return -EFAULT;
195aefde
IE
1453 return 0;
1454}
1455EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1456
1457int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1458{
1459 gfn_t gfn = gpa >> PAGE_SHIFT;
1460 int seg;
1461 int offset = offset_in_page(gpa);
1462 int ret;
1463
1464 while ((seg = next_segment(len, offset)) != 0) {
1465 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1466 if (ret < 0)
1467 return ret;
1468 offset = 0;
1469 len -= seg;
1470 data += seg;
1471 ++gfn;
1472 }
1473 return 0;
1474}
1475EXPORT_SYMBOL_GPL(kvm_read_guest);
1476
7ec54588
MT
1477int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1478 unsigned long len)
1479{
1480 int r;
1481 unsigned long addr;
1482 gfn_t gfn = gpa >> PAGE_SHIFT;
1483 int offset = offset_in_page(gpa);
1484
ba6a3541 1485 addr = gfn_to_hva_prot(kvm, gfn, NULL);
7ec54588
MT
1486 if (kvm_is_error_hva(addr))
1487 return -EFAULT;
0aac03f0 1488 pagefault_disable();
86ab8cff 1489 r = kvm_read_hva_atomic(data, (void __user *)addr + offset, len);
0aac03f0 1490 pagefault_enable();
7ec54588
MT
1491 if (r)
1492 return -EFAULT;
1493 return 0;
1494}
1495EXPORT_SYMBOL(kvm_read_guest_atomic);
1496
195aefde
IE
1497int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1498 int offset, int len)
1499{
e0506bcb
IE
1500 int r;
1501 unsigned long addr;
195aefde 1502
e0506bcb
IE
1503 addr = gfn_to_hva(kvm, gfn);
1504 if (kvm_is_error_hva(addr))
1505 return -EFAULT;
8b0cedff 1506 r = __copy_to_user((void __user *)addr + offset, data, len);
e0506bcb 1507 if (r)
195aefde 1508 return -EFAULT;
195aefde
IE
1509 mark_page_dirty(kvm, gfn);
1510 return 0;
1511}
1512EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1513
1514int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1515 unsigned long len)
1516{
1517 gfn_t gfn = gpa >> PAGE_SHIFT;
1518 int seg;
1519 int offset = offset_in_page(gpa);
1520 int ret;
1521
1522 while ((seg = next_segment(len, offset)) != 0) {
1523 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1524 if (ret < 0)
1525 return ret;
1526 offset = 0;
1527 len -= seg;
1528 data += seg;
1529 ++gfn;
1530 }
1531 return 0;
1532}
1533
49c7754c 1534int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
8f964525 1535 gpa_t gpa, unsigned long len)
49c7754c
GN
1536{
1537 struct kvm_memslots *slots = kvm_memslots(kvm);
1538 int offset = offset_in_page(gpa);
8f964525
AH
1539 gfn_t start_gfn = gpa >> PAGE_SHIFT;
1540 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
1541 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
1542 gfn_t nr_pages_avail;
49c7754c
GN
1543
1544 ghc->gpa = gpa;
1545 ghc->generation = slots->generation;
8f964525
AH
1546 ghc->len = len;
1547 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
1548 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, &nr_pages_avail);
1549 if (!kvm_is_error_hva(ghc->hva) && nr_pages_avail >= nr_pages_needed) {
49c7754c 1550 ghc->hva += offset;
8f964525
AH
1551 } else {
1552 /*
1553 * If the requested region crosses two memslots, we still
1554 * verify that the entire region is valid here.
1555 */
1556 while (start_gfn <= end_gfn) {
1557 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
1558 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
1559 &nr_pages_avail);
1560 if (kvm_is_error_hva(ghc->hva))
1561 return -EFAULT;
1562 start_gfn += nr_pages_avail;
1563 }
1564 /* Use the slow path for cross page reads and writes. */
1565 ghc->memslot = NULL;
1566 }
49c7754c
GN
1567 return 0;
1568}
1569EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1570
1571int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1572 void *data, unsigned long len)
1573{
1574 struct kvm_memslots *slots = kvm_memslots(kvm);
1575 int r;
1576
8f964525
AH
1577 BUG_ON(len > ghc->len);
1578
49c7754c 1579 if (slots->generation != ghc->generation)
8f964525
AH
1580 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1581
1582 if (unlikely(!ghc->memslot))
1583 return kvm_write_guest(kvm, ghc->gpa, data, len);
49c7754c
GN
1584
1585 if (kvm_is_error_hva(ghc->hva))
1586 return -EFAULT;
1587
8b0cedff 1588 r = __copy_to_user((void __user *)ghc->hva, data, len);
49c7754c
GN
1589 if (r)
1590 return -EFAULT;
1591 mark_page_dirty_in_slot(kvm, ghc->memslot, ghc->gpa >> PAGE_SHIFT);
1592
1593 return 0;
1594}
1595EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1596
e03b644f
GN
1597int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1598 void *data, unsigned long len)
1599{
1600 struct kvm_memslots *slots = kvm_memslots(kvm);
1601 int r;
1602
8f964525
AH
1603 BUG_ON(len > ghc->len);
1604
e03b644f 1605 if (slots->generation != ghc->generation)
8f964525
AH
1606 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1607
1608 if (unlikely(!ghc->memslot))
1609 return kvm_read_guest(kvm, ghc->gpa, data, len);
e03b644f
GN
1610
1611 if (kvm_is_error_hva(ghc->hva))
1612 return -EFAULT;
1613
1614 r = __copy_from_user(data, (void __user *)ghc->hva, len);
1615 if (r)
1616 return -EFAULT;
1617
1618 return 0;
1619}
1620EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
1621
195aefde
IE
1622int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1623{
8a3caa6d
HC
1624 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
1625
1626 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
195aefde
IE
1627}
1628EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1629
1630int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1631{
1632 gfn_t gfn = gpa >> PAGE_SHIFT;
1633 int seg;
1634 int offset = offset_in_page(gpa);
1635 int ret;
1636
1637 while ((seg = next_segment(len, offset)) != 0) {
1638 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1639 if (ret < 0)
1640 return ret;
1641 offset = 0;
1642 len -= seg;
1643 ++gfn;
1644 }
1645 return 0;
1646}
1647EXPORT_SYMBOL_GPL(kvm_clear_guest);
1648
7940876e
SH
1649static void mark_page_dirty_in_slot(struct kvm *kvm,
1650 struct kvm_memory_slot *memslot,
1651 gfn_t gfn)
6aa8b732 1652{
7e9d619d
RR
1653 if (memslot && memslot->dirty_bitmap) {
1654 unsigned long rel_gfn = gfn - memslot->base_gfn;
6aa8b732 1655
b74ca3b3 1656 set_bit_le(rel_gfn, memslot->dirty_bitmap);
6aa8b732
AK
1657 }
1658}
1659
49c7754c
GN
1660void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1661{
1662 struct kvm_memory_slot *memslot;
1663
1664 memslot = gfn_to_memslot(kvm, gfn);
1665 mark_page_dirty_in_slot(kvm, memslot, gfn);
1666}
2ba9f0d8 1667EXPORT_SYMBOL_GPL(mark_page_dirty);
49c7754c 1668
b6958ce4
ED
1669/*
1670 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1671 */
8776e519 1672void kvm_vcpu_block(struct kvm_vcpu *vcpu)
d3bef15f 1673{
e5c239cf
MT
1674 DEFINE_WAIT(wait);
1675
1676 for (;;) {
1677 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
1678
a1b37100 1679 if (kvm_arch_vcpu_runnable(vcpu)) {
a8eeb04a 1680 kvm_make_request(KVM_REQ_UNHALT, vcpu);
e5c239cf 1681 break;
d7690175 1682 }
09cec754
GN
1683 if (kvm_cpu_has_pending_timer(vcpu))
1684 break;
e5c239cf
MT
1685 if (signal_pending(current))
1686 break;
1687
b6958ce4 1688 schedule();
b6958ce4 1689 }
d3bef15f 1690
e5c239cf 1691 finish_wait(&vcpu->wq, &wait);
b6958ce4 1692}
2ba9f0d8 1693EXPORT_SYMBOL_GPL(kvm_vcpu_block);
b6958ce4 1694
8c84780d 1695#ifndef CONFIG_S390
b6d33834
CD
1696/*
1697 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
1698 */
1699void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
1700{
1701 int me;
1702 int cpu = vcpu->cpu;
1703 wait_queue_head_t *wqp;
1704
1705 wqp = kvm_arch_vcpu_wq(vcpu);
1706 if (waitqueue_active(wqp)) {
1707 wake_up_interruptible(wqp);
1708 ++vcpu->stat.halt_wakeup;
1709 }
1710
1711 me = get_cpu();
1712 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
1713 if (kvm_arch_vcpu_should_kick(vcpu))
1714 smp_send_reschedule(cpu);
1715 put_cpu();
1716}
a20ed54d 1717EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
8c84780d 1718#endif /* !CONFIG_S390 */
b6d33834 1719
fa93384f 1720int kvm_vcpu_yield_to(struct kvm_vcpu *target)
41628d33
KW
1721{
1722 struct pid *pid;
1723 struct task_struct *task = NULL;
fa93384f 1724 int ret = 0;
41628d33
KW
1725
1726 rcu_read_lock();
1727 pid = rcu_dereference(target->pid);
1728 if (pid)
1729 task = get_pid_task(target->pid, PIDTYPE_PID);
1730 rcu_read_unlock();
1731 if (!task)
c45c528e 1732 return ret;
41628d33
KW
1733 if (task->flags & PF_VCPU) {
1734 put_task_struct(task);
c45c528e 1735 return ret;
41628d33 1736 }
c45c528e 1737 ret = yield_to(task, 1);
41628d33 1738 put_task_struct(task);
c45c528e
R
1739
1740 return ret;
41628d33
KW
1741}
1742EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
1743
06e48c51
R
1744/*
1745 * Helper that checks whether a VCPU is eligible for directed yield.
1746 * Most eligible candidate to yield is decided by following heuristics:
1747 *
1748 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
1749 * (preempted lock holder), indicated by @in_spin_loop.
1750 * Set at the beiginning and cleared at the end of interception/PLE handler.
1751 *
1752 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
1753 * chance last time (mostly it has become eligible now since we have probably
1754 * yielded to lockholder in last iteration. This is done by toggling
1755 * @dy_eligible each time a VCPU checked for eligibility.)
1756 *
1757 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
1758 * to preempted lock-holder could result in wrong VCPU selection and CPU
1759 * burning. Giving priority for a potential lock-holder increases lock
1760 * progress.
1761 *
1762 * Since algorithm is based on heuristics, accessing another VCPU data without
1763 * locking does not harm. It may result in trying to yield to same VCPU, fail
1764 * and continue with next VCPU and so on.
1765 */
7940876e 1766static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
06e48c51 1767{
4a55dd72 1768#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
06e48c51
R
1769 bool eligible;
1770
1771 eligible = !vcpu->spin_loop.in_spin_loop ||
1772 (vcpu->spin_loop.in_spin_loop &&
1773 vcpu->spin_loop.dy_eligible);
1774
1775 if (vcpu->spin_loop.in_spin_loop)
1776 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
1777
1778 return eligible;
4a55dd72
SW
1779#else
1780 return true;
06e48c51 1781#endif
4a55dd72 1782}
c45c528e 1783
217ece61 1784void kvm_vcpu_on_spin(struct kvm_vcpu *me)
d255f4f2 1785{
217ece61
RR
1786 struct kvm *kvm = me->kvm;
1787 struct kvm_vcpu *vcpu;
1788 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
1789 int yielded = 0;
c45c528e 1790 int try = 3;
217ece61
RR
1791 int pass;
1792 int i;
d255f4f2 1793
4c088493 1794 kvm_vcpu_set_in_spin_loop(me, true);
217ece61
RR
1795 /*
1796 * We boost the priority of a VCPU that is runnable but not
1797 * currently running, because it got preempted by something
1798 * else and called schedule in __vcpu_run. Hopefully that
1799 * VCPU is holding the lock that we need and will release it.
1800 * We approximate round-robin by starting at the last boosted VCPU.
1801 */
c45c528e 1802 for (pass = 0; pass < 2 && !yielded && try; pass++) {
217ece61 1803 kvm_for_each_vcpu(i, vcpu, kvm) {
5cfc2aab 1804 if (!pass && i <= last_boosted_vcpu) {
217ece61
RR
1805 i = last_boosted_vcpu;
1806 continue;
1807 } else if (pass && i > last_boosted_vcpu)
1808 break;
7bc7ae25
R
1809 if (!ACCESS_ONCE(vcpu->preempted))
1810 continue;
217ece61
RR
1811 if (vcpu == me)
1812 continue;
98f4a146 1813 if (waitqueue_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
217ece61 1814 continue;
06e48c51
R
1815 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
1816 continue;
c45c528e
R
1817
1818 yielded = kvm_vcpu_yield_to(vcpu);
1819 if (yielded > 0) {
217ece61 1820 kvm->last_boosted_vcpu = i;
217ece61 1821 break;
c45c528e
R
1822 } else if (yielded < 0) {
1823 try--;
1824 if (!try)
1825 break;
217ece61 1826 }
217ece61
RR
1827 }
1828 }
4c088493 1829 kvm_vcpu_set_in_spin_loop(me, false);
06e48c51
R
1830
1831 /* Ensure vcpu is not eligible during next spinloop */
1832 kvm_vcpu_set_dy_eligible(me, false);
d255f4f2
ZE
1833}
1834EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
1835
e4a533a4 1836static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
9a2bb7f4
AK
1837{
1838 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
9a2bb7f4
AK
1839 struct page *page;
1840
e4a533a4 1841 if (vmf->pgoff == 0)
039576c0 1842 page = virt_to_page(vcpu->run);
09566765 1843#ifdef CONFIG_X86
e4a533a4 1844 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
ad312c7c 1845 page = virt_to_page(vcpu->arch.pio_data);
5f94c174
LV
1846#endif
1847#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1848 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1849 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
09566765 1850#endif
039576c0 1851 else
5b1c1493 1852 return kvm_arch_vcpu_fault(vcpu, vmf);
9a2bb7f4 1853 get_page(page);
e4a533a4 1854 vmf->page = page;
1855 return 0;
9a2bb7f4
AK
1856}
1857
f0f37e2f 1858static const struct vm_operations_struct kvm_vcpu_vm_ops = {
e4a533a4 1859 .fault = kvm_vcpu_fault,
9a2bb7f4
AK
1860};
1861
1862static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1863{
1864 vma->vm_ops = &kvm_vcpu_vm_ops;
1865 return 0;
1866}
1867
bccf2150
AK
1868static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1869{
1870 struct kvm_vcpu *vcpu = filp->private_data;
1871
66c0b394 1872 kvm_put_kvm(vcpu->kvm);
bccf2150
AK
1873 return 0;
1874}
1875
3d3aab1b 1876static struct file_operations kvm_vcpu_fops = {
bccf2150
AK
1877 .release = kvm_vcpu_release,
1878 .unlocked_ioctl = kvm_vcpu_ioctl,
1dda606c
AG
1879#ifdef CONFIG_COMPAT
1880 .compat_ioctl = kvm_vcpu_compat_ioctl,
1881#endif
9a2bb7f4 1882 .mmap = kvm_vcpu_mmap,
6038f373 1883 .llseek = noop_llseek,
bccf2150
AK
1884};
1885
1886/*
1887 * Allocates an inode for the vcpu.
1888 */
1889static int create_vcpu_fd(struct kvm_vcpu *vcpu)
1890{
24009b05 1891 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
bccf2150
AK
1892}
1893
c5ea7660
AK
1894/*
1895 * Creates some virtual cpus. Good luck creating more than one.
1896 */
73880c80 1897static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
c5ea7660
AK
1898{
1899 int r;
988a2cae 1900 struct kvm_vcpu *vcpu, *v;
c5ea7660 1901
338c7dba
AH
1902 if (id >= KVM_MAX_VCPUS)
1903 return -EINVAL;
1904
73880c80 1905 vcpu = kvm_arch_vcpu_create(kvm, id);
fb3f0f51
RR
1906 if (IS_ERR(vcpu))
1907 return PTR_ERR(vcpu);
c5ea7660 1908
15ad7146
AK
1909 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
1910
26e5215f
AK
1911 r = kvm_arch_vcpu_setup(vcpu);
1912 if (r)
d780592b 1913 goto vcpu_destroy;
26e5215f 1914
11ec2804 1915 mutex_lock(&kvm->lock);
3e515705
AK
1916 if (!kvm_vcpu_compatible(vcpu)) {
1917 r = -EINVAL;
1918 goto unlock_vcpu_destroy;
1919 }
73880c80
GN
1920 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
1921 r = -EINVAL;
d780592b 1922 goto unlock_vcpu_destroy;
fb3f0f51 1923 }
73880c80 1924
988a2cae
GN
1925 kvm_for_each_vcpu(r, v, kvm)
1926 if (v->vcpu_id == id) {
73880c80 1927 r = -EEXIST;
d780592b 1928 goto unlock_vcpu_destroy;
73880c80
GN
1929 }
1930
1931 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
c5ea7660 1932
fb3f0f51 1933 /* Now it's all set up, let userspace reach it */
66c0b394 1934 kvm_get_kvm(kvm);
bccf2150 1935 r = create_vcpu_fd(vcpu);
73880c80
GN
1936 if (r < 0) {
1937 kvm_put_kvm(kvm);
d780592b 1938 goto unlock_vcpu_destroy;
73880c80
GN
1939 }
1940
1941 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
1942 smp_wmb();
1943 atomic_inc(&kvm->online_vcpus);
1944
73880c80 1945 mutex_unlock(&kvm->lock);
42897d86 1946 kvm_arch_vcpu_postcreate(vcpu);
fb3f0f51 1947 return r;
39c3b86e 1948
d780592b 1949unlock_vcpu_destroy:
7d8fece6 1950 mutex_unlock(&kvm->lock);
d780592b 1951vcpu_destroy:
d40ccc62 1952 kvm_arch_vcpu_destroy(vcpu);
c5ea7660
AK
1953 return r;
1954}
1955
1961d276
AK
1956static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
1957{
1958 if (sigset) {
1959 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
1960 vcpu->sigset_active = 1;
1961 vcpu->sigset = *sigset;
1962 } else
1963 vcpu->sigset_active = 0;
1964 return 0;
1965}
1966
bccf2150
AK
1967static long kvm_vcpu_ioctl(struct file *filp,
1968 unsigned int ioctl, unsigned long arg)
6aa8b732 1969{
bccf2150 1970 struct kvm_vcpu *vcpu = filp->private_data;
2f366987 1971 void __user *argp = (void __user *)arg;
313a3dc7 1972 int r;
fa3795a7
DH
1973 struct kvm_fpu *fpu = NULL;
1974 struct kvm_sregs *kvm_sregs = NULL;
6aa8b732 1975
6d4e4c4f
AK
1976 if (vcpu->kvm->mm != current->mm)
1977 return -EIO;
2122ff5e 1978
2f4d9b54 1979#if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
2122ff5e
AK
1980 /*
1981 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
1982 * so vcpu_load() would break it.
1983 */
1984 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_INTERRUPT)
1985 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
1986#endif
1987
1988
9fc77441
MT
1989 r = vcpu_load(vcpu);
1990 if (r)
1991 return r;
6aa8b732 1992 switch (ioctl) {
9a2bb7f4 1993 case KVM_RUN:
f0fe5108
AK
1994 r = -EINVAL;
1995 if (arg)
1996 goto out;
b6c7a5dc 1997 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
64be5007 1998 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
6aa8b732 1999 break;
6aa8b732 2000 case KVM_GET_REGS: {
3e4bb3ac 2001 struct kvm_regs *kvm_regs;
6aa8b732 2002
3e4bb3ac
XZ
2003 r = -ENOMEM;
2004 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2005 if (!kvm_regs)
6aa8b732 2006 goto out;
3e4bb3ac
XZ
2007 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
2008 if (r)
2009 goto out_free1;
6aa8b732 2010 r = -EFAULT;
3e4bb3ac
XZ
2011 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2012 goto out_free1;
6aa8b732 2013 r = 0;
3e4bb3ac
XZ
2014out_free1:
2015 kfree(kvm_regs);
6aa8b732
AK
2016 break;
2017 }
2018 case KVM_SET_REGS: {
3e4bb3ac 2019 struct kvm_regs *kvm_regs;
6aa8b732 2020
3e4bb3ac 2021 r = -ENOMEM;
ff5c2c03
SL
2022 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2023 if (IS_ERR(kvm_regs)) {
2024 r = PTR_ERR(kvm_regs);
6aa8b732 2025 goto out;
ff5c2c03 2026 }
3e4bb3ac 2027 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
3e4bb3ac 2028 kfree(kvm_regs);
6aa8b732
AK
2029 break;
2030 }
2031 case KVM_GET_SREGS: {
fa3795a7
DH
2032 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2033 r = -ENOMEM;
2034 if (!kvm_sregs)
2035 goto out;
2036 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
6aa8b732
AK
2037 if (r)
2038 goto out;
2039 r = -EFAULT;
fa3795a7 2040 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
6aa8b732
AK
2041 goto out;
2042 r = 0;
2043 break;
2044 }
2045 case KVM_SET_SREGS: {
ff5c2c03
SL
2046 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2047 if (IS_ERR(kvm_sregs)) {
2048 r = PTR_ERR(kvm_sregs);
18595411 2049 kvm_sregs = NULL;
6aa8b732 2050 goto out;
ff5c2c03 2051 }
fa3795a7 2052 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
6aa8b732
AK
2053 break;
2054 }
62d9f0db
MT
2055 case KVM_GET_MP_STATE: {
2056 struct kvm_mp_state mp_state;
2057
2058 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2059 if (r)
2060 goto out;
2061 r = -EFAULT;
2062 if (copy_to_user(argp, &mp_state, sizeof mp_state))
2063 goto out;
2064 r = 0;
2065 break;
2066 }
2067 case KVM_SET_MP_STATE: {
2068 struct kvm_mp_state mp_state;
2069
2070 r = -EFAULT;
2071 if (copy_from_user(&mp_state, argp, sizeof mp_state))
2072 goto out;
2073 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
62d9f0db
MT
2074 break;
2075 }
6aa8b732
AK
2076 case KVM_TRANSLATE: {
2077 struct kvm_translation tr;
2078
2079 r = -EFAULT;
2f366987 2080 if (copy_from_user(&tr, argp, sizeof tr))
6aa8b732 2081 goto out;
8b006791 2082 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
6aa8b732
AK
2083 if (r)
2084 goto out;
2085 r = -EFAULT;
2f366987 2086 if (copy_to_user(argp, &tr, sizeof tr))
6aa8b732
AK
2087 goto out;
2088 r = 0;
2089 break;
2090 }
d0bfb940
JK
2091 case KVM_SET_GUEST_DEBUG: {
2092 struct kvm_guest_debug dbg;
6aa8b732
AK
2093
2094 r = -EFAULT;
2f366987 2095 if (copy_from_user(&dbg, argp, sizeof dbg))
6aa8b732 2096 goto out;
d0bfb940 2097 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
6aa8b732
AK
2098 break;
2099 }
1961d276
AK
2100 case KVM_SET_SIGNAL_MASK: {
2101 struct kvm_signal_mask __user *sigmask_arg = argp;
2102 struct kvm_signal_mask kvm_sigmask;
2103 sigset_t sigset, *p;
2104
2105 p = NULL;
2106 if (argp) {
2107 r = -EFAULT;
2108 if (copy_from_user(&kvm_sigmask, argp,
2109 sizeof kvm_sigmask))
2110 goto out;
2111 r = -EINVAL;
2112 if (kvm_sigmask.len != sizeof sigset)
2113 goto out;
2114 r = -EFAULT;
2115 if (copy_from_user(&sigset, sigmask_arg->sigset,
2116 sizeof sigset))
2117 goto out;
2118 p = &sigset;
2119 }
376d41ff 2120 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
1961d276
AK
2121 break;
2122 }
b8836737 2123 case KVM_GET_FPU: {
fa3795a7
DH
2124 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2125 r = -ENOMEM;
2126 if (!fpu)
2127 goto out;
2128 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
b8836737
AK
2129 if (r)
2130 goto out;
2131 r = -EFAULT;
fa3795a7 2132 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
b8836737
AK
2133 goto out;
2134 r = 0;
2135 break;
2136 }
2137 case KVM_SET_FPU: {
ff5c2c03
SL
2138 fpu = memdup_user(argp, sizeof(*fpu));
2139 if (IS_ERR(fpu)) {
2140 r = PTR_ERR(fpu);
18595411 2141 fpu = NULL;
b8836737 2142 goto out;
ff5c2c03 2143 }
fa3795a7 2144 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
b8836737
AK
2145 break;
2146 }
bccf2150 2147 default:
313a3dc7 2148 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
bccf2150
AK
2149 }
2150out:
2122ff5e 2151 vcpu_put(vcpu);
fa3795a7
DH
2152 kfree(fpu);
2153 kfree(kvm_sregs);
bccf2150
AK
2154 return r;
2155}
2156
1dda606c
AG
2157#ifdef CONFIG_COMPAT
2158static long kvm_vcpu_compat_ioctl(struct file *filp,
2159 unsigned int ioctl, unsigned long arg)
2160{
2161 struct kvm_vcpu *vcpu = filp->private_data;
2162 void __user *argp = compat_ptr(arg);
2163 int r;
2164
2165 if (vcpu->kvm->mm != current->mm)
2166 return -EIO;
2167
2168 switch (ioctl) {
2169 case KVM_SET_SIGNAL_MASK: {
2170 struct kvm_signal_mask __user *sigmask_arg = argp;
2171 struct kvm_signal_mask kvm_sigmask;
2172 compat_sigset_t csigset;
2173 sigset_t sigset;
2174
2175 if (argp) {
2176 r = -EFAULT;
2177 if (copy_from_user(&kvm_sigmask, argp,
2178 sizeof kvm_sigmask))
2179 goto out;
2180 r = -EINVAL;
2181 if (kvm_sigmask.len != sizeof csigset)
2182 goto out;
2183 r = -EFAULT;
2184 if (copy_from_user(&csigset, sigmask_arg->sigset,
2185 sizeof csigset))
2186 goto out;
760a9a30
AC
2187 sigset_from_compat(&sigset, &csigset);
2188 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2189 } else
2190 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
1dda606c
AG
2191 break;
2192 }
2193 default:
2194 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2195 }
2196
2197out:
2198 return r;
2199}
2200#endif
2201
852b6d57
SW
2202static int kvm_device_ioctl_attr(struct kvm_device *dev,
2203 int (*accessor)(struct kvm_device *dev,
2204 struct kvm_device_attr *attr),
2205 unsigned long arg)
2206{
2207 struct kvm_device_attr attr;
2208
2209 if (!accessor)
2210 return -EPERM;
2211
2212 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2213 return -EFAULT;
2214
2215 return accessor(dev, &attr);
2216}
2217
2218static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2219 unsigned long arg)
2220{
2221 struct kvm_device *dev = filp->private_data;
2222
2223 switch (ioctl) {
2224 case KVM_SET_DEVICE_ATTR:
2225 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2226 case KVM_GET_DEVICE_ATTR:
2227 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2228 case KVM_HAS_DEVICE_ATTR:
2229 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2230 default:
2231 if (dev->ops->ioctl)
2232 return dev->ops->ioctl(dev, ioctl, arg);
2233
2234 return -ENOTTY;
2235 }
2236}
2237
852b6d57
SW
2238static int kvm_device_release(struct inode *inode, struct file *filp)
2239{
2240 struct kvm_device *dev = filp->private_data;
2241 struct kvm *kvm = dev->kvm;
2242
852b6d57
SW
2243 kvm_put_kvm(kvm);
2244 return 0;
2245}
2246
2247static const struct file_operations kvm_device_fops = {
2248 .unlocked_ioctl = kvm_device_ioctl,
db6ae615
SW
2249#ifdef CONFIG_COMPAT
2250 .compat_ioctl = kvm_device_ioctl,
2251#endif
852b6d57
SW
2252 .release = kvm_device_release,
2253};
2254
2255struct kvm_device *kvm_device_from_filp(struct file *filp)
2256{
2257 if (filp->f_op != &kvm_device_fops)
2258 return NULL;
2259
2260 return filp->private_data;
2261}
2262
2263static int kvm_ioctl_create_device(struct kvm *kvm,
2264 struct kvm_create_device *cd)
2265{
2266 struct kvm_device_ops *ops = NULL;
2267 struct kvm_device *dev;
2268 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2269 int ret;
2270
2271 switch (cd->type) {
5df554ad
SW
2272#ifdef CONFIG_KVM_MPIC
2273 case KVM_DEV_TYPE_FSL_MPIC_20:
2274 case KVM_DEV_TYPE_FSL_MPIC_42:
2275 ops = &kvm_mpic_ops;
2276 break;
5975a2e0
PM
2277#endif
2278#ifdef CONFIG_KVM_XICS
2279 case KVM_DEV_TYPE_XICS:
2280 ops = &kvm_xics_ops;
2281 break;
ec53500f
AW
2282#endif
2283#ifdef CONFIG_KVM_VFIO
2284 case KVM_DEV_TYPE_VFIO:
2285 ops = &kvm_vfio_ops;
2286 break;
7330672b
CD
2287#endif
2288#ifdef CONFIG_KVM_ARM_VGIC
2289 case KVM_DEV_TYPE_ARM_VGIC_V2:
2290 ops = &kvm_arm_vgic_v2_ops;
2291 break;
c05c4186
JF
2292#endif
2293#ifdef CONFIG_S390
2294 case KVM_DEV_TYPE_FLIC:
2295 ops = &kvm_flic_ops;
2296 break;
5df554ad 2297#endif
852b6d57
SW
2298 default:
2299 return -ENODEV;
2300 }
2301
2302 if (test)
2303 return 0;
2304
2305 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2306 if (!dev)
2307 return -ENOMEM;
2308
2309 dev->ops = ops;
2310 dev->kvm = kvm;
852b6d57
SW
2311
2312 ret = ops->create(dev, cd->type);
2313 if (ret < 0) {
2314 kfree(dev);
2315 return ret;
2316 }
2317
24009b05 2318 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
852b6d57
SW
2319 if (ret < 0) {
2320 ops->destroy(dev);
2321 return ret;
2322 }
2323
07f0a7bd 2324 list_add(&dev->vm_node, &kvm->devices);
852b6d57
SW
2325 kvm_get_kvm(kvm);
2326 cd->fd = ret;
2327 return 0;
2328}
2329
92b591a4
AG
2330static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2331{
2332 switch (arg) {
2333 case KVM_CAP_USER_MEMORY:
2334 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2335 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
2336#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2337 case KVM_CAP_SET_BOOT_CPU_ID:
2338#endif
2339 case KVM_CAP_INTERNAL_ERROR_DATA:
2340#ifdef CONFIG_HAVE_KVM_MSI
2341 case KVM_CAP_SIGNAL_MSI:
2342#endif
297e2105 2343#ifdef CONFIG_HAVE_KVM_IRQFD
92b591a4
AG
2344 case KVM_CAP_IRQFD_RESAMPLE:
2345#endif
2346 case KVM_CAP_CHECK_EXTENSION_VM:
2347 return 1;
2348#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2349 case KVM_CAP_IRQ_ROUTING:
2350 return KVM_MAX_IRQ_ROUTES;
2351#endif
2352 default:
2353 break;
2354 }
2355 return kvm_vm_ioctl_check_extension(kvm, arg);
2356}
2357
bccf2150
AK
2358static long kvm_vm_ioctl(struct file *filp,
2359 unsigned int ioctl, unsigned long arg)
2360{
2361 struct kvm *kvm = filp->private_data;
2362 void __user *argp = (void __user *)arg;
1fe779f8 2363 int r;
bccf2150 2364
6d4e4c4f
AK
2365 if (kvm->mm != current->mm)
2366 return -EIO;
bccf2150
AK
2367 switch (ioctl) {
2368 case KVM_CREATE_VCPU:
2369 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
bccf2150 2370 break;
6fc138d2
IE
2371 case KVM_SET_USER_MEMORY_REGION: {
2372 struct kvm_userspace_memory_region kvm_userspace_mem;
2373
2374 r = -EFAULT;
2375 if (copy_from_user(&kvm_userspace_mem, argp,
2376 sizeof kvm_userspace_mem))
2377 goto out;
2378
47ae31e2 2379 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
6aa8b732
AK
2380 break;
2381 }
2382 case KVM_GET_DIRTY_LOG: {
2383 struct kvm_dirty_log log;
2384
2385 r = -EFAULT;
2f366987 2386 if (copy_from_user(&log, argp, sizeof log))
6aa8b732 2387 goto out;
2c6f5df9 2388 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
6aa8b732
AK
2389 break;
2390 }
5f94c174
LV
2391#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2392 case KVM_REGISTER_COALESCED_MMIO: {
2393 struct kvm_coalesced_mmio_zone zone;
2394 r = -EFAULT;
2395 if (copy_from_user(&zone, argp, sizeof zone))
2396 goto out;
5f94c174 2397 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
5f94c174
LV
2398 break;
2399 }
2400 case KVM_UNREGISTER_COALESCED_MMIO: {
2401 struct kvm_coalesced_mmio_zone zone;
2402 r = -EFAULT;
2403 if (copy_from_user(&zone, argp, sizeof zone))
2404 goto out;
5f94c174 2405 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
5f94c174
LV
2406 break;
2407 }
2408#endif
721eecbf
GH
2409 case KVM_IRQFD: {
2410 struct kvm_irqfd data;
2411
2412 r = -EFAULT;
2413 if (copy_from_user(&data, argp, sizeof data))
2414 goto out;
d4db2935 2415 r = kvm_irqfd(kvm, &data);
721eecbf
GH
2416 break;
2417 }
d34e6b17
GH
2418 case KVM_IOEVENTFD: {
2419 struct kvm_ioeventfd data;
2420
2421 r = -EFAULT;
2422 if (copy_from_user(&data, argp, sizeof data))
2423 goto out;
2424 r = kvm_ioeventfd(kvm, &data);
2425 break;
2426 }
73880c80
GN
2427#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2428 case KVM_SET_BOOT_CPU_ID:
2429 r = 0;
894a9c55 2430 mutex_lock(&kvm->lock);
73880c80
GN
2431 if (atomic_read(&kvm->online_vcpus) != 0)
2432 r = -EBUSY;
2433 else
2434 kvm->bsp_vcpu_id = arg;
894a9c55 2435 mutex_unlock(&kvm->lock);
73880c80 2436 break;
07975ad3
JK
2437#endif
2438#ifdef CONFIG_HAVE_KVM_MSI
2439 case KVM_SIGNAL_MSI: {
2440 struct kvm_msi msi;
2441
2442 r = -EFAULT;
2443 if (copy_from_user(&msi, argp, sizeof msi))
2444 goto out;
2445 r = kvm_send_userspace_msi(kvm, &msi);
2446 break;
2447 }
23d43cf9
CD
2448#endif
2449#ifdef __KVM_HAVE_IRQ_LINE
2450 case KVM_IRQ_LINE_STATUS:
2451 case KVM_IRQ_LINE: {
2452 struct kvm_irq_level irq_event;
2453
2454 r = -EFAULT;
2455 if (copy_from_user(&irq_event, argp, sizeof irq_event))
2456 goto out;
2457
aa2fbe6d
YZ
2458 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
2459 ioctl == KVM_IRQ_LINE_STATUS);
23d43cf9
CD
2460 if (r)
2461 goto out;
2462
2463 r = -EFAULT;
2464 if (ioctl == KVM_IRQ_LINE_STATUS) {
2465 if (copy_to_user(argp, &irq_event, sizeof irq_event))
2466 goto out;
2467 }
2468
2469 r = 0;
2470 break;
2471 }
73880c80 2472#endif
aa8d5944
AG
2473#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2474 case KVM_SET_GSI_ROUTING: {
2475 struct kvm_irq_routing routing;
2476 struct kvm_irq_routing __user *urouting;
2477 struct kvm_irq_routing_entry *entries;
2478
2479 r = -EFAULT;
2480 if (copy_from_user(&routing, argp, sizeof(routing)))
2481 goto out;
2482 r = -EINVAL;
2483 if (routing.nr >= KVM_MAX_IRQ_ROUTES)
2484 goto out;
2485 if (routing.flags)
2486 goto out;
2487 r = -ENOMEM;
2488 entries = vmalloc(routing.nr * sizeof(*entries));
2489 if (!entries)
2490 goto out;
2491 r = -EFAULT;
2492 urouting = argp;
2493 if (copy_from_user(entries, urouting->entries,
2494 routing.nr * sizeof(*entries)))
2495 goto out_free_irq_routing;
2496 r = kvm_set_irq_routing(kvm, entries, routing.nr,
2497 routing.flags);
2498 out_free_irq_routing:
2499 vfree(entries);
2500 break;
2501 }
2502#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
852b6d57
SW
2503 case KVM_CREATE_DEVICE: {
2504 struct kvm_create_device cd;
2505
2506 r = -EFAULT;
2507 if (copy_from_user(&cd, argp, sizeof(cd)))
2508 goto out;
2509
2510 r = kvm_ioctl_create_device(kvm, &cd);
2511 if (r)
2512 goto out;
2513
2514 r = -EFAULT;
2515 if (copy_to_user(argp, &cd, sizeof(cd)))
2516 goto out;
2517
2518 r = 0;
2519 break;
2520 }
92b591a4
AG
2521 case KVM_CHECK_EXTENSION:
2522 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
2523 break;
f17abe9a 2524 default:
1fe779f8 2525 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
bfd99ff5
AK
2526 if (r == -ENOTTY)
2527 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
f17abe9a
AK
2528 }
2529out:
2530 return r;
2531}
2532
6ff5894c
AB
2533#ifdef CONFIG_COMPAT
2534struct compat_kvm_dirty_log {
2535 __u32 slot;
2536 __u32 padding1;
2537 union {
2538 compat_uptr_t dirty_bitmap; /* one bit per page */
2539 __u64 padding2;
2540 };
2541};
2542
2543static long kvm_vm_compat_ioctl(struct file *filp,
2544 unsigned int ioctl, unsigned long arg)
2545{
2546 struct kvm *kvm = filp->private_data;
2547 int r;
2548
2549 if (kvm->mm != current->mm)
2550 return -EIO;
2551 switch (ioctl) {
2552 case KVM_GET_DIRTY_LOG: {
2553 struct compat_kvm_dirty_log compat_log;
2554 struct kvm_dirty_log log;
2555
2556 r = -EFAULT;
2557 if (copy_from_user(&compat_log, (void __user *)arg,
2558 sizeof(compat_log)))
2559 goto out;
2560 log.slot = compat_log.slot;
2561 log.padding1 = compat_log.padding1;
2562 log.padding2 = compat_log.padding2;
2563 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
2564
2565 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
6ff5894c
AB
2566 break;
2567 }
2568 default:
2569 r = kvm_vm_ioctl(filp, ioctl, arg);
2570 }
2571
2572out:
2573 return r;
2574}
2575#endif
2576
3d3aab1b 2577static struct file_operations kvm_vm_fops = {
f17abe9a
AK
2578 .release = kvm_vm_release,
2579 .unlocked_ioctl = kvm_vm_ioctl,
6ff5894c
AB
2580#ifdef CONFIG_COMPAT
2581 .compat_ioctl = kvm_vm_compat_ioctl,
2582#endif
6038f373 2583 .llseek = noop_llseek,
f17abe9a
AK
2584};
2585
e08b9637 2586static int kvm_dev_ioctl_create_vm(unsigned long type)
f17abe9a 2587{
aac87636 2588 int r;
f17abe9a
AK
2589 struct kvm *kvm;
2590
e08b9637 2591 kvm = kvm_create_vm(type);
d6d28168
AK
2592 if (IS_ERR(kvm))
2593 return PTR_ERR(kvm);
6ce5a090
TY
2594#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2595 r = kvm_coalesced_mmio_init(kvm);
2596 if (r < 0) {
2597 kvm_put_kvm(kvm);
2598 return r;
2599 }
2600#endif
24009b05 2601 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR | O_CLOEXEC);
aac87636 2602 if (r < 0)
66c0b394 2603 kvm_put_kvm(kvm);
f17abe9a 2604
aac87636 2605 return r;
f17abe9a
AK
2606}
2607
2608static long kvm_dev_ioctl(struct file *filp,
2609 unsigned int ioctl, unsigned long arg)
2610{
07c45a36 2611 long r = -EINVAL;
f17abe9a
AK
2612
2613 switch (ioctl) {
2614 case KVM_GET_API_VERSION:
f0fe5108
AK
2615 r = -EINVAL;
2616 if (arg)
2617 goto out;
f17abe9a
AK
2618 r = KVM_API_VERSION;
2619 break;
2620 case KVM_CREATE_VM:
e08b9637 2621 r = kvm_dev_ioctl_create_vm(arg);
f17abe9a 2622 break;
018d00d2 2623 case KVM_CHECK_EXTENSION:
784aa3d7 2624 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
5d308f45 2625 break;
07c45a36
AK
2626 case KVM_GET_VCPU_MMAP_SIZE:
2627 r = -EINVAL;
2628 if (arg)
2629 goto out;
adb1ff46
AK
2630 r = PAGE_SIZE; /* struct kvm_run */
2631#ifdef CONFIG_X86
2632 r += PAGE_SIZE; /* pio data page */
5f94c174
LV
2633#endif
2634#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2635 r += PAGE_SIZE; /* coalesced mmio ring page */
adb1ff46 2636#endif
07c45a36 2637 break;
d4c9ff2d
FEL
2638 case KVM_TRACE_ENABLE:
2639 case KVM_TRACE_PAUSE:
2640 case KVM_TRACE_DISABLE:
2023a29c 2641 r = -EOPNOTSUPP;
d4c9ff2d 2642 break;
6aa8b732 2643 default:
043405e1 2644 return kvm_arch_dev_ioctl(filp, ioctl, arg);
6aa8b732
AK
2645 }
2646out:
2647 return r;
2648}
2649
6aa8b732 2650static struct file_operations kvm_chardev_ops = {
6aa8b732
AK
2651 .unlocked_ioctl = kvm_dev_ioctl,
2652 .compat_ioctl = kvm_dev_ioctl,
6038f373 2653 .llseek = noop_llseek,
6aa8b732
AK
2654};
2655
2656static struct miscdevice kvm_dev = {
bbe4432e 2657 KVM_MINOR,
6aa8b732
AK
2658 "kvm",
2659 &kvm_chardev_ops,
2660};
2661
75b7127c 2662static void hardware_enable_nolock(void *junk)
1b6c0168
AK
2663{
2664 int cpu = raw_smp_processor_id();
10474ae8 2665 int r;
1b6c0168 2666
7f59f492 2667 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
1b6c0168 2668 return;
10474ae8 2669
7f59f492 2670 cpumask_set_cpu(cpu, cpus_hardware_enabled);
10474ae8
AG
2671
2672 r = kvm_arch_hardware_enable(NULL);
2673
2674 if (r) {
2675 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
2676 atomic_inc(&hardware_enable_failed);
2677 printk(KERN_INFO "kvm: enabling virtualization on "
2678 "CPU%d failed\n", cpu);
2679 }
1b6c0168
AK
2680}
2681
4fa92fb2 2682static void hardware_enable(void)
75b7127c 2683{
4a937f96 2684 raw_spin_lock(&kvm_count_lock);
4fa92fb2
PB
2685 if (kvm_usage_count)
2686 hardware_enable_nolock(NULL);
4a937f96 2687 raw_spin_unlock(&kvm_count_lock);
75b7127c
TY
2688}
2689
2690static void hardware_disable_nolock(void *junk)
1b6c0168
AK
2691{
2692 int cpu = raw_smp_processor_id();
2693
7f59f492 2694 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
1b6c0168 2695 return;
7f59f492 2696 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
e9b11c17 2697 kvm_arch_hardware_disable(NULL);
1b6c0168
AK
2698}
2699
4fa92fb2 2700static void hardware_disable(void)
75b7127c 2701{
4a937f96 2702 raw_spin_lock(&kvm_count_lock);
4fa92fb2
PB
2703 if (kvm_usage_count)
2704 hardware_disable_nolock(NULL);
4a937f96 2705 raw_spin_unlock(&kvm_count_lock);
75b7127c
TY
2706}
2707
10474ae8
AG
2708static void hardware_disable_all_nolock(void)
2709{
2710 BUG_ON(!kvm_usage_count);
2711
2712 kvm_usage_count--;
2713 if (!kvm_usage_count)
75b7127c 2714 on_each_cpu(hardware_disable_nolock, NULL, 1);
10474ae8
AG
2715}
2716
2717static void hardware_disable_all(void)
2718{
4a937f96 2719 raw_spin_lock(&kvm_count_lock);
10474ae8 2720 hardware_disable_all_nolock();
4a937f96 2721 raw_spin_unlock(&kvm_count_lock);
10474ae8
AG
2722}
2723
2724static int hardware_enable_all(void)
2725{
2726 int r = 0;
2727
4a937f96 2728 raw_spin_lock(&kvm_count_lock);
10474ae8
AG
2729
2730 kvm_usage_count++;
2731 if (kvm_usage_count == 1) {
2732 atomic_set(&hardware_enable_failed, 0);
75b7127c 2733 on_each_cpu(hardware_enable_nolock, NULL, 1);
10474ae8
AG
2734
2735 if (atomic_read(&hardware_enable_failed)) {
2736 hardware_disable_all_nolock();
2737 r = -EBUSY;
2738 }
2739 }
2740
4a937f96 2741 raw_spin_unlock(&kvm_count_lock);
10474ae8
AG
2742
2743 return r;
2744}
2745
774c47f1
AK
2746static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2747 void *v)
2748{
2749 int cpu = (long)v;
2750
1a6f4d7f 2751 val &= ~CPU_TASKS_FROZEN;
774c47f1 2752 switch (val) {
cec9ad27 2753 case CPU_DYING:
6ec8a856
AK
2754 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
2755 cpu);
4fa92fb2 2756 hardware_disable();
6ec8a856 2757 break;
da908f2f 2758 case CPU_STARTING:
43934a38
JK
2759 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
2760 cpu);
4fa92fb2 2761 hardware_enable();
774c47f1
AK
2762 break;
2763 }
2764 return NOTIFY_OK;
2765}
2766
9a2b85c6 2767static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
d77c26fc 2768 void *v)
9a2b85c6 2769{
8e1c1815
SY
2770 /*
2771 * Some (well, at least mine) BIOSes hang on reboot if
2772 * in vmx root mode.
2773 *
2774 * And Intel TXT required VMX off for all cpu when system shutdown.
2775 */
2776 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
2777 kvm_rebooting = true;
75b7127c 2778 on_each_cpu(hardware_disable_nolock, NULL, 1);
9a2b85c6
RR
2779 return NOTIFY_OK;
2780}
2781
2782static struct notifier_block kvm_reboot_notifier = {
2783 .notifier_call = kvm_reboot,
2784 .priority = 0,
2785};
2786
e93f8a0f 2787static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
2eeb2e94
GH
2788{
2789 int i;
2790
2791 for (i = 0; i < bus->dev_count; i++) {
743eeb0b 2792 struct kvm_io_device *pos = bus->range[i].dev;
2eeb2e94
GH
2793
2794 kvm_iodevice_destructor(pos);
2795 }
e93f8a0f 2796 kfree(bus);
2eeb2e94
GH
2797}
2798
c21fbff1
PB
2799static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
2800 const struct kvm_io_range *r2)
743eeb0b 2801{
743eeb0b
SL
2802 if (r1->addr < r2->addr)
2803 return -1;
2804 if (r1->addr + r1->len > r2->addr + r2->len)
2805 return 1;
2806 return 0;
2807}
2808
a343c9b7
PB
2809static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
2810{
c21fbff1 2811 return kvm_io_bus_cmp(p1, p2);
a343c9b7
PB
2812}
2813
39369f7a 2814static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
743eeb0b
SL
2815 gpa_t addr, int len)
2816{
743eeb0b
SL
2817 bus->range[bus->dev_count++] = (struct kvm_io_range) {
2818 .addr = addr,
2819 .len = len,
2820 .dev = dev,
2821 };
2822
2823 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
2824 kvm_io_bus_sort_cmp, NULL);
2825
2826 return 0;
2827}
2828
39369f7a 2829static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
743eeb0b
SL
2830 gpa_t addr, int len)
2831{
2832 struct kvm_io_range *range, key;
2833 int off;
2834
2835 key = (struct kvm_io_range) {
2836 .addr = addr,
2837 .len = len,
2838 };
2839
2840 range = bsearch(&key, bus->range, bus->dev_count,
2841 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
2842 if (range == NULL)
2843 return -ENOENT;
2844
2845 off = range - bus->range;
2846
c21fbff1 2847 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
743eeb0b
SL
2848 off--;
2849
2850 return off;
2851}
2852
126a5af5
CH
2853static int __kvm_io_bus_write(struct kvm_io_bus *bus,
2854 struct kvm_io_range *range, const void *val)
2855{
2856 int idx;
2857
2858 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
2859 if (idx < 0)
2860 return -EOPNOTSUPP;
2861
2862 while (idx < bus->dev_count &&
c21fbff1 2863 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
126a5af5
CH
2864 if (!kvm_iodevice_write(bus->range[idx].dev, range->addr,
2865 range->len, val))
2866 return idx;
2867 idx++;
2868 }
2869
2870 return -EOPNOTSUPP;
2871}
2872
bda9020e 2873/* kvm_io_bus_write - called under kvm->slots_lock */
e93f8a0f 2874int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
bda9020e 2875 int len, const void *val)
2eeb2e94 2876{
90d83dc3 2877 struct kvm_io_bus *bus;
743eeb0b 2878 struct kvm_io_range range;
126a5af5 2879 int r;
743eeb0b
SL
2880
2881 range = (struct kvm_io_range) {
2882 .addr = addr,
2883 .len = len,
2884 };
90d83dc3
LJ
2885
2886 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
126a5af5
CH
2887 r = __kvm_io_bus_write(bus, &range, val);
2888 return r < 0 ? r : 0;
2889}
2890
2891/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
2892int kvm_io_bus_write_cookie(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2893 int len, const void *val, long cookie)
2894{
2895 struct kvm_io_bus *bus;
2896 struct kvm_io_range range;
2897
2898 range = (struct kvm_io_range) {
2899 .addr = addr,
2900 .len = len,
2901 };
2902
2903 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
2904
2905 /* First try the device referenced by cookie. */
2906 if ((cookie >= 0) && (cookie < bus->dev_count) &&
c21fbff1 2907 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
126a5af5
CH
2908 if (!kvm_iodevice_write(bus->range[cookie].dev, addr, len,
2909 val))
2910 return cookie;
2911
2912 /*
2913 * cookie contained garbage; fall back to search and return the
2914 * correct cookie value.
2915 */
2916 return __kvm_io_bus_write(bus, &range, val);
2917}
2918
2919static int __kvm_io_bus_read(struct kvm_io_bus *bus, struct kvm_io_range *range,
2920 void *val)
2921{
2922 int idx;
2923
2924 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
743eeb0b
SL
2925 if (idx < 0)
2926 return -EOPNOTSUPP;
2927
2928 while (idx < bus->dev_count &&
c21fbff1 2929 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
126a5af5
CH
2930 if (!kvm_iodevice_read(bus->range[idx].dev, range->addr,
2931 range->len, val))
2932 return idx;
743eeb0b
SL
2933 idx++;
2934 }
2935
bda9020e
MT
2936 return -EOPNOTSUPP;
2937}
68c3b4d1 2938EXPORT_SYMBOL_GPL(kvm_io_bus_write);
2eeb2e94 2939
bda9020e 2940/* kvm_io_bus_read - called under kvm->slots_lock */
e93f8a0f
MT
2941int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2942 int len, void *val)
bda9020e 2943{
90d83dc3 2944 struct kvm_io_bus *bus;
743eeb0b 2945 struct kvm_io_range range;
126a5af5 2946 int r;
743eeb0b
SL
2947
2948 range = (struct kvm_io_range) {
2949 .addr = addr,
2950 .len = len,
2951 };
e93f8a0f 2952
90d83dc3 2953 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
126a5af5
CH
2954 r = __kvm_io_bus_read(bus, &range, val);
2955 return r < 0 ? r : 0;
2956}
743eeb0b 2957
2eeb2e94 2958
79fac95e 2959/* Caller must hold slots_lock. */
743eeb0b
SL
2960int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2961 int len, struct kvm_io_device *dev)
6c474694 2962{
e93f8a0f 2963 struct kvm_io_bus *new_bus, *bus;
090b7aff 2964
e93f8a0f 2965 bus = kvm->buses[bus_idx];
6ea34c9b
AK
2966 /* exclude ioeventfd which is limited by maximum fd */
2967 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
090b7aff 2968 return -ENOSPC;
2eeb2e94 2969
a1300716
AK
2970 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count + 1) *
2971 sizeof(struct kvm_io_range)), GFP_KERNEL);
e93f8a0f
MT
2972 if (!new_bus)
2973 return -ENOMEM;
a1300716
AK
2974 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
2975 sizeof(struct kvm_io_range)));
743eeb0b 2976 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
e93f8a0f
MT
2977 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2978 synchronize_srcu_expedited(&kvm->srcu);
2979 kfree(bus);
090b7aff
GH
2980
2981 return 0;
2982}
2983
79fac95e 2984/* Caller must hold slots_lock. */
e93f8a0f
MT
2985int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
2986 struct kvm_io_device *dev)
090b7aff 2987{
e93f8a0f
MT
2988 int i, r;
2989 struct kvm_io_bus *new_bus, *bus;
090b7aff 2990
cdfca7b3 2991 bus = kvm->buses[bus_idx];
e93f8a0f 2992 r = -ENOENT;
a1300716
AK
2993 for (i = 0; i < bus->dev_count; i++)
2994 if (bus->range[i].dev == dev) {
e93f8a0f 2995 r = 0;
090b7aff
GH
2996 break;
2997 }
e93f8a0f 2998
a1300716 2999 if (r)
e93f8a0f 3000 return r;
a1300716
AK
3001
3002 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count - 1) *
3003 sizeof(struct kvm_io_range)), GFP_KERNEL);
3004 if (!new_bus)
3005 return -ENOMEM;
3006
3007 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3008 new_bus->dev_count--;
3009 memcpy(new_bus->range + i, bus->range + i + 1,
3010 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
e93f8a0f
MT
3011
3012 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3013 synchronize_srcu_expedited(&kvm->srcu);
3014 kfree(bus);
3015 return r;
2eeb2e94
GH
3016}
3017
774c47f1
AK
3018static struct notifier_block kvm_cpu_notifier = {
3019 .notifier_call = kvm_cpu_hotplug,
774c47f1
AK
3020};
3021
8b88b099 3022static int vm_stat_get(void *_offset, u64 *val)
ba1389b7
AK
3023{
3024 unsigned offset = (long)_offset;
ba1389b7
AK
3025 struct kvm *kvm;
3026
8b88b099 3027 *val = 0;
2f303b74 3028 spin_lock(&kvm_lock);
ba1389b7 3029 list_for_each_entry(kvm, &vm_list, vm_list)
8b88b099 3030 *val += *(u32 *)((void *)kvm + offset);
2f303b74 3031 spin_unlock(&kvm_lock);
8b88b099 3032 return 0;
ba1389b7
AK
3033}
3034
3035DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
3036
8b88b099 3037static int vcpu_stat_get(void *_offset, u64 *val)
1165f5fe
AK
3038{
3039 unsigned offset = (long)_offset;
1165f5fe
AK
3040 struct kvm *kvm;
3041 struct kvm_vcpu *vcpu;
3042 int i;
3043
8b88b099 3044 *val = 0;
2f303b74 3045 spin_lock(&kvm_lock);
1165f5fe 3046 list_for_each_entry(kvm, &vm_list, vm_list)
988a2cae
GN
3047 kvm_for_each_vcpu(i, vcpu, kvm)
3048 *val += *(u32 *)((void *)vcpu + offset);
3049
2f303b74 3050 spin_unlock(&kvm_lock);
8b88b099 3051 return 0;
1165f5fe
AK
3052}
3053
ba1389b7
AK
3054DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
3055
828c0950 3056static const struct file_operations *stat_fops[] = {
ba1389b7
AK
3057 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3058 [KVM_STAT_VM] = &vm_stat_fops,
3059};
1165f5fe 3060
4f69b680 3061static int kvm_init_debug(void)
6aa8b732 3062{
0c8eb04a 3063 int r = -EEXIST;
6aa8b732
AK
3064 struct kvm_stats_debugfs_item *p;
3065
76f7c879 3066 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
4f69b680
H
3067 if (kvm_debugfs_dir == NULL)
3068 goto out;
3069
3070 for (p = debugfs_entries; p->name; ++p) {
76f7c879 3071 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
1165f5fe 3072 (void *)(long)p->offset,
ba1389b7 3073 stat_fops[p->kind]);
4f69b680
H
3074 if (p->dentry == NULL)
3075 goto out_dir;
3076 }
3077
3078 return 0;
3079
3080out_dir:
3081 debugfs_remove_recursive(kvm_debugfs_dir);
3082out:
3083 return r;
6aa8b732
AK
3084}
3085
3086static void kvm_exit_debug(void)
3087{
3088 struct kvm_stats_debugfs_item *p;
3089
3090 for (p = debugfs_entries; p->name; ++p)
3091 debugfs_remove(p->dentry);
76f7c879 3092 debugfs_remove(kvm_debugfs_dir);
6aa8b732
AK
3093}
3094
fb3600cc 3095static int kvm_suspend(void)
59ae6c6b 3096{
10474ae8 3097 if (kvm_usage_count)
75b7127c 3098 hardware_disable_nolock(NULL);
59ae6c6b
AK
3099 return 0;
3100}
3101
fb3600cc 3102static void kvm_resume(void)
59ae6c6b 3103{
ca84d1a2 3104 if (kvm_usage_count) {
4a937f96 3105 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
75b7127c 3106 hardware_enable_nolock(NULL);
ca84d1a2 3107 }
59ae6c6b
AK
3108}
3109
fb3600cc 3110static struct syscore_ops kvm_syscore_ops = {
59ae6c6b
AK
3111 .suspend = kvm_suspend,
3112 .resume = kvm_resume,
3113};
3114
15ad7146
AK
3115static inline
3116struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3117{
3118 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3119}
3120
3121static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3122{
3123 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3a08a8f9
R
3124 if (vcpu->preempted)
3125 vcpu->preempted = false;
15ad7146 3126
e9b11c17 3127 kvm_arch_vcpu_load(vcpu, cpu);
15ad7146
AK
3128}
3129
3130static void kvm_sched_out(struct preempt_notifier *pn,
3131 struct task_struct *next)
3132{
3133 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3134
3a08a8f9
R
3135 if (current->state == TASK_RUNNING)
3136 vcpu->preempted = true;
e9b11c17 3137 kvm_arch_vcpu_put(vcpu);
15ad7146
AK
3138}
3139
0ee75bea 3140int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
c16f862d 3141 struct module *module)
6aa8b732
AK
3142{
3143 int r;
002c7f7c 3144 int cpu;
6aa8b732 3145
f8c16bba
ZX
3146 r = kvm_arch_init(opaque);
3147 if (r)
d2308784 3148 goto out_fail;
cb498ea2 3149
7dac16c3
AH
3150 /*
3151 * kvm_arch_init makes sure there's at most one caller
3152 * for architectures that support multiple implementations,
3153 * like intel and amd on x86.
3154 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3155 * conflicts in case kvm is already setup for another implementation.
3156 */
3157 r = kvm_irqfd_init();
3158 if (r)
3159 goto out_irqfd;
3160
8437a617 3161 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
7f59f492
RR
3162 r = -ENOMEM;
3163 goto out_free_0;
3164 }
3165
e9b11c17 3166 r = kvm_arch_hardware_setup();
6aa8b732 3167 if (r < 0)
7f59f492 3168 goto out_free_0a;
6aa8b732 3169
002c7f7c
YS
3170 for_each_online_cpu(cpu) {
3171 smp_call_function_single(cpu,
e9b11c17 3172 kvm_arch_check_processor_compat,
8691e5a8 3173 &r, 1);
002c7f7c 3174 if (r < 0)
d2308784 3175 goto out_free_1;
002c7f7c
YS
3176 }
3177
774c47f1
AK
3178 r = register_cpu_notifier(&kvm_cpu_notifier);
3179 if (r)
d2308784 3180 goto out_free_2;
6aa8b732
AK
3181 register_reboot_notifier(&kvm_reboot_notifier);
3182
c16f862d 3183 /* A kmem cache lets us meet the alignment requirements of fx_save. */
0ee75bea
AK
3184 if (!vcpu_align)
3185 vcpu_align = __alignof__(struct kvm_vcpu);
3186 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
56919c5c 3187 0, NULL);
c16f862d
RR
3188 if (!kvm_vcpu_cache) {
3189 r = -ENOMEM;
fb3600cc 3190 goto out_free_3;
c16f862d
RR
3191 }
3192
af585b92
GN
3193 r = kvm_async_pf_init();
3194 if (r)
3195 goto out_free;
3196
6aa8b732 3197 kvm_chardev_ops.owner = module;
3d3aab1b
CB
3198 kvm_vm_fops.owner = module;
3199 kvm_vcpu_fops.owner = module;
6aa8b732
AK
3200
3201 r = misc_register(&kvm_dev);
3202 if (r) {
d77c26fc 3203 printk(KERN_ERR "kvm: misc device register failed\n");
af585b92 3204 goto out_unreg;
6aa8b732
AK
3205 }
3206
fb3600cc
RW
3207 register_syscore_ops(&kvm_syscore_ops);
3208
15ad7146
AK
3209 kvm_preempt_ops.sched_in = kvm_sched_in;
3210 kvm_preempt_ops.sched_out = kvm_sched_out;
3211
4f69b680
H
3212 r = kvm_init_debug();
3213 if (r) {
3214 printk(KERN_ERR "kvm: create debugfs files failed\n");
3215 goto out_undebugfs;
3216 }
0ea4ed8e 3217
c7addb90 3218 return 0;
6aa8b732 3219
4f69b680
H
3220out_undebugfs:
3221 unregister_syscore_ops(&kvm_syscore_ops);
afc2f792 3222 misc_deregister(&kvm_dev);
af585b92
GN
3223out_unreg:
3224 kvm_async_pf_deinit();
6aa8b732 3225out_free:
c16f862d 3226 kmem_cache_destroy(kvm_vcpu_cache);
d2308784 3227out_free_3:
6aa8b732 3228 unregister_reboot_notifier(&kvm_reboot_notifier);
774c47f1 3229 unregister_cpu_notifier(&kvm_cpu_notifier);
d2308784 3230out_free_2:
d2308784 3231out_free_1:
e9b11c17 3232 kvm_arch_hardware_unsetup();
7f59f492
RR
3233out_free_0a:
3234 free_cpumask_var(cpus_hardware_enabled);
d2308784 3235out_free_0:
a0f155e9
CH
3236 kvm_irqfd_exit();
3237out_irqfd:
7dac16c3
AH
3238 kvm_arch_exit();
3239out_fail:
6aa8b732
AK
3240 return r;
3241}
cb498ea2 3242EXPORT_SYMBOL_GPL(kvm_init);
6aa8b732 3243
cb498ea2 3244void kvm_exit(void)
6aa8b732 3245{
0ea4ed8e 3246 kvm_exit_debug();
6aa8b732 3247 misc_deregister(&kvm_dev);
c16f862d 3248 kmem_cache_destroy(kvm_vcpu_cache);
af585b92 3249 kvm_async_pf_deinit();
fb3600cc 3250 unregister_syscore_ops(&kvm_syscore_ops);
6aa8b732 3251 unregister_reboot_notifier(&kvm_reboot_notifier);
59ae6c6b 3252 unregister_cpu_notifier(&kvm_cpu_notifier);
75b7127c 3253 on_each_cpu(hardware_disable_nolock, NULL, 1);
e9b11c17 3254 kvm_arch_hardware_unsetup();
f8c16bba 3255 kvm_arch_exit();
a0f155e9 3256 kvm_irqfd_exit();
7f59f492 3257 free_cpumask_var(cpus_hardware_enabled);
6aa8b732 3258}
cb498ea2 3259EXPORT_SYMBOL_GPL(kvm_exit);