blob: 848af90b8091a9a3bd8ed7e18d6ace2692210c36 [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>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040035#include <linux/sched.h>
Avi Kivityd9e368d2007-06-07 19:18:30 +030036#include <linux/cpumask.h>
37#include <linux/smp.h>
Avi Kivityd6d28162007-06-28 08:38:16 -040038#include <linux/anon_inodes.h>
Avi Kivity04d2cc72007-09-10 18:10:54 +030039#include <linux/profile.h>
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050040#include <linux/kvm_para.h>
Izik Eidus6fc138d2007-10-09 19:20:39 +020041#include <linux/pagemap.h>
Anthony Liguori8d4e1282007-10-18 09:59:34 -050042#include <linux/mman.h>
Anthony Liguori35149e22008-04-02 14:46:56 -050043#include <linux/swap.h>
Sheng Yange56d5322009-03-12 21:45:39 +080044#include <linux/bitops.h>
Marcelo Tosatti547de292009-05-07 17:55:13 -030045#include <linux/spinlock.h>
Arnd Bergmann6ff58942009-10-22 14:19:27 +020046#include <linux/compat.h>
Marcelo Tosattibc6678a2009-12-23 14:35:21 -020047#include <linux/srcu.h>
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +010048#include <linux/hugetlb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Sasha Levin743eeb02011-07-27 16:00:48 +030050#include <linux/sort.h>
51#include <linux/bsearch.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080052
Avi Kivitye4956062007-06-28 14:15:57 -040053#include <asm/processor.h>
Avi Kivitye4956062007-06-28 14:15:57 -040054#include <asm/io.h>
David Matlack2ea75be2014-09-19 16:03:25 -070055#include <asm/ioctl.h>
Avi Kivitye4956062007-06-28 14:15:57 -040056#include <asm/uaccess.h>
Izik Eidus3e021bf2007-11-19 11:16:57 +020057#include <asm/pgtable.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080058
Laurent Vivier5f94c172008-05-30 16:05:54 +020059#include "coalesced_mmio.h"
Gleb Natapovaf585b92010-10-14 11:22:46 +020060#include "async_pf.h"
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +020061#include "vfio.h"
Laurent Vivier5f94c172008-05-30 16:05:54 +020062
Marcelo Tosatti229456f2009-06-17 09:22:14 -030063#define CREATE_TRACE_POINTS
64#include <trace/events/kvm.h>
65
Avi Kivity6aa8b732006-12-10 02:21:36 -080066MODULE_AUTHOR("Qumranet");
67MODULE_LICENSE("GPL");
68
Christian Borntraeger0fa97782015-02-27 16:50:10 +010069static unsigned int halt_poll_ns;
Paolo Bonzinif7819512015-02-04 18:20:58 +010070module_param(halt_poll_ns, uint, S_IRUGO | S_IWUSR);
71
Marcelo Tosattifa40a822009-06-04 15:08:24 -030072/*
73 * Ordering of locks:
74 *
Xiubo Lib7d409d2015-02-26 14:58:24 +080075 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
Marcelo Tosattifa40a822009-06-04 15:08:24 -030076 */
77
Paolo Bonzini2f303b72013-09-25 13:53:07 +020078DEFINE_SPINLOCK(kvm_lock);
Paolo Bonzini4a937f92013-09-10 12:58:35 +020079static DEFINE_RAW_SPINLOCK(kvm_count_lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080080LIST_HEAD(vm_list);
Avi Kivity133de902007-02-12 00:54:44 -080081
Rusty Russell7f59f492008-12-07 21:25:45 +103082static cpumask_var_t cpus_hardware_enabled;
Xiubo Lif4fee932015-02-26 14:58:21 +080083static int kvm_usage_count;
Alexander Graf10474ae2009-09-15 11:37:46 +020084static atomic_t hardware_enable_failed;
Avi Kivity1b6c0162007-05-24 13:03:52 +030085
Rusty Russellc16f8622007-07-30 21:12:19 +100086struct kmem_cache *kvm_vcpu_cache;
87EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +030088
Avi Kivity15ad7142007-07-11 18:17:21 +030089static __read_mostly struct preempt_ops kvm_preempt_ops;
90
Hollis Blanchard76f7c872008-04-15 16:05:42 -050091struct dentry *kvm_debugfs_dir;
Paul Mackerrase23a8082015-03-28 14:21:01 +110092EXPORT_SYMBOL_GPL(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -080093
Avi Kivitybccf2152007-02-21 18:04:26 +020094static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
95 unsigned long arg);
Christian Borntraegerde8e5d72015-02-03 09:35:15 +010096#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +020097static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
98 unsigned long arg);
99#endif
Alexander Graf10474ae2009-09-15 11:37:46 +0200100static int hardware_enable_all(void);
101static void hardware_disable_all(void);
Avi Kivitybccf2152007-02-21 18:04:26 +0200102
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200103static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
Stephen Hemminger79408762013-12-29 12:12:29 -0800104
105static void kvm_release_pfn_dirty(pfn_t pfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +0200106static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot, gfn_t gfn);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200107
Andi Kleen52480132014-02-08 08:51:57 +0100108__visible bool kvm_rebooting;
Avi Kivityb7c41452010-12-02 17:52:50 +0200109EXPORT_SYMBOL_GPL(kvm_rebooting);
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300110
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300111static bool largepages_enabled = true;
112
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000113bool kvm_is_reserved_pfn(pfn_t pfn)
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300114{
Andrea Arcangeli11feeb42013-07-25 03:04:38 +0200115 if (pfn_valid(pfn))
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000116 return PageReserved(pfn_to_page(pfn));
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300117
118 return true;
119}
120
Avi Kivity6aa8b732006-12-10 02:21:36 -0800121/*
122 * Switches to specified vcpu, until a matching vcpu_put()
123 */
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300124int vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800125{
Avi Kivity15ad7142007-07-11 18:17:21 +0300126 int cpu;
127
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300128 if (mutex_lock_killable(&vcpu->mutex))
129 return -EINTR;
Avi Kivity15ad7142007-07-11 18:17:21 +0300130 cpu = get_cpu();
131 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200132 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300133 put_cpu();
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300134 return 0;
Avi Kivitybccf2152007-02-21 18:04:26 +0200135}
136
Carsten Otte313a3dc2007-10-11 19:16:52 +0200137void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800138{
Avi Kivity15ad7142007-07-11 18:17:21 +0300139 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200140 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300141 preempt_notifier_unregister(&vcpu->preempt_notifier);
142 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800143 mutex_unlock(&vcpu->mutex);
144}
145
Avi Kivityd9e368d2007-06-07 19:18:30 +0300146static void ack_flush(void *_completed)
147{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300148}
149
Tang Chen445b8232014-09-24 15:57:55 +0800150bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300151{
Avi Kivity597a5f52008-07-20 14:24:22 +0300152 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030153 cpumask_var_t cpus;
154 bool called = true;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300155 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300156
Li Zefan79f55992009-06-15 14:58:26 +0800157 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030158
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800159 me = get_cpu();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300160 kvm_for_each_vcpu(i, vcpu, kvm) {
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800161 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300162 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800163
164 /* Set ->requests bit before we read ->mode */
165 smp_mb();
166
167 if (cpus != NULL && cpu != -1 && cpu != me &&
168 kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE)
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030169 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300170 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030171 if (unlikely(cpus == NULL))
172 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
173 else if (!cpumask_empty(cpus))
174 smp_call_function_many(cpus, ack_flush, NULL, 1);
175 else
176 called = false;
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800177 put_cpu();
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030178 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030179 return called;
180}
181
Mario Smarducha6d51012015-01-15 15:58:52 -0800182#ifndef CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL
Rusty Russell49846892008-12-08 20:26:24 +1030183void kvm_flush_remote_tlbs(struct kvm *kvm)
184{
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800185 long dirty_count = kvm->tlbs_dirty;
186
187 smp_mb();
Tang Chen445b8232014-09-24 15:57:55 +0800188 if (kvm_make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
Rusty Russell49846892008-12-08 20:26:24 +1030189 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800190 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300191}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +0530192EXPORT_SYMBOL_GPL(kvm_flush_remote_tlbs);
Mario Smarducha6d51012015-01-15 15:58:52 -0800193#endif
Avi Kivityd9e368d2007-06-07 19:18:30 +0300194
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500195void kvm_reload_remote_mmus(struct kvm *kvm)
196{
Tang Chen445b8232014-09-24 15:57:55 +0800197 kvm_make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500198}
199
Marcelo Tosattid8281992012-11-27 23:29:01 -0200200void kvm_make_mclock_inprogress_request(struct kvm *kvm)
201{
Tang Chen445b8232014-09-24 15:57:55 +0800202 kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS);
Marcelo Tosattid8281992012-11-27 23:29:01 -0200203}
204
Yang Zhang3d81bc72013-04-11 19:25:13 +0800205void kvm_make_scan_ioapic_request(struct kvm *kvm)
Yang Zhangc7c9c562013-01-25 10:18:51 +0800206{
Tang Chen445b8232014-09-24 15:57:55 +0800207 kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800208}
209
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000210int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
211{
212 struct page *page;
213 int r;
214
215 mutex_init(&vcpu->mutex);
216 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000217 vcpu->kvm = kvm;
218 vcpu->vcpu_id = id;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500219 vcpu->pid = NULL;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300220 init_waitqueue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200221 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000222
223 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
224 if (!page) {
225 r = -ENOMEM;
226 goto fail;
227 }
228 vcpu->run = page_address(page);
229
Raghavendra K T4c088492012-07-18 19:07:46 +0530230 kvm_vcpu_set_in_spin_loop(vcpu, false);
231 kvm_vcpu_set_dy_eligible(vcpu, false);
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530232 vcpu->preempted = false;
Raghavendra K T4c088492012-07-18 19:07:46 +0530233
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800234 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000235 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800236 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000237 return 0;
238
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000239fail_free_run:
240 free_page((unsigned long)vcpu->run);
241fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000242 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000243}
244EXPORT_SYMBOL_GPL(kvm_vcpu_init);
245
246void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
247{
Rik van Riel34bb10b2011-02-01 09:52:41 -0500248 put_pid(vcpu->pid);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800249 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000250 free_page((unsigned long)vcpu->run);
251}
252EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
253
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200254#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
255static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
256{
257 return container_of(mn, struct kvm, mmu_notifier);
258}
259
260static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
261 struct mm_struct *mm,
262 unsigned long address)
263{
264 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200265 int need_tlb_flush, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200266
267 /*
268 * When ->invalidate_page runs, the linux pte has been zapped
269 * already but the page is still allocated until
270 * ->invalidate_page returns. So if we increase the sequence
271 * here the kvm page fault will notice if the spte can't be
272 * established because the page is going to be freed. If
273 * instead the kvm page fault establishes the spte before
274 * ->invalidate_page runs, kvm_unmap_hva will release it
275 * before returning.
276 *
277 * The sequence increase only need to be seen at spin_unlock
278 * time, and not at spin_lock time.
279 *
280 * Increasing the sequence after the spin_unlock would be
281 * unsafe because the kvm page fault could then establish the
282 * pte after kvm_unmap_hva returned, without noticing the page
283 * is going to be freed.
284 */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200285 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200286 spin_lock(&kvm->mmu_lock);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900287
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200288 kvm->mmu_notifier_seq++;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800289 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200290 /* we've to flush the tlb before the pages can be freed */
291 if (need_tlb_flush)
292 kvm_flush_remote_tlbs(kvm);
293
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900294 spin_unlock(&kvm->mmu_lock);
Tang Chenfe715572014-09-24 15:57:57 +0800295
296 kvm_arch_mmu_notifier_invalidate_page(kvm, address);
297
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900298 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200299}
300
Izik Eidus3da0dd42009-09-23 21:47:18 +0300301static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
302 struct mm_struct *mm,
303 unsigned long address,
304 pte_t pte)
305{
306 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200307 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300308
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200309 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300310 spin_lock(&kvm->mmu_lock);
311 kvm->mmu_notifier_seq++;
312 kvm_set_spte_hva(kvm, address, pte);
313 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200314 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300315}
316
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200317static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
318 struct mm_struct *mm,
319 unsigned long start,
320 unsigned long end)
321{
322 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200323 int need_tlb_flush = 0, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200324
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200325 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200326 spin_lock(&kvm->mmu_lock);
327 /*
328 * The count increase must become visible at unlock time as no
329 * spte can be established without taking the mmu_lock and
330 * count is also read inside the mmu_lock critical section.
331 */
332 kvm->mmu_notifier_count++;
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +0900333 need_tlb_flush = kvm_unmap_hva_range(kvm, start, end);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800334 need_tlb_flush |= kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200335 /* we've to flush the tlb before the pages can be freed */
336 if (need_tlb_flush)
337 kvm_flush_remote_tlbs(kvm);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900338
339 spin_unlock(&kvm->mmu_lock);
340 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200341}
342
343static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
344 struct mm_struct *mm,
345 unsigned long start,
346 unsigned long end)
347{
348 struct kvm *kvm = mmu_notifier_to_kvm(mn);
349
350 spin_lock(&kvm->mmu_lock);
351 /*
352 * This sequence increase will notify the kvm page fault that
353 * the page that is going to be mapped in the spte could have
354 * been freed.
355 */
356 kvm->mmu_notifier_seq++;
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000357 smp_wmb();
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200358 /*
359 * The above sequence increase must be visible before the
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000360 * below count decrease, which is ensured by the smp_wmb above
361 * in conjunction with the smp_rmb in mmu_notifier_retry().
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200362 */
363 kvm->mmu_notifier_count--;
364 spin_unlock(&kvm->mmu_lock);
365
366 BUG_ON(kvm->mmu_notifier_count < 0);
367}
368
369static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
370 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700371 unsigned long start,
372 unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200373{
374 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200375 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200376
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200377 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200378 spin_lock(&kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200379
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700380 young = kvm_age_hva(kvm, start, end);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200381 if (young)
382 kvm_flush_remote_tlbs(kvm);
383
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900384 spin_unlock(&kvm->mmu_lock);
385 srcu_read_unlock(&kvm->srcu, idx);
386
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200387 return young;
388}
389
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800390static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
391 struct mm_struct *mm,
392 unsigned long address)
393{
394 struct kvm *kvm = mmu_notifier_to_kvm(mn);
395 int young, idx;
396
397 idx = srcu_read_lock(&kvm->srcu);
398 spin_lock(&kvm->mmu_lock);
399 young = kvm_test_age_hva(kvm, address);
400 spin_unlock(&kvm->mmu_lock);
401 srcu_read_unlock(&kvm->srcu, idx);
402
403 return young;
404}
405
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100406static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
407 struct mm_struct *mm)
408{
409 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800410 int idx;
411
412 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300413 kvm_arch_flush_shadow_all(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800414 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100415}
416
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200417static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
418 .invalidate_page = kvm_mmu_notifier_invalidate_page,
419 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
420 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
421 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800422 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300423 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100424 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200425};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200426
427static int kvm_init_mmu_notifier(struct kvm *kvm)
428{
429 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
430 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
431}
432
433#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
434
435static int kvm_init_mmu_notifier(struct kvm *kvm)
436{
437 return 0;
438}
439
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200440#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
441
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200442static struct kvm_memslots *kvm_alloc_memslots(void)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800443{
444 int i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200445 struct kvm_memslots *slots;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800446
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200447 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
448 if (!slots)
449 return NULL;
450
451 /*
452 * Init kvm generation close to the maximum to easily test the
453 * code of handling generation number wrap-around.
454 */
455 slots->generation = -150;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800456 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800457 slots->id_to_index[i] = slots->memslots[i].id = i;
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200458
459 return slots;
460}
461
462static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
463{
464 if (!memslot->dirty_bitmap)
465 return;
466
467 kvfree(memslot->dirty_bitmap);
468 memslot->dirty_bitmap = NULL;
469}
470
471/*
472 * Free any memory in @free but not in @dont.
473 */
474static void kvm_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
475 struct kvm_memory_slot *dont)
476{
477 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
478 kvm_destroy_dirty_bitmap(free);
479
480 kvm_arch_free_memslot(kvm, free, dont);
481
482 free->npages = 0;
483}
484
485static void kvm_free_memslots(struct kvm *kvm, struct kvm_memslots *slots)
486{
487 struct kvm_memory_slot *memslot;
488
489 if (!slots)
490 return;
491
492 kvm_for_each_memslot(memslot, slots)
493 kvm_free_memslot(kvm, memslot, NULL);
494
495 kvfree(slots);
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800496}
497
Carsten Ottee08b9632012-01-04 10:25:20 +0100498static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800499{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100500 int r, i;
501 struct kvm *kvm = kvm_arch_alloc_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800502
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100503 if (!kvm)
504 return ERR_PTR(-ENOMEM);
505
Carsten Ottee08b9632012-01-04 10:25:20 +0100506 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100507 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100508 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200509
510 r = hardware_enable_all();
511 if (r)
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100512 goto out_err_no_disable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200513
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200514#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300515 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200516#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800517
Alex Williamson1e702d92012-12-10 10:33:32 -0700518 BUILD_BUG_ON(KVM_MEM_SLOTS_NUM > SHRT_MAX);
519
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200520 r = -ENOMEM;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200521 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
522 kvm->memslots[i] = kvm_alloc_memslots();
523 if (!kvm->memslots[i])
524 goto out_err_no_srcu;
525 }
Paolo Bonzini00f034a2014-08-20 14:29:21 +0200526
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200527 if (init_srcu_struct(&kvm->srcu))
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100528 goto out_err_no_srcu;
529 if (init_srcu_struct(&kvm->irq_srcu))
530 goto out_err_no_irq_srcu;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200531 for (i = 0; i < KVM_NR_BUSES; i++) {
532 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
533 GFP_KERNEL);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100534 if (!kvm->buses[i])
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200535 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200536 }
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700537
OGAWA Hirofumi85722cd2011-05-11 09:28:28 +0900538 spin_lock_init(&kvm->mmu_lock);
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200539 kvm->mm = current->mm;
540 atomic_inc(&kvm->mm->mm_count);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400541 kvm_eventfd_init(kvm);
Shaohua Li11ec2802007-07-23 14:51:37 +0800542 mutex_init(&kvm->lock);
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300543 mutex_init(&kvm->irq_lock);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200544 mutex_init(&kvm->slots_lock);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300545 atomic_set(&kvm->users_count, 1);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000546 INIT_LIST_HEAD(&kvm->devices);
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700547
548 r = kvm_init_mmu_notifier(kvm);
549 if (r)
550 goto out_err;
551
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200552 spin_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000553 list_add(&kvm->vm_list, &vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200554 spin_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100555
Avi Kivityf17abe92007-02-21 19:28:04 +0200556 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200557
558out_err:
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100559 cleanup_srcu_struct(&kvm->irq_srcu);
560out_err_no_irq_srcu:
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100561 cleanup_srcu_struct(&kvm->srcu);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100562out_err_no_srcu:
Alexander Graf10474ae2009-09-15 11:37:46 +0200563 hardware_disable_all();
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100564out_err_no_disable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200565 for (i = 0; i < KVM_NR_BUSES; i++)
566 kfree(kvm->buses[i]);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200567 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
568 kvm_free_memslots(kvm, kvm->memslots[i]);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100569 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200570 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200571}
572
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900573/*
574 * Avoid using vmalloc for a small buffer.
575 * Should not be used when the size is statically known.
576 */
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900577void *kvm_kvzalloc(unsigned long size)
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900578{
579 if (size > PAGE_SIZE)
580 return vzalloc(size);
581 else
582 return kzalloc(size, GFP_KERNEL);
583}
584
Scott Wood07f0a7b2013-04-25 14:11:23 +0000585static void kvm_destroy_devices(struct kvm *kvm)
586{
587 struct list_head *node, *tmp;
588
589 list_for_each_safe(node, tmp, &kvm->devices) {
590 struct kvm_device *dev =
591 list_entry(node, struct kvm_device, vm_node);
592
593 list_del(node);
594 dev->ops->destroy(dev);
595 }
596}
597
Avi Kivityf17abe92007-02-21 19:28:04 +0200598static void kvm_destroy_vm(struct kvm *kvm)
599{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200600 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200601 struct mm_struct *mm = kvm->mm;
602
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800603 kvm_arch_sync_events(kvm);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200604 spin_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800605 list_del(&kvm->vm_list);
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200606 spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200607 kvm_free_irq_routing(kvm);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200608 for (i = 0; i < KVM_NR_BUSES; i++)
609 kvm_io_bus_destroy(kvm->buses[i]);
Avi Kivity980da6c2009-12-20 15:13:43 +0200610 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200611#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
612 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200613#else
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300614 kvm_arch_flush_shadow_all(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200615#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800616 kvm_arch_destroy_vm(kvm);
Scott Wood07f0a7b2013-04-25 14:11:23 +0000617 kvm_destroy_devices(kvm);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200618 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++)
619 kvm_free_memslots(kvm, kvm->memslots[i]);
Paolo Bonzini820b3fc2014-06-03 13:44:17 +0200620 cleanup_srcu_struct(&kvm->irq_srcu);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100621 cleanup_srcu_struct(&kvm->srcu);
622 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200623 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200624 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200625}
626
Izik Eidusd39f13b2008-03-30 16:01:25 +0300627void kvm_get_kvm(struct kvm *kvm)
628{
629 atomic_inc(&kvm->users_count);
630}
631EXPORT_SYMBOL_GPL(kvm_get_kvm);
632
633void kvm_put_kvm(struct kvm *kvm)
634{
635 if (atomic_dec_and_test(&kvm->users_count))
636 kvm_destroy_vm(kvm);
637}
638EXPORT_SYMBOL_GPL(kvm_put_kvm);
639
640
Avi Kivityf17abe92007-02-21 19:28:04 +0200641static int kvm_vm_release(struct inode *inode, struct file *filp)
642{
643 struct kvm *kvm = filp->private_data;
644
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400645 kvm_irqfd_release(kvm);
646
Izik Eidusd39f13b2008-03-30 16:01:25 +0300647 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800648 return 0;
649}
650
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900651/*
652 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900653 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900654 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900655static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
656{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900657 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900658
Takuya Yoshikawa92eca8f2012-05-20 13:13:28 +0900659 memslot->dirty_bitmap = kvm_kvzalloc(dirty_bytes);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900660 if (!memslot->dirty_bitmap)
661 return -ENOMEM;
662
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900663 return 0;
664}
665
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800666/*
Igor Mammedov0e60b072014-12-01 17:29:26 +0000667 * Insert memslot and re-sort memslots based on their GFN,
668 * so binary search could be used to lookup GFN.
669 * Sorting algorithm takes advantage of having initially
670 * sorted array and known changed memslot position.
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800671 */
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100672static void update_memslots(struct kvm_memslots *slots,
673 struct kvm_memory_slot *new)
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800674{
Paolo Bonzini85931762014-11-14 10:22:07 +0100675 int id = new->id;
676 int i = slots->id_to_index[id];
Igor Mammedov063584d2014-11-13 23:00:13 +0000677 struct kvm_memory_slot *mslots = slots->memslots;
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800678
Paolo Bonzini85931762014-11-14 10:22:07 +0100679 WARN_ON(mslots[i].id != id);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000680 if (!new->npages) {
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100681 WARN_ON(!mslots[i].npages);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000682 if (mslots[i].npages)
683 slots->used_slots--;
684 } else {
685 if (!mslots[i].npages)
686 slots->used_slots++;
687 }
Igor Mammedov0e60b072014-12-01 17:29:26 +0000688
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000689 while (i < KVM_MEM_SLOTS_NUM - 1 &&
Igor Mammedov0e60b072014-12-01 17:29:26 +0000690 new->base_gfn <= mslots[i + 1].base_gfn) {
691 if (!mslots[i + 1].npages)
692 break;
Igor Mammedov7f379cf2014-12-01 17:29:24 +0000693 mslots[i] = mslots[i + 1];
694 slots->id_to_index[mslots[i].id] = i;
695 i++;
696 }
Paolo Bonziniefbeec72014-12-27 18:01:00 +0100697
698 /*
699 * The ">=" is needed when creating a slot with base_gfn == 0,
700 * so that it moves before all those with base_gfn == npages == 0.
701 *
702 * On the other hand, if new->npages is zero, the above loop has
703 * already left i pointing to the beginning of the empty part of
704 * mslots, and the ">=" would move the hole backwards in this
705 * case---which is wrong. So skip the loop when deleting a slot.
706 */
707 if (new->npages) {
708 while (i > 0 &&
709 new->base_gfn >= mslots[i - 1].base_gfn) {
710 mslots[i] = mslots[i - 1];
711 slots->id_to_index[mslots[i].id] = i;
712 i--;
713 }
Paolo Bonzinidbaff302014-12-27 21:08:16 +0100714 } else
715 WARN_ON_ONCE(i != slots->used_slots);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800716
Paolo Bonzini85931762014-11-14 10:22:07 +0100717 mslots[i] = *new;
718 slots->id_to_index[mslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800719}
720
Paolo Bonzini09170a42015-05-18 13:59:39 +0200721static int check_memory_region_flags(const struct kvm_userspace_memory_region *mem)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800722{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800723 u32 valid_flags = KVM_MEM_LOG_DIRTY_PAGES;
724
Christoffer Dall0f8a4de2014-08-26 14:00:37 +0200725#ifdef __KVM_HAVE_READONLY_MEM
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800726 valid_flags |= KVM_MEM_READONLY;
727#endif
728
729 if (mem->flags & ~valid_flags)
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800730 return -EINVAL;
731
732 return 0;
733}
734
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200735static struct kvm_memslots *install_new_memslots(struct kvm *kvm,
Paolo Bonzinif481b062015-05-17 17:30:37 +0200736 int as_id, struct kvm_memslots *slots)
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200737{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200738 struct kvm_memslots *old_memslots = __kvm_memslots(kvm, as_id);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200739
David Matlackee3d1572014-08-18 15:46:06 -0700740 /*
741 * Set the low bit in the generation, which disables SPTE caching
742 * until the end of synchronize_srcu_expedited.
743 */
744 WARN_ON(old_memslots->generation & 1);
745 slots->generation = old_memslots->generation + 1;
746
Paolo Bonzinif481b062015-05-17 17:30:37 +0200747 rcu_assign_pointer(kvm->memslots[as_id], slots);
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200748 synchronize_srcu_expedited(&kvm->srcu);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900749
David Matlackee3d1572014-08-18 15:46:06 -0700750 /*
751 * Increment the new memslot generation a second time. This prevents
752 * vm exits that race with memslot updates from caching a memslot
753 * generation that will (potentially) be valid forever.
754 */
755 slots->generation++;
756
Paolo Bonzini15f46012015-05-17 21:26:08 +0200757 kvm_arch_memslots_updated(kvm, slots);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900758
759 return old_memslots;
Gleb Natapov7ec4fb42012-12-24 17:49:30 +0200760}
761
Avi Kivity6aa8b732006-12-10 02:21:36 -0800762/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800763 * Allocate some memory and give it an address in the guest physical address
764 * space.
765 *
766 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800767 *
Dominik Dingel02d5d552014-10-27 16:22:56 +0100768 * Must be called holding kvm->slots_lock for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800769 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800770int __kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200771 const struct kvm_userspace_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800772{
Avi Kivity8234b222010-12-27 12:08:45 +0200773 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800774 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200775 unsigned long npages;
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900776 struct kvm_memory_slot *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800777 struct kvm_memory_slot old, new;
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700778 struct kvm_memslots *slots = NULL, *old_memslots;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200779 int as_id, id;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900780 enum kvm_mr_change change;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800781
Xiao Guangronga50d64d2012-08-21 10:58:13 +0800782 r = check_memory_region_flags(mem);
783 if (r)
784 goto out;
785
Avi Kivity6aa8b732006-12-10 02:21:36 -0800786 r = -EINVAL;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200787 as_id = mem->slot >> 16;
788 id = (u16)mem->slot;
789
Avi Kivity6aa8b732006-12-10 02:21:36 -0800790 /* General sanity checks */
791 if (mem->memory_size & (PAGE_SIZE - 1))
792 goto out;
793 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
794 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900795 /* We can read the guest memory with __xxx_user() later on. */
Paolo Bonzinif481b062015-05-17 17:30:37 +0200796 if ((id < KVM_USER_MEM_SLOTS) &&
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900797 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +0200798 !access_ok(VERIFY_WRITE,
799 (void __user *)(unsigned long)mem->userspace_addr,
800 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600801 goto out;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200802 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800803 goto out;
804 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
805 goto out;
806
Paolo Bonzinif481b062015-05-17 17:30:37 +0200807 slot = id_to_memslot(__kvm_memslots(kvm, as_id), id);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800808 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
809 npages = mem->memory_size >> PAGE_SHIFT;
810
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900811 if (npages > KVM_MEM_MAX_NR_PAGES)
812 goto out;
813
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900814 new = old = *slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800815
Paolo Bonzinif481b062015-05-17 17:30:37 +0200816 new.id = id;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800817 new.base_gfn = base_gfn;
818 new.npages = npages;
819 new.flags = mem->flags;
820
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900821 if (npages) {
822 if (!old.npages)
823 change = KVM_MR_CREATE;
824 else { /* Modify an existing slot. */
825 if ((mem->userspace_addr != old.userspace_addr) ||
Takuya Yoshikawa75d61fb2013-01-30 19:40:41 +0900826 (npages != old.npages) ||
827 ((new.flags ^ old.flags) & KVM_MEM_READONLY))
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900828 goto out;
829
830 if (base_gfn != old.base_gfn)
831 change = KVM_MR_MOVE;
832 else if (new.flags != old.flags)
833 change = KVM_MR_FLAGS_ONLY;
834 else { /* Nothing to change. */
835 r = 0;
836 goto out;
837 }
838 }
Paolo Bonzini09170a42015-05-18 13:59:39 +0200839 } else {
840 if (!old.npages)
841 goto out;
842
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900843 change = KVM_MR_DELETE;
Paolo Bonzini09170a42015-05-18 13:59:39 +0200844 new.base_gfn = 0;
845 new.flags = 0;
846 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800847
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900848 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900849 /* Check for overlaps */
850 r = -EEXIST;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200851 kvm_for_each_memslot(slot, __kvm_memslots(kvm, as_id)) {
Takuya Yoshikawaa843fac2013-01-11 18:27:43 +0900852 if ((slot->id >= KVM_USER_MEM_SLOTS) ||
Paolo Bonzinif481b062015-05-17 17:30:37 +0200853 (slot->id == id))
Takuya Yoshikawa0a706be2013-01-11 18:26:55 +0900854 continue;
855 if (!((base_gfn + npages <= slot->base_gfn) ||
856 (base_gfn >= slot->base_gfn + slot->npages)))
857 goto out;
858 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800859 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800860
Avi Kivity6aa8b732006-12-10 02:21:36 -0800861 /* Free page dirty bitmap if unneeded */
862 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000863 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800864
865 r = -ENOMEM;
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900866 if (change == KVM_MR_CREATE) {
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900867 new.userspace_addr = mem->userspace_addr;
Takuya Yoshikawad89cc612012-08-01 18:03:28 +0900868
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530869 if (kvm_arch_create_memslot(kvm, &new, npages))
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900870 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800871 }
Joerg Roedelec04b262009-06-19 15:16:23 +0200872
Avi Kivity6aa8b732006-12-10 02:21:36 -0800873 /* Allocate page dirty bitmap if needed */
874 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900875 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800876 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800877 }
878
Igor Mammedov74496132015-03-20 12:21:37 +0000879 slots = kvm_kvzalloc(sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +0100880 if (!slots)
881 goto out_free;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200882 memcpy(slots, __kvm_memslots(kvm, as_id), sizeof(struct kvm_memslots));
Paolo Bonzinif2a81032014-11-14 10:46:45 +0100883
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900884 if ((change == KVM_MR_DELETE) || (change == KVM_MR_MOVE)) {
Paolo Bonzinif481b062015-05-17 17:30:37 +0200885 slot = id_to_memslot(slots, id);
Xiao Guangrong28a37542011-11-24 19:04:35 +0800886 slot->flags |= KVM_MEMSLOT_INVALID;
887
Paolo Bonzinif481b062015-05-17 17:30:37 +0200888 old_memslots = install_new_memslots(kvm, as_id, slots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200889
Alex Williamsone40f1932012-12-10 10:32:57 -0700890 /* slot was deleted or moved, clear iommu mapping */
891 kvm_iommu_unmap_pages(kvm, &old);
Marcelo Tosatti12d6e752012-08-24 15:54:58 -0300892 /* From this point no new shadow pages pointing to a deleted,
893 * or moved, memslot will be created.
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200894 *
895 * validation of sp->gfn happens in:
Xiubo Lib7d409d2015-02-26 14:58:24 +0800896 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
897 * - kvm_is_visible_gfn (mmu_check_roots)
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200898 */
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300899 kvm_arch_flush_shadow_memslot(kvm, slot);
Paolo Bonzinif2a81032014-11-14 10:46:45 +0100900
901 /*
902 * We can re-use the old_memslots from above, the only difference
903 * from the currently installed memslots is the invalid flag. This
904 * will get overwritten by update_memslots anyway.
905 */
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700906 slots = old_memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200907 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300908
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900909 r = kvm_arch_prepare_memory_region(kvm, &new, mem, change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200910 if (r)
Alex Williamsonb7f69c52012-12-10 10:33:03 -0700911 goto out_slots;
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200912
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200913 /* actual memory is freed via old in kvm_free_memslot below */
Takuya Yoshikawaf64c0392013-01-29 11:00:07 +0900914 if (change == KVM_MR_DELETE) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200915 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900916 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200917 }
918
Paolo Bonzini5cc15022014-11-14 10:55:31 +0100919 update_memslots(slots, &new);
Paolo Bonzinif481b062015-05-17 17:30:37 +0200920 old_memslots = install_new_memslots(kvm, as_id, slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800921
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200922 kvm_arch_commit_memory_region(kvm, mem, &old, &new, change);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800923
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200924 kvm_free_memslot(kvm, &old, &new);
Igor Mammedov74496132015-03-20 12:21:37 +0000925 kvfree(old_memslots);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200926
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200927 /*
928 * IOMMU mapping: New slots need to be mapped. Old slots need to be
Avi Kivity6aa8b732006-12-10 02:21:36 -0800929 * un-mapped and re-mapped if their base changes. Since base change
930 * unmapping is handled above with slot deletion, mapping alone is
Sheng Yangf78e0e22007-10-29 09:40:42 +0800931 * needed here. Anything else the iommu might care about for existing
Avi Kivity6aa8b732006-12-10 02:21:36 -0800932 * slots (size changes, userspace addr changes and read-only flag
933 * changes) is disallowed above, so any other attribute changes getting
934 * here can be skipped.
Izik Eidus210c7c42007-10-24 23:52:57 +0200935 */
936 if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
Sheng Yangf78e0e22007-10-29 09:40:42 +0800937 r = kvm_iommu_map_pages(kvm, &new);
Yang Zhange0230e12013-10-24 09:56:39 +0800938 return r;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800939 }
940
Avi Kivity6aa8b732006-12-10 02:21:36 -0800941 return 0;
942
943out_slots:
Igor Mammedov74496132015-03-20 12:21:37 +0000944 kvfree(slots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800945out_free:
Paolo Bonzinia47d2b02015-05-17 11:41:37 +0200946 kvm_free_memslot(kvm, &new, &old);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800947out:
948 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +0200949}
950EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800951
952int kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200953 const struct kvm_userspace_memory_region *mem)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800954{
955 int r;
956
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200957 mutex_lock(&kvm->slots_lock);
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900958 r = __kvm_set_memory_region(kvm, mem);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200959 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800960 return r;
961}
Izik Eidus210c7c42007-10-24 23:52:57 +0200962EXPORT_SYMBOL_GPL(kvm_set_memory_region);
963
Stephen Hemminger79408762013-12-29 12:12:29 -0800964static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
965 struct kvm_userspace_memory_region *mem)
Izik Eidus210c7c42007-10-24 23:52:57 +0200966{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200967 if ((u16)mem->slot >= KVM_USER_MEM_SLOTS)
Izik Eiduse0d62c72007-10-24 23:57:46 +0200968 return -EINVAL;
Paolo Bonzini09170a42015-05-18 13:59:39 +0200969
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900970 return kvm_set_memory_region(kvm, mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800971}
972
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800973int kvm_get_dirty_log(struct kvm *kvm,
974 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800975{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200976 struct kvm_memslots *slots;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800977 struct kvm_memory_slot *memslot;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200978 int r, i, as_id, id;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900979 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800980 unsigned long any = 0;
981
Avi Kivity6aa8b732006-12-10 02:21:36 -0800982 r = -EINVAL;
Paolo Bonzinif481b062015-05-17 17:30:37 +0200983 as_id = log->slot >> 16;
984 id = (u16)log->slot;
985 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800986 goto out;
987
Paolo Bonzinif481b062015-05-17 17:30:37 +0200988 slots = __kvm_memslots(kvm, as_id);
989 memslot = id_to_memslot(slots, id);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800990 r = -ENOENT;
991 if (!memslot->dirty_bitmap)
992 goto out;
993
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900994 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800995
Uri Lublincd1a4a92007-02-22 16:43:09 +0200996 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997 any = memslot->dirty_bitmap[i];
998
999 r = -EFAULT;
1000 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
1001 goto out;
1002
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001003 if (any)
1004 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005
1006 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001007out:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008 return r;
1009}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301010EXPORT_SYMBOL_GPL(kvm_get_dirty_log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001011
Mario Smarduchba0513b2015-01-15 15:58:53 -08001012#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
1013/**
1014 * kvm_get_dirty_log_protect - get a snapshot of dirty pages, and if any pages
1015 * are dirty write protect them for next write.
1016 * @kvm: pointer to kvm instance
1017 * @log: slot id and address to which we copy the log
1018 * @is_dirty: flag set if any page is dirty
1019 *
1020 * We need to keep it in mind that VCPU threads can write to the bitmap
1021 * concurrently. So, to avoid losing track of dirty pages we keep the
1022 * following order:
1023 *
1024 * 1. Take a snapshot of the bit and clear it if needed.
1025 * 2. Write protect the corresponding page.
1026 * 3. Copy the snapshot to the userspace.
1027 * 4. Upon return caller flushes TLB's if needed.
1028 *
1029 * Between 2 and 4, the guest may write to the page using the remaining TLB
1030 * entry. This is not a problem because the page is reported dirty using
1031 * the snapshot taken before and step 4 ensures that writes done after
1032 * exiting to userspace will be logged for the next call.
1033 *
1034 */
1035int kvm_get_dirty_log_protect(struct kvm *kvm,
1036 struct kvm_dirty_log *log, bool *is_dirty)
1037{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001038 struct kvm_memslots *slots;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001039 struct kvm_memory_slot *memslot;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001040 int r, i, as_id, id;
Mario Smarduchba0513b2015-01-15 15:58:53 -08001041 unsigned long n;
1042 unsigned long *dirty_bitmap;
1043 unsigned long *dirty_bitmap_buffer;
1044
1045 r = -EINVAL;
Paolo Bonzinif481b062015-05-17 17:30:37 +02001046 as_id = log->slot >> 16;
1047 id = (u16)log->slot;
1048 if (as_id >= KVM_ADDRESS_SPACE_NUM || id >= KVM_USER_MEM_SLOTS)
Mario Smarduchba0513b2015-01-15 15:58:53 -08001049 goto out;
1050
Paolo Bonzinif481b062015-05-17 17:30:37 +02001051 slots = __kvm_memslots(kvm, as_id);
1052 memslot = id_to_memslot(slots, id);
Mario Smarduchba0513b2015-01-15 15:58:53 -08001053
1054 dirty_bitmap = memslot->dirty_bitmap;
1055 r = -ENOENT;
1056 if (!dirty_bitmap)
1057 goto out;
1058
1059 n = kvm_dirty_bitmap_bytes(memslot);
1060
1061 dirty_bitmap_buffer = dirty_bitmap + n / sizeof(long);
1062 memset(dirty_bitmap_buffer, 0, n);
1063
1064 spin_lock(&kvm->mmu_lock);
1065 *is_dirty = false;
1066 for (i = 0; i < n / sizeof(long); i++) {
1067 unsigned long mask;
1068 gfn_t offset;
1069
1070 if (!dirty_bitmap[i])
1071 continue;
1072
1073 *is_dirty = true;
1074
1075 mask = xchg(&dirty_bitmap[i], 0);
1076 dirty_bitmap_buffer[i] = mask;
1077
Takuya Yoshikawa58d29302015-03-17 16:19:58 +09001078 if (mask) {
1079 offset = i * BITS_PER_LONG;
1080 kvm_arch_mmu_enable_log_dirty_pt_masked(kvm, memslot,
1081 offset, mask);
1082 }
Mario Smarduchba0513b2015-01-15 15:58:53 -08001083 }
1084
1085 spin_unlock(&kvm->mmu_lock);
1086
1087 r = -EFAULT;
1088 if (copy_to_user(log->dirty_bitmap, dirty_bitmap_buffer, n))
1089 goto out;
1090
1091 r = 0;
1092out:
1093 return r;
1094}
1095EXPORT_SYMBOL_GPL(kvm_get_dirty_log_protect);
1096#endif
1097
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09001098bool kvm_largepages_enabled(void)
1099{
1100 return largepages_enabled;
1101}
1102
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001103void kvm_disable_largepages(void)
1104{
1105 largepages_enabled = false;
1106}
1107EXPORT_SYMBOL_GPL(kvm_disable_largepages);
1108
Gleb Natapov49c77542010-10-18 15:22:23 +02001109struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
1110{
1111 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
1112}
Avi Kivitya1f4d3952010-06-21 11:44:20 +03001113EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001114
Paolo Bonzini8e734852015-05-17 13:58:53 +02001115struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn)
1116{
1117 return __gfn_to_memslot(kvm_vcpu_memslots(vcpu), gfn);
1118}
1119
Izik Eiduse0d62c72007-10-24 23:57:46 +02001120int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
1121{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001122 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +02001123
Alex Williamsonbbacc0c2012-12-10 10:33:09 -07001124 if (!memslot || memslot->id >= KVM_USER_MEM_SLOTS ||
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001125 memslot->flags & KVM_MEMSLOT_INVALID)
1126 return 0;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001127
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +08001128 return 1;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001129}
1130EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
1131
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001132unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
1133{
1134 struct vm_area_struct *vma;
1135 unsigned long addr, size;
1136
1137 size = PAGE_SIZE;
1138
1139 addr = gfn_to_hva(kvm, gfn);
1140 if (kvm_is_error_hva(addr))
1141 return PAGE_SIZE;
1142
1143 down_read(&current->mm->mmap_sem);
1144 vma = find_vma(current->mm, addr);
1145 if (!vma)
1146 goto out;
1147
1148 size = vma_kernel_pagesize(vma);
1149
1150out:
1151 up_read(&current->mm->mmap_sem);
1152
1153 return size;
1154}
1155
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001156static bool memslot_is_readonly(struct kvm_memory_slot *slot)
1157{
1158 return slot->flags & KVM_MEM_READONLY;
1159}
1160
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001161static unsigned long __gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1162 gfn_t *nr_pages, bool write)
Izik Eidus539cb662007-11-11 22:05:04 +02001163{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001164 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Xiao Guangrongca3a4902012-08-21 11:01:50 +08001165 return KVM_HVA_ERR_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001166
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001167 if (memslot_is_readonly(slot) && write)
1168 return KVM_HVA_ERR_RO_BAD;
Xiao Guangrong48987782010-08-22 19:11:43 +08001169
1170 if (nr_pages)
1171 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1172
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001173 return __gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001174}
Xiao Guangrong48987782010-08-22 19:11:43 +08001175
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001176static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
1177 gfn_t *nr_pages)
1178{
1179 return __gfn_to_hva_many(slot, gfn, nr_pages, true);
1180}
1181
1182unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001183 gfn_t gfn)
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001184{
1185 return gfn_to_hva_many(slot, gfn, NULL);
1186}
1187EXPORT_SYMBOL_GPL(gfn_to_hva_memslot);
1188
Xiao Guangrong48987782010-08-22 19:11:43 +08001189unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1190{
Gleb Natapov49c77542010-10-18 15:22:23 +02001191 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001192}
Sheng Yang0d150292008-04-25 21:44:50 +08001193EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001194
Paolo Bonzini8e734852015-05-17 13:58:53 +02001195unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn)
1196{
1197 return gfn_to_hva_many(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn, NULL);
1198}
1199EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_hva);
1200
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001201/*
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001202 * If writable is set to false, the hva returned by this function is only
1203 * allowed to be read.
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001204 */
Christoffer Dall64d83122014-08-19 12:15:00 +02001205unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot,
1206 gfn_t gfn, bool *writable)
Gleb Natapov80300892010-10-19 18:13:41 +02001207{
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001208 unsigned long hva = __gfn_to_hva_many(slot, gfn, NULL, false);
1209
1210 if (!kvm_is_error_hva(hva) && writable)
Paolo Bonziniba6a3542013-09-09 13:52:33 +02001211 *writable = !memslot_is_readonly(slot);
1212
Gleb Natapova2ac07f2013-10-01 19:58:36 +03001213 return hva;
Xiao Guangrong86ab8cf2012-08-21 10:59:53 +08001214}
1215
Christoffer Dall64d83122014-08-19 12:15:00 +02001216unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable)
1217{
1218 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1219
1220 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1221}
1222
Paolo Bonzini8e734852015-05-17 13:58:53 +02001223unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable)
1224{
1225 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1226
1227 return gfn_to_hva_memslot_prot(slot, gfn, writable);
1228}
1229
Geoff Levand39369f72013-04-05 19:20:30 +00001230static int get_user_page_nowait(struct task_struct *tsk, struct mm_struct *mm,
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001231 unsigned long start, int write, struct page **page)
1232{
1233 int flags = FOLL_TOUCH | FOLL_NOWAIT | FOLL_HWPOISON | FOLL_GET;
1234
1235 if (write)
1236 flags |= FOLL_WRITE;
1237
1238 return __get_user_pages(tsk, mm, start, 1, flags, page, NULL, NULL);
1239}
1240
Huang Yingfafc3db2011-01-30 11:15:49 +08001241static inline int check_user_page_hwpoison(unsigned long addr)
1242{
1243 int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE;
1244
1245 rc = __get_user_pages(current, current->mm, addr, 1,
1246 flags, NULL, NULL, NULL);
1247 return rc == -EHWPOISON;
1248}
1249
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001250/*
1251 * The atomic path to get the writable pfn which will be stored in @pfn,
1252 * true indicates success, otherwise false is returned.
1253 */
1254static bool hva_to_pfn_fast(unsigned long addr, bool atomic, bool *async,
1255 bool write_fault, bool *writable, pfn_t *pfn)
1256{
1257 struct page *page[1];
1258 int npages;
1259
1260 if (!(async || atomic))
1261 return false;
1262
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001263 /*
1264 * Fast pin a writable pfn only if it is a write fault request
1265 * or the caller allows to map a writable pfn for a read fault
1266 * request.
1267 */
1268 if (!(write_fault || writable))
1269 return false;
1270
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001271 npages = __get_user_pages_fast(addr, 1, 1, page);
1272 if (npages == 1) {
1273 *pfn = page_to_pfn(page[0]);
1274
1275 if (writable)
1276 *writable = true;
1277 return true;
1278 }
1279
1280 return false;
1281}
1282
1283/*
1284 * The slow path to get the pfn of the specified host virtual address,
1285 * 1 indicates success, -errno is returned if error is detected.
1286 */
1287static int hva_to_pfn_slow(unsigned long addr, bool *async, bool write_fault,
1288 bool *writable, pfn_t *pfn)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001289{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001290 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001291 int npages = 0;
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001292
1293 might_sleep();
1294
1295 if (writable)
1296 *writable = write_fault;
1297
1298 if (async) {
1299 down_read(&current->mm->mmap_sem);
1300 npages = get_user_page_nowait(current, current->mm,
1301 addr, write_fault, page);
1302 up_read(&current->mm->mmap_sem);
Andrea Arcangeli0664e572015-02-11 15:27:28 -08001303 } else
1304 npages = __get_user_pages_unlocked(current, current->mm, addr, 1,
1305 write_fault, 0, page,
1306 FOLL_TOUCH|FOLL_HWPOISON);
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001307 if (npages != 1)
1308 return npages;
1309
1310 /* map read fault as writable if possible */
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001311 if (unlikely(!write_fault) && writable) {
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001312 struct page *wpage[1];
1313
1314 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1315 if (npages == 1) {
1316 *writable = true;
1317 put_page(page[0]);
1318 page[0] = wpage[0];
1319 }
1320
1321 npages = 1;
1322 }
1323 *pfn = page_to_pfn(page[0]);
1324 return npages;
1325}
1326
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001327static bool vma_is_valid(struct vm_area_struct *vma, bool write_fault)
1328{
1329 if (unlikely(!(vma->vm_flags & VM_READ)))
1330 return false;
1331
1332 if (write_fault && (unlikely(!(vma->vm_flags & VM_WRITE))))
1333 return false;
1334
1335 return true;
1336}
1337
Xiao Guangrong12ce13f2012-08-21 11:00:49 +08001338/*
1339 * Pin guest page in memory and return its pfn.
1340 * @addr: host virtual address which maps memory to the guest
1341 * @atomic: whether this function can sleep
1342 * @async: whether this function need to wait IO complete if the
1343 * host page is not in the memory
1344 * @write_fault: whether we should get a writable host page
1345 * @writable: whether it allows to map a writable host page for !@write_fault
1346 *
1347 * The function will map a writable host page for these two cases:
1348 * 1): @write_fault = true
1349 * 2): @write_fault = false && @writable, @writable will tell the caller
1350 * whether the mapping is writable.
1351 */
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001352static pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
1353 bool write_fault, bool *writable)
1354{
1355 struct vm_area_struct *vma;
1356 pfn_t pfn = 0;
1357 int npages;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001358
Gleb Natapovaf585b92010-10-14 11:22:46 +02001359 /* we can do it either atomically or asynchronously, not both */
1360 BUG_ON(atomic && async);
1361
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001362 if (hva_to_pfn_fast(addr, atomic, async, write_fault, writable, &pfn))
1363 return pfn;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001364
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001365 if (atomic)
1366 return KVM_PFN_ERR_FAULT;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001367
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001368 npages = hva_to_pfn_slow(addr, async, write_fault, writable, &pfn);
1369 if (npages == 1)
1370 return pfn;
Gleb Natapovaf585b92010-10-14 11:22:46 +02001371
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001372 down_read(&current->mm->mmap_sem);
1373 if (npages == -EHWPOISON ||
1374 (!async && check_user_page_hwpoison(addr))) {
1375 pfn = KVM_PFN_ERR_HWPOISON;
1376 goto exit;
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001377 }
Izik Eidus539cb662007-11-11 22:05:04 +02001378
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001379 vma = find_vma_intersection(current->mm, addr, addr + 1);
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001380
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001381 if (vma == NULL)
1382 pfn = KVM_PFN_ERR_FAULT;
1383 else if ((vma->vm_flags & VM_PFNMAP)) {
1384 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1385 vma->vm_pgoff;
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001386 BUG_ON(!kvm_is_reserved_pfn(pfn));
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001387 } else {
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001388 if (async && vma_is_valid(vma, write_fault))
Xiao Guangrong2fc84312012-08-21 11:00:22 +08001389 *async = true;
1390 pfn = KVM_PFN_ERR_FAULT;
1391 }
1392exit:
1393 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001394 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001395}
1396
Paolo Bonzini35204692015-04-02 11:20:48 +02001397pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, bool atomic,
1398 bool *async, bool write_fault, bool *writable)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001399{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001400 unsigned long addr = __gfn_to_hva_many(slot, gfn, NULL, write_fault);
1401
1402 if (addr == KVM_HVA_ERR_RO_BAD)
1403 return KVM_PFN_ERR_RO_FAULT;
1404
1405 if (kvm_is_error_hva(addr))
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001406 return KVM_PFN_NOSLOT;
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001407
1408 /* Do not map writable pfn in the readonly memslot. */
1409 if (writable && memslot_is_readonly(slot)) {
1410 *writable = false;
1411 writable = NULL;
1412 }
1413
1414 return hva_to_pfn(addr, atomic, async, write_fault,
1415 writable);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001416}
Paolo Bonzini35204692015-04-02 11:20:48 +02001417EXPORT_SYMBOL_GPL(__gfn_to_pfn_memslot);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001418
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001419pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1420 bool *writable)
1421{
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001422 return __gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn, false, NULL,
1423 write_fault, writable);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001424}
1425EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1426
Xiao Guangrongd5661042012-07-17 21:56:16 +08001427pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001428{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001429 return __gfn_to_pfn_memslot(slot, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001430}
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001431EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001432
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001433pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn)
1434{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08001435 return __gfn_to_pfn_memslot(slot, gfn, true, NULL, true, NULL);
Xiao Guangrong037d92d2012-08-21 10:59:12 +08001436}
1437EXPORT_SYMBOL_GPL(gfn_to_pfn_memslot_atomic);
1438
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001439pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1440{
1441 return gfn_to_pfn_memslot_atomic(gfn_to_memslot(kvm, gfn), gfn);
1442}
1443EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1444
Paolo Bonzini8e734852015-05-17 13:58:53 +02001445pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn)
1446{
1447 return gfn_to_pfn_memslot_atomic(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1448}
1449EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn_atomic);
1450
Paolo Bonzinie37afc62015-05-19 16:09:04 +02001451pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1452{
1453 return gfn_to_pfn_memslot(gfn_to_memslot(kvm, gfn), gfn);
1454}
1455EXPORT_SYMBOL_GPL(gfn_to_pfn);
1456
Paolo Bonzini8e734852015-05-17 13:58:53 +02001457pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn)
1458{
1459 return gfn_to_pfn_memslot(kvm_vcpu_gfn_to_memslot(vcpu, gfn), gfn);
1460}
1461EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_pfn);
1462
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001463int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1464 struct page **pages, int nr_pages)
Xiao Guangrong48987782010-08-22 19:11:43 +08001465{
1466 unsigned long addr;
1467 gfn_t entry;
1468
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02001469 addr = gfn_to_hva_many(slot, gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001470 if (kvm_is_error_hva(addr))
1471 return -1;
1472
1473 if (entry < nr_pages)
1474 return 0;
1475
1476 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1477}
1478EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1479
Xiao Guangronga2766322012-07-26 11:58:59 +08001480static struct page *kvm_pfn_to_page(pfn_t pfn)
1481{
Xiao Guangrong81c52c52012-10-16 20:10:59 +08001482 if (is_error_noslot_pfn(pfn))
Xiao Guangrong6cede2e2012-08-03 15:41:22 +08001483 return KVM_ERR_PTR_BAD_PAGE;
Xiao Guangronga2766322012-07-26 11:58:59 +08001484
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001485 if (kvm_is_reserved_pfn(pfn)) {
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08001486 WARN_ON(1);
1487 return KVM_ERR_PTR_BAD_PAGE;
1488 }
1489
Xiao Guangronga2766322012-07-26 11:58:59 +08001490 return pfn_to_page(pfn);
1491}
1492
Anthony Liguori35149e22008-04-02 14:46:56 -05001493struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1494{
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001495 pfn_t pfn;
1496
1497 pfn = gfn_to_pfn(kvm, gfn);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001498
Xiao Guangronga2766322012-07-26 11:58:59 +08001499 return kvm_pfn_to_page(pfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001500}
1501EXPORT_SYMBOL_GPL(gfn_to_page);
1502
Paolo Bonzini8e734852015-05-17 13:58:53 +02001503struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn)
1504{
1505 pfn_t pfn;
1506
1507 pfn = kvm_vcpu_gfn_to_pfn(vcpu, gfn);
1508
1509 return kvm_pfn_to_page(pfn);
1510}
1511EXPORT_SYMBOL_GPL(kvm_vcpu_gfn_to_page);
1512
Izik Eidusb4231d62007-11-20 11:49:33 +02001513void kvm_release_page_clean(struct page *page)
1514{
Xiao Guangrong32cad842012-08-03 15:42:52 +08001515 WARN_ON(is_error_page(page));
1516
Anthony Liguori35149e22008-04-02 14:46:56 -05001517 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001518}
1519EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1520
Anthony Liguori35149e22008-04-02 14:46:56 -05001521void kvm_release_pfn_clean(pfn_t pfn)
1522{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001523 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001524 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001525}
1526EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1527
Izik Eidusb4231d62007-11-20 11:49:33 +02001528void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001529{
Xiao Guangronga2766322012-07-26 11:58:59 +08001530 WARN_ON(is_error_page(page));
1531
Anthony Liguori35149e22008-04-02 14:46:56 -05001532 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001533}
Izik Eidusb4231d62007-11-20 11:49:33 +02001534EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001535
Stephen Hemminger79408762013-12-29 12:12:29 -08001536static void kvm_release_pfn_dirty(pfn_t pfn)
Anthony Liguori35149e22008-04-02 14:46:56 -05001537{
1538 kvm_set_pfn_dirty(pfn);
1539 kvm_release_pfn_clean(pfn);
1540}
Anthony Liguori35149e22008-04-02 14:46:56 -05001541
1542void kvm_set_pfn_dirty(pfn_t pfn)
1543{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001544 if (!kvm_is_reserved_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001545 struct page *page = pfn_to_page(pfn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08001546
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001547 if (!PageReserved(page))
1548 SetPageDirty(page);
1549 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001550}
1551EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1552
1553void kvm_set_pfn_accessed(pfn_t pfn)
1554{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001555 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001556 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001557}
1558EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1559
1560void kvm_get_pfn(pfn_t pfn)
1561{
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00001562 if (!kvm_is_reserved_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001563 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001564}
1565EXPORT_SYMBOL_GPL(kvm_get_pfn);
1566
Izik Eidus195aefd2007-10-01 22:14:18 +02001567static int next_segment(unsigned long len, int offset)
1568{
1569 if (len > PAGE_SIZE - offset)
1570 return PAGE_SIZE - offset;
1571 else
1572 return len;
1573}
1574
Paolo Bonzini8e734852015-05-17 13:58:53 +02001575static int __kvm_read_guest_page(struct kvm_memory_slot *slot, gfn_t gfn,
1576 void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001577{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001578 int r;
1579 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001580
Paolo Bonzini8e734852015-05-17 13:58:53 +02001581 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001582 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001583 return -EFAULT;
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001584 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001585 if (r)
1586 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001587 return 0;
1588}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001589
1590int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1591 int len)
1592{
1593 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1594
1595 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1596}
Izik Eidus195aefd2007-10-01 22:14:18 +02001597EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1598
Paolo Bonzini8e734852015-05-17 13:58:53 +02001599int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data,
1600 int offset, int len)
1601{
1602 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1603
1604 return __kvm_read_guest_page(slot, gfn, data, offset, len);
1605}
1606EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_page);
1607
Izik Eidus195aefd2007-10-01 22:14:18 +02001608int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1609{
1610 gfn_t gfn = gpa >> PAGE_SHIFT;
1611 int seg;
1612 int offset = offset_in_page(gpa);
1613 int ret;
1614
1615 while ((seg = next_segment(len, offset)) != 0) {
1616 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1617 if (ret < 0)
1618 return ret;
1619 offset = 0;
1620 len -= seg;
1621 data += seg;
1622 ++gfn;
1623 }
1624 return 0;
1625}
1626EXPORT_SYMBOL_GPL(kvm_read_guest);
1627
Paolo Bonzini8e734852015-05-17 13:58:53 +02001628int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned long len)
1629{
1630 gfn_t gfn = gpa >> PAGE_SHIFT;
1631 int seg;
1632 int offset = offset_in_page(gpa);
1633 int ret;
1634
1635 while ((seg = next_segment(len, offset)) != 0) {
1636 ret = kvm_vcpu_read_guest_page(vcpu, gfn, data, offset, seg);
1637 if (ret < 0)
1638 return ret;
1639 offset = 0;
1640 len -= seg;
1641 data += seg;
1642 ++gfn;
1643 }
1644 return 0;
1645}
1646EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest);
1647
1648static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1649 void *data, int offset, unsigned long len)
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001650{
1651 int r;
1652 unsigned long addr;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001653
Paolo Bonzini8e734852015-05-17 13:58:53 +02001654 addr = gfn_to_hva_memslot_prot(slot, gfn, NULL);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001655 if (kvm_is_error_hva(addr))
1656 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001657 pagefault_disable();
Paolo Bonzini3180a7f2015-04-02 14:08:20 +02001658 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001659 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001660 if (r)
1661 return -EFAULT;
1662 return 0;
1663}
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001664
Paolo Bonzini8e734852015-05-17 13:58:53 +02001665int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1666 unsigned long len)
1667{
1668 gfn_t gfn = gpa >> PAGE_SHIFT;
1669 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1670 int offset = offset_in_page(gpa);
1671
1672 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1673}
1674EXPORT_SYMBOL_GPL(kvm_read_guest_atomic);
1675
1676int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa,
1677 void *data, unsigned long len)
1678{
1679 gfn_t gfn = gpa >> PAGE_SHIFT;
1680 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1681 int offset = offset_in_page(gpa);
1682
1683 return __kvm_read_guest_atomic(slot, gfn, data, offset, len);
1684}
1685EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic);
1686
1687static int __kvm_write_guest_page(struct kvm_memory_slot *memslot, gfn_t gfn,
1688 const void *data, int offset, int len)
Izik Eidus195aefd2007-10-01 22:14:18 +02001689{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001690 int r;
1691 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001692
Radim Krčmář251eb842015-04-10 21:47:27 +02001693 addr = gfn_to_hva_memslot(memslot, gfn);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001694 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001695 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001696 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001697 if (r)
1698 return -EFAULT;
Paolo Bonzinibc009e42015-05-26 12:43:41 +02001699 mark_page_dirty_in_slot(memslot, gfn);
Izik Eidus195aefd2007-10-01 22:14:18 +02001700 return 0;
1701}
Paolo Bonzini8e734852015-05-17 13:58:53 +02001702
1703int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn,
1704 const void *data, int offset, int len)
1705{
1706 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
1707
1708 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1709}
Izik Eidus195aefd2007-10-01 22:14:18 +02001710EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1711
Paolo Bonzini8e734852015-05-17 13:58:53 +02001712int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn,
1713 const void *data, int offset, int len)
1714{
1715 struct kvm_memory_slot *slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1716
1717 return __kvm_write_guest_page(slot, gfn, data, offset, len);
1718}
1719EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest_page);
1720
Izik Eidus195aefd2007-10-01 22:14:18 +02001721int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1722 unsigned long len)
1723{
1724 gfn_t gfn = gpa >> PAGE_SHIFT;
1725 int seg;
1726 int offset = offset_in_page(gpa);
1727 int ret;
1728
1729 while ((seg = next_segment(len, offset)) != 0) {
1730 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1731 if (ret < 0)
1732 return ret;
1733 offset = 0;
1734 len -= seg;
1735 data += seg;
1736 ++gfn;
1737 }
1738 return 0;
1739}
Wincy Vanff651cb2014-12-11 08:52:58 +03001740EXPORT_SYMBOL_GPL(kvm_write_guest);
Izik Eidus195aefd2007-10-01 22:14:18 +02001741
Paolo Bonzini8e734852015-05-17 13:58:53 +02001742int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
1743 unsigned long len)
1744{
1745 gfn_t gfn = gpa >> PAGE_SHIFT;
1746 int seg;
1747 int offset = offset_in_page(gpa);
1748 int ret;
1749
1750 while ((seg = next_segment(len, offset)) != 0) {
1751 ret = kvm_vcpu_write_guest_page(vcpu, gfn, data, offset, seg);
1752 if (ret < 0)
1753 return ret;
1754 offset = 0;
1755 len -= seg;
1756 data += seg;
1757 ++gfn;
1758 }
1759 return 0;
1760}
1761EXPORT_SYMBOL_GPL(kvm_vcpu_write_guest);
1762
Gleb Natapov49c77542010-10-18 15:22:23 +02001763int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Andrew Honig8f964522013-03-29 09:35:21 -07001764 gpa_t gpa, unsigned long len)
Gleb Natapov49c77542010-10-18 15:22:23 +02001765{
1766 struct kvm_memslots *slots = kvm_memslots(kvm);
1767 int offset = offset_in_page(gpa);
Andrew Honig8f964522013-03-29 09:35:21 -07001768 gfn_t start_gfn = gpa >> PAGE_SHIFT;
1769 gfn_t end_gfn = (gpa + len - 1) >> PAGE_SHIFT;
1770 gfn_t nr_pages_needed = end_gfn - start_gfn + 1;
1771 gfn_t nr_pages_avail;
Gleb Natapov49c77542010-10-18 15:22:23 +02001772
1773 ghc->gpa = gpa;
1774 ghc->generation = slots->generation;
Andrew Honig8f964522013-03-29 09:35:21 -07001775 ghc->len = len;
1776 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
Radim Krčmářca3f0872015-04-08 14:16:48 +02001777 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn, NULL);
1778 if (!kvm_is_error_hva(ghc->hva) && nr_pages_needed <= 1) {
Gleb Natapov49c77542010-10-18 15:22:23 +02001779 ghc->hva += offset;
Andrew Honig8f964522013-03-29 09:35:21 -07001780 } else {
1781 /*
1782 * If the requested region crosses two memslots, we still
1783 * verify that the entire region is valid here.
1784 */
1785 while (start_gfn <= end_gfn) {
1786 ghc->memslot = gfn_to_memslot(kvm, start_gfn);
1787 ghc->hva = gfn_to_hva_many(ghc->memslot, start_gfn,
1788 &nr_pages_avail);
1789 if (kvm_is_error_hva(ghc->hva))
1790 return -EFAULT;
1791 start_gfn += nr_pages_avail;
1792 }
1793 /* Use the slow path for cross page reads and writes. */
1794 ghc->memslot = NULL;
1795 }
Gleb Natapov49c77542010-10-18 15:22:23 +02001796 return 0;
1797}
1798EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1799
1800int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1801 void *data, unsigned long len)
1802{
1803 struct kvm_memslots *slots = kvm_memslots(kvm);
1804 int r;
1805
Andrew Honig8f964522013-03-29 09:35:21 -07001806 BUG_ON(len > ghc->len);
1807
Gleb Natapov49c77542010-10-18 15:22:23 +02001808 if (slots->generation != ghc->generation)
Andrew Honig8f964522013-03-29 09:35:21 -07001809 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1810
1811 if (unlikely(!ghc->memslot))
1812 return kvm_write_guest(kvm, ghc->gpa, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001813
1814 if (kvm_is_error_hva(ghc->hva))
1815 return -EFAULT;
1816
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001817 r = __copy_to_user((void __user *)ghc->hva, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001818 if (r)
1819 return -EFAULT;
Paolo Bonzinibc009e42015-05-26 12:43:41 +02001820 mark_page_dirty_in_slot(ghc->memslot, ghc->gpa >> PAGE_SHIFT);
Gleb Natapov49c77542010-10-18 15:22:23 +02001821
1822 return 0;
1823}
1824EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1825
Gleb Natapove03b6442011-07-11 15:28:11 -04001826int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1827 void *data, unsigned long len)
1828{
1829 struct kvm_memslots *slots = kvm_memslots(kvm);
1830 int r;
1831
Andrew Honig8f964522013-03-29 09:35:21 -07001832 BUG_ON(len > ghc->len);
1833
Gleb Natapove03b6442011-07-11 15:28:11 -04001834 if (slots->generation != ghc->generation)
Andrew Honig8f964522013-03-29 09:35:21 -07001835 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa, ghc->len);
1836
1837 if (unlikely(!ghc->memslot))
1838 return kvm_read_guest(kvm, ghc->gpa, data, len);
Gleb Natapove03b6442011-07-11 15:28:11 -04001839
1840 if (kvm_is_error_hva(ghc->hva))
1841 return -EFAULT;
1842
1843 r = __copy_from_user(data, (void __user *)ghc->hva, len);
1844 if (r)
1845 return -EFAULT;
1846
1847 return 0;
1848}
1849EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
1850
Izik Eidus195aefd2007-10-01 22:14:18 +02001851int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1852{
Heiko Carstens8a3caa62013-11-18 10:35:55 +01001853 const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
1854
1855 return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02001856}
1857EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1858
1859int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1860{
1861 gfn_t gfn = gpa >> PAGE_SHIFT;
1862 int seg;
1863 int offset = offset_in_page(gpa);
1864 int ret;
1865
Kevin Mulveybfda0e82015-02-20 08:21:36 -05001866 while ((seg = next_segment(len, offset)) != 0) {
Izik Eidus195aefd2007-10-01 22:14:18 +02001867 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1868 if (ret < 0)
1869 return ret;
1870 offset = 0;
1871 len -= seg;
1872 ++gfn;
1873 }
1874 return 0;
1875}
1876EXPORT_SYMBOL_GPL(kvm_clear_guest);
1877
Paolo Bonzinibc009e42015-05-26 12:43:41 +02001878static void mark_page_dirty_in_slot(struct kvm_memory_slot *memslot,
Stephen Hemminger79408762013-12-29 12:12:29 -08001879 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001880{
Rusty Russell7e9d6192007-07-31 20:41:14 +10001881 if (memslot && memslot->dirty_bitmap) {
1882 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001883
Takuya Yoshikawab74ca3b2012-10-04 17:13:12 -07001884 set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001885 }
1886}
1887
Gleb Natapov49c77542010-10-18 15:22:23 +02001888void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1889{
1890 struct kvm_memory_slot *memslot;
1891
1892 memslot = gfn_to_memslot(kvm, gfn);
Paolo Bonzinibc009e42015-05-26 12:43:41 +02001893 mark_page_dirty_in_slot(memslot, gfn);
Gleb Natapov49c77542010-10-18 15:22:23 +02001894}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301895EXPORT_SYMBOL_GPL(mark_page_dirty);
Gleb Natapov49c77542010-10-18 15:22:23 +02001896
Paolo Bonzini8e734852015-05-17 13:58:53 +02001897void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn)
1898{
1899 struct kvm_memory_slot *memslot;
1900
1901 memslot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1902 mark_page_dirty_in_slot(memslot, gfn);
1903}
1904EXPORT_SYMBOL_GPL(kvm_vcpu_mark_page_dirty);
1905
Paolo Bonzinif7819512015-02-04 18:20:58 +01001906static int kvm_vcpu_check_block(struct kvm_vcpu *vcpu)
1907{
1908 if (kvm_arch_vcpu_runnable(vcpu)) {
1909 kvm_make_request(KVM_REQ_UNHALT, vcpu);
1910 return -EINTR;
1911 }
1912 if (kvm_cpu_has_pending_timer(vcpu))
1913 return -EINTR;
1914 if (signal_pending(current))
1915 return -EINTR;
1916
1917 return 0;
1918}
1919
Eddie Dongb6958ce2007-07-18 12:15:21 +03001920/*
1921 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1922 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05001923void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001924{
Paolo Bonzinif7819512015-02-04 18:20:58 +01001925 ktime_t start, cur;
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001926 DEFINE_WAIT(wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01001927 bool waited = false;
1928
1929 start = cur = ktime_get();
1930 if (halt_poll_ns) {
1931 ktime_t stop = ktime_add_ns(ktime_get(), halt_poll_ns);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08001932
Paolo Bonzinif7819512015-02-04 18:20:58 +01001933 do {
1934 /*
1935 * This sets KVM_REQ_UNHALT if an interrupt
1936 * arrives.
1937 */
1938 if (kvm_vcpu_check_block(vcpu) < 0) {
1939 ++vcpu->stat.halt_successful_poll;
1940 goto out;
1941 }
1942 cur = ktime_get();
1943 } while (single_task_running() && ktime_before(cur, stop));
1944 }
Eddie Dongb6958ce2007-07-18 12:15:21 +03001945
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001946 for (;;) {
1947 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001948
Paolo Bonzinif7819512015-02-04 18:20:58 +01001949 if (kvm_vcpu_check_block(vcpu) < 0)
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001950 break;
1951
Paolo Bonzinif7819512015-02-04 18:20:58 +01001952 waited = true;
Eddie Dongb6958ce2007-07-18 12:15:21 +03001953 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03001954 }
1955
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001956 finish_wait(&vcpu->wq, &wait);
Paolo Bonzinif7819512015-02-04 18:20:58 +01001957 cur = ktime_get();
1958
1959out:
1960 trace_kvm_vcpu_wakeup(ktime_to_ns(cur) - ktime_to_ns(start), waited);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001961}
Aneesh Kumar K.V2ba9f0d2013-10-07 22:17:59 +05301962EXPORT_SYMBOL_GPL(kvm_vcpu_block);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001963
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001964#ifndef CONFIG_S390
Christoffer Dallb6d33832012-03-08 16:44:24 -05001965/*
1966 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
1967 */
1968void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
1969{
1970 int me;
1971 int cpu = vcpu->cpu;
1972 wait_queue_head_t *wqp;
1973
1974 wqp = kvm_arch_vcpu_wq(vcpu);
1975 if (waitqueue_active(wqp)) {
1976 wake_up_interruptible(wqp);
1977 ++vcpu->stat.halt_wakeup;
1978 }
1979
1980 me = get_cpu();
1981 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
1982 if (kvm_arch_vcpu_should_kick(vcpu))
1983 smp_send_reschedule(cpu);
1984 put_cpu();
1985}
Yang Zhanga20ed542013-04-11 19:25:15 +08001986EXPORT_SYMBOL_GPL(kvm_vcpu_kick);
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001987#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05001988
Dan Carpenterfa933842014-05-23 13:20:42 +03001989int kvm_vcpu_yield_to(struct kvm_vcpu *target)
Konstantin Weitz41628d32012-04-25 15:30:38 +02001990{
1991 struct pid *pid;
1992 struct task_struct *task = NULL;
Dan Carpenterfa933842014-05-23 13:20:42 +03001993 int ret = 0;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001994
1995 rcu_read_lock();
1996 pid = rcu_dereference(target->pid);
1997 if (pid)
Sam Bobroff27fbe64b2014-09-19 09:40:41 +10001998 task = get_pid_task(pid, PIDTYPE_PID);
Konstantin Weitz41628d32012-04-25 15:30:38 +02001999 rcu_read_unlock();
2000 if (!task)
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302001 return ret;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302002 ret = yield_to(task, 1);
Konstantin Weitz41628d32012-04-25 15:30:38 +02002003 put_task_struct(task);
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302004
2005 return ret;
Konstantin Weitz41628d32012-04-25 15:30:38 +02002006}
2007EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
2008
Raghavendra K T06e48c52012-07-19 15:17:52 +05302009/*
2010 * Helper that checks whether a VCPU is eligible for directed yield.
2011 * Most eligible candidate to yield is decided by following heuristics:
2012 *
2013 * (a) VCPU which has not done pl-exit or cpu relax intercepted recently
2014 * (preempted lock holder), indicated by @in_spin_loop.
2015 * Set at the beiginning and cleared at the end of interception/PLE handler.
2016 *
2017 * (b) VCPU which has done pl-exit/ cpu relax intercepted but did not get
2018 * chance last time (mostly it has become eligible now since we have probably
2019 * yielded to lockholder in last iteration. This is done by toggling
2020 * @dy_eligible each time a VCPU checked for eligibility.)
2021 *
2022 * Yielding to a recently pl-exited/cpu relax intercepted VCPU before yielding
2023 * to preempted lock-holder could result in wrong VCPU selection and CPU
2024 * burning. Giving priority for a potential lock-holder increases lock
2025 * progress.
2026 *
2027 * Since algorithm is based on heuristics, accessing another VCPU data without
2028 * locking does not harm. It may result in trying to yield to same VCPU, fail
2029 * and continue with next VCPU and so on.
2030 */
Stephen Hemminger79408762013-12-29 12:12:29 -08002031static bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
Raghavendra K T06e48c52012-07-19 15:17:52 +05302032{
Scott Wood4a55dd72014-01-09 18:43:16 -06002033#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
Raghavendra K T06e48c52012-07-19 15:17:52 +05302034 bool eligible;
2035
2036 eligible = !vcpu->spin_loop.in_spin_loop ||
Christian Borntraeger34656112014-09-04 21:13:31 +02002037 vcpu->spin_loop.dy_eligible;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302038
2039 if (vcpu->spin_loop.in_spin_loop)
2040 kvm_vcpu_set_dy_eligible(vcpu, !vcpu->spin_loop.dy_eligible);
2041
2042 return eligible;
Scott Wood4a55dd72014-01-09 18:43:16 -06002043#else
2044 return true;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302045#endif
Scott Wood4a55dd72014-01-09 18:43:16 -06002046}
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302047
Rik van Riel217ece62011-02-01 09:53:28 -05002048void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002049{
Rik van Riel217ece62011-02-01 09:53:28 -05002050 struct kvm *kvm = me->kvm;
2051 struct kvm_vcpu *vcpu;
2052 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
2053 int yielded = 0;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302054 int try = 3;
Rik van Riel217ece62011-02-01 09:53:28 -05002055 int pass;
2056 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002057
Raghavendra K T4c088492012-07-18 19:07:46 +05302058 kvm_vcpu_set_in_spin_loop(me, true);
Rik van Riel217ece62011-02-01 09:53:28 -05002059 /*
2060 * We boost the priority of a VCPU that is runnable but not
2061 * currently running, because it got preempted by something
2062 * else and called schedule in __vcpu_run. Hopefully that
2063 * VCPU is holding the lock that we need and will release it.
2064 * We approximate round-robin by starting at the last boosted VCPU.
2065 */
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302066 for (pass = 0; pass < 2 && !yielded && try; pass++) {
Rik van Riel217ece62011-02-01 09:53:28 -05002067 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel5cfc2aa2012-06-19 16:51:04 -04002068 if (!pass && i <= last_boosted_vcpu) {
Rik van Riel217ece62011-02-01 09:53:28 -05002069 i = last_boosted_vcpu;
2070 continue;
2071 } else if (pass && i > last_boosted_vcpu)
2072 break;
Raghavendra K T7bc7ae22013-03-04 23:32:27 +05302073 if (!ACCESS_ONCE(vcpu->preempted))
2074 continue;
Rik van Riel217ece62011-02-01 09:53:28 -05002075 if (vcpu == me)
2076 continue;
Michael Mueller98f4a142014-02-26 16:14:18 +01002077 if (waitqueue_active(&vcpu->wq) && !kvm_arch_vcpu_runnable(vcpu))
Rik van Riel217ece62011-02-01 09:53:28 -05002078 continue;
Raghavendra K T06e48c52012-07-19 15:17:52 +05302079 if (!kvm_vcpu_eligible_for_directed_yield(vcpu))
2080 continue;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302081
2082 yielded = kvm_vcpu_yield_to(vcpu);
2083 if (yielded > 0) {
Rik van Riel217ece62011-02-01 09:53:28 -05002084 kvm->last_boosted_vcpu = i;
Rik van Riel217ece62011-02-01 09:53:28 -05002085 break;
Raghavendra K Tc45c5282013-01-22 13:09:24 +05302086 } else if (yielded < 0) {
2087 try--;
2088 if (!try)
2089 break;
Rik van Riel217ece62011-02-01 09:53:28 -05002090 }
Rik van Riel217ece62011-02-01 09:53:28 -05002091 }
2092 }
Raghavendra K T4c088492012-07-18 19:07:46 +05302093 kvm_vcpu_set_in_spin_loop(me, false);
Raghavendra K T06e48c52012-07-19 15:17:52 +05302094
2095 /* Ensure vcpu is not eligible during next spinloop */
2096 kvm_vcpu_set_dy_eligible(me, false);
Zhai, Edwind255f4f2009-10-09 18:03:20 +08002097}
2098EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
2099
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002100static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002101{
2102 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002103 struct page *page;
2104
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002105 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02002106 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02002107#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002108 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002109 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02002110#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002111#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2112 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
2113 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
2114#endif
Avi Kivity039576c2007-03-20 12:46:50 +02002115 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01002116 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002117 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002118 vmf->page = page;
2119 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002120}
2121
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002122static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002123 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002124};
2125
2126static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2127{
2128 vma->vm_ops = &kvm_vcpu_vm_ops;
2129 return 0;
2130}
2131
Avi Kivitybccf2152007-02-21 18:04:26 +02002132static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2133{
2134 struct kvm_vcpu *vcpu = filp->private_data;
2135
Al Viro66c0b392008-04-19 20:33:56 +01002136 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002137 return 0;
2138}
2139
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002140static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02002141 .release = kvm_vcpu_release,
2142 .unlocked_ioctl = kvm_vcpu_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002143#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002144 .compat_ioctl = kvm_vcpu_compat_ioctl,
2145#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002146 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002147 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02002148};
2149
2150/*
2151 * Allocates an inode for the vcpu.
2152 */
2153static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2154{
Yann Droneaud24009b02013-08-24 22:14:07 +02002155 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
Avi Kivitybccf2152007-02-21 18:04:26 +02002156}
2157
Avi Kivityc5ea7662007-02-20 18:41:05 +02002158/*
2159 * Creates some virtual cpus. Good luck creating more than one.
2160 */
Gleb Natapov73880c82009-06-09 15:56:28 +03002161static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02002162{
2163 int r;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002164 struct kvm_vcpu *vcpu, *v;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002165
Andy Honig338c7db2013-11-18 16:09:22 -08002166 if (id >= KVM_MAX_VCPUS)
2167 return -EINVAL;
2168
Gleb Natapov73880c82009-06-09 15:56:28 +03002169 vcpu = kvm_arch_vcpu_create(kvm, id);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002170 if (IS_ERR(vcpu))
2171 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002172
Avi Kivity15ad7142007-07-11 18:17:21 +03002173 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2174
Avi Kivity26e52152007-11-20 15:30:24 +02002175 r = kvm_arch_vcpu_setup(vcpu);
2176 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02002177 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02002178
Shaohua Li11ec2802007-07-23 14:51:37 +08002179 mutex_lock(&kvm->lock);
Avi Kivity3e515702012-03-05 14:23:29 +02002180 if (!kvm_vcpu_compatible(vcpu)) {
2181 r = -EINVAL;
2182 goto unlock_vcpu_destroy;
2183 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002184 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
2185 r = -EINVAL;
Jan Kiszkad7805922011-05-23 10:33:05 +02002186 goto unlock_vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002187 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002188
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002189 kvm_for_each_vcpu(r, v, kvm)
2190 if (v->vcpu_id == id) {
Gleb Natapov73880c82009-06-09 15:56:28 +03002191 r = -EEXIST;
Jan Kiszkad7805922011-05-23 10:33:05 +02002192 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002193 }
2194
2195 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002196
2197 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01002198 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02002199 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03002200 if (r < 0) {
2201 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02002202 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03002203 }
2204
2205 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
2206 smp_wmb();
2207 atomic_inc(&kvm->online_vcpus);
2208
Gleb Natapov73880c82009-06-09 15:56:28 +03002209 mutex_unlock(&kvm->lock);
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002210 kvm_arch_vcpu_postcreate(vcpu);
Avi Kivitybccf2152007-02-21 18:04:26 +02002211 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002212
Jan Kiszkad7805922011-05-23 10:33:05 +02002213unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03002214 mutex_unlock(&kvm->lock);
Jan Kiszkad7805922011-05-23 10:33:05 +02002215vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06002216 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002217 return r;
2218}
2219
Avi Kivity1961d272007-03-05 19:46:05 +02002220static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2221{
2222 if (sigset) {
2223 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2224 vcpu->sigset_active = 1;
2225 vcpu->sigset = *sigset;
2226 } else
2227 vcpu->sigset_active = 0;
2228 return 0;
2229}
2230
Avi Kivitybccf2152007-02-21 18:04:26 +02002231static long kvm_vcpu_ioctl(struct file *filp,
2232 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002233{
Avi Kivitybccf2152007-02-21 18:04:26 +02002234 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002235 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02002236 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002237 struct kvm_fpu *fpu = NULL;
2238 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002239
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002240 if (vcpu->kvm->mm != current->mm)
2241 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03002242
David Matlack2ea75be2014-09-19 16:03:25 -07002243 if (unlikely(_IOC_TYPE(ioctl) != KVMIO))
2244 return -EINVAL;
2245
Sanjay Lal2f4d9b52012-11-21 18:34:15 -08002246#if defined(CONFIG_S390) || defined(CONFIG_PPC) || defined(CONFIG_MIPS)
Avi Kivity2122ff52010-05-13 11:25:04 +03002247 /*
2248 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
2249 * so vcpu_load() would break it.
2250 */
Jens Freimann47b43c52014-11-11 20:57:06 +01002251 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_S390_IRQ || ioctl == KVM_INTERRUPT)
Avi Kivity2122ff52010-05-13 11:25:04 +03002252 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
2253#endif
2254
2255
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +03002256 r = vcpu_load(vcpu);
2257 if (r)
2258 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002259 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002260 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002261 r = -EINVAL;
2262 if (arg)
2263 goto out;
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002264 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
2265 /* The thread running this VCPU changed. */
2266 struct pid *oldpid = vcpu->pid;
2267 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002268
Christian Borntraeger7a72f7a2014-08-05 16:44:14 +02002269 rcu_assign_pointer(vcpu->pid, newpid);
2270 if (oldpid)
2271 synchronize_rcu();
2272 put_pid(oldpid);
2273 }
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002274 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02002275 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002276 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002277 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002278 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002279
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002280 r = -ENOMEM;
2281 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
2282 if (!kvm_regs)
2283 goto out;
2284 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002285 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002286 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002287 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002288 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
2289 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002290 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002291out_free1:
2292 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002293 break;
2294 }
2295 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002296 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002297
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002298 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002299 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
2300 if (IS_ERR(kvm_regs)) {
2301 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002302 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002303 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002304 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08002305 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002306 break;
2307 }
2308 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002309 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
2310 r = -ENOMEM;
2311 if (!kvm_sregs)
2312 goto out;
2313 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002314 if (r)
2315 goto out;
2316 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002317 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002318 goto out;
2319 r = 0;
2320 break;
2321 }
2322 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002323 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
2324 if (IS_ERR(kvm_sregs)) {
2325 r = PTR_ERR(kvm_sregs);
Guo Chao18595412012-11-02 18:33:21 +08002326 kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002327 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002328 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002329 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002330 break;
2331 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002332 case KVM_GET_MP_STATE: {
2333 struct kvm_mp_state mp_state;
2334
2335 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
2336 if (r)
2337 goto out;
2338 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002339 if (copy_to_user(argp, &mp_state, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002340 goto out;
2341 r = 0;
2342 break;
2343 }
2344 case KVM_SET_MP_STATE: {
2345 struct kvm_mp_state mp_state;
2346
2347 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002348 if (copy_from_user(&mp_state, argp, sizeof(mp_state)))
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002349 goto out;
2350 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002351 break;
2352 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002353 case KVM_TRANSLATE: {
2354 struct kvm_translation tr;
2355
2356 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002357 if (copy_from_user(&tr, argp, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002358 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08002359 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002360 if (r)
2361 goto out;
2362 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002363 if (copy_to_user(argp, &tr, sizeof(tr)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002364 goto out;
2365 r = 0;
2366 break;
2367 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002368 case KVM_SET_GUEST_DEBUG: {
2369 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002370
2371 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002372 if (copy_from_user(&dbg, argp, sizeof(dbg)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002373 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002374 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002375 break;
2376 }
Avi Kivity1961d272007-03-05 19:46:05 +02002377 case KVM_SET_SIGNAL_MASK: {
2378 struct kvm_signal_mask __user *sigmask_arg = argp;
2379 struct kvm_signal_mask kvm_sigmask;
2380 sigset_t sigset, *p;
2381
2382 p = NULL;
2383 if (argp) {
2384 r = -EFAULT;
2385 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002386 sizeof(kvm_sigmask)))
Avi Kivity1961d272007-03-05 19:46:05 +02002387 goto out;
2388 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002389 if (kvm_sigmask.len != sizeof(sigset))
Avi Kivity1961d272007-03-05 19:46:05 +02002390 goto out;
2391 r = -EFAULT;
2392 if (copy_from_user(&sigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002393 sizeof(sigset)))
Avi Kivity1961d272007-03-05 19:46:05 +02002394 goto out;
2395 p = &sigset;
2396 }
Andi Kleen376d41f2010-06-10 13:10:47 +02002397 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02002398 break;
2399 }
Avi Kivityb8836732007-04-01 16:34:31 +03002400 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07002401 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
2402 r = -ENOMEM;
2403 if (!fpu)
2404 goto out;
2405 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002406 if (r)
2407 goto out;
2408 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07002409 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03002410 goto out;
2411 r = 0;
2412 break;
2413 }
2414 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02002415 fpu = memdup_user(argp, sizeof(*fpu));
2416 if (IS_ERR(fpu)) {
2417 r = PTR_ERR(fpu);
Guo Chao18595412012-11-02 18:33:21 +08002418 fpu = NULL;
Avi Kivityb8836732007-04-01 16:34:31 +03002419 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02002420 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07002421 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03002422 break;
2423 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002424 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02002425 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002426 }
2427out:
Avi Kivity2122ff52010-05-13 11:25:04 +03002428 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07002429 kfree(fpu);
2430 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02002431 return r;
2432}
2433
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002434#ifdef CONFIG_KVM_COMPAT
Alexander Graf1dda6062011-06-08 02:45:37 +02002435static long kvm_vcpu_compat_ioctl(struct file *filp,
2436 unsigned int ioctl, unsigned long arg)
2437{
2438 struct kvm_vcpu *vcpu = filp->private_data;
2439 void __user *argp = compat_ptr(arg);
2440 int r;
2441
2442 if (vcpu->kvm->mm != current->mm)
2443 return -EIO;
2444
2445 switch (ioctl) {
2446 case KVM_SET_SIGNAL_MASK: {
2447 struct kvm_signal_mask __user *sigmask_arg = argp;
2448 struct kvm_signal_mask kvm_sigmask;
2449 compat_sigset_t csigset;
2450 sigset_t sigset;
2451
2452 if (argp) {
2453 r = -EFAULT;
2454 if (copy_from_user(&kvm_sigmask, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002455 sizeof(kvm_sigmask)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002456 goto out;
2457 r = -EINVAL;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002458 if (kvm_sigmask.len != sizeof(csigset))
Alexander Graf1dda6062011-06-08 02:45:37 +02002459 goto out;
2460 r = -EFAULT;
2461 if (copy_from_user(&csigset, sigmask_arg->sigset,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002462 sizeof(csigset)))
Alexander Graf1dda6062011-06-08 02:45:37 +02002463 goto out;
Alan Cox760a9a32012-08-22 14:34:11 +01002464 sigset_from_compat(&sigset, &csigset);
2465 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2466 } else
2467 r = kvm_vcpu_ioctl_set_sigmask(vcpu, NULL);
Alexander Graf1dda6062011-06-08 02:45:37 +02002468 break;
2469 }
2470 default:
2471 r = kvm_vcpu_ioctl(filp, ioctl, arg);
2472 }
2473
2474out:
2475 return r;
2476}
2477#endif
2478
Scott Wood852b6d52013-04-12 14:08:42 +00002479static int kvm_device_ioctl_attr(struct kvm_device *dev,
2480 int (*accessor)(struct kvm_device *dev,
2481 struct kvm_device_attr *attr),
2482 unsigned long arg)
2483{
2484 struct kvm_device_attr attr;
2485
2486 if (!accessor)
2487 return -EPERM;
2488
2489 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
2490 return -EFAULT;
2491
2492 return accessor(dev, &attr);
2493}
2494
2495static long kvm_device_ioctl(struct file *filp, unsigned int ioctl,
2496 unsigned long arg)
2497{
2498 struct kvm_device *dev = filp->private_data;
2499
2500 switch (ioctl) {
2501 case KVM_SET_DEVICE_ATTR:
2502 return kvm_device_ioctl_attr(dev, dev->ops->set_attr, arg);
2503 case KVM_GET_DEVICE_ATTR:
2504 return kvm_device_ioctl_attr(dev, dev->ops->get_attr, arg);
2505 case KVM_HAS_DEVICE_ATTR:
2506 return kvm_device_ioctl_attr(dev, dev->ops->has_attr, arg);
2507 default:
2508 if (dev->ops->ioctl)
2509 return dev->ops->ioctl(dev, ioctl, arg);
2510
2511 return -ENOTTY;
2512 }
2513}
2514
Scott Wood852b6d52013-04-12 14:08:42 +00002515static int kvm_device_release(struct inode *inode, struct file *filp)
2516{
2517 struct kvm_device *dev = filp->private_data;
2518 struct kvm *kvm = dev->kvm;
2519
Scott Wood852b6d52013-04-12 14:08:42 +00002520 kvm_put_kvm(kvm);
2521 return 0;
2522}
2523
2524static const struct file_operations kvm_device_fops = {
2525 .unlocked_ioctl = kvm_device_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002526#ifdef CONFIG_KVM_COMPAT
Scott Wooddb6ae612013-04-30 20:00:45 -05002527 .compat_ioctl = kvm_device_ioctl,
2528#endif
Scott Wood852b6d52013-04-12 14:08:42 +00002529 .release = kvm_device_release,
2530};
2531
2532struct kvm_device *kvm_device_from_filp(struct file *filp)
2533{
2534 if (filp->f_op != &kvm_device_fops)
2535 return NULL;
2536
2537 return filp->private_data;
2538}
2539
Will Deacond60eacb2014-09-02 10:27:33 +01002540static struct kvm_device_ops *kvm_device_ops_table[KVM_DEV_TYPE_MAX] = {
2541#ifdef CONFIG_KVM_MPIC
2542 [KVM_DEV_TYPE_FSL_MPIC_20] = &kvm_mpic_ops,
2543 [KVM_DEV_TYPE_FSL_MPIC_42] = &kvm_mpic_ops,
2544#endif
2545
2546#ifdef CONFIG_KVM_XICS
2547 [KVM_DEV_TYPE_XICS] = &kvm_xics_ops,
2548#endif
Will Deacond60eacb2014-09-02 10:27:33 +01002549};
2550
2551int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type)
2552{
2553 if (type >= ARRAY_SIZE(kvm_device_ops_table))
2554 return -ENOSPC;
2555
2556 if (kvm_device_ops_table[type] != NULL)
2557 return -EEXIST;
2558
2559 kvm_device_ops_table[type] = ops;
2560 return 0;
2561}
2562
Wanpeng Li571ee1b2014-10-09 18:30:08 +08002563void kvm_unregister_device_ops(u32 type)
2564{
2565 if (kvm_device_ops_table[type] != NULL)
2566 kvm_device_ops_table[type] = NULL;
2567}
2568
Scott Wood852b6d52013-04-12 14:08:42 +00002569static int kvm_ioctl_create_device(struct kvm *kvm,
2570 struct kvm_create_device *cd)
2571{
2572 struct kvm_device_ops *ops = NULL;
2573 struct kvm_device *dev;
2574 bool test = cd->flags & KVM_CREATE_DEVICE_TEST;
2575 int ret;
2576
Will Deacond60eacb2014-09-02 10:27:33 +01002577 if (cd->type >= ARRAY_SIZE(kvm_device_ops_table))
Scott Wood852b6d52013-04-12 14:08:42 +00002578 return -ENODEV;
Will Deacond60eacb2014-09-02 10:27:33 +01002579
2580 ops = kvm_device_ops_table[cd->type];
2581 if (ops == NULL)
2582 return -ENODEV;
Scott Wood852b6d52013-04-12 14:08:42 +00002583
2584 if (test)
2585 return 0;
2586
2587 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2588 if (!dev)
2589 return -ENOMEM;
2590
2591 dev->ops = ops;
2592 dev->kvm = kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00002593
2594 ret = ops->create(dev, cd->type);
2595 if (ret < 0) {
2596 kfree(dev);
2597 return ret;
2598 }
2599
Yann Droneaud24009b02013-08-24 22:14:07 +02002600 ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);
Scott Wood852b6d52013-04-12 14:08:42 +00002601 if (ret < 0) {
2602 ops->destroy(dev);
2603 return ret;
2604 }
2605
Scott Wood07f0a7b2013-04-25 14:11:23 +00002606 list_add(&dev->vm_node, &kvm->devices);
Scott Wood852b6d52013-04-12 14:08:42 +00002607 kvm_get_kvm(kvm);
2608 cd->fd = ret;
2609 return 0;
2610}
2611
Alexander Graf92b591a2014-07-14 18:33:08 +02002612static long kvm_vm_ioctl_check_extension_generic(struct kvm *kvm, long arg)
2613{
2614 switch (arg) {
2615 case KVM_CAP_USER_MEMORY:
2616 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
2617 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
2618#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2619 case KVM_CAP_SET_BOOT_CPU_ID:
2620#endif
2621 case KVM_CAP_INTERNAL_ERROR_DATA:
2622#ifdef CONFIG_HAVE_KVM_MSI
2623 case KVM_CAP_SIGNAL_MSI:
2624#endif
Paul Mackerras297e2102014-06-30 20:51:13 +10002625#ifdef CONFIG_HAVE_KVM_IRQFD
Paolo Bonzinidc9be0f2015-03-05 11:54:46 +01002626 case KVM_CAP_IRQFD:
Alexander Graf92b591a2014-07-14 18:33:08 +02002627 case KVM_CAP_IRQFD_RESAMPLE:
2628#endif
2629 case KVM_CAP_CHECK_EXTENSION_VM:
2630 return 1;
2631#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2632 case KVM_CAP_IRQ_ROUTING:
2633 return KVM_MAX_IRQ_ROUTES;
2634#endif
Paolo Bonzinif481b062015-05-17 17:30:37 +02002635#if KVM_ADDRESS_SPACE_NUM > 1
2636 case KVM_CAP_MULTI_ADDRESS_SPACE:
2637 return KVM_ADDRESS_SPACE_NUM;
2638#endif
Alexander Graf92b591a2014-07-14 18:33:08 +02002639 default:
2640 break;
2641 }
2642 return kvm_vm_ioctl_check_extension(kvm, arg);
2643}
2644
Avi Kivitybccf2152007-02-21 18:04:26 +02002645static long kvm_vm_ioctl(struct file *filp,
2646 unsigned int ioctl, unsigned long arg)
2647{
2648 struct kvm *kvm = filp->private_data;
2649 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01002650 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002651
Avi Kivity6d4e4c42007-11-21 16:41:05 +02002652 if (kvm->mm != current->mm)
2653 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002654 switch (ioctl) {
2655 case KVM_CREATE_VCPU:
2656 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02002657 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02002658 case KVM_SET_USER_MEMORY_REGION: {
2659 struct kvm_userspace_memory_region kvm_userspace_mem;
2660
2661 r = -EFAULT;
2662 if (copy_from_user(&kvm_userspace_mem, argp,
Xiubo Li893bdbf2015-02-26 14:58:19 +08002663 sizeof(kvm_userspace_mem)))
Izik Eidus6fc138d2007-10-09 19:20:39 +02002664 goto out;
2665
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +09002666 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002667 break;
2668 }
2669 case KVM_GET_DIRTY_LOG: {
2670 struct kvm_dirty_log log;
2671
2672 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002673 if (copy_from_user(&log, argp, sizeof(log)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002674 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002675 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002676 break;
2677 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02002678#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2679 case KVM_REGISTER_COALESCED_MMIO: {
2680 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002681
Laurent Vivier5f94c172008-05-30 16:05:54 +02002682 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002683 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002684 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002685 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002686 break;
2687 }
2688 case KVM_UNREGISTER_COALESCED_MMIO: {
2689 struct kvm_coalesced_mmio_zone zone;
Xiubo Lif95ef0c2015-02-26 14:58:23 +08002690
Laurent Vivier5f94c172008-05-30 16:05:54 +02002691 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002692 if (copy_from_user(&zone, argp, sizeof(zone)))
Laurent Vivier5f94c172008-05-30 16:05:54 +02002693 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002694 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
Laurent Vivier5f94c172008-05-30 16:05:54 +02002695 break;
2696 }
2697#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04002698 case KVM_IRQFD: {
2699 struct kvm_irqfd data;
2700
2701 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002702 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskins721eecbf2009-05-20 10:30:49 -04002703 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06002704 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecbf2009-05-20 10:30:49 -04002705 break;
2706 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002707 case KVM_IOEVENTFD: {
2708 struct kvm_ioeventfd data;
2709
2710 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002711 if (copy_from_user(&data, argp, sizeof(data)))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002712 goto out;
2713 r = kvm_ioeventfd(kvm, &data);
2714 break;
2715 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002716#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2717 case KVM_SET_BOOT_CPU_ID:
2718 r = 0;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002719 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002720 if (atomic_read(&kvm->online_vcpus) != 0)
2721 r = -EBUSY;
2722 else
2723 kvm->bsp_vcpu_id = arg;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002724 mutex_unlock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002725 break;
2726#endif
Jan Kiszka07975ad2012-03-29 21:14:12 +02002727#ifdef CONFIG_HAVE_KVM_MSI
2728 case KVM_SIGNAL_MSI: {
2729 struct kvm_msi msi;
2730
2731 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002732 if (copy_from_user(&msi, argp, sizeof(msi)))
Jan Kiszka07975ad2012-03-29 21:14:12 +02002733 goto out;
2734 r = kvm_send_userspace_msi(kvm, &msi);
2735 break;
2736 }
2737#endif
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002738#ifdef __KVM_HAVE_IRQ_LINE
2739 case KVM_IRQ_LINE_STATUS:
2740 case KVM_IRQ_LINE: {
2741 struct kvm_irq_level irq_event;
2742
2743 r = -EFAULT;
Xiubo Li893bdbf2015-02-26 14:58:19 +08002744 if (copy_from_user(&irq_event, argp, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002745 goto out;
2746
Yang Zhangaa2fbe62013-04-11 19:21:40 +08002747 r = kvm_vm_ioctl_irq_line(kvm, &irq_event,
2748 ioctl == KVM_IRQ_LINE_STATUS);
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002749 if (r)
2750 goto out;
2751
2752 r = -EFAULT;
2753 if (ioctl == KVM_IRQ_LINE_STATUS) {
Xiubo Li893bdbf2015-02-26 14:58:19 +08002754 if (copy_to_user(argp, &irq_event, sizeof(irq_event)))
Christoffer Dall23d43cf2012-07-24 08:51:20 -04002755 goto out;
2756 }
2757
2758 r = 0;
2759 break;
2760 }
2761#endif
Alexander Grafaa8d5942013-04-15 21:12:53 +02002762#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
2763 case KVM_SET_GSI_ROUTING: {
2764 struct kvm_irq_routing routing;
2765 struct kvm_irq_routing __user *urouting;
2766 struct kvm_irq_routing_entry *entries;
2767
2768 r = -EFAULT;
2769 if (copy_from_user(&routing, argp, sizeof(routing)))
2770 goto out;
2771 r = -EINVAL;
2772 if (routing.nr >= KVM_MAX_IRQ_ROUTES)
2773 goto out;
2774 if (routing.flags)
2775 goto out;
2776 r = -ENOMEM;
2777 entries = vmalloc(routing.nr * sizeof(*entries));
2778 if (!entries)
2779 goto out;
2780 r = -EFAULT;
2781 urouting = argp;
2782 if (copy_from_user(entries, urouting->entries,
2783 routing.nr * sizeof(*entries)))
2784 goto out_free_irq_routing;
2785 r = kvm_set_irq_routing(kvm, entries, routing.nr,
2786 routing.flags);
Xiubo Lia642a172015-02-26 14:58:20 +08002787out_free_irq_routing:
Alexander Grafaa8d5942013-04-15 21:12:53 +02002788 vfree(entries);
2789 break;
2790 }
2791#endif /* CONFIG_HAVE_KVM_IRQ_ROUTING */
Scott Wood852b6d52013-04-12 14:08:42 +00002792 case KVM_CREATE_DEVICE: {
2793 struct kvm_create_device cd;
2794
2795 r = -EFAULT;
2796 if (copy_from_user(&cd, argp, sizeof(cd)))
2797 goto out;
2798
2799 r = kvm_ioctl_create_device(kvm, &cd);
2800 if (r)
2801 goto out;
2802
2803 r = -EFAULT;
2804 if (copy_to_user(argp, &cd, sizeof(cd)))
2805 goto out;
2806
2807 r = 0;
2808 break;
2809 }
Alexander Graf92b591a2014-07-14 18:33:08 +02002810 case KVM_CHECK_EXTENSION:
2811 r = kvm_vm_ioctl_check_extension_generic(kvm, arg);
2812 break;
Avi Kivityf17abe92007-02-21 19:28:04 +02002813 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01002814 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002815 }
2816out:
2817 return r;
2818}
2819
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002820#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002821struct compat_kvm_dirty_log {
2822 __u32 slot;
2823 __u32 padding1;
2824 union {
2825 compat_uptr_t dirty_bitmap; /* one bit per page */
2826 __u64 padding2;
2827 };
2828};
2829
2830static long kvm_vm_compat_ioctl(struct file *filp,
2831 unsigned int ioctl, unsigned long arg)
2832{
2833 struct kvm *kvm = filp->private_data;
2834 int r;
2835
2836 if (kvm->mm != current->mm)
2837 return -EIO;
2838 switch (ioctl) {
2839 case KVM_GET_DIRTY_LOG: {
2840 struct compat_kvm_dirty_log compat_log;
2841 struct kvm_dirty_log log;
2842
2843 r = -EFAULT;
2844 if (copy_from_user(&compat_log, (void __user *)arg,
2845 sizeof(compat_log)))
2846 goto out;
2847 log.slot = compat_log.slot;
2848 log.padding1 = compat_log.padding1;
2849 log.padding2 = compat_log.padding2;
2850 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
2851
2852 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002853 break;
2854 }
2855 default:
2856 r = kvm_vm_ioctl(filp, ioctl, arg);
2857 }
2858
2859out:
2860 return r;
2861}
2862#endif
2863
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002864static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02002865 .release = kvm_vm_release,
2866 .unlocked_ioctl = kvm_vm_ioctl,
Christian Borntraegerde8e5d72015-02-03 09:35:15 +01002867#ifdef CONFIG_KVM_COMPAT
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002868 .compat_ioctl = kvm_vm_compat_ioctl,
2869#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02002870 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02002871};
2872
Carsten Ottee08b9632012-01-04 10:25:20 +01002873static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02002874{
Heiko Carstensaac87632010-10-27 17:22:10 +02002875 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002876 struct kvm *kvm;
2877
Carsten Ottee08b9632012-01-04 10:25:20 +01002878 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04002879 if (IS_ERR(kvm))
2880 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09002881#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2882 r = kvm_coalesced_mmio_init(kvm);
2883 if (r < 0) {
2884 kvm_put_kvm(kvm);
2885 return r;
2886 }
2887#endif
Yann Droneaud24009b02013-08-24 22:14:07 +02002888 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR | O_CLOEXEC);
Heiko Carstensaac87632010-10-27 17:22:10 +02002889 if (r < 0)
Al Viro66c0b392008-04-19 20:33:56 +01002890 kvm_put_kvm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02002891
Heiko Carstensaac87632010-10-27 17:22:10 +02002892 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002893}
2894
2895static long kvm_dev_ioctl(struct file *filp,
2896 unsigned int ioctl, unsigned long arg)
2897{
Avi Kivity07c45a32007-03-07 13:05:38 +02002898 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002899
2900 switch (ioctl) {
2901 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002902 if (arg)
2903 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002904 r = KVM_API_VERSION;
2905 break;
2906 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01002907 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002908 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002909 case KVM_CHECK_EXTENSION:
Alexander Graf784aa3d2014-07-14 18:27:35 +02002910 r = kvm_vm_ioctl_check_extension_generic(NULL, arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02002911 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02002912 case KVM_GET_VCPU_MMAP_SIZE:
Avi Kivity07c45a32007-03-07 13:05:38 +02002913 if (arg)
2914 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02002915 r = PAGE_SIZE; /* struct kvm_run */
2916#ifdef CONFIG_X86
2917 r += PAGE_SIZE; /* pio data page */
2918#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002919#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2920 r += PAGE_SIZE; /* coalesced mmio ring page */
2921#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02002922 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002923 case KVM_TRACE_ENABLE:
2924 case KVM_TRACE_PAUSE:
2925 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03002926 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002927 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002928 default:
Carsten Otte043405e2007-10-10 17:16:19 +02002929 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002930 }
2931out:
2932 return r;
2933}
2934
Avi Kivity6aa8b732006-12-10 02:21:36 -08002935static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002936 .unlocked_ioctl = kvm_dev_ioctl,
2937 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002938 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002939};
2940
2941static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002942 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002943 "kvm",
2944 &kvm_chardev_ops,
2945};
2946
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002947static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002948{
2949 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02002950 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03002951
Rusty Russell7f59f492008-12-07 21:25:45 +10302952 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002953 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02002954
Rusty Russell7f59f492008-12-07 21:25:45 +10302955 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02002956
Radim Krčmář13a34e02014-08-28 15:13:03 +02002957 r = kvm_arch_hardware_enable();
Alexander Graf10474ae2009-09-15 11:37:46 +02002958
2959 if (r) {
2960 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
2961 atomic_inc(&hardware_enable_failed);
Xiubo Li1170adc2015-02-26 14:58:26 +08002962 pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
Alexander Graf10474ae2009-09-15 11:37:46 +02002963 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03002964}
2965
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002966static void hardware_enable(void)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002967{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002968 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002969 if (kvm_usage_count)
2970 hardware_enable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002971 raw_spin_unlock(&kvm_count_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002972}
2973
2974static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002975{
2976 int cpu = raw_smp_processor_id();
2977
Rusty Russell7f59f492008-12-07 21:25:45 +10302978 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002979 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302980 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Radim Krčmář13a34e02014-08-28 15:13:03 +02002981 kvm_arch_hardware_disable();
Avi Kivity1b6c0162007-05-24 13:03:52 +03002982}
2983
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002984static void hardware_disable(void)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002985{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002986 raw_spin_lock(&kvm_count_lock);
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02002987 if (kvm_usage_count)
2988 hardware_disable_nolock(NULL);
Paolo Bonzini4a937f92013-09-10 12:58:35 +02002989 raw_spin_unlock(&kvm_count_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002990}
2991
Alexander Graf10474ae2009-09-15 11:37:46 +02002992static void hardware_disable_all_nolock(void)
2993{
2994 BUG_ON(!kvm_usage_count);
2995
2996 kvm_usage_count--;
2997 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002998 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002999}
3000
3001static void hardware_disable_all(void)
3002{
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003003 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003004 hardware_disable_all_nolock();
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003005 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003006}
3007
3008static int hardware_enable_all(void)
3009{
3010 int r = 0;
3011
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003012 raw_spin_lock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003013
3014 kvm_usage_count++;
3015 if (kvm_usage_count == 1) {
3016 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003017 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02003018
3019 if (atomic_read(&hardware_enable_failed)) {
3020 hardware_disable_all_nolock();
3021 r = -EBUSY;
3022 }
3023 }
3024
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003025 raw_spin_unlock(&kvm_count_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02003026
3027 return r;
3028}
3029
Avi Kivity774c47f2007-02-12 00:54:47 -08003030static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
3031 void *v)
3032{
Avi Kivity1a6f4d72007-11-11 18:37:32 +02003033 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08003034 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03003035 case CPU_DYING:
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003036 hardware_disable();
Avi Kivity6ec8a852007-08-19 15:57:26 +03003037 break;
Zachary Amsdenda908f22010-08-19 22:07:27 -10003038 case CPU_STARTING:
Paolo Bonzini4fa92fb2013-09-10 12:57:17 +02003039 hardware_enable();
Avi Kivity774c47f2007-02-12 00:54:47 -08003040 break;
3041 }
3042 return NOTIFY_OK;
3043}
3044
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003045static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04003046 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003047{
Sheng Yang8e1c1812009-04-29 11:09:04 +08003048 /*
3049 * Some (well, at least mine) BIOSes hang on reboot if
3050 * in vmx root mode.
3051 *
3052 * And Intel TXT required VMX off for all cpu when system shutdown.
3053 */
Xiubo Li1170adc2015-02-26 14:58:26 +08003054 pr_info("kvm: exiting hardware virtualization\n");
Sheng Yang8e1c1812009-04-29 11:09:04 +08003055 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003056 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003057 return NOTIFY_OK;
3058}
3059
3060static struct notifier_block kvm_reboot_notifier = {
3061 .notifier_call = kvm_reboot,
3062 .priority = 0,
3063};
3064
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003065static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003066{
3067 int i;
3068
3069 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03003070 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003071
3072 kvm_iodevice_destructor(pos);
3073 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003074 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003075}
3076
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003077static inline int kvm_io_bus_cmp(const struct kvm_io_range *r1,
Xiubo Li20e87b72015-02-26 14:58:25 +08003078 const struct kvm_io_range *r2)
Sasha Levin743eeb02011-07-27 16:00:48 +03003079{
Sasha Levin743eeb02011-07-27 16:00:48 +03003080 if (r1->addr < r2->addr)
3081 return -1;
3082 if (r1->addr + r1->len > r2->addr + r2->len)
3083 return 1;
3084 return 0;
3085}
3086
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003087static int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
3088{
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003089 return kvm_io_bus_cmp(p1, p2);
Paolo Bonzinia343c9b2013-07-16 13:03:29 +02003090}
3091
Geoff Levand39369f72013-04-05 19:20:30 +00003092static int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
Sasha Levin743eeb02011-07-27 16:00:48 +03003093 gpa_t addr, int len)
3094{
Sasha Levin743eeb02011-07-27 16:00:48 +03003095 bus->range[bus->dev_count++] = (struct kvm_io_range) {
3096 .addr = addr,
3097 .len = len,
3098 .dev = dev,
3099 };
3100
3101 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
3102 kvm_io_bus_sort_cmp, NULL);
3103
3104 return 0;
3105}
3106
Geoff Levand39369f72013-04-05 19:20:30 +00003107static int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
Sasha Levin743eeb02011-07-27 16:00:48 +03003108 gpa_t addr, int len)
3109{
3110 struct kvm_io_range *range, key;
3111 int off;
3112
3113 key = (struct kvm_io_range) {
3114 .addr = addr,
3115 .len = len,
3116 };
3117
3118 range = bsearch(&key, bus->range, bus->dev_count,
3119 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
3120 if (range == NULL)
3121 return -ENOENT;
3122
3123 off = range - bus->range;
3124
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003125 while (off > 0 && kvm_io_bus_cmp(&key, &bus->range[off-1]) == 0)
Sasha Levin743eeb02011-07-27 16:00:48 +03003126 off--;
3127
3128 return off;
3129}
3130
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003131static int __kvm_io_bus_write(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003132 struct kvm_io_range *range, const void *val)
3133{
3134 int idx;
3135
3136 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
3137 if (idx < 0)
3138 return -EOPNOTSUPP;
3139
3140 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003141 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003142 if (!kvm_iodevice_write(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003143 range->len, val))
3144 return idx;
3145 idx++;
3146 }
3147
3148 return -EOPNOTSUPP;
3149}
3150
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003151/* kvm_io_bus_write - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003152int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003153 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003154{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003155 struct kvm_io_bus *bus;
3156 struct kvm_io_range range;
3157 int r;
3158
3159 range = (struct kvm_io_range) {
3160 .addr = addr,
3161 .len = len,
3162 };
3163
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003164 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3165 r = __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003166 return r < 0 ? r : 0;
3167}
3168
3169/* kvm_io_bus_write_cookie - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003170int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
3171 gpa_t addr, int len, const void *val, long cookie)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003172{
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003173 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03003174 struct kvm_io_range range;
3175
3176 range = (struct kvm_io_range) {
3177 .addr = addr,
3178 .len = len,
3179 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08003180
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003181 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003182
3183 /* First try the device referenced by cookie. */
3184 if ((cookie >= 0) && (cookie < bus->dev_count) &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003185 (kvm_io_bus_cmp(&range, &bus->range[cookie]) == 0))
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003186 if (!kvm_iodevice_write(vcpu, bus->range[cookie].dev, addr, len,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003187 val))
3188 return cookie;
3189
3190 /*
3191 * cookie contained garbage; fall back to search and return the
3192 * correct cookie value.
3193 */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003194 return __kvm_io_bus_write(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003195}
3196
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003197static int __kvm_io_bus_read(struct kvm_vcpu *vcpu, struct kvm_io_bus *bus,
3198 struct kvm_io_range *range, void *val)
Cornelia Huck126a5af2013-07-03 16:30:53 +02003199{
3200 int idx;
3201
3202 idx = kvm_io_bus_get_first_dev(bus, range->addr, range->len);
Sasha Levin743eeb02011-07-27 16:00:48 +03003203 if (idx < 0)
3204 return -EOPNOTSUPP;
3205
3206 while (idx < bus->dev_count &&
Paolo Bonzinic21fbff2013-08-27 15:41:41 +02003207 kvm_io_bus_cmp(range, &bus->range[idx]) == 0) {
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003208 if (!kvm_iodevice_read(vcpu, bus->range[idx].dev, range->addr,
Cornelia Huck126a5af2013-07-03 16:30:53 +02003209 range->len, val))
3210 return idx;
Sasha Levin743eeb02011-07-27 16:00:48 +03003211 idx++;
3212 }
3213
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003214 return -EOPNOTSUPP;
3215}
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03003216EXPORT_SYMBOL_GPL(kvm_io_bus_write);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003217
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003218/* kvm_io_bus_read - called under kvm->slots_lock */
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003219int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003220 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03003221{
Cornelia Huck126a5af2013-07-03 16:30:53 +02003222 struct kvm_io_bus *bus;
3223 struct kvm_io_range range;
3224 int r;
3225
3226 range = (struct kvm_io_range) {
3227 .addr = addr,
3228 .len = len,
3229 };
3230
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +00003231 bus = srcu_dereference(vcpu->kvm->buses[bus_idx], &vcpu->kvm->srcu);
3232 r = __kvm_io_bus_read(vcpu, bus, &range, val);
Cornelia Huck126a5af2013-07-03 16:30:53 +02003233 return r < 0 ? r : 0;
3234}
3235
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003236
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003237/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03003238int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
3239 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003240{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003241 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003242
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003243 bus = kvm->buses[bus_idx];
Amos Kong6ea34c92013-05-25 06:44:15 +08003244 /* exclude ioeventfd which is limited by maximum fd */
3245 if (bus->dev_count - bus->ioeventfd_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003246 return -ENOSPC;
3247
Amos Konga13007162012-03-09 12:17:32 +08003248 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count + 1) *
3249 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003250 if (!new_bus)
3251 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08003252 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
3253 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03003254 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003255 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3256 synchronize_srcu_expedited(&kvm->srcu);
3257 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04003258
3259 return 0;
3260}
3261
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003262/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003263int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
3264 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04003265{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003266 int i, r;
3267 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03003268
Sasha Levincdfca7b2011-12-04 19:36:28 +02003269 bus = kvm->buses[bus_idx];
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003270 r = -ENOENT;
Amos Konga13007162012-03-09 12:17:32 +08003271 for (i = 0; i < bus->dev_count; i++)
3272 if (bus->range[i].dev == dev) {
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003273 r = 0;
Gregory Haskins090b7af2009-07-07 17:08:44 -04003274 break;
3275 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003276
Amos Konga13007162012-03-09 12:17:32 +08003277 if (r)
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003278 return r;
Amos Konga13007162012-03-09 12:17:32 +08003279
3280 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count - 1) *
3281 sizeof(struct kvm_io_range)), GFP_KERNEL);
3282 if (!new_bus)
3283 return -ENOMEM;
3284
3285 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
3286 new_bus->dev_count--;
3287 memcpy(new_bus->range + i, bus->range + i + 1,
3288 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02003289
3290 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
3291 synchronize_srcu_expedited(&kvm->srcu);
3292 kfree(bus);
3293 return r;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003294}
3295
Avi Kivity774c47f2007-02-12 00:54:47 -08003296static struct notifier_block kvm_cpu_notifier = {
3297 .notifier_call = kvm_cpu_hotplug,
Avi Kivity774c47f2007-02-12 00:54:47 -08003298};
3299
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003300static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02003301{
3302 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02003303 struct kvm *kvm;
3304
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003305 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003306 spin_lock(&kvm_lock);
Avi Kivityba1389b2007-11-18 16:24:12 +02003307 list_for_each_entry(kvm, &vm_list, vm_list)
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003308 *val += *(u32 *)((void *)kvm + offset);
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003309 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003310 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02003311}
3312
3313DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
3314
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003315static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003316{
3317 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003318 struct kvm *kvm;
3319 struct kvm_vcpu *vcpu;
3320 int i;
3321
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003322 *val = 0;
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003323 spin_lock(&kvm_lock);
Avi Kivity1165f5f2007-04-19 17:27:43 +03003324 list_for_each_entry(kvm, &vm_list, vm_list)
Gleb Natapov988a2ca2009-06-09 15:56:29 +03003325 kvm_for_each_vcpu(i, vcpu, kvm)
3326 *val += *(u32 *)((void *)vcpu + offset);
3327
Paolo Bonzini2f303b72013-09-25 13:53:07 +02003328 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08003329 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03003330}
3331
Avi Kivityba1389b2007-11-18 16:24:12 +02003332DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
3333
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003334static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02003335 [KVM_STAT_VCPU] = &vcpu_stat_fops,
3336 [KVM_STAT_VM] = &vm_stat_fops,
3337};
Avi Kivity1165f5f2007-04-19 17:27:43 +03003338
Hamo4f69b682011-12-15 14:23:16 +08003339static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003340{
Paolo Bonzini0c8eb042013-10-30 12:12:13 +01003341 int r = -EEXIST;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003342 struct kvm_stats_debugfs_item *p;
3343
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003344 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08003345 if (kvm_debugfs_dir == NULL)
3346 goto out;
3347
3348 for (p = debugfs_entries; p->name; ++p) {
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003349 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
Avi Kivity1165f5f2007-04-19 17:27:43 +03003350 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02003351 stat_fops[p->kind]);
Hamo4f69b682011-12-15 14:23:16 +08003352 if (p->dentry == NULL)
3353 goto out_dir;
3354 }
3355
3356 return 0;
3357
3358out_dir:
3359 debugfs_remove_recursive(kvm_debugfs_dir);
3360out:
3361 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003362}
3363
3364static void kvm_exit_debug(void)
3365{
3366 struct kvm_stats_debugfs_item *p;
3367
3368 for (p = debugfs_entries; p->name; ++p)
3369 debugfs_remove(p->dentry);
Hollis Blanchard76f7c872008-04-15 16:05:42 -05003370 debugfs_remove(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003371}
3372
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003373static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003374{
Alexander Graf10474ae2009-09-15 11:37:46 +02003375 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003376 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003377 return 0;
3378}
3379
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003380static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08003381{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003382 if (kvm_usage_count) {
Paolo Bonzini4a937f92013-09-10 12:58:35 +02003383 WARN_ON(raw_spin_is_locked(&kvm_count_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003384 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10003385 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08003386}
3387
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003388static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08003389 .suspend = kvm_suspend,
3390 .resume = kvm_resume,
3391};
3392
Avi Kivity15ad7142007-07-11 18:17:21 +03003393static inline
3394struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3395{
3396 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3397}
3398
3399static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3400{
3401 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
Xiubo Lif95ef0c2015-02-26 14:58:23 +08003402
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303403 if (vcpu->preempted)
3404 vcpu->preempted = false;
Avi Kivity15ad7142007-07-11 18:17:21 +03003405
Radim Krčmáře790d9e2014-08-21 18:08:05 +02003406 kvm_arch_sched_in(vcpu, cpu);
3407
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003408 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003409}
3410
3411static void kvm_sched_out(struct preempt_notifier *pn,
3412 struct task_struct *next)
3413{
3414 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3415
Raghavendra K T3a08a8f2013-03-04 23:32:07 +05303416 if (current->state == TASK_RUNNING)
3417 vcpu->preempted = true;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003418 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003419}
3420
Avi Kivity0ee75be2010-04-28 15:39:01 +03003421int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10003422 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003423{
3424 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003425 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003426
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003427 r = kvm_arch_init(opaque);
3428 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003429 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003430
Asias He7dac16c2013-05-08 10:57:29 +08003431 /*
3432 * kvm_arch_init makes sure there's at most one caller
3433 * for architectures that support multiple implementations,
3434 * like intel and amd on x86.
3435 * kvm_arch_init must be called before kvm_irqfd_init to avoid creating
3436 * conflicts in case kvm is already setup for another implementation.
3437 */
3438 r = kvm_irqfd_init();
3439 if (r)
3440 goto out_irqfd;
3441
Avi Kivity8437a612009-06-06 14:52:35 -07003442 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10303443 r = -ENOMEM;
3444 goto out_free_0;
3445 }
3446
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003447 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003448 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10303449 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003450
Yang, Sheng002c7f72007-07-31 14:23:01 +03003451 for_each_online_cpu(cpu) {
3452 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003453 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02003454 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003455 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003456 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003457 }
3458
Avi Kivity774c47f2007-02-12 00:54:47 -08003459 r = register_cpu_notifier(&kvm_cpu_notifier);
3460 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08003461 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003462 register_reboot_notifier(&kvm_reboot_notifier);
3463
Rusty Russellc16f8622007-07-30 21:12:19 +10003464 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03003465 if (!vcpu_align)
3466 vcpu_align = __alignof__(struct kvm_vcpu);
3467 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08003468 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10003469 if (!kvm_vcpu_cache) {
3470 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003471 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10003472 }
3473
Gleb Natapovaf585b92010-10-14 11:22:46 +02003474 r = kvm_async_pf_init();
3475 if (r)
3476 goto out_free;
3477
Avi Kivity6aa8b732006-12-10 02:21:36 -08003478 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01003479 kvm_vm_fops.owner = module;
3480 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003481
3482 r = misc_register(&kvm_dev);
3483 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003484 pr_err("kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02003485 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003486 }
3487
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003488 register_syscore_ops(&kvm_syscore_ops);
3489
Avi Kivity15ad7142007-07-11 18:17:21 +03003490 kvm_preempt_ops.sched_in = kvm_sched_in;
3491 kvm_preempt_ops.sched_out = kvm_sched_out;
3492
Hamo4f69b682011-12-15 14:23:16 +08003493 r = kvm_init_debug();
3494 if (r) {
Xiubo Li1170adc2015-02-26 14:58:26 +08003495 pr_err("kvm: create debugfs files failed\n");
Hamo4f69b682011-12-15 14:23:16 +08003496 goto out_undebugfs;
3497 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003498
Paolo Bonzini3c3c29f2014-09-24 13:02:46 +02003499 r = kvm_vfio_ops_init();
3500 WARN_ON(r);
3501
Avi Kivityc7addb92007-09-16 18:58:32 +02003502 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003503
Hamo4f69b682011-12-15 14:23:16 +08003504out_undebugfs:
3505 unregister_syscore_ops(&kvm_syscore_ops);
Wei Yongjunafc2f792013-05-05 20:03:40 +08003506 misc_deregister(&kvm_dev);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003507out_unreg:
3508 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003509out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10003510 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003511out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003512 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08003513 unregister_cpu_notifier(&kvm_cpu_notifier);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003514out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08003515out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003516 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10303517out_free_0a:
3518 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08003519out_free_0:
Cornelia Hucka0f155e2013-02-28 12:33:18 +01003520 kvm_irqfd_exit();
3521out_irqfd:
Asias He7dac16c2013-05-08 10:57:29 +08003522 kvm_arch_exit();
3523out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003524 return r;
3525}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003526EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003527
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003528void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003529{
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07003530 kvm_exit_debug();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003531 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10003532 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003533 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01003534 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003535 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003536 unregister_cpu_notifier(&kvm_cpu_notifier);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09003537 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003538 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08003539 kvm_arch_exit();
Cornelia Hucka0f155e2013-02-28 12:33:18 +01003540 kvm_irqfd_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10303541 free_cpumask_var(cpus_hardware_enabled);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08003542 kvm_vfio_ops_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003543}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003544EXPORT_SYMBOL_GPL(kvm_exit);