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