blob: 88257b311cb579b5b720330456f99fbec97a58ac [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Andre Przywaraaf669ac2015-03-26 14:39:29 +000019#include <kvm/iodev.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080020
Avi Kivityedf88412007-12-16 11:02:48 +020021#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080022#include <linux/kvm.h>
23#include <linux/module.h>
24#include <linux/errno.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/percpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080026#include <linux/mm.h>
27#include <linux/miscdevice.h>
28#include <linux/vmalloc.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080029#include <linux/reboot.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080030#include <linux/debugfs.h>
31#include <linux/highmem.h>
32#include <linux/file.h>
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +010033#include <linux/syscore_ops.h>
Avi Kivity774c47f2007-02-12 00:54:47 -080034#include <linux/cpu.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010035#include <linux/sched/signal.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010036#include <linux/sched/mm.h>
Ingo Molnar03441a32017-02-08 18:51:35 +010037#include <linux/sched/stat.h>
Avi Kivityd9e368d2007-06-07 19:18:30 +030038#include <linux/cpumask.h>
39#include <linux/smp.h>
Avi Kivityd6d28162007-06-28 08:38:16 -040040#include <linux/anon_inodes.h>
Avi Kivity04d2cc72007-09-10 18:10:54 +030041#include <linux/profile.h>
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050042#include <linux/kvm_para.h>
Izik Eidus6fc138d2007-10-09 19:20:39 +020043#include <linux/pagemap.h>
Anthony Liguori8d4e1282007-10-18 09:59:34 -050044#include <linux/mman.h>
Anthony Liguori35149e22008-04-02 14:46:56 -050045#include <linux/swap.h>
Sheng Yange56d5322009-03-12 21:45:39 +080046#include <linux/bitops.h>
Marcelo Tosatti547de292009-05-07 17:55:13 -030047#include <linux/spinlock.h>
Arnd Bergmann6ff58942009-10-22 14:19:27 +020048#include <linux/compat.h>
Marcelo Tosattibc6678a2009-12-23 14:35:21 -020049#include <linux/srcu.h>
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +010050#include <linux/hugetlb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Sasha Levin743eeb02011-07-27 16:00:48 +030052#include <linux/sort.h>
53#include <linux/bsearch.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080054
Avi Kivitye4956062007-06-28 14:15:57 -040055#include <asm/processor.h>
Avi Kivitye4956062007-06-28 14:15:57 -040056#include <asm/io.h>
David Matlack2ea75be2014-09-19 16:03:25 -070057#include <asm/ioctl.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080058#include <linux/uaccess.h>
Izik Eidus3e021bf2007-11-19 11:16:57 +020059#include <asm/pgtable.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080060
Laurent Vivier5f94c172008-05-30 16:05:54 +020061#include "coalesced_mmio.h"
Gleb Natapovaf585b92010-10-14 11:22:46 +020062#include "async_pf.h"
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +020063#include "vfio.h"
Laurent Vivier5f94c172008-05-30 16:05:54 +020064
Marcelo Tosatti229456f2009-06-17 09:22:14 -030065#define CREATE_TRACE_POINTS
66#include <trace/events/kvm.h>
67
Janosch Frank536a6f82016-05-18 13:26:23 +020068/* Worst case buffer size needed for holding an integer. */
69#define ITOA_MAX_LEN 12
70
Avi Kivity6aa8b732006-12-10 02:21:36 -080071MODULE_AUTHOR("Qumranet");
72MODULE_LICENSE("GPL");
73
David Hildenbrand920552b2015-09-18 12:34:53 +020074/* Architectures should define their poll value according to the halt latency */
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110075unsigned int halt_poll_ns = KVM_HALT_POLL_NS_DEFAULT;
Paolo Bonzinif7819512015-02-04 18:20:58 +010076module_param(halt_poll_ns, uint, S_IRUGO | S_IWUSR);
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110077EXPORT_SYMBOL_GPL(halt_poll_ns);
Paolo Bonzinif7819512015-02-04 18:20:58 +010078
Wanpeng Liaca6ff22015-09-03 22:07:38 +080079/* Default doubles per-vcpu halt_poll_ns. */
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110080unsigned int halt_poll_ns_grow = 2;
Christian Borntraeger6b6de682016-02-09 13:47:55 +010081module_param(halt_poll_ns_grow, uint, S_IRUGO | S_IWUSR);
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110082EXPORT_SYMBOL_GPL(halt_poll_ns_grow);
Wanpeng Liaca6ff22015-09-03 22:07:38 +080083
84/* Default resets per-vcpu halt_poll_ns . */
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110085unsigned int halt_poll_ns_shrink;
Christian Borntraeger6b6de682016-02-09 13:47:55 +010086module_param(halt_poll_ns_shrink, uint, S_IRUGO | S_IWUSR);
Suraj Jitindar Singhec76d812016-10-14 11:53:19 +110087EXPORT_SYMBOL_GPL(halt_poll_ns_shrink);
Wanpeng Liaca6ff22015-09-03 22:07:38 +080088
Marcelo Tosattifa40a822009-06-04 15:08:24 -030089/*
90 * Ordering of locks:
91 *
Xiubo Lib7d409d2015-02-26 14:58:24 +080092 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
Marcelo Tosattifa40a822009-06-04 15:08:24 -030093 */
94
Paolo Bonzini2f303b72013-09-25 13:53:07 +020095DEFINE_SPINLOCK(kvm_lock);
Paolo Bonzini4a937f92013-09-10 12:58:35 +020096static DEFINE_RAW_SPINLOCK(kvm_count_lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080097LIST_HEAD(vm_list);
Avi Kivity133de902007-02-12 00:54:44 -080098
Rusty Russell7f59f492008-12-07 21:25:45 +103099static cpumask_var_t cpus_hardware_enabled;
Xiubo Lif4fee932015-02-26 14:58:21 +0800100static int kvm_usage_count;
Alexander Graf10474ae2009-09-15 11:37:46 +0200101static atomic_t hardware_enable_failed;
Avi Kivity1b6c0162007-05-24 13:03:52 +0300102
Rusty Russellc16f8622007-07-30 21:12:19 +1000103struct kmem_cache *kvm_vcpu_cache;
104EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +0300105
Avi Kivity15ad7142007-07-11 18:17:21 +0300106static __read_mostly struct preempt_ops kvm_preempt_ops;
107
Hollis Blanchard76f7c872008-04-15 16:05:42 -0500108struct dentry *kvm_debugfs_dir;
Paul Mackerrase23a8082015-03-28 14:21:01 +1100109EXPORT_SYMBOL_GPL(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800110
Janosch Frank536a6f82016-05-18 13:26:23 +0200111static int kvm_debugfs_num_entries;
112static const struct file_operations *stat_fops_per_vm[];
113
Avi Kivitybccf2152007-02-21 18:04:26 +0200114static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
115 unsigned long arg);
Christian Borntraegerde8e5d72015-02-03 09:35:15 +0100116#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +0200117static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
118 unsigned long arg);
119#endif
Alexander Graf10474ae2009-09-15 11:37:46 +0200120static int hardware_enable_all(void);
121static void hardware_disable_all(void);
Avi Kivitybccf2152007-02-21 18:04:26 +0200122
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200123static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
Stephen Hemminger79408762013-12-29 12:12:29 -0800124
Dan Williamsba049e92016-01-15 16:56:11 -0800125static void kvm_release_pfn_dirty(kvm_pfn_t pfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +0200126static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot, gfn_t gfn);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200127
Andi Kleen52480132014-02-08 08:51:57 +0100128__visible bool kvm_rebooting;
Avi Kivityb7c41452010-12-02 17:52:50 +0200129EXPORT_SYMBOL_GPL(kvm_rebooting);
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300130
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300131static bool largepages_enabled = true;
132
Dan Williamsba049e92016-01-15 16:56:11 -0800133bool kvm_is_reserved_pfn(kvm_pfn_t pfn)
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300134{
Andrea Arcangeli11feeb42013-07-25 03:04:38 +0200135 if (pfn_valid(pfn))
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000136 return PageReserved(pfn_to_page(pfn));
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300137
138 return true;
139}
140
Avi Kivity6aa8b732006-12-10 02:21:36 -0800141/*
142 * Switches to specified vcpu, until a matching vcpu_put()
143 */
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300144int vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800145{
Avi Kivity15ad7142007-07-11 18:17:21 +0300146 int cpu;
147
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300148 if (mutex_lock_killable(&vcpu->mutex))
149 return -EINTR;
Avi Kivity15ad7142007-07-11 18:17:21 +0300150 cpu = get_cpu();
151 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200152 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300153 put_cpu();
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300154 return 0;
Avi Kivitybccf2152007-02-21 18:04:26 +0200155}
Jim Mattson2f1fe812016-07-08 15:36:06 -0700156EXPORT_SYMBOL_GPL(vcpu_load);
Avi Kivitybccf2152007-02-21 18:04:26 +0200157
Carsten Otte313a3dc2007-10-11 19:16:52 +0200158void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800159{
Avi Kivity15ad7142007-07-11 18:17:21 +0300160 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200161 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300162 preempt_notifier_unregister(&vcpu->preempt_notifier);
163 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800164 mutex_unlock(&vcpu->mutex);
165}
Jim Mattson2f1fe812016-07-08 15:36:06 -0700166EXPORT_SYMBOL_GPL(vcpu_put);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800167
Avi Kivityd9e368d2007-06-07 19:18:30 +0300168static void ack_flush(void *_completed)
169{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300170}
171
Tang Chen445b8232014-09-24 15:57:55 +0800172bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300173{
Avi Kivity597a5f52008-07-20 14:24:22 +0300174 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030175 cpumask_var_t cpus;
176 bool called = true;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300177 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300178
Li Zefan79f55992009-06-15 14:58:26 +0800179 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030180
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800181 me = get_cpu();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300182 kvm_for_each_vcpu(i, vcpu, kvm) {
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800183 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300184 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800185
Lan Tianyua30a0502016-03-13 11:10:26 +0800186 /* Set ->requests bit before we read ->mode. */
187 smp_mb__after_atomic();
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800188
189 if (cpus != NULL && cpu != -1 && cpu != me &&
190 kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE)
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030191 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300192 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030193 if (unlikely(cpus == NULL))
194 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
195 else if (!cpumask_empty(cpus))
196 smp_call_function_many(cpus, ack_flush, NULL, 1);
197 else
198 called = false;
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800199 put_cpu();
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030200 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030201 return called;
202}
203
Mario Smarducha6d51012015-01-15 15:58:52 -0800204#ifndef CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL
Rusty Russell49846892008-12-08 20:26:24 +1030205void kvm_flush_remote_tlbs(struct kvm *kvm)
206{
Lan Tianyu4ae3cb32016-03-13 11:10:28 +0800207 /*
208 * Read tlbs_dirty before setting KVM_REQ_TLB_FLUSH in
209 * kvm_make_all_cpus_request.
210 */
211 long dirty_count = smp_load_acquire(&kvm->tlbs_dirty);
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800212
Lan Tianyu4ae3cb32016-03-13 11:10:28 +0800213 /*
214 * We want to publish modifications to the page tables before reading
215 * mode. Pairs with a memory barrier in arch-specific code.
216 * - x86: smp_mb__after_srcu_read_unlock in vcpu_enter_guest
217 * and smp_mb in walk_shadow_page_lockless_begin/end.
218 * - powerpc: smp_mb in kvmppc_prepare_to_enter.
219 *
220 * There is already an smp_mb__after_atomic() before
221 * kvm_make_all_cpus_request() reads vcpu->mode. We reuse that
222 * barrier here.
223 */
Tang Chen445b8232014-09-24 15:57:55 +0800224 if (kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
Rusty Russell49846892008-12-08 20:26:24 +1030225 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800226 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300227}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530228EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
Mario Smarducha6d51012015-01-15 15:58:52 -0800229#endif
Avi Kivityd9e368d2007-06-07 19:18:30 +0300230
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500231void kvm_reload_remote_mmus(struct kvm *kvm)
232{
Tang Chen445b8232014-09-24 15:57:55 +0800233 kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500234}
235
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000236int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
237{
238 struct page *page;
239 int r;
240
241 mutex_init(&vcpu->mutex);
242 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000243 vcpu->kvm = kvm;
244 vcpu->vcpu_id = id;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500245 vcpu->pid = NULL;
Marcelo Tosatti85773702016-02-19 09:46:39 +0100246 init_swait_queue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200247 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000248
Feng Wubf9f6ac2015-09-18 22:29:55 +0800249 vcpu->pre_pcpu = -1;
250 INIT_LIST_HEAD(&vcpu->blocked_vcpu_list);
251
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000252 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
253 if (!page) {
254 r = -ENOMEM;
255 goto fail;
256 }
257 vcpu->run = page_address(page);
258
Raghavendra K T4c088492012-07-18 19:07:46 +0530259 kvm_vcpu_set_in_spin_loop(vcpu, false);
260 kvm_vcpu_set_dy_eligible(vcpu, false);
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530261 vcpu->preempted = false;
Raghavendra K T4c088492012-07-18 19:07:46 +0530262
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800263 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000264 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800265 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000266 return 0;
267
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000268fail_free_run:
269 free_page((unsigned long)vcpu->run);
270fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000271 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000272}
273EXPORT_SYMBOL_GPL(kvm_vcpu_init);
274
275void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
276{
Rik van Riel34bb10b2011-02-01 09:52:41 -0500277 put_pid(vcpu->pid);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800278 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000279 free_page((unsigned long)vcpu->run);
280}
281EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
282
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200283#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
284static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
285{
286 return container_of(mn, struct kvm, mmu_notifier);
287}
288
289static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
290 struct mm_struct *mm,
291 unsigned long address)
292{
293 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200294 int need_tlb_flush, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200295
296 /*
297 * When ->invalidate_page runs, the linux pte has been zapped
298 * already but the page is still allocated until
299 * ->invalidate_page returns. So if we increase the sequence
300 * here the kvm page fault will notice if the spte can't be
301 * established because the page is going to be freed. If
302 * instead the kvm page fault establishes the spte before
303 * ->invalidate_page runs, kvm_unmap_hva will release it
304 * before returning.
305 *
306 * The sequence increase only need to be seen at spin_unlock
307 * time, and not at spin_lock time.
308 *
309 * Increasing the sequence after the spin_unlock would be
310 * unsafe because the kvm page fault could then establish the
311 * pte after kvm_unmap_hva returned, without noticing the page
312 * is going to be freed.
313 */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200314 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200315 spin_lock(&kvm->mmu_lock);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900316
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200317 kvm->mmu_notifier_seq++;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800318 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200319 /* we've to flush the tlb before the pages can be freed */
320 if (need_tlb_flush)
321 kvm_flush_remote_tlbs(kvm);
322
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900323 spin_unlock(&kvm->mmu_lock);
Tang Chenfe715572014-09-24 15:57:57 +0800324
325 kvm_arch_mmu_notifier_invalidate_page(kvm, address);
326
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900327 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200328}
329
Izik Eidus3da0dd42009-09-23 21:47:18 +0300330static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
331 struct mm_struct *mm,
332 unsigned long address,
333 pte_t pte)
334{
335 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200336 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300337
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200338 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300339 spin_lock(&kvm->mmu_lock);
340 kvm->mmu_notifier_seq++;
341 kvm_set_spte_hva(kvm, address, pte);
342 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200343 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300344}
345
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200346static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
347 struct mm_struct *mm,
348 unsigned long start,
349 unsigned long end)
350{
351 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200352 int need_tlb_flush = 0, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200353
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200354 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200355 spin_lock(&kvm->mmu_lock);
356 /*
357 * The count increase must become visible at unlock time as no
358 * spte can be established without taking the mmu_lock and
359 * count is also read inside the mmu_lock critical section.
360 */
361 kvm->mmu_notifier_count++;
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +0900362 need_tlb_flush = kvm_unmap_hva_range(kvm, start, end);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800363 need_tlb_flush |= kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200364 /* we've to flush the tlb before the pages can be freed */
365 if (need_tlb_flush)
366 kvm_flush_remote_tlbs(kvm);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900367
368 spin_unlock(&kvm->mmu_lock);
369 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200370}
371
372static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
373 struct mm_struct *mm,
374 unsigned long start,
375 unsigned long end)
376{
377 struct kvm *kvm = mmu_notifier_to_kvm(mn);
378
379 spin_lock(&kvm->mmu_lock);
380 /*
381 * This sequence increase will notify the kvm page fault that
382 * the page that is going to be mapped in the spte could have
383 * been freed.
384 */
385 kvm->mmu_notifier_seq++;
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000386 smp_wmb();
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200387 /*
388 * The above sequence increase must be visible before the
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000389 * below count decrease, which is ensured by the smp_wmb above
390 * in conjunction with the smp_rmb in mmu_notifier_retry().
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200391 */
392 kvm->mmu_notifier_count--;
393 spin_unlock(&kvm->mmu_lock);
394
395 BUG_ON(kvm->mmu_notifier_count < 0);
396}
397
398static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
399 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700400 unsigned long start,
401 unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200402{
403 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200404 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200405
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200406 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200407 spin_lock(&kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200408
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700409 young = kvm_age_hva(kvm, start, end);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200410 if (young)
411 kvm_flush_remote_tlbs(kvm);
412
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900413 spin_unlock(&kvm->mmu_lock);
414 srcu_read_unlock(&kvm->srcu, idx);
415
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200416 return young;
417}
418
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700419static int kvm_mmu_notifier_clear_young(struct mmu_notifier *mn,
420 struct mm_struct *mm,
421 unsigned long start,
422 unsigned long end)
423{
424 struct kvm *kvm = mmu_notifier_to_kvm(mn);
425 int young, idx;
426
427 idx = srcu_read_lock(&kvm->srcu);
428 spin_lock(&kvm->mmu_lock);
429 /*
430 * Even though we do not flush TLB, this will still adversely
431 * affect performance on pre-Haswell Intel EPT, where there is
432 * no EPT Access Bit to clear so that we have to tear down EPT
433 * tables instead. If we find this unacceptable, we can always
434 * add a parameter to kvm_age_hva so that it effectively doesn't
435 * do anything on clear_young.
436 *
437 * Also note that currently we never issue secondary TLB flushes
438 * from clear_young, leaving this job up to the regular system
439 * cadence. If we find this inaccurate, we might come up with a
440 * more sophisticated heuristic later.
441 */
442 young = kvm_age_hva(kvm, start, end);
443 spin_unlock(&kvm->mmu_lock);
444 srcu_read_unlock(&kvm->srcu, idx);
445
446 return young;
447}
448
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800449static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
450 struct mm_struct *mm,
451 unsigned long address)
452{
453 struct kvm *kvm = mmu_notifier_to_kvm(mn);
454 int young, idx;
455
456 idx = srcu_read_lock(&kvm->srcu);
457 spin_lock(&kvm->mmu_lock);
458 young = kvm_test_age_hva(kvm, address);
459 spin_unlock(&kvm->mmu_lock);
460 srcu_read_unlock(&kvm->srcu, idx);
461
462 return young;
463}
464
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100465static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
466 struct mm_struct *mm)
467{
468 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800469 int idx;
470
471 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300472 kvm_arch_flush_shadow_all(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800473 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100474}
475
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200476static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
477 .invalidate_page = kvm_mmu_notifier_invalidate_page,
478 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
479 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
480 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700481 .clear_young = kvm_mmu_notifier_clear_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800482 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300483 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100484 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200485};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200486
487static int kvm_init_mmu_notifier(struct kvm *kvm)
488{
489 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
490 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
491}
492
493#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
494
495static int kvm_init_mmu_notifier(struct kvm *kvm)
496{
497 return 0;
498}
499
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200500#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
501
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200502static struct kvm_memslots *kvm_alloc_memslots(void)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800503{
504 int i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200505 struct kvm_memslots *slots;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800506
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200507 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
508 if (!slots)
509 return NULL;
510
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800511 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800512 slots->id_to_index[i] = slots->memslots[i].id = i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200513
514 return slots;
515}
516
517static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
518{
519 if (!memslot->dirty_bitmap)
520 return;
521
522 kvfree(memslot->dirty_bitmap);
523 memslot->dirty_bitmap = NULL;
524}
525
526/*
527 * Free any memory in @free but not in @dont.
528 */
529static void kvm_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
530 struct kvm_memory_slot *dont)
531{
532 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
533 kvm_destroy_dirty_bitmap(free);
534
535 kvm_arch_free_memslot(kvm, free, dont);
536
537 free->npages = 0;
538}
539
540static void kvm_free_memslots(struct kvm *kvm, struct kvm_memslots *slots)
541{
542 struct kvm_memory_slot *memslot;
543
544 if (!slots)
545 return;
546
547 kvm_for_each_memslot(memslot, slots)
548 kvm_free_memslot(kvm, memslot, NULL);
549
550 kvfree(slots);
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800551}
552
Janosch Frank536a6f82016-05-18 13:26:23 +0200553static void kvm_destroy_vm_debugfs(struct kvm *kvm)
554{
555 int i;
556
557 if (!kvm->debugfs_dentry)
558 return;
559
560 debugfs_remove_recursive(kvm->debugfs_dentry);
561
Luiz Capitulino9d5a1dc2016-09-07 14:47:21 -0400562 if (kvm->debugfs_stat_data) {
563 for (i = 0; i < kvm_debugfs_num_entries; i++)
564 kfree(kvm->debugfs_stat_data[i]);
565 kfree(kvm->debugfs_stat_data);
566 }
Janosch Frank536a6f82016-05-18 13:26:23 +0200567}
568
569static int kvm_create_vm_debugfs(struct kvm *kvm, int fd)
570{
571 char dir_name[ITOA_MAX_LEN * 2];
572 struct kvm_stat_data *stat_data;
573 struct kvm_stats_debugfs_item *p;
574
575 if (!debugfs_initialized())
576 return 0;
577
578 snprintf(dir_name, sizeof(dir_name), "%d-%d", task_pid_nr(current), fd);
579 kvm->debugfs_dentry = debugfs_create_dir(dir_name,
580 kvm_debugfs_dir);
581 if (!kvm->debugfs_dentry)
582 return -ENOMEM;
583
584 kvm->debugfs_stat_data = kcalloc(kvm_debugfs_num_entries,
585 sizeof(*kvm->debugfs_stat_data),
586 GFP_KERNEL);
587 if (!kvm->debugfs_stat_data)
588 return -ENOMEM;
589
590 for (p = debugfs_entries; p->name; p++) {
591 stat_data = kzalloc(sizeof(*stat_data), GFP_KERNEL);
592 if (!stat_data)
593 return -ENOMEM;
594
595 stat_data->kvm = kvm;
596 stat_data->offset = p->offset;
597 kvm->debugfs_stat_data[p - debugfs_entries] = stat_data;
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +1100598 if (!debugfs_create_file(p->name, 0644,
Janosch Frank536a6f82016-05-18 13:26:23 +0200599 kvm->debugfs_dentry,
600 stat_data,
601 stat_fops_per_vm[p->kind]))
602 return -ENOMEM;
603 }
604 return 0;
605}
606
Carsten Ottee08b9632012-01-04 10:25:20 +0100607static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800608{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100609 int r, i;
610 struct kvm *kvm = kvm_arch_alloc_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800611
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100612 if (!kvm)
613 return ERR_PTR(-ENOMEM);
614
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100615 spin_lock_init(&kvm->mmu_lock);
Vegard Nossumf1f10072017-02-27 14:30:07 -0800616 mmgrab(current->mm);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100617 kvm->mm = current->mm;
618 kvm_eventfd_init(kvm);
619 mutex_init(&kvm->lock);
620 mutex_init(&kvm->irq_lock);
621 mutex_init(&kvm->slots_lock);
Elena Reshetovae3736c32017-02-20 13:06:21 +0200622 refcount_set(&kvm->users_count, 1);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100623 INIT_LIST_HEAD(&kvm->devices);
624
Carsten Ottee08b9632012-01-04 10:25:20 +0100625 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100626 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100627 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200628
629 r = hardware_enable_all();
630 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100631 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200632
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200633#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300634 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200635#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800636
Alex Williamson1e702d92012-12-10 10:33:32 -0700637 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
638
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200639 r = -ENOMEM;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200640 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800641 struct kvm_memslots *slots = kvm_alloc_memslots();
642 if (!slots)
Paolo Bonzinif481b062015-05-17 17:30:37 +0200643 goto out_err_no_srcu;
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800644 /*
645 * Generations must be different for each address space.
646 * Init kvm generation close to the maximum to easily test the
647 * code of handling generation number wrap-around.
648 */
649 slots->generation = i * 2 - 150;
650 rcu_assign_pointer(kvm->memslots[i], slots);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200651 }
Paolo Bonzini00f034a2014-08-20 14:29:21 +0200652
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200653 if (init_srcu_struct(&kvm->srcu))
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100654 goto out_err_no_srcu;
655 if (init_srcu_struct(&kvm->irq_srcu))
656 goto out_err_no_irq_srcu;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200657 for (i = 0; i < KVM_NR_BUSES; i++) {
658 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
659 GFP_KERNEL);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100660 if (!kvm->buses[i])
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200661 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200662 }
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700663
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700664 r = kvm_init_mmu_notifier(kvm);
665 if (r)
666 goto out_err;
667
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200668 spin_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000669 list_add(&kvm->vm_list, &vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200670 spin_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100671
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200672 preempt_notifier_inc();
673
Avi Kivityf17abe92007-02-21 19:28:04 +0200674 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200675
676out_err:
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100677 cleanup_srcu_struct(&kvm->irq_srcu);
678out_err_no_irq_srcu:
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100679 cleanup_srcu_struct(&kvm->srcu);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100680out_err_no_srcu:
Alexander Graf10474ae2009-09-15 11:37:46 +0200681 hardware_disable_all();
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100682out_err_no_disable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200683 for (i = 0; i < KVM_NR_BUSES; i++)
684 kfree(kvm->buses[i]);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200685 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
686 kvm_free_memslots(kvm, kvm->memslots[i]);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100687 kvm_arch_free_vm(kvm);
Paolo Bonzinie9ad4ec2016-03-21 10:15:25 +0100688 mmdrop(current->mm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200689 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200690}
691
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900692/*
693 * Avoid using vmalloc for a small buffer.
694 * Should not be used when the size is statically known.
695 */
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900696void *kvm_kvzalloc(unsigned long size)
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900697{
698 if (size > PAGE_SIZE)
699 return vzalloc(size);
700 else
701 return kzalloc(size, GFP_KERNEL);
702}
703
Scott Wood07f0a7b2013-04-25 14:11:23 +0000704static void kvm_destroy_devices(struct kvm *kvm)
705{
Geliang Tange6e3b5a2016-01-01 19:47:12 +0800706 struct kvm_device *dev, *tmp;
Scott Wood07f0a7b2013-04-25 14:11:23 +0000707
Christoffer Dalla28ebea2016-08-09 19:13:01 +0200708 /*
709 * We do not need to take the kvm->lock here, because nobody else
710 * has a reference to the struct kvm at this point and therefore
711 * cannot access the devices list anyhow.
712 */
Geliang Tange6e3b5a2016-01-01 19:47:12 +0800713 list_for_each_entry_safe(dev, tmp, &kvm->devices, vm_node) {
714 list_del(&dev->vm_node);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000715 dev->ops->destroy(dev);
716 }
717}
718
Avi Kivityf17abe92007-02-21 19:28:04 +0200719static void kvm_destroy_vm(struct kvm *kvm)
720{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200721 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200722 struct mm_struct *mm = kvm->mm;
723
Janosch Frank536a6f82016-05-18 13:26:23 +0200724 kvm_destroy_vm_debugfs(kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800725 kvm_arch_sync_events(kvm);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200726 spin_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800727 list_del(&kvm->vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200728 spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200729 kvm_free_irq_routing(kvm);
Peter Xudf630b82017-03-15 16:01:17 +0800730 for (i = 0; i < KVM_NR_BUSES; i++) {
David Hildenbrand90db1042017-03-23 18:24:19 +0100731 if (kvm->buses[i])
732 kvm_io_bus_destroy(kvm->buses[i]);
Peter Xudf630b82017-03-15 16:01:17 +0800733 kvm->buses[i] = NULL;
734 }
Avi Kivity980da6c2009-12-20 15:13:43 +0200735 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200736#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
737 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200738#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300739 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200740#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800741 kvm_arch_destroy_vm(kvm);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000742 kvm_destroy_devices(kvm);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200743 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
744 kvm_free_memslots(kvm, kvm->memslots[i]);
Paolo Bonzini820b3fc2014-06-03 13:44:17 +0200745 cleanup_srcu_struct(&kvm->irq_srcu);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100746 cleanup_srcu_struct(&kvm->srcu);
747 kvm_arch_free_vm(kvm);
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200748 preempt_notifier_dec();
Alexander Graf10474ae2009-09-15 11:37:46 +0200749 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200750 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200751}
752
Izik Eidusd39f13b2008-03-30 16:01:25 +0300753void kvm_get_kvm(struct kvm *kvm)
754{
Elena Reshetovae3736c32017-02-20 13:06:21 +0200755 refcount_inc(&kvm->users_count);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300756}
757EXPORT_SYMBOL_GPL(kvm_get_kvm);
758
759void kvm_put_kvm(struct kvm *kvm)
760{
Elena Reshetovae3736c32017-02-20 13:06:21 +0200761 if (refcount_dec_and_test(&kvm->users_count))
Izik Eidusd39f13b2008-03-30 16:01:25 +0300762 kvm_destroy_vm(kvm);
763}
764EXPORT_SYMBOL_GPL(kvm_put_kvm);
765
766
Avi Kivityf17abe92007-02-21 19:28:04 +0200767static int kvm_vm_release(struct inode *inode, struct file *filp)
768{
769 struct kvm *kvm = filp->private_data;
770
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400771 kvm_irqfd_release(kvm);
772
Izik Eidusd39f13b2008-03-30 16:01:25 +0300773 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800774 return 0;
775}
776
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900777/*
778 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900779 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900780 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900781static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
782{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900783 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900784
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900785 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900786 if (!memslot->dirty_bitmap)
787 return -ENOMEM;
788
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900789 return 0;
790}
791
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800792/*
Igor Mammedov0e60b072014-12-01 17:29:26 +0000793 * Insert memslot and re-sort memslots based on their GFN,
794 * so binary search could be used to lookup GFN.
795 * Sorting algorithm takes advantage of having initially
796 * sorted array and known changed memslot position.
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800797 */
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100798static void update_memslots(struct kvm_memslots *slots,
799 struct kvm_memory_slot *new)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800800{
Paolo Bonzini85931762014-11-14 10:22:07 +0100801 int id = new->id;
802 int i = slots->id_to_index[id];
Igor Mammedov063584d2014-11-13 23:00:13 +0000803 struct kvm_memory_slot *mslots = slots->memslots;
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800804
Paolo Bonzini85931762014-11-14 10:22:07 +0100805 WARN_ON(mslots[i].id != id);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000806 if (!new->npages) {
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100807 WARN_ON(!mslots[i].npages);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000808 if (mslots[i].npages)
809 slots->used_slots--;
810 } else {
811 if (!mslots[i].npages)
812 slots->used_slots++;
813 }
Igor Mammedov0e60b072014-12-01 17:29:26 +0000814
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000815 while (i < KVM_MEM_SLOTS_NUM - 1 &&
Igor Mammedov0e60b072014-12-01 17:29:26 +0000816 new->base_gfn <= mslots[i + 1].base_gfn) {
817 if (!mslots[i + 1].npages)
818 break;
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000819 mslots[i] = mslots[i + 1];
820 slots->id_to_index[mslots[i].id] = i;
821 i++;
822 }
Paolo Bonziniefbeec72014-12-27 18:01:00 +0100823
824 /*
825 * The ">=" is needed when creating a slot with base_gfn == 0,
826 * so that it moves before all those with base_gfn == npages == 0.
827 *
828 * On the other hand, if new->npages is zero, the above loop has
829 * already left i pointing to the beginning of the empty part of
830 * mslots, and the ">=" would move the hole backwards in this
831 * case---which is wrong. So skip the loop when deleting a slot.
832 */
833 if (new->npages) {
834 while (i > 0 &&
835 new->base_gfn >= mslots[i - 1].base_gfn) {
836 mslots[i] = mslots[i - 1];
837 slots->id_to_index[mslots[i].id] = i;
838 i--;
839 }
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100840 } else
841 WARN_ON_ONCE(i != slots->used_slots);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800842
Paolo Bonzini85931762014-11-14 10:22:07 +0100843 mslots[i] = *new;
844 slots->id_to_index[mslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800845}
846
Paolo Bonzini09170a42015-05-18 13:59:39 +0200847static int check_memory_region_flags(const struct kvm_userspace_memory_region *mem)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800848{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800849 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
850
Christoffer Dall0f8a4de2014-08-26 14:00:37 +0200851#ifdef __KVM_HAVE_READONLY_MEM
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800852 valid_flags |= KVM_MEM_READONLY;
853#endif
854
855 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800856 return -EINVAL;
857
858 return 0;
859}
860
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200861static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
Paolo Bonzinif481b062015-05-17 17:30:37 +0200862 int as_id, struct kvm_memslots *slots)
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200863{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200864 struct kvm_memslots *old_memslots = __kvm_memslots(kvm, as_id);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200865
David Matlackee3d1572014-08-18 15:46:06 -0700866 /*
867 * Set the low bit in the generation, which disables SPTE caching
868 * until the end of synchronize_srcu_expedited.
869 */
870 WARN_ON(old_memslots->generation & 1);
871 slots->generation = old_memslots->generation + 1;
872
Paolo Bonzinif481b062015-05-17 17:30:37 +0200873 rcu_assign_pointer(kvm->memslots[as_id], slots);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200874 synchronize_srcu_expedited(&kvm->srcu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900875
David Matlackee3d1572014-08-18 15:46:06 -0700876 /*
877 * Increment the new memslot generation a second time. This prevents
878 * vm exits that race with memslot updates from caching a memslot
879 * generation that will (potentially) be valid forever.
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800880 *
881 * Generations must be unique even across address spaces. We do not need
882 * a global counter for that, instead the generation space is evenly split
883 * across address spaces. For example, with two address spaces, address
884 * space 0 will use generations 0, 4, 8, ... while * address space 1 will
885 * use generations 2, 6, 10, 14, ...
David Matlackee3d1572014-08-18 15:46:06 -0700886 */
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800887 slots->generation += KVM_ADDRESS_SPACE_NUM * 2 - 1;
David Matlackee3d1572014-08-18 15:46:06 -0700888
Paolo Bonzini15f46012015-05-17 21:26:08 +0200889 kvm_arch_memslots_updated(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900890
891 return old_memslots;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200892}
893
Avi Kivity6aa8b732006-12-10 02:21:36 -0800894/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800895 * Allocate some memory and give it an address in the guest physical address
896 * space.
897 *
898 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800899 *
Dominik Dingel02d5d552014-10-27 16:22:56 +0100900 * Must be called holding kvm->slots_lock for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800901 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800902int __kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200903 const struct kvm_userspace_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800904{
Avi Kivity8234b222010-12-27 12:08:45 +0200905 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200907 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900908 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800909 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700910 struct kvm_memslots *slots = NULL, *old_memslots;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200911 int as_id, id;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900912 enum kvm_mr_change change;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800913
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800914 r = check_memory_region_flags(mem);
915 if (r)
916 goto out;
917
Avi Kivity6aa8b732006-12-10 02:21:36 -0800918 r = -EINVAL;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200919 as_id = mem->slot >> 16;
920 id = (u16)mem->slot;
921
Avi Kivity6aa8b732006-12-10 02:21:36 -0800922 /* General sanity checks */
923 if (mem->memory_size & (PAGE_SIZE - 1))
924 goto out;
925 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
926 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900927 /* We can read the guest memory with __xxx_user() later on. */
Paolo Bonzinif481b062015-05-17 17:30:37 +0200928 if ((id < KVM_USER_MEM_SLOTS) &&
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900929 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +0200930 !access_ok(VERIFY_WRITE,
931 (void __user *)(unsigned long)mem->userspace_addr,
932 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600933 goto out;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200934 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800935 goto out;
936 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
937 goto out;
938
Paolo Bonzinif481b062015-05-17 17:30:37 +0200939 slot = id_to_memslot(__kvm_memslots(kvm, as_id), id);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800940 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
941 npages = mem->memory_size >> PAGE_SHIFT;
942
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900943 if (npages > KVM_MEM_MAX_NR_PAGES)
944 goto out;
945
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900946 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800947
Paolo Bonzinif481b062015-05-17 17:30:37 +0200948 new.id = id;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800949 new.base_gfn = base_gfn;
950 new.npages = npages;
951 new.flags = mem->flags;
952
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900953 if (npages) {
954 if (!old.npages)
955 change = KVM_MR_CREATE;
956 else { /* Modify an existing slot. */
957 if ((mem->userspace_addr != old.userspace_addr) ||
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +0900958 (npages != old.npages) ||
959 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900960 goto out;
961
962 if (base_gfn != old.base_gfn)
963 change = KVM_MR_MOVE;
964 else if (new.flags != old.flags)
965 change = KVM_MR_FLAGS_ONLY;
966 else { /* Nothing to change. */
967 r = 0;
968 goto out;
969 }
970 }
Paolo Bonzini09170a42015-05-18 13:59:39 +0200971 } else {
972 if (!old.npages)
973 goto out;
974
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900975 change = KVM_MR_DELETE;
Paolo Bonzini09170a42015-05-18 13:59:39 +0200976 new.base_gfn = 0;
977 new.flags = 0;
978 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800979
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900980 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900981 /* Check for overlaps */
982 r = -EEXIST;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200983 kvm_for_each_memslot(slot, __kvm_memslots(kvm, as_id)) {
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900984 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
Paolo Bonzinif481b062015-05-17 17:30:37 +0200985 (slot->id == id))
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900986 continue;
987 if (!((base_gfn + npages <= slot->base_gfn) ||
988 (base_gfn >= slot->base_gfn + slot->npages)))
989 goto out;
990 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992
Avi Kivity6aa8b732006-12-10 02:21:36 -0800993 /* Free page dirty bitmap if unneeded */
994 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000995 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800996
997 r = -ENOMEM;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900998 if (change == KVM_MR_CREATE) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900999 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09001000
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05301001 if (kvm_arch_create_memslot(kvm, &new, npages))
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001002 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001003 }
Joerg Roedelec04b262009-06-19 15:16:23 +02001004
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005 /* Allocate page dirty bitmap if needed */
1006 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +09001007 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001008 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001009 }
1010
Igor Mammedov74496132015-03-20 12:21:37 +00001011 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001012 if (!slots)
1013 goto out_free;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001014 memcpy(slots, __kvm_memslots(kvm, as_id), sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001015
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001016 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
Paolo Bonzinif481b062015-05-17 17:30:37 +02001017 slot = id_to_memslot(slots, id);
Xiao Guangrong28a37542011-11-24 19:04:35 +08001018 slot->flags |= KVM_MEMSLOT_INVALID;
1019
Paolo Bonzinif481b062015-05-17 17:30:37 +02001020 old_memslots = install_new_memslots(kvm, as_id, slots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001021
Alex Williamsone40f1932012-12-10 10:32:57 -07001022 /* slot was deleted or moved, clear iommu mapping */
1023 kvm_iommu_unmap_pages(kvm, &old);
Marcelo Tosatti12d6e752012-08-24 15:54:58 -03001024 /* From this point no new shadow pages pointing to a deleted,
1025 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001026 *
1027 * validation of sp->gfn happens in:
Xiubo Lib7d409d2015-02-26 14:58:24 +08001028 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
1029 * - kvm_is_visible_gfn (mmu_check_roots)
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001030 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03001031 kvm_arch_flush_shadow_memslot(kvm, slot);
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001032
1033 /*
1034 * We can re-use the old_memslots from above, the only difference
1035 * from the currently installed memslots is the invalid flag. This
1036 * will get overwritten by update_memslots anyway.
1037 */
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001038 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001039 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03001040
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09001041 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001042 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001043 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001044
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001045 /* actual memory is freed via old in kvm_free_memslot below */
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001046 if (change == KVM_MR_DELETE) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001047 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001048 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001049 }
1050
Paolo Bonzini5cc15022014-11-14 10:55:31 +01001051 update_memslots(slots, &new);
Paolo Bonzinif481b062015-05-17 17:30:37 +02001052 old_memslots = install_new_memslots(kvm, as_id, slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001053
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001054 kvm_arch_commit_memory_region(kvm, mem, &old, &new, change);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08001055
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001056 kvm_free_memslot(kvm, &old, &new);
Igor Mammedov74496132015-03-20 12:21:37 +00001057 kvfree(old_memslots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001058
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001059 /*
1060 * IOMMU mapping: New slots need to be mapped. Old slots need to be
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061 * un-mapped and re-mapped if their base changes. Since base change
1062 * unmapping is handled above with slot deletion, mapping alone is
Sheng Yangf78e0e22007-10-29 09:40:42 +08001063 * needed here. Anything else the iommu might care about for existing
Avi Kivity6aa8b732006-12-10 02:21:36 -08001064 * slots (size changes, userspace addr changes and read-only flag
1065 * changes) is disallowed above, so any other attribute changes getting
1066 * here can be skipped.
Izik Eidus210c7c42007-10-24 23:52:57 +02001067 */
Herongguang (Stephen)0292e162017-03-27 15:21:17 +08001068 if (as_id == 0 && (change == KVM_MR_CREATE || change == KVM_MR_MOVE)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001069 r = kvm_iommu_map_pages(kvm, &new);
Yang Zhange0230e12013-10-24 09:56:39 +08001070 return r;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001071 }
1072
Avi Kivity6aa8b732006-12-10 02:21:36 -08001073 return 0;
1074
1075out_slots:
Igor Mammedov74496132015-03-20 12:21:37 +00001076 kvfree(slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001077out_free:
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001078 kvm_free_memslot(kvm, &new, &old);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001079out:
1080 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +02001081}
1082EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001083
1084int kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001085 const struct kvm_userspace_memory_region *mem)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001086{
1087 int r;
1088
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001089 mutex_lock(&kvm->slots_lock);
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001090 r = __kvm_set_memory_region(kvm, mem);
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001091 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001092 return r;
1093}
Izik Eidus210c7c42007-10-24 23:52:57 +02001094EXPORT_SYMBOL_GPL(kvm_set_memory_region);
1095
Stephen Hemminger79408762013-12-29 12:12:29 -08001096static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
1097 struct kvm_userspace_memory_region *mem)
Izik Eidus210c7c42007-10-24 23:52:57 +02001098{
Paolo Bonzinif481b062015-05-17 17:30:37 +02001099 if ((u16)mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001100 return -EINVAL;
Paolo Bonzini09170a42015-05-18 13:59:39 +02001101
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001102 return kvm_set_memory_region(kvm, mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001103}
1104
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001105int kvm_get_dirty_log(struct kvm *kvm,
1106 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001107{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001108 struct kvm_memslots *slots;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001109 struct kvm_memory_slot *memslot;
Markus Elfring843574a2017-01-22 17:41:07 +01001110 int i, as_id, id;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001111 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001112 unsigned long any = 0;
1113
Paolo Bonzinif481b062015-05-17 17:30:37 +02001114 as_id = log->slot >> 16;
1115 id = (u16)log->slot;
1116 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring843574a2017-01-22 17:41:07 +01001117 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001118
Paolo Bonzinif481b062015-05-17 17:30:37 +02001119 slots = __kvm_memslots(kvm, as_id);
1120 memslot = id_to_memslot(slots, id);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001121 if (!memslot->dirty_bitmap)
Markus Elfring843574a2017-01-22 17:41:07 +01001122 return -ENOENT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001123
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001124 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001125
Uri Lublincd1a4a92007-02-22 16:43:09 +02001126 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001127 any = memslot->dirty_bitmap[i];
1128
Avi Kivity6aa8b732006-12-10 02:21:36 -08001129 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
Markus Elfring843574a2017-01-22 17:41:07 +01001130 return -EFAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001131
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001132 if (any)
1133 *is_dirty = 1;
Markus Elfring843574a2017-01-22 17:41:07 +01001134 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001135}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301136EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001137
Mario Smarduchba0513b2015-01-15 15:58:53 -08001138#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
1139/**
1140 * kvm_get_dirty_log_protect - get a snapshot of dirty pages, and if any pages
1141 * are dirty write protect them for next write.
1142 * @kvm: pointer to kvm instance
1143 * @log: slot id and address to which we copy the log
1144 * @is_dirty: flag set if any page is dirty
1145 *
1146 * We need to keep it in mind that VCPU threads can write to the bitmap
1147 * concurrently. So, to avoid losing track of dirty pages we keep the
1148 * following order:
1149 *
1150 * 1. Take a snapshot of the bit and clear it if needed.
1151 * 2. Write protect the corresponding page.
1152 * 3. Copy the snapshot to the userspace.
1153 * 4. Upon return caller flushes TLB's if needed.
1154 *
1155 * Between 2 and 4, the guest may write to the page using the remaining TLB
1156 * entry. This is not a problem because the page is reported dirty using
1157 * the snapshot taken before and step 4 ensures that writes done after
1158 * exiting to userspace will be logged for the next call.
1159 *
1160 */
1161int kvm_get_dirty_log_protect(struct kvm *kvm,
1162 struct kvm_dirty_log *log, bool *is_dirty)
1163{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001164 struct kvm_memslots *slots;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001165 struct kvm_memory_slot *memslot;
Markus Elfring58d6db32017-01-22 17:30:16 +01001166 int i, as_id, id;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001167 unsigned long n;
1168 unsigned long *dirty_bitmap;
1169 unsigned long *dirty_bitmap_buffer;
1170
Paolo Bonzinif481b062015-05-17 17:30:37 +02001171 as_id = log->slot >> 16;
1172 id = (u16)log->slot;
1173 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring58d6db32017-01-22 17:30:16 +01001174 return -EINVAL;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001175
Paolo Bonzinif481b062015-05-17 17:30:37 +02001176 slots = __kvm_memslots(kvm, as_id);
1177 memslot = id_to_memslot(slots, id);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001178
1179 dirty_bitmap = memslot->dirty_bitmap;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001180 if (!dirty_bitmap)
Markus Elfring58d6db32017-01-22 17:30:16 +01001181 return -ENOENT;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001182
1183 n = kvm_dirty_bitmap_bytes(memslot);
1184
1185 dirty_bitmap_buffer = dirty_bitmap + n / sizeof(long);
1186 memset(dirty_bitmap_buffer, 0, n);
1187
1188 spin_lock(&kvm->mmu_lock);
1189 *is_dirty = false;
1190 for (i = 0; i < n / sizeof(long); i++) {
1191 unsigned long mask;
1192 gfn_t offset;
1193
1194 if (!dirty_bitmap[i])
1195 continue;
1196
1197 *is_dirty = true;
1198
1199 mask = xchg(&dirty_bitmap[i], 0);
1200 dirty_bitmap_buffer[i] = mask;
1201
Takuya Yoshikawa58d29302015-03-17 16:19:58 +09001202 if (mask) {
1203 offset = i * BITS_PER_LONG;
1204 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1205 offset, mask);
1206 }
Mario Smarduchba0513b2015-01-15 15:58:53 -08001207 }
1208
1209 spin_unlock(&kvm->mmu_lock);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001210 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
Markus Elfring58d6db32017-01-22 17:30:16 +01001211 return -EFAULT;
1212 return 0;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001213}
1214EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect);
1215#endif
1216
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001217bool kvm_largepages_enabled(void)
1218{
1219 return largepages_enabled;
1220}
1221
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001222void kvm_disable_largepages(void)
1223{
1224 largepages_enabled = false;
1225}
1226EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1227
Gleb Natapov49c77542010-10-18 15:22:23 +02001228struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1229{
1230 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1231}
Avi Kivitya1f4d3952010-06-21 11:44:20 +03001232EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001233
Paolo Bonzini8e734852015-05-17 13:58:53 +02001234struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn)
1235{
1236 return __gfn_to_memslot(kvm_vcpu_memslots(vcpu), gfn);
1237}
1238
Yaowei Bai33e94152015-11-14 11:21:06 +08001239bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001240{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001241 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +02001242
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001243 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001244 memslot->flags & KVM_MEMSLOT_INVALID)
Yaowei Bai33e94152015-11-14 11:21:06 +08001245 return false;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001246
Yaowei Bai33e94152015-11-14 11:21:06 +08001247 return true;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001248}
1249EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1250
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001251unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1252{
1253 struct vm_area_struct *vma;
1254 unsigned long addr, size;
1255
1256 size = PAGE_SIZE;
1257
1258 addr = gfn_to_hva(kvm, gfn);
1259 if (kvm_is_error_hva(addr))
1260 return PAGE_SIZE;
1261
1262 down_read(&current->mm->mmap_sem);
1263 vma = find_vma(current->mm, addr);
1264 if (!vma)
1265 goto out;
1266
1267 size = vma_kernel_pagesize(vma);
1268
1269out:
1270 up_read(&current->mm->mmap_sem);
1271
1272 return size;
1273}
1274
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001275static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1276{
1277 return slot->flags & KVM_MEM_READONLY;
1278}
1279
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001280static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1281 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001282{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001283 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001284 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001285
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001286 if (memslot_is_readonly(slot) && write)
1287 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001288
1289 if (nr_pages)
1290 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1291
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001292 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001293}
Xiao Guangrong48987782010-08-22 19:11:43 +08001294
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001295static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1296 gfn_t *nr_pages)
1297{
1298 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1299}
1300
1301unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001302 gfn_t gfn)
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001303{
1304 return gfn_to_hva_many(slot, gfn, NULL);
1305}
1306EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1307
Xiao Guangrong48987782010-08-22 19:11:43 +08001308unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1309{
Gleb Natapov49c77542010-10-18 15:22:23 +02001310 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001311}
Sheng Yang0d150292008-04-25 21:44:50 +08001312EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001313
Paolo Bonzini8e734852015-05-17 13:58:53 +02001314unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn)
1315{
1316 return gfn_to_hva_many(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn, NULL);
1317}
1318EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva);
1319
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001320/*
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001321 * If writable is set to false, the hva returned by this function is only
1322 * allowed to be read.
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001323 */
Christoffer Dall64d83122014-08-19 12:15:00 +02001324unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1325 gfn_t gfn, bool *writable)
Gleb Natapov80300892010-10-19 18:13:41 +02001326{
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001327 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1328
1329 if (!kvm_is_error_hva(hva) && writable)
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001330 *writable = !memslot_is_readonly(slot);
1331
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001332 return hva;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001333}
1334
Christoffer Dall64d83122014-08-19 12:15:00 +02001335unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1336{
1337 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1338
1339 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1340}
1341
Paolo Bonzini8e734852015-05-17 13:58:53 +02001342unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable)
1343{
1344 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1345
1346 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1347}
1348
Dave Hansend4edcf02016-02-12 13:01:56 -08001349static int get_user_page_nowait(unsigned long start, int write,
1350 struct page **page)
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001351{
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001352 int flags = FOLL_NOWAIT | FOLL_HWPOISON;
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001353
1354 if (write)
1355 flags |= FOLL_WRITE;
1356
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001357 return get_user_pages(start, 1, flags, page, NULL);
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001358}
1359
Huang Yingfafc3db2011-01-30 11:15:49 +08001360static inline int check_user_page_hwpoison(unsigned long addr)
1361{
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001362 int rc, flags = FOLL_HWPOISON | FOLL_WRITE;
Huang Yingfafc3db2011-01-30 11:15:49 +08001363
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001364 rc = get_user_pages(addr, 1, flags, NULL, NULL);
Huang Yingfafc3db2011-01-30 11:15:49 +08001365 return rc == -EHWPOISON;
1366}
1367
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001368/*
1369 * The atomic path to get the writable pfn which will be stored in @pfn,
1370 * true indicates success, otherwise false is returned.
1371 */
1372static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
Dan Williamsba049e92016-01-15 16:56:11 -08001373 bool write_fault, bool *writable, kvm_pfn_t *pfn)
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001374{
1375 struct page *page[1];
1376 int npages;
1377
1378 if (!(async || atomic))
1379 return false;
1380
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001381 /*
1382 * Fast pin a writable pfn only if it is a write fault request
1383 * or the caller allows to map a writable pfn for a read fault
1384 * request.
1385 */
1386 if (!(write_fault || writable))
1387 return false;
1388
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001389 npages = __get_user_pages_fast(addr, 1, 1, page);
1390 if (npages == 1) {
1391 *pfn = page_to_pfn(page[0]);
1392
1393 if (writable)
1394 *writable = true;
1395 return true;
1396 }
1397
1398 return false;
1399}
1400
1401/*
1402 * The slow path to get the pfn of the specified host virtual address,
1403 * 1 indicates success, -errno is returned if error is detected.
1404 */
1405static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
Dan Williamsba049e92016-01-15 16:56:11 -08001406 bool *writable, kvm_pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001407{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001408 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001409 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001410
1411 might_sleep();
1412
1413 if (writable)
1414 *writable = write_fault;
1415
1416 if (async) {
1417 down_read(&current->mm->mmap_sem);
Dave Hansend4edcf02016-02-12 13:01:56 -08001418 npages = get_user_page_nowait(addr, write_fault, page);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001419 up_read(&current->mm->mmap_sem);
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001420 } else {
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -08001421 unsigned int flags = FOLL_HWPOISON;
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001422
1423 if (write_fault)
1424 flags |= FOLL_WRITE;
1425
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -08001426 npages = get_user_pages_unlocked(addr, 1, page, flags);
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001427 }
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001428 if (npages != 1)
1429 return npages;
1430
1431 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001432 if (unlikely(!write_fault) && writable) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001433 struct page *wpage[1];
1434
1435 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1436 if (npages == 1) {
1437 *writable = true;
1438 put_page(page[0]);
1439 page[0] = wpage[0];
1440 }
1441
1442 npages = 1;
1443 }
1444 *pfn = page_to_pfn(page[0]);
1445 return npages;
1446}
1447
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001448static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1449{
1450 if (unlikely(!(vma->vm_flags & VM_READ)))
1451 return false;
1452
1453 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1454 return false;
1455
1456 return true;
1457}
1458
Paolo Bonzini92176a82016-06-07 16:22:47 +02001459static int hva_to_pfn_remapped(struct vm_area_struct *vma,
1460 unsigned long addr, bool *async,
1461 bool write_fault, kvm_pfn_t *p_pfn)
1462{
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001463 unsigned long pfn;
1464 int r;
1465
1466 r = follow_pfn(vma, addr, &pfn);
1467 if (r) {
1468 /*
1469 * get_user_pages fails for VM_IO and VM_PFNMAP vmas and does
1470 * not call the fault handler, so do it here.
1471 */
1472 bool unlocked = false;
1473 r = fixup_user_fault(current, current->mm, addr,
1474 (write_fault ? FAULT_FLAG_WRITE : 0),
1475 &unlocked);
1476 if (unlocked)
1477 return -EAGAIN;
1478 if (r)
1479 return r;
1480
1481 r = follow_pfn(vma, addr, &pfn);
1482 if (r)
1483 return r;
1484
1485 }
1486
1487
1488 /*
1489 * Get a reference here because callers of *hva_to_pfn* and
1490 * *gfn_to_pfn* ultimately call kvm_release_pfn_clean on the
1491 * returned pfn. This is only needed if the VMA has VM_MIXEDMAP
1492 * set, but the kvm_get_pfn/kvm_release_pfn_clean pair will
1493 * simply do nothing for reserved pfns.
1494 *
1495 * Whoever called remap_pfn_range is also going to call e.g.
1496 * unmap_mapping_range before the underlying pages are freed,
1497 * causing a call to our MMU notifier.
1498 */
1499 kvm_get_pfn(pfn);
1500
1501 *p_pfn = pfn;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001502 return 0;
1503}
1504
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001505/*
1506 * Pin guest page in memory and return its pfn.
1507 * @addr: host virtual address which maps memory to the guest
1508 * @atomic: whether this function can sleep
1509 * @async: whether this function need to wait IO complete if the
1510 * host page is not in the memory
1511 * @write_fault: whether we should get a writable host page
1512 * @writable: whether it allows to map a writable host page for !@write_fault
1513 *
1514 * The function will map a writable host page for these two cases:
1515 * 1): @write_fault = true
1516 * 2): @write_fault = false && @writable, @writable will tell the caller
1517 * whether the mapping is writable.
1518 */
Dan Williamsba049e92016-01-15 16:56:11 -08001519static kvm_pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001520 bool write_fault, bool *writable)
1521{
1522 struct vm_area_struct *vma;
Dan Williamsba049e92016-01-15 16:56:11 -08001523 kvm_pfn_t pfn = 0;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001524 int npages, r;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001525
Gleb Natapovaf585b92010-10-14 11:22:46 +02001526 /* we can do it either atomically or asynchronously, not both */
1527 BUG_ON(atomic && async);
1528
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001529 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1530 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001531
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001532 if (atomic)
1533 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001534
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001535 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1536 if (npages == 1)
1537 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001538
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001539 down_read(&current->mm->mmap_sem);
1540 if (npages == -EHWPOISON ||
1541 (!async && check_user_page_hwpoison(addr))) {
1542 pfn = KVM_PFN_ERR_HWPOISON;
1543 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001544 }
Izik Eidus539cb662007-11-11 22:05:04 +02001545
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001546retry:
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001547 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001548
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001549 if (vma == NULL)
1550 pfn = KVM_PFN_ERR_FAULT;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001551 else if (vma->vm_flags & (VM_IO | VM_PFNMAP)) {
1552 r = hva_to_pfn_remapped(vma, addr, async, write_fault, &pfn);
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001553 if (r == -EAGAIN)
1554 goto retry;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001555 if (r < 0)
1556 pfn = KVM_PFN_ERR_FAULT;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001557 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001558 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001559 *async = true;
1560 pfn = KVM_PFN_ERR_FAULT;
1561 }
1562exit:
1563 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001564 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001565}
1566
Dan Williamsba049e92016-01-15 16:56:11 -08001567kvm_pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn,
1568 bool atomic, bool *async, bool write_fault,
1569 bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001570{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001571 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1572
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001573 if (addr == KVM_HVA_ERR_RO_BAD) {
1574 if (writable)
1575 *writable = false;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001576 return KVM_PFN_ERR_RO_FAULT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001577 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001578
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001579 if (kvm_is_error_hva(addr)) {
1580 if (writable)
1581 *writable = false;
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001582 return KVM_PFN_NOSLOT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001583 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001584
1585 /* Do not map writable pfn in the readonly memslot. */
1586 if (writable && memslot_is_readonly(slot)) {
1587 *writable = false;
1588 writable = NULL;
1589 }
1590
1591 return hva_to_pfn(addr, atomic, async, write_fault,
1592 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001593}
Paolo Bonzini35204692015-04-02 11:20:48 +02001594EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001595
Dan Williamsba049e92016-01-15 16:56:11 -08001596kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001597 bool *writable)
1598{
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001599 return __gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn, false, NULL,
1600 write_fault, writable);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001601}
1602EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1603
Dan Williamsba049e92016-01-15 16:56:11 -08001604kvm_pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001605{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001606 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001607}
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001608EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001609
Dan Williamsba049e92016-01-15 16:56:11 -08001610kvm_pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001611{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001612 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001613}
1614EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1615
Dan Williamsba049e92016-01-15 16:56:11 -08001616kvm_pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001617{
1618 return gfn_to_pfn_memslot_atomic(gfn_to_memslot(kvm, gfn), gfn);
1619}
1620EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1621
Dan Williamsba049e92016-01-15 16:56:11 -08001622kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001623{
1624 return gfn_to_pfn_memslot_atomic(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1625}
1626EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn_atomic);
1627
Dan Williamsba049e92016-01-15 16:56:11 -08001628kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001629{
1630 return gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn);
1631}
1632EXPORT_SYMBOL_GPL(gfn_to_pfn);
1633
Dan Williamsba049e92016-01-15 16:56:11 -08001634kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001635{
1636 return gfn_to_pfn_memslot(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1637}
1638EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn);
1639
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001640int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1641 struct page **pages, int nr_pages)
Xiao Guangrong48987782010-08-22 19:11:43 +08001642{
1643 unsigned long addr;
1644 gfn_t entry;
1645
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001646 addr = gfn_to_hva_many(slot, gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001647 if (kvm_is_error_hva(addr))
1648 return -1;
1649
1650 if (entry < nr_pages)
1651 return 0;
1652
1653 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1654}
1655EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1656
Dan Williamsba049e92016-01-15 16:56:11 -08001657static struct page *kvm_pfn_to_page(kvm_pfn_t pfn)
Xiao Guangronga2766322012-07-26 11:58:59 +08001658{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001659 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001660 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001661
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001662 if (kvm_is_reserved_pfn(pfn)) {
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001663 WARN_ON(1);
1664 return KVM_ERR_PTR_BAD_PAGE;
1665 }
1666
Xiao Guangronga2766322012-07-26 11:58:59 +08001667 return pfn_to_page(pfn);
1668}
1669
Anthony Liguori35149e22008-04-02 14:46:56 -05001670struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1671{
Dan Williamsba049e92016-01-15 16:56:11 -08001672 kvm_pfn_t pfn;
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001673
1674 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001675
Xiao Guangronga2766322012-07-26 11:58:59 +08001676 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001677}
1678EXPORT_SYMBOL_GPL(gfn_to_page);
1679
Paolo Bonzini8e734852015-05-17 13:58:53 +02001680struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn)
1681{
Dan Williamsba049e92016-01-15 16:56:11 -08001682 kvm_pfn_t pfn;
Paolo Bonzini8e734852015-05-17 13:58:53 +02001683
1684 pfn = kvm_vcpu_gfn_to_pfn(vcpu, gfn);
1685
1686 return kvm_pfn_to_page(pfn);
1687}
1688EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_page);
1689
Izik Eidusb4231d62007-11-20 11:49:33 +02001690void kvm_release_page_clean(struct page *page)
1691{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001692 WARN_ON(is_error_page(page));
1693
Anthony Liguori35149e22008-04-02 14:46:56 -05001694 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001695}
1696EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1697
Dan Williamsba049e92016-01-15 16:56:11 -08001698void kvm_release_pfn_clean(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001699{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001700 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001701 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001702}
1703EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1704
Izik Eidusb4231d62007-11-20 11:49:33 +02001705void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001706{
Xiao Guangronga2766322012-07-26 11:58:59 +08001707 WARN_ON(is_error_page(page));
1708
Anthony Liguori35149e22008-04-02 14:46:56 -05001709 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001710}
Izik Eidusb4231d62007-11-20 11:49:33 +02001711EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001712
Dan Williamsba049e92016-01-15 16:56:11 -08001713static void kvm_release_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001714{
1715 kvm_set_pfn_dirty(pfn);
1716 kvm_release_pfn_clean(pfn);
1717}
Anthony Liguori35149e22008-04-02 14:46:56 -05001718
Dan Williamsba049e92016-01-15 16:56:11 -08001719void kvm_set_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001720{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001721 if (!kvm_is_reserved_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001722 struct page *page = pfn_to_page(pfn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08001723
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001724 if (!PageReserved(page))
1725 SetPageDirty(page);
1726 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001727}
1728EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1729
Dan Williamsba049e92016-01-15 16:56:11 -08001730void kvm_set_pfn_accessed(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001731{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001732 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001733 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001734}
1735EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1736
Dan Williamsba049e92016-01-15 16:56:11 -08001737void kvm_get_pfn(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001738{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001739 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001740 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001741}
1742EXPORT_SYMBOL_GPL(kvm_get_pfn);
1743
Izik Eidus195aefd2007-10-01 22:14:18 +02001744static int next_segment(unsigned long len, int offset)
1745{
1746 if (len > PAGE_SIZE - offset)
1747 return PAGE_SIZE - offset;
1748 else
1749 return len;
1750}
1751
Paolo Bonzini8e734852015-05-17 13:58:53 +02001752static int __kvm_read_guest_page(struct kvm_memory_slot *slot, gfn_t gfn,
1753 void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001754{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001755 int r;
1756 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001757
Paolo Bonzini8e734852015-05-17 13:58:53 +02001758 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001759 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001760 return -EFAULT;
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001761 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001762 if (r)
1763 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001764 return 0;
1765}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001766
1767int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1768 int len)
1769{
1770 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1771
1772 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1773}
Izik Eidus195aefd2007-10-01 22:14:18 +02001774EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1775
Paolo Bonzini8e734852015-05-17 13:58:53 +02001776int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data,
1777 int offset, int len)
1778{
1779 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1780
1781 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1782}
1783EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_page);
1784
Izik Eidus195aefd2007-10-01 22:14:18 +02001785int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1786{
1787 gfn_t gfn = gpa >> PAGE_SHIFT;
1788 int seg;
1789 int offset = offset_in_page(gpa);
1790 int ret;
1791
1792 while ((seg = next_segment(len, offset)) != 0) {
1793 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1794 if (ret < 0)
1795 return ret;
1796 offset = 0;
1797 len -= seg;
1798 data += seg;
1799 ++gfn;
1800 }
1801 return 0;
1802}
1803EXPORT_SYMBOL_GPL(kvm_read_guest);
1804
Paolo Bonzini8e734852015-05-17 13:58:53 +02001805int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned long len)
1806{
1807 gfn_t gfn = gpa >> PAGE_SHIFT;
1808 int seg;
1809 int offset = offset_in_page(gpa);
1810 int ret;
1811
1812 while ((seg = next_segment(len, offset)) != 0) {
1813 ret = kvm_vcpu_read_guest_page(vcpu, gfn, data, offset, seg);
1814 if (ret < 0)
1815 return ret;
1816 offset = 0;
1817 len -= seg;
1818 data += seg;
1819 ++gfn;
1820 }
1821 return 0;
1822}
1823EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest);
1824
1825static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1826 void *data, int offset, unsigned long len)
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001827{
1828 int r;
1829 unsigned long addr;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001830
Paolo Bonzini8e734852015-05-17 13:58:53 +02001831 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001832 if (kvm_is_error_hva(addr))
1833 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001834 pagefault_disable();
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001835 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001836 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001837 if (r)
1838 return -EFAULT;
1839 return 0;
1840}
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001841
Paolo Bonzini8e734852015-05-17 13:58:53 +02001842int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1843 unsigned long len)
1844{
1845 gfn_t gfn = gpa >> PAGE_SHIFT;
1846 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1847 int offset = offset_in_page(gpa);
1848
1849 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1850}
1851EXPORT_SYMBOL_GPL(kvm_read_guest_atomic);
1852
1853int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa,
1854 void *data, unsigned long len)
1855{
1856 gfn_t gfn = gpa >> PAGE_SHIFT;
1857 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1858 int offset = offset_in_page(gpa);
1859
1860 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1861}
1862EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic);
1863
1864static int __kvm_write_guest_page(struct kvm_memory_slot *memslot, gfn_t gfn,
1865 const void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001866{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001867 int r;
1868 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001869
Radim Krčmář251eb842015-04-10 21:47:27 +02001870 addr = gfn_to_hva_memslot(memslot, gfn);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001871 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001872 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001873 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001874 if (r)
1875 return -EFAULT;
Paolo Bonzinibc009e42015-05-26 12:43:41 +02001876 mark_page_dirty_in_slot(memslot, gfn);
Izik Eidus195aefd2007-10-01 22:14:18 +02001877 return 0;
1878}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001879
1880int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn,
1881 const void *data, int offset, int len)
1882{
1883 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1884
1885 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1886}
Izik Eidus195aefd2007-10-01 22:14:18 +02001887EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1888
Paolo Bonzini8e734852015-05-17 13:58:53 +02001889int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
1890 const void *data, int offset, int len)
1891{
1892 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1893
1894 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1895}
1896EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_page);
1897
Izik Eidus195aefd2007-10-01 22:14:18 +02001898int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1899 unsigned long len)
1900{
1901 gfn_t gfn = gpa >> PAGE_SHIFT;
1902 int seg;
1903 int offset = offset_in_page(gpa);
1904 int ret;
1905
1906 while ((seg = next_segment(len, offset)) != 0) {
1907 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1908 if (ret < 0)
1909 return ret;
1910 offset = 0;
1911 len -= seg;
1912 data += seg;
1913 ++gfn;
1914 }
1915 return 0;
1916}
Wincy Vanff651cb2014-12-11 08:52:58 +03001917EXPORT_SYMBOL_GPL(kvm_write_guest);
Izik Eidus195aefd2007-10-01 22:14:18 +02001918
Paolo Bonzini8e734852015-05-17 13:58:53 +02001919int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
1920 unsigned long len)
1921{
1922 gfn_t gfn = gpa >> PAGE_SHIFT;
1923 int seg;
1924 int offset = offset_in_page(gpa);
1925 int ret;
1926
1927 while ((seg = next_segment(len, offset)) != 0) {
1928 ret = kvm_vcpu_write_guest_page(vcpu, gfn, data, offset, seg);
1929 if (ret < 0)
1930 return ret;
1931 offset = 0;
1932 len -= seg;
1933 data += seg;
1934 ++gfn;
1935 }
1936 return 0;
1937}
1938EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest);
1939
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001940static int __kvm_gfn_to_hva_cache_init(struct kvm_memslots *slots,
1941 struct gfn_to_hva_cache *ghc,
1942 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001943{
Gleb Natapov49c77542010-10-18 15:22:23 +02001944 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07001945 gfn_t start_gfn = gpa >> PAGE_SHIFT;
1946 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
1947 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
1948 gfn_t nr_pages_avail;
Gleb Natapov49c77542010-10-18 15:22:23 +02001949
1950 ghc->gpa = gpa;
1951 ghc->generation = slots->generation;
Andrew Honig8f964522013-03-29 09:35:21 -07001952 ghc->len = len;
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001953 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
Radim Krčmářca3f0872015-04-08 14:16:48 +02001954 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, NULL);
1955 if (!kvm_is_error_hva(ghc->hva) && nr_pages_needed <= 1) {
Gleb Natapov49c77542010-10-18 15:22:23 +02001956 ghc->hva += offset;
Andrew Honig8f964522013-03-29 09:35:21 -07001957 } else {
1958 /*
1959 * If the requested region crosses two memslots, we still
1960 * verify that the entire region is valid here.
1961 */
1962 while (start_gfn <= end_gfn) {
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001963 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
Andrew Honig8f964522013-03-29 09:35:21 -07001964 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
1965 &nr_pages_avail);
1966 if (kvm_is_error_hva(ghc->hva))
1967 return -EFAULT;
1968 start_gfn += nr_pages_avail;
1969 }
1970 /* Use the slow path for cross page reads and writes. */
1971 ghc->memslot = NULL;
1972 }
Gleb Natapov49c77542010-10-18 15:22:23 +02001973 return 0;
1974}
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001975
Cao, Leibbd64112017-02-03 20:04:35 +00001976int kvm_vcpu_gfn_to_hva_cache_init(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001977 gpa_t gpa, unsigned long len)
1978{
Cao, Leibbd64112017-02-03 20:04:35 +00001979 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001980 return __kvm_gfn_to_hva_cache_init(slots, ghc, gpa, len);
1981}
Cao, Leibbd64112017-02-03 20:04:35 +00001982EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva_cache_init);
Gleb Natapov49c77542010-10-18 15:22:23 +02001983
Cao, Leibbd64112017-02-03 20:04:35 +00001984int kvm_vcpu_write_guest_offset_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
1985 void *data, int offset, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001986{
Cao, Leibbd64112017-02-03 20:04:35 +00001987 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Gleb Natapov49c77542010-10-18 15:22:23 +02001988 int r;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001989 gpa_t gpa = ghc->gpa + offset;
Gleb Natapov49c77542010-10-18 15:22:23 +02001990
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001991 BUG_ON(len + offset > ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07001992
Gleb Natapov49c77542010-10-18 15:22:23 +02001993 if (slots->generation != ghc->generation)
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001994 __kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07001995
1996 if (unlikely(!ghc->memslot))
Cao, Leibbd64112017-02-03 20:04:35 +00001997 return kvm_vcpu_write_guest(vcpu, gpa, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001998
1999 if (kvm_is_error_hva(ghc->hva))
2000 return -EFAULT;
2001
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002002 r = __copy_to_user((void __user *)ghc->hva + offset, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02002003 if (r)
2004 return -EFAULT;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002005 mark_page_dirty_in_slot(ghc->memslot, gpa >> PAGE_SHIFT);
Gleb Natapov49c77542010-10-18 15:22:23 +02002006
2007 return 0;
2008}
Cao, Leibbd64112017-02-03 20:04:35 +00002009EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_offset_cached);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002010
Cao, Leibbd64112017-02-03 20:04:35 +00002011int kvm_vcpu_write_guest_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
2012 void *data, unsigned long len)
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002013{
Cao, Leibbd64112017-02-03 20:04:35 +00002014 return kvm_vcpu_write_guest_offset_cached(vcpu, ghc, data, 0, len);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002015}
Cao, Leibbd64112017-02-03 20:04:35 +00002016EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_cached);
Gleb Natapov49c77542010-10-18 15:22:23 +02002017
Cao, Leibbd64112017-02-03 20:04:35 +00002018int kvm_vcpu_read_guest_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
2019 void *data, unsigned long len)
Gleb Natapove03b6442011-07-11 15:28:11 -04002020{
Cao, Leibbd64112017-02-03 20:04:35 +00002021 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Gleb Natapove03b6442011-07-11 15:28:11 -04002022 int r;
2023
Andrew Honig8f964522013-03-29 09:35:21 -07002024 BUG_ON(len > ghc->len);
2025
Gleb Natapove03b6442011-07-11 15:28:11 -04002026 if (slots->generation != ghc->generation)
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002027 __kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07002028
2029 if (unlikely(!ghc->memslot))
Cao, Leibbd64112017-02-03 20:04:35 +00002030 return kvm_vcpu_read_guest(vcpu, ghc->gpa, data, len);
Gleb Natapove03b6442011-07-11 15:28:11 -04002031
2032 if (kvm_is_error_hva(ghc->hva))
2033 return -EFAULT;
2034
2035 r = __copy_from_user(data, (void __user *)ghc->hva, len);
2036 if (r)
2037 return -EFAULT;
2038
2039 return 0;
2040}
Cao, Leibbd64112017-02-03 20:04:35 +00002041EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_cached);
Gleb Natapove03b6442011-07-11 15:28:11 -04002042
Izik Eidus195aefd2007-10-01 22:14:18 +02002043int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
2044{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01002045 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
2046
2047 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02002048}
2049EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
2050
2051int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
2052{
2053 gfn_t gfn = gpa >> PAGE_SHIFT;
2054 int seg;
2055 int offset = offset_in_page(gpa);
2056 int ret;
2057
Kevin Mulveybfda0e82015-02-20 08:21:36 -05002058 while ((seg = next_segment(len, offset)) != 0) {
Izik Eidus195aefd2007-10-01 22:14:18 +02002059 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
2060 if (ret < 0)
2061 return ret;
2062 offset = 0;
2063 len -= seg;
2064 ++gfn;
2065 }
2066 return 0;
2067}
2068EXPORT_SYMBOL_GPL(kvm_clear_guest);
2069
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002070static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot,
Stephen Hemminger79408762013-12-29 12:12:29 -08002071 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002072{
Rusty Russell7e9d6192007-07-31 20:41:14 +10002073 if (memslot && memslot->dirty_bitmap) {
2074 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002075
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07002076 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002077 }
2078}
2079
Gleb Natapov49c77542010-10-18 15:22:23 +02002080void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
2081{
2082 struct kvm_memory_slot *memslot;
2083
2084 memslot = gfn_to_memslot(kvm, gfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002085 mark_page_dirty_in_slot(memslot, gfn);
Gleb Natapov49c77542010-10-18 15:22:23 +02002086}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302087EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02002088
Paolo Bonzini8e734852015-05-17 13:58:53 +02002089void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn)
2090{
2091 struct kvm_memory_slot *memslot;
2092
2093 memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2094 mark_page_dirty_in_slot(memslot, gfn);
2095}
2096EXPORT_SYMBOL_GPL(kvm_vcpu_mark_page_dirty);
2097
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002098static void grow_halt_poll_ns(struct kvm_vcpu *vcpu)
2099{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002100 unsigned int old, val, grow;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002101
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002102 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002103 grow = READ_ONCE(halt_poll_ns_grow);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002104 /* 10us base */
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002105 if (val == 0 && grow)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002106 val = 10000;
2107 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002108 val *= grow;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002109
David Matlack313f6362016-03-08 16:19:44 -08002110 if (val > halt_poll_ns)
2111 val = halt_poll_ns;
2112
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002113 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002114 trace_kvm_halt_poll_ns_grow(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002115}
2116
2117static void shrink_halt_poll_ns(struct kvm_vcpu *vcpu)
2118{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002119 unsigned int old, val, shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002120
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002121 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002122 shrink = READ_ONCE(halt_poll_ns_shrink);
2123 if (shrink == 0)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002124 val = 0;
2125 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002126 val /= shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002127
2128 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002129 trace_kvm_halt_poll_ns_shrink(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002130}
2131
Paolo Bonzinif7819512015-02-04 18:20:58 +01002132static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
2133{
2134 if (kvm_arch_vcpu_runnable(vcpu)) {
2135 kvm_make_request(KVM_REQ_UNHALT, vcpu);
2136 return -EINTR;
2137 }
2138 if (kvm_cpu_has_pending_timer(vcpu))
2139 return -EINTR;
2140 if (signal_pending(current))
2141 return -EINTR;
2142
2143 return 0;
2144}
2145
Eddie Dongb6958ce2007-07-18 12:15:21 +03002146/*
2147 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
2148 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05002149void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03002150{
Paolo Bonzinif7819512015-02-04 18:20:58 +01002151 ktime_t start, cur;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002152 DECLARE_SWAITQUEUE(wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002153 bool waited = false;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002154 u64 block_ns;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002155
2156 start = cur = ktime_get();
Wanpeng Li19020f82015-09-03 22:07:37 +08002157 if (vcpu->halt_poll_ns) {
2158 ktime_t stop = ktime_add_ns(ktime_get(), vcpu->halt_poll_ns);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002159
Paolo Bonzini62bea5b2015-09-15 18:27:57 +02002160 ++vcpu->stat.halt_attempted_poll;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002161 do {
2162 /*
2163 * This sets KVM_REQ_UNHALT if an interrupt
2164 * arrives.
2165 */
2166 if (kvm_vcpu_check_block(vcpu) < 0) {
2167 ++vcpu->stat.halt_successful_poll;
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002168 if (!vcpu_valid_wakeup(vcpu))
2169 ++vcpu->stat.halt_poll_invalid;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002170 goto out;
2171 }
2172 cur = ktime_get();
2173 } while (single_task_running() && ktime_before(cur, stop));
2174 }
Eddie Dongb6958ce2007-07-18 12:15:21 +03002175
Christoffer Dall3217f7c2015-08-27 16:41:15 +02002176 kvm_arch_vcpu_blocking(vcpu);
2177
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002178 for (;;) {
Marcelo Tosatti85773702016-02-19 09:46:39 +01002179 prepare_to_swait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002180
Paolo Bonzinif7819512015-02-04 18:20:58 +01002181 if (kvm_vcpu_check_block(vcpu) < 0)
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002182 break;
2183
Paolo Bonzinif7819512015-02-04 18:20:58 +01002184 waited = true;
Eddie Dongb6958ce2007-07-18 12:15:21 +03002185 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03002186 }
2187
Marcelo Tosatti85773702016-02-19 09:46:39 +01002188 finish_swait(&vcpu->wq, &wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002189 cur = ktime_get();
2190
Christoffer Dall3217f7c2015-08-27 16:41:15 +02002191 kvm_arch_vcpu_unblocking(vcpu);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002192out:
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002193 block_ns = ktime_to_ns(cur) - ktime_to_ns(start);
2194
Christian Borntraeger2086d322016-05-17 10:49:22 +02002195 if (!vcpu_valid_wakeup(vcpu))
2196 shrink_halt_poll_ns(vcpu);
2197 else if (halt_poll_ns) {
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002198 if (block_ns <= vcpu->halt_poll_ns)
2199 ;
2200 /* we had a long block, shrink polling */
Christian Borntraeger2086d322016-05-17 10:49:22 +02002201 else if (vcpu->halt_poll_ns && block_ns > halt_poll_ns)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002202 shrink_halt_poll_ns(vcpu);
2203 /* we had a short halt and our poll time is too small */
2204 else if (vcpu->halt_poll_ns < halt_poll_ns &&
2205 block_ns < halt_poll_ns)
2206 grow_halt_poll_ns(vcpu);
Wanpeng Liedb92722015-09-14 17:38:51 +08002207 } else
2208 vcpu->halt_poll_ns = 0;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002209
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002210 trace_kvm_vcpu_wakeup(block_ns, waited, vcpu_valid_wakeup(vcpu));
2211 kvm_arch_vcpu_block_finish(vcpu);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002212}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302213EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002214
Marcelo Tosatti8c847802012-03-14 17:58:48 -03002215#ifndef CONFIG_S390
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002216void kvm_vcpu_wake_up(struct kvm_vcpu *vcpu)
Christoffer Dallb6d33832012-03-08 16:44:24 -05002217{
Marcelo Tosatti85773702016-02-19 09:46:39 +01002218 struct swait_queue_head *wqp;
Christoffer Dallb6d33832012-03-08 16:44:24 -05002219
2220 wqp = kvm_arch_vcpu_wq(vcpu);
Marcelo Tosatti85773702016-02-19 09:46:39 +01002221 if (swait_active(wqp)) {
2222 swake_up(wqp);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002223 ++vcpu->stat.halt_wakeup;
2224 }
2225
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002226}
2227EXPORT_SYMBOL_GPL(kvm_vcpu_wake_up);
2228
2229/*
2230 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
2231 */
2232void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
2233{
2234 int me;
2235 int cpu = vcpu->cpu;
2236
2237 kvm_vcpu_wake_up(vcpu);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002238 me = get_cpu();
2239 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
2240 if (kvm_arch_vcpu_should_kick(vcpu))
2241 smp_send_reschedule(cpu);
2242 put_cpu();
2243}
Yang Zhanga20ed542013-04-11 19:25:15 +08002244EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Marcelo Tosatti8c847802012-03-14 17:58:48 -03002245#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05002246
Dan Carpenterfa933842014-05-23 13:20:42 +03002247int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02002248{
2249 struct pid *pid;
2250 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03002251 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002252
2253 rcu_read_lock();
2254 pid = rcu_dereference(target->pid);
2255 if (pid)
Sam Bobroff27fbe64b2014-09-19 09:40:41 +10002256 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002257 rcu_read_unlock();
2258 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302259 return ret;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302260 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002261 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302262
2263 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002264}
2265EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
2266
Raghavendra K T06e48c52012-07-19 15:17:52 +05302267/*
2268 * Helper that checks whether a VCPU is eligible for directed yield.
2269 * Most eligible candidate to yield is decided by following heuristics:
2270 *
2271 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
2272 * (preempted lock holder), indicated by @in_spin_loop.
2273 * Set at the beiginning and cleared at the end of interception/PLE handler.
2274 *
2275 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
2276 * chance last time (mostly it has become eligible now since we have probably
2277 * yielded to lockholder in last iteration. This is done by toggling
2278 * @dy_eligible each time a VCPU checked for eligibility.)
2279 *
2280 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
2281 * to preempted lock-holder could result in wrong VCPU selection and CPU
2282 * burning. Giving priority for a potential lock-holder increases lock
2283 * progress.
2284 *
2285 * Since algorithm is based on heuristics, accessing another VCPU data without
2286 * locking does not harm. It may result in trying to yield to same VCPU, fail
2287 * and continue with next VCPU and so on.
2288 */
Stephen Hemminger79408762013-12-29 12:12:29 -08002289static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05302290{
Scott Wood4a55dd72014-01-09 18:43:16 -06002291#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05302292 bool eligible;
2293
2294 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02002295 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302296
2297 if (vcpu->spin_loop.in_spin_loop)
2298 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
2299
2300 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06002301#else
2302 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302303#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06002304}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302305
Rik van Riel217ece62011-02-01 09:53:28 -05002306void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002307{
Rik van Riel217ece62011-02-01 09:53:28 -05002308 struct kvm *kvm = me->kvm;
2309 struct kvm_vcpu *vcpu;
2310 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
2311 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302312 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05002313 int pass;
2314 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002315
Raghavendra K T4c088492012-07-18 19:07:46 +05302316 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05002317 /*
2318 * We boost the priority of a VCPU that is runnable but not
2319 * currently running, because it got preempted by something
2320 * else and called schedule in __vcpu_run. Hopefully that
2321 * VCPU is holding the lock that we need and will release it.
2322 * We approximate round-robin by starting at the last boosted VCPU.
2323 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302324 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05002325 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04002326 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05002327 i = last_boosted_vcpu;
2328 continue;
2329 } else if (pass && i > last_boosted_vcpu)
2330 break;
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05302331 if (!ACCESS_ONCE(vcpu->preempted))
2332 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05002333 if (vcpu == me)
2334 continue;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002335 if (swait_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05002336 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302337 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
2338 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302339
2340 yielded = kvm_vcpu_yield_to(vcpu);
2341 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05002342 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05002343 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302344 } else if (yielded < 0) {
2345 try--;
2346 if (!try)
2347 break;
Rik van Riel217ece62011-02-01 09:53:28 -05002348 }
Rik van Riel217ece62011-02-01 09:53:28 -05002349 }
2350 }
Raghavendra K T4c088492012-07-18 19:07:46 +05302351 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05302352
2353 /* Ensure vcpu is not eligible during next spinloop */
2354 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002355}
2356EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
2357
Dave Jiang11bac802017-02-24 14:56:41 -08002358static int kvm_vcpu_fault(struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002359{
Dave Jiang11bac802017-02-24 14:56:41 -08002360 struct kvm_vcpu *vcpu = vmf->vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002361 struct page *page;
2362
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002363 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02002364 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02002365#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002366 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002367 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02002368#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002369#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2370 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
2371 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
2372#endif
Avi Kivity039576c2007-03-20 12:46:50 +02002373 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01002374 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002375 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002376 vmf->page = page;
2377 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002378}
2379
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002380static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002381 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002382};
2383
2384static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2385{
2386 vma->vm_ops = &kvm_vcpu_vm_ops;
2387 return 0;
2388}
2389
Avi Kivitybccf2152007-02-21 18:04:26 +02002390static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2391{
2392 struct kvm_vcpu *vcpu = filp->private_data;
2393
Luiz Capitulino45b59392016-09-16 10:27:35 -04002394 debugfs_remove_recursive(vcpu->debugfs_dentry);
Al Viro66c0b392008-04-19 20:33:56 +01002395 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002396 return 0;
2397}
2398
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002399static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02002400 .release = kvm_vcpu_release,
2401 .unlocked_ioctl = kvm_vcpu_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002402#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002403 .compat_ioctl = kvm_vcpu_compat_ioctl,
2404#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002405 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002406 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02002407};
2408
2409/*
2410 * Allocates an inode for the vcpu.
2411 */
2412static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2413{
Yann Droneaud24009b02013-08-24 22:14:07 +02002414 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02002415}
2416
Luiz Capitulino45b59392016-09-16 10:27:35 -04002417static int kvm_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
2418{
2419 char dir_name[ITOA_MAX_LEN * 2];
2420 int ret;
2421
2422 if (!kvm_arch_has_vcpu_debugfs())
2423 return 0;
2424
2425 if (!debugfs_initialized())
2426 return 0;
2427
2428 snprintf(dir_name, sizeof(dir_name), "vcpu%d", vcpu->vcpu_id);
2429 vcpu->debugfs_dentry = debugfs_create_dir(dir_name,
2430 vcpu->kvm->debugfs_dentry);
2431 if (!vcpu->debugfs_dentry)
2432 return -ENOMEM;
2433
2434 ret = kvm_arch_create_vcpu_debugfs(vcpu);
2435 if (ret < 0) {
2436 debugfs_remove_recursive(vcpu->debugfs_dentry);
2437 return ret;
2438 }
2439
2440 return 0;
2441}
2442
Avi Kivityc5ea7662007-02-20 18:41:05 +02002443/*
2444 * Creates some virtual cpus. Good luck creating more than one.
2445 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002446static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02002447{
2448 int r;
David Hildenbrande09fefd2015-11-05 09:03:50 +01002449 struct kvm_vcpu *vcpu;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002450
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002451 if (id >= KVM_MAX_VCPU_ID)
Andy Honig338c7db2013-11-18 16:09:22 -08002452 return -EINVAL;
2453
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002454 mutex_lock(&kvm->lock);
2455 if (kvm->created_vcpus == KVM_MAX_VCPUS) {
2456 mutex_unlock(&kvm->lock);
2457 return -EINVAL;
2458 }
2459
2460 kvm->created_vcpus++;
2461 mutex_unlock(&kvm->lock);
2462
Gleb Natapov73880c82009-06-09 15:56:28 +03002463 vcpu = kvm_arch_vcpu_create(kvm, id);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002464 if (IS_ERR(vcpu)) {
2465 r = PTR_ERR(vcpu);
2466 goto vcpu_decrement;
2467 }
Avi Kivityc5ea7662007-02-20 18:41:05 +02002468
Avi Kivity15ad7142007-07-11 18:17:21 +03002469 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2470
Avi Kivity26e52152007-11-20 15:30:24 +02002471 r = kvm_arch_vcpu_setup(vcpu);
2472 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02002473 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02002474
Luiz Capitulino45b59392016-09-16 10:27:35 -04002475 r = kvm_create_vcpu_debugfs(vcpu);
2476 if (r)
2477 goto vcpu_destroy;
2478
Shaohua Li11ec2802007-07-23 14:51:37 +08002479 mutex_lock(&kvm->lock);
David Hildenbrande09fefd2015-11-05 09:03:50 +01002480 if (kvm_get_vcpu_by_id(kvm, id)) {
2481 r = -EEXIST;
2482 goto unlock_vcpu_destroy;
2483 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002484
2485 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002486
2487 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002488 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002489 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002490 if (r < 0) {
2491 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002492 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002493 }
2494
2495 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
Paolo Bonzinidd489242015-07-29 11:32:20 +02002496
2497 /*
2498 * Pairs with smp_rmb() in kvm_get_vcpu. Write kvm->vcpus
2499 * before kvm->online_vcpu's incremented value.
2500 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002501 smp_wmb();
2502 atomic_inc(&kvm->online_vcpus);
2503
Gleb Natapov73880c82009-06-09 15:56:28 +03002504 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002505 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002506 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002507
Jan Kiszkad7805922011-05-23 10:33:05 +02002508unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002509 mutex_unlock(&kvm->lock);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002510 debugfs_remove_recursive(vcpu->debugfs_dentry);
Jan Kiszkad7805922011-05-23 10:33:05 +02002511vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002512 kvm_arch_vcpu_destroy(vcpu);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002513vcpu_decrement:
2514 mutex_lock(&kvm->lock);
2515 kvm->created_vcpus--;
2516 mutex_unlock(&kvm->lock);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002517 return r;
2518}
2519
Avi Kivity1961d272007-03-05 19:46:05 +02002520static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2521{
2522 if (sigset) {
2523 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2524 vcpu->sigset_active = 1;
2525 vcpu->sigset = *sigset;
2526 } else
2527 vcpu->sigset_active = 0;
2528 return 0;
2529}
2530
Avi Kivitybccf2152007-02-21 18:04:26 +02002531static long kvm_vcpu_ioctl(struct file *filp,
2532 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002533{
Avi Kivitybccf2152007-02-21 18:04:26 +02002534 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002535 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002536 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002537 struct kvm_fpu *fpu = NULL;
2538 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002539
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002540 if (vcpu->kvm->mm != current->mm)
2541 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002542
David Matlack2ea75be2014-09-19 16:03:25 -07002543 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2544 return -EINVAL;
2545
Sanjay Lal2f4d9b52012-11-21 18:34:15 -08002546#if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
Avi Kivity2122ff52010-05-13 11:25:04 +03002547 /*
2548 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
2549 * so vcpu_load() would break it.
2550 */
Jens Freimann47b43c52014-11-11 20:57:06 +01002551 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_S390_IRQ || ioctl == KVM_INTERRUPT)
Avi Kivity2122ff52010-05-13 11:25:04 +03002552 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2553#endif
2554
2555
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002556 r = vcpu_load(vcpu);
2557 if (r)
2558 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002559 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002560 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002561 r = -EINVAL;
2562 if (arg)
2563 goto out;
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002564 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
2565 /* The thread running this VCPU changed. */
2566 struct pid *oldpid = vcpu->pid;
2567 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002568
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002569 rcu_assign_pointer(vcpu->pid, newpid);
2570 if (oldpid)
2571 synchronize_rcu();
2572 put_pid(oldpid);
2573 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002574 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002575 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002576 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002577 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002578 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002579
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002580 r = -ENOMEM;
2581 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2582 if (!kvm_regs)
2583 goto out;
2584 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002585 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002586 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002587 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002588 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2589 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002590 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002591out_free1:
2592 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002593 break;
2594 }
2595 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002596 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002597
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002598 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002599 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2600 if (IS_ERR(kvm_regs)) {
2601 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002602 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002603 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002604 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002605 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002606 break;
2607 }
2608 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002609 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2610 r = -ENOMEM;
2611 if (!kvm_sregs)
2612 goto out;
2613 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002614 if (r)
2615 goto out;
2616 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002617 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002618 goto out;
2619 r = 0;
2620 break;
2621 }
2622 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002623 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2624 if (IS_ERR(kvm_sregs)) {
2625 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002626 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002627 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002628 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002629 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002630 break;
2631 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002632 case KVM_GET_MP_STATE: {
2633 struct kvm_mp_state mp_state;
2634
2635 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2636 if (r)
2637 goto out;
2638 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002639 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002640 goto out;
2641 r = 0;
2642 break;
2643 }
2644 case KVM_SET_MP_STATE: {
2645 struct kvm_mp_state mp_state;
2646
2647 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002648 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002649 goto out;
2650 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002651 break;
2652 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002653 case KVM_TRANSLATE: {
2654 struct kvm_translation tr;
2655
2656 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002657 if (copy_from_user(&tr, argp, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002658 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002659 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002660 if (r)
2661 goto out;
2662 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002663 if (copy_to_user(argp, &tr, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002664 goto out;
2665 r = 0;
2666 break;
2667 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002668 case KVM_SET_GUEST_DEBUG: {
2669 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002670
2671 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002672 if (copy_from_user(&dbg, argp, sizeof(dbg)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002673 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002674 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002675 break;
2676 }
Avi Kivity1961d272007-03-05 19:46:05 +02002677 case KVM_SET_SIGNAL_MASK: {
2678 struct kvm_signal_mask __user *sigmask_arg = argp;
2679 struct kvm_signal_mask kvm_sigmask;
2680 sigset_t sigset, *p;
2681
2682 p = NULL;
2683 if (argp) {
2684 r = -EFAULT;
2685 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002686 sizeof(kvm_sigmask)))
Avi Kivity1961d272007-03-05 19:46:05 +02002687 goto out;
2688 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002689 if (kvm_sigmask.len != sizeof(sigset))
Avi Kivity1961d272007-03-05 19:46:05 +02002690 goto out;
2691 r = -EFAULT;
2692 if (copy_from_user(&sigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002693 sizeof(sigset)))
Avi Kivity1961d272007-03-05 19:46:05 +02002694 goto out;
2695 p = &sigset;
2696 }
Andi Kleen376d41f2010-06-10 13:10:47 +02002697 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02002698 break;
2699 }
Avi Kivityb8836732007-04-01 16:34:31 +03002700 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002701 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2702 r = -ENOMEM;
2703 if (!fpu)
2704 goto out;
2705 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002706 if (r)
2707 goto out;
2708 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002709 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002710 goto out;
2711 r = 0;
2712 break;
2713 }
2714 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002715 fpu = memdup_user(argp, sizeof(*fpu));
2716 if (IS_ERR(fpu)) {
2717 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08002718 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03002719 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002720 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002721 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002722 break;
2723 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002724 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02002725 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002726 }
2727out:
Avi Kivity2122ff52010-05-13 11:25:04 +03002728 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002729 kfree(fpu);
2730 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02002731 return r;
2732}
2733
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002734#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002735static long kvm_vcpu_compat_ioctl(struct file *filp,
2736 unsigned int ioctl, unsigned long arg)
2737{
2738 struct kvm_vcpu *vcpu = filp->private_data;
2739 void __user *argp = compat_ptr(arg);
2740 int r;
2741
2742 if (vcpu->kvm->mm != current->mm)
2743 return -EIO;
2744
2745 switch (ioctl) {
2746 case KVM_SET_SIGNAL_MASK: {
2747 struct kvm_signal_mask __user *sigmask_arg = argp;
2748 struct kvm_signal_mask kvm_sigmask;
2749 compat_sigset_t csigset;
2750 sigset_t sigset;
2751
2752 if (argp) {
2753 r = -EFAULT;
2754 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002755 sizeof(kvm_sigmask)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002756 goto out;
2757 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002758 if (kvm_sigmask.len != sizeof(csigset))
Alexander Graf1dda6062011-06-08 02:45:37 +02002759 goto out;
2760 r = -EFAULT;
2761 if (copy_from_user(&csigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002762 sizeof(csigset)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002763 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01002764 sigset_from_compat(&sigset, &csigset);
2765 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2766 } else
2767 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02002768 break;
2769 }
2770 default:
2771 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2772 }
2773
2774out:
2775 return r;
2776}
2777#endif
2778
Scott Wood852b6d52013-04-12 14:08:42 +00002779static int kvm_device_ioctl_attr(struct kvm_device *dev,
2780 int (*accessor)(struct kvm_device *dev,
2781 struct kvm_device_attr *attr),
2782 unsigned long arg)
2783{
2784 struct kvm_device_attr attr;
2785
2786 if (!accessor)
2787 return -EPERM;
2788
2789 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2790 return -EFAULT;
2791
2792 return accessor(dev, &attr);
2793}
2794
2795static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2796 unsigned long arg)
2797{
2798 struct kvm_device *dev = filp->private_data;
2799
2800 switch (ioctl) {
2801 case KVM_SET_DEVICE_ATTR:
2802 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2803 case KVM_GET_DEVICE_ATTR:
2804 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2805 case KVM_HAS_DEVICE_ATTR:
2806 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2807 default:
2808 if (dev->ops->ioctl)
2809 return dev->ops->ioctl(dev, ioctl, arg);
2810
2811 return -ENOTTY;
2812 }
2813}
2814
Scott Wood852b6d52013-04-12 14:08:42 +00002815static int kvm_device_release(struct inode *inode, struct file *filp)
2816{
2817 struct kvm_device *dev = filp->private_data;
2818 struct kvm *kvm = dev->kvm;
2819
Scott Wood852b6d52013-04-12 14:08:42 +00002820 kvm_put_kvm(kvm);
2821 return 0;
2822}
2823
2824static const struct file_operations kvm_device_fops = {
2825 .unlocked_ioctl = kvm_device_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002826#ifdef CONFIG_KVM_COMPAT
Scott Wooddb6ae612013-04-30 20:00:45 -05002827 .compat_ioctl = kvm_device_ioctl,
2828#endif
Scott Wood852b6d52013-04-12 14:08:42 +00002829 .release = kvm_device_release,
2830};
2831
2832struct kvm_device *kvm_device_from_filp(struct file *filp)
2833{
2834 if (filp->f_op != &kvm_device_fops)
2835 return NULL;
2836
2837 return filp->private_data;
2838}
2839
Will Deacond60eacb2014-09-02 10:27:33 +01002840static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
2841#ifdef CONFIG_KVM_MPIC
2842 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
2843 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
2844#endif
2845
2846#ifdef CONFIG_KVM_XICS
2847 [KVM_DEV_TYPE_XICS] = &kvm_xics_ops,
2848#endif
Will Deacond60eacb2014-09-02 10:27:33 +01002849};
2850
2851int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
2852{
2853 if (type >= ARRAY_SIZE(kvm_device_ops_table))
2854 return -ENOSPC;
2855
2856 if (kvm_device_ops_table[type] != NULL)
2857 return -EEXIST;
2858
2859 kvm_device_ops_table[type] = ops;
2860 return 0;
2861}
2862
Wanpeng Li571ee1b2014-10-09 18:30:08 +08002863void kvm_unregister_device_ops(u32 type)
2864{
2865 if (kvm_device_ops_table[type] != NULL)
2866 kvm_device_ops_table[type] = NULL;
2867}
2868
Scott Wood852b6d52013-04-12 14:08:42 +00002869static int kvm_ioctl_create_device(struct kvm *kvm,
2870 struct kvm_create_device *cd)
2871{
2872 struct kvm_device_ops *ops = NULL;
2873 struct kvm_device *dev;
2874 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2875 int ret;
2876
Will Deacond60eacb2014-09-02 10:27:33 +01002877 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00002878 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01002879
2880 ops = kvm_device_ops_table[cd->type];
2881 if (ops == NULL)
2882 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00002883
2884 if (test)
2885 return 0;
2886
2887 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2888 if (!dev)
2889 return -ENOMEM;
2890
2891 dev->ops = ops;
2892 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00002893
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002894 mutex_lock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002895 ret = ops->create(dev, cd->type);
2896 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002897 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002898 kfree(dev);
2899 return ret;
2900 }
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002901 list_add(&dev->vm_node, &kvm->devices);
2902 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002903
Christoffer Dall023e9fd2016-08-09 19:13:00 +02002904 if (ops->init)
2905 ops->init(dev);
2906
Yann Droneaud24009b02013-08-24 22:14:07 +02002907 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00002908 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002909 mutex_lock(&kvm->lock);
2910 list_del(&dev->vm_node);
2911 mutex_unlock(&kvm->lock);
Dan Carpentera0f1d212016-11-30 22:21:05 +03002912 ops->destroy(dev);
Scott Wood852b6d52013-04-12 14:08:42 +00002913 return ret;
2914 }
2915
2916 kvm_get_kvm(kvm);
2917 cd->fd = ret;
2918 return 0;
2919}
2920
Alexander Graf92b591a2014-07-14 18:33:08 +02002921static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2922{
2923 switch (arg) {
2924 case KVM_CAP_USER_MEMORY:
2925 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2926 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Alexander Graf92b591a2014-07-14 18:33:08 +02002927 case KVM_CAP_INTERNAL_ERROR_DATA:
2928#ifdef CONFIG_HAVE_KVM_MSI
2929 case KVM_CAP_SIGNAL_MSI:
2930#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10002931#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzinidc9be0f2015-03-05 11:54:46 +01002932 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02002933 case KVM_CAP_IRQFD_RESAMPLE:
2934#endif
Jason Wange9ea5062015-09-15 14:41:59 +08002935 case KVM_CAP_IOEVENTFD_ANY_LENGTH:
Alexander Graf92b591a2014-07-14 18:33:08 +02002936 case KVM_CAP_CHECK_EXTENSION_VM:
2937 return 1;
2938#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2939 case KVM_CAP_IRQ_ROUTING:
2940 return KVM_MAX_IRQ_ROUTES;
2941#endif
Paolo Bonzinif481b062015-05-17 17:30:37 +02002942#if KVM_ADDRESS_SPACE_NUM > 1
2943 case KVM_CAP_MULTI_ADDRESS_SPACE:
2944 return KVM_ADDRESS_SPACE_NUM;
2945#endif
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002946 case KVM_CAP_MAX_VCPU_ID:
2947 return KVM_MAX_VCPU_ID;
Alexander Graf92b591a2014-07-14 18:33:08 +02002948 default:
2949 break;
2950 }
2951 return kvm_vm_ioctl_check_extension(kvm, arg);
2952}
2953
Avi Kivitybccf2152007-02-21 18:04:26 +02002954static long kvm_vm_ioctl(struct file *filp,
2955 unsigned int ioctl, unsigned long arg)
2956{
2957 struct kvm *kvm = filp->private_data;
2958 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01002959 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002960
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002961 if (kvm->mm != current->mm)
2962 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002963 switch (ioctl) {
2964 case KVM_CREATE_VCPU:
2965 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002966 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02002967 case KVM_SET_USER_MEMORY_REGION: {
2968 struct kvm_userspace_memory_region kvm_userspace_mem;
2969
2970 r = -EFAULT;
2971 if (copy_from_user(&kvm_userspace_mem, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002972 sizeof(kvm_userspace_mem)))
Izik Eidus6fc138d2007-10-09 19:20:39 +02002973 goto out;
2974
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09002975 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002976 break;
2977 }
2978 case KVM_GET_DIRTY_LOG: {
2979 struct kvm_dirty_log log;
2980
2981 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002982 if (copy_from_user(&log, argp, sizeof(log)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002983 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002984 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002985 break;
2986 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02002987#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2988 case KVM_REGISTER_COALESCED_MMIO: {
2989 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002990
Laurent Vivier5f94c172008-05-30 16:05:54 +02002991 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002992 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002993 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002994 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002995 break;
2996 }
2997 case KVM_UNREGISTER_COALESCED_MMIO: {
2998 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002999
Laurent Vivier5f94c172008-05-30 16:05:54 +02003000 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003001 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02003002 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02003003 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02003004 break;
3005 }
3006#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003007 case KVM_IRQFD: {
3008 struct kvm_irqfd data;
3009
3010 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003011 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003012 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06003013 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003014 break;
3015 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003016 case KVM_IOEVENTFD: {
3017 struct kvm_ioeventfd data;
3018
3019 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003020 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003021 goto out;
3022 r = kvm_ioeventfd(kvm, &data);
3023 break;
3024 }
Jan Kiszka07975ad2012-03-29 21:14:12 +02003025#ifdef CONFIG_HAVE_KVM_MSI
3026 case KVM_SIGNAL_MSI: {
3027 struct kvm_msi msi;
3028
3029 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003030 if (copy_from_user(&msi, argp, sizeof(msi)))
Jan Kiszka07975ad2012-03-29 21:14:12 +02003031 goto out;
3032 r = kvm_send_userspace_msi(kvm, &msi);
3033 break;
3034 }
3035#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003036#ifdef __KVM_HAVE_IRQ_LINE
3037 case KVM_IRQ_LINE_STATUS:
3038 case KVM_IRQ_LINE: {
3039 struct kvm_irq_level irq_event;
3040
3041 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003042 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003043 goto out;
3044
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003045 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
3046 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003047 if (r)
3048 goto out;
3049
3050 r = -EFAULT;
3051 if (ioctl == KVM_IRQ_LINE_STATUS) {
Xiubo Li893bdbf2015-02-26 14:58:19 +08003052 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003053 goto out;
3054 }
3055
3056 r = 0;
3057 break;
3058 }
3059#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02003060#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
3061 case KVM_SET_GSI_ROUTING: {
3062 struct kvm_irq_routing routing;
3063 struct kvm_irq_routing __user *urouting;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003064 struct kvm_irq_routing_entry *entries = NULL;
Alexander Grafaa8d5942013-04-15 21:12:53 +02003065
3066 r = -EFAULT;
3067 if (copy_from_user(&routing, argp, sizeof(routing)))
3068 goto out;
3069 r = -EINVAL;
Xiubo Licaf1ff22016-06-15 18:00:33 +08003070 if (routing.nr > KVM_MAX_IRQ_ROUTES)
Alexander Grafaa8d5942013-04-15 21:12:53 +02003071 goto out;
3072 if (routing.flags)
3073 goto out;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003074 if (routing.nr) {
3075 r = -ENOMEM;
3076 entries = vmalloc(routing.nr * sizeof(*entries));
3077 if (!entries)
3078 goto out;
3079 r = -EFAULT;
3080 urouting = argp;
3081 if (copy_from_user(entries, urouting->entries,
3082 routing.nr * sizeof(*entries)))
3083 goto out_free_irq_routing;
3084 }
Alexander Grafaa8d5942013-04-15 21:12:53 +02003085 r = kvm_set_irq_routing(kvm, entries, routing.nr,
3086 routing.flags);
Xiubo Lia642a172015-02-26 14:58:20 +08003087out_free_irq_routing:
Alexander Grafaa8d5942013-04-15 21:12:53 +02003088 vfree(entries);
3089 break;
3090 }
3091#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00003092 case KVM_CREATE_DEVICE: {
3093 struct kvm_create_device cd;
3094
3095 r = -EFAULT;
3096 if (copy_from_user(&cd, argp, sizeof(cd)))
3097 goto out;
3098
3099 r = kvm_ioctl_create_device(kvm, &cd);
3100 if (r)
3101 goto out;
3102
3103 r = -EFAULT;
3104 if (copy_to_user(argp, &cd, sizeof(cd)))
3105 goto out;
3106
3107 r = 0;
3108 break;
3109 }
Alexander Graf92b591a2014-07-14 18:33:08 +02003110 case KVM_CHECK_EXTENSION:
3111 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
3112 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02003113 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01003114 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003115 }
3116out:
3117 return r;
3118}
3119
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003120#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003121struct compat_kvm_dirty_log {
3122 __u32 slot;
3123 __u32 padding1;
3124 union {
3125 compat_uptr_t dirty_bitmap; /* one bit per page */
3126 __u64 padding2;
3127 };
3128};
3129
3130static long kvm_vm_compat_ioctl(struct file *filp,
3131 unsigned int ioctl, unsigned long arg)
3132{
3133 struct kvm *kvm = filp->private_data;
3134 int r;
3135
3136 if (kvm->mm != current->mm)
3137 return -EIO;
3138 switch (ioctl) {
3139 case KVM_GET_DIRTY_LOG: {
3140 struct compat_kvm_dirty_log compat_log;
3141 struct kvm_dirty_log log;
3142
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003143 if (copy_from_user(&compat_log, (void __user *)arg,
3144 sizeof(compat_log)))
Markus Elfringf6a3b162017-01-22 11:30:21 +01003145 return -EFAULT;
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003146 log.slot = compat_log.slot;
3147 log.padding1 = compat_log.padding1;
3148 log.padding2 = compat_log.padding2;
3149 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
3150
3151 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003152 break;
3153 }
3154 default:
3155 r = kvm_vm_ioctl(filp, ioctl, arg);
3156 }
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003157 return r;
3158}
3159#endif
3160
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003161static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02003162 .release = kvm_vm_release,
3163 .unlocked_ioctl = kvm_vm_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003164#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003165 .compat_ioctl = kvm_vm_compat_ioctl,
3166#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02003167 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02003168};
3169
Carsten Ottee08b9632012-01-04 10:25:20 +01003170static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02003171{
Heiko Carstensaac87632010-10-27 17:22:10 +02003172 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003173 struct kvm *kvm;
Al Viro506cfba2016-07-14 18:54:17 +02003174 struct file *file;
Avi Kivityf17abe92007-02-21 19:28:04 +02003175
Carsten Ottee08b9632012-01-04 10:25:20 +01003176 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04003177 if (IS_ERR(kvm))
3178 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09003179#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
3180 r = kvm_coalesced_mmio_init(kvm);
3181 if (r < 0) {
3182 kvm_put_kvm(kvm);
3183 return r;
3184 }
3185#endif
Al Viro506cfba2016-07-14 18:54:17 +02003186 r = get_unused_fd_flags(O_CLOEXEC);
Janosch Frank536a6f82016-05-18 13:26:23 +02003187 if (r < 0) {
Al Viro66c0b392008-04-19 20:33:56 +01003188 kvm_put_kvm(kvm);
Janosch Frank536a6f82016-05-18 13:26:23 +02003189 return r;
3190 }
Al Viro506cfba2016-07-14 18:54:17 +02003191 file = anon_inode_getfile("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
3192 if (IS_ERR(file)) {
3193 put_unused_fd(r);
3194 kvm_put_kvm(kvm);
3195 return PTR_ERR(file);
3196 }
Janosch Frank536a6f82016-05-18 13:26:23 +02003197
3198 if (kvm_create_vm_debugfs(kvm, r) < 0) {
Al Viro506cfba2016-07-14 18:54:17 +02003199 put_unused_fd(r);
3200 fput(file);
Janosch Frank536a6f82016-05-18 13:26:23 +02003201 return -ENOMEM;
3202 }
Avi Kivityf17abe92007-02-21 19:28:04 +02003203
Al Viro506cfba2016-07-14 18:54:17 +02003204 fd_install(r, file);
Heiko Carstensaac87632010-10-27 17:22:10 +02003205 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003206}
3207
3208static long kvm_dev_ioctl(struct file *filp,
3209 unsigned int ioctl, unsigned long arg)
3210{
Avi Kivity07c45a32007-03-07 13:05:38 +02003211 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02003212
3213 switch (ioctl) {
3214 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02003215 if (arg)
3216 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02003217 r = KVM_API_VERSION;
3218 break;
3219 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01003220 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003221 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003222 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02003223 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02003224 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02003225 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02003226 if (arg)
3227 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02003228 r = PAGE_SIZE; /* struct kvm_run */
3229#ifdef CONFIG_X86
3230 r += PAGE_SIZE; /* pio data page */
3231#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02003232#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
3233 r += PAGE_SIZE; /* coalesced mmio ring page */
3234#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02003235 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003236 case KVM_TRACE_ENABLE:
3237 case KVM_TRACE_PAUSE:
3238 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03003239 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003240 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003241 default:
Carsten Otte043405e2007-10-10 17:16:19 +02003242 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003243 }
3244out:
3245 return r;
3246}
3247
Avi Kivity6aa8b732006-12-10 02:21:36 -08003248static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003249 .unlocked_ioctl = kvm_dev_ioctl,
3250 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003251 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003252};
3253
3254static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02003255 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003256 "kvm",
3257 &kvm_chardev_ops,
3258};
3259
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003260static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003261{
3262 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02003263 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03003264
Rusty Russell7f59f492008-12-07 21:25:45 +10303265 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003266 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02003267
Rusty Russell7f59f492008-12-07 21:25:45 +10303268 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02003269
Radim Krčmář13a34e02014-08-28 15:13:03 +02003270 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02003271
3272 if (r) {
3273 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
3274 atomic_inc(&hardware_enable_failed);
Xiubo Li1170adc2015-02-26 14:58:26 +08003275 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02003276 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03003277}
3278
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003279static int kvm_starting_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003280{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003281 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003282 if (kvm_usage_count)
3283 hardware_enable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003284 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003285 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003286}
3287
3288static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003289{
3290 int cpu = raw_smp_processor_id();
3291
Rusty Russell7f59f492008-12-07 21:25:45 +10303292 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003293 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10303294 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02003295 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03003296}
3297
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003298static int kvm_dying_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003299{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003300 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003301 if (kvm_usage_count)
3302 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003303 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003304 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003305}
3306
Alexander Graf10474ae2009-09-15 11:37:46 +02003307static void hardware_disable_all_nolock(void)
3308{
3309 BUG_ON(!kvm_usage_count);
3310
3311 kvm_usage_count--;
3312 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003313 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003314}
3315
3316static void hardware_disable_all(void)
3317{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003318 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003319 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003320 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003321}
3322
3323static int hardware_enable_all(void)
3324{
3325 int r = 0;
3326
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003327 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003328
3329 kvm_usage_count++;
3330 if (kvm_usage_count == 1) {
3331 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003332 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003333
3334 if (atomic_read(&hardware_enable_failed)) {
3335 hardware_disable_all_nolock();
3336 r = -EBUSY;
3337 }
3338 }
3339
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003340 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003341
3342 return r;
3343}
3344
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003345static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04003346 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003347{
Sheng Yang8e1c1812009-04-29 11:09:04 +08003348 /*
3349 * Some (well, at least mine) BIOSes hang on reboot if
3350 * in vmx root mode.
3351 *
3352 * And Intel TXT required VMX off for all cpu when system shutdown.
3353 */
Xiubo Li1170adc2015-02-26 14:58:26 +08003354 pr_info("kvm: exiting hardware virtualization\n");
Sheng Yang8e1c1812009-04-29 11:09:04 +08003355 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003356 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003357 return NOTIFY_OK;
3358}
3359
3360static struct notifier_block kvm_reboot_notifier = {
3361 .notifier_call = kvm_reboot,
3362 .priority = 0,
3363};
3364
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003365static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003366{
3367 int i;
3368
3369 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03003370 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003371
3372 kvm_iodevice_destructor(pos);
3373 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003374 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003375}
3376
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003377static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
Xiubo Li20e87b72015-02-26 14:58:25 +08003378 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003379{
Jason Wang8f4216c72015-09-15 14:41:57 +08003380 gpa_t addr1 = r1->addr;
3381 gpa_t addr2 = r2->addr;
3382
3383 if (addr1 < addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003384 return -1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003385
3386 /* If r2->len == 0, match the exact address. If r2->len != 0,
3387 * accept any overlapping write. Any order is acceptable for
3388 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
3389 * we process all of them.
3390 */
3391 if (r2->len) {
3392 addr1 += r1->len;
3393 addr2 += r2->len;
3394 }
3395
3396 if (addr1 > addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003397 return 1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003398
Sasha Levin743eeb02011-07-27 16:00:48 +03003399 return 0;
3400}
3401
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003402static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
3403{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003404 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003405}
3406
Geoff Levand39369f72013-04-05 19:20:30 +00003407static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
Sasha Levin743eeb02011-07-27 16:00:48 +03003408 gpa_t addr, int len)
3409{
Sasha Levin743eeb02011-07-27 16:00:48 +03003410 bus->range[bus->dev_count++] = (struct kvm_io_range) {
3411 .addr = addr,
3412 .len = len,
3413 .dev = dev,
3414 };
3415
3416 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
3417 kvm_io_bus_sort_cmp, NULL);
3418
3419 return 0;
3420}
3421
Geoff Levand39369f72013-04-05 19:20:30 +00003422static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03003423 gpa_t addr, int len)
3424{
3425 struct kvm_io_range *range, key;
3426 int off;
3427
3428 key = (struct kvm_io_range) {
3429 .addr = addr,
3430 .len = len,
3431 };
3432
3433 range = bsearch(&key, bus->range, bus->dev_count,
3434 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
3435 if (range == NULL)
3436 return -ENOENT;
3437
3438 off = range - bus->range;
3439
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003440 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03003441 off--;
3442
3443 return off;
3444}
3445
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003446static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003447 struct kvm_io_range *range, const void *val)
3448{
3449 int idx;
3450
3451 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3452 if (idx < 0)
3453 return -EOPNOTSUPP;
3454
3455 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003456 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003457 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003458 range->len, val))
3459 return idx;
3460 idx++;
3461 }
3462
3463 return -EOPNOTSUPP;
3464}
3465
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003466/* kvm_io_bus_write - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003467int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003468 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003469{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003470 struct kvm_io_bus *bus;
3471 struct kvm_io_range range;
3472 int r;
3473
3474 range = (struct kvm_io_range) {
3475 .addr = addr,
3476 .len = len,
3477 };
3478
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003479 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003480 if (!bus)
3481 return -ENOMEM;
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003482 r = __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003483 return r < 0 ? r : 0;
3484}
3485
3486/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003487int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3488 gpa_t addr, int len, const void *val, long cookie)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003489{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003490 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03003491 struct kvm_io_range range;
3492
3493 range = (struct kvm_io_range) {
3494 .addr = addr,
3495 .len = len,
3496 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003497
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003498 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003499 if (!bus)
3500 return -ENOMEM;
Cornelia Huck126a5af2013-07-03 16:30:53 +02003501
3502 /* First try the device referenced by cookie. */
3503 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003504 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003505 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003506 val))
3507 return cookie;
3508
3509 /*
3510 * cookie contained garbage; fall back to search and return the
3511 * correct cookie value.
3512 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003513 return __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003514}
3515
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003516static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3517 struct kvm_io_range *range, void *val)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003518{
3519 int idx;
3520
3521 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003522 if (idx < 0)
3523 return -EOPNOTSUPP;
3524
3525 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003526 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003527 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003528 range->len, val))
3529 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003530 idx++;
3531 }
3532
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003533 return -EOPNOTSUPP;
3534}
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03003535EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003536
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003537/* kvm_io_bus_read - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003538int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003539 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003540{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003541 struct kvm_io_bus *bus;
3542 struct kvm_io_range range;
3543 int r;
3544
3545 range = (struct kvm_io_range) {
3546 .addr = addr,
3547 .len = len,
3548 };
3549
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003550 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003551 if (!bus)
3552 return -ENOMEM;
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003553 r = __kvm_io_bus_read(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003554 return r < 0 ? r : 0;
3555}
3556
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003557
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003558/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003559int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3560 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003561{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003562 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003563
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003564 bus = kvm->buses[bus_idx];
David Hildenbrand90db1042017-03-23 18:24:19 +01003565 if (!bus)
3566 return -ENOMEM;
3567
Amos Kong6ea34c92013-05-25 06:44:15 +08003568 /* exclude ioeventfd which is limited by maximum fd */
3569 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003570 return -ENOSPC;
3571
Jason Wangd3febdd2015-08-25 17:05:46 +08003572 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count + 1) *
Amos Konga13007162012-03-09 12:17:32 +08003573 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003574 if (!new_bus)
3575 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08003576 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
3577 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03003578 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003579 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3580 synchronize_srcu_expedited(&kvm->srcu);
3581 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04003582
3583 return 0;
3584}
3585
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003586/* Caller must hold slots_lock. */
David Hildenbrand90db1042017-03-23 18:24:19 +01003587void kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3588 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003589{
David Hildenbrand90db1042017-03-23 18:24:19 +01003590 int i;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003591 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003592
Sasha Levincdfca7b2011-12-04 19:36:28 +02003593 bus = kvm->buses[bus_idx];
Peter Xudf630b82017-03-15 16:01:17 +08003594 if (!bus)
David Hildenbrand90db1042017-03-23 18:24:19 +01003595 return;
Peter Xudf630b82017-03-15 16:01:17 +08003596
Amos Konga13007162012-03-09 12:17:32 +08003597 for (i = 0; i < bus->dev_count; i++)
3598 if (bus->range[i].dev == dev) {
Gregory Haskins090b7af2009-07-07 17:08:44 -04003599 break;
3600 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003601
David Hildenbrand90db1042017-03-23 18:24:19 +01003602 if (i == bus->dev_count)
3603 return;
Amos Konga13007162012-03-09 12:17:32 +08003604
Jason Wangd3febdd2015-08-25 17:05:46 +08003605 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count - 1) *
Amos Konga13007162012-03-09 12:17:32 +08003606 sizeof(struct kvm_io_range)), GFP_KERNEL);
David Hildenbrand90db1042017-03-23 18:24:19 +01003607 if (!new_bus) {
3608 pr_err("kvm: failed to shrink bus, removing it completely\n");
3609 goto broken;
3610 }
Amos Konga13007162012-03-09 12:17:32 +08003611
3612 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3613 new_bus->dev_count--;
3614 memcpy(new_bus->range + i, bus->range + i + 1,
3615 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003616
David Hildenbrand90db1042017-03-23 18:24:19 +01003617broken:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003618 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3619 synchronize_srcu_expedited(&kvm->srcu);
3620 kfree(bus);
David Hildenbrand90db1042017-03-23 18:24:19 +01003621 return;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003622}
3623
Andre Przywara8a39d002016-07-15 12:43:26 +01003624struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3625 gpa_t addr)
3626{
3627 struct kvm_io_bus *bus;
3628 int dev_idx, srcu_idx;
3629 struct kvm_io_device *iodev = NULL;
3630
3631 srcu_idx = srcu_read_lock(&kvm->srcu);
3632
3633 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
David Hildenbrand90db1042017-03-23 18:24:19 +01003634 if (!bus)
3635 goto out_unlock;
Andre Przywara8a39d002016-07-15 12:43:26 +01003636
3637 dev_idx = kvm_io_bus_get_first_dev(bus, addr, 1);
3638 if (dev_idx < 0)
3639 goto out_unlock;
3640
3641 iodev = bus->range[dev_idx].dev;
3642
3643out_unlock:
3644 srcu_read_unlock(&kvm->srcu, srcu_idx);
3645
3646 return iodev;
3647}
3648EXPORT_SYMBOL_GPL(kvm_io_bus_get_dev);
3649
Janosch Frank536a6f82016-05-18 13:26:23 +02003650static int kvm_debugfs_open(struct inode *inode, struct file *file,
3651 int (*get)(void *, u64 *), int (*set)(void *, u64),
3652 const char *fmt)
3653{
3654 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
3655 inode->i_private;
3656
3657 /* The debugfs files are a reference to the kvm struct which
3658 * is still valid when kvm_destroy_vm is called.
3659 * To avoid the race between open and the removal of the debugfs
3660 * directory we test against the users count.
3661 */
Elena Reshetovae3736c32017-02-20 13:06:21 +02003662 if (!refcount_inc_not_zero(&stat_data->kvm->users_count))
Janosch Frank536a6f82016-05-18 13:26:23 +02003663 return -ENOENT;
3664
3665 if (simple_attr_open(inode, file, get, set, fmt)) {
3666 kvm_put_kvm(stat_data->kvm);
3667 return -ENOMEM;
3668 }
3669
3670 return 0;
3671}
3672
3673static int kvm_debugfs_release(struct inode *inode, struct file *file)
3674{
3675 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
3676 inode->i_private;
3677
3678 simple_attr_release(inode, file);
3679 kvm_put_kvm(stat_data->kvm);
3680
3681 return 0;
3682}
3683
3684static int vm_stat_get_per_vm(void *data, u64 *val)
3685{
3686 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3687
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +10003688 *val = *(ulong *)((void *)stat_data->kvm + stat_data->offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02003689
3690 return 0;
3691}
3692
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003693static int vm_stat_clear_per_vm(void *data, u64 val)
3694{
3695 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3696
3697 if (val)
3698 return -EINVAL;
3699
3700 *(ulong *)((void *)stat_data->kvm + stat_data->offset) = 0;
3701
3702 return 0;
3703}
3704
Janosch Frank536a6f82016-05-18 13:26:23 +02003705static int vm_stat_get_per_vm_open(struct inode *inode, struct file *file)
3706{
3707 __simple_attr_check_format("%llu\n", 0ull);
3708 return kvm_debugfs_open(inode, file, vm_stat_get_per_vm,
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003709 vm_stat_clear_per_vm, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02003710}
3711
3712static const struct file_operations vm_stat_get_per_vm_fops = {
3713 .owner = THIS_MODULE,
3714 .open = vm_stat_get_per_vm_open,
3715 .release = kvm_debugfs_release,
3716 .read = simple_attr_read,
3717 .write = simple_attr_write,
3718 .llseek = generic_file_llseek,
3719};
3720
3721static int vcpu_stat_get_per_vm(void *data, u64 *val)
3722{
3723 int i;
3724 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3725 struct kvm_vcpu *vcpu;
3726
3727 *val = 0;
3728
3729 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +10003730 *val += *(u64 *)((void *)vcpu + stat_data->offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02003731
3732 return 0;
3733}
3734
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003735static int vcpu_stat_clear_per_vm(void *data, u64 val)
3736{
3737 int i;
3738 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3739 struct kvm_vcpu *vcpu;
3740
3741 if (val)
3742 return -EINVAL;
3743
3744 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
3745 *(u64 *)((void *)vcpu + stat_data->offset) = 0;
3746
3747 return 0;
3748}
3749
Janosch Frank536a6f82016-05-18 13:26:23 +02003750static int vcpu_stat_get_per_vm_open(struct inode *inode, struct file *file)
3751{
3752 __simple_attr_check_format("%llu\n", 0ull);
3753 return kvm_debugfs_open(inode, file, vcpu_stat_get_per_vm,
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003754 vcpu_stat_clear_per_vm, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02003755}
3756
3757static const struct file_operations vcpu_stat_get_per_vm_fops = {
3758 .owner = THIS_MODULE,
3759 .open = vcpu_stat_get_per_vm_open,
3760 .release = kvm_debugfs_release,
3761 .read = simple_attr_read,
3762 .write = simple_attr_write,
3763 .llseek = generic_file_llseek,
3764};
3765
3766static const struct file_operations *stat_fops_per_vm[] = {
3767 [KVM_STAT_VCPU] = &vcpu_stat_get_per_vm_fops,
3768 [KVM_STAT_VM] = &vm_stat_get_per_vm_fops,
3769};
3770
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003771static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02003772{
3773 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02003774 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02003775 struct kvm_stat_data stat_tmp = {.offset = offset};
3776 u64 tmp_val;
Avi Kivityba1389b2007-11-18 16:24:12 +02003777
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003778 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003779 spin_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02003780 list_for_each_entry(kvm, &vm_list, vm_list) {
3781 stat_tmp.kvm = kvm;
3782 vm_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
3783 *val += tmp_val;
3784 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003785 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003786 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02003787}
3788
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003789static int vm_stat_clear(void *_offset, u64 val)
3790{
3791 unsigned offset = (long)_offset;
3792 struct kvm *kvm;
3793 struct kvm_stat_data stat_tmp = {.offset = offset};
3794
3795 if (val)
3796 return -EINVAL;
3797
3798 spin_lock(&kvm_lock);
3799 list_for_each_entry(kvm, &vm_list, vm_list) {
3800 stat_tmp.kvm = kvm;
3801 vm_stat_clear_per_vm((void *)&stat_tmp, 0);
3802 }
3803 spin_unlock(&kvm_lock);
3804
3805 return 0;
3806}
3807
3808DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, vm_stat_clear, "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02003809
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003810static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003811{
3812 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003813 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02003814 struct kvm_stat_data stat_tmp = {.offset = offset};
3815 u64 tmp_val;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003816
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003817 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003818 spin_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02003819 list_for_each_entry(kvm, &vm_list, vm_list) {
3820 stat_tmp.kvm = kvm;
3821 vcpu_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
3822 *val += tmp_val;
3823 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003824 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003825 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003826}
3827
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003828static int vcpu_stat_clear(void *_offset, u64 val)
3829{
3830 unsigned offset = (long)_offset;
3831 struct kvm *kvm;
3832 struct kvm_stat_data stat_tmp = {.offset = offset};
3833
3834 if (val)
3835 return -EINVAL;
3836
3837 spin_lock(&kvm_lock);
3838 list_for_each_entry(kvm, &vm_list, vm_list) {
3839 stat_tmp.kvm = kvm;
3840 vcpu_stat_clear_per_vm((void *)&stat_tmp, 0);
3841 }
3842 spin_unlock(&kvm_lock);
3843
3844 return 0;
3845}
3846
3847DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, vcpu_stat_clear,
3848 "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02003849
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003850static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02003851 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3852 [KVM_STAT_VM] = &vm_stat_fops,
3853};
Avi Kivity1165f5f2007-04-19 17:27:43 +03003854
Hamo4f69b682011-12-15 14:23:16 +08003855static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003856{
Paolo Bonzini0c8eb042013-10-30 12:12:13 +01003857 int r = -EEXIST;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003858 struct kvm_stats_debugfs_item *p;
3859
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003860 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08003861 if (kvm_debugfs_dir == NULL)
3862 goto out;
3863
Janosch Frank536a6f82016-05-18 13:26:23 +02003864 kvm_debugfs_num_entries = 0;
3865 for (p = debugfs_entries; p->name; ++p, kvm_debugfs_num_entries++) {
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003866 if (!debugfs_create_file(p->name, 0644, kvm_debugfs_dir,
Janosch Frank4bd33b52015-10-14 12:37:35 +02003867 (void *)(long)p->offset,
3868 stat_fops[p->kind]))
Hamo4f69b682011-12-15 14:23:16 +08003869 goto out_dir;
3870 }
3871
3872 return 0;
3873
3874out_dir:
3875 debugfs_remove_recursive(kvm_debugfs_dir);
3876out:
3877 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003878}
3879
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003880static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003881{
Alexander Graf10474ae2009-09-15 11:37:46 +02003882 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003883 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003884 return 0;
3885}
3886
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003887static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003888{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003889 if (kvm_usage_count) {
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003890 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003891 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003892 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08003893}
3894
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003895static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08003896 .suspend = kvm_suspend,
3897 .resume = kvm_resume,
3898};
3899
Avi Kivity15ad7142007-07-11 18:17:21 +03003900static inline
3901struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3902{
3903 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3904}
3905
3906static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3907{
3908 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08003909
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303910 if (vcpu->preempted)
3911 vcpu->preempted = false;
Avi Kivity15ad7142007-07-11 18:17:21 +03003912
Radim Krčmáře790d9e2014-08-21 18:08:05 +02003913 kvm_arch_sched_in(vcpu, cpu);
3914
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003915 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003916}
3917
3918static void kvm_sched_out(struct preempt_notifier *pn,
3919 struct task_struct *next)
3920{
3921 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3922
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303923 if (current->state == TASK_RUNNING)
3924 vcpu->preempted = true;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003925 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003926}
3927
Avi Kivity0ee75be2010-04-28 15:39:01 +03003928int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10003929 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003930{
3931 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003932 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003933
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003934 r = kvm_arch_init(opaque);
3935 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003936 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003937
Asias He7dac16c2013-05-08 10:57:29 +08003938 /*
3939 * kvm_arch_init makes sure there's at most one caller
3940 * for architectures that support multiple implementations,
3941 * like intel and amd on x86.
Paolo Bonzini36343f62016-10-26 13:35:56 +02003942 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3943 * conflicts in case kvm is already setup for another implementation.
Asias He7dac16c2013-05-08 10:57:29 +08003944 */
Paolo Bonzini36343f62016-10-26 13:35:56 +02003945 r = kvm_irqfd_init();
3946 if (r)
3947 goto out_irqfd;
Asias He7dac16c2013-05-08 10:57:29 +08003948
Avi Kivity8437a612009-06-06 14:52:35 -07003949 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10303950 r = -ENOMEM;
3951 goto out_free_0;
3952 }
3953
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003954 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003955 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10303956 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003957
Yang, Sheng002c7f72007-07-31 14:23:01 +03003958 for_each_online_cpu(cpu) {
3959 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003960 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02003961 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003962 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003963 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003964 }
3965
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003966 r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "kvm/cpu:starting",
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003967 kvm_starting_cpu, kvm_dying_cpu);
Avi Kivity774c47f2007-02-12 00:54:47 -08003968 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003969 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003970 register_reboot_notifier(&kvm_reboot_notifier);
3971
Rusty Russellc16f8622007-07-30 21:12:19 +10003972 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03003973 if (!vcpu_align)
3974 vcpu_align = __alignof__(struct kvm_vcpu);
3975 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08003976 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10003977 if (!kvm_vcpu_cache) {
3978 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003979 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10003980 }
3981
Gleb Natapovaf585b92010-10-14 11:22:46 +02003982 r = kvm_async_pf_init();
3983 if (r)
3984 goto out_free;
3985
Avi Kivity6aa8b732006-12-10 02:21:36 -08003986 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003987 kvm_vm_fops.owner = module;
3988 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003989
3990 r = misc_register(&kvm_dev);
3991 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003992 pr_err("kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02003993 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003994 }
3995
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003996 register_syscore_ops(&kvm_syscore_ops);
3997
Avi Kivity15ad7142007-07-11 18:17:21 +03003998 kvm_preempt_ops.sched_in = kvm_sched_in;
3999 kvm_preempt_ops.sched_out = kvm_sched_out;
4000
Hamo4f69b682011-12-15 14:23:16 +08004001 r = kvm_init_debug();
4002 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08004003 pr_err("kvm: create debugfs files failed\n");
Hamo4f69b682011-12-15 14:23:16 +08004004 goto out_undebugfs;
4005 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07004006
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02004007 r = kvm_vfio_ops_init();
4008 WARN_ON(r);
4009
Avi Kivityc7addb92007-09-16 18:58:32 +02004010 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004011
Hamo4f69b682011-12-15 14:23:16 +08004012out_undebugfs:
4013 unregister_syscore_ops(&kvm_syscore_ops);
Wei Yongjunafc2f792013-05-05 20:03:40 +08004014 misc_deregister(&kvm_dev);
Gleb Natapovaf585b92010-10-14 11:22:46 +02004015out_unreg:
4016 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004017out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10004018 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004019out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004020 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004021 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004022out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08004023out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004024 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10304025out_free_0a:
4026 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004027out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004028 kvm_irqfd_exit();
Paolo Bonzini36343f62016-10-26 13:35:56 +02004029out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08004030 kvm_arch_exit();
4031out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004032 return r;
4033}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004034EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004035
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004036void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004037{
Janosch Frank4bd33b52015-10-14 12:37:35 +02004038 debugfs_remove_recursive(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004039 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10004040 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02004041 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004042 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004043 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004044 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004045 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004046 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08004047 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004048 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10304049 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08004050 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004051}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004052EXPORT_SYMBOL_GPL(kvm_exit);