blob: a17d78759727f352991a97b4c2bed21266657760 [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);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200730 for (i = 0; i < KVM_NR_BUSES; i++)
731 kvm_io_bus_destroy(kvm->buses[i]);
Avi Kivity980da6c2009-12-20 15:13:43 +0200732 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200733#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
734 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200735#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300736 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200737#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800738 kvm_arch_destroy_vm(kvm);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000739 kvm_destroy_devices(kvm);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200740 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
741 kvm_free_memslots(kvm, kvm->memslots[i]);
Paolo Bonzini820b3fc2014-06-03 13:44:17 +0200742 cleanup_srcu_struct(&kvm->irq_srcu);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100743 cleanup_srcu_struct(&kvm->srcu);
744 kvm_arch_free_vm(kvm);
Peter Zijlstra2ecd9d22015-07-03 18:53:58 +0200745 preempt_notifier_dec();
Alexander Graf10474ae2009-09-15 11:37:46 +0200746 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200747 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200748}
749
Izik Eidusd39f13b2008-03-30 16:01:25 +0300750void kvm_get_kvm(struct kvm *kvm)
751{
Elena Reshetovae3736c32017-02-20 13:06:21 +0200752 refcount_inc(&kvm->users_count);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300753}
754EXPORT_SYMBOL_GPL(kvm_get_kvm);
755
756void kvm_put_kvm(struct kvm *kvm)
757{
Elena Reshetovae3736c32017-02-20 13:06:21 +0200758 if (refcount_dec_and_test(&kvm->users_count))
Izik Eidusd39f13b2008-03-30 16:01:25 +0300759 kvm_destroy_vm(kvm);
760}
761EXPORT_SYMBOL_GPL(kvm_put_kvm);
762
763
Avi Kivityf17abe92007-02-21 19:28:04 +0200764static int kvm_vm_release(struct inode *inode, struct file *filp)
765{
766 struct kvm *kvm = filp->private_data;
767
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400768 kvm_irqfd_release(kvm);
769
Izik Eidusd39f13b2008-03-30 16:01:25 +0300770 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800771 return 0;
772}
773
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900774/*
775 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900776 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900777 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900778static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
779{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900780 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900781
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900782 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900783 if (!memslot->dirty_bitmap)
784 return -ENOMEM;
785
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900786 return 0;
787}
788
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800789/*
Igor Mammedov0e60b072014-12-01 17:29:26 +0000790 * Insert memslot and re-sort memslots based on their GFN,
791 * so binary search could be used to lookup GFN.
792 * Sorting algorithm takes advantage of having initially
793 * sorted array and known changed memslot position.
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800794 */
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100795static void update_memslots(struct kvm_memslots *slots,
796 struct kvm_memory_slot *new)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800797{
Paolo Bonzini85931762014-11-14 10:22:07 +0100798 int id = new->id;
799 int i = slots->id_to_index[id];
Igor Mammedov063584d2014-11-13 23:00:13 +0000800 struct kvm_memory_slot *mslots = slots->memslots;
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800801
Paolo Bonzini85931762014-11-14 10:22:07 +0100802 WARN_ON(mslots[i].id != id);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000803 if (!new->npages) {
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100804 WARN_ON(!mslots[i].npages);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000805 if (mslots[i].npages)
806 slots->used_slots--;
807 } else {
808 if (!mslots[i].npages)
809 slots->used_slots++;
810 }
Igor Mammedov0e60b072014-12-01 17:29:26 +0000811
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000812 while (i < KVM_MEM_SLOTS_NUM - 1 &&
Igor Mammedov0e60b072014-12-01 17:29:26 +0000813 new->base_gfn <= mslots[i + 1].base_gfn) {
814 if (!mslots[i + 1].npages)
815 break;
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000816 mslots[i] = mslots[i + 1];
817 slots->id_to_index[mslots[i].id] = i;
818 i++;
819 }
Paolo Bonziniefbeec72014-12-27 18:01:00 +0100820
821 /*
822 * The ">=" is needed when creating a slot with base_gfn == 0,
823 * so that it moves before all those with base_gfn == npages == 0.
824 *
825 * On the other hand, if new->npages is zero, the above loop has
826 * already left i pointing to the beginning of the empty part of
827 * mslots, and the ">=" would move the hole backwards in this
828 * case---which is wrong. So skip the loop when deleting a slot.
829 */
830 if (new->npages) {
831 while (i > 0 &&
832 new->base_gfn >= mslots[i - 1].base_gfn) {
833 mslots[i] = mslots[i - 1];
834 slots->id_to_index[mslots[i].id] = i;
835 i--;
836 }
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100837 } else
838 WARN_ON_ONCE(i != slots->used_slots);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800839
Paolo Bonzini85931762014-11-14 10:22:07 +0100840 mslots[i] = *new;
841 slots->id_to_index[mslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800842}
843
Paolo Bonzini09170a42015-05-18 13:59:39 +0200844static int check_memory_region_flags(const struct kvm_userspace_memory_region *mem)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800845{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800846 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
847
Christoffer Dall0f8a4de2014-08-26 14:00:37 +0200848#ifdef __KVM_HAVE_READONLY_MEM
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800849 valid_flags |= KVM_MEM_READONLY;
850#endif
851
852 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800853 return -EINVAL;
854
855 return 0;
856}
857
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200858static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
Paolo Bonzinif481b062015-05-17 17:30:37 +0200859 int as_id, struct kvm_memslots *slots)
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200860{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200861 struct kvm_memslots *old_memslots = __kvm_memslots(kvm, as_id);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200862
David Matlackee3d1572014-08-18 15:46:06 -0700863 /*
864 * Set the low bit in the generation, which disables SPTE caching
865 * until the end of synchronize_srcu_expedited.
866 */
867 WARN_ON(old_memslots->generation & 1);
868 slots->generation = old_memslots->generation + 1;
869
Paolo Bonzinif481b062015-05-17 17:30:37 +0200870 rcu_assign_pointer(kvm->memslots[as_id], slots);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200871 synchronize_srcu_expedited(&kvm->srcu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900872
David Matlackee3d1572014-08-18 15:46:06 -0700873 /*
874 * Increment the new memslot generation a second time. This prevents
875 * vm exits that race with memslot updates from caching a memslot
876 * generation that will (potentially) be valid forever.
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800877 *
878 * Generations must be unique even across address spaces. We do not need
879 * a global counter for that, instead the generation space is evenly split
880 * across address spaces. For example, with two address spaces, address
881 * space 0 will use generations 0, 4, 8, ... while * address space 1 will
882 * use generations 2, 6, 10, 14, ...
David Matlackee3d1572014-08-18 15:46:06 -0700883 */
Paolo Bonzini4bd518f2017-02-03 20:44:51 -0800884 slots->generation += KVM_ADDRESS_SPACE_NUM * 2 - 1;
David Matlackee3d1572014-08-18 15:46:06 -0700885
Paolo Bonzini15f46012015-05-17 21:26:08 +0200886 kvm_arch_memslots_updated(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900887
888 return old_memslots;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200889}
890
Avi Kivity6aa8b732006-12-10 02:21:36 -0800891/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800892 * Allocate some memory and give it an address in the guest physical address
893 * space.
894 *
895 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800896 *
Dominik Dingel02d5d552014-10-27 16:22:56 +0100897 * Must be called holding kvm->slots_lock for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800898 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800899int __kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200900 const struct kvm_userspace_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800901{
Avi Kivity8234b222010-12-27 12:08:45 +0200902 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800903 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200904 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900905 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700907 struct kvm_memslots *slots = NULL, *old_memslots;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200908 int as_id, id;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900909 enum kvm_mr_change change;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800910
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800911 r = check_memory_region_flags(mem);
912 if (r)
913 goto out;
914
Avi Kivity6aa8b732006-12-10 02:21:36 -0800915 r = -EINVAL;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200916 as_id = mem->slot >> 16;
917 id = (u16)mem->slot;
918
Avi Kivity6aa8b732006-12-10 02:21:36 -0800919 /* General sanity checks */
920 if (mem->memory_size & (PAGE_SIZE - 1))
921 goto out;
922 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
923 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900924 /* We can read the guest memory with __xxx_user() later on. */
Paolo Bonzinif481b062015-05-17 17:30:37 +0200925 if ((id < KVM_USER_MEM_SLOTS) &&
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900926 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +0200927 !access_ok(VERIFY_WRITE,
928 (void __user *)(unsigned long)mem->userspace_addr,
929 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600930 goto out;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200931 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800932 goto out;
933 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
934 goto out;
935
Paolo Bonzinif481b062015-05-17 17:30:37 +0200936 slot = id_to_memslot(__kvm_memslots(kvm, as_id), id);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800937 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
938 npages = mem->memory_size >> PAGE_SHIFT;
939
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900940 if (npages > KVM_MEM_MAX_NR_PAGES)
941 goto out;
942
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900943 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800944
Paolo Bonzinif481b062015-05-17 17:30:37 +0200945 new.id = id;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800946 new.base_gfn = base_gfn;
947 new.npages = npages;
948 new.flags = mem->flags;
949
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900950 if (npages) {
951 if (!old.npages)
952 change = KVM_MR_CREATE;
953 else { /* Modify an existing slot. */
954 if ((mem->userspace_addr != old.userspace_addr) ||
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +0900955 (npages != old.npages) ||
956 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900957 goto out;
958
959 if (base_gfn != old.base_gfn)
960 change = KVM_MR_MOVE;
961 else if (new.flags != old.flags)
962 change = KVM_MR_FLAGS_ONLY;
963 else { /* Nothing to change. */
964 r = 0;
965 goto out;
966 }
967 }
Paolo Bonzini09170a42015-05-18 13:59:39 +0200968 } else {
969 if (!old.npages)
970 goto out;
971
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900972 change = KVM_MR_DELETE;
Paolo Bonzini09170a42015-05-18 13:59:39 +0200973 new.base_gfn = 0;
974 new.flags = 0;
975 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800976
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900977 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900978 /* Check for overlaps */
979 r = -EEXIST;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200980 kvm_for_each_memslot(slot, __kvm_memslots(kvm, as_id)) {
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900981 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
Paolo Bonzinif481b062015-05-17 17:30:37 +0200982 (slot->id == id))
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900983 continue;
984 if (!((base_gfn + npages <= slot->base_gfn) ||
985 (base_gfn >= slot->base_gfn + slot->npages)))
986 goto out;
987 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800989
Avi Kivity6aa8b732006-12-10 02:21:36 -0800990 /* Free page dirty bitmap if unneeded */
991 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000992 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800993
994 r = -ENOMEM;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900995 if (change == KVM_MR_CREATE) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900996 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +0900997
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530998 if (kvm_arch_create_memslot(kvm, &new, npages))
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900999 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001000 }
Joerg Roedelec04b262009-06-19 15:16:23 +02001001
Avi Kivity6aa8b732006-12-10 02:21:36 -08001002 /* Allocate page dirty bitmap if needed */
1003 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +09001004 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001005 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001006 }
1007
Igor Mammedov74496132015-03-20 12:21:37 +00001008 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001009 if (!slots)
1010 goto out_free;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001011 memcpy(slots, __kvm_memslots(kvm, as_id), sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001012
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001013 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
Paolo Bonzinif481b062015-05-17 17:30:37 +02001014 slot = id_to_memslot(slots, id);
Xiao Guangrong28a37542011-11-24 19:04:35 +08001015 slot->flags |= KVM_MEMSLOT_INVALID;
1016
Paolo Bonzinif481b062015-05-17 17:30:37 +02001017 old_memslots = install_new_memslots(kvm, as_id, slots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001018
Alex Williamsone40f1932012-12-10 10:32:57 -07001019 /* slot was deleted or moved, clear iommu mapping */
1020 kvm_iommu_unmap_pages(kvm, &old);
Marcelo Tosatti12d6e752012-08-24 15:54:58 -03001021 /* From this point no new shadow pages pointing to a deleted,
1022 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001023 *
1024 * validation of sp->gfn happens in:
Xiubo Lib7d409d2015-02-26 14:58:24 +08001025 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
1026 * - kvm_is_visible_gfn (mmu_check_roots)
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001027 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -03001028 kvm_arch_flush_shadow_memslot(kvm, slot);
Paolo Bonzinif2a81032014-11-14 10:46:45 +01001029
1030 /*
1031 * We can re-use the old_memslots from above, the only difference
1032 * from the currently installed memslots is the invalid flag. This
1033 * will get overwritten by update_memslots anyway.
1034 */
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001035 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001036 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -03001037
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09001038 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001039 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -07001040 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02001041
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001042 /* actual memory is freed via old in kvm_free_memslot below */
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +09001043 if (change == KVM_MR_DELETE) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001044 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001045 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001046 }
1047
Paolo Bonzini5cc15022014-11-14 10:55:31 +01001048 update_memslots(slots, &new);
Paolo Bonzinif481b062015-05-17 17:30:37 +02001049 old_memslots = install_new_memslots(kvm, as_id, slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001050
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001051 kvm_arch_commit_memory_region(kvm, mem, &old, &new, change);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08001052
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001053 kvm_free_memslot(kvm, &old, &new);
Igor Mammedov74496132015-03-20 12:21:37 +00001054 kvfree(old_memslots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001055
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001056 /*
1057 * IOMMU mapping: New slots need to be mapped. Old slots need to be
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058 * un-mapped and re-mapped if their base changes. Since base change
1059 * unmapping is handled above with slot deletion, mapping alone is
Sheng Yangf78e0e22007-10-29 09:40:42 +08001060 * needed here. Anything else the iommu might care about for existing
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061 * slots (size changes, userspace addr changes and read-only flag
1062 * changes) is disallowed above, so any other attribute changes getting
1063 * here can be skipped.
Izik Eidus210c7c42007-10-24 23:52:57 +02001064 */
1065 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08001066 r = kvm_iommu_map_pages(kvm, &new);
Yang Zhange0230e12013-10-24 09:56:39 +08001067 return r;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001068 }
1069
Avi Kivity6aa8b732006-12-10 02:21:36 -08001070 return 0;
1071
1072out_slots:
Igor Mammedov74496132015-03-20 12:21:37 +00001073 kvfree(slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001074out_free:
Paolo Bonzinia47d2b02015-05-17 11:41:37 +02001075 kvm_free_memslot(kvm, &new, &old);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001076out:
1077 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +02001078}
1079EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001080
1081int kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001082 const struct kvm_userspace_memory_region *mem)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001083{
1084 int r;
1085
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001086 mutex_lock(&kvm->slots_lock);
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001087 r = __kvm_set_memory_region(kvm, mem);
Marcelo Tosatti79fac952009-12-23 14:35:26 -02001088 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001089 return r;
1090}
Izik Eidus210c7c42007-10-24 23:52:57 +02001091EXPORT_SYMBOL_GPL(kvm_set_memory_region);
1092
Stephen Hemminger79408762013-12-29 12:12:29 -08001093static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
1094 struct kvm_userspace_memory_region *mem)
Izik Eidus210c7c42007-10-24 23:52:57 +02001095{
Paolo Bonzinif481b062015-05-17 17:30:37 +02001096 if ((u16)mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001097 return -EINVAL;
Paolo Bonzini09170a42015-05-18 13:59:39 +02001098
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09001099 return kvm_set_memory_region(kvm, mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001100}
1101
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001102int kvm_get_dirty_log(struct kvm *kvm,
1103 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001104{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001105 struct kvm_memslots *slots;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001106 struct kvm_memory_slot *memslot;
Markus Elfring843574a2017-01-22 17:41:07 +01001107 int i, as_id, id;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001108 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001109 unsigned long any = 0;
1110
Paolo Bonzinif481b062015-05-17 17:30:37 +02001111 as_id = log->slot >> 16;
1112 id = (u16)log->slot;
1113 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring843574a2017-01-22 17:41:07 +01001114 return -EINVAL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001115
Paolo Bonzinif481b062015-05-17 17:30:37 +02001116 slots = __kvm_memslots(kvm, as_id);
1117 memslot = id_to_memslot(slots, id);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001118 if (!memslot->dirty_bitmap)
Markus Elfring843574a2017-01-22 17:41:07 +01001119 return -ENOENT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001120
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +09001121 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001122
Uri Lublincd1a4a92007-02-22 16:43:09 +02001123 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001124 any = memslot->dirty_bitmap[i];
1125
Avi Kivity6aa8b732006-12-10 02:21:36 -08001126 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
Markus Elfring843574a2017-01-22 17:41:07 +01001127 return -EFAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001128
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001129 if (any)
1130 *is_dirty = 1;
Markus Elfring843574a2017-01-22 17:41:07 +01001131 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001132}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301133EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001134
Mario Smarduchba0513b2015-01-15 15:58:53 -08001135#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
1136/**
1137 * kvm_get_dirty_log_protect - get a snapshot of dirty pages, and if any pages
1138 * are dirty write protect them for next write.
1139 * @kvm: pointer to kvm instance
1140 * @log: slot id and address to which we copy the log
1141 * @is_dirty: flag set if any page is dirty
1142 *
1143 * We need to keep it in mind that VCPU threads can write to the bitmap
1144 * concurrently. So, to avoid losing track of dirty pages we keep the
1145 * following order:
1146 *
1147 * 1. Take a snapshot of the bit and clear it if needed.
1148 * 2. Write protect the corresponding page.
1149 * 3. Copy the snapshot to the userspace.
1150 * 4. Upon return caller flushes TLB's if needed.
1151 *
1152 * Between 2 and 4, the guest may write to the page using the remaining TLB
1153 * entry. This is not a problem because the page is reported dirty using
1154 * the snapshot taken before and step 4 ensures that writes done after
1155 * exiting to userspace will be logged for the next call.
1156 *
1157 */
1158int kvm_get_dirty_log_protect(struct kvm *kvm,
1159 struct kvm_dirty_log *log, bool *is_dirty)
1160{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001161 struct kvm_memslots *slots;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001162 struct kvm_memory_slot *memslot;
Markus Elfring58d6db32017-01-22 17:30:16 +01001163 int i, as_id, id;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001164 unsigned long n;
1165 unsigned long *dirty_bitmap;
1166 unsigned long *dirty_bitmap_buffer;
1167
Paolo Bonzinif481b062015-05-17 17:30:37 +02001168 as_id = log->slot >> 16;
1169 id = (u16)log->slot;
1170 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Markus Elfring58d6db32017-01-22 17:30:16 +01001171 return -EINVAL;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001172
Paolo Bonzinif481b062015-05-17 17:30:37 +02001173 slots = __kvm_memslots(kvm, as_id);
1174 memslot = id_to_memslot(slots, id);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001175
1176 dirty_bitmap = memslot->dirty_bitmap;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001177 if (!dirty_bitmap)
Markus Elfring58d6db32017-01-22 17:30:16 +01001178 return -ENOENT;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001179
1180 n = kvm_dirty_bitmap_bytes(memslot);
1181
1182 dirty_bitmap_buffer = dirty_bitmap + n / sizeof(long);
1183 memset(dirty_bitmap_buffer, 0, n);
1184
1185 spin_lock(&kvm->mmu_lock);
1186 *is_dirty = false;
1187 for (i = 0; i < n / sizeof(long); i++) {
1188 unsigned long mask;
1189 gfn_t offset;
1190
1191 if (!dirty_bitmap[i])
1192 continue;
1193
1194 *is_dirty = true;
1195
1196 mask = xchg(&dirty_bitmap[i], 0);
1197 dirty_bitmap_buffer[i] = mask;
1198
Takuya Yoshikawa58d29302015-03-17 16:19:58 +09001199 if (mask) {
1200 offset = i * BITS_PER_LONG;
1201 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1202 offset, mask);
1203 }
Mario Smarduchba0513b2015-01-15 15:58:53 -08001204 }
1205
1206 spin_unlock(&kvm->mmu_lock);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001207 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
Markus Elfring58d6db32017-01-22 17:30:16 +01001208 return -EFAULT;
1209 return 0;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001210}
1211EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect);
1212#endif
1213
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001214bool kvm_largepages_enabled(void)
1215{
1216 return largepages_enabled;
1217}
1218
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001219void kvm_disable_largepages(void)
1220{
1221 largepages_enabled = false;
1222}
1223EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1224
Gleb Natapov49c77542010-10-18 15:22:23 +02001225struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1226{
1227 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1228}
Avi Kivitya1f4d3952010-06-21 11:44:20 +03001229EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001230
Paolo Bonzini8e734852015-05-17 13:58:53 +02001231struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn)
1232{
1233 return __gfn_to_memslot(kvm_vcpu_memslots(vcpu), gfn);
1234}
1235
Yaowei Bai33e94152015-11-14 11:21:06 +08001236bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
Izik Eiduse0d62c72007-10-24 23:57:46 +02001237{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001238 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +02001239
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001240 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001241 memslot->flags & KVM_MEMSLOT_INVALID)
Yaowei Bai33e94152015-11-14 11:21:06 +08001242 return false;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001243
Yaowei Bai33e94152015-11-14 11:21:06 +08001244 return true;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001245}
1246EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1247
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001248unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1249{
1250 struct vm_area_struct *vma;
1251 unsigned long addr, size;
1252
1253 size = PAGE_SIZE;
1254
1255 addr = gfn_to_hva(kvm, gfn);
1256 if (kvm_is_error_hva(addr))
1257 return PAGE_SIZE;
1258
1259 down_read(&current->mm->mmap_sem);
1260 vma = find_vma(current->mm, addr);
1261 if (!vma)
1262 goto out;
1263
1264 size = vma_kernel_pagesize(vma);
1265
1266out:
1267 up_read(&current->mm->mmap_sem);
1268
1269 return size;
1270}
1271
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001272static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1273{
1274 return slot->flags & KVM_MEM_READONLY;
1275}
1276
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001277static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1278 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001279{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001280 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001281 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001282
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001283 if (memslot_is_readonly(slot) && write)
1284 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001285
1286 if (nr_pages)
1287 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1288
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001289 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001290}
Xiao Guangrong48987782010-08-22 19:11:43 +08001291
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001292static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1293 gfn_t *nr_pages)
1294{
1295 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1296}
1297
1298unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001299 gfn_t gfn)
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001300{
1301 return gfn_to_hva_many(slot, gfn, NULL);
1302}
1303EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1304
Xiao Guangrong48987782010-08-22 19:11:43 +08001305unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1306{
Gleb Natapov49c77542010-10-18 15:22:23 +02001307 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001308}
Sheng Yang0d150292008-04-25 21:44:50 +08001309EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001310
Paolo Bonzini8e734852015-05-17 13:58:53 +02001311unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn)
1312{
1313 return gfn_to_hva_many(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn, NULL);
1314}
1315EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva);
1316
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001317/*
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001318 * If writable is set to false, the hva returned by this function is only
1319 * allowed to be read.
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001320 */
Christoffer Dall64d83122014-08-19 12:15:00 +02001321unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1322 gfn_t gfn, bool *writable)
Gleb Natapov80300892010-10-19 18:13:41 +02001323{
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001324 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1325
1326 if (!kvm_is_error_hva(hva) && writable)
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001327 *writable = !memslot_is_readonly(slot);
1328
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001329 return hva;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001330}
1331
Christoffer Dall64d83122014-08-19 12:15:00 +02001332unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1333{
1334 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1335
1336 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1337}
1338
Paolo Bonzini8e734852015-05-17 13:58:53 +02001339unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable)
1340{
1341 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1342
1343 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1344}
1345
Dave Hansend4edcf02016-02-12 13:01:56 -08001346static int get_user_page_nowait(unsigned long start, int write,
1347 struct page **page)
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001348{
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001349 int flags = FOLL_NOWAIT | FOLL_HWPOISON;
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001350
1351 if (write)
1352 flags |= FOLL_WRITE;
1353
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001354 return get_user_pages(start, 1, flags, page, NULL);
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001355}
1356
Huang Yingfafc3db2011-01-30 11:15:49 +08001357static inline int check_user_page_hwpoison(unsigned long addr)
1358{
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001359 int rc, flags = FOLL_HWPOISON | FOLL_WRITE;
Huang Yingfafc3db2011-01-30 11:15:49 +08001360
Lorenzo Stoakes0d731752016-10-24 10:57:25 +01001361 rc = get_user_pages(addr, 1, flags, NULL, NULL);
Huang Yingfafc3db2011-01-30 11:15:49 +08001362 return rc == -EHWPOISON;
1363}
1364
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001365/*
1366 * The atomic path to get the writable pfn which will be stored in @pfn,
1367 * true indicates success, otherwise false is returned.
1368 */
1369static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
Dan Williamsba049e92016-01-15 16:56:11 -08001370 bool write_fault, bool *writable, kvm_pfn_t *pfn)
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001371{
1372 struct page *page[1];
1373 int npages;
1374
1375 if (!(async || atomic))
1376 return false;
1377
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001378 /*
1379 * Fast pin a writable pfn only if it is a write fault request
1380 * or the caller allows to map a writable pfn for a read fault
1381 * request.
1382 */
1383 if (!(write_fault || writable))
1384 return false;
1385
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001386 npages = __get_user_pages_fast(addr, 1, 1, page);
1387 if (npages == 1) {
1388 *pfn = page_to_pfn(page[0]);
1389
1390 if (writable)
1391 *writable = true;
1392 return true;
1393 }
1394
1395 return false;
1396}
1397
1398/*
1399 * The slow path to get the pfn of the specified host virtual address,
1400 * 1 indicates success, -errno is returned if error is detected.
1401 */
1402static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
Dan Williamsba049e92016-01-15 16:56:11 -08001403 bool *writable, kvm_pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001404{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001405 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001406 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001407
1408 might_sleep();
1409
1410 if (writable)
1411 *writable = write_fault;
1412
1413 if (async) {
1414 down_read(&current->mm->mmap_sem);
Dave Hansend4edcf02016-02-12 13:01:56 -08001415 npages = get_user_page_nowait(addr, write_fault, page);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001416 up_read(&current->mm->mmap_sem);
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001417 } else {
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -08001418 unsigned int flags = FOLL_HWPOISON;
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001419
1420 if (write_fault)
1421 flags |= FOLL_WRITE;
1422
Lorenzo Stoakes8b7457e2016-12-14 15:06:55 -08001423 npages = get_user_pages_unlocked(addr, 1, page, flags);
Lorenzo Stoakesd4944b02016-10-13 01:20:12 +01001424 }
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001425 if (npages != 1)
1426 return npages;
1427
1428 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001429 if (unlikely(!write_fault) && writable) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001430 struct page *wpage[1];
1431
1432 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1433 if (npages == 1) {
1434 *writable = true;
1435 put_page(page[0]);
1436 page[0] = wpage[0];
1437 }
1438
1439 npages = 1;
1440 }
1441 *pfn = page_to_pfn(page[0]);
1442 return npages;
1443}
1444
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001445static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1446{
1447 if (unlikely(!(vma->vm_flags & VM_READ)))
1448 return false;
1449
1450 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1451 return false;
1452
1453 return true;
1454}
1455
Paolo Bonzini92176a82016-06-07 16:22:47 +02001456static int hva_to_pfn_remapped(struct vm_area_struct *vma,
1457 unsigned long addr, bool *async,
1458 bool write_fault, kvm_pfn_t *p_pfn)
1459{
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001460 unsigned long pfn;
1461 int r;
1462
1463 r = follow_pfn(vma, addr, &pfn);
1464 if (r) {
1465 /*
1466 * get_user_pages fails for VM_IO and VM_PFNMAP vmas and does
1467 * not call the fault handler, so do it here.
1468 */
1469 bool unlocked = false;
1470 r = fixup_user_fault(current, current->mm, addr,
1471 (write_fault ? FAULT_FLAG_WRITE : 0),
1472 &unlocked);
1473 if (unlocked)
1474 return -EAGAIN;
1475 if (r)
1476 return r;
1477
1478 r = follow_pfn(vma, addr, &pfn);
1479 if (r)
1480 return r;
1481
1482 }
1483
1484
1485 /*
1486 * Get a reference here because callers of *hva_to_pfn* and
1487 * *gfn_to_pfn* ultimately call kvm_release_pfn_clean on the
1488 * returned pfn. This is only needed if the VMA has VM_MIXEDMAP
1489 * set, but the kvm_get_pfn/kvm_release_pfn_clean pair will
1490 * simply do nothing for reserved pfns.
1491 *
1492 * Whoever called remap_pfn_range is also going to call e.g.
1493 * unmap_mapping_range before the underlying pages are freed,
1494 * causing a call to our MMU notifier.
1495 */
1496 kvm_get_pfn(pfn);
1497
1498 *p_pfn = pfn;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001499 return 0;
1500}
1501
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001502/*
1503 * Pin guest page in memory and return its pfn.
1504 * @addr: host virtual address which maps memory to the guest
1505 * @atomic: whether this function can sleep
1506 * @async: whether this function need to wait IO complete if the
1507 * host page is not in the memory
1508 * @write_fault: whether we should get a writable host page
1509 * @writable: whether it allows to map a writable host page for !@write_fault
1510 *
1511 * The function will map a writable host page for these two cases:
1512 * 1): @write_fault = true
1513 * 2): @write_fault = false && @writable, @writable will tell the caller
1514 * whether the mapping is writable.
1515 */
Dan Williamsba049e92016-01-15 16:56:11 -08001516static kvm_pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001517 bool write_fault, bool *writable)
1518{
1519 struct vm_area_struct *vma;
Dan Williamsba049e92016-01-15 16:56:11 -08001520 kvm_pfn_t pfn = 0;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001521 int npages, r;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001522
Gleb Natapovaf585b92010-10-14 11:22:46 +02001523 /* we can do it either atomically or asynchronously, not both */
1524 BUG_ON(atomic && async);
1525
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001526 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1527 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001528
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001529 if (atomic)
1530 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001531
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001532 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1533 if (npages == 1)
1534 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001535
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001536 down_read(&current->mm->mmap_sem);
1537 if (npages == -EHWPOISON ||
1538 (!async && check_user_page_hwpoison(addr))) {
1539 pfn = KVM_PFN_ERR_HWPOISON;
1540 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001541 }
Izik Eidus539cb662007-11-11 22:05:04 +02001542
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001543retry:
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001544 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001545
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001546 if (vma == NULL)
1547 pfn = KVM_PFN_ERR_FAULT;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001548 else if (vma->vm_flags & (VM_IO | VM_PFNMAP)) {
1549 r = hva_to_pfn_remapped(vma, addr, async, write_fault, &pfn);
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001550 if (r == -EAGAIN)
1551 goto retry;
Paolo Bonzini92176a82016-06-07 16:22:47 +02001552 if (r < 0)
1553 pfn = KVM_PFN_ERR_FAULT;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001554 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001555 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001556 *async = true;
1557 pfn = KVM_PFN_ERR_FAULT;
1558 }
1559exit:
1560 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001561 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001562}
1563
Dan Williamsba049e92016-01-15 16:56:11 -08001564kvm_pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn,
1565 bool atomic, bool *async, bool write_fault,
1566 bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001567{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001568 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1569
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001570 if (addr == KVM_HVA_ERR_RO_BAD) {
1571 if (writable)
1572 *writable = false;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001573 return KVM_PFN_ERR_RO_FAULT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001574 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001575
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001576 if (kvm_is_error_hva(addr)) {
1577 if (writable)
1578 *writable = false;
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001579 return KVM_PFN_NOSLOT;
Paolo Bonzinib2740d32016-02-23 15:36:01 +01001580 }
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001581
1582 /* Do not map writable pfn in the readonly memslot. */
1583 if (writable && memslot_is_readonly(slot)) {
1584 *writable = false;
1585 writable = NULL;
1586 }
1587
1588 return hva_to_pfn(addr, atomic, async, write_fault,
1589 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001590}
Paolo Bonzini35204692015-04-02 11:20:48 +02001591EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001592
Dan Williamsba049e92016-01-15 16:56:11 -08001593kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001594 bool *writable)
1595{
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001596 return __gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn, false, NULL,
1597 write_fault, writable);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001598}
1599EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1600
Dan Williamsba049e92016-01-15 16:56:11 -08001601kvm_pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001602{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001603 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001604}
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001605EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001606
Dan Williamsba049e92016-01-15 16:56:11 -08001607kvm_pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001608{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001609 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001610}
1611EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1612
Dan Williamsba049e92016-01-15 16:56:11 -08001613kvm_pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001614{
1615 return gfn_to_pfn_memslot_atomic(gfn_to_memslot(kvm, gfn), gfn);
1616}
1617EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1618
Dan Williamsba049e92016-01-15 16:56:11 -08001619kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001620{
1621 return gfn_to_pfn_memslot_atomic(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1622}
1623EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn_atomic);
1624
Dan Williamsba049e92016-01-15 16:56:11 -08001625kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001626{
1627 return gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn);
1628}
1629EXPORT_SYMBOL_GPL(gfn_to_pfn);
1630
Dan Williamsba049e92016-01-15 16:56:11 -08001631kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn)
Paolo Bonzini8e734852015-05-17 13:58:53 +02001632{
1633 return gfn_to_pfn_memslot(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1634}
1635EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn);
1636
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001637int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1638 struct page **pages, int nr_pages)
Xiao Guangrong48987782010-08-22 19:11:43 +08001639{
1640 unsigned long addr;
1641 gfn_t entry;
1642
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001643 addr = gfn_to_hva_many(slot, gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001644 if (kvm_is_error_hva(addr))
1645 return -1;
1646
1647 if (entry < nr_pages)
1648 return 0;
1649
1650 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1651}
1652EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1653
Dan Williamsba049e92016-01-15 16:56:11 -08001654static struct page *kvm_pfn_to_page(kvm_pfn_t pfn)
Xiao Guangronga2766322012-07-26 11:58:59 +08001655{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001656 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001657 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001658
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001659 if (kvm_is_reserved_pfn(pfn)) {
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001660 WARN_ON(1);
1661 return KVM_ERR_PTR_BAD_PAGE;
1662 }
1663
Xiao Guangronga2766322012-07-26 11:58:59 +08001664 return pfn_to_page(pfn);
1665}
1666
Anthony Liguori35149e22008-04-02 14:46:56 -05001667struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1668{
Dan Williamsba049e92016-01-15 16:56:11 -08001669 kvm_pfn_t pfn;
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001670
1671 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001672
Xiao Guangronga2766322012-07-26 11:58:59 +08001673 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001674}
1675EXPORT_SYMBOL_GPL(gfn_to_page);
1676
Paolo Bonzini8e734852015-05-17 13:58:53 +02001677struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn)
1678{
Dan Williamsba049e92016-01-15 16:56:11 -08001679 kvm_pfn_t pfn;
Paolo Bonzini8e734852015-05-17 13:58:53 +02001680
1681 pfn = kvm_vcpu_gfn_to_pfn(vcpu, gfn);
1682
1683 return kvm_pfn_to_page(pfn);
1684}
1685EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_page);
1686
Izik Eidusb4231d62007-11-20 11:49:33 +02001687void kvm_release_page_clean(struct page *page)
1688{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001689 WARN_ON(is_error_page(page));
1690
Anthony Liguori35149e22008-04-02 14:46:56 -05001691 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001692}
1693EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1694
Dan Williamsba049e92016-01-15 16:56:11 -08001695void kvm_release_pfn_clean(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001696{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001697 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001698 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001699}
1700EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1701
Izik Eidusb4231d62007-11-20 11:49:33 +02001702void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001703{
Xiao Guangronga2766322012-07-26 11:58:59 +08001704 WARN_ON(is_error_page(page));
1705
Anthony Liguori35149e22008-04-02 14:46:56 -05001706 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001707}
Izik Eidusb4231d62007-11-20 11:49:33 +02001708EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001709
Dan Williamsba049e92016-01-15 16:56:11 -08001710static void kvm_release_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001711{
1712 kvm_set_pfn_dirty(pfn);
1713 kvm_release_pfn_clean(pfn);
1714}
Anthony Liguori35149e22008-04-02 14:46:56 -05001715
Dan Williamsba049e92016-01-15 16:56:11 -08001716void kvm_set_pfn_dirty(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001717{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001718 if (!kvm_is_reserved_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001719 struct page *page = pfn_to_page(pfn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08001720
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001721 if (!PageReserved(page))
1722 SetPageDirty(page);
1723 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001724}
1725EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1726
Dan Williamsba049e92016-01-15 16:56:11 -08001727void kvm_set_pfn_accessed(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001728{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001729 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001730 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001731}
1732EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1733
Dan Williamsba049e92016-01-15 16:56:11 -08001734void kvm_get_pfn(kvm_pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001735{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001736 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001737 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001738}
1739EXPORT_SYMBOL_GPL(kvm_get_pfn);
1740
Izik Eidus195aefd2007-10-01 22:14:18 +02001741static int next_segment(unsigned long len, int offset)
1742{
1743 if (len > PAGE_SIZE - offset)
1744 return PAGE_SIZE - offset;
1745 else
1746 return len;
1747}
1748
Paolo Bonzini8e734852015-05-17 13:58:53 +02001749static int __kvm_read_guest_page(struct kvm_memory_slot *slot, gfn_t gfn,
1750 void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001751{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001752 int r;
1753 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001754
Paolo Bonzini8e734852015-05-17 13:58:53 +02001755 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001756 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001757 return -EFAULT;
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001758 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001759 if (r)
1760 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001761 return 0;
1762}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001763
1764int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1765 int len)
1766{
1767 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1768
1769 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1770}
Izik Eidus195aefd2007-10-01 22:14:18 +02001771EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1772
Paolo Bonzini8e734852015-05-17 13:58:53 +02001773int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data,
1774 int offset, int len)
1775{
1776 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1777
1778 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1779}
1780EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_page);
1781
Izik Eidus195aefd2007-10-01 22:14:18 +02001782int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1783{
1784 gfn_t gfn = gpa >> PAGE_SHIFT;
1785 int seg;
1786 int offset = offset_in_page(gpa);
1787 int ret;
1788
1789 while ((seg = next_segment(len, offset)) != 0) {
1790 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1791 if (ret < 0)
1792 return ret;
1793 offset = 0;
1794 len -= seg;
1795 data += seg;
1796 ++gfn;
1797 }
1798 return 0;
1799}
1800EXPORT_SYMBOL_GPL(kvm_read_guest);
1801
Paolo Bonzini8e734852015-05-17 13:58:53 +02001802int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned long len)
1803{
1804 gfn_t gfn = gpa >> PAGE_SHIFT;
1805 int seg;
1806 int offset = offset_in_page(gpa);
1807 int ret;
1808
1809 while ((seg = next_segment(len, offset)) != 0) {
1810 ret = kvm_vcpu_read_guest_page(vcpu, gfn, data, offset, seg);
1811 if (ret < 0)
1812 return ret;
1813 offset = 0;
1814 len -= seg;
1815 data += seg;
1816 ++gfn;
1817 }
1818 return 0;
1819}
1820EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest);
1821
1822static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1823 void *data, int offset, unsigned long len)
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001824{
1825 int r;
1826 unsigned long addr;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001827
Paolo Bonzini8e734852015-05-17 13:58:53 +02001828 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001829 if (kvm_is_error_hva(addr))
1830 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001831 pagefault_disable();
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001832 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001833 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001834 if (r)
1835 return -EFAULT;
1836 return 0;
1837}
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001838
Paolo Bonzini8e734852015-05-17 13:58:53 +02001839int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1840 unsigned long len)
1841{
1842 gfn_t gfn = gpa >> PAGE_SHIFT;
1843 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1844 int offset = offset_in_page(gpa);
1845
1846 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1847}
1848EXPORT_SYMBOL_GPL(kvm_read_guest_atomic);
1849
1850int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa,
1851 void *data, unsigned long len)
1852{
1853 gfn_t gfn = gpa >> PAGE_SHIFT;
1854 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1855 int offset = offset_in_page(gpa);
1856
1857 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1858}
1859EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic);
1860
1861static int __kvm_write_guest_page(struct kvm_memory_slot *memslot, gfn_t gfn,
1862 const void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001863{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001864 int r;
1865 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001866
Radim Krčmář251eb842015-04-10 21:47:27 +02001867 addr = gfn_to_hva_memslot(memslot, gfn);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001868 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001869 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001870 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001871 if (r)
1872 return -EFAULT;
Paolo Bonzinibc009e42015-05-26 12:43:41 +02001873 mark_page_dirty_in_slot(memslot, gfn);
Izik Eidus195aefd2007-10-01 22:14:18 +02001874 return 0;
1875}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001876
1877int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn,
1878 const void *data, int offset, int len)
1879{
1880 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1881
1882 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1883}
Izik Eidus195aefd2007-10-01 22:14:18 +02001884EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1885
Paolo Bonzini8e734852015-05-17 13:58:53 +02001886int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
1887 const void *data, int offset, int len)
1888{
1889 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1890
1891 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1892}
1893EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_page);
1894
Izik Eidus195aefd2007-10-01 22:14:18 +02001895int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1896 unsigned long len)
1897{
1898 gfn_t gfn = gpa >> PAGE_SHIFT;
1899 int seg;
1900 int offset = offset_in_page(gpa);
1901 int ret;
1902
1903 while ((seg = next_segment(len, offset)) != 0) {
1904 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1905 if (ret < 0)
1906 return ret;
1907 offset = 0;
1908 len -= seg;
1909 data += seg;
1910 ++gfn;
1911 }
1912 return 0;
1913}
Wincy Vanff651cb2014-12-11 08:52:58 +03001914EXPORT_SYMBOL_GPL(kvm_write_guest);
Izik Eidus195aefd2007-10-01 22:14:18 +02001915
Paolo Bonzini8e734852015-05-17 13:58:53 +02001916int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
1917 unsigned long len)
1918{
1919 gfn_t gfn = gpa >> PAGE_SHIFT;
1920 int seg;
1921 int offset = offset_in_page(gpa);
1922 int ret;
1923
1924 while ((seg = next_segment(len, offset)) != 0) {
1925 ret = kvm_vcpu_write_guest_page(vcpu, gfn, data, offset, seg);
1926 if (ret < 0)
1927 return ret;
1928 offset = 0;
1929 len -= seg;
1930 data += seg;
1931 ++gfn;
1932 }
1933 return 0;
1934}
1935EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest);
1936
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001937static int __kvm_gfn_to_hva_cache_init(struct kvm_memslots *slots,
1938 struct gfn_to_hva_cache *ghc,
1939 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001940{
Gleb Natapov49c77542010-10-18 15:22:23 +02001941 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07001942 gfn_t start_gfn = gpa >> PAGE_SHIFT;
1943 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
1944 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
1945 gfn_t nr_pages_avail;
Gleb Natapov49c77542010-10-18 15:22:23 +02001946
1947 ghc->gpa = gpa;
1948 ghc->generation = slots->generation;
Andrew Honig8f964522013-03-29 09:35:21 -07001949 ghc->len = len;
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001950 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
Radim Krčmářca3f0872015-04-08 14:16:48 +02001951 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, NULL);
1952 if (!kvm_is_error_hva(ghc->hva) && nr_pages_needed <= 1) {
Gleb Natapov49c77542010-10-18 15:22:23 +02001953 ghc->hva += offset;
Andrew Honig8f964522013-03-29 09:35:21 -07001954 } else {
1955 /*
1956 * If the requested region crosses two memslots, we still
1957 * verify that the entire region is valid here.
1958 */
1959 while (start_gfn <= end_gfn) {
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001960 ghc->memslot = __gfn_to_memslot(slots, start_gfn);
Andrew Honig8f964522013-03-29 09:35:21 -07001961 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
1962 &nr_pages_avail);
1963 if (kvm_is_error_hva(ghc->hva))
1964 return -EFAULT;
1965 start_gfn += nr_pages_avail;
1966 }
1967 /* Use the slow path for cross page reads and writes. */
1968 ghc->memslot = NULL;
1969 }
Gleb Natapov49c77542010-10-18 15:22:23 +02001970 return 0;
1971}
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001972
Cao, Leibbd64112017-02-03 20:04:35 +00001973int kvm_vcpu_gfn_to_hva_cache_init(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001974 gpa_t gpa, unsigned long len)
1975{
Cao, Leibbd64112017-02-03 20:04:35 +00001976 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001977 return __kvm_gfn_to_hva_cache_init(slots, ghc, gpa, len);
1978}
Cao, Leibbd64112017-02-03 20:04:35 +00001979EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva_cache_init);
Gleb Natapov49c77542010-10-18 15:22:23 +02001980
Cao, Leibbd64112017-02-03 20:04:35 +00001981int kvm_vcpu_write_guest_offset_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
1982 void *data, int offset, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001983{
Cao, Leibbd64112017-02-03 20:04:35 +00001984 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Gleb Natapov49c77542010-10-18 15:22:23 +02001985 int r;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001986 gpa_t gpa = ghc->gpa + offset;
Gleb Natapov49c77542010-10-18 15:22:23 +02001987
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001988 BUG_ON(len + offset > ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07001989
Gleb Natapov49c77542010-10-18 15:22:23 +02001990 if (slots->generation != ghc->generation)
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08001991 __kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07001992
1993 if (unlikely(!ghc->memslot))
Cao, Leibbd64112017-02-03 20:04:35 +00001994 return kvm_vcpu_write_guest(vcpu, gpa, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001995
1996 if (kvm_is_error_hva(ghc->hva))
1997 return -EFAULT;
1998
Pan Xinhui4ec6e862016-11-02 05:08:34 -04001999 r = __copy_to_user((void __user *)ghc->hva + offset, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02002000 if (r)
2001 return -EFAULT;
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002002 mark_page_dirty_in_slot(ghc->memslot, gpa >> PAGE_SHIFT);
Gleb Natapov49c77542010-10-18 15:22:23 +02002003
2004 return 0;
2005}
Cao, Leibbd64112017-02-03 20:04:35 +00002006EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_offset_cached);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002007
Cao, Leibbd64112017-02-03 20:04:35 +00002008int kvm_vcpu_write_guest_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
2009 void *data, unsigned long len)
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002010{
Cao, Leibbd64112017-02-03 20:04:35 +00002011 return kvm_vcpu_write_guest_offset_cached(vcpu, ghc, data, 0, len);
Pan Xinhui4ec6e862016-11-02 05:08:34 -04002012}
Cao, Leibbd64112017-02-03 20:04:35 +00002013EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_cached);
Gleb Natapov49c77542010-10-18 15:22:23 +02002014
Cao, Leibbd64112017-02-03 20:04:35 +00002015int kvm_vcpu_read_guest_cached(struct kvm_vcpu *vcpu, struct gfn_to_hva_cache *ghc,
2016 void *data, unsigned long len)
Gleb Natapove03b6442011-07-11 15:28:11 -04002017{
Cao, Leibbd64112017-02-03 20:04:35 +00002018 struct kvm_memslots *slots = kvm_vcpu_memslots(vcpu);
Gleb Natapove03b6442011-07-11 15:28:11 -04002019 int r;
2020
Andrew Honig8f964522013-03-29 09:35:21 -07002021 BUG_ON(len > ghc->len);
2022
Gleb Natapove03b6442011-07-11 15:28:11 -04002023 if (slots->generation != ghc->generation)
Paolo Bonzini5a2d4362017-02-03 20:32:28 -08002024 __kvm_gfn_to_hva_cache_init(slots, ghc, ghc->gpa, ghc->len);
Andrew Honig8f964522013-03-29 09:35:21 -07002025
2026 if (unlikely(!ghc->memslot))
Cao, Leibbd64112017-02-03 20:04:35 +00002027 return kvm_vcpu_read_guest(vcpu, ghc->gpa, data, len);
Gleb Natapove03b6442011-07-11 15:28:11 -04002028
2029 if (kvm_is_error_hva(ghc->hva))
2030 return -EFAULT;
2031
2032 r = __copy_from_user(data, (void __user *)ghc->hva, len);
2033 if (r)
2034 return -EFAULT;
2035
2036 return 0;
2037}
Cao, Leibbd64112017-02-03 20:04:35 +00002038EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_cached);
Gleb Natapove03b6442011-07-11 15:28:11 -04002039
Izik Eidus195aefd2007-10-01 22:14:18 +02002040int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
2041{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01002042 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
2043
2044 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02002045}
2046EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
2047
2048int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
2049{
2050 gfn_t gfn = gpa >> PAGE_SHIFT;
2051 int seg;
2052 int offset = offset_in_page(gpa);
2053 int ret;
2054
Kevin Mulveybfda0e82015-02-20 08:21:36 -05002055 while ((seg = next_segment(len, offset)) != 0) {
Izik Eidus195aefd2007-10-01 22:14:18 +02002056 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
2057 if (ret < 0)
2058 return ret;
2059 offset = 0;
2060 len -= seg;
2061 ++gfn;
2062 }
2063 return 0;
2064}
2065EXPORT_SYMBOL_GPL(kvm_clear_guest);
2066
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002067static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot,
Stephen Hemminger79408762013-12-29 12:12:29 -08002068 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002069{
Rusty Russell7e9d6192007-07-31 20:41:14 +10002070 if (memslot && memslot->dirty_bitmap) {
2071 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002072
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07002073 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002074 }
2075}
2076
Gleb Natapov49c77542010-10-18 15:22:23 +02002077void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
2078{
2079 struct kvm_memory_slot *memslot;
2080
2081 memslot = gfn_to_memslot(kvm, gfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +02002082 mark_page_dirty_in_slot(memslot, gfn);
Gleb Natapov49c77542010-10-18 15:22:23 +02002083}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302084EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02002085
Paolo Bonzini8e734852015-05-17 13:58:53 +02002086void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn)
2087{
2088 struct kvm_memory_slot *memslot;
2089
2090 memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
2091 mark_page_dirty_in_slot(memslot, gfn);
2092}
2093EXPORT_SYMBOL_GPL(kvm_vcpu_mark_page_dirty);
2094
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002095static void grow_halt_poll_ns(struct kvm_vcpu *vcpu)
2096{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002097 unsigned int old, val, grow;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002098
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002099 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002100 grow = READ_ONCE(halt_poll_ns_grow);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002101 /* 10us base */
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002102 if (val == 0 && grow)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002103 val = 10000;
2104 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002105 val *= grow;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002106
David Matlack313f6362016-03-08 16:19:44 -08002107 if (val > halt_poll_ns)
2108 val = halt_poll_ns;
2109
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002110 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002111 trace_kvm_halt_poll_ns_grow(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002112}
2113
2114static void shrink_halt_poll_ns(struct kvm_vcpu *vcpu)
2115{
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002116 unsigned int old, val, shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002117
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002118 old = val = vcpu->halt_poll_ns;
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002119 shrink = READ_ONCE(halt_poll_ns_shrink);
2120 if (shrink == 0)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002121 val = 0;
2122 else
Christian Borntraeger6b6de682016-02-09 13:47:55 +01002123 val /= shrink;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002124
2125 vcpu->halt_poll_ns = val;
Wanpeng Li2cbd7822015-09-03 22:07:39 +08002126 trace_kvm_halt_poll_ns_shrink(vcpu->vcpu_id, val, old);
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002127}
2128
Paolo Bonzinif7819512015-02-04 18:20:58 +01002129static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
2130{
2131 if (kvm_arch_vcpu_runnable(vcpu)) {
2132 kvm_make_request(KVM_REQ_UNHALT, vcpu);
2133 return -EINTR;
2134 }
2135 if (kvm_cpu_has_pending_timer(vcpu))
2136 return -EINTR;
2137 if (signal_pending(current))
2138 return -EINTR;
2139
2140 return 0;
2141}
2142
Eddie Dongb6958ce2007-07-18 12:15:21 +03002143/*
2144 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
2145 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05002146void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03002147{
Paolo Bonzinif7819512015-02-04 18:20:58 +01002148 ktime_t start, cur;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002149 DECLARE_SWAITQUEUE(wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002150 bool waited = false;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002151 u64 block_ns;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002152
2153 start = cur = ktime_get();
Wanpeng Li19020f82015-09-03 22:07:37 +08002154 if (vcpu->halt_poll_ns) {
2155 ktime_t stop = ktime_add_ns(ktime_get(), vcpu->halt_poll_ns);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002156
Paolo Bonzini62bea5b2015-09-15 18:27:57 +02002157 ++vcpu->stat.halt_attempted_poll;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002158 do {
2159 /*
2160 * This sets KVM_REQ_UNHALT if an interrupt
2161 * arrives.
2162 */
2163 if (kvm_vcpu_check_block(vcpu) < 0) {
2164 ++vcpu->stat.halt_successful_poll;
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002165 if (!vcpu_valid_wakeup(vcpu))
2166 ++vcpu->stat.halt_poll_invalid;
Paolo Bonzinif7819512015-02-04 18:20:58 +01002167 goto out;
2168 }
2169 cur = ktime_get();
2170 } while (single_task_running() && ktime_before(cur, stop));
2171 }
Eddie Dongb6958ce2007-07-18 12:15:21 +03002172
Christoffer Dall3217f7c2015-08-27 16:41:15 +02002173 kvm_arch_vcpu_blocking(vcpu);
2174
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002175 for (;;) {
Marcelo Tosatti85773702016-02-19 09:46:39 +01002176 prepare_to_swait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002177
Paolo Bonzinif7819512015-02-04 18:20:58 +01002178 if (kvm_vcpu_check_block(vcpu) < 0)
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03002179 break;
2180
Paolo Bonzinif7819512015-02-04 18:20:58 +01002181 waited = true;
Eddie Dongb6958ce2007-07-18 12:15:21 +03002182 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03002183 }
2184
Marcelo Tosatti85773702016-02-19 09:46:39 +01002185 finish_swait(&vcpu->wq, &wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002186 cur = ktime_get();
2187
Christoffer Dall3217f7c2015-08-27 16:41:15 +02002188 kvm_arch_vcpu_unblocking(vcpu);
Paolo Bonzinif7819512015-02-04 18:20:58 +01002189out:
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002190 block_ns = ktime_to_ns(cur) - ktime_to_ns(start);
2191
Christian Borntraeger2086d322016-05-17 10:49:22 +02002192 if (!vcpu_valid_wakeup(vcpu))
2193 shrink_halt_poll_ns(vcpu);
2194 else if (halt_poll_ns) {
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002195 if (block_ns <= vcpu->halt_poll_ns)
2196 ;
2197 /* we had a long block, shrink polling */
Christian Borntraeger2086d322016-05-17 10:49:22 +02002198 else if (vcpu->halt_poll_ns && block_ns > halt_poll_ns)
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002199 shrink_halt_poll_ns(vcpu);
2200 /* we had a short halt and our poll time is too small */
2201 else if (vcpu->halt_poll_ns < halt_poll_ns &&
2202 block_ns < halt_poll_ns)
2203 grow_halt_poll_ns(vcpu);
Wanpeng Liedb92722015-09-14 17:38:51 +08002204 } else
2205 vcpu->halt_poll_ns = 0;
Wanpeng Liaca6ff22015-09-03 22:07:38 +08002206
Christian Borntraeger3491caf2016-05-13 12:16:35 +02002207 trace_kvm_vcpu_wakeup(block_ns, waited, vcpu_valid_wakeup(vcpu));
2208 kvm_arch_vcpu_block_finish(vcpu);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002209}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05302210EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03002211
Marcelo Tosatti8c847802012-03-14 17:58:48 -03002212#ifndef CONFIG_S390
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002213void kvm_vcpu_wake_up(struct kvm_vcpu *vcpu)
Christoffer Dallb6d33832012-03-08 16:44:24 -05002214{
Marcelo Tosatti85773702016-02-19 09:46:39 +01002215 struct swait_queue_head *wqp;
Christoffer Dallb6d33832012-03-08 16:44:24 -05002216
2217 wqp = kvm_arch_vcpu_wq(vcpu);
Marcelo Tosatti85773702016-02-19 09:46:39 +01002218 if (swait_active(wqp)) {
2219 swake_up(wqp);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002220 ++vcpu->stat.halt_wakeup;
2221 }
2222
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -05002223}
2224EXPORT_SYMBOL_GPL(kvm_vcpu_wake_up);
2225
2226/*
2227 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
2228 */
2229void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
2230{
2231 int me;
2232 int cpu = vcpu->cpu;
2233
2234 kvm_vcpu_wake_up(vcpu);
Christoffer Dallb6d33832012-03-08 16:44:24 -05002235 me = get_cpu();
2236 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
2237 if (kvm_arch_vcpu_should_kick(vcpu))
2238 smp_send_reschedule(cpu);
2239 put_cpu();
2240}
Yang Zhanga20ed542013-04-11 19:25:15 +08002241EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Marcelo Tosatti8c847802012-03-14 17:58:48 -03002242#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05002243
Dan Carpenterfa933842014-05-23 13:20:42 +03002244int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02002245{
2246 struct pid *pid;
2247 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03002248 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002249
2250 rcu_read_lock();
2251 pid = rcu_dereference(target->pid);
2252 if (pid)
Sam Bobroff27fbe64b2014-09-19 09:40:41 +10002253 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002254 rcu_read_unlock();
2255 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302256 return ret;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302257 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002258 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302259
2260 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002261}
2262EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
2263
Raghavendra K T06e48c52012-07-19 15:17:52 +05302264/*
2265 * Helper that checks whether a VCPU is eligible for directed yield.
2266 * Most eligible candidate to yield is decided by following heuristics:
2267 *
2268 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
2269 * (preempted lock holder), indicated by @in_spin_loop.
2270 * Set at the beiginning and cleared at the end of interception/PLE handler.
2271 *
2272 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
2273 * chance last time (mostly it has become eligible now since we have probably
2274 * yielded to lockholder in last iteration. This is done by toggling
2275 * @dy_eligible each time a VCPU checked for eligibility.)
2276 *
2277 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
2278 * to preempted lock-holder could result in wrong VCPU selection and CPU
2279 * burning. Giving priority for a potential lock-holder increases lock
2280 * progress.
2281 *
2282 * Since algorithm is based on heuristics, accessing another VCPU data without
2283 * locking does not harm. It may result in trying to yield to same VCPU, fail
2284 * and continue with next VCPU and so on.
2285 */
Stephen Hemminger79408762013-12-29 12:12:29 -08002286static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05302287{
Scott Wood4a55dd72014-01-09 18:43:16 -06002288#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05302289 bool eligible;
2290
2291 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02002292 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302293
2294 if (vcpu->spin_loop.in_spin_loop)
2295 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
2296
2297 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06002298#else
2299 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302300#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06002301}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302302
Rik van Riel217ece62011-02-01 09:53:28 -05002303void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002304{
Rik van Riel217ece62011-02-01 09:53:28 -05002305 struct kvm *kvm = me->kvm;
2306 struct kvm_vcpu *vcpu;
2307 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
2308 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302309 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05002310 int pass;
2311 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002312
Raghavendra K T4c088492012-07-18 19:07:46 +05302313 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05002314 /*
2315 * We boost the priority of a VCPU that is runnable but not
2316 * currently running, because it got preempted by something
2317 * else and called schedule in __vcpu_run. Hopefully that
2318 * VCPU is holding the lock that we need and will release it.
2319 * We approximate round-robin by starting at the last boosted VCPU.
2320 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302321 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05002322 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04002323 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05002324 i = last_boosted_vcpu;
2325 continue;
2326 } else if (pass && i > last_boosted_vcpu)
2327 break;
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05302328 if (!ACCESS_ONCE(vcpu->preempted))
2329 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05002330 if (vcpu == me)
2331 continue;
Marcelo Tosatti85773702016-02-19 09:46:39 +01002332 if (swait_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05002333 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302334 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
2335 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302336
2337 yielded = kvm_vcpu_yield_to(vcpu);
2338 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05002339 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05002340 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302341 } else if (yielded < 0) {
2342 try--;
2343 if (!try)
2344 break;
Rik van Riel217ece62011-02-01 09:53:28 -05002345 }
Rik van Riel217ece62011-02-01 09:53:28 -05002346 }
2347 }
Raghavendra K T4c088492012-07-18 19:07:46 +05302348 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05302349
2350 /* Ensure vcpu is not eligible during next spinloop */
2351 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002352}
2353EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
2354
Dave Jiang11bac802017-02-24 14:56:41 -08002355static int kvm_vcpu_fault(struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002356{
Dave Jiang11bac802017-02-24 14:56:41 -08002357 struct kvm_vcpu *vcpu = vmf->vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002358 struct page *page;
2359
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002360 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02002361 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02002362#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002363 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002364 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02002365#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002366#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2367 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
2368 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
2369#endif
Avi Kivity039576c2007-03-20 12:46:50 +02002370 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01002371 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002372 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002373 vmf->page = page;
2374 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002375}
2376
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002377static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002378 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002379};
2380
2381static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2382{
2383 vma->vm_ops = &kvm_vcpu_vm_ops;
2384 return 0;
2385}
2386
Avi Kivitybccf2152007-02-21 18:04:26 +02002387static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2388{
2389 struct kvm_vcpu *vcpu = filp->private_data;
2390
Luiz Capitulino45b59392016-09-16 10:27:35 -04002391 debugfs_remove_recursive(vcpu->debugfs_dentry);
Al Viro66c0b392008-04-19 20:33:56 +01002392 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002393 return 0;
2394}
2395
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002396static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02002397 .release = kvm_vcpu_release,
2398 .unlocked_ioctl = kvm_vcpu_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002399#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002400 .compat_ioctl = kvm_vcpu_compat_ioctl,
2401#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002402 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002403 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02002404};
2405
2406/*
2407 * Allocates an inode for the vcpu.
2408 */
2409static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2410{
Yann Droneaud24009b02013-08-24 22:14:07 +02002411 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02002412}
2413
Luiz Capitulino45b59392016-09-16 10:27:35 -04002414static int kvm_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
2415{
2416 char dir_name[ITOA_MAX_LEN * 2];
2417 int ret;
2418
2419 if (!kvm_arch_has_vcpu_debugfs())
2420 return 0;
2421
2422 if (!debugfs_initialized())
2423 return 0;
2424
2425 snprintf(dir_name, sizeof(dir_name), "vcpu%d", vcpu->vcpu_id);
2426 vcpu->debugfs_dentry = debugfs_create_dir(dir_name,
2427 vcpu->kvm->debugfs_dentry);
2428 if (!vcpu->debugfs_dentry)
2429 return -ENOMEM;
2430
2431 ret = kvm_arch_create_vcpu_debugfs(vcpu);
2432 if (ret < 0) {
2433 debugfs_remove_recursive(vcpu->debugfs_dentry);
2434 return ret;
2435 }
2436
2437 return 0;
2438}
2439
Avi Kivityc5ea7662007-02-20 18:41:05 +02002440/*
2441 * Creates some virtual cpus. Good luck creating more than one.
2442 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002443static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02002444{
2445 int r;
David Hildenbrande09fefd2015-11-05 09:03:50 +01002446 struct kvm_vcpu *vcpu;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002447
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002448 if (id >= KVM_MAX_VCPU_ID)
Andy Honig338c7db2013-11-18 16:09:22 -08002449 return -EINVAL;
2450
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002451 mutex_lock(&kvm->lock);
2452 if (kvm->created_vcpus == KVM_MAX_VCPUS) {
2453 mutex_unlock(&kvm->lock);
2454 return -EINVAL;
2455 }
2456
2457 kvm->created_vcpus++;
2458 mutex_unlock(&kvm->lock);
2459
Gleb Natapov73880c82009-06-09 15:56:28 +03002460 vcpu = kvm_arch_vcpu_create(kvm, id);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002461 if (IS_ERR(vcpu)) {
2462 r = PTR_ERR(vcpu);
2463 goto vcpu_decrement;
2464 }
Avi Kivityc5ea7662007-02-20 18:41:05 +02002465
Avi Kivity15ad7142007-07-11 18:17:21 +03002466 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2467
Avi Kivity26e52152007-11-20 15:30:24 +02002468 r = kvm_arch_vcpu_setup(vcpu);
2469 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02002470 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02002471
Luiz Capitulino45b59392016-09-16 10:27:35 -04002472 r = kvm_create_vcpu_debugfs(vcpu);
2473 if (r)
2474 goto vcpu_destroy;
2475
Shaohua Li11ec2802007-07-23 14:51:37 +08002476 mutex_lock(&kvm->lock);
David Hildenbrande09fefd2015-11-05 09:03:50 +01002477 if (kvm_get_vcpu_by_id(kvm, id)) {
2478 r = -EEXIST;
2479 goto unlock_vcpu_destroy;
2480 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002481
2482 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002483
2484 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002485 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002486 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002487 if (r < 0) {
2488 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002489 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002490 }
2491
2492 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
Paolo Bonzinidd489242015-07-29 11:32:20 +02002493
2494 /*
2495 * Pairs with smp_rmb() in kvm_get_vcpu. Write kvm->vcpus
2496 * before kvm->online_vcpu's incremented value.
2497 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002498 smp_wmb();
2499 atomic_inc(&kvm->online_vcpus);
2500
Gleb Natapov73880c82009-06-09 15:56:28 +03002501 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002502 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002503 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002504
Jan Kiszkad7805922011-05-23 10:33:05 +02002505unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002506 mutex_unlock(&kvm->lock);
Luiz Capitulino45b59392016-09-16 10:27:35 -04002507 debugfs_remove_recursive(vcpu->debugfs_dentry);
Jan Kiszkad7805922011-05-23 10:33:05 +02002508vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002509 kvm_arch_vcpu_destroy(vcpu);
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +02002510vcpu_decrement:
2511 mutex_lock(&kvm->lock);
2512 kvm->created_vcpus--;
2513 mutex_unlock(&kvm->lock);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002514 return r;
2515}
2516
Avi Kivity1961d272007-03-05 19:46:05 +02002517static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2518{
2519 if (sigset) {
2520 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2521 vcpu->sigset_active = 1;
2522 vcpu->sigset = *sigset;
2523 } else
2524 vcpu->sigset_active = 0;
2525 return 0;
2526}
2527
Avi Kivitybccf2152007-02-21 18:04:26 +02002528static long kvm_vcpu_ioctl(struct file *filp,
2529 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002530{
Avi Kivitybccf2152007-02-21 18:04:26 +02002531 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002532 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002533 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002534 struct kvm_fpu *fpu = NULL;
2535 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002536
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002537 if (vcpu->kvm->mm != current->mm)
2538 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002539
David Matlack2ea75be2014-09-19 16:03:25 -07002540 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2541 return -EINVAL;
2542
Sanjay Lal2f4d9b52012-11-21 18:34:15 -08002543#if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
Avi Kivity2122ff52010-05-13 11:25:04 +03002544 /*
2545 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
2546 * so vcpu_load() would break it.
2547 */
Jens Freimann47b43c52014-11-11 20:57:06 +01002548 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_S390_IRQ || ioctl == KVM_INTERRUPT)
Avi Kivity2122ff52010-05-13 11:25:04 +03002549 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2550#endif
2551
2552
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002553 r = vcpu_load(vcpu);
2554 if (r)
2555 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002556 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002557 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002558 r = -EINVAL;
2559 if (arg)
2560 goto out;
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002561 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
2562 /* The thread running this VCPU changed. */
2563 struct pid *oldpid = vcpu->pid;
2564 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002565
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002566 rcu_assign_pointer(vcpu->pid, newpid);
2567 if (oldpid)
2568 synchronize_rcu();
2569 put_pid(oldpid);
2570 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002571 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002572 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002573 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002574 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002575 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002576
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002577 r = -ENOMEM;
2578 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2579 if (!kvm_regs)
2580 goto out;
2581 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002582 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002583 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002584 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002585 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2586 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002587 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002588out_free1:
2589 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002590 break;
2591 }
2592 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002593 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002594
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002595 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002596 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2597 if (IS_ERR(kvm_regs)) {
2598 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002599 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002600 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002601 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002602 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002603 break;
2604 }
2605 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002606 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2607 r = -ENOMEM;
2608 if (!kvm_sregs)
2609 goto out;
2610 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002611 if (r)
2612 goto out;
2613 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002614 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002615 goto out;
2616 r = 0;
2617 break;
2618 }
2619 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002620 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2621 if (IS_ERR(kvm_sregs)) {
2622 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002623 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002624 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002625 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002626 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002627 break;
2628 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002629 case KVM_GET_MP_STATE: {
2630 struct kvm_mp_state mp_state;
2631
2632 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2633 if (r)
2634 goto out;
2635 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002636 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002637 goto out;
2638 r = 0;
2639 break;
2640 }
2641 case KVM_SET_MP_STATE: {
2642 struct kvm_mp_state mp_state;
2643
2644 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002645 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002646 goto out;
2647 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002648 break;
2649 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002650 case KVM_TRANSLATE: {
2651 struct kvm_translation tr;
2652
2653 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002654 if (copy_from_user(&tr, argp, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002655 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002656 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002657 if (r)
2658 goto out;
2659 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002660 if (copy_to_user(argp, &tr, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002661 goto out;
2662 r = 0;
2663 break;
2664 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002665 case KVM_SET_GUEST_DEBUG: {
2666 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002667
2668 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002669 if (copy_from_user(&dbg, argp, sizeof(dbg)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002670 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002671 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002672 break;
2673 }
Avi Kivity1961d272007-03-05 19:46:05 +02002674 case KVM_SET_SIGNAL_MASK: {
2675 struct kvm_signal_mask __user *sigmask_arg = argp;
2676 struct kvm_signal_mask kvm_sigmask;
2677 sigset_t sigset, *p;
2678
2679 p = NULL;
2680 if (argp) {
2681 r = -EFAULT;
2682 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002683 sizeof(kvm_sigmask)))
Avi Kivity1961d272007-03-05 19:46:05 +02002684 goto out;
2685 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002686 if (kvm_sigmask.len != sizeof(sigset))
Avi Kivity1961d272007-03-05 19:46:05 +02002687 goto out;
2688 r = -EFAULT;
2689 if (copy_from_user(&sigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002690 sizeof(sigset)))
Avi Kivity1961d272007-03-05 19:46:05 +02002691 goto out;
2692 p = &sigset;
2693 }
Andi Kleen376d41f2010-06-10 13:10:47 +02002694 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02002695 break;
2696 }
Avi Kivityb8836732007-04-01 16:34:31 +03002697 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002698 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2699 r = -ENOMEM;
2700 if (!fpu)
2701 goto out;
2702 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002703 if (r)
2704 goto out;
2705 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002706 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002707 goto out;
2708 r = 0;
2709 break;
2710 }
2711 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002712 fpu = memdup_user(argp, sizeof(*fpu));
2713 if (IS_ERR(fpu)) {
2714 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08002715 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03002716 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002717 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002718 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002719 break;
2720 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002721 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02002722 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002723 }
2724out:
Avi Kivity2122ff52010-05-13 11:25:04 +03002725 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002726 kfree(fpu);
2727 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02002728 return r;
2729}
2730
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002731#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002732static long kvm_vcpu_compat_ioctl(struct file *filp,
2733 unsigned int ioctl, unsigned long arg)
2734{
2735 struct kvm_vcpu *vcpu = filp->private_data;
2736 void __user *argp = compat_ptr(arg);
2737 int r;
2738
2739 if (vcpu->kvm->mm != current->mm)
2740 return -EIO;
2741
2742 switch (ioctl) {
2743 case KVM_SET_SIGNAL_MASK: {
2744 struct kvm_signal_mask __user *sigmask_arg = argp;
2745 struct kvm_signal_mask kvm_sigmask;
2746 compat_sigset_t csigset;
2747 sigset_t sigset;
2748
2749 if (argp) {
2750 r = -EFAULT;
2751 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002752 sizeof(kvm_sigmask)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002753 goto out;
2754 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002755 if (kvm_sigmask.len != sizeof(csigset))
Alexander Graf1dda6062011-06-08 02:45:37 +02002756 goto out;
2757 r = -EFAULT;
2758 if (copy_from_user(&csigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002759 sizeof(csigset)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002760 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01002761 sigset_from_compat(&sigset, &csigset);
2762 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2763 } else
2764 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02002765 break;
2766 }
2767 default:
2768 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2769 }
2770
2771out:
2772 return r;
2773}
2774#endif
2775
Scott Wood852b6d52013-04-12 14:08:42 +00002776static int kvm_device_ioctl_attr(struct kvm_device *dev,
2777 int (*accessor)(struct kvm_device *dev,
2778 struct kvm_device_attr *attr),
2779 unsigned long arg)
2780{
2781 struct kvm_device_attr attr;
2782
2783 if (!accessor)
2784 return -EPERM;
2785
2786 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2787 return -EFAULT;
2788
2789 return accessor(dev, &attr);
2790}
2791
2792static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2793 unsigned long arg)
2794{
2795 struct kvm_device *dev = filp->private_data;
2796
2797 switch (ioctl) {
2798 case KVM_SET_DEVICE_ATTR:
2799 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2800 case KVM_GET_DEVICE_ATTR:
2801 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2802 case KVM_HAS_DEVICE_ATTR:
2803 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2804 default:
2805 if (dev->ops->ioctl)
2806 return dev->ops->ioctl(dev, ioctl, arg);
2807
2808 return -ENOTTY;
2809 }
2810}
2811
Scott Wood852b6d52013-04-12 14:08:42 +00002812static int kvm_device_release(struct inode *inode, struct file *filp)
2813{
2814 struct kvm_device *dev = filp->private_data;
2815 struct kvm *kvm = dev->kvm;
2816
Scott Wood852b6d52013-04-12 14:08:42 +00002817 kvm_put_kvm(kvm);
2818 return 0;
2819}
2820
2821static const struct file_operations kvm_device_fops = {
2822 .unlocked_ioctl = kvm_device_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002823#ifdef CONFIG_KVM_COMPAT
Scott Wooddb6ae612013-04-30 20:00:45 -05002824 .compat_ioctl = kvm_device_ioctl,
2825#endif
Scott Wood852b6d52013-04-12 14:08:42 +00002826 .release = kvm_device_release,
2827};
2828
2829struct kvm_device *kvm_device_from_filp(struct file *filp)
2830{
2831 if (filp->f_op != &kvm_device_fops)
2832 return NULL;
2833
2834 return filp->private_data;
2835}
2836
Will Deacond60eacb2014-09-02 10:27:33 +01002837static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
2838#ifdef CONFIG_KVM_MPIC
2839 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
2840 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
2841#endif
2842
2843#ifdef CONFIG_KVM_XICS
2844 [KVM_DEV_TYPE_XICS] = &kvm_xics_ops,
2845#endif
Will Deacond60eacb2014-09-02 10:27:33 +01002846};
2847
2848int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
2849{
2850 if (type >= ARRAY_SIZE(kvm_device_ops_table))
2851 return -ENOSPC;
2852
2853 if (kvm_device_ops_table[type] != NULL)
2854 return -EEXIST;
2855
2856 kvm_device_ops_table[type] = ops;
2857 return 0;
2858}
2859
Wanpeng Li571ee1b2014-10-09 18:30:08 +08002860void kvm_unregister_device_ops(u32 type)
2861{
2862 if (kvm_device_ops_table[type] != NULL)
2863 kvm_device_ops_table[type] = NULL;
2864}
2865
Scott Wood852b6d52013-04-12 14:08:42 +00002866static int kvm_ioctl_create_device(struct kvm *kvm,
2867 struct kvm_create_device *cd)
2868{
2869 struct kvm_device_ops *ops = NULL;
2870 struct kvm_device *dev;
2871 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2872 int ret;
2873
Will Deacond60eacb2014-09-02 10:27:33 +01002874 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00002875 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01002876
2877 ops = kvm_device_ops_table[cd->type];
2878 if (ops == NULL)
2879 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00002880
2881 if (test)
2882 return 0;
2883
2884 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2885 if (!dev)
2886 return -ENOMEM;
2887
2888 dev->ops = ops;
2889 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00002890
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002891 mutex_lock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002892 ret = ops->create(dev, cd->type);
2893 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002894 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002895 kfree(dev);
2896 return ret;
2897 }
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002898 list_add(&dev->vm_node, &kvm->devices);
2899 mutex_unlock(&kvm->lock);
Scott Wood852b6d52013-04-12 14:08:42 +00002900
Christoffer Dall023e9fd2016-08-09 19:13:00 +02002901 if (ops->init)
2902 ops->init(dev);
2903
Yann Droneaud24009b02013-08-24 22:14:07 +02002904 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00002905 if (ret < 0) {
Christoffer Dalla28ebea2016-08-09 19:13:01 +02002906 mutex_lock(&kvm->lock);
2907 list_del(&dev->vm_node);
2908 mutex_unlock(&kvm->lock);
Dan Carpentera0f1d212016-11-30 22:21:05 +03002909 ops->destroy(dev);
Scott Wood852b6d52013-04-12 14:08:42 +00002910 return ret;
2911 }
2912
2913 kvm_get_kvm(kvm);
2914 cd->fd = ret;
2915 return 0;
2916}
2917
Alexander Graf92b591a2014-07-14 18:33:08 +02002918static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2919{
2920 switch (arg) {
2921 case KVM_CAP_USER_MEMORY:
2922 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2923 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Alexander Graf92b591a2014-07-14 18:33:08 +02002924 case KVM_CAP_INTERNAL_ERROR_DATA:
2925#ifdef CONFIG_HAVE_KVM_MSI
2926 case KVM_CAP_SIGNAL_MSI:
2927#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10002928#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzinidc9be0f2015-03-05 11:54:46 +01002929 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02002930 case KVM_CAP_IRQFD_RESAMPLE:
2931#endif
Jason Wange9ea5062015-09-15 14:41:59 +08002932 case KVM_CAP_IOEVENTFD_ANY_LENGTH:
Alexander Graf92b591a2014-07-14 18:33:08 +02002933 case KVM_CAP_CHECK_EXTENSION_VM:
2934 return 1;
2935#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2936 case KVM_CAP_IRQ_ROUTING:
2937 return KVM_MAX_IRQ_ROUTES;
2938#endif
Paolo Bonzinif481b062015-05-17 17:30:37 +02002939#if KVM_ADDRESS_SPACE_NUM > 1
2940 case KVM_CAP_MULTI_ADDRESS_SPACE:
2941 return KVM_ADDRESS_SPACE_NUM;
2942#endif
Greg Kurz0b1b1df2016-05-09 18:13:37 +02002943 case KVM_CAP_MAX_VCPU_ID:
2944 return KVM_MAX_VCPU_ID;
Alexander Graf92b591a2014-07-14 18:33:08 +02002945 default:
2946 break;
2947 }
2948 return kvm_vm_ioctl_check_extension(kvm, arg);
2949}
2950
Avi Kivitybccf2152007-02-21 18:04:26 +02002951static long kvm_vm_ioctl(struct file *filp,
2952 unsigned int ioctl, unsigned long arg)
2953{
2954 struct kvm *kvm = filp->private_data;
2955 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01002956 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002957
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002958 if (kvm->mm != current->mm)
2959 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002960 switch (ioctl) {
2961 case KVM_CREATE_VCPU:
2962 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002963 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02002964 case KVM_SET_USER_MEMORY_REGION: {
2965 struct kvm_userspace_memory_region kvm_userspace_mem;
2966
2967 r = -EFAULT;
2968 if (copy_from_user(&kvm_userspace_mem, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002969 sizeof(kvm_userspace_mem)))
Izik Eidus6fc138d2007-10-09 19:20:39 +02002970 goto out;
2971
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09002972 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002973 break;
2974 }
2975 case KVM_GET_DIRTY_LOG: {
2976 struct kvm_dirty_log log;
2977
2978 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002979 if (copy_from_user(&log, argp, sizeof(log)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002980 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002981 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002982 break;
2983 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02002984#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2985 case KVM_REGISTER_COALESCED_MMIO: {
2986 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002987
Laurent Vivier5f94c172008-05-30 16:05:54 +02002988 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002989 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002990 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002991 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002992 break;
2993 }
2994 case KVM_UNREGISTER_COALESCED_MMIO: {
2995 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002996
Laurent Vivier5f94c172008-05-30 16:05:54 +02002997 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002998 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002999 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02003000 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02003001 break;
3002 }
3003#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003004 case KVM_IRQFD: {
3005 struct kvm_irqfd data;
3006
3007 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003008 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003009 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06003010 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecbf2009-05-20 10:30:49 -04003011 break;
3012 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003013 case KVM_IOEVENTFD: {
3014 struct kvm_ioeventfd data;
3015
3016 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003017 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04003018 goto out;
3019 r = kvm_ioeventfd(kvm, &data);
3020 break;
3021 }
Jan Kiszka07975ad2012-03-29 21:14:12 +02003022#ifdef CONFIG_HAVE_KVM_MSI
3023 case KVM_SIGNAL_MSI: {
3024 struct kvm_msi msi;
3025
3026 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003027 if (copy_from_user(&msi, argp, sizeof(msi)))
Jan Kiszka07975ad2012-03-29 21:14:12 +02003028 goto out;
3029 r = kvm_send_userspace_msi(kvm, &msi);
3030 break;
3031 }
3032#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003033#ifdef __KVM_HAVE_IRQ_LINE
3034 case KVM_IRQ_LINE_STATUS:
3035 case KVM_IRQ_LINE: {
3036 struct kvm_irq_level irq_event;
3037
3038 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08003039 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003040 goto out;
3041
Yang Zhangaa2fbe62013-04-11 19:21:40 +08003042 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
3043 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003044 if (r)
3045 goto out;
3046
3047 r = -EFAULT;
3048 if (ioctl == KVM_IRQ_LINE_STATUS) {
Xiubo Li893bdbf2015-02-26 14:58:19 +08003049 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04003050 goto out;
3051 }
3052
3053 r = 0;
3054 break;
3055 }
3056#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02003057#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
3058 case KVM_SET_GSI_ROUTING: {
3059 struct kvm_irq_routing routing;
3060 struct kvm_irq_routing __user *urouting;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003061 struct kvm_irq_routing_entry *entries = NULL;
Alexander Grafaa8d5942013-04-15 21:12:53 +02003062
3063 r = -EFAULT;
3064 if (copy_from_user(&routing, argp, sizeof(routing)))
3065 goto out;
3066 r = -EINVAL;
Xiubo Licaf1ff22016-06-15 18:00:33 +08003067 if (routing.nr > KVM_MAX_IRQ_ROUTES)
Alexander Grafaa8d5942013-04-15 21:12:53 +02003068 goto out;
3069 if (routing.flags)
3070 goto out;
Paolo Bonzinif8c1b852016-06-01 14:09:22 +02003071 if (routing.nr) {
3072 r = -ENOMEM;
3073 entries = vmalloc(routing.nr * sizeof(*entries));
3074 if (!entries)
3075 goto out;
3076 r = -EFAULT;
3077 urouting = argp;
3078 if (copy_from_user(entries, urouting->entries,
3079 routing.nr * sizeof(*entries)))
3080 goto out_free_irq_routing;
3081 }
Alexander Grafaa8d5942013-04-15 21:12:53 +02003082 r = kvm_set_irq_routing(kvm, entries, routing.nr,
3083 routing.flags);
Xiubo Lia642a172015-02-26 14:58:20 +08003084out_free_irq_routing:
Alexander Grafaa8d5942013-04-15 21:12:53 +02003085 vfree(entries);
3086 break;
3087 }
3088#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00003089 case KVM_CREATE_DEVICE: {
3090 struct kvm_create_device cd;
3091
3092 r = -EFAULT;
3093 if (copy_from_user(&cd, argp, sizeof(cd)))
3094 goto out;
3095
3096 r = kvm_ioctl_create_device(kvm, &cd);
3097 if (r)
3098 goto out;
3099
3100 r = -EFAULT;
3101 if (copy_to_user(argp, &cd, sizeof(cd)))
3102 goto out;
3103
3104 r = 0;
3105 break;
3106 }
Alexander Graf92b591a2014-07-14 18:33:08 +02003107 case KVM_CHECK_EXTENSION:
3108 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
3109 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02003110 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01003111 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003112 }
3113out:
3114 return r;
3115}
3116
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003117#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003118struct compat_kvm_dirty_log {
3119 __u32 slot;
3120 __u32 padding1;
3121 union {
3122 compat_uptr_t dirty_bitmap; /* one bit per page */
3123 __u64 padding2;
3124 };
3125};
3126
3127static long kvm_vm_compat_ioctl(struct file *filp,
3128 unsigned int ioctl, unsigned long arg)
3129{
3130 struct kvm *kvm = filp->private_data;
3131 int r;
3132
3133 if (kvm->mm != current->mm)
3134 return -EIO;
3135 switch (ioctl) {
3136 case KVM_GET_DIRTY_LOG: {
3137 struct compat_kvm_dirty_log compat_log;
3138 struct kvm_dirty_log log;
3139
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003140 if (copy_from_user(&compat_log, (void __user *)arg,
3141 sizeof(compat_log)))
Markus Elfringf6a3b162017-01-22 11:30:21 +01003142 return -EFAULT;
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003143 log.slot = compat_log.slot;
3144 log.padding1 = compat_log.padding1;
3145 log.padding2 = compat_log.padding2;
3146 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
3147
3148 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003149 break;
3150 }
3151 default:
3152 r = kvm_vm_ioctl(filp, ioctl, arg);
3153 }
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003154 return r;
3155}
3156#endif
3157
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003158static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02003159 .release = kvm_vm_release,
3160 .unlocked_ioctl = kvm_vm_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01003161#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02003162 .compat_ioctl = kvm_vm_compat_ioctl,
3163#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02003164 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02003165};
3166
Carsten Ottee08b9632012-01-04 10:25:20 +01003167static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02003168{
Heiko Carstensaac87632010-10-27 17:22:10 +02003169 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003170 struct kvm *kvm;
Al Viro506cfba2016-07-14 18:54:17 +02003171 struct file *file;
Avi Kivityf17abe92007-02-21 19:28:04 +02003172
Carsten Ottee08b9632012-01-04 10:25:20 +01003173 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04003174 if (IS_ERR(kvm))
3175 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09003176#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
3177 r = kvm_coalesced_mmio_init(kvm);
3178 if (r < 0) {
3179 kvm_put_kvm(kvm);
3180 return r;
3181 }
3182#endif
Al Viro506cfba2016-07-14 18:54:17 +02003183 r = get_unused_fd_flags(O_CLOEXEC);
Janosch Frank536a6f82016-05-18 13:26:23 +02003184 if (r < 0) {
Al Viro66c0b392008-04-19 20:33:56 +01003185 kvm_put_kvm(kvm);
Janosch Frank536a6f82016-05-18 13:26:23 +02003186 return r;
3187 }
Al Viro506cfba2016-07-14 18:54:17 +02003188 file = anon_inode_getfile("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
3189 if (IS_ERR(file)) {
3190 put_unused_fd(r);
3191 kvm_put_kvm(kvm);
3192 return PTR_ERR(file);
3193 }
Janosch Frank536a6f82016-05-18 13:26:23 +02003194
3195 if (kvm_create_vm_debugfs(kvm, r) < 0) {
Al Viro506cfba2016-07-14 18:54:17 +02003196 put_unused_fd(r);
3197 fput(file);
Janosch Frank536a6f82016-05-18 13:26:23 +02003198 return -ENOMEM;
3199 }
Avi Kivityf17abe92007-02-21 19:28:04 +02003200
Al Viro506cfba2016-07-14 18:54:17 +02003201 fd_install(r, file);
Heiko Carstensaac87632010-10-27 17:22:10 +02003202 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003203}
3204
3205static long kvm_dev_ioctl(struct file *filp,
3206 unsigned int ioctl, unsigned long arg)
3207{
Avi Kivity07c45a32007-03-07 13:05:38 +02003208 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02003209
3210 switch (ioctl) {
3211 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02003212 if (arg)
3213 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02003214 r = KVM_API_VERSION;
3215 break;
3216 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01003217 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02003218 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08003219 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02003220 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02003221 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02003222 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02003223 if (arg)
3224 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02003225 r = PAGE_SIZE; /* struct kvm_run */
3226#ifdef CONFIG_X86
3227 r += PAGE_SIZE; /* pio data page */
3228#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02003229#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
3230 r += PAGE_SIZE; /* coalesced mmio ring page */
3231#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02003232 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003233 case KVM_TRACE_ENABLE:
3234 case KVM_TRACE_PAUSE:
3235 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03003236 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04003237 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003238 default:
Carsten Otte043405e2007-10-10 17:16:19 +02003239 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003240 }
3241out:
3242 return r;
3243}
3244
Avi Kivity6aa8b732006-12-10 02:21:36 -08003245static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003246 .unlocked_ioctl = kvm_dev_ioctl,
3247 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003248 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003249};
3250
3251static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02003252 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003253 "kvm",
3254 &kvm_chardev_ops,
3255};
3256
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003257static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003258{
3259 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02003260 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03003261
Rusty Russell7f59f492008-12-07 21:25:45 +10303262 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003263 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02003264
Rusty Russell7f59f492008-12-07 21:25:45 +10303265 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02003266
Radim Krčmář13a34e02014-08-28 15:13:03 +02003267 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02003268
3269 if (r) {
3270 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
3271 atomic_inc(&hardware_enable_failed);
Xiubo Li1170adc2015-02-26 14:58:26 +08003272 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02003273 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03003274}
3275
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003276static int kvm_starting_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003277{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003278 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003279 if (kvm_usage_count)
3280 hardware_enable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003281 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003282 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003283}
3284
3285static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03003286{
3287 int cpu = raw_smp_processor_id();
3288
Rusty Russell7f59f492008-12-07 21:25:45 +10303289 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03003290 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10303291 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02003292 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03003293}
3294
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003295static int kvm_dying_cpu(unsigned int cpu)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003296{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003297 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003298 if (kvm_usage_count)
3299 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003300 raw_spin_unlock(&kvm_count_lock);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003301 return 0;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003302}
3303
Alexander Graf10474ae2009-09-15 11:37:46 +02003304static void hardware_disable_all_nolock(void)
3305{
3306 BUG_ON(!kvm_usage_count);
3307
3308 kvm_usage_count--;
3309 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003310 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003311}
3312
3313static void hardware_disable_all(void)
3314{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003315 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003316 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003317 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003318}
3319
3320static int hardware_enable_all(void)
3321{
3322 int r = 0;
3323
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003324 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003325
3326 kvm_usage_count++;
3327 if (kvm_usage_count == 1) {
3328 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003329 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003330
3331 if (atomic_read(&hardware_enable_failed)) {
3332 hardware_disable_all_nolock();
3333 r = -EBUSY;
3334 }
3335 }
3336
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003337 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003338
3339 return r;
3340}
3341
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003342static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04003343 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003344{
Sheng Yang8e1c1812009-04-29 11:09:04 +08003345 /*
3346 * Some (well, at least mine) BIOSes hang on reboot if
3347 * in vmx root mode.
3348 *
3349 * And Intel TXT required VMX off for all cpu when system shutdown.
3350 */
Xiubo Li1170adc2015-02-26 14:58:26 +08003351 pr_info("kvm: exiting hardware virtualization\n");
Sheng Yang8e1c1812009-04-29 11:09:04 +08003352 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003353 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003354 return NOTIFY_OK;
3355}
3356
3357static struct notifier_block kvm_reboot_notifier = {
3358 .notifier_call = kvm_reboot,
3359 .priority = 0,
3360};
3361
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003362static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003363{
3364 int i;
3365
3366 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03003367 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003368
3369 kvm_iodevice_destructor(pos);
3370 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003371 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003372}
3373
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003374static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
Xiubo Li20e87b72015-02-26 14:58:25 +08003375 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003376{
Jason Wang8f4216c72015-09-15 14:41:57 +08003377 gpa_t addr1 = r1->addr;
3378 gpa_t addr2 = r2->addr;
3379
3380 if (addr1 < addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003381 return -1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003382
3383 /* If r2->len == 0, match the exact address. If r2->len != 0,
3384 * accept any overlapping write. Any order is acceptable for
3385 * overlapping ranges, because kvm_io_bus_get_first_dev ensures
3386 * we process all of them.
3387 */
3388 if (r2->len) {
3389 addr1 += r1->len;
3390 addr2 += r2->len;
3391 }
3392
3393 if (addr1 > addr2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003394 return 1;
Jason Wang8f4216c72015-09-15 14:41:57 +08003395
Sasha Levin743eeb02011-07-27 16:00:48 +03003396 return 0;
3397}
3398
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003399static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
3400{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003401 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003402}
3403
Geoff Levand39369f72013-04-05 19:20:30 +00003404static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
Sasha Levin743eeb02011-07-27 16:00:48 +03003405 gpa_t addr, int len)
3406{
Sasha Levin743eeb02011-07-27 16:00:48 +03003407 bus->range[bus->dev_count++] = (struct kvm_io_range) {
3408 .addr = addr,
3409 .len = len,
3410 .dev = dev,
3411 };
3412
3413 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
3414 kvm_io_bus_sort_cmp, NULL);
3415
3416 return 0;
3417}
3418
Geoff Levand39369f72013-04-05 19:20:30 +00003419static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03003420 gpa_t addr, int len)
3421{
3422 struct kvm_io_range *range, key;
3423 int off;
3424
3425 key = (struct kvm_io_range) {
3426 .addr = addr,
3427 .len = len,
3428 };
3429
3430 range = bsearch(&key, bus->range, bus->dev_count,
3431 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
3432 if (range == NULL)
3433 return -ENOENT;
3434
3435 off = range - bus->range;
3436
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003437 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03003438 off--;
3439
3440 return off;
3441}
3442
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003443static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003444 struct kvm_io_range *range, const void *val)
3445{
3446 int idx;
3447
3448 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3449 if (idx < 0)
3450 return -EOPNOTSUPP;
3451
3452 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003453 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003454 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003455 range->len, val))
3456 return idx;
3457 idx++;
3458 }
3459
3460 return -EOPNOTSUPP;
3461}
3462
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003463/* kvm_io_bus_write - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003464int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003465 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003466{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003467 struct kvm_io_bus *bus;
3468 struct kvm_io_range range;
3469 int r;
3470
3471 range = (struct kvm_io_range) {
3472 .addr = addr,
3473 .len = len,
3474 };
3475
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003476 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3477 r = __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003478 return r < 0 ? r : 0;
3479}
3480
3481/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003482int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3483 gpa_t addr, int len, const void *val, long cookie)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003484{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003485 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03003486 struct kvm_io_range range;
3487
3488 range = (struct kvm_io_range) {
3489 .addr = addr,
3490 .len = len,
3491 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003492
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003493 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003494
3495 /* First try the device referenced by cookie. */
3496 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003497 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003498 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003499 val))
3500 return cookie;
3501
3502 /*
3503 * cookie contained garbage; fall back to search and return the
3504 * correct cookie value.
3505 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003506 return __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003507}
3508
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003509static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3510 struct kvm_io_range *range, void *val)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003511{
3512 int idx;
3513
3514 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003515 if (idx < 0)
3516 return -EOPNOTSUPP;
3517
3518 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003519 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003520 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003521 range->len, val))
3522 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003523 idx++;
3524 }
3525
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003526 return -EOPNOTSUPP;
3527}
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03003528EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003529
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003530/* kvm_io_bus_read - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003531int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003532 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003533{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003534 struct kvm_io_bus *bus;
3535 struct kvm_io_range range;
3536 int r;
3537
3538 range = (struct kvm_io_range) {
3539 .addr = addr,
3540 .len = len,
3541 };
3542
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003543 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3544 r = __kvm_io_bus_read(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003545 return r < 0 ? r : 0;
3546}
3547
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003548
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003549/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003550int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3551 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003552{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003553 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003554
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003555 bus = kvm->buses[bus_idx];
Amos Kong6ea34c92013-05-25 06:44:15 +08003556 /* exclude ioeventfd which is limited by maximum fd */
3557 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003558 return -ENOSPC;
3559
Jason Wangd3febdd2015-08-25 17:05:46 +08003560 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count + 1) *
Amos Konga13007162012-03-09 12:17:32 +08003561 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003562 if (!new_bus)
3563 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08003564 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
3565 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03003566 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003567 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3568 synchronize_srcu_expedited(&kvm->srcu);
3569 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04003570
3571 return 0;
3572}
3573
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003574/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003575int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3576 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003577{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003578 int i, r;
3579 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003580
Sasha Levincdfca7b2011-12-04 19:36:28 +02003581 bus = kvm->buses[bus_idx];
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003582 r = -ENOENT;
Amos Konga13007162012-03-09 12:17:32 +08003583 for (i = 0; i < bus->dev_count; i++)
3584 if (bus->range[i].dev == dev) {
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003585 r = 0;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003586 break;
3587 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003588
Amos Konga13007162012-03-09 12:17:32 +08003589 if (r)
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003590 return r;
Amos Konga13007162012-03-09 12:17:32 +08003591
Jason Wangd3febdd2015-08-25 17:05:46 +08003592 new_bus = kmalloc(sizeof(*bus) + ((bus->dev_count - 1) *
Amos Konga13007162012-03-09 12:17:32 +08003593 sizeof(struct kvm_io_range)), GFP_KERNEL);
3594 if (!new_bus)
3595 return -ENOMEM;
3596
3597 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3598 new_bus->dev_count--;
3599 memcpy(new_bus->range + i, bus->range + i + 1,
3600 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003601
3602 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3603 synchronize_srcu_expedited(&kvm->srcu);
3604 kfree(bus);
3605 return r;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003606}
3607
Andre Przywara8a39d002016-07-15 12:43:26 +01003608struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3609 gpa_t addr)
3610{
3611 struct kvm_io_bus *bus;
3612 int dev_idx, srcu_idx;
3613 struct kvm_io_device *iodev = NULL;
3614
3615 srcu_idx = srcu_read_lock(&kvm->srcu);
3616
3617 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
3618
3619 dev_idx = kvm_io_bus_get_first_dev(bus, addr, 1);
3620 if (dev_idx < 0)
3621 goto out_unlock;
3622
3623 iodev = bus->range[dev_idx].dev;
3624
3625out_unlock:
3626 srcu_read_unlock(&kvm->srcu, srcu_idx);
3627
3628 return iodev;
3629}
3630EXPORT_SYMBOL_GPL(kvm_io_bus_get_dev);
3631
Janosch Frank536a6f82016-05-18 13:26:23 +02003632static int kvm_debugfs_open(struct inode *inode, struct file *file,
3633 int (*get)(void *, u64 *), int (*set)(void *, u64),
3634 const char *fmt)
3635{
3636 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
3637 inode->i_private;
3638
3639 /* The debugfs files are a reference to the kvm struct which
3640 * is still valid when kvm_destroy_vm is called.
3641 * To avoid the race between open and the removal of the debugfs
3642 * directory we test against the users count.
3643 */
Elena Reshetovae3736c32017-02-20 13:06:21 +02003644 if (!refcount_inc_not_zero(&stat_data->kvm->users_count))
Janosch Frank536a6f82016-05-18 13:26:23 +02003645 return -ENOENT;
3646
3647 if (simple_attr_open(inode, file, get, set, fmt)) {
3648 kvm_put_kvm(stat_data->kvm);
3649 return -ENOMEM;
3650 }
3651
3652 return 0;
3653}
3654
3655static int kvm_debugfs_release(struct inode *inode, struct file *file)
3656{
3657 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)
3658 inode->i_private;
3659
3660 simple_attr_release(inode, file);
3661 kvm_put_kvm(stat_data->kvm);
3662
3663 return 0;
3664}
3665
3666static int vm_stat_get_per_vm(void *data, u64 *val)
3667{
3668 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3669
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +10003670 *val = *(ulong *)((void *)stat_data->kvm + stat_data->offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02003671
3672 return 0;
3673}
3674
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003675static int vm_stat_clear_per_vm(void *data, u64 val)
3676{
3677 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3678
3679 if (val)
3680 return -EINVAL;
3681
3682 *(ulong *)((void *)stat_data->kvm + stat_data->offset) = 0;
3683
3684 return 0;
3685}
3686
Janosch Frank536a6f82016-05-18 13:26:23 +02003687static int vm_stat_get_per_vm_open(struct inode *inode, struct file *file)
3688{
3689 __simple_attr_check_format("%llu\n", 0ull);
3690 return kvm_debugfs_open(inode, file, vm_stat_get_per_vm,
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003691 vm_stat_clear_per_vm, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02003692}
3693
3694static const struct file_operations vm_stat_get_per_vm_fops = {
3695 .owner = THIS_MODULE,
3696 .open = vm_stat_get_per_vm_open,
3697 .release = kvm_debugfs_release,
3698 .read = simple_attr_read,
3699 .write = simple_attr_write,
3700 .llseek = generic_file_llseek,
3701};
3702
3703static int vcpu_stat_get_per_vm(void *data, u64 *val)
3704{
3705 int i;
3706 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3707 struct kvm_vcpu *vcpu;
3708
3709 *val = 0;
3710
3711 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +10003712 *val += *(u64 *)((void *)vcpu + stat_data->offset);
Janosch Frank536a6f82016-05-18 13:26:23 +02003713
3714 return 0;
3715}
3716
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003717static int vcpu_stat_clear_per_vm(void *data, u64 val)
3718{
3719 int i;
3720 struct kvm_stat_data *stat_data = (struct kvm_stat_data *)data;
3721 struct kvm_vcpu *vcpu;
3722
3723 if (val)
3724 return -EINVAL;
3725
3726 kvm_for_each_vcpu(i, vcpu, stat_data->kvm)
3727 *(u64 *)((void *)vcpu + stat_data->offset) = 0;
3728
3729 return 0;
3730}
3731
Janosch Frank536a6f82016-05-18 13:26:23 +02003732static int vcpu_stat_get_per_vm_open(struct inode *inode, struct file *file)
3733{
3734 __simple_attr_check_format("%llu\n", 0ull);
3735 return kvm_debugfs_open(inode, file, vcpu_stat_get_per_vm,
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003736 vcpu_stat_clear_per_vm, "%llu\n");
Janosch Frank536a6f82016-05-18 13:26:23 +02003737}
3738
3739static const struct file_operations vcpu_stat_get_per_vm_fops = {
3740 .owner = THIS_MODULE,
3741 .open = vcpu_stat_get_per_vm_open,
3742 .release = kvm_debugfs_release,
3743 .read = simple_attr_read,
3744 .write = simple_attr_write,
3745 .llseek = generic_file_llseek,
3746};
3747
3748static const struct file_operations *stat_fops_per_vm[] = {
3749 [KVM_STAT_VCPU] = &vcpu_stat_get_per_vm_fops,
3750 [KVM_STAT_VM] = &vm_stat_get_per_vm_fops,
3751};
3752
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003753static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02003754{
3755 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02003756 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02003757 struct kvm_stat_data stat_tmp = {.offset = offset};
3758 u64 tmp_val;
Avi Kivityba1389b2007-11-18 16:24:12 +02003759
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003760 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003761 spin_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02003762 list_for_each_entry(kvm, &vm_list, vm_list) {
3763 stat_tmp.kvm = kvm;
3764 vm_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
3765 *val += tmp_val;
3766 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003767 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003768 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02003769}
3770
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003771static int vm_stat_clear(void *_offset, u64 val)
3772{
3773 unsigned offset = (long)_offset;
3774 struct kvm *kvm;
3775 struct kvm_stat_data stat_tmp = {.offset = offset};
3776
3777 if (val)
3778 return -EINVAL;
3779
3780 spin_lock(&kvm_lock);
3781 list_for_each_entry(kvm, &vm_list, vm_list) {
3782 stat_tmp.kvm = kvm;
3783 vm_stat_clear_per_vm((void *)&stat_tmp, 0);
3784 }
3785 spin_unlock(&kvm_lock);
3786
3787 return 0;
3788}
3789
3790DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, vm_stat_clear, "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02003791
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003792static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003793{
3794 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003795 struct kvm *kvm;
Janosch Frank536a6f82016-05-18 13:26:23 +02003796 struct kvm_stat_data stat_tmp = {.offset = offset};
3797 u64 tmp_val;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003798
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003799 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003800 spin_lock(&kvm_lock);
Janosch Frank536a6f82016-05-18 13:26:23 +02003801 list_for_each_entry(kvm, &vm_list, vm_list) {
3802 stat_tmp.kvm = kvm;
3803 vcpu_stat_get_per_vm((void *)&stat_tmp, &tmp_val);
3804 *val += tmp_val;
3805 }
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003806 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003807 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003808}
3809
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003810static int vcpu_stat_clear(void *_offset, u64 val)
3811{
3812 unsigned offset = (long)_offset;
3813 struct kvm *kvm;
3814 struct kvm_stat_data stat_tmp = {.offset = offset};
3815
3816 if (val)
3817 return -EINVAL;
3818
3819 spin_lock(&kvm_lock);
3820 list_for_each_entry(kvm, &vm_list, vm_list) {
3821 stat_tmp.kvm = kvm;
3822 vcpu_stat_clear_per_vm((void *)&stat_tmp, 0);
3823 }
3824 spin_unlock(&kvm_lock);
3825
3826 return 0;
3827}
3828
3829DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, vcpu_stat_clear,
3830 "%llu\n");
Avi Kivityba1389b2007-11-18 16:24:12 +02003831
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003832static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02003833 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3834 [KVM_STAT_VM] = &vm_stat_fops,
3835};
Avi Kivity1165f5f2007-04-19 17:27:43 +03003836
Hamo4f69b682011-12-15 14:23:16 +08003837static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003838{
Paolo Bonzini0c8eb042013-10-30 12:12:13 +01003839 int r = -EEXIST;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003840 struct kvm_stats_debugfs_item *p;
3841
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003842 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08003843 if (kvm_debugfs_dir == NULL)
3844 goto out;
3845
Janosch Frank536a6f82016-05-18 13:26:23 +02003846 kvm_debugfs_num_entries = 0;
3847 for (p = debugfs_entries; p->name; ++p, kvm_debugfs_num_entries++) {
Suraj Jitindar Singhce35ef22016-10-19 13:49:47 +11003848 if (!debugfs_create_file(p->name, 0644, kvm_debugfs_dir,
Janosch Frank4bd33b52015-10-14 12:37:35 +02003849 (void *)(long)p->offset,
3850 stat_fops[p->kind]))
Hamo4f69b682011-12-15 14:23:16 +08003851 goto out_dir;
3852 }
3853
3854 return 0;
3855
3856out_dir:
3857 debugfs_remove_recursive(kvm_debugfs_dir);
3858out:
3859 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003860}
3861
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003862static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003863{
Alexander Graf10474ae2009-09-15 11:37:46 +02003864 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003865 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003866 return 0;
3867}
3868
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003869static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003870{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003871 if (kvm_usage_count) {
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003872 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003873 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003874 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08003875}
3876
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003877static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08003878 .suspend = kvm_suspend,
3879 .resume = kvm_resume,
3880};
3881
Avi Kivity15ad7142007-07-11 18:17:21 +03003882static inline
3883struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3884{
3885 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3886}
3887
3888static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3889{
3890 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08003891
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303892 if (vcpu->preempted)
3893 vcpu->preempted = false;
Avi Kivity15ad7142007-07-11 18:17:21 +03003894
Radim Krčmáře790d9e2014-08-21 18:08:05 +02003895 kvm_arch_sched_in(vcpu, cpu);
3896
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003897 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003898}
3899
3900static void kvm_sched_out(struct preempt_notifier *pn,
3901 struct task_struct *next)
3902{
3903 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3904
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303905 if (current->state == TASK_RUNNING)
3906 vcpu->preempted = true;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003907 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003908}
3909
Avi Kivity0ee75be2010-04-28 15:39:01 +03003910int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10003911 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003912{
3913 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003914 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003915
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003916 r = kvm_arch_init(opaque);
3917 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003918 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003919
Asias He7dac16c2013-05-08 10:57:29 +08003920 /*
3921 * kvm_arch_init makes sure there's at most one caller
3922 * for architectures that support multiple implementations,
3923 * like intel and amd on x86.
Paolo Bonzini36343f62016-10-26 13:35:56 +02003924 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3925 * conflicts in case kvm is already setup for another implementation.
Asias He7dac16c2013-05-08 10:57:29 +08003926 */
Paolo Bonzini36343f62016-10-26 13:35:56 +02003927 r = kvm_irqfd_init();
3928 if (r)
3929 goto out_irqfd;
Asias He7dac16c2013-05-08 10:57:29 +08003930
Avi Kivity8437a6172009-06-06 14:52:35 -07003931 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10303932 r = -ENOMEM;
3933 goto out_free_0;
3934 }
3935
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003936 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003937 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10303938 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003939
Yang, Sheng002c7f72007-07-31 14:23:01 +03003940 for_each_online_cpu(cpu) {
3941 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003942 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02003943 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003944 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003945 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003946 }
3947
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003948 r = cpuhp_setup_state_nocalls(CPUHP_AP_KVM_STARTING, "kvm/cpu:starting",
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00003949 kvm_starting_cpu, kvm_dying_cpu);
Avi Kivity774c47f2007-02-12 00:54:47 -08003950 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003951 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003952 register_reboot_notifier(&kvm_reboot_notifier);
3953
Rusty Russellc16f8622007-07-30 21:12:19 +10003954 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03003955 if (!vcpu_align)
3956 vcpu_align = __alignof__(struct kvm_vcpu);
3957 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08003958 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10003959 if (!kvm_vcpu_cache) {
3960 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003961 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10003962 }
3963
Gleb Natapovaf585b92010-10-14 11:22:46 +02003964 r = kvm_async_pf_init();
3965 if (r)
3966 goto out_free;
3967
Avi Kivity6aa8b732006-12-10 02:21:36 -08003968 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003969 kvm_vm_fops.owner = module;
3970 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003971
3972 r = misc_register(&kvm_dev);
3973 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003974 pr_err("kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02003975 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003976 }
3977
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003978 register_syscore_ops(&kvm_syscore_ops);
3979
Avi Kivity15ad7142007-07-11 18:17:21 +03003980 kvm_preempt_ops.sched_in = kvm_sched_in;
3981 kvm_preempt_ops.sched_out = kvm_sched_out;
3982
Hamo4f69b682011-12-15 14:23:16 +08003983 r = kvm_init_debug();
3984 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003985 pr_err("kvm: create debugfs files failed\n");
Hamo4f69b682011-12-15 14:23:16 +08003986 goto out_undebugfs;
3987 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003988
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02003989 r = kvm_vfio_ops_init();
3990 WARN_ON(r);
3991
Avi Kivityc7addb92007-09-16 18:58:32 +02003992 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003993
Hamo4f69b682011-12-15 14:23:16 +08003994out_undebugfs:
3995 unregister_syscore_ops(&kvm_syscore_ops);
Wei Yongjunafc2f792013-05-05 20:03:40 +08003996 misc_deregister(&kvm_dev);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003997out_unreg:
3998 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003999out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10004000 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004001out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004002 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004003 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004004out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08004005out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004006 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10304007out_free_0a:
4008 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08004009out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004010 kvm_irqfd_exit();
Paolo Bonzini36343f62016-10-26 13:35:56 +02004011out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08004012 kvm_arch_exit();
4013out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08004014 return r;
4015}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004016EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004017
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004018void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004019{
Janosch Frank4bd33b52015-10-14 12:37:35 +02004020 debugfs_remove_recursive(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004021 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10004022 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02004023 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01004024 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004025 unregister_reboot_notifier(&kvm_reboot_notifier);
Thomas Gleixner8c18b2d2016-07-13 17:16:37 +00004026 cpuhp_remove_state_nocalls(CPUHP_AP_KVM_STARTING);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09004027 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08004028 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08004029 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01004030 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10304031 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08004032 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004033}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004034EXPORT_SYMBOL_GPL(kvm_exit);