blob: 44ee7124b16dae1820ca1ca1c79f2a099979da12 [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
Hollis Blancharde2174022007-12-03 15:30:24 -060019#include "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>
55#include <asm/uaccess.h>
Izik Eidus3e021bf2007-11-19 11:16:57 +020056#include <asm/pgtable.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080057
Laurent Vivier5f94c172008-05-30 16:05:54 +020058#include "coalesced_mmio.h"
Gleb Natapovaf585b92010-10-14 11:22:46 +020059#include "async_pf.h"
Laurent Vivier5f94c172008-05-30 16:05:54 +020060
Marcelo Tosatti229456f2009-06-17 09:22:14 -030061#define CREATE_TRACE_POINTS
62#include <trace/events/kvm.h>
63
Avi Kivity6aa8b732006-12-10 02:21:36 -080064MODULE_AUTHOR("Qumranet");
65MODULE_LICENSE("GPL");
66
Marcelo Tosattifa40a822009-06-04 15:08:24 -030067/*
68 * Ordering of locks:
69 *
Sheng Yangfae3a352009-12-15 10:28:07 +080070 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
Marcelo Tosattifa40a822009-06-04 15:08:24 -030071 */
72
Jan Kiszkae935b832011-02-08 12:55:33 +010073DEFINE_RAW_SPINLOCK(kvm_lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080074LIST_HEAD(vm_list);
Avi Kivity133de902007-02-12 00:54:44 -080075
Rusty Russell7f59f492008-12-07 21:25:45 +103076static cpumask_var_t cpus_hardware_enabled;
Alexander Graf10474ae2009-09-15 11:37:46 +020077static int kvm_usage_count = 0;
78static atomic_t hardware_enable_failed;
Avi Kivity1b6c0162007-05-24 13:03:52 +030079
Rusty Russellc16f8622007-07-30 21:12:19 +100080struct kmem_cache *kvm_vcpu_cache;
81EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +030082
Avi Kivity15ad7142007-07-11 18:17:21 +030083static __read_mostly struct preempt_ops kvm_preempt_ops;
84
Hollis Blanchard76f7c872008-04-15 16:05:42 -050085struct dentry *kvm_debugfs_dir;
Avi Kivity6aa8b732006-12-10 02:21:36 -080086
Avi Kivitybccf2152007-02-21 18:04:26 +020087static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
88 unsigned long arg);
Alexander Graf1dda6062011-06-08 02:45:37 +020089#ifdef CONFIG_COMPAT
90static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
91 unsigned long arg);
92#endif
Alexander Graf10474ae2009-09-15 11:37:46 +020093static int hardware_enable_all(void);
94static void hardware_disable_all(void);
Avi Kivitybccf2152007-02-21 18:04:26 +020095
Marcelo Tosattie93f8a02009-12-23 14:35:24 -020096static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
97
Avi Kivityb7c41452010-12-02 17:52:50 +020098bool kvm_rebooting;
99EXPORT_SYMBOL_GPL(kvm_rebooting);
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300100
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300101static bool largepages_enabled = true;
102
Gleb Natapovfa7bff82010-07-07 20:16:44 +0300103static struct page *hwpoison_page;
104static pfn_t hwpoison_pfn;
Huang Yingbf998152010-05-31 14:28:19 +0800105
Xiao Guangrongfce92dc2011-07-12 03:28:54 +0800106struct page *fault_page;
107pfn_t fault_pfn;
Gleb Natapovedba23e2010-07-07 20:16:45 +0300108
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +0800109inline int kvm_is_mmio_pfn(pfn_t pfn)
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300110{
Joerg Roedelfc5659c2009-02-18 14:08:58 +0100111 if (pfn_valid(pfn)) {
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800112 int reserved;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800113 struct page *tail = pfn_to_page(pfn);
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800114 struct page *head = compound_trans_head(tail);
115 reserved = PageReserved(head);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800116 if (head != tail) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800117 /*
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800118 * "head" is not a dangling pointer
119 * (compound_trans_head takes care of that)
120 * but the hugepage may have been splitted
121 * from under us (and we may not hold a
122 * reference count on the head page so it can
123 * be reused before we run PageReferenced), so
124 * we've to check PageTail before returning
125 * what we just read.
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800126 */
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800127 smp_rmb();
128 if (PageTail(tail))
129 return reserved;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800130 }
131 return PageReserved(tail);
Joerg Roedelfc5659c2009-02-18 14:08:58 +0100132 }
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300133
134 return true;
135}
136
Avi Kivity6aa8b732006-12-10 02:21:36 -0800137/*
138 * Switches to specified vcpu, until a matching vcpu_put()
139 */
Carsten Otte313a3dc2007-10-11 19:16:52 +0200140void vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800141{
Avi Kivity15ad7142007-07-11 18:17:21 +0300142 int cpu;
143
Avi Kivitybccf2152007-02-21 18:04:26 +0200144 mutex_lock(&vcpu->mutex);
Rik van Riel34bb10b2011-02-01 09:52:41 -0500145 if (unlikely(vcpu->pid != current->pids[PIDTYPE_PID].pid)) {
146 /* The thread running this VCPU changed. */
147 struct pid *oldpid = vcpu->pid;
148 struct pid *newpid = get_task_pid(current, PIDTYPE_PID);
149 rcu_assign_pointer(vcpu->pid, newpid);
150 synchronize_rcu();
151 put_pid(oldpid);
152 }
Avi Kivity15ad7142007-07-11 18:17:21 +0300153 cpu = get_cpu();
154 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200155 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300156 put_cpu();
Avi Kivitybccf2152007-02-21 18:04:26 +0200157}
158
Carsten Otte313a3dc2007-10-11 19:16:52 +0200159void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800160{
Avi Kivity15ad7142007-07-11 18:17:21 +0300161 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200162 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300163 preempt_notifier_unregister(&vcpu->preempt_notifier);
164 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800165 mutex_unlock(&vcpu->mutex);
166}
167
Avi Kivityd9e368d2007-06-07 19:18:30 +0300168static void ack_flush(void *_completed)
169{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300170}
171
Rusty Russell49846892008-12-08 20:26:24 +1030172static bool make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300173{
Avi Kivity597a5f52008-07-20 14:24:22 +0300174 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030175 cpumask_var_t cpus;
176 bool called = true;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300177 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300178
Li Zefan79f55992009-06-15 14:58:26 +0800179 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030180
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800181 me = get_cpu();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300182 kvm_for_each_vcpu(i, vcpu, kvm) {
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800183 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300184 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800185
186 /* Set ->requests bit before we read ->mode */
187 smp_mb();
188
189 if (cpus != NULL && cpu != -1 && cpu != me &&
190 kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE)
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030191 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300192 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030193 if (unlikely(cpus == NULL))
194 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
195 else if (!cpumask_empty(cpus))
196 smp_call_function_many(cpus, ack_flush, NULL, 1);
197 else
198 called = false;
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800199 put_cpu();
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030200 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030201 return called;
202}
203
204void kvm_flush_remote_tlbs(struct kvm *kvm)
205{
Alex Shibec87d62012-03-04 13:13:38 +0800206 long dirty_count = kvm->tlbs_dirty;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800207
208 smp_mb();
Rusty Russell49846892008-12-08 20:26:24 +1030209 if (make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
210 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800211 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300212}
213
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500214void kvm_reload_remote_mmus(struct kvm *kvm)
215{
Rusty Russell49846892008-12-08 20:26:24 +1030216 make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500217}
218
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000219int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
220{
221 struct page *page;
222 int r;
223
224 mutex_init(&vcpu->mutex);
225 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000226 vcpu->kvm = kvm;
227 vcpu->vcpu_id = id;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500228 vcpu->pid = NULL;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300229 init_waitqueue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200230 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000231
232 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
233 if (!page) {
234 r = -ENOMEM;
235 goto fail;
236 }
237 vcpu->run = page_address(page);
238
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800239 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000240 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800241 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000242 return 0;
243
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000244fail_free_run:
245 free_page((unsigned long)vcpu->run);
246fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000247 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000248}
249EXPORT_SYMBOL_GPL(kvm_vcpu_init);
250
251void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
252{
Rik van Riel34bb10b2011-02-01 09:52:41 -0500253 put_pid(vcpu->pid);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800254 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000255 free_page((unsigned long)vcpu->run);
256}
257EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
258
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200259#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
260static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
261{
262 return container_of(mn, struct kvm, mmu_notifier);
263}
264
265static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
266 struct mm_struct *mm,
267 unsigned long address)
268{
269 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200270 int need_tlb_flush, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200271
272 /*
273 * When ->invalidate_page runs, the linux pte has been zapped
274 * already but the page is still allocated until
275 * ->invalidate_page returns. So if we increase the sequence
276 * here the kvm page fault will notice if the spte can't be
277 * established because the page is going to be freed. If
278 * instead the kvm page fault establishes the spte before
279 * ->invalidate_page runs, kvm_unmap_hva will release it
280 * before returning.
281 *
282 * The sequence increase only need to be seen at spin_unlock
283 * time, and not at spin_lock time.
284 *
285 * Increasing the sequence after the spin_unlock would be
286 * unsafe because the kvm page fault could then establish the
287 * pte after kvm_unmap_hva returned, without noticing the page
288 * is going to be freed.
289 */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200290 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200291 spin_lock(&kvm->mmu_lock);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900292
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200293 kvm->mmu_notifier_seq++;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800294 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200295 /* we've to flush the tlb before the pages can be freed */
296 if (need_tlb_flush)
297 kvm_flush_remote_tlbs(kvm);
298
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900299 spin_unlock(&kvm->mmu_lock);
300 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200301}
302
Izik Eidus3da0dd42009-09-23 21:47:18 +0300303static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
304 struct mm_struct *mm,
305 unsigned long address,
306 pte_t pte)
307{
308 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200309 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300310
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200311 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300312 spin_lock(&kvm->mmu_lock);
313 kvm->mmu_notifier_seq++;
314 kvm_set_spte_hva(kvm, address, pte);
315 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200316 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300317}
318
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200319static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
320 struct mm_struct *mm,
321 unsigned long start,
322 unsigned long end)
323{
324 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200325 int need_tlb_flush = 0, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200326
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200327 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200328 spin_lock(&kvm->mmu_lock);
329 /*
330 * The count increase must become visible at unlock time as no
331 * spte can be established without taking the mmu_lock and
332 * count is also read inside the mmu_lock critical section.
333 */
334 kvm->mmu_notifier_count++;
335 for (; start < end; start += PAGE_SIZE)
336 need_tlb_flush |= kvm_unmap_hva(kvm, start);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800337 need_tlb_flush |= kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200338 /* we've to flush the tlb before the pages can be freed */
339 if (need_tlb_flush)
340 kvm_flush_remote_tlbs(kvm);
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900341
342 spin_unlock(&kvm->mmu_lock);
343 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200344}
345
346static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
347 struct mm_struct *mm,
348 unsigned long start,
349 unsigned long end)
350{
351 struct kvm *kvm = mmu_notifier_to_kvm(mn);
352
353 spin_lock(&kvm->mmu_lock);
354 /*
355 * This sequence increase will notify the kvm page fault that
356 * the page that is going to be mapped in the spte could have
357 * been freed.
358 */
359 kvm->mmu_notifier_seq++;
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000360 smp_wmb();
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200361 /*
362 * The above sequence increase must be visible before the
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000363 * below count decrease, which is ensured by the smp_wmb above
364 * in conjunction with the smp_rmb in mmu_notifier_retry().
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200365 */
366 kvm->mmu_notifier_count--;
367 spin_unlock(&kvm->mmu_lock);
368
369 BUG_ON(kvm->mmu_notifier_count < 0);
370}
371
372static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
373 struct mm_struct *mm,
374 unsigned long address)
375{
376 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200377 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200378
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200379 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200380 spin_lock(&kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200381
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900382 young = kvm_age_hva(kvm, address);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200383 if (young)
384 kvm_flush_remote_tlbs(kvm);
385
Takuya Yoshikawa565f3be2012-02-10 15:28:31 +0900386 spin_unlock(&kvm->mmu_lock);
387 srcu_read_unlock(&kvm->srcu, idx);
388
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200389 return young;
390}
391
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800392static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
393 struct mm_struct *mm,
394 unsigned long address)
395{
396 struct kvm *kvm = mmu_notifier_to_kvm(mn);
397 int young, idx;
398
399 idx = srcu_read_lock(&kvm->srcu);
400 spin_lock(&kvm->mmu_lock);
401 young = kvm_test_age_hva(kvm, address);
402 spin_unlock(&kvm->mmu_lock);
403 srcu_read_unlock(&kvm->srcu, idx);
404
405 return young;
406}
407
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100408static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
409 struct mm_struct *mm)
410{
411 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800412 int idx;
413
414 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100415 kvm_arch_flush_shadow(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800416 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100417}
418
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200419static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
420 .invalidate_page = kvm_mmu_notifier_invalidate_page,
421 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
422 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
423 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800424 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300425 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100426 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200427};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200428
429static int kvm_init_mmu_notifier(struct kvm *kvm)
430{
431 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
432 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
433}
434
435#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
436
437static int kvm_init_mmu_notifier(struct kvm *kvm)
438{
439 return 0;
440}
441
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200442#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
443
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800444static void kvm_init_memslots_id(struct kvm *kvm)
445{
446 int i;
447 struct kvm_memslots *slots = kvm->memslots;
448
449 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800450 slots->id_to_index[i] = slots->memslots[i].id = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800451}
452
Carsten Ottee08b9632012-01-04 10:25:20 +0100453static struct kvm *kvm_create_vm(unsigned long type)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800454{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100455 int r, i;
456 struct kvm *kvm = kvm_arch_alloc_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800457
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100458 if (!kvm)
459 return ERR_PTR(-ENOMEM);
460
Carsten Ottee08b9632012-01-04 10:25:20 +0100461 r = kvm_arch_init_vm(kvm, type);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100462 if (r)
463 goto out_err_nodisable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200464
465 r = hardware_enable_all();
466 if (r)
467 goto out_err_nodisable;
468
Avi Kivity75858a82009-01-04 17:10:50 +0200469#ifdef CONFIG_HAVE_KVM_IRQCHIP
470 INIT_HLIST_HEAD(&kvm->mask_notifier_list);
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300471 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200472#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800473
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200474 r = -ENOMEM;
475 kvm->memslots = kzalloc(sizeof(struct kvm_memslots), GFP_KERNEL);
476 if (!kvm->memslots)
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100477 goto out_err_nosrcu;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800478 kvm_init_memslots_id(kvm);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200479 if (init_srcu_struct(&kvm->srcu))
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100480 goto out_err_nosrcu;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200481 for (i = 0; i < KVM_NR_BUSES; i++) {
482 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
483 GFP_KERNEL);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100484 if (!kvm->buses[i])
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200485 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200486 }
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700487
OGAWA Hirofumi85722cd2011-05-11 09:28:28 +0900488 spin_lock_init(&kvm->mmu_lock);
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200489 kvm->mm = current->mm;
490 atomic_inc(&kvm->mm->mm_count);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400491 kvm_eventfd_init(kvm);
Shaohua Li11ec2802007-07-23 14:51:37 +0800492 mutex_init(&kvm->lock);
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300493 mutex_init(&kvm->irq_lock);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200494 mutex_init(&kvm->slots_lock);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300495 atomic_set(&kvm->users_count, 1);
Mike Waychison74b5c5b2011-06-03 13:04:53 -0700496
497 r = kvm_init_mmu_notifier(kvm);
498 if (r)
499 goto out_err;
500
Jan Kiszkae935b832011-02-08 12:55:33 +0100501 raw_spin_lock(&kvm_lock);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000502 list_add(&kvm->vm_list, &vm_list);
Jan Kiszkae935b832011-02-08 12:55:33 +0100503 raw_spin_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100504
Avi Kivityf17abe92007-02-21 19:28:04 +0200505 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200506
507out_err:
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100508 cleanup_srcu_struct(&kvm->srcu);
509out_err_nosrcu:
Alexander Graf10474ae2009-09-15 11:37:46 +0200510 hardware_disable_all();
511out_err_nodisable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200512 for (i = 0; i < KVM_NR_BUSES; i++)
513 kfree(kvm->buses[i]);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200514 kfree(kvm->memslots);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100515 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200516 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200517}
518
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900519static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
520{
521 if (!memslot->dirty_bitmap)
522 return;
523
Takuya Yoshikawa6f9e5c172010-11-01 14:36:09 +0900524 if (2 * kvm_dirty_bitmap_bytes(memslot) > PAGE_SIZE)
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900525 vfree(memslot->dirty_bitmap);
Takuya Yoshikawa6f9e5c172010-11-01 14:36:09 +0900526 else
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900527 kfree(memslot->dirty_bitmap);
Takuya Yoshikawa6f9e5c172010-11-01 14:36:09 +0900528
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900529 memslot->dirty_bitmap = NULL;
530}
531
Avi Kivity6aa8b732006-12-10 02:21:36 -0800532/*
533 * Free any memory in @free but not in @dont.
534 */
535static void kvm_free_physmem_slot(struct kvm_memory_slot *free,
536 struct kvm_memory_slot *dont)
537{
Izik Eidus290fc382007-09-27 14:11:22 +0200538 if (!dont || free->rmap != dont->rmap)
539 vfree(free->rmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800540
541 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900542 kvm_destroy_dirty_bitmap(free);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800543
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900544 kvm_arch_free_memslot(free, dont);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300545
Avi Kivity6aa8b732006-12-10 02:21:36 -0800546 free->npages = 0;
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500547 free->rmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800548}
549
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800550void kvm_free_physmem(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800551{
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200552 struct kvm_memslots *slots = kvm->memslots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800553 struct kvm_memory_slot *memslot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800554
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800555 kvm_for_each_memslot(memslot, slots)
556 kvm_free_physmem_slot(memslot, NULL);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200557
558 kfree(kvm->memslots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800559}
560
Avi Kivityf17abe92007-02-21 19:28:04 +0200561static void kvm_destroy_vm(struct kvm *kvm)
562{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200563 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200564 struct mm_struct *mm = kvm->mm;
565
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800566 kvm_arch_sync_events(kvm);
Jan Kiszkae935b832011-02-08 12:55:33 +0100567 raw_spin_lock(&kvm_lock);
Avi Kivity133de902007-02-12 00:54:44 -0800568 list_del(&kvm->vm_list);
Jan Kiszkae935b832011-02-08 12:55:33 +0100569 raw_spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200570 kvm_free_irq_routing(kvm);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200571 for (i = 0; i < KVM_NR_BUSES; i++)
572 kvm_io_bus_destroy(kvm->buses[i]);
Avi Kivity980da6c2009-12-20 15:13:43 +0200573 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200574#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
575 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200576#else
577 kvm_arch_flush_shadow(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200578#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800579 kvm_arch_destroy_vm(kvm);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100580 kvm_free_physmem(kvm);
581 cleanup_srcu_struct(&kvm->srcu);
582 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200583 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200584 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200585}
586
Izik Eidusd39f13b2008-03-30 16:01:25 +0300587void kvm_get_kvm(struct kvm *kvm)
588{
589 atomic_inc(&kvm->users_count);
590}
591EXPORT_SYMBOL_GPL(kvm_get_kvm);
592
593void kvm_put_kvm(struct kvm *kvm)
594{
595 if (atomic_dec_and_test(&kvm->users_count))
596 kvm_destroy_vm(kvm);
597}
598EXPORT_SYMBOL_GPL(kvm_put_kvm);
599
600
Avi Kivityf17abe92007-02-21 19:28:04 +0200601static int kvm_vm_release(struct inode *inode, struct file *filp)
602{
603 struct kvm *kvm = filp->private_data;
604
Gregory Haskins721eecb2009-05-20 10:30:49 -0400605 kvm_irqfd_release(kvm);
606
Izik Eidusd39f13b2008-03-30 16:01:25 +0300607 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800608 return 0;
609}
610
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900611/*
612 * Allocation size is twice as large as the actual dirty bitmap size.
Takuya Yoshikawa93474b22012-03-01 19:34:45 +0900613 * See x86's kvm_vm_ioctl_get_dirty_log() why this is needed.
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900614 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900615static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
616{
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900617#ifndef CONFIG_S390
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900618 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900619
Takuya Yoshikawa6f9e5c172010-11-01 14:36:09 +0900620 if (dirty_bytes > PAGE_SIZE)
621 memslot->dirty_bitmap = vzalloc(dirty_bytes);
622 else
623 memslot->dirty_bitmap = kzalloc(dirty_bytes, GFP_KERNEL);
624
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900625 if (!memslot->dirty_bitmap)
626 return -ENOMEM;
627
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900628#endif /* !CONFIG_S390 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900629 return 0;
630}
631
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800632static int cmp_memslot(const void *slot1, const void *slot2)
633{
634 struct kvm_memory_slot *s1, *s2;
635
636 s1 = (struct kvm_memory_slot *)slot1;
637 s2 = (struct kvm_memory_slot *)slot2;
638
639 if (s1->npages < s2->npages)
640 return 1;
641 if (s1->npages > s2->npages)
642 return -1;
643
644 return 0;
645}
646
647/*
648 * Sort the memslots base on its size, so the larger slots
649 * will get better fit.
650 */
651static void sort_memslots(struct kvm_memslots *slots)
652{
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800653 int i;
654
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800655 sort(slots->memslots, KVM_MEM_SLOTS_NUM,
656 sizeof(struct kvm_memory_slot), cmp_memslot, NULL);
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800657
658 for (i = 0; i < KVM_MEM_SLOTS_NUM; i++)
659 slots->id_to_index[slots->memslots[i].id] = i;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800660}
661
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800662void update_memslots(struct kvm_memslots *slots, struct kvm_memory_slot *new)
663{
664 if (new) {
665 int id = new->id;
Xiao Guangrong28a37542011-11-24 19:04:35 +0800666 struct kvm_memory_slot *old = id_to_memslot(slots, id);
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800667 unsigned long npages = old->npages;
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800668
Xiao Guangrong28a37542011-11-24 19:04:35 +0800669 *old = *new;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800670 if (new->npages != npages)
671 sort_memslots(slots);
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800672 }
673
674 slots->generation++;
675}
676
Avi Kivity6aa8b732006-12-10 02:21:36 -0800677/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800678 * Allocate some memory and give it an address in the guest physical address
679 * space.
680 *
681 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800682 *
Marcelo Tosatti10589a42007-12-20 19:18:22 -0500683 * Must be called holding mmap_sem for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800685int __kvm_set_memory_region(struct kvm *kvm,
686 struct kvm_userspace_memory_region *mem,
687 int user_alloc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800688{
Avi Kivity8234b222010-12-27 12:08:45 +0200689 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800690 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200691 unsigned long npages;
692 unsigned long i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800693 struct kvm_memory_slot *memslot;
694 struct kvm_memory_slot old, new;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200695 struct kvm_memslots *slots, *old_memslots;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800696
697 r = -EINVAL;
698 /* General sanity checks */
699 if (mem->memory_size & (PAGE_SIZE - 1))
700 goto out;
701 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
702 goto out;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +0900703 /* We can read the guest memory with __xxx_user() later on. */
704 if (user_alloc &&
705 ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
Heiko Carstens9e3bb6b2011-05-24 07:51:27 +0200706 !access_ok(VERIFY_WRITE,
707 (void __user *)(unsigned long)mem->userspace_addr,
708 mem->memory_size)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600709 goto out;
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800710 if (mem->slot >= KVM_MEM_SLOTS_NUM)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800711 goto out;
712 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
713 goto out;
714
Xiao Guangrong28a37542011-11-24 19:04:35 +0800715 memslot = id_to_memslot(kvm->memslots, mem->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800716 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
717 npages = mem->memory_size >> PAGE_SHIFT;
718
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900719 r = -EINVAL;
720 if (npages > KVM_MEM_MAX_NR_PAGES)
721 goto out;
722
Avi Kivity6aa8b732006-12-10 02:21:36 -0800723 if (!npages)
724 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
725
Avi Kivity6aa8b732006-12-10 02:21:36 -0800726 new = old = *memslot;
727
Avi Kivitye36d96f2010-06-21 10:56:36 +0300728 new.id = mem->slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800729 new.base_gfn = base_gfn;
730 new.npages = npages;
731 new.flags = mem->flags;
732
733 /* Disallow changing a memory slot's size. */
734 r = -EINVAL;
735 if (npages && old.npages && npages != old.npages)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800736 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800737
738 /* Check for overlaps */
739 r = -EEXIST;
740 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200741 struct kvm_memory_slot *s = &kvm->memslots->memslots[i];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800742
Jan Kiszka4cd481f2009-04-13 11:59:32 +0200743 if (s == memslot || !s->npages)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800744 continue;
745 if (!((base_gfn + npages <= s->base_gfn) ||
746 (base_gfn >= s->base_gfn + s->npages)))
Sheng Yangf78e0e22007-10-29 09:40:42 +0800747 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800748 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800749
Avi Kivity6aa8b732006-12-10 02:21:36 -0800750 /* Free page dirty bitmap if unneeded */
751 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000752 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800753
754 r = -ENOMEM;
755
756 /* Allocate if a slot is being created */
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900757 if (npages && !old.npages) {
758 new.user_alloc = user_alloc;
759 new.userspace_addr = mem->userspace_addr;
Carsten Otteeff01142008-06-27 15:05:31 +0200760#ifndef CONFIG_S390
Takuya Yoshikawa26535032010-11-02 10:49:34 +0900761 new.rmap = vzalloc(npages * sizeof(*new.rmap));
Izik Eidus290fc382007-09-27 14:11:22 +0200762 if (!new.rmap)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800763 goto out_free;
Takuya Yoshikawa189a2f72012-02-08 13:01:09 +0900764#endif /* not defined CONFIG_S390 */
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900765 if (kvm_arch_create_memslot(&new, npages))
766 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800767 }
Joerg Roedelec04b262009-06-19 15:16:23 +0200768
Avi Kivity6aa8b732006-12-10 02:21:36 -0800769 /* Allocate page dirty bitmap if needed */
770 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900771 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800772 goto out_free;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200773 /* destroy any largepage mappings for dirty tracking */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800774 }
775
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200776 if (!npages) {
Xiao Guangrong28a37542011-11-24 19:04:35 +0800777 struct kvm_memory_slot *slot;
778
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200779 r = -ENOMEM;
Thomas Meyer6da64fd2011-11-08 20:32:19 +0100780 slots = kmemdup(kvm->memslots, sizeof(struct kvm_memslots),
781 GFP_KERNEL);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200782 if (!slots)
783 goto out_free;
Xiao Guangrong28a37542011-11-24 19:04:35 +0800784 slot = id_to_memslot(slots, mem->slot);
785 slot->flags |= KVM_MEMSLOT_INVALID;
786
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800787 update_memslots(slots, NULL);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200788
789 old_memslots = kvm->memslots;
790 rcu_assign_pointer(kvm->memslots, slots);
791 synchronize_srcu_expedited(&kvm->srcu);
792 /* From this point no new shadow pages pointing to a deleted
793 * memslot will be created.
794 *
795 * validation of sp->gfn happens in:
796 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
797 * - kvm_is_visible_gfn (mmu_check_roots)
798 */
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300799 kvm_arch_flush_shadow(kvm);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200800 kfree(old_memslots);
801 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300802
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200803 r = kvm_arch_prepare_memory_region(kvm, &new, old, mem, user_alloc);
804 if (r)
805 goto out_free;
806
Alex Williamson32f6daa2012-04-11 09:51:49 -0600807 /* map/unmap the pages in iommu page table */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200808 if (npages) {
809 r = kvm_iommu_map_pages(kvm, &new);
810 if (r)
811 goto out_free;
Alex Williamson32f6daa2012-04-11 09:51:49 -0600812 } else
813 kvm_iommu_unmap_pages(kvm, &old);
Andrea Arcangeli604b38a2008-07-25 16:32:03 +0200814
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200815 r = -ENOMEM;
Thomas Meyer6da64fd2011-11-08 20:32:19 +0100816 slots = kmemdup(kvm->memslots, sizeof(struct kvm_memslots),
817 GFP_KERNEL);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200818 if (!slots)
819 goto out_free;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200820
821 /* actual memory is freed via old in kvm_free_physmem_slot below */
822 if (!npages) {
823 new.rmap = NULL;
824 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900825 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200826 }
827
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800828 update_memslots(slots, &new);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200829 old_memslots = kvm->memslots;
830 rcu_assign_pointer(kvm->memslots, slots);
831 synchronize_srcu_expedited(&kvm->srcu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800832
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200833 kvm_arch_commit_memory_region(kvm, mem, old, user_alloc);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800834
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800835 /*
836 * If the new memory slot is created, we need to clear all
837 * mmio sptes.
838 */
839 if (npages && old.base_gfn != mem->guest_phys_addr >> PAGE_SHIFT)
840 kvm_arch_flush_shadow(kvm);
841
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200842 kvm_free_physmem_slot(&old, &new);
843 kfree(old_memslots);
844
Avi Kivity6aa8b732006-12-10 02:21:36 -0800845 return 0;
846
Sheng Yangf78e0e22007-10-29 09:40:42 +0800847out_free:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800848 kvm_free_physmem_slot(&new, &old);
849out:
850 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +0200851
852}
Sheng Yangf78e0e22007-10-29 09:40:42 +0800853EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
854
855int kvm_set_memory_region(struct kvm *kvm,
856 struct kvm_userspace_memory_region *mem,
857 int user_alloc)
858{
859 int r;
860
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200861 mutex_lock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800862 r = __kvm_set_memory_region(kvm, mem, user_alloc);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200863 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800864 return r;
865}
Izik Eidus210c7c42007-10-24 23:52:57 +0200866EXPORT_SYMBOL_GPL(kvm_set_memory_region);
867
Carsten Otte1fe779f2007-10-29 16:08:35 +0100868int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
869 struct
870 kvm_userspace_memory_region *mem,
871 int user_alloc)
Izik Eidus210c7c42007-10-24 23:52:57 +0200872{
Izik Eiduse0d62c72007-10-24 23:57:46 +0200873 if (mem->slot >= KVM_MEMORY_SLOTS)
874 return -EINVAL;
Izik Eidus210c7c42007-10-24 23:52:57 +0200875 return kvm_set_memory_region(kvm, mem, user_alloc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800876}
877
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800878int kvm_get_dirty_log(struct kvm *kvm,
879 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800880{
881 struct kvm_memory_slot *memslot;
882 int r, i;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900883 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800884 unsigned long any = 0;
885
Avi Kivity6aa8b732006-12-10 02:21:36 -0800886 r = -EINVAL;
887 if (log->slot >= KVM_MEMORY_SLOTS)
888 goto out;
889
Xiao Guangrong28a37542011-11-24 19:04:35 +0800890 memslot = id_to_memslot(kvm->memslots, log->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800891 r = -ENOENT;
892 if (!memslot->dirty_bitmap)
893 goto out;
894
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900895 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800896
Uri Lublincd1a4a92007-02-22 16:43:09 +0200897 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800898 any = memslot->dirty_bitmap[i];
899
900 r = -EFAULT;
901 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
902 goto out;
903
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800904 if (any)
905 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906
907 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800908out:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800909 return r;
910}
911
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900912bool kvm_largepages_enabled(void)
913{
914 return largepages_enabled;
915}
916
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300917void kvm_disable_largepages(void)
918{
919 largepages_enabled = false;
920}
921EXPORT_SYMBOL_GPL(kvm_disable_largepages);
922
Izik Eiduscea7bb22007-10-17 19:17:48 +0200923int is_error_page(struct page *page)
924{
Gleb Natapovedba23e2010-07-07 20:16:45 +0300925 return page == bad_page || page == hwpoison_page || page == fault_page;
Izik Eiduscea7bb22007-10-17 19:17:48 +0200926}
927EXPORT_SYMBOL_GPL(is_error_page);
928
Anthony Liguori35149e22008-04-02 14:46:56 -0500929int is_error_pfn(pfn_t pfn)
930{
Gleb Natapovedba23e2010-07-07 20:16:45 +0300931 return pfn == bad_pfn || pfn == hwpoison_pfn || pfn == fault_pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -0500932}
933EXPORT_SYMBOL_GPL(is_error_pfn);
934
Huang Yingbf998152010-05-31 14:28:19 +0800935int is_hwpoison_pfn(pfn_t pfn)
936{
937 return pfn == hwpoison_pfn;
938}
939EXPORT_SYMBOL_GPL(is_hwpoison_pfn);
940
Gleb Natapovedba23e2010-07-07 20:16:45 +0300941int is_fault_pfn(pfn_t pfn)
942{
943 return pfn == fault_pfn;
944}
945EXPORT_SYMBOL_GPL(is_fault_pfn);
946
Xiao Guangrongfce92dc2011-07-12 03:28:54 +0800947int is_noslot_pfn(pfn_t pfn)
948{
949 return pfn == bad_pfn;
950}
951EXPORT_SYMBOL_GPL(is_noslot_pfn);
952
953int is_invalid_pfn(pfn_t pfn)
954{
955 return pfn == hwpoison_pfn || pfn == fault_pfn;
956}
957EXPORT_SYMBOL_GPL(is_invalid_pfn);
958
Izik Eidusf9d46eb2007-11-11 22:02:22 +0200959static inline unsigned long bad_hva(void)
960{
961 return PAGE_OFFSET;
962}
963
964int kvm_is_error_hva(unsigned long addr)
965{
966 return addr == bad_hva();
967}
968EXPORT_SYMBOL_GPL(kvm_is_error_hva);
969
Gleb Natapov49c77542010-10-18 15:22:23 +0200970struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
971{
972 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
973}
Avi Kivitya1f4d3952010-06-21 11:44:20 +0300974EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800975
Izik Eiduse0d62c72007-10-24 23:57:46 +0200976int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
977{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800978 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +0200979
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800980 if (!memslot || memslot->id >= KVM_MEMORY_SLOTS ||
981 memslot->flags & KVM_MEMSLOT_INVALID)
982 return 0;
Izik Eiduse0d62c72007-10-24 23:57:46 +0200983
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800984 return 1;
Izik Eiduse0d62c72007-10-24 23:57:46 +0200985}
986EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
987
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100988unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
989{
990 struct vm_area_struct *vma;
991 unsigned long addr, size;
992
993 size = PAGE_SIZE;
994
995 addr = gfn_to_hva(kvm, gfn);
996 if (kvm_is_error_hva(addr))
997 return PAGE_SIZE;
998
999 down_read(&current->mm->mmap_sem);
1000 vma = find_vma(current->mm, addr);
1001 if (!vma)
1002 goto out;
1003
1004 size = vma_kernel_pagesize(vma);
1005
1006out:
1007 up_read(&current->mm->mmap_sem);
1008
1009 return size;
1010}
1011
Gleb Natapov49c77542010-10-18 15:22:23 +02001012static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
Xiao Guangrong48987782010-08-22 19:11:43 +08001013 gfn_t *nr_pages)
Izik Eidus539cb662007-11-11 22:05:04 +02001014{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001015 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Izik Eidus539cb662007-11-11 22:05:04 +02001016 return bad_hva();
Xiao Guangrong48987782010-08-22 19:11:43 +08001017
1018 if (nr_pages)
1019 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1020
Takuya Yoshikawaf5c98032010-02-25 11:33:19 +09001021 return gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001022}
Xiao Guangrong48987782010-08-22 19:11:43 +08001023
1024unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1025{
Gleb Natapov49c77542010-10-18 15:22:23 +02001026 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001027}
Sheng Yang0d150292008-04-25 21:44:50 +08001028EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001029
Gleb Natapov80300892010-10-19 18:13:41 +02001030static pfn_t get_fault_pfn(void)
1031{
1032 get_page(fault_page);
1033 return fault_pfn;
1034}
1035
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001036int get_user_page_nowait(struct task_struct *tsk, struct mm_struct *mm,
1037 unsigned long start, int write, struct page **page)
1038{
1039 int flags = FOLL_TOUCH | FOLL_NOWAIT | FOLL_HWPOISON | FOLL_GET;
1040
1041 if (write)
1042 flags |= FOLL_WRITE;
1043
1044 return __get_user_pages(tsk, mm, start, 1, flags, page, NULL, NULL);
1045}
1046
Huang Yingfafc3db2011-01-30 11:15:49 +08001047static inline int check_user_page_hwpoison(unsigned long addr)
1048{
1049 int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE;
1050
1051 rc = __get_user_pages(current, current->mm, addr, 1,
1052 flags, NULL, NULL, NULL);
1053 return rc == -EHWPOISON;
1054}
1055
Gleb Natapovaf585b92010-10-14 11:22:46 +02001056static pfn_t hva_to_pfn(struct kvm *kvm, unsigned long addr, bool atomic,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001057 bool *async, bool write_fault, bool *writable)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001058{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001059 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001060 int npages = 0;
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001061 pfn_t pfn;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001062
Gleb Natapovaf585b92010-10-14 11:22:46 +02001063 /* we can do it either atomically or asynchronously, not both */
1064 BUG_ON(atomic && async);
1065
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001066 BUG_ON(!write_fault && !writable);
1067
1068 if (writable)
1069 *writable = true;
1070
Gleb Natapovaf585b92010-10-14 11:22:46 +02001071 if (atomic || async)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001072 npages = __get_user_pages_fast(addr, 1, 1, page);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001073
1074 if (unlikely(npages != 1) && !atomic) {
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001075 might_sleep();
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001076
1077 if (writable)
1078 *writable = write_fault;
1079
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001080 if (async) {
1081 down_read(&current->mm->mmap_sem);
1082 npages = get_user_page_nowait(current, current->mm,
1083 addr, write_fault, page);
1084 up_read(&current->mm->mmap_sem);
1085 } else
1086 npages = get_user_pages_fast(addr, 1, write_fault,
1087 page);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001088
1089 /* map read fault as writable if possible */
1090 if (unlikely(!write_fault) && npages == 1) {
1091 struct page *wpage[1];
1092
1093 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1094 if (npages == 1) {
1095 *writable = true;
1096 put_page(page[0]);
1097 page[0] = wpage[0];
1098 }
1099 npages = 1;
1100 }
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001101 }
Izik Eidus539cb662007-11-11 22:05:04 +02001102
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001103 if (unlikely(npages != 1)) {
1104 struct vm_area_struct *vma;
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001105
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001106 if (atomic)
Gleb Natapov80300892010-10-19 18:13:41 +02001107 return get_fault_pfn();
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001108
Huang Yingbbeb3402010-06-22 14:23:11 +08001109 down_read(&current->mm->mmap_sem);
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001110 if (npages == -EHWPOISON ||
1111 (!async && check_user_page_hwpoison(addr))) {
Huang Yingbbeb3402010-06-22 14:23:11 +08001112 up_read(&current->mm->mmap_sem);
Huang Yingbf998152010-05-31 14:28:19 +08001113 get_page(hwpoison_page);
1114 return page_to_pfn(hwpoison_page);
1115 }
1116
Gleb Natapov80300892010-10-19 18:13:41 +02001117 vma = find_vma_intersection(current->mm, addr, addr+1);
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001118
Gleb Natapov80300892010-10-19 18:13:41 +02001119 if (vma == NULL)
1120 pfn = get_fault_pfn();
1121 else if ((vma->vm_flags & VM_PFNMAP)) {
1122 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1123 vma->vm_pgoff;
1124 BUG_ON(!kvm_is_mmio_pfn(pfn));
1125 } else {
1126 if (async && (vma->vm_flags & VM_WRITE))
Gleb Natapovaf585b92010-10-14 11:22:46 +02001127 *async = true;
Gleb Natapov80300892010-10-19 18:13:41 +02001128 pfn = get_fault_pfn();
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001129 }
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001130 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001131 } else
1132 pfn = page_to_pfn(page[0]);
1133
1134 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001135}
1136
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001137pfn_t hva_to_pfn_atomic(struct kvm *kvm, unsigned long addr)
1138{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001139 return hva_to_pfn(kvm, addr, true, NULL, true, NULL);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001140}
1141EXPORT_SYMBOL_GPL(hva_to_pfn_atomic);
1142
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001143static pfn_t __gfn_to_pfn(struct kvm *kvm, gfn_t gfn, bool atomic, bool *async,
1144 bool write_fault, bool *writable)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001145{
1146 unsigned long addr;
1147
Gleb Natapovaf585b92010-10-14 11:22:46 +02001148 if (async)
1149 *async = false;
1150
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001151 addr = gfn_to_hva(kvm, gfn);
1152 if (kvm_is_error_hva(addr)) {
1153 get_page(bad_page);
1154 return page_to_pfn(bad_page);
1155 }
1156
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001157 return hva_to_pfn(kvm, addr, atomic, async, write_fault, writable);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001158}
1159
1160pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1161{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001162 return __gfn_to_pfn(kvm, gfn, true, NULL, true, NULL);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001163}
1164EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1165
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001166pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
1167 bool write_fault, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02001168{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001169 return __gfn_to_pfn(kvm, gfn, false, async, write_fault, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001170}
1171EXPORT_SYMBOL_GPL(gfn_to_pfn_async);
1172
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001173pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1174{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001175 return __gfn_to_pfn(kvm, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001176}
Anthony Liguori35149e22008-04-02 14:46:56 -05001177EXPORT_SYMBOL_GPL(gfn_to_pfn);
1178
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001179pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1180 bool *writable)
1181{
1182 return __gfn_to_pfn(kvm, gfn, false, NULL, write_fault, writable);
1183}
1184EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1185
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001186pfn_t gfn_to_pfn_memslot(struct kvm *kvm,
1187 struct kvm_memory_slot *slot, gfn_t gfn)
1188{
1189 unsigned long addr = gfn_to_hva_memslot(slot, gfn);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001190 return hva_to_pfn(kvm, addr, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001191}
1192
Xiao Guangrong48987782010-08-22 19:11:43 +08001193int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
1194 int nr_pages)
1195{
1196 unsigned long addr;
1197 gfn_t entry;
1198
Gleb Natapov49c77542010-10-18 15:22:23 +02001199 addr = gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001200 if (kvm_is_error_hva(addr))
1201 return -1;
1202
1203 if (entry < nr_pages)
1204 return 0;
1205
1206 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1207}
1208EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1209
Anthony Liguori35149e22008-04-02 14:46:56 -05001210struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1211{
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001212 pfn_t pfn;
1213
1214 pfn = gfn_to_pfn(kvm, gfn);
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001215 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001216 return pfn_to_page(pfn);
1217
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001218 WARN_ON(kvm_is_mmio_pfn(pfn));
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001219
1220 get_page(bad_page);
1221 return bad_page;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001222}
Anthony Liguoriaab61cc2007-10-29 15:15:20 -05001223
Avi Kivity954bbbc2007-03-30 14:02:32 +03001224EXPORT_SYMBOL_GPL(gfn_to_page);
1225
Izik Eidusb4231d62007-11-20 11:49:33 +02001226void kvm_release_page_clean(struct page *page)
1227{
Anthony Liguori35149e22008-04-02 14:46:56 -05001228 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001229}
1230EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1231
Anthony Liguori35149e22008-04-02 14:46:56 -05001232void kvm_release_pfn_clean(pfn_t pfn)
1233{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001234 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001235 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001236}
1237EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1238
Izik Eidusb4231d62007-11-20 11:49:33 +02001239void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001240{
Anthony Liguori35149e22008-04-02 14:46:56 -05001241 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001242}
Izik Eidusb4231d62007-11-20 11:49:33 +02001243EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001244
Anthony Liguori35149e22008-04-02 14:46:56 -05001245void kvm_release_pfn_dirty(pfn_t pfn)
1246{
1247 kvm_set_pfn_dirty(pfn);
1248 kvm_release_pfn_clean(pfn);
1249}
1250EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty);
1251
1252void kvm_set_page_dirty(struct page *page)
1253{
1254 kvm_set_pfn_dirty(page_to_pfn(page));
1255}
1256EXPORT_SYMBOL_GPL(kvm_set_page_dirty);
1257
1258void kvm_set_pfn_dirty(pfn_t pfn)
1259{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001260 if (!kvm_is_mmio_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001261 struct page *page = pfn_to_page(pfn);
1262 if (!PageReserved(page))
1263 SetPageDirty(page);
1264 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001265}
1266EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1267
1268void kvm_set_pfn_accessed(pfn_t pfn)
1269{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001270 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001271 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001272}
1273EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1274
1275void kvm_get_pfn(pfn_t pfn)
1276{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001277 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001278 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001279}
1280EXPORT_SYMBOL_GPL(kvm_get_pfn);
1281
Izik Eidus195aefd2007-10-01 22:14:18 +02001282static int next_segment(unsigned long len, int offset)
1283{
1284 if (len > PAGE_SIZE - offset)
1285 return PAGE_SIZE - offset;
1286 else
1287 return len;
1288}
1289
1290int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1291 int len)
1292{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001293 int r;
1294 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001295
Izik Eiduse0506bc2007-11-11 22:10:22 +02001296 addr = gfn_to_hva(kvm, gfn);
1297 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001298 return -EFAULT;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +09001299 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001300 if (r)
1301 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001302 return 0;
1303}
1304EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1305
1306int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1307{
1308 gfn_t gfn = gpa >> PAGE_SHIFT;
1309 int seg;
1310 int offset = offset_in_page(gpa);
1311 int ret;
1312
1313 while ((seg = next_segment(len, offset)) != 0) {
1314 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1315 if (ret < 0)
1316 return ret;
1317 offset = 0;
1318 len -= seg;
1319 data += seg;
1320 ++gfn;
1321 }
1322 return 0;
1323}
1324EXPORT_SYMBOL_GPL(kvm_read_guest);
1325
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001326int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1327 unsigned long len)
1328{
1329 int r;
1330 unsigned long addr;
1331 gfn_t gfn = gpa >> PAGE_SHIFT;
1332 int offset = offset_in_page(gpa);
1333
1334 addr = gfn_to_hva(kvm, gfn);
1335 if (kvm_is_error_hva(addr))
1336 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001337 pagefault_disable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001338 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001339 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001340 if (r)
1341 return -EFAULT;
1342 return 0;
1343}
1344EXPORT_SYMBOL(kvm_read_guest_atomic);
1345
Izik Eidus195aefd2007-10-01 22:14:18 +02001346int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1347 int offset, int len)
1348{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001349 int r;
1350 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001351
Izik Eiduse0506bc2007-11-11 22:10:22 +02001352 addr = gfn_to_hva(kvm, gfn);
1353 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001354 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001355 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001356 if (r)
1357 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001358 mark_page_dirty(kvm, gfn);
1359 return 0;
1360}
1361EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1362
1363int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1364 unsigned long len)
1365{
1366 gfn_t gfn = gpa >> PAGE_SHIFT;
1367 int seg;
1368 int offset = offset_in_page(gpa);
1369 int ret;
1370
1371 while ((seg = next_segment(len, offset)) != 0) {
1372 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1373 if (ret < 0)
1374 return ret;
1375 offset = 0;
1376 len -= seg;
1377 data += seg;
1378 ++gfn;
1379 }
1380 return 0;
1381}
1382
Gleb Natapov49c77542010-10-18 15:22:23 +02001383int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1384 gpa_t gpa)
1385{
1386 struct kvm_memslots *slots = kvm_memslots(kvm);
1387 int offset = offset_in_page(gpa);
1388 gfn_t gfn = gpa >> PAGE_SHIFT;
1389
1390 ghc->gpa = gpa;
1391 ghc->generation = slots->generation;
Paul Mackerras9d4cba72012-01-12 20:09:51 +00001392 ghc->memslot = gfn_to_memslot(kvm, gfn);
Gleb Natapov49c77542010-10-18 15:22:23 +02001393 ghc->hva = gfn_to_hva_many(ghc->memslot, gfn, NULL);
1394 if (!kvm_is_error_hva(ghc->hva))
1395 ghc->hva += offset;
1396 else
1397 return -EFAULT;
1398
1399 return 0;
1400}
1401EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1402
1403int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1404 void *data, unsigned long len)
1405{
1406 struct kvm_memslots *slots = kvm_memslots(kvm);
1407 int r;
1408
1409 if (slots->generation != ghc->generation)
1410 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa);
1411
1412 if (kvm_is_error_hva(ghc->hva))
1413 return -EFAULT;
1414
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001415 r = __copy_to_user((void __user *)ghc->hva, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001416 if (r)
1417 return -EFAULT;
1418 mark_page_dirty_in_slot(kvm, ghc->memslot, ghc->gpa >> PAGE_SHIFT);
1419
1420 return 0;
1421}
1422EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1423
Gleb Natapove03b6442011-07-11 15:28:11 -04001424int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1425 void *data, unsigned long len)
1426{
1427 struct kvm_memslots *slots = kvm_memslots(kvm);
1428 int r;
1429
1430 if (slots->generation != ghc->generation)
1431 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa);
1432
1433 if (kvm_is_error_hva(ghc->hva))
1434 return -EFAULT;
1435
1436 r = __copy_from_user(data, (void __user *)ghc->hva, len);
1437 if (r)
1438 return -EFAULT;
1439
1440 return 0;
1441}
1442EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
1443
Izik Eidus195aefd2007-10-01 22:14:18 +02001444int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1445{
Heiko Carstens3bcc8a82010-10-27 17:21:21 +02001446 return kvm_write_guest_page(kvm, gfn, (const void *) empty_zero_page,
1447 offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02001448}
1449EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1450
1451int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1452{
1453 gfn_t gfn = gpa >> PAGE_SHIFT;
1454 int seg;
1455 int offset = offset_in_page(gpa);
1456 int ret;
1457
1458 while ((seg = next_segment(len, offset)) != 0) {
1459 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1460 if (ret < 0)
1461 return ret;
1462 offset = 0;
1463 len -= seg;
1464 ++gfn;
1465 }
1466 return 0;
1467}
1468EXPORT_SYMBOL_GPL(kvm_clear_guest);
1469
Gleb Natapov49c77542010-10-18 15:22:23 +02001470void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot,
1471 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001472{
Rusty Russell7e9d6192007-07-31 20:41:14 +10001473 if (memslot && memslot->dirty_bitmap) {
1474 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001475
Takuya Yoshikawa93474b22012-03-01 19:34:45 +09001476 /* TODO: introduce set_bit_le() and use it */
1477 test_and_set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001478 }
1479}
1480
Gleb Natapov49c77542010-10-18 15:22:23 +02001481void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1482{
1483 struct kvm_memory_slot *memslot;
1484
1485 memslot = gfn_to_memslot(kvm, gfn);
1486 mark_page_dirty_in_slot(kvm, memslot, gfn);
1487}
1488
Eddie Dongb6958ce2007-07-18 12:15:21 +03001489/*
1490 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1491 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05001492void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001493{
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001494 DEFINE_WAIT(wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001495
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001496 for (;;) {
1497 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001498
Gleb Natapova1b37102009-07-09 15:33:52 +03001499 if (kvm_arch_vcpu_runnable(vcpu)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03001500 kvm_make_request(KVM_REQ_UNHALT, vcpu);
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001501 break;
Marcelo Tosattid7690172008-09-08 15:23:48 -03001502 }
Gleb Natapov09cec752009-03-23 15:11:44 +02001503 if (kvm_cpu_has_pending_timer(vcpu))
1504 break;
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001505 if (signal_pending(current))
1506 break;
1507
Eddie Dongb6958ce2007-07-18 12:15:21 +03001508 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03001509 }
1510
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001511 finish_wait(&vcpu->wq, &wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001512}
1513
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001514#ifndef CONFIG_S390
Christoffer Dallb6d33832012-03-08 16:44:24 -05001515/*
1516 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
1517 */
1518void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
1519{
1520 int me;
1521 int cpu = vcpu->cpu;
1522 wait_queue_head_t *wqp;
1523
1524 wqp = kvm_arch_vcpu_wq(vcpu);
1525 if (waitqueue_active(wqp)) {
1526 wake_up_interruptible(wqp);
1527 ++vcpu->stat.halt_wakeup;
1528 }
1529
1530 me = get_cpu();
1531 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
1532 if (kvm_arch_vcpu_should_kick(vcpu))
1533 smp_send_reschedule(cpu);
1534 put_cpu();
1535}
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001536#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05001537
Avi Kivity6aa8b732006-12-10 02:21:36 -08001538void kvm_resched(struct kvm_vcpu *vcpu)
1539{
Yaozu Dong3fca0362007-04-25 16:49:19 +03001540 if (!need_resched())
1541 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001542 cond_resched();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001543}
1544EXPORT_SYMBOL_GPL(kvm_resched);
1545
Konstantin Weitz41628d32012-04-25 15:30:38 +02001546bool kvm_vcpu_yield_to(struct kvm_vcpu *target)
1547{
1548 struct pid *pid;
1549 struct task_struct *task = NULL;
1550
1551 rcu_read_lock();
1552 pid = rcu_dereference(target->pid);
1553 if (pid)
1554 task = get_pid_task(target->pid, PIDTYPE_PID);
1555 rcu_read_unlock();
1556 if (!task)
1557 return false;
1558 if (task->flags & PF_VCPU) {
1559 put_task_struct(task);
1560 return false;
1561 }
1562 if (yield_to(task, 1)) {
1563 put_task_struct(task);
1564 return true;
1565 }
1566 put_task_struct(task);
1567 return false;
1568}
1569EXPORT_SYMBOL_GPL(kvm_vcpu_yield_to);
1570
Rik van Riel217ece62011-02-01 09:53:28 -05001571void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001572{
Rik van Riel217ece62011-02-01 09:53:28 -05001573 struct kvm *kvm = me->kvm;
1574 struct kvm_vcpu *vcpu;
1575 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
1576 int yielded = 0;
1577 int pass;
1578 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001579
Rik van Riel217ece62011-02-01 09:53:28 -05001580 /*
1581 * We boost the priority of a VCPU that is runnable but not
1582 * currently running, because it got preempted by something
1583 * else and called schedule in __vcpu_run. Hopefully that
1584 * VCPU is holding the lock that we need and will release it.
1585 * We approximate round-robin by starting at the last boosted VCPU.
1586 */
1587 for (pass = 0; pass < 2 && !yielded; pass++) {
1588 kvm_for_each_vcpu(i, vcpu, kvm) {
Rik van Riel217ece62011-02-01 09:53:28 -05001589 if (!pass && i < last_boosted_vcpu) {
1590 i = last_boosted_vcpu;
1591 continue;
1592 } else if (pass && i > last_boosted_vcpu)
1593 break;
1594 if (vcpu == me)
1595 continue;
1596 if (waitqueue_active(&vcpu->wq))
1597 continue;
Konstantin Weitz41628d32012-04-25 15:30:38 +02001598 if (kvm_vcpu_yield_to(vcpu)) {
Rik van Riel217ece62011-02-01 09:53:28 -05001599 kvm->last_boosted_vcpu = i;
1600 yielded = 1;
1601 break;
1602 }
Rik van Riel217ece62011-02-01 09:53:28 -05001603 }
1604 }
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001605}
1606EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
1607
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001608static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001609{
1610 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001611 struct page *page;
1612
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001613 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02001614 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02001615#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001616 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001617 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02001618#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02001619#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1620 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1621 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
1622#endif
Avi Kivity039576c2007-03-20 12:46:50 +02001623 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01001624 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001625 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001626 vmf->page = page;
1627 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001628}
1629
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001630static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001631 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001632};
1633
1634static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1635{
1636 vma->vm_ops = &kvm_vcpu_vm_ops;
1637 return 0;
1638}
1639
Avi Kivitybccf2152007-02-21 18:04:26 +02001640static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1641{
1642 struct kvm_vcpu *vcpu = filp->private_data;
1643
Al Viro66c0b392008-04-19 20:33:56 +01001644 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001645 return 0;
1646}
1647
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001648static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02001649 .release = kvm_vcpu_release,
1650 .unlocked_ioctl = kvm_vcpu_ioctl,
Alexander Graf1dda6062011-06-08 02:45:37 +02001651#ifdef CONFIG_COMPAT
1652 .compat_ioctl = kvm_vcpu_compat_ioctl,
1653#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001654 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001655 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02001656};
1657
1658/*
1659 * Allocates an inode for the vcpu.
1660 */
1661static int create_vcpu_fd(struct kvm_vcpu *vcpu)
1662{
Roland Dreier628ff7c2009-12-18 09:41:24 -08001663 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR);
Avi Kivitybccf2152007-02-21 18:04:26 +02001664}
1665
Avi Kivityc5ea7662007-02-20 18:41:05 +02001666/*
1667 * Creates some virtual cpus. Good luck creating more than one.
1668 */
Gleb Natapov73880c82009-06-09 15:56:28 +03001669static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02001670{
1671 int r;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001672 struct kvm_vcpu *vcpu, *v;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001673
Gleb Natapov73880c82009-06-09 15:56:28 +03001674 vcpu = kvm_arch_vcpu_create(kvm, id);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001675 if (IS_ERR(vcpu))
1676 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001677
Avi Kivity15ad7142007-07-11 18:17:21 +03001678 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
1679
Avi Kivity26e52152007-11-20 15:30:24 +02001680 r = kvm_arch_vcpu_setup(vcpu);
1681 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02001682 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02001683
Shaohua Li11ec2802007-07-23 14:51:37 +08001684 mutex_lock(&kvm->lock);
Avi Kivity3e515702012-03-05 14:23:29 +02001685 if (!kvm_vcpu_compatible(vcpu)) {
1686 r = -EINVAL;
1687 goto unlock_vcpu_destroy;
1688 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001689 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
1690 r = -EINVAL;
Jan Kiszkad7805922011-05-23 10:33:05 +02001691 goto unlock_vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001692 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001693
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001694 kvm_for_each_vcpu(r, v, kvm)
1695 if (v->vcpu_id == id) {
Gleb Natapov73880c82009-06-09 15:56:28 +03001696 r = -EEXIST;
Jan Kiszkad7805922011-05-23 10:33:05 +02001697 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03001698 }
1699
1700 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001701
1702 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01001703 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001704 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03001705 if (r < 0) {
1706 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02001707 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03001708 }
1709
1710 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
1711 smp_wmb();
1712 atomic_inc(&kvm->online_vcpus);
1713
Gleb Natapov73880c82009-06-09 15:56:28 +03001714 mutex_unlock(&kvm->lock);
Avi Kivitybccf2152007-02-21 18:04:26 +02001715 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001716
Jan Kiszkad7805922011-05-23 10:33:05 +02001717unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03001718 mutex_unlock(&kvm->lock);
Jan Kiszkad7805922011-05-23 10:33:05 +02001719vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06001720 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001721 return r;
1722}
1723
Avi Kivity1961d272007-03-05 19:46:05 +02001724static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
1725{
1726 if (sigset) {
1727 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
1728 vcpu->sigset_active = 1;
1729 vcpu->sigset = *sigset;
1730 } else
1731 vcpu->sigset_active = 0;
1732 return 0;
1733}
1734
Avi Kivitybccf2152007-02-21 18:04:26 +02001735static long kvm_vcpu_ioctl(struct file *filp,
1736 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001737{
Avi Kivitybccf2152007-02-21 18:04:26 +02001738 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00001739 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02001740 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001741 struct kvm_fpu *fpu = NULL;
1742 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001743
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001744 if (vcpu->kvm->mm != current->mm)
1745 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03001746
1747#if defined(CONFIG_S390) || defined(CONFIG_PPC)
1748 /*
1749 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
1750 * so vcpu_load() would break it.
1751 */
1752 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_INTERRUPT)
1753 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
1754#endif
1755
1756
1757 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001758 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001759 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02001760 r = -EINVAL;
1761 if (arg)
1762 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05001763 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02001764 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001765 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001766 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001767 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001768
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001769 r = -ENOMEM;
1770 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1771 if (!kvm_regs)
1772 goto out;
1773 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001774 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001775 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001776 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001777 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
1778 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001779 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001780out_free1:
1781 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001782 break;
1783 }
1784 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001785 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001786
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001787 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001788 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
1789 if (IS_ERR(kvm_regs)) {
1790 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001791 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001792 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001793 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001794 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001795 goto out_free2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001796 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001797out_free2:
1798 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001799 break;
1800 }
1801 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001802 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1803 r = -ENOMEM;
1804 if (!kvm_sregs)
1805 goto out;
1806 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001807 if (r)
1808 goto out;
1809 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001810 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001811 goto out;
1812 r = 0;
1813 break;
1814 }
1815 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02001816 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
1817 if (IS_ERR(kvm_sregs)) {
1818 r = PTR_ERR(kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001819 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001820 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07001821 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001822 if (r)
1823 goto out;
1824 r = 0;
1825 break;
1826 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03001827 case KVM_GET_MP_STATE: {
1828 struct kvm_mp_state mp_state;
1829
1830 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
1831 if (r)
1832 goto out;
1833 r = -EFAULT;
1834 if (copy_to_user(argp, &mp_state, sizeof mp_state))
1835 goto out;
1836 r = 0;
1837 break;
1838 }
1839 case KVM_SET_MP_STATE: {
1840 struct kvm_mp_state mp_state;
1841
1842 r = -EFAULT;
1843 if (copy_from_user(&mp_state, argp, sizeof mp_state))
1844 goto out;
1845 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
1846 if (r)
1847 goto out;
1848 r = 0;
1849 break;
1850 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001851 case KVM_TRANSLATE: {
1852 struct kvm_translation tr;
1853
1854 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00001855 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001856 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08001857 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001858 if (r)
1859 goto out;
1860 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00001861 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001862 goto out;
1863 r = 0;
1864 break;
1865 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001866 case KVM_SET_GUEST_DEBUG: {
1867 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001868
1869 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00001870 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001871 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001872 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001873 if (r)
1874 goto out;
1875 r = 0;
1876 break;
1877 }
Avi Kivity1961d272007-03-05 19:46:05 +02001878 case KVM_SET_SIGNAL_MASK: {
1879 struct kvm_signal_mask __user *sigmask_arg = argp;
1880 struct kvm_signal_mask kvm_sigmask;
1881 sigset_t sigset, *p;
1882
1883 p = NULL;
1884 if (argp) {
1885 r = -EFAULT;
1886 if (copy_from_user(&kvm_sigmask, argp,
1887 sizeof kvm_sigmask))
1888 goto out;
1889 r = -EINVAL;
1890 if (kvm_sigmask.len != sizeof sigset)
1891 goto out;
1892 r = -EFAULT;
1893 if (copy_from_user(&sigset, sigmask_arg->sigset,
1894 sizeof sigset))
1895 goto out;
1896 p = &sigset;
1897 }
Andi Kleen376d41f2010-06-10 13:10:47 +02001898 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02001899 break;
1900 }
Avi Kivityb8836732007-04-01 16:34:31 +03001901 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001902 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
1903 r = -ENOMEM;
1904 if (!fpu)
1905 goto out;
1906 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03001907 if (r)
1908 goto out;
1909 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001910 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03001911 goto out;
1912 r = 0;
1913 break;
1914 }
1915 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02001916 fpu = memdup_user(argp, sizeof(*fpu));
1917 if (IS_ERR(fpu)) {
1918 r = PTR_ERR(fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03001919 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001920 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07001921 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03001922 if (r)
1923 goto out;
1924 r = 0;
1925 break;
1926 }
Avi Kivitybccf2152007-02-21 18:04:26 +02001927 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02001928 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02001929 }
1930out:
Avi Kivity2122ff52010-05-13 11:25:04 +03001931 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07001932 kfree(fpu);
1933 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02001934 return r;
1935}
1936
Alexander Graf1dda6062011-06-08 02:45:37 +02001937#ifdef CONFIG_COMPAT
1938static long kvm_vcpu_compat_ioctl(struct file *filp,
1939 unsigned int ioctl, unsigned long arg)
1940{
1941 struct kvm_vcpu *vcpu = filp->private_data;
1942 void __user *argp = compat_ptr(arg);
1943 int r;
1944
1945 if (vcpu->kvm->mm != current->mm)
1946 return -EIO;
1947
1948 switch (ioctl) {
1949 case KVM_SET_SIGNAL_MASK: {
1950 struct kvm_signal_mask __user *sigmask_arg = argp;
1951 struct kvm_signal_mask kvm_sigmask;
1952 compat_sigset_t csigset;
1953 sigset_t sigset;
1954
1955 if (argp) {
1956 r = -EFAULT;
1957 if (copy_from_user(&kvm_sigmask, argp,
1958 sizeof kvm_sigmask))
1959 goto out;
1960 r = -EINVAL;
1961 if (kvm_sigmask.len != sizeof csigset)
1962 goto out;
1963 r = -EFAULT;
1964 if (copy_from_user(&csigset, sigmask_arg->sigset,
1965 sizeof csigset))
1966 goto out;
1967 }
1968 sigset_from_compat(&sigset, &csigset);
1969 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
1970 break;
1971 }
1972 default:
1973 r = kvm_vcpu_ioctl(filp, ioctl, arg);
1974 }
1975
1976out:
1977 return r;
1978}
1979#endif
1980
Avi Kivitybccf2152007-02-21 18:04:26 +02001981static long kvm_vm_ioctl(struct file *filp,
1982 unsigned int ioctl, unsigned long arg)
1983{
1984 struct kvm *kvm = filp->private_data;
1985 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01001986 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02001987
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001988 if (kvm->mm != current->mm)
1989 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02001990 switch (ioctl) {
1991 case KVM_CREATE_VCPU:
1992 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
1993 if (r < 0)
1994 goto out;
1995 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02001996 case KVM_SET_USER_MEMORY_REGION: {
1997 struct kvm_userspace_memory_region kvm_userspace_mem;
1998
1999 r = -EFAULT;
2000 if (copy_from_user(&kvm_userspace_mem, argp,
2001 sizeof kvm_userspace_mem))
2002 goto out;
2003
2004 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002005 if (r)
2006 goto out;
2007 break;
2008 }
2009 case KVM_GET_DIRTY_LOG: {
2010 struct kvm_dirty_log log;
2011
2012 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002013 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002014 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002015 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002016 if (r)
2017 goto out;
2018 break;
2019 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02002020#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2021 case KVM_REGISTER_COALESCED_MMIO: {
2022 struct kvm_coalesced_mmio_zone zone;
2023 r = -EFAULT;
2024 if (copy_from_user(&zone, argp, sizeof zone))
2025 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002026 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
2027 if (r)
2028 goto out;
2029 r = 0;
2030 break;
2031 }
2032 case KVM_UNREGISTER_COALESCED_MMIO: {
2033 struct kvm_coalesced_mmio_zone zone;
2034 r = -EFAULT;
2035 if (copy_from_user(&zone, argp, sizeof zone))
2036 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002037 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
2038 if (r)
2039 goto out;
2040 r = 0;
2041 break;
2042 }
2043#endif
Gregory Haskins721eecb2009-05-20 10:30:49 -04002044 case KVM_IRQFD: {
2045 struct kvm_irqfd data;
2046
2047 r = -EFAULT;
2048 if (copy_from_user(&data, argp, sizeof data))
2049 goto out;
Alex Williamsond4db2932012-06-29 09:56:08 -06002050 r = kvm_irqfd(kvm, &data);
Gregory Haskins721eecb2009-05-20 10:30:49 -04002051 break;
2052 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002053 case KVM_IOEVENTFD: {
2054 struct kvm_ioeventfd data;
2055
2056 r = -EFAULT;
2057 if (copy_from_user(&data, argp, sizeof data))
2058 goto out;
2059 r = kvm_ioeventfd(kvm, &data);
2060 break;
2061 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002062#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2063 case KVM_SET_BOOT_CPU_ID:
2064 r = 0;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002065 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002066 if (atomic_read(&kvm->online_vcpus) != 0)
2067 r = -EBUSY;
2068 else
2069 kvm->bsp_vcpu_id = arg;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002070 mutex_unlock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002071 break;
2072#endif
Jan Kiszka07975ad2012-03-29 21:14:12 +02002073#ifdef CONFIG_HAVE_KVM_MSI
2074 case KVM_SIGNAL_MSI: {
2075 struct kvm_msi msi;
2076
2077 r = -EFAULT;
2078 if (copy_from_user(&msi, argp, sizeof msi))
2079 goto out;
2080 r = kvm_send_userspace_msi(kvm, &msi);
2081 break;
2082 }
2083#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02002084 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01002085 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivitybfd99ff2009-08-26 14:57:50 +03002086 if (r == -ENOTTY)
2087 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002088 }
2089out:
2090 return r;
2091}
2092
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002093#ifdef CONFIG_COMPAT
2094struct compat_kvm_dirty_log {
2095 __u32 slot;
2096 __u32 padding1;
2097 union {
2098 compat_uptr_t dirty_bitmap; /* one bit per page */
2099 __u64 padding2;
2100 };
2101};
2102
2103static long kvm_vm_compat_ioctl(struct file *filp,
2104 unsigned int ioctl, unsigned long arg)
2105{
2106 struct kvm *kvm = filp->private_data;
2107 int r;
2108
2109 if (kvm->mm != current->mm)
2110 return -EIO;
2111 switch (ioctl) {
2112 case KVM_GET_DIRTY_LOG: {
2113 struct compat_kvm_dirty_log compat_log;
2114 struct kvm_dirty_log log;
2115
2116 r = -EFAULT;
2117 if (copy_from_user(&compat_log, (void __user *)arg,
2118 sizeof(compat_log)))
2119 goto out;
2120 log.slot = compat_log.slot;
2121 log.padding1 = compat_log.padding1;
2122 log.padding2 = compat_log.padding2;
2123 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
2124
2125 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
2126 if (r)
2127 goto out;
2128 break;
2129 }
2130 default:
2131 r = kvm_vm_ioctl(filp, ioctl, arg);
2132 }
2133
2134out:
2135 return r;
2136}
2137#endif
2138
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002139static int kvm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivityf17abe92007-02-21 19:28:04 +02002140{
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002141 struct page *page[1];
2142 unsigned long addr;
2143 int npages;
2144 gfn_t gfn = vmf->pgoff;
Avi Kivityf17abe92007-02-21 19:28:04 +02002145 struct kvm *kvm = vma->vm_file->private_data;
Avi Kivityf17abe92007-02-21 19:28:04 +02002146
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002147 addr = gfn_to_hva(kvm, gfn);
2148 if (kvm_is_error_hva(addr))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002149 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002150
2151 npages = get_user_pages(current, current->mm, addr, 1, 1, 0, page,
2152 NULL);
2153 if (unlikely(npages != 1))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002154 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002155
2156 vmf->page = page[0];
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002157 return 0;
Avi Kivityf17abe92007-02-21 19:28:04 +02002158}
2159
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002160static const struct vm_operations_struct kvm_vm_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002161 .fault = kvm_vm_fault,
Avi Kivityf17abe92007-02-21 19:28:04 +02002162};
2163
2164static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
2165{
2166 vma->vm_ops = &kvm_vm_vm_ops;
2167 return 0;
2168}
2169
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002170static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02002171 .release = kvm_vm_release,
2172 .unlocked_ioctl = kvm_vm_ioctl,
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002173#ifdef CONFIG_COMPAT
2174 .compat_ioctl = kvm_vm_compat_ioctl,
2175#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02002176 .mmap = kvm_vm_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002177 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02002178};
2179
Carsten Ottee08b9632012-01-04 10:25:20 +01002180static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02002181{
Heiko Carstensaac87632010-10-27 17:22:10 +02002182 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002183 struct kvm *kvm;
2184
Carsten Ottee08b9632012-01-04 10:25:20 +01002185 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04002186 if (IS_ERR(kvm))
2187 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09002188#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2189 r = kvm_coalesced_mmio_init(kvm);
2190 if (r < 0) {
2191 kvm_put_kvm(kvm);
2192 return r;
2193 }
2194#endif
Heiko Carstensaac87632010-10-27 17:22:10 +02002195 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
2196 if (r < 0)
Al Viro66c0b392008-04-19 20:33:56 +01002197 kvm_put_kvm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02002198
Heiko Carstensaac87632010-10-27 17:22:10 +02002199 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002200}
2201
Avi Kivity1a811b62008-12-08 18:25:27 +02002202static long kvm_dev_ioctl_check_extension_generic(long arg)
2203{
2204 switch (arg) {
Avi Kivityca9edae2008-12-08 18:29:29 +02002205 case KVM_CAP_USER_MEMORY:
Avi Kivity1a811b62008-12-08 18:25:27 +02002206 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
Jan Kiszka4cd481f2009-04-13 11:59:32 +02002207 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Gleb Natapov73880c82009-06-09 15:56:28 +03002208#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2209 case KVM_CAP_SET_BOOT_CPU_ID:
2210#endif
Avi Kivitya9c73992009-11-04 11:54:59 +02002211 case KVM_CAP_INTERNAL_ERROR_DATA:
Jan Kiszka07975ad2012-03-29 21:14:12 +02002212#ifdef CONFIG_HAVE_KVM_MSI
2213 case KVM_CAP_SIGNAL_MSI:
2214#endif
Avi Kivity1a811b62008-12-08 18:25:27 +02002215 return 1;
Avi Kivity399ec802008-11-19 13:58:46 +02002216#ifdef CONFIG_HAVE_KVM_IRQCHIP
2217 case KVM_CAP_IRQ_ROUTING:
Sheng Yang36463142009-03-16 16:33:43 +08002218 return KVM_MAX_IRQ_ROUTES;
Avi Kivity399ec802008-11-19 13:58:46 +02002219#endif
Avi Kivity1a811b62008-12-08 18:25:27 +02002220 default:
2221 break;
2222 }
2223 return kvm_dev_ioctl_check_extension(arg);
2224}
2225
Avi Kivityf17abe92007-02-21 19:28:04 +02002226static long kvm_dev_ioctl(struct file *filp,
2227 unsigned int ioctl, unsigned long arg)
2228{
Avi Kivity07c45a32007-03-07 13:05:38 +02002229 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002230
2231 switch (ioctl) {
2232 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002233 r = -EINVAL;
2234 if (arg)
2235 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002236 r = KVM_API_VERSION;
2237 break;
2238 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01002239 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002240 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002241 case KVM_CHECK_EXTENSION:
Avi Kivity1a811b62008-12-08 18:25:27 +02002242 r = kvm_dev_ioctl_check_extension_generic(arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02002243 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02002244 case KVM_GET_VCPU_MMAP_SIZE:
2245 r = -EINVAL;
2246 if (arg)
2247 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02002248 r = PAGE_SIZE; /* struct kvm_run */
2249#ifdef CONFIG_X86
2250 r += PAGE_SIZE; /* pio data page */
2251#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002252#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2253 r += PAGE_SIZE; /* coalesced mmio ring page */
2254#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02002255 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002256 case KVM_TRACE_ENABLE:
2257 case KVM_TRACE_PAUSE:
2258 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03002259 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002260 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002261 default:
Carsten Otte043405e2007-10-10 17:16:19 +02002262 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002263 }
2264out:
2265 return r;
2266}
2267
Avi Kivity6aa8b732006-12-10 02:21:36 -08002268static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002269 .unlocked_ioctl = kvm_dev_ioctl,
2270 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002271 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002272};
2273
2274static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002275 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002276 "kvm",
2277 &kvm_chardev_ops,
2278};
2279
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002280static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002281{
2282 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02002283 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03002284
Rusty Russell7f59f492008-12-07 21:25:45 +10302285 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002286 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02002287
Rusty Russell7f59f492008-12-07 21:25:45 +10302288 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02002289
2290 r = kvm_arch_hardware_enable(NULL);
2291
2292 if (r) {
2293 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
2294 atomic_inc(&hardware_enable_failed);
2295 printk(KERN_INFO "kvm: enabling virtualization on "
2296 "CPU%d failed\n", cpu);
2297 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03002298}
2299
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002300static void hardware_enable(void *junk)
2301{
Jan Kiszkae935b832011-02-08 12:55:33 +01002302 raw_spin_lock(&kvm_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002303 hardware_enable_nolock(junk);
Jan Kiszkae935b832011-02-08 12:55:33 +01002304 raw_spin_unlock(&kvm_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002305}
2306
2307static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002308{
2309 int cpu = raw_smp_processor_id();
2310
Rusty Russell7f59f492008-12-07 21:25:45 +10302311 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002312 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302313 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002314 kvm_arch_hardware_disable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03002315}
2316
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002317static void hardware_disable(void *junk)
2318{
Jan Kiszkae935b832011-02-08 12:55:33 +01002319 raw_spin_lock(&kvm_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002320 hardware_disable_nolock(junk);
Jan Kiszkae935b832011-02-08 12:55:33 +01002321 raw_spin_unlock(&kvm_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002322}
2323
Alexander Graf10474ae2009-09-15 11:37:46 +02002324static void hardware_disable_all_nolock(void)
2325{
2326 BUG_ON(!kvm_usage_count);
2327
2328 kvm_usage_count--;
2329 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002330 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002331}
2332
2333static void hardware_disable_all(void)
2334{
Jan Kiszkae935b832011-02-08 12:55:33 +01002335 raw_spin_lock(&kvm_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002336 hardware_disable_all_nolock();
Jan Kiszkae935b832011-02-08 12:55:33 +01002337 raw_spin_unlock(&kvm_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002338}
2339
2340static int hardware_enable_all(void)
2341{
2342 int r = 0;
2343
Jan Kiszkae935b832011-02-08 12:55:33 +01002344 raw_spin_lock(&kvm_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002345
2346 kvm_usage_count++;
2347 if (kvm_usage_count == 1) {
2348 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002349 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002350
2351 if (atomic_read(&hardware_enable_failed)) {
2352 hardware_disable_all_nolock();
2353 r = -EBUSY;
2354 }
2355 }
2356
Jan Kiszkae935b832011-02-08 12:55:33 +01002357 raw_spin_unlock(&kvm_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002358
2359 return r;
2360}
2361
Avi Kivity774c47f2007-02-12 00:54:47 -08002362static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2363 void *v)
2364{
2365 int cpu = (long)v;
2366
Alexander Graf10474ae2009-09-15 11:37:46 +02002367 if (!kvm_usage_count)
2368 return NOTIFY_OK;
2369
Avi Kivity1a6f4d72007-11-11 18:37:32 +02002370 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08002371 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03002372 case CPU_DYING:
Avi Kivity6ec8a8562007-08-19 15:57:26 +03002373 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
2374 cpu);
2375 hardware_disable(NULL);
2376 break;
Zachary Amsdenda908f22010-08-19 22:07:27 -10002377 case CPU_STARTING:
Jeremy Katz43934a32007-02-19 14:37:46 +02002378 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
2379 cpu);
Zachary Amsdenda908f22010-08-19 22:07:27 -10002380 hardware_enable(NULL);
Avi Kivity774c47f2007-02-12 00:54:47 -08002381 break;
2382 }
2383 return NOTIFY_OK;
2384}
2385
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002386
Avi Kivityb7c41452010-12-02 17:52:50 +02002387asmlinkage void kvm_spurious_fault(void)
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002388{
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002389 /* Fault while not rebooting. We want the trace. */
2390 BUG();
2391}
Avi Kivityb7c41452010-12-02 17:52:50 +02002392EXPORT_SYMBOL_GPL(kvm_spurious_fault);
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002393
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002394static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04002395 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002396{
Sheng Yang8e1c1812009-04-29 11:09:04 +08002397 /*
2398 * Some (well, at least mine) BIOSes hang on reboot if
2399 * in vmx root mode.
2400 *
2401 * And Intel TXT required VMX off for all cpu when system shutdown.
2402 */
2403 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
2404 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002405 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002406 return NOTIFY_OK;
2407}
2408
2409static struct notifier_block kvm_reboot_notifier = {
2410 .notifier_call = kvm_reboot,
2411 .priority = 0,
2412};
2413
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002414static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002415{
2416 int i;
2417
2418 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03002419 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002420
2421 kvm_iodevice_destructor(pos);
2422 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002423 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002424}
2425
Sasha Levin743eeb02011-07-27 16:00:48 +03002426int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
2427{
2428 const struct kvm_io_range *r1 = p1;
2429 const struct kvm_io_range *r2 = p2;
2430
2431 if (r1->addr < r2->addr)
2432 return -1;
2433 if (r1->addr + r1->len > r2->addr + r2->len)
2434 return 1;
2435 return 0;
2436}
2437
2438int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
2439 gpa_t addr, int len)
2440{
Sasha Levin743eeb02011-07-27 16:00:48 +03002441 bus->range[bus->dev_count++] = (struct kvm_io_range) {
2442 .addr = addr,
2443 .len = len,
2444 .dev = dev,
2445 };
2446
2447 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
2448 kvm_io_bus_sort_cmp, NULL);
2449
2450 return 0;
2451}
2452
2453int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
2454 gpa_t addr, int len)
2455{
2456 struct kvm_io_range *range, key;
2457 int off;
2458
2459 key = (struct kvm_io_range) {
2460 .addr = addr,
2461 .len = len,
2462 };
2463
2464 range = bsearch(&key, bus->range, bus->dev_count,
2465 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
2466 if (range == NULL)
2467 return -ENOENT;
2468
2469 off = range - bus->range;
2470
2471 while (off > 0 && kvm_io_bus_sort_cmp(&key, &bus->range[off-1]) == 0)
2472 off--;
2473
2474 return off;
2475}
2476
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002477/* kvm_io_bus_write - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002478int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002479 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002480{
Sasha Levin743eeb02011-07-27 16:00:48 +03002481 int idx;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002482 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03002483 struct kvm_io_range range;
2484
2485 range = (struct kvm_io_range) {
2486 .addr = addr,
2487 .len = len,
2488 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002489
2490 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
Sasha Levin743eeb02011-07-27 16:00:48 +03002491 idx = kvm_io_bus_get_first_dev(bus, addr, len);
2492 if (idx < 0)
2493 return -EOPNOTSUPP;
2494
2495 while (idx < bus->dev_count &&
2496 kvm_io_bus_sort_cmp(&range, &bus->range[idx]) == 0) {
2497 if (!kvm_iodevice_write(bus->range[idx].dev, addr, len, val))
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002498 return 0;
Sasha Levin743eeb02011-07-27 16:00:48 +03002499 idx++;
2500 }
2501
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002502 return -EOPNOTSUPP;
2503}
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002504
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002505/* kvm_io_bus_read - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002506int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2507 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002508{
Sasha Levin743eeb02011-07-27 16:00:48 +03002509 int idx;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002510 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03002511 struct kvm_io_range range;
2512
2513 range = (struct kvm_io_range) {
2514 .addr = addr,
2515 .len = len,
2516 };
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002517
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002518 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
Sasha Levin743eeb02011-07-27 16:00:48 +03002519 idx = kvm_io_bus_get_first_dev(bus, addr, len);
2520 if (idx < 0)
2521 return -EOPNOTSUPP;
2522
2523 while (idx < bus->dev_count &&
2524 kvm_io_bus_sort_cmp(&range, &bus->range[idx]) == 0) {
2525 if (!kvm_iodevice_read(bus->range[idx].dev, addr, len, val))
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002526 return 0;
Sasha Levin743eeb02011-07-27 16:00:48 +03002527 idx++;
2528 }
2529
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002530 return -EOPNOTSUPP;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002531}
2532
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002533/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03002534int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2535 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002536{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002537 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04002538
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002539 bus = kvm->buses[bus_idx];
Amos Konga13007162012-03-09 12:17:32 +08002540 if (bus->dev_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04002541 return -ENOSPC;
2542
Amos Konga13007162012-03-09 12:17:32 +08002543 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count + 1) *
2544 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002545 if (!new_bus)
2546 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08002547 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
2548 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03002549 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002550 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2551 synchronize_srcu_expedited(&kvm->srcu);
2552 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04002553
2554 return 0;
2555}
2556
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002557/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002558int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
2559 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04002560{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002561 int i, r;
2562 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002563
Sasha Levincdfca7b2011-12-04 19:36:28 +02002564 bus = kvm->buses[bus_idx];
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002565 r = -ENOENT;
Amos Konga13007162012-03-09 12:17:32 +08002566 for (i = 0; i < bus->dev_count; i++)
2567 if (bus->range[i].dev == dev) {
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002568 r = 0;
Gregory Haskins090b7af2009-07-07 17:08:44 -04002569 break;
2570 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002571
Amos Konga13007162012-03-09 12:17:32 +08002572 if (r)
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002573 return r;
Amos Konga13007162012-03-09 12:17:32 +08002574
2575 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count - 1) *
2576 sizeof(struct kvm_io_range)), GFP_KERNEL);
2577 if (!new_bus)
2578 return -ENOMEM;
2579
2580 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
2581 new_bus->dev_count--;
2582 memcpy(new_bus->range + i, bus->range + i + 1,
2583 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002584
2585 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2586 synchronize_srcu_expedited(&kvm->srcu);
2587 kfree(bus);
2588 return r;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002589}
2590
Avi Kivity774c47f2007-02-12 00:54:47 -08002591static struct notifier_block kvm_cpu_notifier = {
2592 .notifier_call = kvm_cpu_hotplug,
Avi Kivity774c47f2007-02-12 00:54:47 -08002593};
2594
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002595static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02002596{
2597 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02002598 struct kvm *kvm;
2599
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002600 *val = 0;
Jan Kiszkae935b832011-02-08 12:55:33 +01002601 raw_spin_lock(&kvm_lock);
Avi Kivityba1389b2007-11-18 16:24:12 +02002602 list_for_each_entry(kvm, &vm_list, vm_list)
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002603 *val += *(u32 *)((void *)kvm + offset);
Jan Kiszkae935b832011-02-08 12:55:33 +01002604 raw_spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002605 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02002606}
2607
2608DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
2609
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002610static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03002611{
2612 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002613 struct kvm *kvm;
2614 struct kvm_vcpu *vcpu;
2615 int i;
2616
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002617 *val = 0;
Jan Kiszkae935b832011-02-08 12:55:33 +01002618 raw_spin_lock(&kvm_lock);
Avi Kivity1165f5f2007-04-19 17:27:43 +03002619 list_for_each_entry(kvm, &vm_list, vm_list)
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002620 kvm_for_each_vcpu(i, vcpu, kvm)
2621 *val += *(u32 *)((void *)vcpu + offset);
2622
Jan Kiszkae935b832011-02-08 12:55:33 +01002623 raw_spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002624 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002625}
2626
Avi Kivityba1389b2007-11-18 16:24:12 +02002627DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
2628
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002629static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02002630 [KVM_STAT_VCPU] = &vcpu_stat_fops,
2631 [KVM_STAT_VM] = &vm_stat_fops,
2632};
Avi Kivity1165f5f2007-04-19 17:27:43 +03002633
Hamo4f69b682011-12-15 14:23:16 +08002634static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002635{
Hamo4f69b682011-12-15 14:23:16 +08002636 int r = -EFAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002637 struct kvm_stats_debugfs_item *p;
2638
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002639 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08002640 if (kvm_debugfs_dir == NULL)
2641 goto out;
2642
2643 for (p = debugfs_entries; p->name; ++p) {
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002644 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
Avi Kivity1165f5f2007-04-19 17:27:43 +03002645 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02002646 stat_fops[p->kind]);
Hamo4f69b682011-12-15 14:23:16 +08002647 if (p->dentry == NULL)
2648 goto out_dir;
2649 }
2650
2651 return 0;
2652
2653out_dir:
2654 debugfs_remove_recursive(kvm_debugfs_dir);
2655out:
2656 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002657}
2658
2659static void kvm_exit_debug(void)
2660{
2661 struct kvm_stats_debugfs_item *p;
2662
2663 for (p = debugfs_entries; p->name; ++p)
2664 debugfs_remove(p->dentry);
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002665 debugfs_remove(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002666}
2667
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002668static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08002669{
Alexander Graf10474ae2009-09-15 11:37:46 +02002670 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002671 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002672 return 0;
2673}
2674
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002675static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08002676{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002677 if (kvm_usage_count) {
Jan Kiszkae935b832011-02-08 12:55:33 +01002678 WARN_ON(raw_spin_is_locked(&kvm_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002679 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002680 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08002681}
2682
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002683static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08002684 .suspend = kvm_suspend,
2685 .resume = kvm_resume,
2686};
2687
Izik Eiduscea7bb22007-10-17 19:17:48 +02002688struct page *bad_page;
Anthony Liguori35149e22008-04-02 14:46:56 -05002689pfn_t bad_pfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002690
Avi Kivity15ad7142007-07-11 18:17:21 +03002691static inline
2692struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
2693{
2694 return container_of(pn, struct kvm_vcpu, preempt_notifier);
2695}
2696
2697static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
2698{
2699 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2700
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002701 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002702}
2703
2704static void kvm_sched_out(struct preempt_notifier *pn,
2705 struct task_struct *next)
2706{
2707 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2708
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002709 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002710}
2711
Avi Kivity0ee75be2010-04-28 15:39:01 +03002712int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10002713 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002714{
2715 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002716 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002717
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002718 r = kvm_arch_init(opaque);
2719 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002720 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002721
2722 bad_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2723
2724 if (bad_page == NULL) {
2725 r = -ENOMEM;
2726 goto out;
2727 }
2728
Anthony Liguori35149e22008-04-02 14:46:56 -05002729 bad_pfn = page_to_pfn(bad_page);
2730
Huang Yingbf998152010-05-31 14:28:19 +08002731 hwpoison_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2732
2733 if (hwpoison_page == NULL) {
2734 r = -ENOMEM;
2735 goto out_free_0;
2736 }
2737
2738 hwpoison_pfn = page_to_pfn(hwpoison_page);
2739
Gleb Natapovedba23e2010-07-07 20:16:45 +03002740 fault_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2741
2742 if (fault_page == NULL) {
2743 r = -ENOMEM;
2744 goto out_free_0;
2745 }
2746
2747 fault_pfn = page_to_pfn(fault_page);
2748
Avi Kivity8437a612009-06-06 14:52:35 -07002749 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10302750 r = -ENOMEM;
2751 goto out_free_0;
2752 }
2753
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002754 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002755 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10302756 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002757
Yang, Sheng002c7f72007-07-31 14:23:01 +03002758 for_each_online_cpu(cpu) {
2759 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002760 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02002761 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03002762 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002763 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002764 }
2765
Avi Kivity774c47f2007-02-12 00:54:47 -08002766 r = register_cpu_notifier(&kvm_cpu_notifier);
2767 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002768 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002769 register_reboot_notifier(&kvm_reboot_notifier);
2770
Rusty Russellc16f8622007-07-30 21:12:19 +10002771 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03002772 if (!vcpu_align)
2773 vcpu_align = __alignof__(struct kvm_vcpu);
2774 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08002775 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10002776 if (!kvm_vcpu_cache) {
2777 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002778 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10002779 }
2780
Gleb Natapovaf585b92010-10-14 11:22:46 +02002781 r = kvm_async_pf_init();
2782 if (r)
2783 goto out_free;
2784
Avi Kivity6aa8b732006-12-10 02:21:36 -08002785 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002786 kvm_vm_fops.owner = module;
2787 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002788
2789 r = misc_register(&kvm_dev);
2790 if (r) {
Mike Dayd77c26f2007-10-08 09:02:08 -04002791 printk(KERN_ERR "kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02002792 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002793 }
2794
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002795 register_syscore_ops(&kvm_syscore_ops);
2796
Avi Kivity15ad7142007-07-11 18:17:21 +03002797 kvm_preempt_ops.sched_in = kvm_sched_in;
2798 kvm_preempt_ops.sched_out = kvm_sched_out;
2799
Hamo4f69b682011-12-15 14:23:16 +08002800 r = kvm_init_debug();
2801 if (r) {
2802 printk(KERN_ERR "kvm: create debugfs files failed\n");
2803 goto out_undebugfs;
2804 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002805
Avi Kivityc7addb92007-09-16 18:58:32 +02002806 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002807
Hamo4f69b682011-12-15 14:23:16 +08002808out_undebugfs:
2809 unregister_syscore_ops(&kvm_syscore_ops);
Gleb Natapovaf585b92010-10-14 11:22:46 +02002810out_unreg:
2811 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002812out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10002813 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002814out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002815 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08002816 unregister_cpu_notifier(&kvm_cpu_notifier);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002817out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08002818out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002819 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10302820out_free_0a:
2821 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002822out_free_0:
Gleb Natapovedba23e2010-07-07 20:16:45 +03002823 if (fault_page)
2824 __free_page(fault_page);
Huang Yingbf998152010-05-31 14:28:19 +08002825 if (hwpoison_page)
2826 __free_page(hwpoison_page);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002827 __free_page(bad_page);
Avi Kivityca45aaa2007-03-01 19:21:03 +02002828out:
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002829 kvm_arch_exit();
Zhang Xiantaod23087842007-11-29 15:35:39 +08002830out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002831 return r;
2832}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002833EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002834
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002835void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002836{
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002837 kvm_exit_debug();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002838 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10002839 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02002840 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002841 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002842 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002843 unregister_cpu_notifier(&kvm_cpu_notifier);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002844 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002845 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002846 kvm_arch_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10302847 free_cpumask_var(cpus_hardware_enabled);
Xiao Guangrongf4119302012-07-03 14:31:01 +08002848 __free_page(fault_page);
Huang Yingbf998152010-05-31 14:28:19 +08002849 __free_page(hwpoison_page);
Izik Eiduscea7bb22007-10-17 19:17:48 +02002850 __free_page(bad_page);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002851}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002852EXPORT_SYMBOL_GPL(kvm_exit);