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