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