blob: 002fe0b12c9f86778c87b0f96b262e6f85039dbe [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 Kivitya1f4d392010-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
Huang Yingfafc3db2011-01-30 11:15:49 +08001031static inline int check_user_page_hwpoison(unsigned long addr)
1032{
1033 int rc, flags = FOLL_TOUCH | FOLL_HWPOISON | FOLL_WRITE;
1034
1035 rc = __get_user_pages(current, current->mm, addr, 1,
1036 flags, NULL, NULL, NULL);
1037 return rc == -EHWPOISON;
1038}
1039
Gleb Natapovaf585b92010-10-14 11:22:46 +02001040static pfn_t hva_to_pfn(struct kvm *kvm, unsigned long addr, bool atomic,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001041 bool *async, bool write_fault, bool *writable)
Avi Kivity954bbbc22007-03-30 14:02:32 +03001042{
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001043 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +02001044 int npages = 0;
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001045 pfn_t pfn;
Avi Kivity954bbbc22007-03-30 14:02:32 +03001046
Gleb Natapovaf585b92010-10-14 11:22:46 +02001047 /* we can do it either atomically or asynchronously, not both */
1048 BUG_ON(atomic && async);
1049
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001050 BUG_ON(!write_fault && !writable);
1051
1052 if (writable)
1053 *writable = true;
1054
Gleb Natapovaf585b92010-10-14 11:22:46 +02001055 if (atomic || async)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001056 npages = __get_user_pages_fast(addr, 1, 1, page);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001057
1058 if (unlikely(npages != 1) && !atomic) {
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001059 might_sleep();
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001060
1061 if (writable)
1062 *writable = write_fault;
1063
1064 npages = get_user_pages_fast(addr, 1, write_fault, page);
1065
1066 /* map read fault as writable if possible */
1067 if (unlikely(!write_fault) && npages == 1) {
1068 struct page *wpage[1];
1069
1070 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1071 if (npages == 1) {
1072 *writable = true;
1073 put_page(page[0]);
1074 page[0] = wpage[0];
1075 }
1076 npages = 1;
1077 }
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001078 }
Izik Eidus539cb662007-11-11 22:05:04 +02001079
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001080 if (unlikely(npages != 1)) {
1081 struct vm_area_struct *vma;
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001082
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001083 if (atomic)
Gleb Natapov80300892010-10-19 18:13:41 +02001084 return get_fault_pfn();
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001085
Huang Yingbbeb3402010-06-22 14:23:11 +08001086 down_read(&current->mm->mmap_sem);
Huang Yingfafc3db2011-01-30 11:15:49 +08001087 if (check_user_page_hwpoison(addr)) {
Huang Yingbbeb3402010-06-22 14:23:11 +08001088 up_read(&current->mm->mmap_sem);
Huang Yingbf998152010-05-31 14:28:19 +08001089 get_page(hwpoison_page);
1090 return page_to_pfn(hwpoison_page);
1091 }
1092
Gleb Natapov80300892010-10-19 18:13:41 +02001093 vma = find_vma_intersection(current->mm, addr, addr+1);
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001094
Gleb Natapov80300892010-10-19 18:13:41 +02001095 if (vma == NULL)
1096 pfn = get_fault_pfn();
1097 else if ((vma->vm_flags & VM_PFNMAP)) {
1098 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1099 vma->vm_pgoff;
1100 BUG_ON(!kvm_is_mmio_pfn(pfn));
1101 } else {
1102 if (async && (vma->vm_flags & VM_WRITE))
Gleb Natapovaf585b92010-10-14 11:22:46 +02001103 *async = true;
Gleb Natapov80300892010-10-19 18:13:41 +02001104 pfn = get_fault_pfn();
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001105 }
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001106 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001107 } else
1108 pfn = page_to_pfn(page[0]);
1109
1110 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001111}
1112
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001113pfn_t hva_to_pfn_atomic(struct kvm *kvm, unsigned long addr)
1114{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001115 return hva_to_pfn(kvm, addr, true, NULL, true, NULL);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001116}
1117EXPORT_SYMBOL_GPL(hva_to_pfn_atomic);
1118
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001119static pfn_t __gfn_to_pfn(struct kvm *kvm, gfn_t gfn, bool atomic, bool *async,
1120 bool write_fault, bool *writable)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001121{
1122 unsigned long addr;
1123
Gleb Natapovaf585b92010-10-14 11:22:46 +02001124 if (async)
1125 *async = false;
1126
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001127 addr = gfn_to_hva(kvm, gfn);
1128 if (kvm_is_error_hva(addr)) {
1129 get_page(bad_page);
1130 return page_to_pfn(bad_page);
1131 }
1132
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001133 return hva_to_pfn(kvm, addr, atomic, async, write_fault, writable);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001134}
1135
1136pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1137{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001138 return __gfn_to_pfn(kvm, gfn, true, NULL, true, NULL);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001139}
1140EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1141
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001142pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
1143 bool write_fault, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02001144{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001145 return __gfn_to_pfn(kvm, gfn, false, async, write_fault, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001146}
1147EXPORT_SYMBOL_GPL(gfn_to_pfn_async);
1148
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001149pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1150{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001151 return __gfn_to_pfn(kvm, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001152}
Anthony Liguori35149e22008-04-02 14:46:56 -05001153EXPORT_SYMBOL_GPL(gfn_to_pfn);
1154
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001155pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1156 bool *writable)
1157{
1158 return __gfn_to_pfn(kvm, gfn, false, NULL, write_fault, writable);
1159}
1160EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1161
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001162pfn_t gfn_to_pfn_memslot(struct kvm *kvm,
1163 struct kvm_memory_slot *slot, gfn_t gfn)
1164{
1165 unsigned long addr = gfn_to_hva_memslot(slot, gfn);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001166 return hva_to_pfn(kvm, addr, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001167}
1168
Xiao Guangrong48987782010-08-22 19:11:43 +08001169int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
1170 int nr_pages)
1171{
1172 unsigned long addr;
1173 gfn_t entry;
1174
Gleb Natapov49c77542010-10-18 15:22:23 +02001175 addr = gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001176 if (kvm_is_error_hva(addr))
1177 return -1;
1178
1179 if (entry < nr_pages)
1180 return 0;
1181
1182 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1183}
1184EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1185
Anthony Liguori35149e22008-04-02 14:46:56 -05001186struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1187{
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001188 pfn_t pfn;
1189
1190 pfn = gfn_to_pfn(kvm, gfn);
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001191 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001192 return pfn_to_page(pfn);
1193
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001194 WARN_ON(kvm_is_mmio_pfn(pfn));
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001195
1196 get_page(bad_page);
1197 return bad_page;
Avi Kivity954bbbc22007-03-30 14:02:32 +03001198}
Anthony Liguoriaab61cc2007-10-29 15:15:20 -05001199
Avi Kivity954bbbc22007-03-30 14:02:32 +03001200EXPORT_SYMBOL_GPL(gfn_to_page);
1201
Izik Eidusb4231d62007-11-20 11:49:33 +02001202void kvm_release_page_clean(struct page *page)
1203{
Anthony Liguori35149e22008-04-02 14:46:56 -05001204 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001205}
1206EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1207
Anthony Liguori35149e22008-04-02 14:46:56 -05001208void kvm_release_pfn_clean(pfn_t pfn)
1209{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001210 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001211 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001212}
1213EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1214
Izik Eidusb4231d62007-11-20 11:49:33 +02001215void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001216{
Anthony Liguori35149e22008-04-02 14:46:56 -05001217 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001218}
Izik Eidusb4231d62007-11-20 11:49:33 +02001219EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001220
Anthony Liguori35149e22008-04-02 14:46:56 -05001221void kvm_release_pfn_dirty(pfn_t pfn)
1222{
1223 kvm_set_pfn_dirty(pfn);
1224 kvm_release_pfn_clean(pfn);
1225}
1226EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty);
1227
1228void kvm_set_page_dirty(struct page *page)
1229{
1230 kvm_set_pfn_dirty(page_to_pfn(page));
1231}
1232EXPORT_SYMBOL_GPL(kvm_set_page_dirty);
1233
1234void kvm_set_pfn_dirty(pfn_t pfn)
1235{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001236 if (!kvm_is_mmio_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001237 struct page *page = pfn_to_page(pfn);
1238 if (!PageReserved(page))
1239 SetPageDirty(page);
1240 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001241}
1242EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1243
1244void kvm_set_pfn_accessed(pfn_t pfn)
1245{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001246 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001247 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001248}
1249EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1250
1251void kvm_get_pfn(pfn_t pfn)
1252{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001253 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001254 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001255}
1256EXPORT_SYMBOL_GPL(kvm_get_pfn);
1257
Izik Eidus195aefd2007-10-01 22:14:18 +02001258static int next_segment(unsigned long len, int offset)
1259{
1260 if (len > PAGE_SIZE - offset)
1261 return PAGE_SIZE - offset;
1262 else
1263 return len;
1264}
1265
1266int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1267 int len)
1268{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001269 int r;
1270 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001271
Izik Eiduse0506bc2007-11-11 22:10:22 +02001272 addr = gfn_to_hva(kvm, gfn);
1273 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001274 return -EFAULT;
Izik Eiduse0506bc2007-11-11 22:10:22 +02001275 r = copy_from_user(data, (void __user *)addr + offset, len);
1276 if (r)
1277 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001278 return 0;
1279}
1280EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1281
1282int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1283{
1284 gfn_t gfn = gpa >> PAGE_SHIFT;
1285 int seg;
1286 int offset = offset_in_page(gpa);
1287 int ret;
1288
1289 while ((seg = next_segment(len, offset)) != 0) {
1290 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1291 if (ret < 0)
1292 return ret;
1293 offset = 0;
1294 len -= seg;
1295 data += seg;
1296 ++gfn;
1297 }
1298 return 0;
1299}
1300EXPORT_SYMBOL_GPL(kvm_read_guest);
1301
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001302int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1303 unsigned long len)
1304{
1305 int r;
1306 unsigned long addr;
1307 gfn_t gfn = gpa >> PAGE_SHIFT;
1308 int offset = offset_in_page(gpa);
1309
1310 addr = gfn_to_hva(kvm, gfn);
1311 if (kvm_is_error_hva(addr))
1312 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001313 pagefault_disable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001314 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001315 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001316 if (r)
1317 return -EFAULT;
1318 return 0;
1319}
1320EXPORT_SYMBOL(kvm_read_guest_atomic);
1321
Izik Eidus195aefd2007-10-01 22:14:18 +02001322int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1323 int offset, int len)
1324{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001325 int r;
1326 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001327
Izik Eiduse0506bc2007-11-11 22:10:22 +02001328 addr = gfn_to_hva(kvm, gfn);
1329 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001330 return -EFAULT;
Izik Eiduse0506bc2007-11-11 22:10:22 +02001331 r = copy_to_user((void __user *)addr + offset, data, len);
1332 if (r)
1333 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001334 mark_page_dirty(kvm, gfn);
1335 return 0;
1336}
1337EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1338
1339int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1340 unsigned long len)
1341{
1342 gfn_t gfn = gpa >> PAGE_SHIFT;
1343 int seg;
1344 int offset = offset_in_page(gpa);
1345 int ret;
1346
1347 while ((seg = next_segment(len, offset)) != 0) {
1348 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1349 if (ret < 0)
1350 return ret;
1351 offset = 0;
1352 len -= seg;
1353 data += seg;
1354 ++gfn;
1355 }
1356 return 0;
1357}
1358
Gleb Natapov49c77542010-10-18 15:22:23 +02001359int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1360 gpa_t gpa)
1361{
1362 struct kvm_memslots *slots = kvm_memslots(kvm);
1363 int offset = offset_in_page(gpa);
1364 gfn_t gfn = gpa >> PAGE_SHIFT;
1365
1366 ghc->gpa = gpa;
1367 ghc->generation = slots->generation;
1368 ghc->memslot = __gfn_to_memslot(slots, gfn);
1369 ghc->hva = gfn_to_hva_many(ghc->memslot, gfn, NULL);
1370 if (!kvm_is_error_hva(ghc->hva))
1371 ghc->hva += offset;
1372 else
1373 return -EFAULT;
1374
1375 return 0;
1376}
1377EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1378
1379int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1380 void *data, unsigned long len)
1381{
1382 struct kvm_memslots *slots = kvm_memslots(kvm);
1383 int r;
1384
1385 if (slots->generation != ghc->generation)
1386 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa);
1387
1388 if (kvm_is_error_hva(ghc->hva))
1389 return -EFAULT;
1390
1391 r = copy_to_user((void __user *)ghc->hva, data, len);
1392 if (r)
1393 return -EFAULT;
1394 mark_page_dirty_in_slot(kvm, ghc->memslot, ghc->gpa >> PAGE_SHIFT);
1395
1396 return 0;
1397}
1398EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1399
Izik Eidus195aefd2007-10-01 22:14:18 +02001400int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1401{
Heiko Carstens3bcc8a82010-10-27 17:21:21 +02001402 return kvm_write_guest_page(kvm, gfn, (const void *) empty_zero_page,
1403 offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02001404}
1405EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1406
1407int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1408{
1409 gfn_t gfn = gpa >> PAGE_SHIFT;
1410 int seg;
1411 int offset = offset_in_page(gpa);
1412 int ret;
1413
1414 while ((seg = next_segment(len, offset)) != 0) {
1415 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1416 if (ret < 0)
1417 return ret;
1418 offset = 0;
1419 len -= seg;
1420 ++gfn;
1421 }
1422 return 0;
1423}
1424EXPORT_SYMBOL_GPL(kvm_clear_guest);
1425
Gleb Natapov49c77542010-10-18 15:22:23 +02001426void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot,
1427 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001428{
Rusty Russell7e9d6192007-07-31 20:41:14 +10001429 if (memslot && memslot->dirty_bitmap) {
1430 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001431
Takuya Yoshikawad1476932010-04-23 17:48:35 +09001432 generic___set_le_bit(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001433 }
1434}
1435
Gleb Natapov49c77542010-10-18 15:22:23 +02001436void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1437{
1438 struct kvm_memory_slot *memslot;
1439
1440 memslot = gfn_to_memslot(kvm, gfn);
1441 mark_page_dirty_in_slot(kvm, memslot, gfn);
1442}
1443
Eddie Dongb6958ce2007-07-18 12:15:21 +03001444/*
1445 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1446 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05001447void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001448{
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001449 DEFINE_WAIT(wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001450
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001451 for (;;) {
1452 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001453
Gleb Natapova1b37102009-07-09 15:33:52 +03001454 if (kvm_arch_vcpu_runnable(vcpu)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03001455 kvm_make_request(KVM_REQ_UNHALT, vcpu);
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001456 break;
Marcelo Tosattid7690172008-09-08 15:23:48 -03001457 }
Gleb Natapov09cec752009-03-23 15:11:44 +02001458 if (kvm_cpu_has_pending_timer(vcpu))
1459 break;
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001460 if (signal_pending(current))
1461 break;
1462
Eddie Dongb6958ce2007-07-18 12:15:21 +03001463 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03001464 }
1465
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001466 finish_wait(&vcpu->wq, &wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001467}
1468
Avi Kivity6aa8b732006-12-10 02:21:36 -08001469void kvm_resched(struct kvm_vcpu *vcpu)
1470{
Yaozu Dong3fca0362007-04-25 16:49:19 +03001471 if (!need_resched())
1472 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001473 cond_resched();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001474}
1475EXPORT_SYMBOL_GPL(kvm_resched);
1476
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001477void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu)
1478{
1479 ktime_t expires;
1480 DEFINE_WAIT(wait);
1481
1482 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
1483
1484 /* Sleep for 100 us, and hope lock-holder got scheduled */
1485 expires = ktime_add_ns(ktime_get(), 100000UL);
1486 schedule_hrtimeout(&expires, HRTIMER_MODE_ABS);
1487
1488 finish_wait(&vcpu->wq, &wait);
1489}
1490EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
1491
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001492static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001493{
1494 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001495 struct page *page;
1496
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001497 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02001498 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02001499#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001500 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001501 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02001502#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02001503#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1504 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1505 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
1506#endif
Avi Kivity039576c2007-03-20 12:46:50 +02001507 else
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001508 return VM_FAULT_SIGBUS;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001509 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001510 vmf->page = page;
1511 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001512}
1513
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001514static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001515 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001516};
1517
1518static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1519{
1520 vma->vm_ops = &kvm_vcpu_vm_ops;
1521 return 0;
1522}
1523
Avi Kivitybccf2152007-02-21 18:04:26 +02001524static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1525{
1526 struct kvm_vcpu *vcpu = filp->private_data;
1527
Al Viro66c0b392008-04-19 20:33:56 +01001528 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001529 return 0;
1530}
1531
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001532static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02001533 .release = kvm_vcpu_release,
1534 .unlocked_ioctl = kvm_vcpu_ioctl,
1535 .compat_ioctl = kvm_vcpu_ioctl,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001536 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001537 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02001538};
1539
1540/*
1541 * Allocates an inode for the vcpu.
1542 */
1543static int create_vcpu_fd(struct kvm_vcpu *vcpu)
1544{
Roland Dreier628ff7c2009-12-18 09:41:24 -08001545 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR);
Avi Kivitybccf2152007-02-21 18:04:26 +02001546}
1547
Avi Kivityc5ea7662007-02-20 18:41:05 +02001548/*
1549 * Creates some virtual cpus. Good luck creating more than one.
1550 */
Gleb Natapov73880c82009-06-09 15:56:28 +03001551static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02001552{
1553 int r;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001554 struct kvm_vcpu *vcpu, *v;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001555
Gleb Natapov73880c82009-06-09 15:56:28 +03001556 vcpu = kvm_arch_vcpu_create(kvm, id);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001557 if (IS_ERR(vcpu))
1558 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001559
Avi Kivity15ad7142007-07-11 18:17:21 +03001560 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
1561
Avi Kivity26e52152007-11-20 15:30:24 +02001562 r = kvm_arch_vcpu_setup(vcpu);
1563 if (r)
Glauber Costa7d8fece2008-09-17 23:16:59 -03001564 return r;
Avi Kivity26e52152007-11-20 15:30:24 +02001565
Shaohua Li11ec2802007-07-23 14:51:37 +08001566 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03001567 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
1568 r = -EINVAL;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001569 goto vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001570 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001571
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001572 kvm_for_each_vcpu(r, v, kvm)
1573 if (v->vcpu_id == id) {
Gleb Natapov73880c82009-06-09 15:56:28 +03001574 r = -EEXIST;
1575 goto vcpu_destroy;
1576 }
1577
1578 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001579
1580 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01001581 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001582 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03001583 if (r < 0) {
1584 kvm_put_kvm(kvm);
1585 goto vcpu_destroy;
1586 }
1587
1588 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
1589 smp_wmb();
1590 atomic_inc(&kvm->online_vcpus);
1591
1592#ifdef CONFIG_KVM_APIC_ARCHITECTURE
1593 if (kvm->bsp_vcpu_id == id)
1594 kvm->bsp_vcpu = vcpu;
1595#endif
1596 mutex_unlock(&kvm->lock);
Avi Kivitybccf2152007-02-21 18:04:26 +02001597 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001598
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001599vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03001600 mutex_unlock(&kvm->lock);
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06001601 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001602 return r;
1603}
1604
Avi Kivity1961d272007-03-05 19:46:05 +02001605static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
1606{
1607 if (sigset) {
1608 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
1609 vcpu->sigset_active = 1;
1610 vcpu->sigset = *sigset;
1611 } else
1612 vcpu->sigset_active = 0;
1613 return 0;
1614}
1615
Avi Kivitybccf2152007-02-21 18:04:26 +02001616static long kvm_vcpu_ioctl(struct file *filp,
1617 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001618{
Avi Kivitybccf2152007-02-21 18:04:26 +02001619 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f366982007-02-09 16:38:35 +00001620 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02001621 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001622 struct kvm_fpu *fpu = NULL;
1623 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001624
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001625 if (vcpu->kvm->mm != current->mm)
1626 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03001627
1628#if defined(CONFIG_S390) || defined(CONFIG_PPC)
1629 /*
1630 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
1631 * so vcpu_load() would break it.
1632 */
1633 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_INTERRUPT)
1634 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
1635#endif
1636
1637
1638 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001639 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001640 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02001641 r = -EINVAL;
1642 if (arg)
1643 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05001644 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02001645 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001646 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001647 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001648 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001649
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001650 r = -ENOMEM;
1651 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1652 if (!kvm_regs)
1653 goto out;
1654 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001655 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001656 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001657 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001658 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
1659 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001660 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001661out_free1:
1662 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001663 break;
1664 }
1665 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001666 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001667
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001668 r = -ENOMEM;
1669 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1670 if (!kvm_regs)
1671 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001672 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001673 if (copy_from_user(kvm_regs, argp, sizeof(struct kvm_regs)))
1674 goto out_free2;
1675 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001676 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001677 goto out_free2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001678 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001679out_free2:
1680 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001681 break;
1682 }
1683 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001684 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1685 r = -ENOMEM;
1686 if (!kvm_sregs)
1687 goto out;
1688 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001689 if (r)
1690 goto out;
1691 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001692 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001693 goto out;
1694 r = 0;
1695 break;
1696 }
1697 case KVM_SET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001698 kvm_sregs = kmalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1699 r = -ENOMEM;
1700 if (!kvm_sregs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001701 goto out;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001702 r = -EFAULT;
1703 if (copy_from_user(kvm_sregs, argp, sizeof(struct kvm_sregs)))
1704 goto out;
1705 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001706 if (r)
1707 goto out;
1708 r = 0;
1709 break;
1710 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03001711 case KVM_GET_MP_STATE: {
1712 struct kvm_mp_state mp_state;
1713
1714 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
1715 if (r)
1716 goto out;
1717 r = -EFAULT;
1718 if (copy_to_user(argp, &mp_state, sizeof mp_state))
1719 goto out;
1720 r = 0;
1721 break;
1722 }
1723 case KVM_SET_MP_STATE: {
1724 struct kvm_mp_state mp_state;
1725
1726 r = -EFAULT;
1727 if (copy_from_user(&mp_state, argp, sizeof mp_state))
1728 goto out;
1729 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
1730 if (r)
1731 goto out;
1732 r = 0;
1733 break;
1734 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001735 case KVM_TRANSLATE: {
1736 struct kvm_translation tr;
1737
1738 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00001739 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001740 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08001741 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001742 if (r)
1743 goto out;
1744 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00001745 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001746 goto out;
1747 r = 0;
1748 break;
1749 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001750 case KVM_SET_GUEST_DEBUG: {
1751 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001752
1753 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00001754 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001755 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001756 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001757 if (r)
1758 goto out;
1759 r = 0;
1760 break;
1761 }
Avi Kivity1961d272007-03-05 19:46:05 +02001762 case KVM_SET_SIGNAL_MASK: {
1763 struct kvm_signal_mask __user *sigmask_arg = argp;
1764 struct kvm_signal_mask kvm_sigmask;
1765 sigset_t sigset, *p;
1766
1767 p = NULL;
1768 if (argp) {
1769 r = -EFAULT;
1770 if (copy_from_user(&kvm_sigmask, argp,
1771 sizeof kvm_sigmask))
1772 goto out;
1773 r = -EINVAL;
1774 if (kvm_sigmask.len != sizeof sigset)
1775 goto out;
1776 r = -EFAULT;
1777 if (copy_from_user(&sigset, sigmask_arg->sigset,
1778 sizeof sigset))
1779 goto out;
1780 p = &sigset;
1781 }
Andi Kleen376d41f2010-06-10 13:10:47 +02001782 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02001783 break;
1784 }
Avi Kivityb8836732007-04-01 16:34:31 +03001785 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001786 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
1787 r = -ENOMEM;
1788 if (!fpu)
1789 goto out;
1790 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03001791 if (r)
1792 goto out;
1793 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001794 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03001795 goto out;
1796 r = 0;
1797 break;
1798 }
1799 case KVM_SET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001800 fpu = kmalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
1801 r = -ENOMEM;
1802 if (!fpu)
Avi Kivityb8836732007-04-01 16:34:31 +03001803 goto out;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001804 r = -EFAULT;
1805 if (copy_from_user(fpu, argp, sizeof(struct kvm_fpu)))
1806 goto out;
1807 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03001808 if (r)
1809 goto out;
1810 r = 0;
1811 break;
1812 }
Avi Kivitybccf2152007-02-21 18:04:26 +02001813 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02001814 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02001815 }
1816out:
Avi Kivity2122ff52010-05-13 11:25:04 +03001817 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07001818 kfree(fpu);
1819 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02001820 return r;
1821}
1822
1823static long kvm_vm_ioctl(struct file *filp,
1824 unsigned int ioctl, unsigned long arg)
1825{
1826 struct kvm *kvm = filp->private_data;
1827 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01001828 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02001829
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001830 if (kvm->mm != current->mm)
1831 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02001832 switch (ioctl) {
1833 case KVM_CREATE_VCPU:
1834 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
1835 if (r < 0)
1836 goto out;
1837 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02001838 case KVM_SET_USER_MEMORY_REGION: {
1839 struct kvm_userspace_memory_region kvm_userspace_mem;
1840
1841 r = -EFAULT;
1842 if (copy_from_user(&kvm_userspace_mem, argp,
1843 sizeof kvm_userspace_mem))
1844 goto out;
1845
1846 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001847 if (r)
1848 goto out;
1849 break;
1850 }
1851 case KVM_GET_DIRTY_LOG: {
1852 struct kvm_dirty_log log;
1853
1854 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00001855 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001856 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02001857 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001858 if (r)
1859 goto out;
1860 break;
1861 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02001862#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1863 case KVM_REGISTER_COALESCED_MMIO: {
1864 struct kvm_coalesced_mmio_zone zone;
1865 r = -EFAULT;
1866 if (copy_from_user(&zone, argp, sizeof zone))
1867 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02001868 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
1869 if (r)
1870 goto out;
1871 r = 0;
1872 break;
1873 }
1874 case KVM_UNREGISTER_COALESCED_MMIO: {
1875 struct kvm_coalesced_mmio_zone zone;
1876 r = -EFAULT;
1877 if (copy_from_user(&zone, argp, sizeof zone))
1878 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02001879 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
1880 if (r)
1881 goto out;
1882 r = 0;
1883 break;
1884 }
1885#endif
Gregory Haskins721eecb2009-05-20 10:30:49 -04001886 case KVM_IRQFD: {
1887 struct kvm_irqfd data;
1888
1889 r = -EFAULT;
1890 if (copy_from_user(&data, argp, sizeof data))
1891 goto out;
1892 r = kvm_irqfd(kvm, data.fd, data.gsi, data.flags);
1893 break;
1894 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04001895 case KVM_IOEVENTFD: {
1896 struct kvm_ioeventfd data;
1897
1898 r = -EFAULT;
1899 if (copy_from_user(&data, argp, sizeof data))
1900 goto out;
1901 r = kvm_ioeventfd(kvm, &data);
1902 break;
1903 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001904#ifdef CONFIG_KVM_APIC_ARCHITECTURE
1905 case KVM_SET_BOOT_CPU_ID:
1906 r = 0;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03001907 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03001908 if (atomic_read(&kvm->online_vcpus) != 0)
1909 r = -EBUSY;
1910 else
1911 kvm->bsp_vcpu_id = arg;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03001912 mutex_unlock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03001913 break;
1914#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02001915 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01001916 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivitybfd99ff2009-08-26 14:57:50 +03001917 if (r == -ENOTTY)
1918 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02001919 }
1920out:
1921 return r;
1922}
1923
Arnd Bergmann6ff58942009-10-22 14:19:27 +02001924#ifdef CONFIG_COMPAT
1925struct compat_kvm_dirty_log {
1926 __u32 slot;
1927 __u32 padding1;
1928 union {
1929 compat_uptr_t dirty_bitmap; /* one bit per page */
1930 __u64 padding2;
1931 };
1932};
1933
1934static long kvm_vm_compat_ioctl(struct file *filp,
1935 unsigned int ioctl, unsigned long arg)
1936{
1937 struct kvm *kvm = filp->private_data;
1938 int r;
1939
1940 if (kvm->mm != current->mm)
1941 return -EIO;
1942 switch (ioctl) {
1943 case KVM_GET_DIRTY_LOG: {
1944 struct compat_kvm_dirty_log compat_log;
1945 struct kvm_dirty_log log;
1946
1947 r = -EFAULT;
1948 if (copy_from_user(&compat_log, (void __user *)arg,
1949 sizeof(compat_log)))
1950 goto out;
1951 log.slot = compat_log.slot;
1952 log.padding1 = compat_log.padding1;
1953 log.padding2 = compat_log.padding2;
1954 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
1955
1956 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
1957 if (r)
1958 goto out;
1959 break;
1960 }
1961 default:
1962 r = kvm_vm_ioctl(filp, ioctl, arg);
1963 }
1964
1965out:
1966 return r;
1967}
1968#endif
1969
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001970static int kvm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivityf17abe92007-02-21 19:28:04 +02001971{
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03001972 struct page *page[1];
1973 unsigned long addr;
1974 int npages;
1975 gfn_t gfn = vmf->pgoff;
Avi Kivityf17abe92007-02-21 19:28:04 +02001976 struct kvm *kvm = vma->vm_file->private_data;
Avi Kivityf17abe92007-02-21 19:28:04 +02001977
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03001978 addr = gfn_to_hva(kvm, gfn);
1979 if (kvm_is_error_hva(addr))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001980 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03001981
1982 npages = get_user_pages(current, current->mm, addr, 1, 1, 0, page,
1983 NULL);
1984 if (unlikely(npages != 1))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001985 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03001986
1987 vmf->page = page[0];
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001988 return 0;
Avi Kivityf17abe92007-02-21 19:28:04 +02001989}
1990
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001991static const struct vm_operations_struct kvm_vm_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001992 .fault = kvm_vm_fault,
Avi Kivityf17abe92007-02-21 19:28:04 +02001993};
1994
1995static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
1996{
1997 vma->vm_ops = &kvm_vm_vm_ops;
1998 return 0;
1999}
2000
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002001static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02002002 .release = kvm_vm_release,
2003 .unlocked_ioctl = kvm_vm_ioctl,
Arnd Bergmann6ff58942009-10-22 14:19:27 +02002004#ifdef CONFIG_COMPAT
2005 .compat_ioctl = kvm_vm_compat_ioctl,
2006#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02002007 .mmap = kvm_vm_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002008 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02002009};
2010
2011static int kvm_dev_ioctl_create_vm(void)
2012{
Heiko Carstensaac87632010-10-27 17:22:10 +02002013 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002014 struct kvm *kvm;
2015
Avi Kivityf17abe92007-02-21 19:28:04 +02002016 kvm = kvm_create_vm();
Avi Kivityd6d28162007-06-28 08:38:16 -04002017 if (IS_ERR(kvm))
2018 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09002019#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2020 r = kvm_coalesced_mmio_init(kvm);
2021 if (r < 0) {
2022 kvm_put_kvm(kvm);
2023 return r;
2024 }
2025#endif
Heiko Carstensaac87632010-10-27 17:22:10 +02002026 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
2027 if (r < 0)
Al Viro66c0b392008-04-19 20:33:56 +01002028 kvm_put_kvm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02002029
Heiko Carstensaac87632010-10-27 17:22:10 +02002030 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002031}
2032
Avi Kivity1a811b62008-12-08 18:25:27 +02002033static long kvm_dev_ioctl_check_extension_generic(long arg)
2034{
2035 switch (arg) {
Avi Kivityca9edae2008-12-08 18:29:29 +02002036 case KVM_CAP_USER_MEMORY:
Avi Kivity1a811b62008-12-08 18:25:27 +02002037 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
Jan Kiszka4cd481f2009-04-13 11:59:32 +02002038 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Gleb Natapov73880c82009-06-09 15:56:28 +03002039#ifdef CONFIG_KVM_APIC_ARCHITECTURE
2040 case KVM_CAP_SET_BOOT_CPU_ID:
2041#endif
Avi Kivitya9c73992009-11-04 11:54:59 +02002042 case KVM_CAP_INTERNAL_ERROR_DATA:
Avi Kivity1a811b62008-12-08 18:25:27 +02002043 return 1;
Avi Kivity399ec802008-11-19 13:58:46 +02002044#ifdef CONFIG_HAVE_KVM_IRQCHIP
2045 case KVM_CAP_IRQ_ROUTING:
Sheng Yang36463142009-03-16 16:33:43 +08002046 return KVM_MAX_IRQ_ROUTES;
Avi Kivity399ec802008-11-19 13:58:46 +02002047#endif
Avi Kivity1a811b62008-12-08 18:25:27 +02002048 default:
2049 break;
2050 }
2051 return kvm_dev_ioctl_check_extension(arg);
2052}
2053
Avi Kivityf17abe92007-02-21 19:28:04 +02002054static long kvm_dev_ioctl(struct file *filp,
2055 unsigned int ioctl, unsigned long arg)
2056{
Avi Kivity07c45a32007-03-07 13:05:38 +02002057 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002058
2059 switch (ioctl) {
2060 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002061 r = -EINVAL;
2062 if (arg)
2063 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002064 r = KVM_API_VERSION;
2065 break;
2066 case KVM_CREATE_VM:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002067 r = -EINVAL;
2068 if (arg)
2069 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002070 r = kvm_dev_ioctl_create_vm();
2071 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002072 case KVM_CHECK_EXTENSION:
Avi Kivity1a811b62008-12-08 18:25:27 +02002073 r = kvm_dev_ioctl_check_extension_generic(arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02002074 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02002075 case KVM_GET_VCPU_MMAP_SIZE:
2076 r = -EINVAL;
2077 if (arg)
2078 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02002079 r = PAGE_SIZE; /* struct kvm_run */
2080#ifdef CONFIG_X86
2081 r += PAGE_SIZE; /* pio data page */
2082#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002083#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2084 r += PAGE_SIZE; /* coalesced mmio ring page */
2085#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02002086 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002087 case KVM_TRACE_ENABLE:
2088 case KVM_TRACE_PAUSE:
2089 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03002090 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002091 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002092 default:
Carsten Otte043405e2007-10-10 17:16:19 +02002093 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002094 }
2095out:
2096 return r;
2097}
2098
Avi Kivity6aa8b732006-12-10 02:21:36 -08002099static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002100 .unlocked_ioctl = kvm_dev_ioctl,
2101 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002102 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002103};
2104
2105static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002106 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002107 "kvm",
2108 &kvm_chardev_ops,
2109};
2110
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002111static void hardware_enable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002112{
2113 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02002114 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03002115
Rusty Russell7f59f492008-12-07 21:25:45 +10302116 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002117 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02002118
Rusty Russell7f59f492008-12-07 21:25:45 +10302119 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02002120
2121 r = kvm_arch_hardware_enable(NULL);
2122
2123 if (r) {
2124 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
2125 atomic_inc(&hardware_enable_failed);
2126 printk(KERN_INFO "kvm: enabling virtualization on "
2127 "CPU%d failed\n", cpu);
2128 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03002129}
2130
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002131static void hardware_enable(void *junk)
2132{
2133 spin_lock(&kvm_lock);
2134 hardware_enable_nolock(junk);
2135 spin_unlock(&kvm_lock);
2136}
2137
2138static void hardware_disable_nolock(void *junk)
Avi Kivity1b6c0162007-05-24 13:03:52 +03002139{
2140 int cpu = raw_smp_processor_id();
2141
Rusty Russell7f59f492008-12-07 21:25:45 +10302142 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002143 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302144 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002145 kvm_arch_hardware_disable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03002146}
2147
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002148static void hardware_disable(void *junk)
2149{
2150 spin_lock(&kvm_lock);
2151 hardware_disable_nolock(junk);
2152 spin_unlock(&kvm_lock);
2153}
2154
Alexander Graf10474ae2009-09-15 11:37:46 +02002155static void hardware_disable_all_nolock(void)
2156{
2157 BUG_ON(!kvm_usage_count);
2158
2159 kvm_usage_count--;
2160 if (!kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002161 on_each_cpu(hardware_disable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002162}
2163
2164static void hardware_disable_all(void)
2165{
2166 spin_lock(&kvm_lock);
2167 hardware_disable_all_nolock();
2168 spin_unlock(&kvm_lock);
2169}
2170
2171static int hardware_enable_all(void)
2172{
2173 int r = 0;
2174
2175 spin_lock(&kvm_lock);
2176
2177 kvm_usage_count++;
2178 if (kvm_usage_count == 1) {
2179 atomic_set(&hardware_enable_failed, 0);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002180 on_each_cpu(hardware_enable_nolock, NULL, 1);
Alexander Graf10474ae2009-09-15 11:37:46 +02002181
2182 if (atomic_read(&hardware_enable_failed)) {
2183 hardware_disable_all_nolock();
2184 r = -EBUSY;
2185 }
2186 }
2187
2188 spin_unlock(&kvm_lock);
2189
2190 return r;
2191}
2192
Avi Kivity774c47f2007-02-12 00:54:47 -08002193static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2194 void *v)
2195{
2196 int cpu = (long)v;
2197
Alexander Graf10474ae2009-09-15 11:37:46 +02002198 if (!kvm_usage_count)
2199 return NOTIFY_OK;
2200
Avi Kivity1a6f4d72007-11-11 18:37:32 +02002201 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08002202 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03002203 case CPU_DYING:
Avi Kivity6ec8a852007-08-19 15:57:26 +03002204 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
2205 cpu);
2206 hardware_disable(NULL);
2207 break;
Zachary Amsdenda908f22010-08-19 22:07:27 -10002208 case CPU_STARTING:
Jeremy Katz43934a32007-02-19 14:37:46 +02002209 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
2210 cpu);
Zachary Amsdenda908f22010-08-19 22:07:27 -10002211 hardware_enable(NULL);
Avi Kivity774c47f2007-02-12 00:54:47 -08002212 break;
2213 }
2214 return NOTIFY_OK;
2215}
2216
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002217
Avi Kivityb7c41452010-12-02 17:52:50 +02002218asmlinkage void kvm_spurious_fault(void)
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002219{
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002220 /* Fault while not rebooting. We want the trace. */
2221 BUG();
2222}
Avi Kivityb7c41452010-12-02 17:52:50 +02002223EXPORT_SYMBOL_GPL(kvm_spurious_fault);
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002224
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002225static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04002226 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002227{
Sheng Yang8e1c1812009-04-29 11:09:04 +08002228 /*
2229 * Some (well, at least mine) BIOSes hang on reboot if
2230 * in vmx root mode.
2231 *
2232 * And Intel TXT required VMX off for all cpu when system shutdown.
2233 */
2234 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
2235 kvm_rebooting = true;
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002236 on_each_cpu(hardware_disable_nolock, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002237 return NOTIFY_OK;
2238}
2239
2240static struct notifier_block kvm_reboot_notifier = {
2241 .notifier_call = kvm_reboot,
2242 .priority = 0,
2243};
2244
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002245static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002246{
2247 int i;
2248
2249 for (i = 0; i < bus->dev_count; i++) {
2250 struct kvm_io_device *pos = bus->devs[i];
2251
2252 kvm_iodevice_destructor(pos);
2253 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002254 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002255}
2256
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002257/* kvm_io_bus_write - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002258int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002259 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002260{
2261 int i;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002262 struct kvm_io_bus *bus;
2263
2264 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002265 for (i = 0; i < bus->dev_count; i++)
2266 if (!kvm_iodevice_write(bus->devs[i], addr, len, val))
2267 return 0;
2268 return -EOPNOTSUPP;
2269}
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002270
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002271/* kvm_io_bus_read - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002272int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2273 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002274{
2275 int i;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002276 struct kvm_io_bus *bus;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002277
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002278 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002279 for (i = 0; i < bus->dev_count; i++)
2280 if (!kvm_iodevice_read(bus->devs[i], addr, len, val))
2281 return 0;
2282 return -EOPNOTSUPP;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002283}
2284
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002285/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002286int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx,
2287 struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002288{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002289 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04002290
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002291 bus = kvm->buses[bus_idx];
Gregory Haskins090b7af2009-07-07 17:08:44 -04002292 if (bus->dev_count > NR_IOBUS_DEVS-1)
2293 return -ENOSPC;
2294
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002295 new_bus = kzalloc(sizeof(struct kvm_io_bus), GFP_KERNEL);
2296 if (!new_bus)
2297 return -ENOMEM;
2298 memcpy(new_bus, bus, sizeof(struct kvm_io_bus));
2299 new_bus->devs[new_bus->dev_count++] = dev;
2300 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2301 synchronize_srcu_expedited(&kvm->srcu);
2302 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04002303
2304 return 0;
2305}
2306
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002307/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002308int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
2309 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04002310{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002311 int i, r;
2312 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002313
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002314 new_bus = kzalloc(sizeof(struct kvm_io_bus), GFP_KERNEL);
2315 if (!new_bus)
2316 return -ENOMEM;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002317
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002318 bus = kvm->buses[bus_idx];
2319 memcpy(new_bus, bus, sizeof(struct kvm_io_bus));
2320
2321 r = -ENOENT;
2322 for (i = 0; i < new_bus->dev_count; i++)
2323 if (new_bus->devs[i] == dev) {
2324 r = 0;
2325 new_bus->devs[i] = new_bus->devs[--new_bus->dev_count];
Gregory Haskins090b7af2009-07-07 17:08:44 -04002326 break;
2327 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002328
2329 if (r) {
2330 kfree(new_bus);
2331 return r;
2332 }
2333
2334 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2335 synchronize_srcu_expedited(&kvm->srcu);
2336 kfree(bus);
2337 return r;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002338}
2339
Avi Kivity774c47f2007-02-12 00:54:47 -08002340static struct notifier_block kvm_cpu_notifier = {
2341 .notifier_call = kvm_cpu_hotplug,
Avi Kivity774c47f2007-02-12 00:54:47 -08002342};
2343
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002344static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02002345{
2346 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02002347 struct kvm *kvm;
2348
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002349 *val = 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02002350 spin_lock(&kvm_lock);
2351 list_for_each_entry(kvm, &vm_list, vm_list)
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002352 *val += *(u32 *)((void *)kvm + offset);
Avi Kivityba1389b2007-11-18 16:24:12 +02002353 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002354 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02002355}
2356
2357DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
2358
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002359static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03002360{
2361 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002362 struct kvm *kvm;
2363 struct kvm_vcpu *vcpu;
2364 int i;
2365
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002366 *val = 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002367 spin_lock(&kvm_lock);
2368 list_for_each_entry(kvm, &vm_list, vm_list)
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002369 kvm_for_each_vcpu(i, vcpu, kvm)
2370 *val += *(u32 *)((void *)vcpu + offset);
2371
Avi Kivity1165f5f2007-04-19 17:27:43 +03002372 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002373 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002374}
2375
Avi Kivityba1389b2007-11-18 16:24:12 +02002376DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
2377
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002378static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02002379 [KVM_STAT_VCPU] = &vcpu_stat_fops,
2380 [KVM_STAT_VM] = &vm_stat_fops,
2381};
Avi Kivity1165f5f2007-04-19 17:27:43 +03002382
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08002383static void kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002384{
2385 struct kvm_stats_debugfs_item *p;
2386
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002387 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002388 for (p = debugfs_entries; p->name; ++p)
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002389 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
Avi Kivity1165f5f2007-04-19 17:27:43 +03002390 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02002391 stat_fops[p->kind]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002392}
2393
2394static void kvm_exit_debug(void)
2395{
2396 struct kvm_stats_debugfs_item *p;
2397
2398 for (p = debugfs_entries; p->name; ++p)
2399 debugfs_remove(p->dentry);
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002400 debugfs_remove(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002401}
2402
Avi Kivity59ae6c62007-02-12 00:54:48 -08002403static int kvm_suspend(struct sys_device *dev, pm_message_t state)
2404{
Alexander Graf10474ae2009-09-15 11:37:46 +02002405 if (kvm_usage_count)
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002406 hardware_disable_nolock(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002407 return 0;
2408}
2409
2410static int kvm_resume(struct sys_device *dev)
2411{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002412 if (kvm_usage_count) {
2413 WARN_ON(spin_is_locked(&kvm_lock));
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002414 hardware_enable_nolock(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002415 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08002416 return 0;
2417}
2418
2419static struct sysdev_class kvm_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002420 .name = "kvm",
Avi Kivity59ae6c62007-02-12 00:54:48 -08002421 .suspend = kvm_suspend,
2422 .resume = kvm_resume,
2423};
2424
2425static struct sys_device kvm_sysdev = {
2426 .id = 0,
2427 .cls = &kvm_sysdev_class,
2428};
2429
Izik Eiduscea7bb22007-10-17 19:17:48 +02002430struct page *bad_page;
Anthony Liguori35149e22008-04-02 14:46:56 -05002431pfn_t bad_pfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002432
Avi Kivity15ad7142007-07-11 18:17:21 +03002433static inline
2434struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
2435{
2436 return container_of(pn, struct kvm_vcpu, preempt_notifier);
2437}
2438
2439static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
2440{
2441 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2442
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002443 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002444}
2445
2446static void kvm_sched_out(struct preempt_notifier *pn,
2447 struct task_struct *next)
2448{
2449 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2450
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002451 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002452}
2453
Avi Kivity0ee75be2010-04-28 15:39:01 +03002454int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10002455 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002456{
2457 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002458 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002459
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002460 r = kvm_arch_init(opaque);
2461 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002462 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002463
2464 bad_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2465
2466 if (bad_page == NULL) {
2467 r = -ENOMEM;
2468 goto out;
2469 }
2470
Anthony Liguori35149e22008-04-02 14:46:56 -05002471 bad_pfn = page_to_pfn(bad_page);
2472
Huang Yingbf998152010-05-31 14:28:19 +08002473 hwpoison_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2474
2475 if (hwpoison_page == NULL) {
2476 r = -ENOMEM;
2477 goto out_free_0;
2478 }
2479
2480 hwpoison_pfn = page_to_pfn(hwpoison_page);
2481
Gleb Natapovedba23e2010-07-07 20:16:45 +03002482 fault_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2483
2484 if (fault_page == NULL) {
2485 r = -ENOMEM;
2486 goto out_free_0;
2487 }
2488
2489 fault_pfn = page_to_pfn(fault_page);
2490
Avi Kivity8437a612009-06-06 14:52:35 -07002491 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10302492 r = -ENOMEM;
2493 goto out_free_0;
2494 }
2495
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002496 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002497 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10302498 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002499
Yang, Sheng002c7f72007-07-31 14:23:01 +03002500 for_each_online_cpu(cpu) {
2501 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002502 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02002503 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03002504 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002505 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002506 }
2507
Avi Kivity774c47f2007-02-12 00:54:47 -08002508 r = register_cpu_notifier(&kvm_cpu_notifier);
2509 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002510 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002511 register_reboot_notifier(&kvm_reboot_notifier);
2512
Avi Kivity59ae6c62007-02-12 00:54:48 -08002513 r = sysdev_class_register(&kvm_sysdev_class);
2514 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002515 goto out_free_3;
Avi Kivity59ae6c62007-02-12 00:54:48 -08002516
2517 r = sysdev_register(&kvm_sysdev);
2518 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002519 goto out_free_4;
Avi Kivity59ae6c62007-02-12 00:54:48 -08002520
Rusty Russellc16f8622007-07-30 21:12:19 +10002521 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03002522 if (!vcpu_align)
2523 vcpu_align = __alignof__(struct kvm_vcpu);
2524 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08002525 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10002526 if (!kvm_vcpu_cache) {
2527 r = -ENOMEM;
Zhang Xiantaod23087842007-11-29 15:35:39 +08002528 goto out_free_5;
Rusty Russellc16f8622007-07-30 21:12:19 +10002529 }
2530
Gleb Natapovaf585b92010-10-14 11:22:46 +02002531 r = kvm_async_pf_init();
2532 if (r)
2533 goto out_free;
2534
Avi Kivity6aa8b732006-12-10 02:21:36 -08002535 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002536 kvm_vm_fops.owner = module;
2537 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002538
2539 r = misc_register(&kvm_dev);
2540 if (r) {
Mike Dayd77c26f2007-10-08 09:02:08 -04002541 printk(KERN_ERR "kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02002542 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002543 }
2544
Avi Kivity15ad7142007-07-11 18:17:21 +03002545 kvm_preempt_ops.sched_in = kvm_sched_in;
2546 kvm_preempt_ops.sched_out = kvm_sched_out;
2547
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002548 kvm_init_debug();
2549
Avi Kivityc7addb92007-09-16 18:58:32 +02002550 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002551
Gleb Natapovaf585b92010-10-14 11:22:46 +02002552out_unreg:
2553 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002554out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10002555 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002556out_free_5:
Avi Kivity59ae6c62007-02-12 00:54:48 -08002557 sysdev_unregister(&kvm_sysdev);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002558out_free_4:
Avi Kivity59ae6c62007-02-12 00:54:48 -08002559 sysdev_class_unregister(&kvm_sysdev_class);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002560out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002561 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08002562 unregister_cpu_notifier(&kvm_cpu_notifier);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002563out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08002564out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002565 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10302566out_free_0a:
2567 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002568out_free_0:
Gleb Natapovedba23e2010-07-07 20:16:45 +03002569 if (fault_page)
2570 __free_page(fault_page);
Huang Yingbf998152010-05-31 14:28:19 +08002571 if (hwpoison_page)
2572 __free_page(hwpoison_page);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002573 __free_page(bad_page);
Avi Kivityca45aaa2007-03-01 19:21:03 +02002574out:
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002575 kvm_arch_exit();
Zhang Xiantaod23087842007-11-29 15:35:39 +08002576out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002577 return r;
2578}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002579EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002580
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002581void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002582{
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002583 kvm_exit_debug();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002584 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10002585 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02002586 kvm_async_pf_deinit();
Avi Kivity59ae6c62007-02-12 00:54:48 -08002587 sysdev_unregister(&kvm_sysdev);
2588 sysdev_class_unregister(&kvm_sysdev_class);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002589 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002590 unregister_cpu_notifier(&kvm_cpu_notifier);
Takuya Yoshikawa75b71272010-11-16 17:37:41 +09002591 on_each_cpu(hardware_disable_nolock, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002592 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002593 kvm_arch_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10302594 free_cpumask_var(cpus_hardware_enabled);
Huang Yingbf998152010-05-31 14:28:19 +08002595 __free_page(hwpoison_page);
Izik Eiduscea7bb22007-10-17 19:17:48 +02002596 __free_page(bad_page);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002597}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002598EXPORT_SYMBOL_GPL(kvm_exit);