blob: 6bd34a6ecca1b86ef7301433c74698e5aaa30466 [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 Haskins721eecbf2009-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
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200807 /* map the pages in iommu page table */
808 if (npages) {
809 r = kvm_iommu_map_pages(kvm, &new);
810 if (r)
811 goto out_free;
812 }
Andrea Arcangeli604b38a2008-07-25 16:32:03 +0200813
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200814 r = -ENOMEM;
Thomas Meyer6da64fd2011-11-08 20:32:19 +0100815 slots = kmemdup(kvm->memslots, sizeof(struct kvm_memslots),
816 GFP_KERNEL);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200817 if (!slots)
818 goto out_free;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200819
820 /* actual memory is freed via old in kvm_free_physmem_slot below */
821 if (!npages) {
822 new.rmap = NULL;
823 new.dirty_bitmap = NULL;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900824 memset(&new.arch, 0, sizeof(new.arch));
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200825 }
826
Xiao Guangrongbe593d62011-11-24 17:38:24 +0800827 update_memslots(slots, &new);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200828 old_memslots = kvm->memslots;
829 rcu_assign_pointer(kvm->memslots, slots);
830 synchronize_srcu_expedited(&kvm->srcu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800831
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200832 kvm_arch_commit_memory_region(kvm, mem, old, user_alloc);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800833
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800834 /*
835 * If the new memory slot is created, we need to clear all
836 * mmio sptes.
837 */
838 if (npages && old.base_gfn != mem->guest_phys_addr >> PAGE_SHIFT)
839 kvm_arch_flush_shadow(kvm);
840
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200841 kvm_free_physmem_slot(&old, &new);
842 kfree(old_memslots);
843
Avi Kivity6aa8b732006-12-10 02:21:36 -0800844 return 0;
845
Sheng Yangf78e0e22007-10-29 09:40:42 +0800846out_free:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800847 kvm_free_physmem_slot(&new, &old);
848out:
849 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +0200850
851}
Sheng Yangf78e0e22007-10-29 09:40:42 +0800852EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
853
854int kvm_set_memory_region(struct kvm *kvm,
855 struct kvm_userspace_memory_region *mem,
856 int user_alloc)
857{
858 int r;
859
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200860 mutex_lock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800861 r = __kvm_set_memory_region(kvm, mem, user_alloc);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200862 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800863 return r;
864}
Izik Eidus210c7c42007-10-24 23:52:57 +0200865EXPORT_SYMBOL_GPL(kvm_set_memory_region);
866
Carsten Otte1fe779f2007-10-29 16:08:35 +0100867int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
868 struct
869 kvm_userspace_memory_region *mem,
870 int user_alloc)
Izik Eidus210c7c42007-10-24 23:52:57 +0200871{
Izik Eiduse0d62c72007-10-24 23:57:46 +0200872 if (mem->slot >= KVM_MEMORY_SLOTS)
873 return -EINVAL;
Izik Eidus210c7c42007-10-24 23:52:57 +0200874 return kvm_set_memory_region(kvm, mem, user_alloc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800875}
876
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800877int kvm_get_dirty_log(struct kvm *kvm,
878 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800879{
880 struct kvm_memory_slot *memslot;
881 int r, i;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900882 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800883 unsigned long any = 0;
884
Avi Kivity6aa8b732006-12-10 02:21:36 -0800885 r = -EINVAL;
886 if (log->slot >= KVM_MEMORY_SLOTS)
887 goto out;
888
Xiao Guangrong28a37542011-11-24 19:04:35 +0800889 memslot = id_to_memslot(kvm->memslots, log->slot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800890 r = -ENOENT;
891 if (!memslot->dirty_bitmap)
892 goto out;
893
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900894 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800895
Uri Lublincd1a4a92007-02-22 16:43:09 +0200896 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800897 any = memslot->dirty_bitmap[i];
898
899 r = -EFAULT;
900 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
901 goto out;
902
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800903 if (any)
904 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800905
906 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800907out:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800908 return r;
909}
910
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900911bool kvm_largepages_enabled(void)
912{
913 return largepages_enabled;
914}
915
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300916void kvm_disable_largepages(void)
917{
918 largepages_enabled = false;
919}
920EXPORT_SYMBOL_GPL(kvm_disable_largepages);
921
Izik Eiduscea7bb22007-10-17 19:17:48 +0200922int is_error_page(struct page *page)
923{
Gleb Natapovedba23e2010-07-07 20:16:45 +0300924 return page == bad_page || page == hwpoison_page || page == fault_page;
Izik Eiduscea7bb22007-10-17 19:17:48 +0200925}
926EXPORT_SYMBOL_GPL(is_error_page);
927
Anthony Liguori35149e22008-04-02 14:46:56 -0500928int is_error_pfn(pfn_t pfn)
929{
Gleb Natapovedba23e2010-07-07 20:16:45 +0300930 return pfn == bad_pfn || pfn == hwpoison_pfn || pfn == fault_pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -0500931}
932EXPORT_SYMBOL_GPL(is_error_pfn);
933
Huang Yingbf998152010-05-31 14:28:19 +0800934int is_hwpoison_pfn(pfn_t pfn)
935{
936 return pfn == hwpoison_pfn;
937}
938EXPORT_SYMBOL_GPL(is_hwpoison_pfn);
939
Gleb Natapovedba23e2010-07-07 20:16:45 +0300940int is_fault_pfn(pfn_t pfn)
941{
942 return pfn == fault_pfn;
943}
944EXPORT_SYMBOL_GPL(is_fault_pfn);
945
Xiao Guangrongfce92dc2011-07-12 03:28:54 +0800946int is_noslot_pfn(pfn_t pfn)
947{
948 return pfn == bad_pfn;
949}
950EXPORT_SYMBOL_GPL(is_noslot_pfn);
951
952int is_invalid_pfn(pfn_t pfn)
953{
954 return pfn == hwpoison_pfn || pfn == fault_pfn;
955}
956EXPORT_SYMBOL_GPL(is_invalid_pfn);
957
Izik Eidusf9d46eb2007-11-11 22:02:22 +0200958static inline unsigned long bad_hva(void)
959{
960 return PAGE_OFFSET;
961}
962
963int kvm_is_error_hva(unsigned long addr)
964{
965 return addr == bad_hva();
966}
967EXPORT_SYMBOL_GPL(kvm_is_error_hva);
968
Gleb Natapov49c77542010-10-18 15:22:23 +0200969struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
970{
971 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
972}
Avi Kivitya1f4d3952010-06-21 11:44:20 +0300973EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800974
Izik Eiduse0d62c72007-10-24 23:57:46 +0200975int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
976{
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800977 struct kvm_memory_slot *memslot = gfn_to_memslot(kvm, gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +0200978
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800979 if (!memslot || memslot->id >= KVM_MEMORY_SLOTS ||
980 memslot->flags & KVM_MEMSLOT_INVALID)
981 return 0;
Izik Eiduse0d62c72007-10-24 23:57:46 +0200982
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800983 return 1;
Izik Eiduse0d62c72007-10-24 23:57:46 +0200984}
985EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
986
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100987unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
988{
989 struct vm_area_struct *vma;
990 unsigned long addr, size;
991
992 size = PAGE_SIZE;
993
994 addr = gfn_to_hva(kvm, gfn);
995 if (kvm_is_error_hva(addr))
996 return PAGE_SIZE;
997
998 down_read(&current->mm->mmap_sem);
999 vma = find_vma(current->mm, addr);
1000 if (!vma)
1001 goto out;
1002
1003 size = vma_kernel_pagesize(vma);
1004
1005out:
1006 up_read(&current->mm->mmap_sem);
1007
1008 return size;
1009}
1010
Gleb Natapov49c77542010-10-18 15:22:23 +02001011static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
Xiao Guangrong48987782010-08-22 19:11:43 +08001012 gfn_t *nr_pages)
Izik Eidus539cb662007-11-11 22:05:04 +02001013{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001014 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Izik Eidus539cb662007-11-11 22:05:04 +02001015 return bad_hva();
Xiao Guangrong48987782010-08-22 19:11:43 +08001016
1017 if (nr_pages)
1018 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1019
Takuya Yoshikawaf5c98032010-02-25 11:33:19 +09001020 return gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001021}
Xiao Guangrong48987782010-08-22 19:11:43 +08001022
1023unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1024{
Gleb Natapov49c77542010-10-18 15:22:23 +02001025 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001026}
Sheng Yang0d150292008-04-25 21:44:50 +08001027EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001028
Gleb Natapov80300892010-10-19 18:13:41 +02001029static pfn_t get_fault_pfn(void)
1030{
1031 get_page(fault_page);
1032 return fault_pfn;
1033}
1034
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001035int get_user_page_nowait(struct task_struct *tsk, struct mm_struct *mm,
1036 unsigned long start, int write, struct page **page)
1037{
1038 int flags = FOLL_TOUCH | FOLL_NOWAIT | FOLL_HWPOISON | FOLL_GET;
1039
1040 if (write)
1041 flags |= FOLL_WRITE;
1042
1043 return __get_user_pages(tsk, mm, start, 1, flags, page, NULL, NULL);
1044}
1045
Huang Yingfafc3db2011-01-30 11:15:49 +08001046static inline int check_user_page_hwpoison(unsigned long addr)
1047{
1048 int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE;
1049
1050 rc = __get_user_pages(current, current->mm, addr, 1,
1051 flags, NULL, NULL, NULL);
1052 return rc == -EHWPOISON;
1053}
1054
Gleb Natapovaf585b92010-10-14 11:22:46 +02001055static pfn_t hva_to_pfn(struct kvm *kvm, unsigned long addr, bool atomic,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001056 bool *async, bool write_fault, bool *writable)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001057{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001058 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001059 int npages = 0;
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001060 pfn_t pfn;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001061
Gleb Natapovaf585b92010-10-14 11:22:46 +02001062 /* we can do it either atomically or asynchronously, not both */
1063 BUG_ON(atomic && async);
1064
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001065 BUG_ON(!write_fault && !writable);
1066
1067 if (writable)
1068 *writable = true;
1069
Gleb Natapovaf585b92010-10-14 11:22:46 +02001070 if (atomic || async)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001071 npages = __get_user_pages_fast(addr, 1, 1, page);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001072
1073 if (unlikely(npages != 1) && !atomic) {
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001074 might_sleep();
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001075
1076 if (writable)
1077 *writable = write_fault;
1078
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001079 if (async) {
1080 down_read(&current->mm->mmap_sem);
1081 npages = get_user_page_nowait(current, current->mm,
1082 addr, write_fault, page);
1083 up_read(&current->mm->mmap_sem);
1084 } else
1085 npages = get_user_pages_fast(addr, 1, write_fault,
1086 page);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001087
1088 /* map read fault as writable if possible */
1089 if (unlikely(!write_fault) && npages == 1) {
1090 struct page *wpage[1];
1091
1092 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1093 if (npages == 1) {
1094 *writable = true;
1095 put_page(page[0]);
1096 page[0] = wpage[0];
1097 }
1098 npages = 1;
1099 }
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001100 }
Izik Eidus539cb662007-11-11 22:05:04 +02001101
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001102 if (unlikely(npages != 1)) {
1103 struct vm_area_struct *vma;
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001104
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001105 if (atomic)
Gleb Natapov80300892010-10-19 18:13:41 +02001106 return get_fault_pfn();
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001107
Huang Yingbbeb3402010-06-22 14:23:11 +08001108 down_read(&current->mm->mmap_sem);
Gleb Natapov0857b9e2011-02-01 13:21:47 +02001109 if (npages == -EHWPOISON ||
1110 (!async && check_user_page_hwpoison(addr))) {
Huang Yingbbeb3402010-06-22 14:23:11 +08001111 up_read(&current->mm->mmap_sem);
Huang Yingbf998152010-05-31 14:28:19 +08001112 get_page(hwpoison_page);
1113 return page_to_pfn(hwpoison_page);
1114 }
1115
Gleb Natapov80300892010-10-19 18:13:41 +02001116 vma = find_vma_intersection(current->mm, addr, addr+1);
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001117
Gleb Natapov80300892010-10-19 18:13:41 +02001118 if (vma == NULL)
1119 pfn = get_fault_pfn();
1120 else if ((vma->vm_flags & VM_PFNMAP)) {
1121 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1122 vma->vm_pgoff;
1123 BUG_ON(!kvm_is_mmio_pfn(pfn));
1124 } else {
1125 if (async && (vma->vm_flags & VM_WRITE))
Gleb Natapovaf585b92010-10-14 11:22:46 +02001126 *async = true;
Gleb Natapov80300892010-10-19 18:13:41 +02001127 pfn = get_fault_pfn();
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001128 }
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001129 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001130 } else
1131 pfn = page_to_pfn(page[0]);
1132
1133 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001134}
1135
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001136pfn_t hva_to_pfn_atomic(struct kvm *kvm, unsigned long addr)
1137{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001138 return hva_to_pfn(kvm, addr, true, NULL, true, NULL);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001139}
1140EXPORT_SYMBOL_GPL(hva_to_pfn_atomic);
1141
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001142static pfn_t __gfn_to_pfn(struct kvm *kvm, gfn_t gfn, bool atomic, bool *async,
1143 bool write_fault, bool *writable)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001144{
1145 unsigned long addr;
1146
Gleb Natapovaf585b92010-10-14 11:22:46 +02001147 if (async)
1148 *async = false;
1149
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001150 addr = gfn_to_hva(kvm, gfn);
1151 if (kvm_is_error_hva(addr)) {
1152 get_page(bad_page);
1153 return page_to_pfn(bad_page);
1154 }
1155
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001156 return hva_to_pfn(kvm, addr, atomic, async, write_fault, writable);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001157}
1158
1159pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1160{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001161 return __gfn_to_pfn(kvm, gfn, true, NULL, true, NULL);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001162}
1163EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1164
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001165pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
1166 bool write_fault, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02001167{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001168 return __gfn_to_pfn(kvm, gfn, false, async, write_fault, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001169}
1170EXPORT_SYMBOL_GPL(gfn_to_pfn_async);
1171
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001172pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1173{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001174 return __gfn_to_pfn(kvm, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001175}
Anthony Liguori35149e22008-04-02 14:46:56 -05001176EXPORT_SYMBOL_GPL(gfn_to_pfn);
1177
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001178pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1179 bool *writable)
1180{
1181 return __gfn_to_pfn(kvm, gfn, false, NULL, write_fault, writable);
1182}
1183EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1184
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001185pfn_t gfn_to_pfn_memslot(struct kvm *kvm,
1186 struct kvm_memory_slot *slot, gfn_t gfn)
1187{
1188 unsigned long addr = gfn_to_hva_memslot(slot, gfn);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001189 return hva_to_pfn(kvm, addr, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001190}
1191
Xiao Guangrong48987782010-08-22 19:11:43 +08001192int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
1193 int nr_pages)
1194{
1195 unsigned long addr;
1196 gfn_t entry;
1197
Gleb Natapov49c77542010-10-18 15:22:23 +02001198 addr = gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001199 if (kvm_is_error_hva(addr))
1200 return -1;
1201
1202 if (entry < nr_pages)
1203 return 0;
1204
1205 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1206}
1207EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1208
Anthony Liguori35149e22008-04-02 14:46:56 -05001209struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1210{
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001211 pfn_t pfn;
1212
1213 pfn = gfn_to_pfn(kvm, gfn);
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001214 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001215 return pfn_to_page(pfn);
1216
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001217 WARN_ON(kvm_is_mmio_pfn(pfn));
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001218
1219 get_page(bad_page);
1220 return bad_page;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001221}
Anthony Liguoriaab61cc2007-10-29 15:15:20 -05001222
Avi Kivity954bbbc2007-03-30 14:02:32 +03001223EXPORT_SYMBOL_GPL(gfn_to_page);
1224
Izik Eidusb4231d62007-11-20 11:49:33 +02001225void kvm_release_page_clean(struct page *page)
1226{
Anthony Liguori35149e22008-04-02 14:46:56 -05001227 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001228}
1229EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1230
Anthony Liguori35149e22008-04-02 14:46:56 -05001231void kvm_release_pfn_clean(pfn_t pfn)
1232{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001233 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001234 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001235}
1236EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1237
Izik Eidusb4231d62007-11-20 11:49:33 +02001238void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001239{
Anthony Liguori35149e22008-04-02 14:46:56 -05001240 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001241}
Izik Eidusb4231d62007-11-20 11:49:33 +02001242EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001243
Anthony Liguori35149e22008-04-02 14:46:56 -05001244void kvm_release_pfn_dirty(pfn_t pfn)
1245{
1246 kvm_set_pfn_dirty(pfn);
1247 kvm_release_pfn_clean(pfn);
1248}
1249EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty);
1250
1251void kvm_set_page_dirty(struct page *page)
1252{
1253 kvm_set_pfn_dirty(page_to_pfn(page));
1254}
1255EXPORT_SYMBOL_GPL(kvm_set_page_dirty);
1256
1257void kvm_set_pfn_dirty(pfn_t pfn)
1258{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001259 if (!kvm_is_mmio_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001260 struct page *page = pfn_to_page(pfn);
1261 if (!PageReserved(page))
1262 SetPageDirty(page);
1263 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001264}
1265EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1266
1267void kvm_set_pfn_accessed(pfn_t pfn)
1268{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001269 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001270 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001271}
1272EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1273
1274void kvm_get_pfn(pfn_t pfn)
1275{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001276 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001277 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001278}
1279EXPORT_SYMBOL_GPL(kvm_get_pfn);
1280
Izik Eidus195aefd2007-10-01 22:14:18 +02001281static int next_segment(unsigned long len, int offset)
1282{
1283 if (len > PAGE_SIZE - offset)
1284 return PAGE_SIZE - offset;
1285 else
1286 return len;
1287}
1288
1289int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1290 int len)
1291{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001292 int r;
1293 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001294
Izik Eiduse0506bc2007-11-11 22:10:22 +02001295 addr = gfn_to_hva(kvm, gfn);
1296 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001297 return -EFAULT;
Takuya Yoshikawafa3d3152011-05-07 16:35:38 +09001298 r = __copy_from_user(data, (void __user *)addr + offset, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001299 if (r)
1300 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001301 return 0;
1302}
1303EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1304
1305int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1306{
1307 gfn_t gfn = gpa >> PAGE_SHIFT;
1308 int seg;
1309 int offset = offset_in_page(gpa);
1310 int ret;
1311
1312 while ((seg = next_segment(len, offset)) != 0) {
1313 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1314 if (ret < 0)
1315 return ret;
1316 offset = 0;
1317 len -= seg;
1318 data += seg;
1319 ++gfn;
1320 }
1321 return 0;
1322}
1323EXPORT_SYMBOL_GPL(kvm_read_guest);
1324
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001325int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1326 unsigned long len)
1327{
1328 int r;
1329 unsigned long addr;
1330 gfn_t gfn = gpa >> PAGE_SHIFT;
1331 int offset = offset_in_page(gpa);
1332
1333 addr = gfn_to_hva(kvm, gfn);
1334 if (kvm_is_error_hva(addr))
1335 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001336 pagefault_disable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001337 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001338 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001339 if (r)
1340 return -EFAULT;
1341 return 0;
1342}
1343EXPORT_SYMBOL(kvm_read_guest_atomic);
1344
Izik Eidus195aefd2007-10-01 22:14:18 +02001345int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1346 int offset, int len)
1347{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001348 int r;
1349 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001350
Izik Eiduse0506bc2007-11-11 22:10:22 +02001351 addr = gfn_to_hva(kvm, gfn);
1352 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001353 return -EFAULT;
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001354 r = __copy_to_user((void __user *)addr + offset, data, len);
Izik Eiduse0506bc2007-11-11 22:10:22 +02001355 if (r)
1356 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001357 mark_page_dirty(kvm, gfn);
1358 return 0;
1359}
1360EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1361
1362int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1363 unsigned long len)
1364{
1365 gfn_t gfn = gpa >> PAGE_SHIFT;
1366 int seg;
1367 int offset = offset_in_page(gpa);
1368 int ret;
1369
1370 while ((seg = next_segment(len, offset)) != 0) {
1371 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1372 if (ret < 0)
1373 return ret;
1374 offset = 0;
1375 len -= seg;
1376 data += seg;
1377 ++gfn;
1378 }
1379 return 0;
1380}
1381
Gleb Natapov49c77542010-10-18 15:22:23 +02001382int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1383 gpa_t gpa)
1384{
1385 struct kvm_memslots *slots = kvm_memslots(kvm);
1386 int offset = offset_in_page(gpa);
1387 gfn_t gfn = gpa >> PAGE_SHIFT;
1388
1389 ghc->gpa = gpa;
1390 ghc->generation = slots->generation;
Paul Mackerras9d4cba72012-01-12 20:09:51 +00001391 ghc->memslot = gfn_to_memslot(kvm, gfn);
Gleb Natapov49c77542010-10-18 15:22:23 +02001392 ghc->hva = gfn_to_hva_many(ghc->memslot, gfn, NULL);
1393 if (!kvm_is_error_hva(ghc->hva))
1394 ghc->hva += offset;
1395 else
1396 return -EFAULT;
1397
1398 return 0;
1399}
1400EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1401
1402int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1403 void *data, unsigned long len)
1404{
1405 struct kvm_memslots *slots = kvm_memslots(kvm);
1406 int r;
1407
1408 if (slots->generation != ghc->generation)
1409 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa);
1410
1411 if (kvm_is_error_hva(ghc->hva))
1412 return -EFAULT;
1413
Xiao Guangrong8b0cedf2011-05-15 23:22:04 +08001414 r = __copy_to_user((void __user *)ghc->hva, data, len);
Gleb Natapov49c77542010-10-18 15:22:23 +02001415 if (r)
1416 return -EFAULT;
1417 mark_page_dirty_in_slot(kvm, ghc->memslot, ghc->gpa >> PAGE_SHIFT);
1418
1419 return 0;
1420}
1421EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1422
Gleb Natapove03b6442011-07-11 15:28:11 -04001423int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1424 void *data, unsigned long len)
1425{
1426 struct kvm_memslots *slots = kvm_memslots(kvm);
1427 int r;
1428
1429 if (slots->generation != ghc->generation)
1430 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa);
1431
1432 if (kvm_is_error_hva(ghc->hva))
1433 return -EFAULT;
1434
1435 r = __copy_from_user(data, (void __user *)ghc->hva, len);
1436 if (r)
1437 return -EFAULT;
1438
1439 return 0;
1440}
1441EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
1442
Izik Eidus195aefd2007-10-01 22:14:18 +02001443int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1444{
Heiko Carstens3bcc8a82010-10-27 17:21:21 +02001445 return kvm_write_guest_page(kvm, gfn, (const void *) empty_zero_page,
1446 offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02001447}
1448EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1449
1450int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1451{
1452 gfn_t gfn = gpa >> PAGE_SHIFT;
1453 int seg;
1454 int offset = offset_in_page(gpa);
1455 int ret;
1456
1457 while ((seg = next_segment(len, offset)) != 0) {
1458 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1459 if (ret < 0)
1460 return ret;
1461 offset = 0;
1462 len -= seg;
1463 ++gfn;
1464 }
1465 return 0;
1466}
1467EXPORT_SYMBOL_GPL(kvm_clear_guest);
1468
Gleb Natapov49c77542010-10-18 15:22:23 +02001469void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot,
1470 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001471{
Rusty Russell7e9d6192007-07-31 20:41:14 +10001472 if (memslot && memslot->dirty_bitmap) {
1473 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001474
Takuya Yoshikawa93474b22012-03-01 19:34:45 +09001475 /* TODO: introduce set_bit_le() and use it */
1476 test_and_set_bit_le(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001477 }
1478}
1479
Gleb Natapov49c77542010-10-18 15:22:23 +02001480void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1481{
1482 struct kvm_memory_slot *memslot;
1483
1484 memslot = gfn_to_memslot(kvm, gfn);
1485 mark_page_dirty_in_slot(kvm, memslot, gfn);
1486}
1487
Eddie Dongb6958ce2007-07-18 12:15:21 +03001488/*
1489 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1490 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05001491void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001492{
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001493 DEFINE_WAIT(wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001494
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001495 for (;;) {
1496 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001497
Gleb Natapova1b37102009-07-09 15:33:52 +03001498 if (kvm_arch_vcpu_runnable(vcpu)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03001499 kvm_make_request(KVM_REQ_UNHALT, vcpu);
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001500 break;
Marcelo Tosattid7690172008-09-08 15:23:48 -03001501 }
Gleb Natapov09cec752009-03-23 15:11:44 +02001502 if (kvm_cpu_has_pending_timer(vcpu))
1503 break;
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001504 if (signal_pending(current))
1505 break;
1506
Eddie Dongb6958ce2007-07-18 12:15:21 +03001507 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03001508 }
1509
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001510 finish_wait(&vcpu->wq, &wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001511}
1512
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001513#ifndef CONFIG_S390
Christoffer Dallb6d33832012-03-08 16:44:24 -05001514/*
1515 * Kick a sleeping VCPU, or a guest VCPU in guest mode, into host kernel mode.
1516 */
1517void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
1518{
1519 int me;
1520 int cpu = vcpu->cpu;
1521 wait_queue_head_t *wqp;
1522
1523 wqp = kvm_arch_vcpu_wq(vcpu);
1524 if (waitqueue_active(wqp)) {
1525 wake_up_interruptible(wqp);
1526 ++vcpu->stat.halt_wakeup;
1527 }
1528
1529 me = get_cpu();
1530 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu))
1531 if (kvm_arch_vcpu_should_kick(vcpu))
1532 smp_send_reschedule(cpu);
1533 put_cpu();
1534}
Marcelo Tosatti8c847802012-03-14 17:58:48 -03001535#endif /* !CONFIG_S390 */
Christoffer Dallb6d33832012-03-08 16:44:24 -05001536
Avi Kivity6aa8b732006-12-10 02:21:36 -08001537void kvm_resched(struct kvm_vcpu *vcpu)
1538{
Yaozu Dong3fca0362007-04-25 16:49:19 +03001539 if (!need_resched())
1540 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001541 cond_resched();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001542}
1543EXPORT_SYMBOL_GPL(kvm_resched);
1544
Rik van Riel217ece62011-02-01 09:53:28 -05001545void kvm_vcpu_on_spin(struct kvm_vcpu *me)
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001546{
Rik van Riel217ece62011-02-01 09:53:28 -05001547 struct kvm *kvm = me->kvm;
1548 struct kvm_vcpu *vcpu;
1549 int last_boosted_vcpu = me->kvm->last_boosted_vcpu;
1550 int yielded = 0;
1551 int pass;
1552 int i;
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001553
Rik van Riel217ece62011-02-01 09:53:28 -05001554 /*
1555 * We boost the priority of a VCPU that is runnable but not
1556 * currently running, because it got preempted by something
1557 * else and called schedule in __vcpu_run. Hopefully that
1558 * VCPU is holding the lock that we need and will release it.
1559 * We approximate round-robin by starting at the last boosted VCPU.
1560 */
1561 for (pass = 0; pass < 2 && !yielded; pass++) {
1562 kvm_for_each_vcpu(i, vcpu, kvm) {
1563 struct task_struct *task = NULL;
1564 struct pid *pid;
1565 if (!pass && i < last_boosted_vcpu) {
1566 i = last_boosted_vcpu;
1567 continue;
1568 } else if (pass && i > last_boosted_vcpu)
1569 break;
1570 if (vcpu == me)
1571 continue;
1572 if (waitqueue_active(&vcpu->wq))
1573 continue;
1574 rcu_read_lock();
1575 pid = rcu_dereference(vcpu->pid);
1576 if (pid)
1577 task = get_pid_task(vcpu->pid, PIDTYPE_PID);
1578 rcu_read_unlock();
1579 if (!task)
1580 continue;
1581 if (task->flags & PF_VCPU) {
1582 put_task_struct(task);
1583 continue;
1584 }
1585 if (yield_to(task, 1)) {
1586 put_task_struct(task);
1587 kvm->last_boosted_vcpu = i;
1588 yielded = 1;
1589 break;
1590 }
1591 put_task_struct(task);
1592 }
1593 }
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001594}
1595EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
1596
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001597static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001598{
1599 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001600 struct page *page;
1601
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001602 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02001603 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02001604#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001605 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001606 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02001607#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02001608#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1609 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1610 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
1611#endif
Avi Kivity039576c2007-03-20 12:46:50 +02001612 else
Carsten Otte5b1c1492012-01-04 10:25:23 +01001613 return kvm_arch_vcpu_fault(vcpu, vmf);
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001614 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001615 vmf->page = page;
1616 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001617}
1618
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04001619static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001620 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001621};
1622
1623static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1624{
1625 vma->vm_ops = &kvm_vcpu_vm_ops;
1626 return 0;
1627}
1628
Avi Kivitybccf2152007-02-21 18:04:26 +02001629static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1630{
1631 struct kvm_vcpu *vcpu = filp->private_data;
1632
Al Viro66c0b392008-04-19 20:33:56 +01001633 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001634 return 0;
1635}
1636
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001637static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02001638 .release = kvm_vcpu_release,
1639 .unlocked_ioctl = kvm_vcpu_ioctl,
Alexander Graf1dda6062011-06-08 02:45:37 +02001640#ifdef CONFIG_COMPAT
1641 .compat_ioctl = kvm_vcpu_compat_ioctl,
1642#endif
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001643 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001644 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02001645};
1646
1647/*
1648 * Allocates an inode for the vcpu.
1649 */
1650static int create_vcpu_fd(struct kvm_vcpu *vcpu)
1651{
Roland Dreier628ff7c2009-12-18 09:41:24 -08001652 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR);
Avi Kivitybccf2152007-02-21 18:04:26 +02001653}
1654
Avi Kivityc5ea7662007-02-20 18:41:05 +02001655/*
1656 * Creates some virtual cpus. Good luck creating more than one.
1657 */
Gleb Natapov73880c82009-06-09 15:56:28 +03001658static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02001659{
1660 int r;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001661 struct kvm_vcpu *vcpu, *v;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001662
Gleb Natapov73880c82009-06-09 15:56:28 +03001663 vcpu = kvm_arch_vcpu_create(kvm, id);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001664 if (IS_ERR(vcpu))
1665 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001666
Avi Kivity15ad7142007-07-11 18:17:21 +03001667 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
1668
Avi Kivity26e52152007-11-20 15:30:24 +02001669 r = kvm_arch_vcpu_setup(vcpu);
1670 if (r)
Jan Kiszkad7805922011-05-23 10:33:05 +02001671 goto vcpu_destroy;
Avi Kivity26e52152007-11-20 15:30:24 +02001672
Shaohua Li11ec2802007-07-23 14:51:37 +08001673 mutex_lock(&kvm->lock);
Avi Kivity3e515702012-03-05 14:23:29 +02001674 if (!kvm_vcpu_compatible(vcpu)) {
1675 r = -EINVAL;
1676 goto unlock_vcpu_destroy;
1677 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001678 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
1679 r = -EINVAL;
Jan Kiszkad7805922011-05-23 10:33:05 +02001680 goto unlock_vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001681 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001682
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001683 kvm_for_each_vcpu(r, v, kvm)
1684 if (v->vcpu_id == id) {
Gleb Natapov73880c82009-06-09 15:56:28 +03001685 r = -EEXIST;
Jan Kiszkad7805922011-05-23 10:33:05 +02001686 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03001687 }
1688
1689 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001690
1691 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01001692 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001693 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03001694 if (r < 0) {
1695 kvm_put_kvm(kvm);
Jan Kiszkad7805922011-05-23 10:33:05 +02001696 goto unlock_vcpu_destroy;
Gleb Natapov73880c82009-06-09 15:56:28 +03001697 }
1698
1699 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
1700 smp_wmb();
1701 atomic_inc(&kvm->online_vcpus);
1702
Gleb Natapov73880c82009-06-09 15:56:28 +03001703 mutex_unlock(&kvm->lock);
Avi Kivitybccf2152007-02-21 18:04:26 +02001704 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001705
Jan Kiszkad7805922011-05-23 10:33:05 +02001706unlock_vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03001707 mutex_unlock(&kvm->lock);
Jan Kiszkad7805922011-05-23 10:33:05 +02001708vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06001709 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001710 return r;
1711}
1712
Avi Kivity1961d272007-03-05 19:46:05 +02001713static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
1714{
1715 if (sigset) {
1716 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
1717 vcpu->sigset_active = 1;
1718 vcpu->sigset = *sigset;
1719 } else
1720 vcpu->sigset_active = 0;
1721 return 0;
1722}
1723
Avi Kivitybccf2152007-02-21 18:04:26 +02001724static long kvm_vcpu_ioctl(struct file *filp,
1725 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001726{
Avi Kivitybccf2152007-02-21 18:04:26 +02001727 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00001728 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02001729 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001730 struct kvm_fpu *fpu = NULL;
1731 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001732
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001733 if (vcpu->kvm->mm != current->mm)
1734 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03001735
1736#if defined(CONFIG_S390) || defined(CONFIG_PPC)
1737 /*
1738 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
1739 * so vcpu_load() would break it.
1740 */
1741 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_INTERRUPT)
1742 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
1743#endif
1744
1745
1746 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001747 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001748 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02001749 r = -EINVAL;
1750 if (arg)
1751 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05001752 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02001753 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001754 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001755 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001756 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001757
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001758 r = -ENOMEM;
1759 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1760 if (!kvm_regs)
1761 goto out;
1762 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001763 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001764 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001765 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001766 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
1767 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001768 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001769out_free1:
1770 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001771 break;
1772 }
1773 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001774 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001775
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001776 r = -ENOMEM;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001777 kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
1778 if (IS_ERR(kvm_regs)) {
1779 r = PTR_ERR(kvm_regs);
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001780 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001781 }
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001782 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001783 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001784 goto out_free2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001785 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001786out_free2:
1787 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001788 break;
1789 }
1790 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001791 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1792 r = -ENOMEM;
1793 if (!kvm_sregs)
1794 goto out;
1795 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001796 if (r)
1797 goto out;
1798 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001799 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001800 goto out;
1801 r = 0;
1802 break;
1803 }
1804 case KVM_SET_SREGS: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02001805 kvm_sregs = memdup_user(argp, sizeof(*kvm_sregs));
1806 if (IS_ERR(kvm_sregs)) {
1807 r = PTR_ERR(kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001808 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001809 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07001810 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001811 if (r)
1812 goto out;
1813 r = 0;
1814 break;
1815 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03001816 case KVM_GET_MP_STATE: {
1817 struct kvm_mp_state mp_state;
1818
1819 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
1820 if (r)
1821 goto out;
1822 r = -EFAULT;
1823 if (copy_to_user(argp, &mp_state, sizeof mp_state))
1824 goto out;
1825 r = 0;
1826 break;
1827 }
1828 case KVM_SET_MP_STATE: {
1829 struct kvm_mp_state mp_state;
1830
1831 r = -EFAULT;
1832 if (copy_from_user(&mp_state, argp, sizeof mp_state))
1833 goto out;
1834 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
1835 if (r)
1836 goto out;
1837 r = 0;
1838 break;
1839 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001840 case KVM_TRANSLATE: {
1841 struct kvm_translation tr;
1842
1843 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00001844 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001845 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08001846 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001847 if (r)
1848 goto out;
1849 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00001850 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001851 goto out;
1852 r = 0;
1853 break;
1854 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001855 case KVM_SET_GUEST_DEBUG: {
1856 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001857
1858 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00001859 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001860 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001861 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001862 if (r)
1863 goto out;
1864 r = 0;
1865 break;
1866 }
Avi Kivity1961d272007-03-05 19:46:05 +02001867 case KVM_SET_SIGNAL_MASK: {
1868 struct kvm_signal_mask __user *sigmask_arg = argp;
1869 struct kvm_signal_mask kvm_sigmask;
1870 sigset_t sigset, *p;
1871
1872 p = NULL;
1873 if (argp) {
1874 r = -EFAULT;
1875 if (copy_from_user(&kvm_sigmask, argp,
1876 sizeof kvm_sigmask))
1877 goto out;
1878 r = -EINVAL;
1879 if (kvm_sigmask.len != sizeof sigset)
1880 goto out;
1881 r = -EFAULT;
1882 if (copy_from_user(&sigset, sigmask_arg->sigset,
1883 sizeof sigset))
1884 goto out;
1885 p = &sigset;
1886 }
Andi Kleen376d41f2010-06-10 13:10:47 +02001887 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02001888 break;
1889 }
Avi Kivityb8836732007-04-01 16:34:31 +03001890 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001891 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
1892 r = -ENOMEM;
1893 if (!fpu)
1894 goto out;
1895 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03001896 if (r)
1897 goto out;
1898 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001899 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03001900 goto out;
1901 r = 0;
1902 break;
1903 }
1904 case KVM_SET_FPU: {
Sasha Levinff5c2c02011-12-04 19:36:29 +02001905 fpu = memdup_user(argp, sizeof(*fpu));
1906 if (IS_ERR(fpu)) {
1907 r = PTR_ERR(fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03001908 goto out;
Sasha Levinff5c2c02011-12-04 19:36:29 +02001909 }
Dave Hansenfa3795a2008-08-11 10:01:46 -07001910 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03001911 if (r)
1912 goto out;
1913 r = 0;
1914 break;
1915 }
Avi Kivitybccf2152007-02-21 18:04:26 +02001916 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02001917 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02001918 }
1919out:
Avi Kivity2122ff52010-05-13 11:25:04 +03001920 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07001921 kfree(fpu);
1922 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02001923 return r;
1924}
1925
Alexander Graf1dda6062011-06-08 02:45:37 +02001926#ifdef CONFIG_COMPAT
1927static long kvm_vcpu_compat_ioctl(struct file *filp,
1928 unsigned int ioctl, unsigned long arg)
1929{
1930 struct kvm_vcpu *vcpu = filp->private_data;
1931 void __user *argp = compat_ptr(arg);
1932 int r;
1933
1934 if (vcpu->kvm->mm != current->mm)
1935 return -EIO;
1936
1937 switch (ioctl) {
1938 case KVM_SET_SIGNAL_MASK: {
1939 struct kvm_signal_mask __user *sigmask_arg = argp;
1940 struct kvm_signal_mask kvm_sigmask;
1941 compat_sigset_t csigset;
1942 sigset_t sigset;
1943
1944 if (argp) {
1945 r = -EFAULT;
1946 if (copy_from_user(&kvm_sigmask, argp,
1947 sizeof kvm_sigmask))
1948 goto out;
1949 r = -EINVAL;
1950 if (kvm_sigmask.len != sizeof csigset)
1951 goto out;
1952 r = -EFAULT;
1953 if (copy_from_user(&csigset, sigmask_arg->sigset,
1954 sizeof csigset))
1955 goto out;
1956 }
1957 sigset_from_compat(&sigset, &csigset);
1958 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
1959 break;
1960 }
1961 default:
1962 r = kvm_vcpu_ioctl(filp, ioctl, arg);
1963 }
1964
1965out:
1966 return r;
1967}
1968#endif
1969
Avi Kivitybccf2152007-02-21 18:04:26 +02001970static long kvm_vm_ioctl(struct file *filp,
1971 unsigned int ioctl, unsigned long arg)
1972{
1973 struct kvm *kvm = filp->private_data;
1974 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01001975 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02001976
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001977 if (kvm->mm != current->mm)
1978 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02001979 switch (ioctl) {
1980 case KVM_CREATE_VCPU:
1981 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
1982 if (r < 0)
1983 goto out;
1984 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02001985 case KVM_SET_USER_MEMORY_REGION: {
1986 struct kvm_userspace_memory_region kvm_userspace_mem;
1987
1988 r = -EFAULT;
1989 if (copy_from_user(&kvm_userspace_mem, argp,
1990 sizeof kvm_userspace_mem))
1991 goto out;
1992
1993 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001994 if (r)
1995 goto out;
1996 break;
1997 }
1998 case KVM_GET_DIRTY_LOG: {
1999 struct kvm_dirty_log log;
2000
2001 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002002 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002003 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002004 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002005 if (r)
2006 goto out;
2007 break;
2008 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02002009#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2010 case KVM_REGISTER_COALESCED_MMIO: {
2011 struct kvm_coalesced_mmio_zone zone;
2012 r = -EFAULT;
2013 if (copy_from_user(&zone, argp, sizeof zone))
2014 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02002015 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
2016 if (r)
2017 goto out;
2018 r = 0;
2019 break;
2020 }
2021 case KVM_UNREGISTER_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_unregister_coalesced_mmio(kvm, &zone);
2027 if (r)
2028 goto out;
2029 r = 0;
2030 break;
2031 }
2032#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04002033 case KVM_IRQFD: {
2034 struct kvm_irqfd data;
2035
2036 r = -EFAULT;
2037 if (copy_from_user(&data, argp, sizeof data))
2038 goto out;
2039 r = kvm_irqfd(kvm, data.fd, data.gsi, data.flags);
2040 break;
2041 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04002042 case KVM_IOEVENTFD: {
2043 struct kvm_ioeventfd data;
2044
2045 r = -EFAULT;
2046 if (copy_from_user(&data, argp, sizeof data))
2047 goto out;
2048 r = kvm_ioeventfd(kvm, &data);
2049 break;
2050 }
Gleb Natapov73880c82009-06-09 15:56:28 +03002051#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2052 case KVM_SET_BOOT_CPU_ID:
2053 r = 0;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002054 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002055 if (atomic_read(&kvm->online_vcpus) != 0)
2056 r = -EBUSY;
2057 else
2058 kvm->bsp_vcpu_id = arg;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03002059 mutex_unlock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03002060 break;
2061#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02002062 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01002063 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivitybfd99ff2009-08-26 14:57:50 +03002064 if (r == -ENOTTY)
2065 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002066 }
2067out:
2068 return r;
2069}
2070
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002071#ifdef CONFIG_COMPAT
2072struct compat_kvm_dirty_log {
2073 __u32 slot;
2074 __u32 padding1;
2075 union {
2076 compat_uptr_t dirty_bitmap; /* one bit per page */
2077 __u64 padding2;
2078 };
2079};
2080
2081static long kvm_vm_compat_ioctl(struct file *filp,
2082 unsigned int ioctl, unsigned long arg)
2083{
2084 struct kvm *kvm = filp->private_data;
2085 int r;
2086
2087 if (kvm->mm != current->mm)
2088 return -EIO;
2089 switch (ioctl) {
2090 case KVM_GET_DIRTY_LOG: {
2091 struct compat_kvm_dirty_log compat_log;
2092 struct kvm_dirty_log log;
2093
2094 r = -EFAULT;
2095 if (copy_from_user(&compat_log, (void __user *)arg,
2096 sizeof(compat_log)))
2097 goto out;
2098 log.slot = compat_log.slot;
2099 log.padding1 = compat_log.padding1;
2100 log.padding2 = compat_log.padding2;
2101 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
2102
2103 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
2104 if (r)
2105 goto out;
2106 break;
2107 }
2108 default:
2109 r = kvm_vm_ioctl(filp, ioctl, arg);
2110 }
2111
2112out:
2113 return r;
2114}
2115#endif
2116
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002117static int kvm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivityf17abe92007-02-21 19:28:04 +02002118{
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002119 struct page *page[1];
2120 unsigned long addr;
2121 int npages;
2122 gfn_t gfn = vmf->pgoff;
Avi Kivityf17abe92007-02-21 19:28:04 +02002123 struct kvm *kvm = vma->vm_file->private_data;
Avi Kivityf17abe92007-02-21 19:28:04 +02002124
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002125 addr = gfn_to_hva(kvm, gfn);
2126 if (kvm_is_error_hva(addr))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002127 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002128
2129 npages = get_user_pages(current, current->mm, addr, 1, 1, 0, page,
2130 NULL);
2131 if (unlikely(npages != 1))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002132 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03002133
2134 vmf->page = page[0];
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002135 return 0;
Avi Kivityf17abe92007-02-21 19:28:04 +02002136}
2137
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002138static const struct vm_operations_struct kvm_vm_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11002139 .fault = kvm_vm_fault,
Avi Kivityf17abe92007-02-21 19:28:04 +02002140};
2141
2142static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
2143{
2144 vma->vm_ops = &kvm_vm_vm_ops;
2145 return 0;
2146}
2147
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002148static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02002149 .release = kvm_vm_release,
2150 .unlocked_ioctl = kvm_vm_ioctl,
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002151#ifdef CONFIG_COMPAT
2152 .compat_ioctl = kvm_vm_compat_ioctl,
2153#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02002154 .mmap = kvm_vm_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002155 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02002156};
2157
Carsten Ottee08b9632012-01-04 10:25:20 +01002158static int kvm_dev_ioctl_create_vm(unsigned long type)
Avi Kivityf17abe92007-02-21 19:28:04 +02002159{
Heiko Carstensaac87632010-10-27 17:22:10 +02002160 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002161 struct kvm *kvm;
2162
Carsten Ottee08b9632012-01-04 10:25:20 +01002163 kvm = kvm_create_vm(type);
Avi Kivityd6d28162007-06-28 08:38:16 -04002164 if (IS_ERR(kvm))
2165 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09002166#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2167 r = kvm_coalesced_mmio_init(kvm);
2168 if (r < 0) {
2169 kvm_put_kvm(kvm);
2170 return r;
2171 }
2172#endif
Heiko Carstensaac87632010-10-27 17:22:10 +02002173 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
2174 if (r < 0)
Al Viro66c0b392008-04-19 20:33:56 +01002175 kvm_put_kvm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02002176
Heiko Carstensaac87632010-10-27 17:22:10 +02002177 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002178}
2179
Avi Kivity1a811b62008-12-08 18:25:27 +02002180static long kvm_dev_ioctl_check_extension_generic(long arg)
2181{
2182 switch (arg) {
Avi Kivityca9edae2008-12-08 18:29:29 +02002183 case KVM_CAP_USER_MEMORY:
Avi Kivity1a811b62008-12-08 18:25:27 +02002184 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
Jan Kiszka4cd481f2009-04-13 11:59:32 +02002185 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Gleb Natapov73880c82009-06-09 15:56:28 +03002186#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2187 case KVM_CAP_SET_BOOT_CPU_ID:
2188#endif
Avi Kivitya9c73992009-11-04 11:54:59 +02002189 case KVM_CAP_INTERNAL_ERROR_DATA:
Avi Kivity1a811b62008-12-08 18:25:27 +02002190 return 1;
Avi Kivity399ec802008-11-19 13:58:46 +02002191#ifdef CONFIG_HAVE_KVM_IRQCHIP
2192 case KVM_CAP_IRQ_ROUTING:
Sheng Yang36463142009-03-16 16:33:43 +08002193 return KVM_MAX_IRQ_ROUTES;
Avi Kivity399ec802008-11-19 13:58:46 +02002194#endif
Avi Kivity1a811b62008-12-08 18:25:27 +02002195 default:
2196 break;
2197 }
2198 return kvm_dev_ioctl_check_extension(arg);
2199}
2200
Avi Kivityf17abe92007-02-21 19:28:04 +02002201static long kvm_dev_ioctl(struct file *filp,
2202 unsigned int ioctl, unsigned long arg)
2203{
Avi Kivity07c45a32007-03-07 13:05:38 +02002204 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002205
2206 switch (ioctl) {
2207 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002208 r = -EINVAL;
2209 if (arg)
2210 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002211 r = KVM_API_VERSION;
2212 break;
2213 case KVM_CREATE_VM:
Carsten Ottee08b9632012-01-04 10:25:20 +01002214 r = kvm_dev_ioctl_create_vm(arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02002215 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002216 case KVM_CHECK_EXTENSION:
Avi Kivity1a811b62008-12-08 18:25:27 +02002217 r = kvm_dev_ioctl_check_extension_generic(arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02002218 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02002219 case KVM_GET_VCPU_MMAP_SIZE:
2220 r = -EINVAL;
2221 if (arg)
2222 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02002223 r = PAGE_SIZE; /* struct kvm_run */
2224#ifdef CONFIG_X86
2225 r += PAGE_SIZE; /* pio data page */
2226#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002227#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2228 r += PAGE_SIZE; /* coalesced mmio ring page */
2229#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02002230 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002231 case KVM_TRACE_ENABLE:
2232 case KVM_TRACE_PAUSE:
2233 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03002234 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002235 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002236 default:
Carsten Otte043405e2007-10-10 17:16:19 +02002237 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002238 }
2239out:
2240 return r;
2241}
2242
Avi Kivity6aa8b732006-12-10 02:21:36 -08002243static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002244 .unlocked_ioctl = kvm_dev_ioctl,
2245 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002246 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002247};
2248
2249static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002250 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002251 "kvm",
2252 &kvm_chardev_ops,
2253};
2254
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002255static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002256{
2257 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02002258 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03002259
Rusty Russell7f59f492008-12-07 21:25:45 +10302260 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002261 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02002262
Rusty Russell7f59f492008-12-07 21:25:45 +10302263 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02002264
2265 r = kvm_arch_hardware_enable(NULL);
2266
2267 if (r) {
2268 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
2269 atomic_inc(&hardware_enable_failed);
2270 printk(KERN_INFO "kvm: enabling virtualization on "
2271 "CPU%d failed\n", cpu);
2272 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03002273}
2274
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002275static void hardware_enable(void *junk)
2276{
Jan Kiszkae935b832011-02-08 12:55:33 +01002277 raw_spin_lock(&kvm_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002278 hardware_enable_nolock(junk);
Jan Kiszkae935b832011-02-08 12:55:33 +01002279 raw_spin_unlock(&kvm_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002280}
2281
2282static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002283{
2284 int cpu = raw_smp_processor_id();
2285
Rusty Russell7f59f492008-12-07 21:25:45 +10302286 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002287 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302288 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002289 kvm_arch_hardware_disable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03002290}
2291
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002292static void hardware_disable(void *junk)
2293{
Jan Kiszkae935b832011-02-08 12:55:33 +01002294 raw_spin_lock(&kvm_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002295 hardware_disable_nolock(junk);
Jan Kiszkae935b832011-02-08 12:55:33 +01002296 raw_spin_unlock(&kvm_lock);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002297}
2298
Alexander Graf10474ae2009-09-15 11:37:46 +02002299static void hardware_disable_all_nolock(void)
2300{
2301 BUG_ON(!kvm_usage_count);
2302
2303 kvm_usage_count--;
2304 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002305 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002306}
2307
2308static void hardware_disable_all(void)
2309{
Jan Kiszkae935b832011-02-08 12:55:33 +01002310 raw_spin_lock(&kvm_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002311 hardware_disable_all_nolock();
Jan Kiszkae935b832011-02-08 12:55:33 +01002312 raw_spin_unlock(&kvm_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002313}
2314
2315static int hardware_enable_all(void)
2316{
2317 int r = 0;
2318
Jan Kiszkae935b832011-02-08 12:55:33 +01002319 raw_spin_lock(&kvm_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002320
2321 kvm_usage_count++;
2322 if (kvm_usage_count == 1) {
2323 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002324 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002325
2326 if (atomic_read(&hardware_enable_failed)) {
2327 hardware_disable_all_nolock();
2328 r = -EBUSY;
2329 }
2330 }
2331
Jan Kiszkae935b832011-02-08 12:55:33 +01002332 raw_spin_unlock(&kvm_lock);
Alexander Graf10474ae2009-09-15 11:37:46 +02002333
2334 return r;
2335}
2336
Avi Kivity774c47f2007-02-12 00:54:47 -08002337static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2338 void *v)
2339{
2340 int cpu = (long)v;
2341
Alexander Graf10474ae2009-09-15 11:37:46 +02002342 if (!kvm_usage_count)
2343 return NOTIFY_OK;
2344
Avi Kivity1a6f4d72007-11-11 18:37:32 +02002345 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08002346 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03002347 case CPU_DYING:
Avi Kivity6ec8a852007-08-19 15:57:26 +03002348 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
2349 cpu);
2350 hardware_disable(NULL);
2351 break;
Zachary Amsdenda908f22010-08-19 22:07:27 -10002352 case CPU_STARTING:
Jeremy Katz43934a32007-02-19 14:37:46 +02002353 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
2354 cpu);
Zachary Amsdenda908f22010-08-19 22:07:27 -10002355 hardware_enable(NULL);
Avi Kivity774c47f2007-02-12 00:54:47 -08002356 break;
2357 }
2358 return NOTIFY_OK;
2359}
2360
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002361
Avi Kivityb7c41452010-12-02 17:52:50 +02002362asmlinkage void kvm_spurious_fault(void)
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002363{
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002364 /* Fault while not rebooting. We want the trace. */
2365 BUG();
2366}
Avi Kivityb7c41452010-12-02 17:52:50 +02002367EXPORT_SYMBOL_GPL(kvm_spurious_fault);
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002368
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002369static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04002370 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002371{
Sheng Yang8e1c1812009-04-29 11:09:04 +08002372 /*
2373 * Some (well, at least mine) BIOSes hang on reboot if
2374 * in vmx root mode.
2375 *
2376 * And Intel TXT required VMX off for all cpu when system shutdown.
2377 */
2378 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
2379 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002380 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002381 return NOTIFY_OK;
2382}
2383
2384static struct notifier_block kvm_reboot_notifier = {
2385 .notifier_call = kvm_reboot,
2386 .priority = 0,
2387};
2388
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002389static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002390{
2391 int i;
2392
2393 for (i = 0; i < bus->dev_count; i++) {
Sasha Levin743eeb02011-07-27 16:00:48 +03002394 struct kvm_io_device *pos = bus->range[i].dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002395
2396 kvm_iodevice_destructor(pos);
2397 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002398 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002399}
2400
Sasha Levin743eeb02011-07-27 16:00:48 +03002401int kvm_io_bus_sort_cmp(const void *p1, const void *p2)
2402{
2403 const struct kvm_io_range *r1 = p1;
2404 const struct kvm_io_range *r2 = p2;
2405
2406 if (r1->addr < r2->addr)
2407 return -1;
2408 if (r1->addr + r1->len > r2->addr + r2->len)
2409 return 1;
2410 return 0;
2411}
2412
2413int kvm_io_bus_insert_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev,
2414 gpa_t addr, int len)
2415{
Sasha Levin743eeb02011-07-27 16:00:48 +03002416 bus->range[bus->dev_count++] = (struct kvm_io_range) {
2417 .addr = addr,
2418 .len = len,
2419 .dev = dev,
2420 };
2421
2422 sort(bus->range, bus->dev_count, sizeof(struct kvm_io_range),
2423 kvm_io_bus_sort_cmp, NULL);
2424
2425 return 0;
2426}
2427
2428int kvm_io_bus_get_first_dev(struct kvm_io_bus *bus,
2429 gpa_t addr, int len)
2430{
2431 struct kvm_io_range *range, key;
2432 int off;
2433
2434 key = (struct kvm_io_range) {
2435 .addr = addr,
2436 .len = len,
2437 };
2438
2439 range = bsearch(&key, bus->range, bus->dev_count,
2440 sizeof(struct kvm_io_range), kvm_io_bus_sort_cmp);
2441 if (range == NULL)
2442 return -ENOENT;
2443
2444 off = range - bus->range;
2445
2446 while (off > 0 && kvm_io_bus_sort_cmp(&key, &bus->range[off-1]) == 0)
2447 off--;
2448
2449 return off;
2450}
2451
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002452/* kvm_io_bus_write - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002453int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002454 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002455{
Sasha Levin743eeb02011-07-27 16:00:48 +03002456 int idx;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002457 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03002458 struct kvm_io_range range;
2459
2460 range = (struct kvm_io_range) {
2461 .addr = addr,
2462 .len = len,
2463 };
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002464
2465 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
Sasha Levin743eeb02011-07-27 16:00:48 +03002466 idx = kvm_io_bus_get_first_dev(bus, addr, len);
2467 if (idx < 0)
2468 return -EOPNOTSUPP;
2469
2470 while (idx < bus->dev_count &&
2471 kvm_io_bus_sort_cmp(&range, &bus->range[idx]) == 0) {
2472 if (!kvm_iodevice_write(bus->range[idx].dev, addr, len, val))
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002473 return 0;
Sasha Levin743eeb02011-07-27 16:00:48 +03002474 idx++;
2475 }
2476
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002477 return -EOPNOTSUPP;
2478}
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002479
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002480/* kvm_io_bus_read - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002481int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2482 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002483{
Sasha Levin743eeb02011-07-27 16:00:48 +03002484 int idx;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002485 struct kvm_io_bus *bus;
Sasha Levin743eeb02011-07-27 16:00:48 +03002486 struct kvm_io_range range;
2487
2488 range = (struct kvm_io_range) {
2489 .addr = addr,
2490 .len = len,
2491 };
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002492
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002493 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
Sasha Levin743eeb02011-07-27 16:00:48 +03002494 idx = kvm_io_bus_get_first_dev(bus, addr, len);
2495 if (idx < 0)
2496 return -EOPNOTSUPP;
2497
2498 while (idx < bus->dev_count &&
2499 kvm_io_bus_sort_cmp(&range, &bus->range[idx]) == 0) {
2500 if (!kvm_iodevice_read(bus->range[idx].dev, addr, len, val))
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002501 return 0;
Sasha Levin743eeb02011-07-27 16:00:48 +03002502 idx++;
2503 }
2504
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002505 return -EOPNOTSUPP;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002506}
2507
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002508/* Caller must hold slots_lock. */
Sasha Levin743eeb02011-07-27 16:00:48 +03002509int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2510 int len, struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002511{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002512 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04002513
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002514 bus = kvm->buses[bus_idx];
Amos Konga13007162012-03-09 12:17:32 +08002515 if (bus->dev_count > NR_IOBUS_DEVS - 1)
Gregory Haskins090b7af2009-07-07 17:08:44 -04002516 return -ENOSPC;
2517
Amos Konga13007162012-03-09 12:17:32 +08002518 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count + 1) *
2519 sizeof(struct kvm_io_range)), GFP_KERNEL);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002520 if (!new_bus)
2521 return -ENOMEM;
Amos Konga13007162012-03-09 12:17:32 +08002522 memcpy(new_bus, bus, sizeof(*bus) + (bus->dev_count *
2523 sizeof(struct kvm_io_range)));
Sasha Levin743eeb02011-07-27 16:00:48 +03002524 kvm_io_bus_insert_dev(new_bus, dev, addr, len);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002525 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2526 synchronize_srcu_expedited(&kvm->srcu);
2527 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04002528
2529 return 0;
2530}
2531
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002532/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002533int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
2534 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04002535{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002536 int i, r;
2537 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002538
Sasha Levincdfca7b2011-12-04 19:36:28 +02002539 bus = kvm->buses[bus_idx];
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002540 r = -ENOENT;
Amos Konga13007162012-03-09 12:17:32 +08002541 for (i = 0; i < bus->dev_count; i++)
2542 if (bus->range[i].dev == dev) {
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002543 r = 0;
Gregory Haskins090b7af2009-07-07 17:08:44 -04002544 break;
2545 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002546
Amos Konga13007162012-03-09 12:17:32 +08002547 if (r)
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002548 return r;
Amos Konga13007162012-03-09 12:17:32 +08002549
2550 new_bus = kzalloc(sizeof(*bus) + ((bus->dev_count - 1) *
2551 sizeof(struct kvm_io_range)), GFP_KERNEL);
2552 if (!new_bus)
2553 return -ENOMEM;
2554
2555 memcpy(new_bus, bus, sizeof(*bus) + i * sizeof(struct kvm_io_range));
2556 new_bus->dev_count--;
2557 memcpy(new_bus->range + i, bus->range + i + 1,
2558 (new_bus->dev_count - i) * sizeof(struct kvm_io_range));
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002559
2560 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2561 synchronize_srcu_expedited(&kvm->srcu);
2562 kfree(bus);
2563 return r;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002564}
2565
Avi Kivity774c47f2007-02-12 00:54:47 -08002566static struct notifier_block kvm_cpu_notifier = {
2567 .notifier_call = kvm_cpu_hotplug,
Avi Kivity774c47f2007-02-12 00:54:47 -08002568};
2569
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002570static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02002571{
2572 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02002573 struct kvm *kvm;
2574
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002575 *val = 0;
Jan Kiszkae935b832011-02-08 12:55:33 +01002576 raw_spin_lock(&kvm_lock);
Avi Kivityba1389b2007-11-18 16:24:12 +02002577 list_for_each_entry(kvm, &vm_list, vm_list)
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002578 *val += *(u32 *)((void *)kvm + offset);
Jan Kiszkae935b832011-02-08 12:55:33 +01002579 raw_spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002580 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02002581}
2582
2583DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
2584
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002585static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03002586{
2587 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002588 struct kvm *kvm;
2589 struct kvm_vcpu *vcpu;
2590 int i;
2591
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002592 *val = 0;
Jan Kiszkae935b832011-02-08 12:55:33 +01002593 raw_spin_lock(&kvm_lock);
Avi Kivity1165f5f2007-04-19 17:27:43 +03002594 list_for_each_entry(kvm, &vm_list, vm_list)
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002595 kvm_for_each_vcpu(i, vcpu, kvm)
2596 *val += *(u32 *)((void *)vcpu + offset);
2597
Jan Kiszkae935b832011-02-08 12:55:33 +01002598 raw_spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002599 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002600}
2601
Avi Kivityba1389b2007-11-18 16:24:12 +02002602DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
2603
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002604static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02002605 [KVM_STAT_VCPU] = &vcpu_stat_fops,
2606 [KVM_STAT_VM] = &vm_stat_fops,
2607};
Avi Kivity1165f5f2007-04-19 17:27:43 +03002608
Hamo4f69b682011-12-15 14:23:16 +08002609static int kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002610{
Hamo4f69b682011-12-15 14:23:16 +08002611 int r = -EFAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002612 struct kvm_stats_debugfs_item *p;
2613
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002614 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Hamo4f69b682011-12-15 14:23:16 +08002615 if (kvm_debugfs_dir == NULL)
2616 goto out;
2617
2618 for (p = debugfs_entries; p->name; ++p) {
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002619 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
Avi Kivity1165f5f2007-04-19 17:27:43 +03002620 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02002621 stat_fops[p->kind]);
Hamo4f69b682011-12-15 14:23:16 +08002622 if (p->dentry == NULL)
2623 goto out_dir;
2624 }
2625
2626 return 0;
2627
2628out_dir:
2629 debugfs_remove_recursive(kvm_debugfs_dir);
2630out:
2631 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002632}
2633
2634static void kvm_exit_debug(void)
2635{
2636 struct kvm_stats_debugfs_item *p;
2637
2638 for (p = debugfs_entries; p->name; ++p)
2639 debugfs_remove(p->dentry);
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002640 debugfs_remove(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002641}
2642
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002643static int kvm_suspend(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08002644{
Alexander Graf10474ae2009-09-15 11:37:46 +02002645 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002646 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002647 return 0;
2648}
2649
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002650static void kvm_resume(void)
Avi Kivity59ae6c62007-02-12 00:54:48 -08002651{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002652 if (kvm_usage_count) {
Jan Kiszkae935b832011-02-08 12:55:33 +01002653 WARN_ON(raw_spin_is_locked(&kvm_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002654 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002655 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08002656}
2657
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002658static struct syscore_ops kvm_syscore_ops = {
Avi Kivity59ae6c62007-02-12 00:54:48 -08002659 .suspend = kvm_suspend,
2660 .resume = kvm_resume,
2661};
2662
Izik Eiduscea7bb22007-10-17 19:17:48 +02002663struct page *bad_page;
Anthony Liguori35149e22008-04-02 14:46:56 -05002664pfn_t bad_pfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002665
Avi Kivity15ad7142007-07-11 18:17:21 +03002666static inline
2667struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
2668{
2669 return container_of(pn, struct kvm_vcpu, preempt_notifier);
2670}
2671
2672static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
2673{
2674 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2675
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002676 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002677}
2678
2679static void kvm_sched_out(struct preempt_notifier *pn,
2680 struct task_struct *next)
2681{
2682 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2683
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002684 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002685}
2686
Avi Kivity0ee75be2010-04-28 15:39:01 +03002687int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10002688 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002689{
2690 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002691 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002692
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002693 r = kvm_arch_init(opaque);
2694 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002695 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002696
2697 bad_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2698
2699 if (bad_page == NULL) {
2700 r = -ENOMEM;
2701 goto out;
2702 }
2703
Anthony Liguori35149e22008-04-02 14:46:56 -05002704 bad_pfn = page_to_pfn(bad_page);
2705
Huang Yingbf998152010-05-31 14:28:19 +08002706 hwpoison_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2707
2708 if (hwpoison_page == NULL) {
2709 r = -ENOMEM;
2710 goto out_free_0;
2711 }
2712
2713 hwpoison_pfn = page_to_pfn(hwpoison_page);
2714
Gleb Natapovedba23e2010-07-07 20:16:45 +03002715 fault_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2716
2717 if (fault_page == NULL) {
2718 r = -ENOMEM;
2719 goto out_free_0;
2720 }
2721
2722 fault_pfn = page_to_pfn(fault_page);
2723
Avi Kivity8437a6172009-06-06 14:52:35 -07002724 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10302725 r = -ENOMEM;
2726 goto out_free_0;
2727 }
2728
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002729 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002730 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10302731 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002732
Yang, Sheng002c7f72007-07-31 14:23:01 +03002733 for_each_online_cpu(cpu) {
2734 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002735 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02002736 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03002737 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002738 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002739 }
2740
Avi Kivity774c47f2007-02-12 00:54:47 -08002741 r = register_cpu_notifier(&kvm_cpu_notifier);
2742 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002743 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002744 register_reboot_notifier(&kvm_reboot_notifier);
2745
Rusty Russellc16f8622007-07-30 21:12:19 +10002746 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03002747 if (!vcpu_align)
2748 vcpu_align = __alignof__(struct kvm_vcpu);
2749 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08002750 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10002751 if (!kvm_vcpu_cache) {
2752 r = -ENOMEM;
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002753 goto out_free_3;
Rusty Russellc16f8622007-07-30 21:12:19 +10002754 }
2755
Gleb Natapovaf585b92010-10-14 11:22:46 +02002756 r = kvm_async_pf_init();
2757 if (r)
2758 goto out_free;
2759
Avi Kivity6aa8b732006-12-10 02:21:36 -08002760 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002761 kvm_vm_fops.owner = module;
2762 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002763
2764 r = misc_register(&kvm_dev);
2765 if (r) {
Mike Dayd77c26f2007-10-08 09:02:08 -04002766 printk(KERN_ERR "kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02002767 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002768 }
2769
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002770 register_syscore_ops(&kvm_syscore_ops);
2771
Avi Kivity15ad7142007-07-11 18:17:21 +03002772 kvm_preempt_ops.sched_in = kvm_sched_in;
2773 kvm_preempt_ops.sched_out = kvm_sched_out;
2774
Hamo4f69b682011-12-15 14:23:16 +08002775 r = kvm_init_debug();
2776 if (r) {
2777 printk(KERN_ERR "kvm: create debugfs files failed\n");
2778 goto out_undebugfs;
2779 }
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002780
Avi Kivityc7addb92007-09-16 18:58:32 +02002781 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002782
Hamo4f69b682011-12-15 14:23:16 +08002783out_undebugfs:
2784 unregister_syscore_ops(&kvm_syscore_ops);
Gleb Natapovaf585b92010-10-14 11:22:46 +02002785out_unreg:
2786 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002787out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10002788 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002789out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002790 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08002791 unregister_cpu_notifier(&kvm_cpu_notifier);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002792out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08002793out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002794 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10302795out_free_0a:
2796 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002797out_free_0:
Gleb Natapovedba23e2010-07-07 20:16:45 +03002798 if (fault_page)
2799 __free_page(fault_page);
Huang Yingbf998152010-05-31 14:28:19 +08002800 if (hwpoison_page)
2801 __free_page(hwpoison_page);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002802 __free_page(bad_page);
Avi Kivityca45aaa2007-03-01 19:21:03 +02002803out:
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002804 kvm_arch_exit();
Zhang Xiantaod23087842007-11-29 15:35:39 +08002805out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002806 return r;
2807}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002808EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002809
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002810void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002811{
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002812 kvm_exit_debug();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002813 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10002814 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02002815 kvm_async_pf_deinit();
Rafael J. Wysockifb3600c2011-03-23 22:16:23 +01002816 unregister_syscore_ops(&kvm_syscore_ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002817 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002818 unregister_cpu_notifier(&kvm_cpu_notifier);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002819 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002820 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002821 kvm_arch_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10302822 free_cpumask_var(cpus_hardware_enabled);
Huang Yingbf998152010-05-31 14:28:19 +08002823 __free_page(hwpoison_page);
Izik Eiduscea7bb22007-10-17 19:17:48 +02002824 __free_page(bad_page);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002825}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002826EXPORT_SYMBOL_GPL(kvm_exit);