blob: 13cefe226e444521ea34224510b47b62cea00094 [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
Hannes Edere8ba5d32008-11-28 17:02:42 +010093static bool kvm_rebooting;
Avi Kivity4ecac3f2008-05-13 13:23:38 +030094
Marcelo Tosatti54dee992009-06-11 12:07:44 -030095static bool largepages_enabled = true;
96
Gleb Natapovfa7bff82010-07-07 20:16:44 +030097static struct page *hwpoison_page;
98static pfn_t hwpoison_pfn;
Huang Yingbf998152010-05-31 14:28:19 +080099
Gleb Natapovedba23e2010-07-07 20:16:45 +0300100static struct page *fault_page;
101static pfn_t fault_pfn;
102
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +0800103inline int kvm_is_mmio_pfn(pfn_t pfn)
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300104{
Joerg Roedelfc5659c2009-02-18 14:08:58 +0100105 if (pfn_valid(pfn)) {
106 struct page *page = compound_head(pfn_to_page(pfn));
107 return PageReserved(page);
108 }
Ben-Ami Yassourcbff90a2008-07-28 19:26:24 +0300109
110 return true;
111}
112
Avi Kivity6aa8b732006-12-10 02:21:36 -0800113/*
114 * Switches to specified vcpu, until a matching vcpu_put()
115 */
Carsten Otte313a3dc2007-10-11 19:16:52 +0200116void vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800117{
Avi Kivity15ad7142007-07-11 18:17:21 +0300118 int cpu;
119
Avi Kivitybccf2152007-02-21 18:04:26 +0200120 mutex_lock(&vcpu->mutex);
Avi Kivity15ad7142007-07-11 18:17:21 +0300121 cpu = get_cpu();
122 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200123 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300124 put_cpu();
Avi Kivitybccf2152007-02-21 18:04:26 +0200125}
126
Carsten Otte313a3dc2007-10-11 19:16:52 +0200127void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800128{
Avi Kivity15ad7142007-07-11 18:17:21 +0300129 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +0200130 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300131 preempt_notifier_unregister(&vcpu->preempt_notifier);
132 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800133 mutex_unlock(&vcpu->mutex);
134}
135
Avi Kivityd9e368d2007-06-07 19:18:30 +0300136static void ack_flush(void *_completed)
137{
Avi Kivityd9e368d2007-06-07 19:18:30 +0300138}
139
Rusty Russell49846892008-12-08 20:26:24 +1030140static bool make_all_cpus_request(struct kvm *kvm, unsigned int req)
Avi Kivityd9e368d2007-06-07 19:18:30 +0300141{
Avi Kivity597a5f52008-07-20 14:24:22 +0300142 int i, cpu, me;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030143 cpumask_var_t cpus;
144 bool called = true;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300145 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300146
Li Zefan79f55992009-06-15 14:58:26 +0800147 zalloc_cpumask_var(&cpus, GFP_ATOMIC);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030148
Avi Kivity70e335e2010-02-18 11:25:22 +0200149 raw_spin_lock(&kvm->requests_lock);
Jan Kiszkae601e3b2009-07-20 11:30:12 +0200150 me = smp_processor_id();
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300151 kvm_for_each_vcpu(i, vcpu, kvm) {
Avi Kivitya8eeb042010-05-10 12:34:53 +0300152 if (kvm_make_check_request(req, vcpu))
Avi Kivityd9e368d2007-06-07 19:18:30 +0300153 continue;
154 cpu = vcpu->cpu;
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030155 if (cpus != NULL && cpu != -1 && cpu != me)
156 cpumask_set_cpu(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300157 }
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030158 if (unlikely(cpus == NULL))
159 smp_call_function_many(cpu_online_mask, ack_flush, NULL, 1);
160 else if (!cpumask_empty(cpus))
161 smp_call_function_many(cpus, ack_flush, NULL, 1);
162 else
163 called = false;
Avi Kivity70e335e2010-02-18 11:25:22 +0200164 raw_spin_unlock(&kvm->requests_lock);
Rusty Russell6ef7a1b2008-12-08 20:28:04 +1030165 free_cpumask_var(cpus);
Rusty Russell49846892008-12-08 20:26:24 +1030166 return called;
167}
168
169void kvm_flush_remote_tlbs(struct kvm *kvm)
170{
171 if (make_all_cpus_request(kvm, KVM_REQ_TLB_FLUSH))
172 ++kvm->stat.remote_tlb_flush;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300173}
174
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500175void kvm_reload_remote_mmus(struct kvm *kvm)
176{
Rusty Russell49846892008-12-08 20:26:24 +1030177 make_all_cpus_request(kvm, KVM_REQ_MMU_RELOAD);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500178}
179
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000180int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
181{
182 struct page *page;
183 int r;
184
185 mutex_init(&vcpu->mutex);
186 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000187 vcpu->kvm = kvm;
188 vcpu->vcpu_id = id;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300189 init_waitqueue_head(&vcpu->wq);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200190 kvm_async_pf_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000191
192 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
193 if (!page) {
194 r = -ENOMEM;
195 goto fail;
196 }
197 vcpu->run = page_address(page);
198
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800199 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000200 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800201 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000202 return 0;
203
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000204fail_free_run:
205 free_page((unsigned long)vcpu->run);
206fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000207 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000208}
209EXPORT_SYMBOL_GPL(kvm_vcpu_init);
210
211void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
212{
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800213 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000214 free_page((unsigned long)vcpu->run);
215}
216EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
217
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200218#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
219static inline struct kvm *mmu_notifier_to_kvm(struct mmu_notifier *mn)
220{
221 return container_of(mn, struct kvm, mmu_notifier);
222}
223
224static void kvm_mmu_notifier_invalidate_page(struct mmu_notifier *mn,
225 struct mm_struct *mm,
226 unsigned long address)
227{
228 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200229 int need_tlb_flush, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200230
231 /*
232 * When ->invalidate_page runs, the linux pte has been zapped
233 * already but the page is still allocated until
234 * ->invalidate_page returns. So if we increase the sequence
235 * here the kvm page fault will notice if the spte can't be
236 * established because the page is going to be freed. If
237 * instead the kvm page fault establishes the spte before
238 * ->invalidate_page runs, kvm_unmap_hva will release it
239 * before returning.
240 *
241 * The sequence increase only need to be seen at spin_unlock
242 * time, and not at spin_lock time.
243 *
244 * Increasing the sequence after the spin_unlock would be
245 * unsafe because the kvm page fault could then establish the
246 * pte after kvm_unmap_hva returned, without noticing the page
247 * is going to be freed.
248 */
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200249 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200250 spin_lock(&kvm->mmu_lock);
251 kvm->mmu_notifier_seq++;
252 need_tlb_flush = kvm_unmap_hva(kvm, address);
253 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200254 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200255
256 /* we've to flush the tlb before the pages can be freed */
257 if (need_tlb_flush)
258 kvm_flush_remote_tlbs(kvm);
259
260}
261
Izik Eidus3da0dd42009-09-23 21:47:18 +0300262static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn,
263 struct mm_struct *mm,
264 unsigned long address,
265 pte_t pte)
266{
267 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200268 int idx;
Izik Eidus3da0dd42009-09-23 21:47:18 +0300269
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200270 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300271 spin_lock(&kvm->mmu_lock);
272 kvm->mmu_notifier_seq++;
273 kvm_set_spte_hva(kvm, address, pte);
274 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200275 srcu_read_unlock(&kvm->srcu, idx);
Izik Eidus3da0dd42009-09-23 21:47:18 +0300276}
277
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200278static void kvm_mmu_notifier_invalidate_range_start(struct mmu_notifier *mn,
279 struct mm_struct *mm,
280 unsigned long start,
281 unsigned long end)
282{
283 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200284 int need_tlb_flush = 0, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200285
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200286 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200287 spin_lock(&kvm->mmu_lock);
288 /*
289 * The count increase must become visible at unlock time as no
290 * spte can be established without taking the mmu_lock and
291 * count is also read inside the mmu_lock critical section.
292 */
293 kvm->mmu_notifier_count++;
294 for (; start < end; start += PAGE_SIZE)
295 need_tlb_flush |= kvm_unmap_hva(kvm, start);
296 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200297 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200298
299 /* we've to flush the tlb before the pages can be freed */
300 if (need_tlb_flush)
301 kvm_flush_remote_tlbs(kvm);
302}
303
304static void kvm_mmu_notifier_invalidate_range_end(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);
310
311 spin_lock(&kvm->mmu_lock);
312 /*
313 * This sequence increase will notify the kvm page fault that
314 * the page that is going to be mapped in the spte could have
315 * been freed.
316 */
317 kvm->mmu_notifier_seq++;
318 /*
319 * The above sequence increase must be visible before the
320 * below count decrease but both values are read by the kvm
321 * page fault under mmu_lock spinlock so we don't need to add
322 * a smb_wmb() here in between the two.
323 */
324 kvm->mmu_notifier_count--;
325 spin_unlock(&kvm->mmu_lock);
326
327 BUG_ON(kvm->mmu_notifier_count < 0);
328}
329
330static int kvm_mmu_notifier_clear_flush_young(struct mmu_notifier *mn,
331 struct mm_struct *mm,
332 unsigned long address)
333{
334 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200335 int young, idx;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200336
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200337 idx = srcu_read_lock(&kvm->srcu);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200338 spin_lock(&kvm->mmu_lock);
339 young = kvm_age_hva(kvm, address);
340 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200341 srcu_read_unlock(&kvm->srcu, idx);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200342
343 if (young)
344 kvm_flush_remote_tlbs(kvm);
345
346 return young;
347}
348
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100349static void kvm_mmu_notifier_release(struct mmu_notifier *mn,
350 struct mm_struct *mm)
351{
352 struct kvm *kvm = mmu_notifier_to_kvm(mn);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800353 int idx;
354
355 idx = srcu_read_lock(&kvm->srcu);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100356 kvm_arch_flush_shadow(kvm);
Lai Jiangshaneda2bed2010-04-20 14:29:29 +0800357 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100358}
359
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200360static const struct mmu_notifier_ops kvm_mmu_notifier_ops = {
361 .invalidate_page = kvm_mmu_notifier_invalidate_page,
362 .invalidate_range_start = kvm_mmu_notifier_invalidate_range_start,
363 .invalidate_range_end = kvm_mmu_notifier_invalidate_range_end,
364 .clear_flush_young = kvm_mmu_notifier_clear_flush_young,
Izik Eidus3da0dd42009-09-23 21:47:18 +0300365 .change_pte = kvm_mmu_notifier_change_pte,
Marcelo Tosatti85db06e2008-12-10 21:23:26 +0100366 .release = kvm_mmu_notifier_release,
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200367};
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200368
369static int kvm_init_mmu_notifier(struct kvm *kvm)
370{
371 kvm->mmu_notifier.ops = &kvm_mmu_notifier_ops;
372 return mmu_notifier_register(&kvm->mmu_notifier, current->mm);
373}
374
375#else /* !(CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER) */
376
377static int kvm_init_mmu_notifier(struct kvm *kvm)
378{
379 return 0;
380}
381
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200382#endif /* CONFIG_MMU_NOTIFIER && KVM_ARCH_WANT_MMU_NOTIFIER */
383
Avi Kivityf17abe92007-02-21 19:28:04 +0200384static struct kvm *kvm_create_vm(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800385{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200386 int r = 0, i;
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800387 struct kvm *kvm = kvm_arch_create_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800388
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800389 if (IS_ERR(kvm))
390 goto out;
Alexander Graf10474ae2009-09-15 11:37:46 +0200391
392 r = hardware_enable_all();
393 if (r)
394 goto out_err_nodisable;
395
Avi Kivity75858a82009-01-04 17:10:50 +0200396#ifdef CONFIG_HAVE_KVM_IRQCHIP
397 INIT_HLIST_HEAD(&kvm->mask_notifier_list);
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300398 INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list);
Avi Kivity75858a82009-01-04 17:10:50 +0200399#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800400
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200401 r = -ENOMEM;
402 kvm->memslots = kzalloc(sizeof(struct kvm_memslots), GFP_KERNEL);
403 if (!kvm->memslots)
404 goto out_err;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200405 if (init_srcu_struct(&kvm->srcu))
406 goto out_err;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200407 for (i = 0; i < KVM_NR_BUSES; i++) {
408 kvm->buses[i] = kzalloc(sizeof(struct kvm_io_bus),
409 GFP_KERNEL);
410 if (!kvm->buses[i]) {
411 cleanup_srcu_struct(&kvm->srcu);
412 goto out_err;
413 }
414 }
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200415
Avi Kivity4c07b0a2009-12-20 14:54:04 +0200416 r = kvm_init_mmu_notifier(kvm);
Avi Kivity283d0c62009-12-20 14:25:19 +0200417 if (r) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200418 cleanup_srcu_struct(&kvm->srcu);
Avi Kivity283d0c62009-12-20 14:25:19 +0200419 goto out_err;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200420 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200421
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200422 kvm->mm = current->mm;
423 atomic_inc(&kvm->mm->mm_count);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500424 spin_lock_init(&kvm->mmu_lock);
Avi Kivity70e335e2010-02-18 11:25:22 +0200425 raw_spin_lock_init(&kvm->requests_lock);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400426 kvm_eventfd_init(kvm);
Shaohua Li11ec2802007-07-23 14:51:37 +0800427 mutex_init(&kvm->lock);
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300428 mutex_init(&kvm->irq_lock);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200429 mutex_init(&kvm->slots_lock);
Izik Eidusd39f13b2008-03-30 16:01:25 +0300430 atomic_set(&kvm->users_count, 1);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000431 spin_lock(&kvm_lock);
432 list_add(&kvm->vm_list, &vm_list);
433 spin_unlock(&kvm_lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800434out:
Avi Kivityf17abe92007-02-21 19:28:04 +0200435 return kvm;
Alexander Graf10474ae2009-09-15 11:37:46 +0200436
437out_err:
438 hardware_disable_all();
439out_err_nodisable:
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200440 for (i = 0; i < KVM_NR_BUSES; i++)
441 kfree(kvm->buses[i]);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200442 kfree(kvm->memslots);
Alexander Graf10474ae2009-09-15 11:37:46 +0200443 kfree(kvm);
444 return ERR_PTR(r);
Avi Kivityf17abe92007-02-21 19:28:04 +0200445}
446
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900447static void kvm_destroy_dirty_bitmap(struct kvm_memory_slot *memslot)
448{
449 if (!memslot->dirty_bitmap)
450 return;
451
Takuya Yoshikawa6f9e5c172010-11-01 14:36:09 +0900452 if (2 * kvm_dirty_bitmap_bytes(memslot) > PAGE_SIZE)
453 vfree(memslot->dirty_bitmap_head);
454 else
455 kfree(memslot->dirty_bitmap_head);
456
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900457 memslot->dirty_bitmap = NULL;
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900458 memslot->dirty_bitmap_head = NULL;
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900459}
460
Avi Kivity6aa8b732006-12-10 02:21:36 -0800461/*
462 * Free any memory in @free but not in @dont.
463 */
464static void kvm_free_physmem_slot(struct kvm_memory_slot *free,
465 struct kvm_memory_slot *dont)
466{
Joerg Roedelec04b262009-06-19 15:16:23 +0200467 int i;
468
Izik Eidus290fc382007-09-27 14:11:22 +0200469 if (!dont || free->rmap != dont->rmap)
470 vfree(free->rmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800471
472 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900473 kvm_destroy_dirty_bitmap(free);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800474
Joerg Roedelec04b262009-06-19 15:16:23 +0200475
476 for (i = 0; i < KVM_NR_PAGE_SIZES - 1; ++i) {
477 if (!dont || free->lpage_info[i] != dont->lpage_info[i]) {
478 vfree(free->lpage_info[i]);
479 free->lpage_info[i] = NULL;
480 }
481 }
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300482
Avi Kivity6aa8b732006-12-10 02:21:36 -0800483 free->npages = 0;
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500484 free->rmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800485}
486
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800487void kvm_free_physmem(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800488{
489 int i;
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200490 struct kvm_memslots *slots = kvm->memslots;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800491
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200492 for (i = 0; i < slots->nmemslots; ++i)
493 kvm_free_physmem_slot(&slots->memslots[i], NULL);
494
495 kfree(kvm->memslots);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800496}
497
Avi Kivityf17abe92007-02-21 19:28:04 +0200498static void kvm_destroy_vm(struct kvm *kvm)
499{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200500 int i;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200501 struct mm_struct *mm = kvm->mm;
502
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800503 kvm_arch_sync_events(kvm);
Avi Kivity133de902007-02-12 00:54:44 -0800504 spin_lock(&kvm_lock);
505 list_del(&kvm->vm_list);
506 spin_unlock(&kvm_lock);
Avi Kivity399ec802008-11-19 13:58:46 +0200507 kvm_free_irq_routing(kvm);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200508 for (i = 0; i < KVM_NR_BUSES; i++)
509 kvm_io_bus_destroy(kvm->buses[i]);
Avi Kivity980da6c2009-12-20 15:13:43 +0200510 kvm_coalesced_mmio_free(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200511#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
512 mmu_notifier_unregister(&kvm->mmu_notifier, kvm->mm);
Gleb Natapovf00be0c2009-03-19 12:20:36 +0200513#else
514 kvm_arch_flush_shadow(kvm);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200515#endif
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800516 kvm_arch_destroy_vm(kvm);
Alexander Graf10474ae2009-09-15 11:37:46 +0200517 hardware_disable_all();
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200518 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200519}
520
Izik Eidusd39f13b2008-03-30 16:01:25 +0300521void kvm_get_kvm(struct kvm *kvm)
522{
523 atomic_inc(&kvm->users_count);
524}
525EXPORT_SYMBOL_GPL(kvm_get_kvm);
526
527void kvm_put_kvm(struct kvm *kvm)
528{
529 if (atomic_dec_and_test(&kvm->users_count))
530 kvm_destroy_vm(kvm);
531}
532EXPORT_SYMBOL_GPL(kvm_put_kvm);
533
534
Avi Kivityf17abe92007-02-21 19:28:04 +0200535static int kvm_vm_release(struct inode *inode, struct file *filp)
536{
537 struct kvm *kvm = filp->private_data;
538
Gregory Haskins721eecb2009-05-20 10:30:49 -0400539 kvm_irqfd_release(kvm);
540
Izik Eidusd39f13b2008-03-30 16:01:25 +0300541 kvm_put_kvm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800542 return 0;
543}
544
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900545/*
546 * Allocation size is twice as large as the actual dirty bitmap size.
547 * This makes it possible to do double buffering: see x86's
548 * kvm_vm_ioctl_get_dirty_log().
549 */
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900550static int kvm_create_dirty_bitmap(struct kvm_memory_slot *memslot)
551{
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900552 unsigned long dirty_bytes = 2 * kvm_dirty_bitmap_bytes(memslot);
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900553
Takuya Yoshikawa6f9e5c172010-11-01 14:36:09 +0900554 if (dirty_bytes > PAGE_SIZE)
555 memslot->dirty_bitmap = vzalloc(dirty_bytes);
556 else
557 memslot->dirty_bitmap = kzalloc(dirty_bytes, GFP_KERNEL);
558
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900559 if (!memslot->dirty_bitmap)
560 return -ENOMEM;
561
Takuya Yoshikawa515a0122010-10-27 18:23:54 +0900562 memslot->dirty_bitmap_head = memslot->dirty_bitmap;
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900563 return 0;
564}
565
Avi Kivity6aa8b732006-12-10 02:21:36 -0800566/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800567 * Allocate some memory and give it an address in the guest physical address
568 * space.
569 *
570 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800571 *
Marcelo Tosatti10589a42007-12-20 19:18:22 -0500572 * Must be called holding mmap_sem for write.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800573 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800574int __kvm_set_memory_region(struct kvm *kvm,
575 struct kvm_userspace_memory_region *mem,
576 int user_alloc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800577{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200578 int r, flush_shadow = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800579 gfn_t base_gfn;
Heiko Carstens28bcb112009-09-03 17:35:35 +0200580 unsigned long npages;
581 unsigned long i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800582 struct kvm_memory_slot *memslot;
583 struct kvm_memory_slot old, new;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200584 struct kvm_memslots *slots, *old_memslots;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800585
586 r = -EINVAL;
587 /* General sanity checks */
588 if (mem->memory_size & (PAGE_SIZE - 1))
589 goto out;
590 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
591 goto out;
Sheng Yange7cacd42008-11-11 15:30:40 +0800592 if (user_alloc && (mem->userspace_addr & (PAGE_SIZE - 1)))
Hollis Blanchard78749802008-11-07 13:32:12 -0600593 goto out;
Izik Eiduse0d62c72007-10-24 23:57:46 +0200594 if (mem->slot >= KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800595 goto out;
596 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
597 goto out;
598
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200599 memslot = &kvm->memslots->memslots[mem->slot];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800600 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
601 npages = mem->memory_size >> PAGE_SHIFT;
602
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900603 r = -EINVAL;
604 if (npages > KVM_MEM_MAX_NR_PAGES)
605 goto out;
606
Avi Kivity6aa8b732006-12-10 02:21:36 -0800607 if (!npages)
608 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
609
Avi Kivity6aa8b732006-12-10 02:21:36 -0800610 new = old = *memslot;
611
Avi Kivitye36d96f2010-06-21 10:56:36 +0300612 new.id = mem->slot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800613 new.base_gfn = base_gfn;
614 new.npages = npages;
615 new.flags = mem->flags;
616
617 /* Disallow changing a memory slot's size. */
618 r = -EINVAL;
619 if (npages && old.npages && npages != old.npages)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800620 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800621
622 /* Check for overlaps */
623 r = -EEXIST;
624 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200625 struct kvm_memory_slot *s = &kvm->memslots->memslots[i];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800626
Jan Kiszka4cd481f2009-04-13 11:59:32 +0200627 if (s == memslot || !s->npages)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800628 continue;
629 if (!((base_gfn + npages <= s->base_gfn) ||
630 (base_gfn >= s->base_gfn + s->npages)))
Sheng Yangf78e0e22007-10-29 09:40:42 +0800631 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800632 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800633
Avi Kivity6aa8b732006-12-10 02:21:36 -0800634 /* Free page dirty bitmap if unneeded */
635 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000636 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800637
638 r = -ENOMEM;
639
640 /* Allocate if a slot is being created */
Carsten Otteeff01142008-06-27 15:05:31 +0200641#ifndef CONFIG_S390
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500642 if (npages && !new.rmap) {
Takuya Yoshikawa26535032010-11-02 10:49:34 +0900643 new.rmap = vzalloc(npages * sizeof(*new.rmap));
Izik Eidus290fc382007-09-27 14:11:22 +0200644
645 if (!new.rmap)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800646 goto out_free;
Izik Eidus290fc382007-09-27 14:11:22 +0200647
Izik Eidus80b14b52007-10-25 11:54:04 +0200648 new.user_alloc = user_alloc;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200649 new.userspace_addr = mem->userspace_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800650 }
Joerg Roedelec04b262009-06-19 15:16:23 +0200651 if (!npages)
652 goto skip_lpage;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300653
Joerg Roedelec04b262009-06-19 15:16:23 +0200654 for (i = 0; i < KVM_NR_PAGE_SIZES - 1; ++i) {
Heiko Carstens28bcb112009-09-03 17:35:35 +0200655 unsigned long ugfn;
656 unsigned long j;
657 int lpages;
Joerg Roedelec04b262009-06-19 15:16:23 +0200658 int level = i + 2;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300659
Joerg Roedelec04b262009-06-19 15:16:23 +0200660 /* Avoid unused variable warning if no large pages */
661 (void)level;
662
663 if (new.lpage_info[i])
664 continue;
665
Joerg Roedel82855412010-07-01 16:00:11 +0200666 lpages = 1 + ((base_gfn + npages - 1)
667 >> KVM_HPAGE_GFN_SHIFT(level));
668 lpages -= base_gfn >> KVM_HPAGE_GFN_SHIFT(level);
Joerg Roedelec04b262009-06-19 15:16:23 +0200669
Takuya Yoshikawa26535032010-11-02 10:49:34 +0900670 new.lpage_info[i] = vzalloc(lpages * sizeof(*new.lpage_info[i]));
Joerg Roedelec04b262009-06-19 15:16:23 +0200671
672 if (!new.lpage_info[i])
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300673 goto out_free;
674
Joerg Roedel82855412010-07-01 16:00:11 +0200675 if (base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1))
Joerg Roedelec04b262009-06-19 15:16:23 +0200676 new.lpage_info[i][0].write_count = 1;
Joerg Roedel82855412010-07-01 16:00:11 +0200677 if ((base_gfn+npages) & (KVM_PAGES_PER_HPAGE(level) - 1))
Joerg Roedelec04b262009-06-19 15:16:23 +0200678 new.lpage_info[i][lpages - 1].write_count = 1;
Avi Kivityac045272009-06-08 15:52:39 +0300679 ugfn = new.userspace_addr >> PAGE_SHIFT;
680 /*
681 * If the gfn and userspace address are not aligned wrt each
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300682 * other, or if explicitly asked to, disable large page
683 * support for this slot
Avi Kivityac045272009-06-08 15:52:39 +0300684 */
Joerg Roedelec04b262009-06-19 15:16:23 +0200685 if ((base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) ||
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300686 !largepages_enabled)
Joerg Roedelec04b262009-06-19 15:16:23 +0200687 for (j = 0; j < lpages; ++j)
688 new.lpage_info[i][j].write_count = 1;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300689 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800690
Joerg Roedelec04b262009-06-19 15:16:23 +0200691skip_lpage:
692
Avi Kivity6aa8b732006-12-10 02:21:36 -0800693 /* Allocate page dirty bitmap if needed */
694 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
Takuya Yoshikawaa36a57b12010-10-27 18:22:19 +0900695 if (kvm_create_dirty_bitmap(&new) < 0)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800696 goto out_free;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200697 /* destroy any largepage mappings for dirty tracking */
Izik Eiduse2445842009-06-10 19:23:24 +0300698 if (old.npages)
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200699 flush_shadow = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800700 }
Christian Borntraeger3eea8432009-06-23 17:24:06 +0200701#else /* not defined CONFIG_S390 */
702 new.user_alloc = user_alloc;
703 if (user_alloc)
704 new.userspace_addr = mem->userspace_addr;
Carsten Otteeff01142008-06-27 15:05:31 +0200705#endif /* not defined CONFIG_S390 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800706
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200707 if (!npages) {
708 r = -ENOMEM;
709 slots = kzalloc(sizeof(struct kvm_memslots), GFP_KERNEL);
710 if (!slots)
711 goto out_free;
712 memcpy(slots, kvm->memslots, sizeof(struct kvm_memslots));
713 if (mem->slot >= slots->nmemslots)
714 slots->nmemslots = mem->slot + 1;
Gleb Natapov49c77542010-10-18 15:22:23 +0200715 slots->generation++;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200716 slots->memslots[mem->slot].flags |= KVM_MEMSLOT_INVALID;
717
718 old_memslots = kvm->memslots;
719 rcu_assign_pointer(kvm->memslots, slots);
720 synchronize_srcu_expedited(&kvm->srcu);
721 /* From this point no new shadow pages pointing to a deleted
722 * memslot will be created.
723 *
724 * validation of sp->gfn happens in:
725 * - gfn_to_hva (kvm_read_guest, gfn_to_pfn)
726 * - kvm_is_visible_gfn (mmu_check_roots)
727 */
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300728 kvm_arch_flush_shadow(kvm);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200729 kfree(old_memslots);
730 }
Marcelo Tosatti34d4cb82008-07-10 20:49:31 -0300731
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200732 r = kvm_arch_prepare_memory_region(kvm, &new, old, mem, user_alloc);
733 if (r)
734 goto out_free;
735
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200736 /* map the pages in iommu page table */
737 if (npages) {
738 r = kvm_iommu_map_pages(kvm, &new);
739 if (r)
740 goto out_free;
741 }
Andrea Arcangeli604b38a2008-07-25 16:32:03 +0200742
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200743 r = -ENOMEM;
744 slots = kzalloc(sizeof(struct kvm_memslots), GFP_KERNEL);
745 if (!slots)
746 goto out_free;
747 memcpy(slots, kvm->memslots, sizeof(struct kvm_memslots));
748 if (mem->slot >= slots->nmemslots)
749 slots->nmemslots = mem->slot + 1;
Gleb Natapov49c77542010-10-18 15:22:23 +0200750 slots->generation++;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200751
752 /* actual memory is freed via old in kvm_free_physmem_slot below */
753 if (!npages) {
754 new.rmap = NULL;
755 new.dirty_bitmap = NULL;
756 for (i = 0; i < KVM_NR_PAGE_SIZES - 1; ++i)
757 new.lpage_info[i] = NULL;
758 }
759
760 slots->memslots[mem->slot] = new;
761 old_memslots = kvm->memslots;
762 rcu_assign_pointer(kvm->memslots, slots);
763 synchronize_srcu_expedited(&kvm->srcu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800764
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200765 kvm_arch_commit_memory_region(kvm, mem, old, user_alloc);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800766
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200767 kvm_free_physmem_slot(&old, &new);
768 kfree(old_memslots);
769
770 if (flush_shadow)
771 kvm_arch_flush_shadow(kvm);
772
Avi Kivity6aa8b732006-12-10 02:21:36 -0800773 return 0;
774
Sheng Yangf78e0e22007-10-29 09:40:42 +0800775out_free:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800776 kvm_free_physmem_slot(&new, &old);
777out:
778 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +0200779
780}
Sheng Yangf78e0e22007-10-29 09:40:42 +0800781EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
782
783int kvm_set_memory_region(struct kvm *kvm,
784 struct kvm_userspace_memory_region *mem,
785 int user_alloc)
786{
787 int r;
788
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200789 mutex_lock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800790 r = __kvm_set_memory_region(kvm, mem, user_alloc);
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200791 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800792 return r;
793}
Izik Eidus210c7c42007-10-24 23:52:57 +0200794EXPORT_SYMBOL_GPL(kvm_set_memory_region);
795
Carsten Otte1fe779f2007-10-29 16:08:35 +0100796int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
797 struct
798 kvm_userspace_memory_region *mem,
799 int user_alloc)
Izik Eidus210c7c42007-10-24 23:52:57 +0200800{
Izik Eiduse0d62c72007-10-24 23:57:46 +0200801 if (mem->slot >= KVM_MEMORY_SLOTS)
802 return -EINVAL;
Izik Eidus210c7c42007-10-24 23:52:57 +0200803 return kvm_set_memory_region(kvm, mem, user_alloc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800804}
805
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800806int kvm_get_dirty_log(struct kvm *kvm,
807 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800808{
809 struct kvm_memory_slot *memslot;
810 int r, i;
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900811 unsigned long n;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800812 unsigned long any = 0;
813
Avi Kivity6aa8b732006-12-10 02:21:36 -0800814 r = -EINVAL;
815 if (log->slot >= KVM_MEMORY_SLOTS)
816 goto out;
817
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200818 memslot = &kvm->memslots->memslots[log->slot];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800819 r = -ENOENT;
820 if (!memslot->dirty_bitmap)
821 goto out;
822
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900823 n = kvm_dirty_bitmap_bytes(memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800824
Uri Lublincd1a4a92007-02-22 16:43:09 +0200825 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800826 any = memslot->dirty_bitmap[i];
827
828 r = -EFAULT;
829 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
830 goto out;
831
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800832 if (any)
833 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800834
835 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800836out:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800837 return r;
838}
839
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300840void kvm_disable_largepages(void)
841{
842 largepages_enabled = false;
843}
844EXPORT_SYMBOL_GPL(kvm_disable_largepages);
845
Izik Eiduscea7bb22007-10-17 19:17:48 +0200846int is_error_page(struct page *page)
847{
Gleb Natapovedba23e2010-07-07 20:16:45 +0300848 return page == bad_page || page == hwpoison_page || page == fault_page;
Izik Eiduscea7bb22007-10-17 19:17:48 +0200849}
850EXPORT_SYMBOL_GPL(is_error_page);
851
Anthony Liguori35149e22008-04-02 14:46:56 -0500852int is_error_pfn(pfn_t pfn)
853{
Gleb Natapovedba23e2010-07-07 20:16:45 +0300854 return pfn == bad_pfn || pfn == hwpoison_pfn || pfn == fault_pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -0500855}
856EXPORT_SYMBOL_GPL(is_error_pfn);
857
Huang Yingbf998152010-05-31 14:28:19 +0800858int is_hwpoison_pfn(pfn_t pfn)
859{
860 return pfn == hwpoison_pfn;
861}
862EXPORT_SYMBOL_GPL(is_hwpoison_pfn);
863
Gleb Natapovedba23e2010-07-07 20:16:45 +0300864int is_fault_pfn(pfn_t pfn)
865{
866 return pfn == fault_pfn;
867}
868EXPORT_SYMBOL_GPL(is_fault_pfn);
869
Izik Eidusf9d46eb2007-11-11 22:02:22 +0200870static inline unsigned long bad_hva(void)
871{
872 return PAGE_OFFSET;
873}
874
875int kvm_is_error_hva(unsigned long addr)
876{
877 return addr == bad_hva();
878}
879EXPORT_SYMBOL_GPL(kvm_is_error_hva);
880
Gleb Natapov49c77542010-10-18 15:22:23 +0200881static struct kvm_memory_slot *__gfn_to_memslot(struct kvm_memslots *slots,
882 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800883{
884 int i;
885
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200886 for (i = 0; i < slots->nmemslots; ++i) {
887 struct kvm_memory_slot *memslot = &slots->memslots[i];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800888
889 if (gfn >= memslot->base_gfn
890 && gfn < memslot->base_gfn + memslot->npages)
891 return memslot;
892 }
Al Viro8b6d44c2007-02-09 16:38:40 +0000893 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800894}
Gleb Natapov49c77542010-10-18 15:22:23 +0200895
896struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
897{
898 return __gfn_to_memslot(kvm_memslots(kvm), gfn);
899}
Avi Kivitya1f4d392010-06-21 11:44:20 +0300900EXPORT_SYMBOL_GPL(gfn_to_memslot);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800901
Izik Eiduse0d62c72007-10-24 23:57:46 +0200902int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
903{
904 int i;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800905 struct kvm_memslots *slots = kvm_memslots(kvm);
Izik Eiduse0d62c72007-10-24 23:57:46 +0200906
Izik Eiduse0d62c72007-10-24 23:57:46 +0200907 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200908 struct kvm_memory_slot *memslot = &slots->memslots[i];
Izik Eiduse0d62c72007-10-24 23:57:46 +0200909
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200910 if (memslot->flags & KVM_MEMSLOT_INVALID)
911 continue;
912
Izik Eiduse0d62c72007-10-24 23:57:46 +0200913 if (gfn >= memslot->base_gfn
914 && gfn < memslot->base_gfn + memslot->npages)
915 return 1;
916 }
917 return 0;
918}
919EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
920
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100921unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn)
922{
923 struct vm_area_struct *vma;
924 unsigned long addr, size;
925
926 size = PAGE_SIZE;
927
928 addr = gfn_to_hva(kvm, gfn);
929 if (kvm_is_error_hva(addr))
930 return PAGE_SIZE;
931
932 down_read(&current->mm->mmap_sem);
933 vma = find_vma(current->mm, addr);
934 if (!vma)
935 goto out;
936
937 size = vma_kernel_pagesize(vma);
938
939out:
940 up_read(&current->mm->mmap_sem);
941
942 return size;
943}
944
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200945int memslot_id(struct kvm *kvm, gfn_t gfn)
946{
947 int i;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800948 struct kvm_memslots *slots = kvm_memslots(kvm);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200949 struct kvm_memory_slot *memslot = NULL;
950
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200951 for (i = 0; i < slots->nmemslots; ++i) {
952 memslot = &slots->memslots[i];
953
954 if (gfn >= memslot->base_gfn
955 && gfn < memslot->base_gfn + memslot->npages)
956 break;
957 }
958
959 return memslot - slots->memslots;
960}
961
Gleb Natapov49c77542010-10-18 15:22:23 +0200962static unsigned long gfn_to_hva_many(struct kvm_memory_slot *slot, gfn_t gfn,
Xiao Guangrong48987782010-08-22 19:11:43 +0800963 gfn_t *nr_pages)
Izik Eidus539cb662007-11-11 22:05:04 +0200964{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200965 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
Izik Eidus539cb662007-11-11 22:05:04 +0200966 return bad_hva();
Xiao Guangrong48987782010-08-22 19:11:43 +0800967
968 if (nr_pages)
969 *nr_pages = slot->npages - (gfn - slot->base_gfn);
970
Takuya Yoshikawaf5c98032010-02-25 11:33:19 +0900971 return gfn_to_hva_memslot(slot, gfn);
Izik Eidus539cb662007-11-11 22:05:04 +0200972}
Xiao Guangrong48987782010-08-22 19:11:43 +0800973
974unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
975{
Gleb Natapov49c77542010-10-18 15:22:23 +0200976 return gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, NULL);
Xiao Guangrong48987782010-08-22 19:11:43 +0800977}
Sheng Yang0d150292008-04-25 21:44:50 +0800978EXPORT_SYMBOL_GPL(gfn_to_hva);
Izik Eidus539cb662007-11-11 22:05:04 +0200979
Gleb Natapov80300892010-10-19 18:13:41 +0200980static pfn_t get_fault_pfn(void)
981{
982 get_page(fault_page);
983 return fault_pfn;
984}
985
Gleb Natapovaf585b92010-10-14 11:22:46 +0200986static pfn_t hva_to_pfn(struct kvm *kvm, unsigned long addr, bool atomic,
Marcelo Tosatti612819c2010-10-22 14:18:18 -0200987 bool *async, bool write_fault, bool *writable)
Avi Kivity954bbbc22007-03-30 14:02:32 +0300988{
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500989 struct page *page[1];
Gleb Natapovaf585b92010-10-14 11:22:46 +0200990 int npages = 0;
Anthony Liguori2e2e3732008-04-30 15:37:07 -0500991 pfn_t pfn;
Avi Kivity954bbbc22007-03-30 14:02:32 +0300992
Gleb Natapovaf585b92010-10-14 11:22:46 +0200993 /* we can do it either atomically or asynchronously, not both */
994 BUG_ON(atomic && async);
995
Marcelo Tosatti612819c2010-10-22 14:18:18 -0200996 BUG_ON(!write_fault && !writable);
997
998 if (writable)
999 *writable = true;
1000
Gleb Natapovaf585b92010-10-14 11:22:46 +02001001 if (atomic || async)
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001002 npages = __get_user_pages_fast(addr, 1, 1, page);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001003
1004 if (unlikely(npages != 1) && !atomic) {
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001005 might_sleep();
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001006
1007 if (writable)
1008 *writable = write_fault;
1009
1010 npages = get_user_pages_fast(addr, 1, write_fault, page);
1011
1012 /* map read fault as writable if possible */
1013 if (unlikely(!write_fault) && npages == 1) {
1014 struct page *wpage[1];
1015
1016 npages = __get_user_pages_fast(addr, 1, 1, wpage);
1017 if (npages == 1) {
1018 *writable = true;
1019 put_page(page[0]);
1020 page[0] = wpage[0];
1021 }
1022 npages = 1;
1023 }
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001024 }
Izik Eidus539cb662007-11-11 22:05:04 +02001025
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001026 if (unlikely(npages != 1)) {
1027 struct vm_area_struct *vma;
Anthony Liguori8d4e1282007-10-18 09:59:34 -05001028
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001029 if (atomic)
Gleb Natapov80300892010-10-19 18:13:41 +02001030 return get_fault_pfn();
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001031
Huang Yingbbeb3402010-06-22 14:23:11 +08001032 down_read(&current->mm->mmap_sem);
Huang Yingbf998152010-05-31 14:28:19 +08001033 if (is_hwpoison_address(addr)) {
Huang Yingbbeb3402010-06-22 14:23:11 +08001034 up_read(&current->mm->mmap_sem);
Huang Yingbf998152010-05-31 14:28:19 +08001035 get_page(hwpoison_page);
1036 return page_to_pfn(hwpoison_page);
1037 }
1038
Gleb Natapov80300892010-10-19 18:13:41 +02001039 vma = find_vma_intersection(current->mm, addr, addr+1);
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001040
Gleb Natapov80300892010-10-19 18:13:41 +02001041 if (vma == NULL)
1042 pfn = get_fault_pfn();
1043 else if ((vma->vm_flags & VM_PFNMAP)) {
1044 pfn = ((addr - vma->vm_start) >> PAGE_SHIFT) +
1045 vma->vm_pgoff;
1046 BUG_ON(!kvm_is_mmio_pfn(pfn));
1047 } else {
1048 if (async && (vma->vm_flags & VM_WRITE))
Gleb Natapovaf585b92010-10-14 11:22:46 +02001049 *async = true;
Gleb Natapov80300892010-10-19 18:13:41 +02001050 pfn = get_fault_pfn();
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001051 }
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001052 up_read(&current->mm->mmap_sem);
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001053 } else
1054 pfn = page_to_pfn(page[0]);
1055
1056 return pfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05001057}
1058
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001059pfn_t hva_to_pfn_atomic(struct kvm *kvm, unsigned long addr)
1060{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001061 return hva_to_pfn(kvm, addr, true, NULL, true, NULL);
Xiao Guangrong887c08a2010-08-22 19:10:28 +08001062}
1063EXPORT_SYMBOL_GPL(hva_to_pfn_atomic);
1064
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001065static pfn_t __gfn_to_pfn(struct kvm *kvm, gfn_t gfn, bool atomic, bool *async,
1066 bool write_fault, bool *writable)
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001067{
1068 unsigned long addr;
1069
Gleb Natapovaf585b92010-10-14 11:22:46 +02001070 if (async)
1071 *async = false;
1072
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001073 addr = gfn_to_hva(kvm, gfn);
1074 if (kvm_is_error_hva(addr)) {
1075 get_page(bad_page);
1076 return page_to_pfn(bad_page);
1077 }
1078
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001079 return hva_to_pfn(kvm, addr, atomic, async, write_fault, writable);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001080}
1081
1082pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn)
1083{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001084 return __gfn_to_pfn(kvm, gfn, true, NULL, true, NULL);
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001085}
1086EXPORT_SYMBOL_GPL(gfn_to_pfn_atomic);
1087
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001088pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
1089 bool write_fault, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02001090{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001091 return __gfn_to_pfn(kvm, gfn, false, async, write_fault, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02001092}
1093EXPORT_SYMBOL_GPL(gfn_to_pfn_async);
1094
Xiao Guangrong365fb3f2010-08-28 19:24:13 +08001095pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn)
1096{
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001097 return __gfn_to_pfn(kvm, gfn, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001098}
Anthony Liguori35149e22008-04-02 14:46:56 -05001099EXPORT_SYMBOL_GPL(gfn_to_pfn);
1100
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001101pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
1102 bool *writable)
1103{
1104 return __gfn_to_pfn(kvm, gfn, false, NULL, write_fault, writable);
1105}
1106EXPORT_SYMBOL_GPL(gfn_to_pfn_prot);
1107
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001108pfn_t gfn_to_pfn_memslot(struct kvm *kvm,
1109 struct kvm_memory_slot *slot, gfn_t gfn)
1110{
1111 unsigned long addr = gfn_to_hva_memslot(slot, gfn);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02001112 return hva_to_pfn(kvm, addr, false, NULL, true, NULL);
Marcelo Tosatti506f0d62009-12-23 14:35:19 -02001113}
1114
Xiao Guangrong48987782010-08-22 19:11:43 +08001115int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
1116 int nr_pages)
1117{
1118 unsigned long addr;
1119 gfn_t entry;
1120
Gleb Natapov49c77542010-10-18 15:22:23 +02001121 addr = gfn_to_hva_many(gfn_to_memslot(kvm, gfn), gfn, &entry);
Xiao Guangrong48987782010-08-22 19:11:43 +08001122 if (kvm_is_error_hva(addr))
1123 return -1;
1124
1125 if (entry < nr_pages)
1126 return 0;
1127
1128 return __get_user_pages_fast(addr, nr_pages, 1, pages);
1129}
1130EXPORT_SYMBOL_GPL(gfn_to_page_many_atomic);
1131
Anthony Liguori35149e22008-04-02 14:46:56 -05001132struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
1133{
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001134 pfn_t pfn;
1135
1136 pfn = gfn_to_pfn(kvm, gfn);
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001137 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001138 return pfn_to_page(pfn);
1139
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001140 WARN_ON(kvm_is_mmio_pfn(pfn));
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001141
1142 get_page(bad_page);
1143 return bad_page;
Avi Kivity954bbbc22007-03-30 14:02:32 +03001144}
Anthony Liguoriaab61cc2007-10-29 15:15:20 -05001145
Avi Kivity954bbbc22007-03-30 14:02:32 +03001146EXPORT_SYMBOL_GPL(gfn_to_page);
1147
Izik Eidusb4231d62007-11-20 11:49:33 +02001148void kvm_release_page_clean(struct page *page)
1149{
Anthony Liguori35149e22008-04-02 14:46:56 -05001150 kvm_release_pfn_clean(page_to_pfn(page));
Izik Eidusb4231d62007-11-20 11:49:33 +02001151}
1152EXPORT_SYMBOL_GPL(kvm_release_page_clean);
1153
Anthony Liguori35149e22008-04-02 14:46:56 -05001154void kvm_release_pfn_clean(pfn_t pfn)
1155{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001156 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001157 put_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001158}
1159EXPORT_SYMBOL_GPL(kvm_release_pfn_clean);
1160
Izik Eidusb4231d62007-11-20 11:49:33 +02001161void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +02001162{
Anthony Liguori35149e22008-04-02 14:46:56 -05001163 kvm_release_pfn_dirty(page_to_pfn(page));
Izik Eidus8a7ae052007-10-18 11:09:33 +02001164}
Izik Eidusb4231d62007-11-20 11:49:33 +02001165EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001166
Anthony Liguori35149e22008-04-02 14:46:56 -05001167void kvm_release_pfn_dirty(pfn_t pfn)
1168{
1169 kvm_set_pfn_dirty(pfn);
1170 kvm_release_pfn_clean(pfn);
1171}
1172EXPORT_SYMBOL_GPL(kvm_release_pfn_dirty);
1173
1174void kvm_set_page_dirty(struct page *page)
1175{
1176 kvm_set_pfn_dirty(page_to_pfn(page));
1177}
1178EXPORT_SYMBOL_GPL(kvm_set_page_dirty);
1179
1180void kvm_set_pfn_dirty(pfn_t pfn)
1181{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001182 if (!kvm_is_mmio_pfn(pfn)) {
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001183 struct page *page = pfn_to_page(pfn);
1184 if (!PageReserved(page))
1185 SetPageDirty(page);
1186 }
Anthony Liguori35149e22008-04-02 14:46:56 -05001187}
1188EXPORT_SYMBOL_GPL(kvm_set_pfn_dirty);
1189
1190void kvm_set_pfn_accessed(pfn_t pfn)
1191{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001192 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001193 mark_page_accessed(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001194}
1195EXPORT_SYMBOL_GPL(kvm_set_pfn_accessed);
1196
1197void kvm_get_pfn(pfn_t pfn)
1198{
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +08001199 if (!kvm_is_mmio_pfn(pfn))
Anthony Liguori2e2e3732008-04-30 15:37:07 -05001200 get_page(pfn_to_page(pfn));
Anthony Liguori35149e22008-04-02 14:46:56 -05001201}
1202EXPORT_SYMBOL_GPL(kvm_get_pfn);
1203
Izik Eidus195aefd2007-10-01 22:14:18 +02001204static int next_segment(unsigned long len, int offset)
1205{
1206 if (len > PAGE_SIZE - offset)
1207 return PAGE_SIZE - offset;
1208 else
1209 return len;
1210}
1211
1212int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1213 int len)
1214{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001215 int r;
1216 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001217
Izik Eiduse0506bc2007-11-11 22:10:22 +02001218 addr = gfn_to_hva(kvm, gfn);
1219 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001220 return -EFAULT;
Izik Eiduse0506bc2007-11-11 22:10:22 +02001221 r = copy_from_user(data, (void __user *)addr + offset, len);
1222 if (r)
1223 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001224 return 0;
1225}
1226EXPORT_SYMBOL_GPL(kvm_read_guest_page);
1227
1228int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
1229{
1230 gfn_t gfn = gpa >> PAGE_SHIFT;
1231 int seg;
1232 int offset = offset_in_page(gpa);
1233 int ret;
1234
1235 while ((seg = next_segment(len, offset)) != 0) {
1236 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
1237 if (ret < 0)
1238 return ret;
1239 offset = 0;
1240 len -= seg;
1241 data += seg;
1242 ++gfn;
1243 }
1244 return 0;
1245}
1246EXPORT_SYMBOL_GPL(kvm_read_guest);
1247
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001248int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
1249 unsigned long len)
1250{
1251 int r;
1252 unsigned long addr;
1253 gfn_t gfn = gpa >> PAGE_SHIFT;
1254 int offset = offset_in_page(gpa);
1255
1256 addr = gfn_to_hva(kvm, gfn);
1257 if (kvm_is_error_hva(addr))
1258 return -EFAULT;
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001259 pagefault_disable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001260 r = __copy_from_user_inatomic(data, (void __user *)addr + offset, len);
Andrea Arcangeli0aac03f2008-01-30 19:57:35 +01001261 pagefault_enable();
Marcelo Tosatti7ec54582007-12-20 19:18:23 -05001262 if (r)
1263 return -EFAULT;
1264 return 0;
1265}
1266EXPORT_SYMBOL(kvm_read_guest_atomic);
1267
Izik Eidus195aefd2007-10-01 22:14:18 +02001268int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1269 int offset, int len)
1270{
Izik Eiduse0506bc2007-11-11 22:10:22 +02001271 int r;
1272 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +02001273
Izik Eiduse0506bc2007-11-11 22:10:22 +02001274 addr = gfn_to_hva(kvm, gfn);
1275 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +02001276 return -EFAULT;
Izik Eiduse0506bc2007-11-11 22:10:22 +02001277 r = copy_to_user((void __user *)addr + offset, data, len);
1278 if (r)
1279 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001280 mark_page_dirty(kvm, gfn);
1281 return 0;
1282}
1283EXPORT_SYMBOL_GPL(kvm_write_guest_page);
1284
1285int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1286 unsigned long len)
1287{
1288 gfn_t gfn = gpa >> PAGE_SHIFT;
1289 int seg;
1290 int offset = offset_in_page(gpa);
1291 int ret;
1292
1293 while ((seg = next_segment(len, offset)) != 0) {
1294 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
1295 if (ret < 0)
1296 return ret;
1297 offset = 0;
1298 len -= seg;
1299 data += seg;
1300 ++gfn;
1301 }
1302 return 0;
1303}
1304
Gleb Natapov49c77542010-10-18 15:22:23 +02001305int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1306 gpa_t gpa)
1307{
1308 struct kvm_memslots *slots = kvm_memslots(kvm);
1309 int offset = offset_in_page(gpa);
1310 gfn_t gfn = gpa >> PAGE_SHIFT;
1311
1312 ghc->gpa = gpa;
1313 ghc->generation = slots->generation;
1314 ghc->memslot = __gfn_to_memslot(slots, gfn);
1315 ghc->hva = gfn_to_hva_many(ghc->memslot, gfn, NULL);
1316 if (!kvm_is_error_hva(ghc->hva))
1317 ghc->hva += offset;
1318 else
1319 return -EFAULT;
1320
1321 return 0;
1322}
1323EXPORT_SYMBOL_GPL(kvm_gfn_to_hva_cache_init);
1324
1325int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1326 void *data, unsigned long len)
1327{
1328 struct kvm_memslots *slots = kvm_memslots(kvm);
1329 int r;
1330
1331 if (slots->generation != ghc->generation)
1332 kvm_gfn_to_hva_cache_init(kvm, ghc, ghc->gpa);
1333
1334 if (kvm_is_error_hva(ghc->hva))
1335 return -EFAULT;
1336
1337 r = copy_to_user((void __user *)ghc->hva, data, len);
1338 if (r)
1339 return -EFAULT;
1340 mark_page_dirty_in_slot(kvm, ghc->memslot, ghc->gpa >> PAGE_SHIFT);
1341
1342 return 0;
1343}
1344EXPORT_SYMBOL_GPL(kvm_write_guest_cached);
1345
Izik Eidus195aefd2007-10-01 22:14:18 +02001346int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
1347{
Heiko Carstens3bcc8a82010-10-27 17:21:21 +02001348 return kvm_write_guest_page(kvm, gfn, (const void *) empty_zero_page,
1349 offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +02001350}
1351EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
1352
1353int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
1354{
1355 gfn_t gfn = gpa >> PAGE_SHIFT;
1356 int seg;
1357 int offset = offset_in_page(gpa);
1358 int ret;
1359
1360 while ((seg = next_segment(len, offset)) != 0) {
1361 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
1362 if (ret < 0)
1363 return ret;
1364 offset = 0;
1365 len -= seg;
1366 ++gfn;
1367 }
1368 return 0;
1369}
1370EXPORT_SYMBOL_GPL(kvm_clear_guest);
1371
Gleb Natapov49c77542010-10-18 15:22:23 +02001372void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot,
1373 gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001374{
Rusty Russell7e9d6192007-07-31 20:41:14 +10001375 if (memslot && memslot->dirty_bitmap) {
1376 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001377
Takuya Yoshikawad1476932010-04-23 17:48:35 +09001378 generic___set_le_bit(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001379 }
1380}
1381
Gleb Natapov49c77542010-10-18 15:22:23 +02001382void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1383{
1384 struct kvm_memory_slot *memslot;
1385
1386 memslot = gfn_to_memslot(kvm, gfn);
1387 mark_page_dirty_in_slot(kvm, memslot, gfn);
1388}
1389
Eddie Dongb6958ce2007-07-18 12:15:21 +03001390/*
1391 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1392 */
Hollis Blanchard8776e512007-10-31 17:24:24 -05001393void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001394{
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001395 DEFINE_WAIT(wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001396
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001397 for (;;) {
1398 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001399
Gleb Natapova1b37102009-07-09 15:33:52 +03001400 if (kvm_arch_vcpu_runnable(vcpu)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03001401 kvm_make_request(KVM_REQ_UNHALT, vcpu);
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001402 break;
Marcelo Tosattid7690172008-09-08 15:23:48 -03001403 }
Gleb Natapov09cec752009-03-23 15:11:44 +02001404 if (kvm_cpu_has_pending_timer(vcpu))
1405 break;
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001406 if (signal_pending(current))
1407 break;
1408
Eddie Dongb6958ce2007-07-18 12:15:21 +03001409 schedule();
Eddie Dongb6958ce2007-07-18 12:15:21 +03001410 }
1411
Marcelo Tosattie5c239c2008-05-08 19:47:01 -03001412 finish_wait(&vcpu->wq, &wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001413}
1414
Avi Kivity6aa8b732006-12-10 02:21:36 -08001415void kvm_resched(struct kvm_vcpu *vcpu)
1416{
Yaozu Dong3fca0362007-04-25 16:49:19 +03001417 if (!need_resched())
1418 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001419 cond_resched();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001420}
1421EXPORT_SYMBOL_GPL(kvm_resched);
1422
Zhai, Edwind255f4f2009-10-09 18:03:20 +08001423void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu)
1424{
1425 ktime_t expires;
1426 DEFINE_WAIT(wait);
1427
1428 prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
1429
1430 /* Sleep for 100 us, and hope lock-holder got scheduled */
1431 expires = ktime_add_ns(ktime_get(), 100000UL);
1432 schedule_hrtimeout(&expires, HRTIMER_MODE_ABS);
1433
1434 finish_wait(&vcpu->wq, &wait);
1435}
1436EXPORT_SYMBOL_GPL(kvm_vcpu_on_spin);
1437
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001438static int kvm_vcpu_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001439{
1440 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001441 struct page *page;
1442
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001443 if (vmf->pgoff == 0)
Avi Kivity039576c2007-03-20 12:46:50 +02001444 page = virt_to_page(vcpu->run);
Avi Kivity09566762008-01-23 18:14:23 +02001445#ifdef CONFIG_X86
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001446 else if (vmf->pgoff == KVM_PIO_PAGE_OFFSET)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001447 page = virt_to_page(vcpu->arch.pio_data);
Avi Kivity09566762008-01-23 18:14:23 +02001448#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02001449#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1450 else if (vmf->pgoff == KVM_COALESCED_MMIO_PAGE_OFFSET)
1451 page = virt_to_page(vcpu->kvm->coalesced_mmio_ring);
1452#endif
Avi Kivity039576c2007-03-20 12:46:50 +02001453 else
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001454 return VM_FAULT_SIGBUS;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001455 get_page(page);
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001456 vmf->page = page;
1457 return 0;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001458}
1459
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001460static const struct vm_operations_struct kvm_vcpu_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001461 .fault = kvm_vcpu_fault,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001462};
1463
1464static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
1465{
1466 vma->vm_ops = &kvm_vcpu_vm_ops;
1467 return 0;
1468}
1469
Avi Kivitybccf2152007-02-21 18:04:26 +02001470static int kvm_vcpu_release(struct inode *inode, struct file *filp)
1471{
1472 struct kvm_vcpu *vcpu = filp->private_data;
1473
Al Viro66c0b392008-04-19 20:33:56 +01001474 kvm_put_kvm(vcpu->kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001475 return 0;
1476}
1477
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001478static struct file_operations kvm_vcpu_fops = {
Avi Kivitybccf2152007-02-21 18:04:26 +02001479 .release = kvm_vcpu_release,
1480 .unlocked_ioctl = kvm_vcpu_ioctl,
1481 .compat_ioctl = kvm_vcpu_ioctl,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001482 .mmap = kvm_vcpu_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001483 .llseek = noop_llseek,
Avi Kivitybccf2152007-02-21 18:04:26 +02001484};
1485
1486/*
1487 * Allocates an inode for the vcpu.
1488 */
1489static int create_vcpu_fd(struct kvm_vcpu *vcpu)
1490{
Roland Dreier628ff7c2009-12-18 09:41:24 -08001491 return anon_inode_getfd("kvm-vcpu", &kvm_vcpu_fops, vcpu, O_RDWR);
Avi Kivitybccf2152007-02-21 18:04:26 +02001492}
1493
Avi Kivityc5ea7662007-02-20 18:41:05 +02001494/*
1495 * Creates some virtual cpus. Good luck creating more than one.
1496 */
Gleb Natapov73880c82009-06-09 15:56:28 +03001497static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id)
Avi Kivityc5ea7662007-02-20 18:41:05 +02001498{
1499 int r;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001500 struct kvm_vcpu *vcpu, *v;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001501
Gleb Natapov73880c82009-06-09 15:56:28 +03001502 vcpu = kvm_arch_vcpu_create(kvm, id);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001503 if (IS_ERR(vcpu))
1504 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001505
Avi Kivity15ad7142007-07-11 18:17:21 +03001506 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
1507
Avi Kivity26e52152007-11-20 15:30:24 +02001508 r = kvm_arch_vcpu_setup(vcpu);
1509 if (r)
Glauber Costa7d8fece2008-09-17 23:16:59 -03001510 return r;
Avi Kivity26e52152007-11-20 15:30:24 +02001511
Shaohua Li11ec2802007-07-23 14:51:37 +08001512 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03001513 if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) {
1514 r = -EINVAL;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001515 goto vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001516 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001517
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001518 kvm_for_each_vcpu(r, v, kvm)
1519 if (v->vcpu_id == id) {
Gleb Natapov73880c82009-06-09 15:56:28 +03001520 r = -EEXIST;
1521 goto vcpu_destroy;
1522 }
1523
1524 BUG_ON(kvm->vcpus[atomic_read(&kvm->online_vcpus)]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001525
1526 /* Now it's all set up, let userspace reach it */
Al Viro66c0b392008-04-19 20:33:56 +01001527 kvm_get_kvm(kvm);
Avi Kivitybccf2152007-02-21 18:04:26 +02001528 r = create_vcpu_fd(vcpu);
Gleb Natapov73880c82009-06-09 15:56:28 +03001529 if (r < 0) {
1530 kvm_put_kvm(kvm);
1531 goto vcpu_destroy;
1532 }
1533
1534 kvm->vcpus[atomic_read(&kvm->online_vcpus)] = vcpu;
1535 smp_wmb();
1536 atomic_inc(&kvm->online_vcpus);
1537
1538#ifdef CONFIG_KVM_APIC_ARCHITECTURE
1539 if (kvm->bsp_vcpu_id == id)
1540 kvm->bsp_vcpu = vcpu;
1541#endif
1542 mutex_unlock(&kvm->lock);
Avi Kivitybccf2152007-02-21 18:04:26 +02001543 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02001544
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001545vcpu_destroy:
Glauber Costa7d8fece2008-09-17 23:16:59 -03001546 mutex_unlock(&kvm->lock);
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06001547 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02001548 return r;
1549}
1550
Avi Kivity1961d272007-03-05 19:46:05 +02001551static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
1552{
1553 if (sigset) {
1554 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
1555 vcpu->sigset_active = 1;
1556 vcpu->sigset = *sigset;
1557 } else
1558 vcpu->sigset_active = 0;
1559 return 0;
1560}
1561
Avi Kivitybccf2152007-02-21 18:04:26 +02001562static long kvm_vcpu_ioctl(struct file *filp,
1563 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001564{
Avi Kivitybccf2152007-02-21 18:04:26 +02001565 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f366982007-02-09 16:38:35 +00001566 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +02001567 int r;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001568 struct kvm_fpu *fpu = NULL;
1569 struct kvm_sregs *kvm_sregs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001571 if (vcpu->kvm->mm != current->mm)
1572 return -EIO;
Avi Kivity2122ff52010-05-13 11:25:04 +03001573
1574#if defined(CONFIG_S390) || defined(CONFIG_PPC)
1575 /*
1576 * Special cases: vcpu ioctls that are asynchronous to vcpu execution,
1577 * so vcpu_load() would break it.
1578 */
1579 if (ioctl == KVM_S390_INTERRUPT || ioctl == KVM_INTERRUPT)
1580 return kvm_arch_vcpu_ioctl(filp, ioctl, arg);
1581#endif
1582
1583
1584 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001585 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02001586 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02001587 r = -EINVAL;
1588 if (arg)
1589 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05001590 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Gleb Natapov64be5002010-10-24 16:49:08 +02001591 trace_kvm_userspace_exit(vcpu->run->exit_reason, r);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001592 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001593 case KVM_GET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001594 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001595
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001596 r = -ENOMEM;
1597 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1598 if (!kvm_regs)
1599 goto out;
1600 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001601 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001602 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001603 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001604 if (copy_to_user(argp, kvm_regs, sizeof(struct kvm_regs)))
1605 goto out_free1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001606 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001607out_free1:
1608 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001609 break;
1610 }
1611 case KVM_SET_REGS: {
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001612 struct kvm_regs *kvm_regs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001613
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001614 r = -ENOMEM;
1615 kvm_regs = kzalloc(sizeof(struct kvm_regs), GFP_KERNEL);
1616 if (!kvm_regs)
1617 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001618 r = -EFAULT;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001619 if (copy_from_user(kvm_regs, argp, sizeof(struct kvm_regs)))
1620 goto out_free2;
1621 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001622 if (r)
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001623 goto out_free2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001624 r = 0;
Xiantao Zhang3e4bb3a2008-02-25 18:52:20 +08001625out_free2:
1626 kfree(kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001627 break;
1628 }
1629 case KVM_GET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001630 kvm_sregs = kzalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1631 r = -ENOMEM;
1632 if (!kvm_sregs)
1633 goto out;
1634 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001635 if (r)
1636 goto out;
1637 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001638 if (copy_to_user(argp, kvm_sregs, sizeof(struct kvm_sregs)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001639 goto out;
1640 r = 0;
1641 break;
1642 }
1643 case KVM_SET_SREGS: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001644 kvm_sregs = kmalloc(sizeof(struct kvm_sregs), GFP_KERNEL);
1645 r = -ENOMEM;
1646 if (!kvm_sregs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001647 goto out;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001648 r = -EFAULT;
1649 if (copy_from_user(kvm_sregs, argp, sizeof(struct kvm_sregs)))
1650 goto out;
1651 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001652 if (r)
1653 goto out;
1654 r = 0;
1655 break;
1656 }
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03001657 case KVM_GET_MP_STATE: {
1658 struct kvm_mp_state mp_state;
1659
1660 r = kvm_arch_vcpu_ioctl_get_mpstate(vcpu, &mp_state);
1661 if (r)
1662 goto out;
1663 r = -EFAULT;
1664 if (copy_to_user(argp, &mp_state, sizeof mp_state))
1665 goto out;
1666 r = 0;
1667 break;
1668 }
1669 case KVM_SET_MP_STATE: {
1670 struct kvm_mp_state mp_state;
1671
1672 r = -EFAULT;
1673 if (copy_from_user(&mp_state, argp, sizeof mp_state))
1674 goto out;
1675 r = kvm_arch_vcpu_ioctl_set_mpstate(vcpu, &mp_state);
1676 if (r)
1677 goto out;
1678 r = 0;
1679 break;
1680 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001681 case KVM_TRANSLATE: {
1682 struct kvm_translation tr;
1683
1684 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00001685 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001686 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +08001687 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001688 if (r)
1689 goto out;
1690 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00001691 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001692 goto out;
1693 r = 0;
1694 break;
1695 }
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001696 case KVM_SET_GUEST_DEBUG: {
1697 struct kvm_guest_debug dbg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001698
1699 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00001700 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001701 goto out;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001702 r = kvm_arch_vcpu_ioctl_set_guest_debug(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001703 if (r)
1704 goto out;
1705 r = 0;
1706 break;
1707 }
Avi Kivity1961d272007-03-05 19:46:05 +02001708 case KVM_SET_SIGNAL_MASK: {
1709 struct kvm_signal_mask __user *sigmask_arg = argp;
1710 struct kvm_signal_mask kvm_sigmask;
1711 sigset_t sigset, *p;
1712
1713 p = NULL;
1714 if (argp) {
1715 r = -EFAULT;
1716 if (copy_from_user(&kvm_sigmask, argp,
1717 sizeof kvm_sigmask))
1718 goto out;
1719 r = -EINVAL;
1720 if (kvm_sigmask.len != sizeof sigset)
1721 goto out;
1722 r = -EFAULT;
1723 if (copy_from_user(&sigset, sigmask_arg->sigset,
1724 sizeof sigset))
1725 goto out;
1726 p = &sigset;
1727 }
Andi Kleen376d41f2010-06-10 13:10:47 +02001728 r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
Avi Kivity1961d272007-03-05 19:46:05 +02001729 break;
1730 }
Avi Kivityb8836732007-04-01 16:34:31 +03001731 case KVM_GET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001732 fpu = kzalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
1733 r = -ENOMEM;
1734 if (!fpu)
1735 goto out;
1736 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03001737 if (r)
1738 goto out;
1739 r = -EFAULT;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001740 if (copy_to_user(argp, fpu, sizeof(struct kvm_fpu)))
Avi Kivityb8836732007-04-01 16:34:31 +03001741 goto out;
1742 r = 0;
1743 break;
1744 }
1745 case KVM_SET_FPU: {
Dave Hansenfa3795a2008-08-11 10:01:46 -07001746 fpu = kmalloc(sizeof(struct kvm_fpu), GFP_KERNEL);
1747 r = -ENOMEM;
1748 if (!fpu)
Avi Kivityb8836732007-04-01 16:34:31 +03001749 goto out;
Dave Hansenfa3795a2008-08-11 10:01:46 -07001750 r = -EFAULT;
1751 if (copy_from_user(fpu, argp, sizeof(struct kvm_fpu)))
1752 goto out;
1753 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, fpu);
Avi Kivityb8836732007-04-01 16:34:31 +03001754 if (r)
1755 goto out;
1756 r = 0;
1757 break;
1758 }
Avi Kivitybccf2152007-02-21 18:04:26 +02001759 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +02001760 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +02001761 }
1762out:
Avi Kivity2122ff52010-05-13 11:25:04 +03001763 vcpu_put(vcpu);
Dave Hansenfa3795a2008-08-11 10:01:46 -07001764 kfree(fpu);
1765 kfree(kvm_sregs);
Avi Kivitybccf2152007-02-21 18:04:26 +02001766 return r;
1767}
1768
1769static long kvm_vm_ioctl(struct file *filp,
1770 unsigned int ioctl, unsigned long arg)
1771{
1772 struct kvm *kvm = filp->private_data;
1773 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +01001774 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +02001775
Avi Kivity6d4e4c42007-11-21 16:41:05 +02001776 if (kvm->mm != current->mm)
1777 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02001778 switch (ioctl) {
1779 case KVM_CREATE_VCPU:
1780 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
1781 if (r < 0)
1782 goto out;
1783 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02001784 case KVM_SET_USER_MEMORY_REGION: {
1785 struct kvm_userspace_memory_region kvm_userspace_mem;
1786
1787 r = -EFAULT;
1788 if (copy_from_user(&kvm_userspace_mem, argp,
1789 sizeof kvm_userspace_mem))
1790 goto out;
1791
1792 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001793 if (r)
1794 goto out;
1795 break;
1796 }
1797 case KVM_GET_DIRTY_LOG: {
1798 struct kvm_dirty_log log;
1799
1800 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00001801 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001802 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02001803 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001804 if (r)
1805 goto out;
1806 break;
1807 }
Laurent Vivier5f94c172008-05-30 16:05:54 +02001808#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1809 case KVM_REGISTER_COALESCED_MMIO: {
1810 struct kvm_coalesced_mmio_zone zone;
1811 r = -EFAULT;
1812 if (copy_from_user(&zone, argp, sizeof zone))
1813 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02001814 r = kvm_vm_ioctl_register_coalesced_mmio(kvm, &zone);
1815 if (r)
1816 goto out;
1817 r = 0;
1818 break;
1819 }
1820 case KVM_UNREGISTER_COALESCED_MMIO: {
1821 struct kvm_coalesced_mmio_zone zone;
1822 r = -EFAULT;
1823 if (copy_from_user(&zone, argp, sizeof zone))
1824 goto out;
Laurent Vivier5f94c172008-05-30 16:05:54 +02001825 r = kvm_vm_ioctl_unregister_coalesced_mmio(kvm, &zone);
1826 if (r)
1827 goto out;
1828 r = 0;
1829 break;
1830 }
1831#endif
Gregory Haskins721eecb2009-05-20 10:30:49 -04001832 case KVM_IRQFD: {
1833 struct kvm_irqfd data;
1834
1835 r = -EFAULT;
1836 if (copy_from_user(&data, argp, sizeof data))
1837 goto out;
1838 r = kvm_irqfd(kvm, data.fd, data.gsi, data.flags);
1839 break;
1840 }
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04001841 case KVM_IOEVENTFD: {
1842 struct kvm_ioeventfd data;
1843
1844 r = -EFAULT;
1845 if (copy_from_user(&data, argp, sizeof data))
1846 goto out;
1847 r = kvm_ioeventfd(kvm, &data);
1848 break;
1849 }
Gleb Natapov73880c82009-06-09 15:56:28 +03001850#ifdef CONFIG_KVM_APIC_ARCHITECTURE
1851 case KVM_SET_BOOT_CPU_ID:
1852 r = 0;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03001853 mutex_lock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03001854 if (atomic_read(&kvm->online_vcpus) != 0)
1855 r = -EBUSY;
1856 else
1857 kvm->bsp_vcpu_id = arg;
Marcelo Tosatti894a9c52009-06-23 15:05:14 -03001858 mutex_unlock(&kvm->lock);
Gleb Natapov73880c82009-06-09 15:56:28 +03001859 break;
1860#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02001861 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01001862 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivitybfd99ff2009-08-26 14:57:50 +03001863 if (r == -ENOTTY)
1864 r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02001865 }
1866out:
1867 return r;
1868}
1869
Arnd Bergmann6ff58942009-10-22 14:19:27 +02001870#ifdef CONFIG_COMPAT
1871struct compat_kvm_dirty_log {
1872 __u32 slot;
1873 __u32 padding1;
1874 union {
1875 compat_uptr_t dirty_bitmap; /* one bit per page */
1876 __u64 padding2;
1877 };
1878};
1879
1880static long kvm_vm_compat_ioctl(struct file *filp,
1881 unsigned int ioctl, unsigned long arg)
1882{
1883 struct kvm *kvm = filp->private_data;
1884 int r;
1885
1886 if (kvm->mm != current->mm)
1887 return -EIO;
1888 switch (ioctl) {
1889 case KVM_GET_DIRTY_LOG: {
1890 struct compat_kvm_dirty_log compat_log;
1891 struct kvm_dirty_log log;
1892
1893 r = -EFAULT;
1894 if (copy_from_user(&compat_log, (void __user *)arg,
1895 sizeof(compat_log)))
1896 goto out;
1897 log.slot = compat_log.slot;
1898 log.padding1 = compat_log.padding1;
1899 log.padding2 = compat_log.padding2;
1900 log.dirty_bitmap = compat_ptr(compat_log.dirty_bitmap);
1901
1902 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
1903 if (r)
1904 goto out;
1905 break;
1906 }
1907 default:
1908 r = kvm_vm_ioctl(filp, ioctl, arg);
1909 }
1910
1911out:
1912 return r;
1913}
1914#endif
1915
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001916static int kvm_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Avi Kivityf17abe92007-02-21 19:28:04 +02001917{
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03001918 struct page *page[1];
1919 unsigned long addr;
1920 int npages;
1921 gfn_t gfn = vmf->pgoff;
Avi Kivityf17abe92007-02-21 19:28:04 +02001922 struct kvm *kvm = vma->vm_file->private_data;
Avi Kivityf17abe92007-02-21 19:28:04 +02001923
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03001924 addr = gfn_to_hva(kvm, gfn);
1925 if (kvm_is_error_hva(addr))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001926 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03001927
1928 npages = get_user_pages(current, current->mm, addr, 1, 1, 0, page,
1929 NULL);
1930 if (unlikely(npages != 1))
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001931 return VM_FAULT_SIGBUS;
Marcelo Tosatti777b3f42008-09-16 20:54:46 -03001932
1933 vmf->page = page[0];
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001934 return 0;
Avi Kivityf17abe92007-02-21 19:28:04 +02001935}
1936
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001937static const struct vm_operations_struct kvm_vm_vm_ops = {
npiggin@suse.dee4a533a2007-12-05 18:15:52 +11001938 .fault = kvm_vm_fault,
Avi Kivityf17abe92007-02-21 19:28:04 +02001939};
1940
1941static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
1942{
1943 vma->vm_ops = &kvm_vm_vm_ops;
1944 return 0;
1945}
1946
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01001947static struct file_operations kvm_vm_fops = {
Avi Kivityf17abe92007-02-21 19:28:04 +02001948 .release = kvm_vm_release,
1949 .unlocked_ioctl = kvm_vm_ioctl,
Arnd Bergmann6ff58942009-10-22 14:19:27 +02001950#ifdef CONFIG_COMPAT
1951 .compat_ioctl = kvm_vm_compat_ioctl,
1952#endif
Avi Kivityf17abe92007-02-21 19:28:04 +02001953 .mmap = kvm_vm_mmap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001954 .llseek = noop_llseek,
Avi Kivityf17abe92007-02-21 19:28:04 +02001955};
1956
1957static int kvm_dev_ioctl_create_vm(void)
1958{
Heiko Carstensaac87632010-10-27 17:22:10 +02001959 int r;
Avi Kivityf17abe92007-02-21 19:28:04 +02001960 struct kvm *kvm;
1961
Avi Kivityf17abe92007-02-21 19:28:04 +02001962 kvm = kvm_create_vm();
Avi Kivityd6d28162007-06-28 08:38:16 -04001963 if (IS_ERR(kvm))
1964 return PTR_ERR(kvm);
Takuya Yoshikawa6ce5a092010-03-15 22:13:30 +09001965#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
1966 r = kvm_coalesced_mmio_init(kvm);
1967 if (r < 0) {
1968 kvm_put_kvm(kvm);
1969 return r;
1970 }
1971#endif
Heiko Carstensaac87632010-10-27 17:22:10 +02001972 r = anon_inode_getfd("kvm-vm", &kvm_vm_fops, kvm, O_RDWR);
1973 if (r < 0)
Al Viro66c0b392008-04-19 20:33:56 +01001974 kvm_put_kvm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +02001975
Heiko Carstensaac87632010-10-27 17:22:10 +02001976 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02001977}
1978
Avi Kivity1a811b62008-12-08 18:25:27 +02001979static long kvm_dev_ioctl_check_extension_generic(long arg)
1980{
1981 switch (arg) {
Avi Kivityca9edae2008-12-08 18:29:29 +02001982 case KVM_CAP_USER_MEMORY:
Avi Kivity1a811b62008-12-08 18:25:27 +02001983 case KVM_CAP_DESTROY_MEMORY_REGION_WORKS:
Jan Kiszka4cd481f2009-04-13 11:59:32 +02001984 case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS:
Gleb Natapov73880c82009-06-09 15:56:28 +03001985#ifdef CONFIG_KVM_APIC_ARCHITECTURE
1986 case KVM_CAP_SET_BOOT_CPU_ID:
1987#endif
Avi Kivitya9c73992009-11-04 11:54:59 +02001988 case KVM_CAP_INTERNAL_ERROR_DATA:
Avi Kivity1a811b62008-12-08 18:25:27 +02001989 return 1;
Avi Kivity399ec802008-11-19 13:58:46 +02001990#ifdef CONFIG_HAVE_KVM_IRQCHIP
1991 case KVM_CAP_IRQ_ROUTING:
Sheng Yang36463142009-03-16 16:33:43 +08001992 return KVM_MAX_IRQ_ROUTES;
Avi Kivity399ec802008-11-19 13:58:46 +02001993#endif
Avi Kivity1a811b62008-12-08 18:25:27 +02001994 default:
1995 break;
1996 }
1997 return kvm_dev_ioctl_check_extension(arg);
1998}
1999
Avi Kivityf17abe92007-02-21 19:28:04 +02002000static long kvm_dev_ioctl(struct file *filp,
2001 unsigned int ioctl, unsigned long arg)
2002{
Avi Kivity07c45a32007-03-07 13:05:38 +02002003 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002004
2005 switch (ioctl) {
2006 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002007 r = -EINVAL;
2008 if (arg)
2009 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002010 r = KVM_API_VERSION;
2011 break;
2012 case KVM_CREATE_VM:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002013 r = -EINVAL;
2014 if (arg)
2015 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002016 r = kvm_dev_ioctl_create_vm();
2017 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08002018 case KVM_CHECK_EXTENSION:
Avi Kivity1a811b62008-12-08 18:25:27 +02002019 r = kvm_dev_ioctl_check_extension_generic(arg);
Avi Kivity5d308f42007-03-01 17:56:20 +02002020 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02002021 case KVM_GET_VCPU_MMAP_SIZE:
2022 r = -EINVAL;
2023 if (arg)
2024 goto out;
Avi Kivityadb1ff42008-01-24 15:13:08 +02002025 r = PAGE_SIZE; /* struct kvm_run */
2026#ifdef CONFIG_X86
2027 r += PAGE_SIZE; /* pio data page */
2028#endif
Laurent Vivier5f94c172008-05-30 16:05:54 +02002029#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
2030 r += PAGE_SIZE; /* coalesced mmio ring page */
2031#endif
Avi Kivity07c45a32007-03-07 13:05:38 +02002032 break;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002033 case KVM_TRACE_ENABLE:
2034 case KVM_TRACE_PAUSE:
2035 case KVM_TRACE_DISABLE:
Marcelo Tosatti2023a292009-06-18 11:47:28 -03002036 r = -EOPNOTSUPP;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04002037 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002038 default:
Carsten Otte043405e2007-10-10 17:16:19 +02002039 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002040 }
2041out:
2042 return r;
2043}
2044
Avi Kivity6aa8b732006-12-10 02:21:36 -08002045static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002046 .unlocked_ioctl = kvm_dev_ioctl,
2047 .compat_ioctl = kvm_dev_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002048 .llseek = noop_llseek,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002049};
2050
2051static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002052 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002053 "kvm",
2054 &kvm_chardev_ops,
2055};
2056
Avi Kivity1b6c0162007-05-24 13:03:52 +03002057static void hardware_enable(void *junk)
2058{
2059 int cpu = raw_smp_processor_id();
Alexander Graf10474ae2009-09-15 11:37:46 +02002060 int r;
Avi Kivity1b6c0162007-05-24 13:03:52 +03002061
Rusty Russell7f59f492008-12-07 21:25:45 +10302062 if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002063 return;
Alexander Graf10474ae2009-09-15 11:37:46 +02002064
Rusty Russell7f59f492008-12-07 21:25:45 +10302065 cpumask_set_cpu(cpu, cpus_hardware_enabled);
Alexander Graf10474ae2009-09-15 11:37:46 +02002066
2067 r = kvm_arch_hardware_enable(NULL);
2068
2069 if (r) {
2070 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
2071 atomic_inc(&hardware_enable_failed);
2072 printk(KERN_INFO "kvm: enabling virtualization on "
2073 "CPU%d failed\n", cpu);
2074 }
Avi Kivity1b6c0162007-05-24 13:03:52 +03002075}
2076
2077static void hardware_disable(void *junk)
2078{
2079 int cpu = raw_smp_processor_id();
2080
Rusty Russell7f59f492008-12-07 21:25:45 +10302081 if (!cpumask_test_cpu(cpu, cpus_hardware_enabled))
Avi Kivity1b6c0162007-05-24 13:03:52 +03002082 return;
Rusty Russell7f59f492008-12-07 21:25:45 +10302083 cpumask_clear_cpu(cpu, cpus_hardware_enabled);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002084 kvm_arch_hardware_disable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03002085}
2086
Alexander Graf10474ae2009-09-15 11:37:46 +02002087static void hardware_disable_all_nolock(void)
2088{
2089 BUG_ON(!kvm_usage_count);
2090
2091 kvm_usage_count--;
2092 if (!kvm_usage_count)
2093 on_each_cpu(hardware_disable, NULL, 1);
2094}
2095
2096static void hardware_disable_all(void)
2097{
2098 spin_lock(&kvm_lock);
2099 hardware_disable_all_nolock();
2100 spin_unlock(&kvm_lock);
2101}
2102
2103static int hardware_enable_all(void)
2104{
2105 int r = 0;
2106
2107 spin_lock(&kvm_lock);
2108
2109 kvm_usage_count++;
2110 if (kvm_usage_count == 1) {
2111 atomic_set(&hardware_enable_failed, 0);
2112 on_each_cpu(hardware_enable, NULL, 1);
2113
2114 if (atomic_read(&hardware_enable_failed)) {
2115 hardware_disable_all_nolock();
2116 r = -EBUSY;
2117 }
2118 }
2119
2120 spin_unlock(&kvm_lock);
2121
2122 return r;
2123}
2124
Avi Kivity774c47f2007-02-12 00:54:47 -08002125static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2126 void *v)
2127{
2128 int cpu = (long)v;
2129
Alexander Graf10474ae2009-09-15 11:37:46 +02002130 if (!kvm_usage_count)
2131 return NOTIFY_OK;
2132
Avi Kivity1a6f4d72007-11-11 18:37:32 +02002133 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08002134 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03002135 case CPU_DYING:
Avi Kivity6ec8a852007-08-19 15:57:26 +03002136 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
2137 cpu);
2138 hardware_disable(NULL);
2139 break;
Zachary Amsdenda908f22010-08-19 22:07:27 -10002140 case CPU_STARTING:
Jeremy Katz43934a32007-02-19 14:37:46 +02002141 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
2142 cpu);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002143 spin_lock(&kvm_lock);
Zachary Amsdenda908f22010-08-19 22:07:27 -10002144 hardware_enable(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002145 spin_unlock(&kvm_lock);
Avi Kivity774c47f2007-02-12 00:54:47 -08002146 break;
2147 }
2148 return NOTIFY_OK;
2149}
2150
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002151
2152asmlinkage void kvm_handle_fault_on_reboot(void)
2153{
Avi Kivityca242ac2010-09-21 19:59:43 +02002154 if (kvm_rebooting) {
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002155 /* spin while reset goes on */
Avi Kivityca242ac2010-09-21 19:59:43 +02002156 local_irq_enable();
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002157 while (true)
Avi Kivity624d84c2010-09-21 19:59:44 +02002158 cpu_relax();
Avi Kivityca242ac2010-09-21 19:59:43 +02002159 }
Avi Kivity4ecac3f2008-05-13 13:23:38 +03002160 /* Fault while not rebooting. We want the trace. */
2161 BUG();
2162}
2163EXPORT_SYMBOL_GPL(kvm_handle_fault_on_reboot);
2164
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002165static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04002166 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002167{
Sheng Yang8e1c1812009-04-29 11:09:04 +08002168 /*
2169 * Some (well, at least mine) BIOSes hang on reboot if
2170 * in vmx root mode.
2171 *
2172 * And Intel TXT required VMX off for all cpu when system shutdown.
2173 */
2174 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
2175 kvm_rebooting = true;
2176 on_each_cpu(hardware_disable, NULL, 1);
Rusty Russell9a2b85c2007-07-17 23:17:55 +10002177 return NOTIFY_OK;
2178}
2179
2180static struct notifier_block kvm_reboot_notifier = {
2181 .notifier_call = kvm_reboot,
2182 .priority = 0,
2183};
2184
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002185static void kvm_io_bus_destroy(struct kvm_io_bus *bus)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002186{
2187 int i;
2188
2189 for (i = 0; i < bus->dev_count; i++) {
2190 struct kvm_io_device *pos = bus->devs[i];
2191
2192 kvm_iodevice_destructor(pos);
2193 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002194 kfree(bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002195}
2196
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002197/* kvm_io_bus_write - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002198int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002199 int len, const void *val)
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002200{
2201 int i;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002202 struct kvm_io_bus *bus;
2203
2204 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002205 for (i = 0; i < bus->dev_count; i++)
2206 if (!kvm_iodevice_write(bus->devs[i], addr, len, val))
2207 return 0;
2208 return -EOPNOTSUPP;
2209}
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002210
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002211/* kvm_io_bus_read - called under kvm->slots_lock */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002212int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
2213 int len, void *val)
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002214{
2215 int i;
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002216 struct kvm_io_bus *bus;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002217
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002218 bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +03002219 for (i = 0; i < bus->dev_count; i++)
2220 if (!kvm_iodevice_read(bus->devs[i], addr, len, val))
2221 return 0;
2222 return -EOPNOTSUPP;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002223}
2224
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002225/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002226int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx,
2227 struct kvm_io_device *dev)
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002228{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002229 struct kvm_io_bus *new_bus, *bus;
Gregory Haskins090b7af2009-07-07 17:08:44 -04002230
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002231 bus = kvm->buses[bus_idx];
Gregory Haskins090b7af2009-07-07 17:08:44 -04002232 if (bus->dev_count > NR_IOBUS_DEVS-1)
2233 return -ENOSPC;
2234
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002235 new_bus = kzalloc(sizeof(struct kvm_io_bus), GFP_KERNEL);
2236 if (!new_bus)
2237 return -ENOMEM;
2238 memcpy(new_bus, bus, sizeof(struct kvm_io_bus));
2239 new_bus->devs[new_bus->dev_count++] = dev;
2240 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2241 synchronize_srcu_expedited(&kvm->srcu);
2242 kfree(bus);
Gregory Haskins090b7af2009-07-07 17:08:44 -04002243
2244 return 0;
2245}
2246
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002247/* Caller must hold slots_lock. */
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002248int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
2249 struct kvm_io_device *dev)
Gregory Haskins090b7af2009-07-07 17:08:44 -04002250{
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002251 int i, r;
2252 struct kvm_io_bus *new_bus, *bus;
Michael S. Tsirkin6c474692009-06-29 22:24:26 +03002253
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002254 new_bus = kzalloc(sizeof(struct kvm_io_bus), GFP_KERNEL);
2255 if (!new_bus)
2256 return -ENOMEM;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002257
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002258 bus = kvm->buses[bus_idx];
2259 memcpy(new_bus, bus, sizeof(struct kvm_io_bus));
2260
2261 r = -ENOENT;
2262 for (i = 0; i < new_bus->dev_count; i++)
2263 if (new_bus->devs[i] == dev) {
2264 r = 0;
2265 new_bus->devs[i] = new_bus->devs[--new_bus->dev_count];
Gregory Haskins090b7af2009-07-07 17:08:44 -04002266 break;
2267 }
Marcelo Tosattie93f8a02009-12-23 14:35:24 -02002268
2269 if (r) {
2270 kfree(new_bus);
2271 return r;
2272 }
2273
2274 rcu_assign_pointer(kvm->buses[bus_idx], new_bus);
2275 synchronize_srcu_expedited(&kvm->srcu);
2276 kfree(bus);
2277 return r;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04002278}
2279
Avi Kivity774c47f2007-02-12 00:54:47 -08002280static struct notifier_block kvm_cpu_notifier = {
2281 .notifier_call = kvm_cpu_hotplug,
Avi Kivity774c47f2007-02-12 00:54:47 -08002282};
2283
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002284static int vm_stat_get(void *_offset, u64 *val)
Avi Kivityba1389b2007-11-18 16:24:12 +02002285{
2286 unsigned offset = (long)_offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02002287 struct kvm *kvm;
2288
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002289 *val = 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02002290 spin_lock(&kvm_lock);
2291 list_for_each_entry(kvm, &vm_list, vm_list)
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002292 *val += *(u32 *)((void *)kvm + offset);
Avi Kivityba1389b2007-11-18 16:24:12 +02002293 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002294 return 0;
Avi Kivityba1389b2007-11-18 16:24:12 +02002295}
2296
2297DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
2298
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002299static int vcpu_stat_get(void *_offset, u64 *val)
Avi Kivity1165f5f2007-04-19 17:27:43 +03002300{
2301 unsigned offset = (long)_offset;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002302 struct kvm *kvm;
2303 struct kvm_vcpu *vcpu;
2304 int i;
2305
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002306 *val = 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002307 spin_lock(&kvm_lock);
2308 list_for_each_entry(kvm, &vm_list, vm_list)
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002309 kvm_for_each_vcpu(i, vcpu, kvm)
2310 *val += *(u32 *)((void *)vcpu + offset);
2311
Avi Kivity1165f5f2007-04-19 17:27:43 +03002312 spin_unlock(&kvm_lock);
Christoph Hellwig8b88b092008-02-08 04:20:26 -08002313 return 0;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002314}
2315
Avi Kivityba1389b2007-11-18 16:24:12 +02002316DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
2317
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002318static const struct file_operations *stat_fops[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +02002319 [KVM_STAT_VCPU] = &vcpu_stat_fops,
2320 [KVM_STAT_VM] = &vm_stat_fops,
2321};
Avi Kivity1165f5f2007-04-19 17:27:43 +03002322
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08002323static void kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002324{
2325 struct kvm_stats_debugfs_item *p;
2326
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002327 kvm_debugfs_dir = debugfs_create_dir("kvm", NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002328 for (p = debugfs_entries; p->name; ++p)
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002329 p->dentry = debugfs_create_file(p->name, 0444, kvm_debugfs_dir,
Avi Kivity1165f5f2007-04-19 17:27:43 +03002330 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02002331 stat_fops[p->kind]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002332}
2333
2334static void kvm_exit_debug(void)
2335{
2336 struct kvm_stats_debugfs_item *p;
2337
2338 for (p = debugfs_entries; p->name; ++p)
2339 debugfs_remove(p->dentry);
Hollis Blanchard76f7c872008-04-15 16:05:42 -05002340 debugfs_remove(kvm_debugfs_dir);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341}
2342
Avi Kivity59ae6c62007-02-12 00:54:48 -08002343static int kvm_suspend(struct sys_device *dev, pm_message_t state)
2344{
Alexander Graf10474ae2009-09-15 11:37:46 +02002345 if (kvm_usage_count)
2346 hardware_disable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002347 return 0;
2348}
2349
2350static int kvm_resume(struct sys_device *dev)
2351{
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002352 if (kvm_usage_count) {
2353 WARN_ON(spin_is_locked(&kvm_lock));
Alexander Graf10474ae2009-09-15 11:37:46 +02002354 hardware_enable(NULL);
Zachary Amsdenca84d1a2010-08-19 22:07:28 -10002355 }
Avi Kivity59ae6c62007-02-12 00:54:48 -08002356 return 0;
2357}
2358
2359static struct sysdev_class kvm_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01002360 .name = "kvm",
Avi Kivity59ae6c62007-02-12 00:54:48 -08002361 .suspend = kvm_suspend,
2362 .resume = kvm_resume,
2363};
2364
2365static struct sys_device kvm_sysdev = {
2366 .id = 0,
2367 .cls = &kvm_sysdev_class,
2368};
2369
Izik Eiduscea7bb22007-10-17 19:17:48 +02002370struct page *bad_page;
Anthony Liguori35149e22008-04-02 14:46:56 -05002371pfn_t bad_pfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002372
Avi Kivity15ad7142007-07-11 18:17:21 +03002373static inline
2374struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
2375{
2376 return container_of(pn, struct kvm_vcpu, preempt_notifier);
2377}
2378
2379static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
2380{
2381 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2382
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002383 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002384}
2385
2386static void kvm_sched_out(struct preempt_notifier *pn,
2387 struct task_struct *next)
2388{
2389 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
2390
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002391 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002392}
2393
Avi Kivity0ee75be2010-04-28 15:39:01 +03002394int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +10002395 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002396{
2397 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002398 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002399
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002400 r = kvm_arch_init(opaque);
2401 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002402 goto out_fail;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002403
2404 bad_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2405
2406 if (bad_page == NULL) {
2407 r = -ENOMEM;
2408 goto out;
2409 }
2410
Anthony Liguori35149e22008-04-02 14:46:56 -05002411 bad_pfn = page_to_pfn(bad_page);
2412
Huang Yingbf998152010-05-31 14:28:19 +08002413 hwpoison_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2414
2415 if (hwpoison_page == NULL) {
2416 r = -ENOMEM;
2417 goto out_free_0;
2418 }
2419
2420 hwpoison_pfn = page_to_pfn(hwpoison_page);
2421
Gleb Natapovedba23e2010-07-07 20:16:45 +03002422 fault_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2423
2424 if (fault_page == NULL) {
2425 r = -ENOMEM;
2426 goto out_free_0;
2427 }
2428
2429 fault_pfn = page_to_pfn(fault_page);
2430
Avi Kivity8437a612009-06-06 14:52:35 -07002431 if (!zalloc_cpumask_var(&cpus_hardware_enabled, GFP_KERNEL)) {
Rusty Russell7f59f492008-12-07 21:25:45 +10302432 r = -ENOMEM;
2433 goto out_free_0;
2434 }
2435
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002436 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002437 if (r < 0)
Rusty Russell7f59f492008-12-07 21:25:45 +10302438 goto out_free_0a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002439
Yang, Sheng002c7f72007-07-31 14:23:01 +03002440 for_each_online_cpu(cpu) {
2441 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002442 kvm_arch_check_processor_compat,
Jens Axboe8691e5a2008-06-06 11:18:06 +02002443 &r, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03002444 if (r < 0)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002445 goto out_free_1;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002446 }
2447
Avi Kivity774c47f2007-02-12 00:54:47 -08002448 r = register_cpu_notifier(&kvm_cpu_notifier);
2449 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002450 goto out_free_2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002451 register_reboot_notifier(&kvm_reboot_notifier);
2452
Avi Kivity59ae6c62007-02-12 00:54:48 -08002453 r = sysdev_class_register(&kvm_sysdev_class);
2454 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002455 goto out_free_3;
Avi Kivity59ae6c62007-02-12 00:54:48 -08002456
2457 r = sysdev_register(&kvm_sysdev);
2458 if (r)
Zhang Xiantaod23087842007-11-29 15:35:39 +08002459 goto out_free_4;
Avi Kivity59ae6c62007-02-12 00:54:48 -08002460
Rusty Russellc16f8622007-07-30 21:12:19 +10002461 /* A kmem cache lets us meet the alignment requirements of fx_save. */
Avi Kivity0ee75be2010-04-28 15:39:01 +03002462 if (!vcpu_align)
2463 vcpu_align = __alignof__(struct kvm_vcpu);
2464 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
Joe Perches56919c52007-11-12 20:06:51 -08002465 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10002466 if (!kvm_vcpu_cache) {
2467 r = -ENOMEM;
Zhang Xiantaod23087842007-11-29 15:35:39 +08002468 goto out_free_5;
Rusty Russellc16f8622007-07-30 21:12:19 +10002469 }
2470
Gleb Natapovaf585b92010-10-14 11:22:46 +02002471 r = kvm_async_pf_init();
2472 if (r)
2473 goto out_free;
2474
Avi Kivity6aa8b732006-12-10 02:21:36 -08002475 kvm_chardev_ops.owner = module;
Christian Borntraeger3d3aab12008-12-02 11:17:32 +01002476 kvm_vm_fops.owner = module;
2477 kvm_vcpu_fops.owner = module;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002478
2479 r = misc_register(&kvm_dev);
2480 if (r) {
Mike Dayd77c26f2007-10-08 09:02:08 -04002481 printk(KERN_ERR "kvm: misc device register failed\n");
Gleb Natapovaf585b92010-10-14 11:22:46 +02002482 goto out_unreg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002483 }
2484
Avi Kivity15ad7142007-07-11 18:17:21 +03002485 kvm_preempt_ops.sched_in = kvm_sched_in;
2486 kvm_preempt_ops.sched_out = kvm_sched_out;
2487
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002488 kvm_init_debug();
2489
Avi Kivityc7addb92007-09-16 18:58:32 +02002490 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002491
Gleb Natapovaf585b92010-10-14 11:22:46 +02002492out_unreg:
2493 kvm_async_pf_deinit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002494out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10002495 kmem_cache_destroy(kvm_vcpu_cache);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002496out_free_5:
Avi Kivity59ae6c62007-02-12 00:54:48 -08002497 sysdev_unregister(&kvm_sysdev);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002498out_free_4:
Avi Kivity59ae6c62007-02-12 00:54:48 -08002499 sysdev_class_unregister(&kvm_sysdev_class);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002500out_free_3:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002501 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08002502 unregister_cpu_notifier(&kvm_cpu_notifier);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002503out_free_2:
Zhang Xiantaod23087842007-11-29 15:35:39 +08002504out_free_1:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002505 kvm_arch_hardware_unsetup();
Rusty Russell7f59f492008-12-07 21:25:45 +10302506out_free_0a:
2507 free_cpumask_var(cpus_hardware_enabled);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002508out_free_0:
Gleb Natapovedba23e2010-07-07 20:16:45 +03002509 if (fault_page)
2510 __free_page(fault_page);
Huang Yingbf998152010-05-31 14:28:19 +08002511 if (hwpoison_page)
2512 __free_page(hwpoison_page);
Zhang Xiantaod23087842007-11-29 15:35:39 +08002513 __free_page(bad_page);
Avi Kivityca45aaa2007-03-01 19:21:03 +02002514out:
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002515 kvm_arch_exit();
Zhang Xiantaod23087842007-11-29 15:35:39 +08002516out_fail:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002517 return r;
2518}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002519EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002520
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002521void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002522{
Darrick J. Wong0ea4ed82009-10-14 16:21:00 -07002523 kvm_exit_debug();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002524 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10002525 kmem_cache_destroy(kvm_vcpu_cache);
Gleb Natapovaf585b92010-10-14 11:22:46 +02002526 kvm_async_pf_deinit();
Avi Kivity59ae6c62007-02-12 00:54:48 -08002527 sysdev_unregister(&kvm_sysdev);
2528 sysdev_class_unregister(&kvm_sysdev_class);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002529 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08002530 unregister_cpu_notifier(&kvm_cpu_notifier);
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002531 on_each_cpu(hardware_disable, NULL, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08002532 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002533 kvm_arch_exit();
Rusty Russell7f59f492008-12-07 21:25:45 +10302534 free_cpumask_var(cpus_hardware_enabled);
Huang Yingbf998152010-05-31 14:28:19 +08002535 __free_page(hwpoison_page);
Izik Eiduscea7bb22007-10-17 19:17:48 +02002536 __free_page(bad_page);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002537}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002538EXPORT_SYMBOL_GPL(kvm_exit);