blob: 4856a7dcbd7fb8742a11c15e4e4d59deb0808f1e [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>
Avi Kivity59ae6c62007-02-12 00:54:48 -080033#include <linux/sysdev.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>
Avi Kivity6aa8b732006-12-10 02:21:36 -080050
Avi Kivitye4956062007-06-28 14:15:57 -040051#include <asm/processor.h>
Avi Kivitye4956062007-06-28 14:15:57 -040052#include <asm/io.h>
53#include <asm/uaccess.h>
Izik Eidus3e021bf2007-11-19 11:16:57 +020054#include <asm/pgtable.h>
Alexander Grafc8240bd2009-10-30 05:47:26 +000055#include <asm-generic/bitops/le.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080056
Laurent Vivier5f94c172008-05-30 16:05:54 +020057#include "coalesced_mmio.h"
Gleb Natapovaf585b92010-10-14 11:22:46 +020058#include "async_pf.h"
Laurent Vivier5f94c172008-05-30 16:05:54 +020059
Marcelo Tosatti229456f2009-06-17 09:22:14 -030060#define CREATE_TRACE_POINTS
61#include <trace/events/kvm.h>
62
Avi Kivity6aa8b732006-12-10 02:21:36 -080063MODULE_AUTHOR("Qumranet");
64MODULE_LICENSE("GPL");
65
Marcelo Tosattifa40a822009-06-04 15:08:24 -030066/*
67 * Ordering of locks:
68 *
Sheng Yangfae3a352009-12-15 10:28:07 +080069 * kvm->lock --> kvm->slots_lock --> kvm->irq_lock
Marcelo Tosattifa40a822009-06-04 15:08:24 -030070 */
71
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080072DEFINE_SPINLOCK(kvm_lock);
73LIST_HEAD(vm_list);
Avi Kivity133de902007-02-12 00:54:44 -080074
Rusty Russell7f59f492008-12-07 21:25:45 +103075static cpumask_var_t cpus_hardware_enabled;
Alexander Graf10474ae2009-09-15 11:37:46 +020076static int kvm_usage_count = 0;
77static atomic_t hardware_enable_failed;
Avi Kivity1b6c0162007-05-24 13:03:52 +030078
Rusty Russellc16f8622007-07-30 21:12:19 +100079struct kmem_cache *kvm_vcpu_cache;
80EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +030081
Avi Kivity15ad7142007-07-11 18:17:21 +030082static __read_mostly struct preempt_ops kvm_preempt_ops;
83
Hollis Blanchard76f7c872008-04-15 16:05:42 -050084struct dentry *kvm_debugfs_dir;
Avi Kivity6aa8b732006-12-10 02:21:36 -080085
Avi Kivitybccf2152007-02-21 18:04:26 +020086static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
87 unsigned long arg);
Alexander Graf10474ae2009-09-15 11:37:46 +020088static int hardware_enable_all(void);
89static void hardware_disable_all(void);
Avi Kivitybccf2152007-02-21 18:04:26 +020090
Marcelo Tosattie93f8a02009-12-23 14:35:24 -020091static void kvm_io_bus_destroy(struct kvm_io_bus *bus);
92
Avi Kivityb7c41452010-12-02 17:52:50 +020093bool kvm_rebooting;
94EXPORT_SYMBOL_GPL(kvm_rebooting);
Avi Kivity4ecac3f2008-05-13 13:23:38 +030095
Marcelo Tosatti54dee992009-06-11 12:07:44 -030096static bool largepages_enabled = true;
97
Gleb Natapovfa7bff82010-07-07 20:16:44 +030098static struct page *hwpoison_page;
99static pfn_t hwpoison_pfn;
Huang Yingbf998152010-05-31 14:28:19 +0800100
Gleb Natapovedba23e2010-07-07 20:16:45 +0300101static struct page *fault_page;
102static pfn_t fault_pfn;
103
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +0800104inline int kvm_is_mmio_pfn(pfn_t pfn)
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300105{
Joerg Roedelfc5659c2009-02-18 14:08:58 +0100106 if (pfn_valid(pfn)) {
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800107 int reserved;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800108 struct page *tail = pfn_to_page(pfn);
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800109 struct page *head = compound_trans_head(tail);
110 reserved = PageReserved(head);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800111 if (head != tail) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800112 /*
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800113 * "head" is not a dangling pointer
114 * (compound_trans_head takes care of that)
115 * but the hugepage may have been splitted
116 * from under us (and we may not hold a
117 * reference count on the head page so it can
118 * be reused before we run PageReferenced), so
119 * we've to check PageTail before returning
120 * what we just read.
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800121 */
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800122 smp_rmb();
123 if (PageTail(tail))
124 return reserved;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800125 }
126 return PageReserved(tail);
Joerg Roedelfc5659c2009-02-18 14:08:58 +0100127 }
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300128
129 return true;
130}
131
Avi Kivity6aa8b732006-12-10 02:21:36 -0800132/*
133 * Switches to specified vcpu, until a matching vcpu_put()
134 */
Carsten Otte313a3dc2007-10-11 19:16:52 +0200135void vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800136{
Avi Kivity15ad7142007-07-11 18:17:21 +0300137 int cpu;
138
Avi Kivitybccf2152007-02-21 18:04:26 +0200139 mutex_lock(&vcpu->mutex);
Avi Kivity15ad7142007-07-11 18:17:21 +0300140 cpu = get_cpu();
141 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200142 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300143 put_cpu();
Avi Kivitybccf2152007-02-21 18:04:26 +0200144}
145
Carsten Otte313a3dc2007-10-11 19:16:52 +0200146void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800147{
Avi Kivity15ad7142007-07-11 18:17:21 +0300148 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200149 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300150 preempt_notifier_unregister(&vcpu->preempt_notifier);
151 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800152 mutex_unlock(&vcpu->mutex);
153}
154
Avi Kivityd9e368d2007-06-07 19:18:30 +0300155static void ack_flush(void *_completed)
156{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300157}
158
Rusty Russell49846892008-12-08 20:26:24 +1030159static bool make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300160{
Avi Kivity597a5f52008-07-20 14:24:22 +0300161 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030162 cpumask_var_t cpus;
163 bool called = true;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300164 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300165
Li Zefan79f55992009-06-15 14:58:26 +0800166 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030167
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800168 me = get_cpu();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300169 kvm_for_each_vcpu(i, vcpu, kvm) {
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800170 kvm_make_request(req, vcpu);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300171 cpu = vcpu->cpu;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800172
173 /* Set ->requests bit before we read ->mode */
174 smp_mb();
175
176 if (cpus != NULL && cpu != -1 && cpu != me &&
177 kvm_vcpu_exiting_guest_mode(vcpu) != OUTSIDE_GUEST_MODE)
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030178 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300179 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030180 if (unlikely(cpus == NULL))
181 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
182 else if (!cpumask_empty(cpus))
183 smp_call_function_many(cpus, ack_flush, NULL, 1);
184 else
185 called = false;
Xiao Guangrong3cba4132011-01-12 15:41:22 +0800186 put_cpu();
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030187 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030188 return called;
189}
190
191void kvm_flush_remote_tlbs(struct kvm *kvm)
192{
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800193 int dirty_count = kvm->tlbs_dirty;
194
195 smp_mb();
Rusty Russell49846892008-12-08 20:26:24 +1030196 if (make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
197 ++kvm->stat.remote_tlb_flush;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800198 cmpxchg(&kvm->tlbs_dirty, dirty_count, 0);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300199}
200
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500201void kvm_reload_remote_mmus(struct kvm *kvm)
202{
Rusty Russell49846892008-12-08 20:26:24 +1030203 make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500204}
205
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000206int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
207{
208 struct page *page;
209 int r;
210
211 mutex_init(&vcpu->mutex);
212 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000213 vcpu->kvm = kvm;
214 vcpu->vcpu_id = id;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300215 init_waitqueue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200216 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000217
218 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
219 if (!page) {
220 r = -ENOMEM;
221 goto fail;
222 }
223 vcpu->run = page_address(page);
224
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800225 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000226 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800227 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000228 return 0;
229
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000230fail_free_run:
231 free_page((unsigned long)vcpu->run);
232fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000233 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000234}
235EXPORT_SYMBOL_GPL(kvm_vcpu_init);
236
237void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
238{
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800239 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000240 free_page((unsigned long)vcpu->run);
241}
242EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
243
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200244#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
245static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
246{
247 return container_of(mn, struct kvm, mmu_notifier);
248}
249
250static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
251 struct mm_struct *mm,
252 unsigned long address)
253{
254 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200255 int need_tlb_flush, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200256
257 /*
258 * When ->invalidate_page runs, the linux pte has been zapped
259 * already but the page is still allocated until
260 * ->invalidate_page returns. So if we increase the sequence
261 * here the kvm page fault will notice if the spte can't be
262 * established because the page is going to be freed. If
263 * instead the kvm page fault establishes the spte before
264 * ->invalidate_page runs, kvm_unmap_hva will release it
265 * before returning.
266 *
267 * The sequence increase only need to be seen at spin_unlock
268 * time, and not at spin_lock time.
269 *
270 * Increasing the sequence after the spin_unlock would be
271 * unsafe because the kvm page fault could then establish the
272 * pte after kvm_unmap_hva returned, without noticing the page
273 * is going to be freed.
274 */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200275 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200276 spin_lock(&kvm->mmu_lock);
277 kvm->mmu_notifier_seq++;
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800278 need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200279 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200280 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200281
282 /* we've to flush the tlb before the pages can be freed */
283 if (need_tlb_flush)
284 kvm_flush_remote_tlbs(kvm);
285
286}
287
Izik Eidus3da0dd42009-09-23 21:47:18 +0300288static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
289 struct mm_struct *mm,
290 unsigned long address,
291 pte_t pte)
292{
293 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200294 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300295
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200296 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300297 spin_lock(&kvm->mmu_lock);
298 kvm->mmu_notifier_seq++;
299 kvm_set_spte_hva(kvm, address, pte);
300 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200301 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300302}
303
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200304static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
305 struct mm_struct *mm,
306 unsigned long start,
307 unsigned long end)
308{
309 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200310 int need_tlb_flush = 0, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200311
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200312 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200313 spin_lock(&kvm->mmu_lock);
314 /*
315 * The count increase must become visible at unlock time as no
316 * spte can be established without taking the mmu_lock and
317 * count is also read inside the mmu_lock critical section.
318 */
319 kvm->mmu_notifier_count++;
320 for (; start < end; start += PAGE_SIZE)
321 need_tlb_flush |= kvm_unmap_hva(kvm, start);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800322 need_tlb_flush |= kvm->tlbs_dirty;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200323 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200324 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200325
326 /* we've to flush the tlb before the pages can be freed */
327 if (need_tlb_flush)
328 kvm_flush_remote_tlbs(kvm);
329}
330
331static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn,
332 struct mm_struct *mm,
333 unsigned long start,
334 unsigned long end)
335{
336 struct kvm *kvm = mmu_notifier_to_kvm(mn);
337
338 spin_lock(&kvm->mmu_lock);
339 /*
340 * This sequence increase will notify the kvm page fault that
341 * the page that is going to be mapped in the spte could have
342 * been freed.
343 */
344 kvm->mmu_notifier_seq++;
345 /*
346 * The above sequence increase must be visible before the
347 * below count decrease but both values are read by the kvm
348 * page fault under mmu_lock spinlock so we don't need to add
349 * a smb_wmb() here in between the two.
350 */
351 kvm->mmu_notifier_count--;
352 spin_unlock(&kvm->mmu_lock);
353
354 BUG_ON(kvm->mmu_notifier_count < 0);
355}
356
357static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
358 struct mm_struct *mm,
359 unsigned long address)
360{
361 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200362 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200363
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200364 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200365 spin_lock(&kvm->mmu_lock);
366 young = kvm_age_hva(kvm, address);
367 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200368 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200369
370 if (young)
371 kvm_flush_remote_tlbs(kvm);
372
373 return young;
374}
375
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800376static int kvm_mmu_notifier_test_young(struct mmu_notifier *mn,
377 struct mm_struct *mm,
378 unsigned long address)
379{
380 struct kvm *kvm = mmu_notifier_to_kvm(mn);
381 int young, idx;
382
383 idx = srcu_read_lock(&kvm->srcu);
384 spin_lock(&kvm->mmu_lock);
385 young = kvm_test_age_hva(kvm, address);
386 spin_unlock(&kvm->mmu_lock);
387 srcu_read_unlock(&kvm->srcu, idx);
388
389 return young;
390}
391
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100392static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
393 struct mm_struct *mm)
394{
395 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800396 int idx;
397
398 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100399 kvm_arch_flush_shadow(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800400 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100401}
402
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200403static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
404 .invalidate_page = kvm_mmu_notifier_invalidate_page,
405 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
406 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
407 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800408 .test_young = kvm_mmu_notifier_test_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300409 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100410 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200411};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200412
413static int kvm_init_mmu_notifier(struct kvm *kvm)
414{
415 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
416 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
417}
418
419#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
420
421static int kvm_init_mmu_notifier(struct kvm *kvm)
422{
423 return 0;
424}
425
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200426#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
427
Avi Kivityf17abe92007-02-21 19:28:04 +0200428static struct kvm *kvm_create_vm(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800429{
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100430 int r, i;
431 struct kvm *kvm = kvm_arch_alloc_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800432
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100433 if (!kvm)
434 return ERR_PTR(-ENOMEM);
435
436 r = kvm_arch_init_vm(kvm);
437 if (r)
438 goto out_err_nodisable;
Alexander Graf10474ae2009-09-15 11:37:46 +0200439
440 r = hardware_enable_all();
441 if (r)
442 goto out_err_nodisable;
443
Avi Kivity75858a82009-01-04 17:10:50 +0200444#ifdef CONFIG_HAVE_KVM_IRQCHIP
445 INIT_HLIST_HEAD(&kvm->mask_notifier_list);
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300446 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200447#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800448
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200449 r = -ENOMEM;
450 kvm->memslots = kzalloc(sizeof(struct kvm_memslots), GFP_KERNEL);
451 if (!kvm->memslots)
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100452 goto out_err_nosrcu;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200453 if (init_srcu_struct(&kvm->srcu))
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100454 goto out_err_nosrcu;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200455 for (i = 0; i < KVM_NR_BUSES; i++) {
456 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
457 GFP_KERNEL);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100458 if (!kvm->buses[i])
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200459 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200460 }
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200461
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200462 r = kvm_init_mmu_notifier(kvm);
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100463 if (r)
Avi Kivity283d0c62009-12-20 14:25:19 +0200464 goto out_err;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200465
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200466 kvm->mm = current->mm;
467 atomic_inc(&kvm->mm->mm_count);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500468 spin_lock_init(&kvm->mmu_lock);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400469 kvm_eventfd_init(kvm);
Shaohua Li11ec2802007-07-23 14:51:37 +0800470 mutex_init(&kvm->lock);
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300471 mutex_init(&kvm->irq_lock);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200472 mutex_init(&kvm->slots_lock);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300473 atomic_set(&kvm->users_count, 1);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000474 spin_lock(&kvm_lock);
475 list_add(&kvm->vm_list, &vm_list);
476 spin_unlock(&kvm_lock);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100477
Avi Kivityf17abe92007-02-21 19:28:04 +0200478 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200479
480out_err:
Jan Kiszka57e7fbe2010-11-09 12:42:12 +0100481 cleanup_srcu_struct(&kvm->srcu);
482out_err_nosrcu:
Alexander Graf10474ae2009-09-15 11:37:46 +0200483 hardware_disable_all();
484out_err_nodisable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200485 for (i = 0; i < KVM_NR_BUSES; i++)
486 kfree(kvm->buses[i]);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200487 kfree(kvm->memslots);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100488 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200489 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200490}
491
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900492static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
493{
494 if (!memslot->dirty_bitmap)
495 return;
496
Takuya Yoshikawa6f9e5c172010-11-01 14:36:09 +0900497 if (2 * kvm_dirty_bitmap_bytes(memslot) > PAGE_SIZE)
498 vfree(memslot->dirty_bitmap_head);
499 else
500 kfree(memslot->dirty_bitmap_head);
501
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900502 memslot->dirty_bitmap = NULL;
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900503 memslot->dirty_bitmap_head = NULL;
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900504}
505
Avi Kivity6aa8b732006-12-10 02:21:36 -0800506/*
507 * Free any memory in @free but not in @dont.
508 */
509static void kvm_free_physmem_slot(struct kvm_memory_slot *free,
510 struct kvm_memory_slot *dont)
511{
Joerg Roedelec04b262009-06-19 15:16:23 +0200512 int i;
513
Izik Eidus290fc382007-09-27 14:11:22 +0200514 if (!dont || free->rmap != dont->rmap)
515 vfree(free->rmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800516
517 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900518 kvm_destroy_dirty_bitmap(free);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800519
Joerg Roedelec04b262009-06-19 15:16:23 +0200520
521 for (i = 0; i < KVM_NR_PAGE_SIZES - 1; ++i) {
522 if (!dont || free->lpage_info[i] != dont->lpage_info[i]) {
523 vfree(free->lpage_info[i]);
524 free->lpage_info[i] = NULL;
525 }
526 }
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300527
Avi Kivity6aa8b732006-12-10 02:21:36 -0800528 free->npages = 0;
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500529 free->rmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800530}
531
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800532void kvm_free_physmem(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800533{
534 int i;
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200535 struct kvm_memslots *slots = kvm->memslots;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800536
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200537 for (i = 0; i < slots->nmemslots; ++i)
538 kvm_free_physmem_slot(&slots->memslots[i], NULL);
539
540 kfree(kvm->memslots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800541}
542
Avi Kivityf17abe92007-02-21 19:28:04 +0200543static void kvm_destroy_vm(struct kvm *kvm)
544{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200545 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200546 struct mm_struct *mm = kvm->mm;
547
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800548 kvm_arch_sync_events(kvm);
Avi Kivity133de902007-02-12 00:54:44 -0800549 spin_lock(&kvm_lock);
550 list_del(&kvm->vm_list);
551 spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200552 kvm_free_irq_routing(kvm);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200553 for (i = 0; i < KVM_NR_BUSES; i++)
554 kvm_io_bus_destroy(kvm->buses[i]);
Avi Kivity980da6c2009-12-20 15:13:43 +0200555 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200556#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
557 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200558#else
559 kvm_arch_flush_shadow(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200560#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800561 kvm_arch_destroy_vm(kvm);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100562 kvm_free_physmem(kvm);
563 cleanup_srcu_struct(&kvm->srcu);
564 kvm_arch_free_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200565 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200566 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200567}
568
Izik Eidusd39f13b2008-03-30 16:01:25 +0300569void kvm_get_kvm(struct kvm *kvm)
570{
571 atomic_inc(&kvm->users_count);
572}
573EXPORT_SYMBOL_GPL(kvm_get_kvm);
574
575void kvm_put_kvm(struct kvm *kvm)
576{
577 if (atomic_dec_and_test(&kvm->users_count))
578 kvm_destroy_vm(kvm);
579}
580EXPORT_SYMBOL_GPL(kvm_put_kvm);
581
582
Avi Kivityf17abe92007-02-21 19:28:04 +0200583static int kvm_vm_release(struct inode *inode, struct file *filp)
584{
585 struct kvm *kvm = filp->private_data;
586
Gregory Haskins721eecb2009-05-20 10:30:49 -0400587 kvm_irqfd_release(kvm);
588
Izik Eidusd39f13b2008-03-30 16:01:25 +0300589 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800590 return 0;
591}
592
Heiko Carstensd48ead82011-01-17 21:21:08 +0100593#ifndef CONFIG_S390
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900594/*
595 * Allocation size is twice as large as the actual dirty bitmap size.
596 * This makes it possible to do double buffering: see x86's
597 * kvm_vm_ioctl_get_dirty_log().
598 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900599static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
600{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900601 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900602
Takuya Yoshikawa6f9e5c172010-11-01 14:36:09 +0900603 if (dirty_bytes > PAGE_SIZE)
604 memslot->dirty_bitmap = vzalloc(dirty_bytes);
605 else
606 memslot->dirty_bitmap = kzalloc(dirty_bytes, GFP_KERNEL);
607
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900608 if (!memslot->dirty_bitmap)
609 return -ENOMEM;
610
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900611 memslot->dirty_bitmap_head = memslot->dirty_bitmap;
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900612 return 0;
613}
Heiko Carstensd48ead82011-01-17 21:21:08 +0100614#endif /* !CONFIG_S390 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900615
Avi Kivity6aa8b732006-12-10 02:21:36 -0800616/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800617 * Allocate some memory and give it an address in the guest physical address
618 * space.
619 *
620 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800621 *
Marcelo Tosatti10589a42007-12-20 19:18:22 -0500622 * Must be called holding mmap_sem for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800623 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800624int __kvm_set_memory_region(struct kvm *kvm,
625 struct kvm_userspace_memory_region *mem,
626 int user_alloc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800627{
Avi Kivity8234b222010-12-27 12:08:45 +0200628 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800629 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200630 unsigned long npages;
631 unsigned long i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800632 struct kvm_memory_slot *memslot;
633 struct kvm_memory_slot old, new;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200634 struct kvm_memslots *slots, *old_memslots;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800635
636 r = -EINVAL;
637 /* General sanity checks */
638 if (mem->memory_size & (PAGE_SIZE - 1))
639 goto out;
640 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
641 goto out;
Sheng Yange7cacd42008-11-11 15:30:40 +0800642 if (user_alloc && (mem->userspace_addr & (PAGE_SIZE - 1)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600643 goto out;
Izik Eiduse0d62c72007-10-24 23:57:46 +0200644 if (mem->slot >= KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800645 goto out;
646 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
647 goto out;
648
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200649 memslot = &kvm->memslots->memslots[mem->slot];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800650 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
651 npages = mem->memory_size >> PAGE_SHIFT;
652
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900653 r = -EINVAL;
654 if (npages > KVM_MEM_MAX_NR_PAGES)
655 goto out;
656
Avi Kivity6aa8b732006-12-10 02:21:36 -0800657 if (!npages)
658 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
659
Avi Kivity6aa8b732006-12-10 02:21:36 -0800660 new = old = *memslot;
661
Avi Kivitye36d96f2010-06-21 10:56:36 +0300662 new.id = mem->slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800663 new.base_gfn = base_gfn;
664 new.npages = npages;
665 new.flags = mem->flags;
666
667 /* Disallow changing a memory slot's size. */
668 r = -EINVAL;
669 if (npages && old.npages && npages != old.npages)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800670 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800671
672 /* Check for overlaps */
673 r = -EEXIST;
674 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200675 struct kvm_memory_slot *s = &kvm->memslots->memslots[i];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800676
Jan Kiszka4cd481f2009-04-13 11:59:32 +0200677 if (s == memslot || !s->npages)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800678 continue;
679 if (!((base_gfn + npages <= s->base_gfn) ||
680 (base_gfn >= s->base_gfn + s->npages)))
Sheng Yangf78e0e22007-10-29 09:40:42 +0800681 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800682 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800683
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684 /* Free page dirty bitmap if unneeded */
685 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000686 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800687
688 r = -ENOMEM;
689
690 /* Allocate if a slot is being created */
Carsten Otteeff01142008-06-27 15:05:31 +0200691#ifndef CONFIG_S390
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500692 if (npages && !new.rmap) {
Takuya Yoshikawa26535032010-11-02 10:49:34 +0900693 new.rmap = vzalloc(npages * sizeof(*new.rmap));
Izik Eidus290fc382007-09-27 14:11:22 +0200694
695 if (!new.rmap)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800696 goto out_free;
Izik Eidus290fc382007-09-27 14:11:22 +0200697
Izik Eidus80b14b52007-10-25 11:54:04 +0200698 new.user_alloc = user_alloc;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200699 new.userspace_addr = mem->userspace_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800700 }
Joerg Roedelec04b262009-06-19 15:16:23 +0200701 if (!npages)
702 goto skip_lpage;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300703
Joerg Roedelec04b262009-06-19 15:16:23 +0200704 for (i = 0; i < KVM_NR_PAGE_SIZES - 1; ++i) {
Heiko Carstens28bcb112009-09-03 17:35:35 +0200705 unsigned long ugfn;
706 unsigned long j;
707 int lpages;
Joerg Roedelec04b262009-06-19 15:16:23 +0200708 int level = i + 2;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300709
Joerg Roedelec04b262009-06-19 15:16:23 +0200710 /* Avoid unused variable warning if no large pages */
711 (void)level;
712
713 if (new.lpage_info[i])
714 continue;
715
Joerg Roedel82855412010-07-01 16:00:11 +0200716 lpages = 1 + ((base_gfn + npages - 1)
717 >> KVM_HPAGE_GFN_SHIFT(level));
718 lpages -= base_gfn >> KVM_HPAGE_GFN_SHIFT(level);
Joerg Roedelec04b262009-06-19 15:16:23 +0200719
Takuya Yoshikawa26535032010-11-02 10:49:34 +0900720 new.lpage_info[i] = vzalloc(lpages * sizeof(*new.lpage_info[i]));
Joerg Roedelec04b262009-06-19 15:16:23 +0200721
722 if (!new.lpage_info[i])
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300723 goto out_free;
724
Joerg Roedel82855412010-07-01 16:00:11 +0200725 if (base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Joerg Roedelec04b262009-06-19 15:16:23 +0200726 new.lpage_info[i][0].write_count = 1;
Joerg Roedel82855412010-07-01 16:00:11 +0200727 if ((base_gfn+npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Joerg Roedelec04b262009-06-19 15:16:23 +0200728 new.lpage_info[i][lpages - 1].write_count = 1;
Avi Kivityac045272009-06-08 15:52:39 +0300729 ugfn = new.userspace_addr >> PAGE_SHIFT;
730 /*
731 * If the gfn and userspace address are not aligned wrt each
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300732 * other, or if explicitly asked to, disable large page
733 * support for this slot
Avi Kivityac045272009-06-08 15:52:39 +0300734 */
Joerg Roedelec04b262009-06-19 15:16:23 +0200735 if ((base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) ||
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300736 !largepages_enabled)
Joerg Roedelec04b262009-06-19 15:16:23 +0200737 for (j = 0; j < lpages; ++j)
738 new.lpage_info[i][j].write_count = 1;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300739 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800740
Joerg Roedelec04b262009-06-19 15:16:23 +0200741skip_lpage:
742
Avi Kivity6aa8b732006-12-10 02:21:36 -0800743 /* Allocate page dirty bitmap if needed */
744 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900745 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800746 goto out_free;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200747 /* destroy any largepage mappings for dirty tracking */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800748 }
Christian Borntraeger3eea8432009-06-23 17:24:06 +0200749#else /* not defined CONFIG_S390 */
750 new.user_alloc = user_alloc;
751 if (user_alloc)
752 new.userspace_addr = mem->userspace_addr;
Carsten Otteeff01142008-06-27 15:05:31 +0200753#endif /* not defined CONFIG_S390 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800754
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200755 if (!npages) {
756 r = -ENOMEM;
757 slots = kzalloc(sizeof(struct kvm_memslots), GFP_KERNEL);
758 if (!slots)
759 goto out_free;
760 memcpy(slots, kvm->memslots, sizeof(struct kvm_memslots));
761 if (mem->slot >= slots->nmemslots)
762 slots->nmemslots = mem->slot + 1;
Gleb Natapov49c77542010-10-18 15:22:23 +0200763 slots->generation++;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200764 slots->memslots[mem->slot].flags |= KVM_MEMSLOT_INVALID;
765
766 old_memslots = kvm->memslots;
767 rcu_assign_pointer(kvm->memslots, slots);
768 synchronize_srcu_expedited(&kvm->srcu);
769 /* From this point no new shadow pages pointing to a deleted
770 * memslot will be created.
771 *
772 * validation of sp->gfn happens in:
773 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
774 * - kvm_is_visible_gfn (mmu_check_roots)
775 */
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300776 kvm_arch_flush_shadow(kvm);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200777 kfree(old_memslots);
778 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300779
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200780 r = kvm_arch_prepare_memory_region(kvm, &new, old, mem, user_alloc);
781 if (r)
782 goto out_free;
783
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200784 /* map the pages in iommu page table */
785 if (npages) {
786 r = kvm_iommu_map_pages(kvm, &new);
787 if (r)
788 goto out_free;
789 }
Andrea Arcangeli604b38a2008-07-25 16:32:03 +0200790
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200791 r = -ENOMEM;
792 slots = kzalloc(sizeof(struct kvm_memslots), GFP_KERNEL);
793 if (!slots)
794 goto out_free;
795 memcpy(slots, kvm->memslots, sizeof(struct kvm_memslots));
796 if (mem->slot >= slots->nmemslots)
797 slots->nmemslots = mem->slot + 1;
Gleb Natapov49c77542010-10-18 15:22:23 +0200798 slots->generation++;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200799
800 /* actual memory is freed via old in kvm_free_physmem_slot below */
801 if (!npages) {
802 new.rmap = NULL;
803 new.dirty_bitmap = NULL;
804 for (i = 0; i < KVM_NR_PAGE_SIZES - 1; ++i)
805 new.lpage_info[i] = NULL;
806 }
807
808 slots->memslots[mem->slot] = new;
809 old_memslots = kvm->memslots;
810 rcu_assign_pointer(kvm->memslots, slots);
811 synchronize_srcu_expedited(&kvm->srcu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800812
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200813 kvm_arch_commit_memory_region(kvm, mem, old, user_alloc);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800814
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200815 kvm_free_physmem_slot(&old, &new);
816 kfree(old_memslots);
817
Avi Kivity6aa8b732006-12-10 02:21:36 -0800818 return 0;
819
Sheng Yangf78e0e22007-10-29 09:40:42 +0800820out_free:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800821 kvm_free_physmem_slot(&new, &old);
822out:
823 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +0200824
825}
Sheng Yangf78e0e22007-10-29 09:40:42 +0800826EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
827
828int kvm_set_memory_region(struct kvm *kvm,
829 struct kvm_userspace_memory_region *mem,
830 int user_alloc)
831{
832 int r;
833
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200834 mutex_lock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800835 r = __kvm_set_memory_region(kvm, mem, user_alloc);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200836 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800837 return r;
838}
Izik Eidus210c7c42007-10-24 23:52:57 +0200839EXPORT_SYMBOL_GPL(kvm_set_memory_region);
840
Carsten Otte1fe779f2007-10-29 16:08:35 +0100841int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
842 struct
843 kvm_userspace_memory_region *mem,
844 int user_alloc)
Izik Eidus210c7c42007-10-24 23:52:57 +0200845{
Izik Eiduse0d62c72007-10-24 23:57:46 +0200846 if (mem->slot >= KVM_MEMORY_SLOTS)
847 return -EINVAL;
Izik Eidus210c7c42007-10-24 23:52:57 +0200848 return kvm_set_memory_region(kvm, mem, user_alloc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800849}
850
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800851int kvm_get_dirty_log(struct kvm *kvm,
852 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800853{
854 struct kvm_memory_slot *memslot;
855 int r, i;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900856 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800857 unsigned long any = 0;
858
Avi Kivity6aa8b732006-12-10 02:21:36 -0800859 r = -EINVAL;
860 if (log->slot >= KVM_MEMORY_SLOTS)
861 goto out;
862
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200863 memslot = &kvm->memslots->memslots[log->slot];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800864 r = -ENOENT;
865 if (!memslot->dirty_bitmap)
866 goto out;
867
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900868 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800869
Uri Lublincd1a4a92007-02-22 16:43:09 +0200870 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800871 any = memslot->dirty_bitmap[i];
872
873 r = -EFAULT;
874 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
875 goto out;
876
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800877 if (any)
878 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800879
880 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800881out:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800882 return r;
883}
884
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300885void kvm_disable_largepages(void)
886{
887 largepages_enabled = false;
888}
889EXPORT_SYMBOL_GPL(kvm_disable_largepages);
890
Izik Eiduscea7bb22007-10-17 19:17:48 +0200891int is_error_page(struct page *page)
892{
Gleb Natapovedba23e2010-07-07 20:16:45 +0300893 return page == bad_page || page == hwpoison_page || page == fault_page;
Izik Eiduscea7bb22007-10-17 19:17:48 +0200894}
895EXPORT_SYMBOL_GPL(is_error_page);
896
Anthony Liguori35149e22008-04-02 14:46:56 -0500897int is_error_pfn(pfn_t pfn)
898{
Gleb Natapovedba23e2010-07-07 20:16:45 +0300899 return pfn == bad_pfn || pfn == hwpoison_pfn || pfn == fault_pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -0500900}
901EXPORT_SYMBOL_GPL(is_error_pfn);
902
Huang Yingbf998152010-05-31 14:28:19 +0800903int is_hwpoison_pfn(pfn_t pfn)
904{
905 return pfn == hwpoison_pfn;
906}
907EXPORT_SYMBOL_GPL(is_hwpoison_pfn);
908
Gleb Natapovedba23e2010-07-07 20:16:45 +0300909int is_fault_pfn(pfn_t pfn)
910{
911 return pfn == fault_pfn;
912}
913EXPORT_SYMBOL_GPL(is_fault_pfn);
914
Izik Eidusf9d46eb2007-11-11 22:02:22 +0200915static inline unsigned long bad_hva(void)
916{
917 return PAGE_OFFSET;
918}
919
920int kvm_is_error_hva(unsigned long addr)
921{
922 return addr == bad_hva();
923}
924EXPORT_SYMBOL_GPL(kvm_is_error_hva);
925
Gleb Natapov49c77542010-10-18 15:22:23 +0200926static struct kvm_memory_slot *__gfn_to_memslot(struct kvm_memslots *slots,
927 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800928{
929 int i;
930
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200931 for (i = 0; i < slots->nmemslots; ++i) {
932 struct kvm_memory_slot *memslot = &slots->memslots[i];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800933
934 if (gfn >= memslot->base_gfn
935 && gfn < memslot->base_gfn + memslot->npages)
936 return memslot;
937 }
Al Viro8b6d44c2007-02-09 16:38:40 +0000938 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800939}
Gleb Natapov49c77542010-10-18 15:22:23 +0200940
941struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
942{
943 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
944}
Avi Kivitya1f4d3952010-06-21 11:44:20 +0300945EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800946
Izik Eiduse0d62c72007-10-24 23:57:46 +0200947int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
948{
949 int i;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800950 struct kvm_memslots *slots = kvm_memslots(kvm);
Izik Eiduse0d62c72007-10-24 23:57:46 +0200951
Izik Eiduse0d62c72007-10-24 23:57:46 +0200952 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200953 struct kvm_memory_slot *memslot = &slots->memslots[i];
Izik Eiduse0d62c72007-10-24 23:57:46 +0200954
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200955 if (memslot->flags & KVM_MEMSLOT_INVALID)
956 continue;
957
Izik Eiduse0d62c72007-10-24 23:57:46 +0200958 if (gfn >= memslot->base_gfn
959 && gfn < memslot->base_gfn + memslot->npages)
960 return 1;
961 }
962 return 0;
963}
964EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
965
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100966unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
967{
968 struct vm_area_struct *vma;
969 unsigned long addr, size;
970
971 size = PAGE_SIZE;
972
973 addr = gfn_to_hva(kvm, gfn);
974 if (kvm_is_error_hva(addr))
975 return PAGE_SIZE;
976
977 down_read(&current->mm->mmap_sem);
978 vma = find_vma(current->mm, addr);
979 if (!vma)
980 goto out;
981
982 size = vma_kernel_pagesize(vma);
983
984out:
985 up_read(&current->mm->mmap_sem);
986
987 return size;
988}
989
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200990int memslot_id(struct kvm *kvm, gfn_t gfn)
991{
992 int i;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800993 struct kvm_memslots *slots = kvm_memslots(kvm);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200994 struct kvm_memory_slot *memslot = NULL;
995
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200996 for (i = 0; i < slots->nmemslots; ++i) {
997 memslot = &slots->memslots[i];
998
999 if (gfn >= memslot->base_gfn
1000 && gfn < memslot->base_gfn + memslot->npages)
1001 break;
1002 }
1003
1004 return memslot - slots->memslots;
1005}
1006
Gleb Natapov49c77542010-10-18 15:22:23 +02001007static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
Xiao Guangrong48987782010-08-22 19:11:43 +08001008 gfn_t *nr_pages)
Izik Eidus539cb662007-11-11 22:05:04 +02001009{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001010 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Izik Eidus539cb662007-11-11 22:05:04 +02001011 return bad_hva();
Xiao Guangrong48987782010-08-22 19:11:43 +08001012
1013 if (nr_pages)
1014 *nr_pages = slot->npages - (gfn - slot->base_gfn);
1015
Takuya Yoshikawaf5c98032010-02-25 11:33:19 +09001016 return gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +02001017}
Xiao Guangrong48987782010-08-22 19:11:43 +08001018
1019unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
1020{
Gleb Natapov49c77542010-10-18 15:22:23 +02001021 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +08001022}
Sheng Yang0d150292008-04-25 21:44:50 +08001023EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +02001024
Gleb Natapov80300892010-10-19 18:13:41 +02001025static pfn_t get_fault_pfn(void)
1026{
1027 get_page(fault_page);
1028 return fault_pfn;
1029}
1030
Gleb Natapovaf585b92010-10-14 11:22:46 +02001031static pfn_t hva_to_pfn(struct kvm *kvm, unsigned long addr, bool atomic,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001032 bool *async, bool write_fault, bool *writable)
Avi Kivity954bbbc2007-03-30 14:02:32 +03001033{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001034 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001035 int npages = 0;
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001036 pfn_t pfn;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001037
Gleb Natapovaf585b92010-10-14 11:22:46 +02001038 /* we can do it either atomically or asynchronously, not both */
1039 BUG_ON(atomic && async);
1040
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001041 BUG_ON(!write_fault && !writable);
1042
1043 if (writable)
1044 *writable = true;
1045
Gleb Natapovaf585b92010-10-14 11:22:46 +02001046 if (atomic || async)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001047 npages = __get_user_pages_fast(addr, 1, 1, page);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001048
1049 if (unlikely(npages != 1) && !atomic) {
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001050 might_sleep();
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001051
1052 if (writable)
1053 *writable = write_fault;
1054
1055 npages = get_user_pages_fast(addr, 1, write_fault, page);
1056
1057 /* map read fault as writable if possible */
1058 if (unlikely(!write_fault) && npages == 1) {
1059 struct page *wpage[1];
1060
1061 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1062 if (npages == 1) {
1063 *writable = true;
1064 put_page(page[0]);
1065 page[0] = wpage[0];
1066 }
1067 npages = 1;
1068 }
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001069 }
Izik Eidus539cb662007-11-11 22:05:04 +02001070
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001071 if (unlikely(npages != 1)) {
1072 struct vm_area_struct *vma;
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001073
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001074 if (atomic)
Gleb Natapov80300892010-10-19 18:13:41 +02001075 return get_fault_pfn();
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001076
Huang Yingbbeb3402010-06-22 14:23:11 +08001077 down_read(&current->mm->mmap_sem);
Huang Yingbf998152010-05-31 14:28:19 +08001078 if (is_hwpoison_address(addr)) {
Huang Yingbbeb3402010-06-22 14:23:11 +08001079 up_read(&current->mm->mmap_sem);
Huang Yingbf998152010-05-31 14:28:19 +08001080 get_page(hwpoison_page);
1081 return page_to_pfn(hwpoison_page);
1082 }
1083
Gleb Natapov80300892010-10-19 18:13:41 +02001084 vma = find_vma_intersection(current->mm, addr, addr+1);
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001085
Gleb Natapov80300892010-10-19 18:13:41 +02001086 if (vma == NULL)
1087 pfn = get_fault_pfn();
1088 else if ((vma->vm_flags & VM_PFNMAP)) {
1089 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1090 vma->vm_pgoff;
1091 BUG_ON(!kvm_is_mmio_pfn(pfn));
1092 } else {
1093 if (async && (vma->vm_flags & VM_WRITE))
Gleb Natapovaf585b92010-10-14 11:22:46 +02001094 *async = true;
Gleb Natapov80300892010-10-19 18:13:41 +02001095 pfn = get_fault_pfn();
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001096 }
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001097 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001098 } else
1099 pfn = page_to_pfn(page[0]);
1100
1101 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001102}
1103
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001104pfn_t hva_to_pfn_atomic(struct kvm *kvm, unsigned long addr)
1105{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001106 return hva_to_pfn(kvm, addr, true, NULL, true, NULL);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001107}
1108EXPORT_SYMBOL_GPL(hva_to_pfn_atomic);
1109
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001110static pfn_t __gfn_to_pfn(struct kvm *kvm, gfn_t gfn, bool atomic, bool *async,
1111 bool write_fault, bool *writable)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001112{
1113 unsigned long addr;
1114
Gleb Natapovaf585b92010-10-14 11:22:46 +02001115 if (async)
1116 *async = false;
1117
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001118 addr = gfn_to_hva(kvm, gfn);
1119 if (kvm_is_error_hva(addr)) {
1120 get_page(bad_page);
1121 return page_to_pfn(bad_page);
1122 }
1123
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001124 return hva_to_pfn(kvm, addr, atomic, async, write_fault, writable);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001125}
1126
1127pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1128{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001129 return __gfn_to_pfn(kvm, gfn, true, NULL, true, NULL);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001130}
1131EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1132
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001133pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
1134 bool write_fault, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02001135{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001136 return __gfn_to_pfn(kvm, gfn, false, async, write_fault, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001137}
1138EXPORT_SYMBOL_GPL(gfn_to_pfn_async);
1139
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001140pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1141{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001142 return __gfn_to_pfn(kvm, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001143}
Anthony Liguori35149e22008-04-02 14:46:56 -05001144EXPORT_SYMBOL_GPL(gfn_to_pfn);
1145
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001146pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1147 bool *writable)
1148{
1149 return __gfn_to_pfn(kvm, gfn, false, NULL, write_fault, writable);
1150}
1151EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1152
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001153pfn_t gfn_to_pfn_memslot(struct kvm *kvm,
1154 struct kvm_memory_slot *slot, gfn_t gfn)
1155{
1156 unsigned long addr = gfn_to_hva_memslot(slot, gfn);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001157 return hva_to_pfn(kvm, addr, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001158}
1159
Xiao Guangrong48987782010-08-22 19:11:43 +08001160int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
1161 int nr_pages)
1162{
1163 unsigned long addr;
1164 gfn_t entry;
1165
Gleb Natapov49c77542010-10-18 15:22:23 +02001166 addr = gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001167 if (kvm_is_error_hva(addr))
1168 return -1;
1169
1170 if (entry < nr_pages)
1171 return 0;
1172
1173 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1174}
1175EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1176
Anthony Liguori35149e22008-04-02 14:46:56 -05001177struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1178{
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001179 pfn_t pfn;
1180
1181 pfn = gfn_to_pfn(kvm, gfn);
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001182 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001183 return pfn_to_page(pfn);
1184
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001185 WARN_ON(kvm_is_mmio_pfn(pfn));
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001186
1187 get_page(bad_page);
1188 return bad_page;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001189}
Anthony Liguoriaab61cc2007-10-29 15:15:20 -05001190
Avi Kivity954bbbc2007-03-30 14:02:32 +03001191EXPORT_SYMBOL_GPL(gfn_to_page);
1192
Izik Eidusb4231d62007-11-20 11:49:33 +02001193void kvm_release_page_clean(struct page *page)
1194{
Anthony Liguori35149e22008-04-02 14:46:56 -05001195 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001196}
1197EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1198
Anthony Liguori35149e22008-04-02 14:46:56 -05001199void kvm_release_pfn_clean(pfn_t pfn)
1200{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001201 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001202 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001203}
1204EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1205
Izik Eidusb4231d62007-11-20 11:49:33 +02001206void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001207{
Anthony Liguori35149e22008-04-02 14:46:56 -05001208 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001209}
Izik Eidusb4231d62007-11-20 11:49:33 +02001210EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001211
Anthony Liguori35149e22008-04-02 14:46:56 -05001212void kvm_release_pfn_dirty(pfn_t pfn)
1213{
1214 kvm_set_pfn_dirty(pfn);
1215 kvm_release_pfn_clean(pfn);
1216}
1217EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty);
1218
1219void kvm_set_page_dirty(struct page *page)
1220{
1221 kvm_set_pfn_dirty(page_to_pfn(page));
1222}
1223EXPORT_SYMBOL_GPL(kvm_set_page_dirty);
1224
1225void kvm_set_pfn_dirty(pfn_t pfn)
1226{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001227 if (!kvm_is_mmio_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001228 struct page *page = pfn_to_page(pfn);
1229 if (!PageReserved(page))
1230 SetPageDirty(page);
1231 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001232}
1233EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1234
1235void kvm_set_pfn_accessed(pfn_t pfn)
1236{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001237 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001238 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001239}
1240EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1241
1242void kvm_get_pfn(pfn_t pfn)
1243{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001244 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001245 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001246}
1247EXPORT_SYMBOL_GPL(kvm_get_pfn);
1248
Izik Eidus195aefd2007-10-01 22:14:18 +02001249static int next_segment(unsigned long len, int offset)
1250{
1251 if (len > PAGE_SIZE - offset)
1252 return PAGE_SIZE - offset;
1253 else
1254 return len;
1255}
1256
1257int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1258 int len)
1259{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001260 int r;
1261 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001262
Izik Eiduse0506bc2007-11-11 22:10:22 +02001263 addr = gfn_to_hva(kvm, gfn);
1264 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001265 return -EFAULT;
Izik Eiduse0506bc2007-11-11 22:10:22 +02001266 r = copy_from_user(data, (void __user *)addr + offset, len);
1267 if (r)
1268 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001269 return 0;
1270}
1271EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1272
1273int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1274{
1275 gfn_t gfn = gpa >> PAGE_SHIFT;
1276 int seg;
1277 int offset = offset_in_page(gpa);
1278 int ret;
1279
1280 while ((seg = next_segment(len, offset)) != 0) {
1281 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1282 if (ret < 0)
1283 return ret;
1284 offset = 0;
1285 len -= seg;
1286 data += seg;
1287 ++gfn;
1288 }
1289 return 0;
1290}
1291EXPORT_SYMBOL_GPL(kvm_read_guest);
1292
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001293int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1294 unsigned long len)
1295{
1296 int r;
1297 unsigned long addr;
1298 gfn_t gfn = gpa >> PAGE_SHIFT;
1299 int offset = offset_in_page(gpa);
1300
1301 addr = gfn_to_hva(kvm, gfn);
1302 if (kvm_is_error_hva(addr))
1303 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001304 pagefault_disable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001305 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001306 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001307 if (r)
1308 return -EFAULT;
1309 return 0;
1310}
1311EXPORT_SYMBOL(kvm_read_guest_atomic);
1312
Izik Eidus195aefd2007-10-01 22:14:18 +02001313int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1314 int offset, int len)
1315{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001316 int r;
1317 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001318
Izik Eiduse0506bc2007-11-11 22:10:22 +02001319 addr = gfn_to_hva(kvm, gfn);
1320 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001321 return -EFAULT;
Izik Eiduse0506bc2007-11-11 22:10:22 +02001322 r = copy_to_user((void __user *)addr + offset, data, len);
1323 if (r)
1324 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001325 mark_page_dirty(kvm, gfn);
1326 return 0;
1327}
1328EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1329
1330int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1331 unsigned long len)
1332{
1333 gfn_t gfn = gpa >> PAGE_SHIFT;
1334 int seg;
1335 int offset = offset_in_page(gpa);
1336 int ret;
1337
1338 while ((seg = next_segment(len, offset)) != 0) {
1339 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1340 if (ret < 0)
1341 return ret;
1342 offset = 0;
1343 len -= seg;
1344 data += seg;
1345 ++gfn;
1346 }
1347 return 0;
1348}
1349
Gleb Natapov49c77542010-10-18 15:22:23 +02001350int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1351 gpa_t gpa)
1352{
1353 struct kvm_memslots *slots = kvm_memslots(kvm);
1354 int offset = offset_in_page(gpa);
1355 gfn_t gfn = gpa >> PAGE_SHIFT;
1356
1357 ghc->gpa = gpa;
1358 ghc->generation = slots->generation;
1359 ghc->memslot = __gfn_to_memslot(slots, gfn);
1360 ghc->hva = gfn_to_hva_many(ghc->memslot, gfn, NULL);
1361 if (!kvm_is_error_hva(ghc->hva))
1362 ghc->hva += offset;
1363 else
1364 return -EFAULT;
1365
1366 return 0;
1367}
1368EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1369
1370int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1371 void *data, unsigned long len)
1372{
1373 struct kvm_memslots *slots = kvm_memslots(kvm);
1374 int r;
1375
1376 if (slots->generation != ghc->generation)
1377 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa);
1378
1379 if (kvm_is_error_hva(ghc->hva))
1380 return -EFAULT;
1381
1382 r = copy_to_user((void __user *)ghc->hva, data, len);
1383 if (r)
1384 return -EFAULT;
1385 mark_page_dirty_in_slot(kvm, ghc->memslot, ghc->gpa >> PAGE_SHIFT);
1386
1387 return 0;
1388}
1389EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1390
Izik Eidus195aefd2007-10-01 22:14:18 +02001391int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1392{
Heiko Carstens3bcc8a82010-10-27 17:21:21 +02001393 return kvm_write_guest_page(kvm, gfn, (const void *) empty_zero_page,
1394 offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02001395}
1396EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1397
1398int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1399{
1400 gfn_t gfn = gpa >> PAGE_SHIFT;
1401 int seg;
1402 int offset = offset_in_page(gpa);
1403 int ret;
1404
1405 while ((seg = next_segment(len, offset)) != 0) {
1406 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1407 if (ret < 0)
1408 return ret;
1409 offset = 0;
1410 len -= seg;
1411 ++gfn;
1412 }
1413 return 0;
1414}
1415EXPORT_SYMBOL_GPL(kvm_clear_guest);
1416
Gleb Natapov49c77542010-10-18 15:22:23 +02001417void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot,
1418 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001419{
Rusty Russell7e9d6192007-07-31 20:41:14 +10001420 if (memslot && memslot->dirty_bitmap) {
1421 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001422
Takuya Yoshikawad1476932010-04-23 17:48:35 +09001423 generic___set_le_bit(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001424 }
1425}
1426
Gleb Natapov49c77542010-10-18 15:22:23 +02001427void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1428{
1429 struct kvm_memory_slot *memslot;
1430
1431 memslot = gfn_to_memslot(kvm, gfn);
1432 mark_page_dirty_in_slot(kvm, memslot, gfn);
1433}
1434
Eddie Dongb6958ce2007-07-18 12:15:21 +03001435/*
1436 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1437 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05001438void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001439{
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001440 DEFINE_WAIT(wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001441
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001442 for (;;) {
1443 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001444
Gleb Natapova1b37102009-07-09 15:33:52 +03001445 if (kvm_arch_vcpu_runnable(vcpu)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03001446 kvm_make_request(KVM_REQ_UNHALT, vcpu);
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001447 break;
Marcelo Tosattid7690172008-09-08 15:23:48 -03001448 }
Gleb Natapov09cec752009-03-23 15:11:44 +02001449 if (kvm_cpu_has_pending_timer(vcpu))
1450 break;
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001451 if (signal_pending(current))
1452 break;
1453
Eddie Dongb6958ce2007-07-18 12:15:21 +03001454 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03001455 }
1456
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001457 finish_wait(&vcpu->wq, &wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001458}
1459
Avi Kivity6aa8b732006-12-10 02:21:36 -08001460void kvm_resched(struct kvm_vcpu *vcpu)
1461{
Yaozu Dong3fca0362007-04-25 16:49:19 +03001462 if (!need_resched())
1463 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001464 cond_resched();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001465}
1466EXPORT_SYMBOL_GPL(kvm_resched);
1467
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001468void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu)
1469{
1470 ktime_t expires;
1471 DEFINE_WAIT(wait);
1472
1473 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
1474
1475 /* Sleep for 100 us, and hope lock-holder got scheduled */
1476 expires = ktime_add_ns(ktime_get(), 100000UL);
1477 schedule_hrtimeout(&expires, HRTIMER_MODE_ABS);
1478
1479 finish_wait(&vcpu->wq, &wait);
1480}
1481EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
1482
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001483static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001484{
1485 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001486 struct page *page;
1487
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001488 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02001489 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02001490#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001491 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001492 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02001493#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02001494#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1495 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1496 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
1497#endif
Avi Kivity039576c2007-03-20 12:46:50 +02001498 else
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001499 return VM_FAULT_SIGBUS;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001500 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001501 vmf->page = page;
1502 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001503}
1504
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001505static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001506 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001507};
1508
1509static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1510{
1511 vma->vm_ops = &kvm_vcpu_vm_ops;
1512 return 0;
1513}
1514
Avi Kivitybccf2152007-02-21 18:04:26 +02001515static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1516{
1517 struct kvm_vcpu *vcpu = filp->private_data;
1518
Al Viro66c0b392008-04-19 20:33:56 +01001519 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001520 return 0;
1521}
1522
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001523static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02001524 .release = kvm_vcpu_release,
1525 .unlocked_ioctl = kvm_vcpu_ioctl,
1526 .compat_ioctl = kvm_vcpu_ioctl,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001527 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001528 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02001529};
1530
1531/*
1532 * Allocates an inode for the vcpu.
1533 */
1534static int create_vcpu_fd(struct kvm_vcpu *vcpu)
1535{
Roland Dreier628ff7c2009-12-18 09:41:24 -08001536 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR);
Avi Kivitybccf2152007-02-21 18:04:26 +02001537}
1538
Avi Kivityc5ea7662007-02-20 18:41:05 +02001539/*
1540 * Creates some virtual cpus. Good luck creating more than one.
1541 */
Gleb Natapov73880c82009-06-09 15:56:28 +03001542static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02001543{
1544 int r;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001545 struct kvm_vcpu *vcpu, *v;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001546
Gleb Natapov73880c82009-06-09 15:56:28 +03001547 vcpu = kvm_arch_vcpu_create(kvm, id);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001548 if (IS_ERR(vcpu))
1549 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001550
Avi Kivity15ad7142007-07-11 18:17:21 +03001551 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
1552
Avi Kivity26e52152007-11-20 15:30:24 +02001553 r = kvm_arch_vcpu_setup(vcpu);
1554 if (r)
Glauber Costa7d8fece2008-09-17 23:16:59 -03001555 return r;
Avi Kivity26e52152007-11-20 15:30:24 +02001556
Shaohua Li11ec2802007-07-23 14:51:37 +08001557 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03001558 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
1559 r = -EINVAL;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001560 goto vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001561 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001562
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001563 kvm_for_each_vcpu(r, v, kvm)
1564 if (v->vcpu_id == id) {
Gleb Natapov73880c82009-06-09 15:56:28 +03001565 r = -EEXIST;
1566 goto vcpu_destroy;
1567 }
1568
1569 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001570
1571 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01001572 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001573 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03001574 if (r < 0) {
1575 kvm_put_kvm(kvm);
1576 goto vcpu_destroy;
1577 }
1578
1579 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
1580 smp_wmb();
1581 atomic_inc(&kvm->online_vcpus);
1582
1583#ifdef CONFIG_KVM_APIC_ARCHITECTURE
1584 if (kvm->bsp_vcpu_id == id)
1585 kvm->bsp_vcpu = vcpu;
1586#endif
1587 mutex_unlock(&kvm->lock);
Avi Kivitybccf2152007-02-21 18:04:26 +02001588 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001589
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001590vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03001591 mutex_unlock(&kvm->lock);
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06001592 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001593 return r;
1594}
1595
Avi Kivity1961d272007-03-05 19:46:05 +02001596static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
1597{
1598 if (sigset) {
1599 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
1600 vcpu->sigset_active = 1;
1601 vcpu->sigset = *sigset;
1602 } else
1603 vcpu->sigset_active = 0;
1604 return 0;
1605}
1606
Avi Kivitybccf2152007-02-21 18:04:26 +02001607static long kvm_vcpu_ioctl(struct file *filp,
1608 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001609{
Avi Kivitybccf2152007-02-21 18:04:26 +02001610 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00001611 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02001612 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001613 struct kvm_fpu *fpu = NULL;
1614 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001615
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001616 if (vcpu->kvm->mm != current->mm)
1617 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03001618
1619#if defined(CONFIG_S390) || defined(CONFIG_PPC)
1620 /*
1621 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
1622 * so vcpu_load() would break it.
1623 */
1624 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_INTERRUPT)
1625 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
1626#endif
1627
1628
1629 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001630 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001631 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02001632 r = -EINVAL;
1633 if (arg)
1634 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05001635 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02001636 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001637 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001638 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001639 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001640
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001641 r = -ENOMEM;
1642 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1643 if (!kvm_regs)
1644 goto out;
1645 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001646 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001647 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001648 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001649 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
1650 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001651 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001652out_free1:
1653 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001654 break;
1655 }
1656 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001657 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001658
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001659 r = -ENOMEM;
1660 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1661 if (!kvm_regs)
1662 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001663 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001664 if (copy_from_user(kvm_regs, argp, sizeof(struct kvm_regs)))
1665 goto out_free2;
1666 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001667 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001668 goto out_free2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001669 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001670out_free2:
1671 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001672 break;
1673 }
1674 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001675 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1676 r = -ENOMEM;
1677 if (!kvm_sregs)
1678 goto out;
1679 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001680 if (r)
1681 goto out;
1682 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001683 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001684 goto out;
1685 r = 0;
1686 break;
1687 }
1688 case KVM_SET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001689 kvm_sregs = kmalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1690 r = -ENOMEM;
1691 if (!kvm_sregs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001692 goto out;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001693 r = -EFAULT;
1694 if (copy_from_user(kvm_sregs, argp, sizeof(struct kvm_sregs)))
1695 goto out;
1696 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001697 if (r)
1698 goto out;
1699 r = 0;
1700 break;
1701 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03001702 case KVM_GET_MP_STATE: {
1703 struct kvm_mp_state mp_state;
1704
1705 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
1706 if (r)
1707 goto out;
1708 r = -EFAULT;
1709 if (copy_to_user(argp, &mp_state, sizeof mp_state))
1710 goto out;
1711 r = 0;
1712 break;
1713 }
1714 case KVM_SET_MP_STATE: {
1715 struct kvm_mp_state mp_state;
1716
1717 r = -EFAULT;
1718 if (copy_from_user(&mp_state, argp, sizeof mp_state))
1719 goto out;
1720 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
1721 if (r)
1722 goto out;
1723 r = 0;
1724 break;
1725 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001726 case KVM_TRANSLATE: {
1727 struct kvm_translation tr;
1728
1729 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00001730 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001731 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08001732 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001733 if (r)
1734 goto out;
1735 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00001736 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001737 goto out;
1738 r = 0;
1739 break;
1740 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001741 case KVM_SET_GUEST_DEBUG: {
1742 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001743
1744 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00001745 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001746 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001747 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001748 if (r)
1749 goto out;
1750 r = 0;
1751 break;
1752 }
Avi Kivity1961d272007-03-05 19:46:05 +02001753 case KVM_SET_SIGNAL_MASK: {
1754 struct kvm_signal_mask __user *sigmask_arg = argp;
1755 struct kvm_signal_mask kvm_sigmask;
1756 sigset_t sigset, *p;
1757
1758 p = NULL;
1759 if (argp) {
1760 r = -EFAULT;
1761 if (copy_from_user(&kvm_sigmask, argp,
1762 sizeof kvm_sigmask))
1763 goto out;
1764 r = -EINVAL;
1765 if (kvm_sigmask.len != sizeof sigset)
1766 goto out;
1767 r = -EFAULT;
1768 if (copy_from_user(&sigset, sigmask_arg->sigset,
1769 sizeof sigset))
1770 goto out;
1771 p = &sigset;
1772 }
Andi Kleen376d41f2010-06-10 13:10:47 +02001773 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02001774 break;
1775 }
Avi Kivityb8836732007-04-01 16:34:31 +03001776 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001777 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
1778 r = -ENOMEM;
1779 if (!fpu)
1780 goto out;
1781 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03001782 if (r)
1783 goto out;
1784 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001785 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03001786 goto out;
1787 r = 0;
1788 break;
1789 }
1790 case KVM_SET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001791 fpu = kmalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
1792 r = -ENOMEM;
1793 if (!fpu)
Avi Kivityb8836732007-04-01 16:34:31 +03001794 goto out;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001795 r = -EFAULT;
1796 if (copy_from_user(fpu, argp, sizeof(struct kvm_fpu)))
1797 goto out;
1798 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03001799 if (r)
1800 goto out;
1801 r = 0;
1802 break;
1803 }
Avi Kivitybccf2152007-02-21 18:04:26 +02001804 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02001805 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02001806 }
1807out:
Avi Kivity2122ff52010-05-13 11:25:04 +03001808 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07001809 kfree(fpu);
1810 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02001811 return r;
1812}
1813
1814static long kvm_vm_ioctl(struct file *filp,
1815 unsigned int ioctl, unsigned long arg)
1816{
1817 struct kvm *kvm = filp->private_data;
1818 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01001819 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02001820
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001821 if (kvm->mm != current->mm)
1822 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02001823 switch (ioctl) {
1824 case KVM_CREATE_VCPU:
1825 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
1826 if (r < 0)
1827 goto out;
1828 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02001829 case KVM_SET_USER_MEMORY_REGION: {
1830 struct kvm_userspace_memory_region kvm_userspace_mem;
1831
1832 r = -EFAULT;
1833 if (copy_from_user(&kvm_userspace_mem, argp,
1834 sizeof kvm_userspace_mem))
1835 goto out;
1836
1837 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001838 if (r)
1839 goto out;
1840 break;
1841 }
1842 case KVM_GET_DIRTY_LOG: {
1843 struct kvm_dirty_log log;
1844
1845 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00001846 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001847 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02001848 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001849 if (r)
1850 goto out;
1851 break;
1852 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02001853#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1854 case KVM_REGISTER_COALESCED_MMIO: {
1855 struct kvm_coalesced_mmio_zone zone;
1856 r = -EFAULT;
1857 if (copy_from_user(&zone, argp, sizeof zone))
1858 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02001859 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
1860 if (r)
1861 goto out;
1862 r = 0;
1863 break;
1864 }
1865 case KVM_UNREGISTER_COALESCED_MMIO: {
1866 struct kvm_coalesced_mmio_zone zone;
1867 r = -EFAULT;
1868 if (copy_from_user(&zone, argp, sizeof zone))
1869 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02001870 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
1871 if (r)
1872 goto out;
1873 r = 0;
1874 break;
1875 }
1876#endif
Gregory Haskins721eecb2009-05-20 10:30:49 -04001877 case KVM_IRQFD: {
1878 struct kvm_irqfd data;
1879
1880 r = -EFAULT;
1881 if (copy_from_user(&data, argp, sizeof data))
1882 goto out;
1883 r = kvm_irqfd(kvm, data.fd, data.gsi, data.flags);
1884 break;
1885 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04001886 case KVM_IOEVENTFD: {
1887 struct kvm_ioeventfd data;
1888
1889 r = -EFAULT;
1890 if (copy_from_user(&data, argp, sizeof data))
1891 goto out;
1892 r = kvm_ioeventfd(kvm, &data);
1893 break;
1894 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001895#ifdef CONFIG_KVM_APIC_ARCHITECTURE
1896 case KVM_SET_BOOT_CPU_ID:
1897 r = 0;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03001898 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03001899 if (atomic_read(&kvm->online_vcpus) != 0)
1900 r = -EBUSY;
1901 else
1902 kvm->bsp_vcpu_id = arg;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03001903 mutex_unlock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03001904 break;
1905#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02001906 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01001907 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivitybfd99ff2009-08-26 14:57:50 +03001908 if (r == -ENOTTY)
1909 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02001910 }
1911out:
1912 return r;
1913}
1914
Arnd Bergmann6ff58942009-10-22 14:19:27 +02001915#ifdef CONFIG_COMPAT
1916struct compat_kvm_dirty_log {
1917 __u32 slot;
1918 __u32 padding1;
1919 union {
1920 compat_uptr_t dirty_bitmap; /* one bit per page */
1921 __u64 padding2;
1922 };
1923};
1924
1925static long kvm_vm_compat_ioctl(struct file *filp,
1926 unsigned int ioctl, unsigned long arg)
1927{
1928 struct kvm *kvm = filp->private_data;
1929 int r;
1930
1931 if (kvm->mm != current->mm)
1932 return -EIO;
1933 switch (ioctl) {
1934 case KVM_GET_DIRTY_LOG: {
1935 struct compat_kvm_dirty_log compat_log;
1936 struct kvm_dirty_log log;
1937
1938 r = -EFAULT;
1939 if (copy_from_user(&compat_log, (void __user *)arg,
1940 sizeof(compat_log)))
1941 goto out;
1942 log.slot = compat_log.slot;
1943 log.padding1 = compat_log.padding1;
1944 log.padding2 = compat_log.padding2;
1945 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
1946
1947 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
1948 if (r)
1949 goto out;
1950 break;
1951 }
1952 default:
1953 r = kvm_vm_ioctl(filp, ioctl, arg);
1954 }
1955
1956out:
1957 return r;
1958}
1959#endif
1960
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001961static int kvm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivityf17abe92007-02-21 19:28:04 +02001962{
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03001963 struct page *page[1];
1964 unsigned long addr;
1965 int npages;
1966 gfn_t gfn = vmf->pgoff;
Avi Kivityf17abe92007-02-21 19:28:04 +02001967 struct kvm *kvm = vma->vm_file->private_data;
Avi Kivityf17abe92007-02-21 19:28:04 +02001968
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03001969 addr = gfn_to_hva(kvm, gfn);
1970 if (kvm_is_error_hva(addr))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001971 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03001972
1973 npages = get_user_pages(current, current->mm, addr, 1, 1, 0, page,
1974 NULL);
1975 if (unlikely(npages != 1))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001976 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03001977
1978 vmf->page = page[0];
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001979 return 0;
Avi Kivityf17abe92007-02-21 19:28:04 +02001980}
1981
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001982static const struct vm_operations_struct kvm_vm_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001983 .fault = kvm_vm_fault,
Avi Kivityf17abe92007-02-21 19:28:04 +02001984};
1985
1986static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
1987{
1988 vma->vm_ops = &kvm_vm_vm_ops;
1989 return 0;
1990}
1991
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001992static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02001993 .release = kvm_vm_release,
1994 .unlocked_ioctl = kvm_vm_ioctl,
Arnd Bergmann6ff58942009-10-22 14:19:27 +02001995#ifdef CONFIG_COMPAT
1996 .compat_ioctl = kvm_vm_compat_ioctl,
1997#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02001998 .mmap = kvm_vm_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001999 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02002000};
2001
2002static int kvm_dev_ioctl_create_vm(void)
2003{
Heiko Carstensaac87632010-10-27 17:22:10 +02002004 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002005 struct kvm *kvm;
2006
Avi Kivityf17abe92007-02-21 19:28:04 +02002007 kvm = kvm_create_vm();
Avi Kivityd6d28162007-06-28 08:38:16 -04002008 if (IS_ERR(kvm))
2009 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09002010#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2011 r = kvm_coalesced_mmio_init(kvm);
2012 if (r < 0) {
2013 kvm_put_kvm(kvm);
2014 return r;
2015 }
2016#endif
Heiko Carstensaac87632010-10-27 17:22:10 +02002017 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
2018 if (r < 0)
Al Viro66c0b392008-04-19 20:33:56 +01002019 kvm_put_kvm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02002020
Heiko Carstensaac87632010-10-27 17:22:10 +02002021 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002022}
2023
Avi Kivity1a811b62008-12-08 18:25:27 +02002024static long kvm_dev_ioctl_check_extension_generic(long arg)
2025{
2026 switch (arg) {
Avi Kivityca9edae2008-12-08 18:29:29 +02002027 case KVM_CAP_USER_MEMORY:
Avi Kivity1a811b62008-12-08 18:25:27 +02002028 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
Jan Kiszka4cd481f2009-04-13 11:59:32 +02002029 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Gleb Natapov73880c82009-06-09 15:56:28 +03002030#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2031 case KVM_CAP_SET_BOOT_CPU_ID:
2032#endif
Avi Kivitya9c73992009-11-04 11:54:59 +02002033 case KVM_CAP_INTERNAL_ERROR_DATA:
Avi Kivity1a811b62008-12-08 18:25:27 +02002034 return 1;
Avi Kivity399ec802008-11-19 13:58:46 +02002035#ifdef CONFIG_HAVE_KVM_IRQCHIP
2036 case KVM_CAP_IRQ_ROUTING:
Sheng Yang36463142009-03-16 16:33:43 +08002037 return KVM_MAX_IRQ_ROUTES;
Avi Kivity399ec802008-11-19 13:58:46 +02002038#endif
Avi Kivity1a811b62008-12-08 18:25:27 +02002039 default:
2040 break;
2041 }
2042 return kvm_dev_ioctl_check_extension(arg);
2043}
2044
Avi Kivityf17abe92007-02-21 19:28:04 +02002045static long kvm_dev_ioctl(struct file *filp,
2046 unsigned int ioctl, unsigned long arg)
2047{
Avi Kivity07c45a32007-03-07 13:05:38 +02002048 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002049
2050 switch (ioctl) {
2051 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002052 r = -EINVAL;
2053 if (arg)
2054 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002055 r = KVM_API_VERSION;
2056 break;
2057 case KVM_CREATE_VM:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002058 r = -EINVAL;
2059 if (arg)
2060 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002061 r = kvm_dev_ioctl_create_vm();
2062 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002063 case KVM_CHECK_EXTENSION:
Avi Kivity1a811b62008-12-08 18:25:27 +02002064 r = kvm_dev_ioctl_check_extension_generic(arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02002065 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02002066 case KVM_GET_VCPU_MMAP_SIZE:
2067 r = -EINVAL;
2068 if (arg)
2069 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02002070 r = PAGE_SIZE; /* struct kvm_run */
2071#ifdef CONFIG_X86
2072 r += PAGE_SIZE; /* pio data page */
2073#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002074#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2075 r += PAGE_SIZE; /* coalesced mmio ring page */
2076#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02002077 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002078 case KVM_TRACE_ENABLE:
2079 case KVM_TRACE_PAUSE:
2080 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03002081 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002082 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002083 default:
Carsten Otte043405e2007-10-10 17:16:19 +02002084 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002085 }
2086out:
2087 return r;
2088}
2089
Avi Kivity6aa8b732006-12-10 02:21:36 -08002090static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002091 .unlocked_ioctl = kvm_dev_ioctl,
2092 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002093 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002094};
2095
2096static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002097 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002098 "kvm",
2099 &kvm_chardev_ops,
2100};
2101
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002102static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002103{
2104 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02002105 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03002106
Rusty Russell7f59f492008-12-07 21:25:45 +10302107 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002108 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02002109
Rusty Russell7f59f492008-12-07 21:25:45 +10302110 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02002111
2112 r = kvm_arch_hardware_enable(NULL);
2113
2114 if (r) {
2115 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
2116 atomic_inc(&hardware_enable_failed);
2117 printk(KERN_INFO "kvm: enabling virtualization on "
2118 "CPU%d failed\n", cpu);
2119 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03002120}
2121
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002122static void hardware_enable(void *junk)
2123{
2124 spin_lock(&kvm_lock);
2125 hardware_enable_nolock(junk);
2126 spin_unlock(&kvm_lock);
2127}
2128
2129static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002130{
2131 int cpu = raw_smp_processor_id();
2132
Rusty Russell7f59f492008-12-07 21:25:45 +10302133 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002134 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302135 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002136 kvm_arch_hardware_disable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03002137}
2138
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002139static void hardware_disable(void *junk)
2140{
2141 spin_lock(&kvm_lock);
2142 hardware_disable_nolock(junk);
2143 spin_unlock(&kvm_lock);
2144}
2145
Alexander Graf10474ae2009-09-15 11:37:46 +02002146static void hardware_disable_all_nolock(void)
2147{
2148 BUG_ON(!kvm_usage_count);
2149
2150 kvm_usage_count--;
2151 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002152 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002153}
2154
2155static void hardware_disable_all(void)
2156{
2157 spin_lock(&kvm_lock);
2158 hardware_disable_all_nolock();
2159 spin_unlock(&kvm_lock);
2160}
2161
2162static int hardware_enable_all(void)
2163{
2164 int r = 0;
2165
2166 spin_lock(&kvm_lock);
2167
2168 kvm_usage_count++;
2169 if (kvm_usage_count == 1) {
2170 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002171 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002172
2173 if (atomic_read(&hardware_enable_failed)) {
2174 hardware_disable_all_nolock();
2175 r = -EBUSY;
2176 }
2177 }
2178
2179 spin_unlock(&kvm_lock);
2180
2181 return r;
2182}
2183
Avi Kivity774c47f2007-02-12 00:54:47 -08002184static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2185 void *v)
2186{
2187 int cpu = (long)v;
2188
Alexander Graf10474ae2009-09-15 11:37:46 +02002189 if (!kvm_usage_count)
2190 return NOTIFY_OK;
2191
Avi Kivity1a6f4d72007-11-11 18:37:32 +02002192 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08002193 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03002194 case CPU_DYING:
Avi Kivity6ec8a8562007-08-19 15:57:26 +03002195 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
2196 cpu);
2197 hardware_disable(NULL);
2198 break;
Zachary Amsdenda908f22010-08-19 22:07:27 -10002199 case CPU_STARTING:
Jeremy Katz43934a32007-02-19 14:37:46 +02002200 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
2201 cpu);
Zachary Amsdenda908f22010-08-19 22:07:27 -10002202 hardware_enable(NULL);
Avi Kivity774c47f2007-02-12 00:54:47 -08002203 break;
2204 }
2205 return NOTIFY_OK;
2206}
2207
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002208
Avi Kivityb7c41452010-12-02 17:52:50 +02002209asmlinkage void kvm_spurious_fault(void)
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002210{
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002211 /* Fault while not rebooting. We want the trace. */
2212 BUG();
2213}
Avi Kivityb7c41452010-12-02 17:52:50 +02002214EXPORT_SYMBOL_GPL(kvm_spurious_fault);
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002215
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002216static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04002217 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002218{
Sheng Yang8e1c1812009-04-29 11:09:04 +08002219 /*
2220 * Some (well, at least mine) BIOSes hang on reboot if
2221 * in vmx root mode.
2222 *
2223 * And Intel TXT required VMX off for all cpu when system shutdown.
2224 */
2225 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
2226 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002227 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002228 return NOTIFY_OK;
2229}
2230
2231static struct notifier_block kvm_reboot_notifier = {
2232 .notifier_call = kvm_reboot,
2233 .priority = 0,
2234};
2235
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002236static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002237{
2238 int i;
2239
2240 for (i = 0; i < bus->dev_count; i++) {
2241 struct kvm_io_device *pos = bus->devs[i];
2242
2243 kvm_iodevice_destructor(pos);
2244 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002245 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002246}
2247
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002248/* kvm_io_bus_write - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002249int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002250 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002251{
2252 int i;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002253 struct kvm_io_bus *bus;
2254
2255 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002256 for (i = 0; i < bus->dev_count; i++)
2257 if (!kvm_iodevice_write(bus->devs[i], addr, len, val))
2258 return 0;
2259 return -EOPNOTSUPP;
2260}
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002261
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002262/* kvm_io_bus_read - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002263int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2264 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002265{
2266 int i;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002267 struct kvm_io_bus *bus;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002268
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002269 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002270 for (i = 0; i < bus->dev_count; i++)
2271 if (!kvm_iodevice_read(bus->devs[i], addr, len, val))
2272 return 0;
2273 return -EOPNOTSUPP;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002274}
2275
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002276/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002277int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx,
2278 struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002279{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002280 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04002281
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002282 bus = kvm->buses[bus_idx];
Gregory Haskins090b7af2009-07-07 17:08:44 -04002283 if (bus->dev_count > NR_IOBUS_DEVS-1)
2284 return -ENOSPC;
2285
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002286 new_bus = kzalloc(sizeof(struct kvm_io_bus), GFP_KERNEL);
2287 if (!new_bus)
2288 return -ENOMEM;
2289 memcpy(new_bus, bus, sizeof(struct kvm_io_bus));
2290 new_bus->devs[new_bus->dev_count++] = dev;
2291 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2292 synchronize_srcu_expedited(&kvm->srcu);
2293 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04002294
2295 return 0;
2296}
2297
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002298/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002299int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
2300 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04002301{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002302 int i, r;
2303 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002304
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002305 new_bus = kzalloc(sizeof(struct kvm_io_bus), GFP_KERNEL);
2306 if (!new_bus)
2307 return -ENOMEM;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002308
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002309 bus = kvm->buses[bus_idx];
2310 memcpy(new_bus, bus, sizeof(struct kvm_io_bus));
2311
2312 r = -ENOENT;
2313 for (i = 0; i < new_bus->dev_count; i++)
2314 if (new_bus->devs[i] == dev) {
2315 r = 0;
2316 new_bus->devs[i] = new_bus->devs[--new_bus->dev_count];
Gregory Haskins090b7af2009-07-07 17:08:44 -04002317 break;
2318 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002319
2320 if (r) {
2321 kfree(new_bus);
2322 return r;
2323 }
2324
2325 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2326 synchronize_srcu_expedited(&kvm->srcu);
2327 kfree(bus);
2328 return r;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002329}
2330
Avi Kivity774c47f2007-02-12 00:54:47 -08002331static struct notifier_block kvm_cpu_notifier = {
2332 .notifier_call = kvm_cpu_hotplug,
Avi Kivity774c47f2007-02-12 00:54:47 -08002333};
2334
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002335static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02002336{
2337 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02002338 struct kvm *kvm;
2339
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002340 *val = 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02002341 spin_lock(&kvm_lock);
2342 list_for_each_entry(kvm, &vm_list, vm_list)
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002343 *val += *(u32 *)((void *)kvm + offset);
Avi Kivityba1389b2007-11-18 16:24:12 +02002344 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002345 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02002346}
2347
2348DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
2349
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002350static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03002351{
2352 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002353 struct kvm *kvm;
2354 struct kvm_vcpu *vcpu;
2355 int i;
2356
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002357 *val = 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002358 spin_lock(&kvm_lock);
2359 list_for_each_entry(kvm, &vm_list, vm_list)
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002360 kvm_for_each_vcpu(i, vcpu, kvm)
2361 *val += *(u32 *)((void *)vcpu + offset);
2362
Avi Kivity1165f5f2007-04-19 17:27:43 +03002363 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002364 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002365}
2366
Avi Kivityba1389b2007-11-18 16:24:12 +02002367DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
2368
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002369static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02002370 [KVM_STAT_VCPU] = &vcpu_stat_fops,
2371 [KVM_STAT_VM] = &vm_stat_fops,
2372};
Avi Kivity1165f5f2007-04-19 17:27:43 +03002373
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08002374static void kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002375{
2376 struct kvm_stats_debugfs_item *p;
2377
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002378 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002379 for (p = debugfs_entries; p->name; ++p)
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002380 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
Avi Kivity1165f5f2007-04-19 17:27:43 +03002381 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02002382 stat_fops[p->kind]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002383}
2384
2385static void kvm_exit_debug(void)
2386{
2387 struct kvm_stats_debugfs_item *p;
2388
2389 for (p = debugfs_entries; p->name; ++p)
2390 debugfs_remove(p->dentry);
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002391 debugfs_remove(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002392}
2393
Avi Kivity59ae6c62007-02-12 00:54:48 -08002394static int kvm_suspend(struct sys_device *dev, pm_message_t state)
2395{
Alexander Graf10474ae2009-09-15 11:37:46 +02002396 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002397 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002398 return 0;
2399}
2400
2401static int kvm_resume(struct sys_device *dev)
2402{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002403 if (kvm_usage_count) {
2404 WARN_ON(spin_is_locked(&kvm_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002405 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002406 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08002407 return 0;
2408}
2409
2410static struct sysdev_class kvm_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002411 .name = "kvm",
Avi Kivity59ae6c62007-02-12 00:54:48 -08002412 .suspend = kvm_suspend,
2413 .resume = kvm_resume,
2414};
2415
2416static struct sys_device kvm_sysdev = {
2417 .id = 0,
2418 .cls = &kvm_sysdev_class,
2419};
2420
Izik Eiduscea7bb22007-10-17 19:17:48 +02002421struct page *bad_page;
Anthony Liguori35149e22008-04-02 14:46:56 -05002422pfn_t bad_pfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002423
Avi Kivity15ad7142007-07-11 18:17:21 +03002424static inline
2425struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
2426{
2427 return container_of(pn, struct kvm_vcpu, preempt_notifier);
2428}
2429
2430static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
2431{
2432 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2433
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002434 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002435}
2436
2437static void kvm_sched_out(struct preempt_notifier *pn,
2438 struct task_struct *next)
2439{
2440 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2441
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002442 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002443}
2444
Avi Kivity0ee75be2010-04-28 15:39:01 +03002445int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10002446 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002447{
2448 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002449 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002450
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002451 r = kvm_arch_init(opaque);
2452 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002453 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002454
2455 bad_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2456
2457 if (bad_page == NULL) {
2458 r = -ENOMEM;
2459 goto out;
2460 }
2461
Anthony Liguori35149e22008-04-02 14:46:56 -05002462 bad_pfn = page_to_pfn(bad_page);
2463
Huang Yingbf998152010-05-31 14:28:19 +08002464 hwpoison_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2465
2466 if (hwpoison_page == NULL) {
2467 r = -ENOMEM;
2468 goto out_free_0;
2469 }
2470
2471 hwpoison_pfn = page_to_pfn(hwpoison_page);
2472
Gleb Natapovedba23e2010-07-07 20:16:45 +03002473 fault_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2474
2475 if (fault_page == NULL) {
2476 r = -ENOMEM;
2477 goto out_free_0;
2478 }
2479
2480 fault_pfn = page_to_pfn(fault_page);
2481
Avi Kivity8437a612009-06-06 14:52:35 -07002482 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10302483 r = -ENOMEM;
2484 goto out_free_0;
2485 }
2486
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002487 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002488 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10302489 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002490
Yang, Sheng002c7f72007-07-31 14:23:01 +03002491 for_each_online_cpu(cpu) {
2492 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002493 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02002494 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03002495 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002496 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002497 }
2498
Avi Kivity774c47f2007-02-12 00:54:47 -08002499 r = register_cpu_notifier(&kvm_cpu_notifier);
2500 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002501 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002502 register_reboot_notifier(&kvm_reboot_notifier);
2503
Avi Kivity59ae6c62007-02-12 00:54:48 -08002504 r = sysdev_class_register(&kvm_sysdev_class);
2505 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002506 goto out_free_3;
Avi Kivity59ae6c62007-02-12 00:54:48 -08002507
2508 r = sysdev_register(&kvm_sysdev);
2509 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002510 goto out_free_4;
Avi Kivity59ae6c62007-02-12 00:54:48 -08002511
Rusty Russellc16f8622007-07-30 21:12:19 +10002512 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03002513 if (!vcpu_align)
2514 vcpu_align = __alignof__(struct kvm_vcpu);
2515 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08002516 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10002517 if (!kvm_vcpu_cache) {
2518 r = -ENOMEM;
Zhang Xiantaod23087842007-11-29 15:35:39 +08002519 goto out_free_5;
Rusty Russellc16f8622007-07-30 21:12:19 +10002520 }
2521
Gleb Natapovaf585b92010-10-14 11:22:46 +02002522 r = kvm_async_pf_init();
2523 if (r)
2524 goto out_free;
2525
Avi Kivity6aa8b732006-12-10 02:21:36 -08002526 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002527 kvm_vm_fops.owner = module;
2528 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002529
2530 r = misc_register(&kvm_dev);
2531 if (r) {
Mike Dayd77c26f2007-10-08 09:02:08 -04002532 printk(KERN_ERR "kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02002533 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002534 }
2535
Avi Kivity15ad7142007-07-11 18:17:21 +03002536 kvm_preempt_ops.sched_in = kvm_sched_in;
2537 kvm_preempt_ops.sched_out = kvm_sched_out;
2538
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002539 kvm_init_debug();
2540
Avi Kivityc7addb92007-09-16 18:58:32 +02002541 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002542
Gleb Natapovaf585b92010-10-14 11:22:46 +02002543out_unreg:
2544 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002545out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10002546 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002547out_free_5:
Avi Kivity59ae6c62007-02-12 00:54:48 -08002548 sysdev_unregister(&kvm_sysdev);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002549out_free_4:
Avi Kivity59ae6c62007-02-12 00:54:48 -08002550 sysdev_class_unregister(&kvm_sysdev_class);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002551out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002552 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08002553 unregister_cpu_notifier(&kvm_cpu_notifier);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002554out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08002555out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002556 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10302557out_free_0a:
2558 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002559out_free_0:
Gleb Natapovedba23e2010-07-07 20:16:45 +03002560 if (fault_page)
2561 __free_page(fault_page);
Huang Yingbf998152010-05-31 14:28:19 +08002562 if (hwpoison_page)
2563 __free_page(hwpoison_page);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002564 __free_page(bad_page);
Avi Kivityca45aaa2007-03-01 19:21:03 +02002565out:
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002566 kvm_arch_exit();
Zhang Xiantaod23087842007-11-29 15:35:39 +08002567out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002568 return r;
2569}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002570EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002571
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002572void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002573{
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002574 kvm_exit_debug();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002575 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10002576 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02002577 kvm_async_pf_deinit();
Avi Kivity59ae6c62007-02-12 00:54:48 -08002578 sysdev_unregister(&kvm_sysdev);
2579 sysdev_class_unregister(&kvm_sysdev_class);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002580 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002581 unregister_cpu_notifier(&kvm_cpu_notifier);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002582 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002583 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002584 kvm_arch_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10302585 free_cpumask_var(cpus_hardware_enabled);
Huang Yingbf998152010-05-31 14:28:19 +08002586 __free_page(hwpoison_page);
Izik Eiduscea7bb22007-10-17 19:17:48 +02002587 __free_page(bad_page);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002588}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002589EXPORT_SYMBOL_GPL(kvm_exit);