blob: 0efd759e585fe86aeb6d0310cb4a2bf9560ca9be [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.
8 *
9 * Authors:
10 * Avi Kivity <avi@qumranet.com>
11 * Yaniv Kamay <yaniv@qumranet.com>
12 *
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
15 *
16 */
17
18#include "kvm.h"
Carsten Otte043405e2007-10-10 17:16:19 +020019#include "x86.h"
Eddie Dong85f455f2007-07-06 12:20:49 +030020#include "irq.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080021
22#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>
26#include <linux/gfp.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/mm.h>
28#include <linux/miscdevice.h>
29#include <linux/vmalloc.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080030#include <linux/reboot.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080031#include <linux/debugfs.h>
32#include <linux/highmem.h>
33#include <linux/file.h>
Avi Kivity59ae6c62007-02-12 00:54:48 -080034#include <linux/sysdev.h>
Avi Kivity774c47f2007-02-12 00:54:47 -080035#include <linux/cpu.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040036#include <linux/sched.h>
Avi Kivityd9e368d2007-06-07 19:18:30 +030037#include <linux/cpumask.h>
38#include <linux/smp.h>
Avi Kivityd6d28162007-06-28 08:38:16 -040039#include <linux/anon_inodes.h>
Avi Kivity04d2cc72007-09-10 18:10:54 +030040#include <linux/profile.h>
Anthony Liguori7aa81cc2007-09-17 14:57:50 -050041#include <linux/kvm_para.h>
Izik Eidus6fc138d2007-10-09 19:20:39 +020042#include <linux/pagemap.h>
Anthony Liguori8d4e1282007-10-18 09:59:34 -050043#include <linux/mman.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080044
Avi Kivitye4956062007-06-28 14:15:57 -040045#include <asm/processor.h>
Avi Kivitye4956062007-06-28 14:15:57 -040046#include <asm/io.h>
47#include <asm/uaccess.h>
48#include <asm/desc.h>
Izik Eidus3e021bf2007-11-19 11:16:57 +020049#include <asm/pgtable.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080050
51MODULE_AUTHOR("Qumranet");
52MODULE_LICENSE("GPL");
53
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +080054DEFINE_SPINLOCK(kvm_lock);
55LIST_HEAD(vm_list);
Avi Kivity133de902007-02-12 00:54:44 -080056
Avi Kivity1b6c0162007-05-24 13:03:52 +030057static cpumask_t cpus_hardware_enabled;
58
Rusty Russellc16f8622007-07-30 21:12:19 +100059struct kmem_cache *kvm_vcpu_cache;
60EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +030061
Avi Kivity15ad7142007-07-11 18:17:21 +030062static __read_mostly struct preempt_ops kvm_preempt_ops;
63
Avi Kivity6aa8b732006-12-10 02:21:36 -080064static struct dentry *debugfs_dir;
65
Avi Kivitybccf2152007-02-21 18:04:26 +020066static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
67 unsigned long arg);
68
James Morris5aacf0c2006-12-22 01:04:55 -080069static inline int valid_vcpu(int n)
70{
71 return likely(n >= 0 && n < KVM_MAX_VCPUS);
72}
73
Avi Kivity6aa8b732006-12-10 02:21:36 -080074/*
75 * Switches to specified vcpu, until a matching vcpu_put()
76 */
Carsten Otte313a3dc2007-10-11 19:16:52 +020077void vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -080078{
Avi Kivity15ad7142007-07-11 18:17:21 +030079 int cpu;
80
Avi Kivitybccf2152007-02-21 18:04:26 +020081 mutex_lock(&vcpu->mutex);
Avi Kivity15ad7142007-07-11 18:17:21 +030082 cpu = get_cpu();
83 preempt_notifier_register(&vcpu->preempt_notifier);
Carsten Otte313a3dc2007-10-11 19:16:52 +020084 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +030085 put_cpu();
Avi Kivitybccf2152007-02-21 18:04:26 +020086}
87
Carsten Otte313a3dc2007-10-11 19:16:52 +020088void vcpu_put(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -080089{
Avi Kivity15ad7142007-07-11 18:17:21 +030090 preempt_disable();
Carsten Otte313a3dc2007-10-11 19:16:52 +020091 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +030092 preempt_notifier_unregister(&vcpu->preempt_notifier);
93 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -080094 mutex_unlock(&vcpu->mutex);
95}
96
Avi Kivityd9e368d2007-06-07 19:18:30 +030097static void ack_flush(void *_completed)
98{
Avi Kivityd9e368d2007-06-07 19:18:30 +030099}
100
101void kvm_flush_remote_tlbs(struct kvm *kvm)
102{
Laurent Vivier49d3bd72007-10-22 16:33:07 +0200103 int i, cpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300104 cpumask_t cpus;
105 struct kvm_vcpu *vcpu;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300106
Avi Kivityd9e368d2007-06-07 19:18:30 +0300107 cpus_clear(cpus);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000108 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
109 vcpu = kvm->vcpus[i];
110 if (!vcpu)
111 continue;
Avi Kivity3176bc32007-10-16 17:22:08 +0200112 if (test_and_set_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests))
Avi Kivityd9e368d2007-06-07 19:18:30 +0300113 continue;
114 cpu = vcpu->cpu;
115 if (cpu != -1 && cpu != raw_smp_processor_id())
Laurent Vivier49d3bd72007-10-22 16:33:07 +0200116 cpu_set(cpu, cpus);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300117 }
Avi Kivity0f74a242007-11-20 23:01:14 +0200118 if (cpus_empty(cpus))
119 return;
120 ++kvm->stat.remote_tlb_flush;
Laurent Vivier49d3bd72007-10-22 16:33:07 +0200121 smp_call_function_mask(cpus, ack_flush, NULL, 1);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300122}
123
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000124int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
125{
126 struct page *page;
127 int r;
128
129 mutex_init(&vcpu->mutex);
130 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000131 vcpu->kvm = kvm;
132 vcpu->vcpu_id = id;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300133 init_waitqueue_head(&vcpu->wq);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000134
135 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
136 if (!page) {
137 r = -ENOMEM;
138 goto fail;
139 }
140 vcpu->run = page_address(page);
141
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800142 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000143 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800144 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000145 return 0;
146
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000147fail_free_run:
148 free_page((unsigned long)vcpu->run);
149fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000150 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000151}
152EXPORT_SYMBOL_GPL(kvm_vcpu_init);
153
154void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
155{
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800156 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000157 free_page((unsigned long)vcpu->run);
158}
159EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
160
Avi Kivityf17abe92007-02-21 19:28:04 +0200161static struct kvm *kvm_create_vm(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800162{
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800163 struct kvm *kvm = kvm_arch_create_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800164
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800165 if (IS_ERR(kvm))
166 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800167
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200168 kvm->mm = current->mm;
169 atomic_inc(&kvm->mm->mm_count);
Eddie Dong74906342007-06-19 18:05:03 +0300170 kvm_io_bus_init(&kvm->pio_bus);
Shaohua Li11ec2802007-07-23 14:51:37 +0800171 mutex_init(&kvm->lock);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400172 kvm_io_bus_init(&kvm->mmio_bus);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000173 spin_lock(&kvm_lock);
174 list_add(&kvm->vm_list, &vm_list);
175 spin_unlock(&kvm_lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800176out:
Avi Kivityf17abe92007-02-21 19:28:04 +0200177 return kvm;
178}
179
Avi Kivity6aa8b732006-12-10 02:21:36 -0800180/*
181 * Free any memory in @free but not in @dont.
182 */
183static void kvm_free_physmem_slot(struct kvm_memory_slot *free,
184 struct kvm_memory_slot *dont)
185{
Izik Eidus290fc382007-09-27 14:11:22 +0200186 if (!dont || free->rmap != dont->rmap)
187 vfree(free->rmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800188
189 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
190 vfree(free->dirty_bitmap);
191
Avi Kivity6aa8b732006-12-10 02:21:36 -0800192 free->npages = 0;
Al Viro8b6d44c2007-02-09 16:38:40 +0000193 free->dirty_bitmap = NULL;
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500194 free->rmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800195}
196
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800197void kvm_free_physmem(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800198{
199 int i;
200
201 for (i = 0; i < kvm->nmemslots; ++i)
Al Viro8b6d44c2007-02-09 16:38:40 +0000202 kvm_free_physmem_slot(&kvm->memslots[i], NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800203}
204
Avi Kivityf17abe92007-02-21 19:28:04 +0200205static void kvm_destroy_vm(struct kvm *kvm)
206{
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200207 struct mm_struct *mm = kvm->mm;
208
Avi Kivity133de902007-02-12 00:54:44 -0800209 spin_lock(&kvm_lock);
210 list_del(&kvm->vm_list);
211 spin_unlock(&kvm_lock);
Eddie Dong74906342007-06-19 18:05:03 +0300212 kvm_io_bus_destroy(&kvm->pio_bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400213 kvm_io_bus_destroy(&kvm->mmio_bus);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800214 kvm_arch_destroy_vm(kvm);
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200215 mmdrop(mm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200216}
217
218static int kvm_vm_release(struct inode *inode, struct file *filp)
219{
220 struct kvm *kvm = filp->private_data;
221
222 kvm_destroy_vm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800223 return 0;
224}
225
Avi Kivity6aa8b732006-12-10 02:21:36 -0800226/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800227 * Allocate some memory and give it an address in the guest physical address
228 * space.
229 *
230 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800231 *
232 * Must be called holding kvm->lock.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800233 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800234int __kvm_set_memory_region(struct kvm *kvm,
235 struct kvm_userspace_memory_region *mem,
236 int user_alloc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800237{
238 int r;
239 gfn_t base_gfn;
240 unsigned long npages;
241 unsigned long i;
242 struct kvm_memory_slot *memslot;
243 struct kvm_memory_slot old, new;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800244
245 r = -EINVAL;
246 /* General sanity checks */
247 if (mem->memory_size & (PAGE_SIZE - 1))
248 goto out;
249 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
250 goto out;
Izik Eiduse0d62c72007-10-24 23:57:46 +0200251 if (mem->slot >= KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800252 goto out;
253 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
254 goto out;
255
256 memslot = &kvm->memslots[mem->slot];
257 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
258 npages = mem->memory_size >> PAGE_SHIFT;
259
260 if (!npages)
261 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
262
Avi Kivity6aa8b732006-12-10 02:21:36 -0800263 new = old = *memslot;
264
265 new.base_gfn = base_gfn;
266 new.npages = npages;
267 new.flags = mem->flags;
268
269 /* Disallow changing a memory slot's size. */
270 r = -EINVAL;
271 if (npages && old.npages && npages != old.npages)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800272 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800273
274 /* Check for overlaps */
275 r = -EEXIST;
276 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
277 struct kvm_memory_slot *s = &kvm->memslots[i];
278
279 if (s == memslot)
280 continue;
281 if (!((base_gfn + npages <= s->base_gfn) ||
282 (base_gfn >= s->base_gfn + s->npages)))
Sheng Yangf78e0e22007-10-29 09:40:42 +0800283 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800284 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800285
Avi Kivity6aa8b732006-12-10 02:21:36 -0800286 /* Free page dirty bitmap if unneeded */
287 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000288 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800289
290 r = -ENOMEM;
291
292 /* Allocate if a slot is being created */
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500293 if (npages && !new.rmap) {
Mike Dayd77c26f2007-10-08 09:02:08 -0400294 new.rmap = vmalloc(npages * sizeof(struct page *));
Izik Eidus290fc382007-09-27 14:11:22 +0200295
296 if (!new.rmap)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800297 goto out_free;
Izik Eidus290fc382007-09-27 14:11:22 +0200298
Izik Eidus290fc382007-09-27 14:11:22 +0200299 memset(new.rmap, 0, npages * sizeof(*new.rmap));
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500300
Izik Eidus80b14b52007-10-25 11:54:04 +0200301 new.user_alloc = user_alloc;
Zhang Xiantao0de10342007-11-20 16:25:04 +0800302 new.userspace_addr = mem->userspace_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800303 }
304
305 /* Allocate page dirty bitmap if needed */
306 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
307 unsigned dirty_bytes = ALIGN(npages, BITS_PER_LONG) / 8;
308
309 new.dirty_bitmap = vmalloc(dirty_bytes);
310 if (!new.dirty_bitmap)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800311 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800312 memset(new.dirty_bitmap, 0, dirty_bytes);
313 }
314
Avi Kivity6aa8b732006-12-10 02:21:36 -0800315 if (mem->slot >= kvm->nmemslots)
316 kvm->nmemslots = mem->slot + 1;
317
318 *memslot = new;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800319
Zhang Xiantao0de10342007-11-20 16:25:04 +0800320 r = kvm_arch_set_memory_region(kvm, mem, old, user_alloc);
321 if (r) {
322 *memslot = old;
323 goto out_free;
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800324 }
325
Avi Kivity6aa8b732006-12-10 02:21:36 -0800326 kvm_free_physmem_slot(&old, &new);
327 return 0;
328
Sheng Yangf78e0e22007-10-29 09:40:42 +0800329out_free:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800330 kvm_free_physmem_slot(&new, &old);
331out:
332 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +0200333
334}
Sheng Yangf78e0e22007-10-29 09:40:42 +0800335EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
336
337int kvm_set_memory_region(struct kvm *kvm,
338 struct kvm_userspace_memory_region *mem,
339 int user_alloc)
340{
341 int r;
342
343 mutex_lock(&kvm->lock);
344 r = __kvm_set_memory_region(kvm, mem, user_alloc);
345 mutex_unlock(&kvm->lock);
346 return r;
347}
Izik Eidus210c7c42007-10-24 23:52:57 +0200348EXPORT_SYMBOL_GPL(kvm_set_memory_region);
349
Carsten Otte1fe779f2007-10-29 16:08:35 +0100350int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
351 struct
352 kvm_userspace_memory_region *mem,
353 int user_alloc)
Izik Eidus210c7c42007-10-24 23:52:57 +0200354{
Izik Eiduse0d62c72007-10-24 23:57:46 +0200355 if (mem->slot >= KVM_MEMORY_SLOTS)
356 return -EINVAL;
Izik Eidus210c7c42007-10-24 23:52:57 +0200357 return kvm_set_memory_region(kvm, mem, user_alloc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800358}
359
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800360int kvm_get_dirty_log(struct kvm *kvm,
361 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800362{
363 struct kvm_memory_slot *memslot;
364 int r, i;
365 int n;
366 unsigned long any = 0;
367
Avi Kivity6aa8b732006-12-10 02:21:36 -0800368 r = -EINVAL;
369 if (log->slot >= KVM_MEMORY_SLOTS)
370 goto out;
371
372 memslot = &kvm->memslots[log->slot];
373 r = -ENOENT;
374 if (!memslot->dirty_bitmap)
375 goto out;
376
Uri Lublincd1a4a92007-02-22 16:43:09 +0200377 n = ALIGN(memslot->npages, BITS_PER_LONG) / 8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800378
Uri Lublincd1a4a92007-02-22 16:43:09 +0200379 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800380 any = memslot->dirty_bitmap[i];
381
382 r = -EFAULT;
383 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
384 goto out;
385
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800386 if (any)
387 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800388
389 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800390out:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800391 return r;
392}
393
Izik Eiduscea7bb22007-10-17 19:17:48 +0200394int is_error_page(struct page *page)
395{
396 return page == bad_page;
397}
398EXPORT_SYMBOL_GPL(is_error_page);
399
Izik Eidusf9d46eb2007-11-11 22:02:22 +0200400static inline unsigned long bad_hva(void)
401{
402 return PAGE_OFFSET;
403}
404
405int kvm_is_error_hva(unsigned long addr)
406{
407 return addr == bad_hva();
408}
409EXPORT_SYMBOL_GPL(kvm_is_error_hva);
410
Izik Eidus290fc382007-09-27 14:11:22 +0200411gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
Avi Kivitye8207542007-03-30 16:54:30 +0300412{
413 int i;
414 struct kvm_mem_alias *alias;
415
416 for (i = 0; i < kvm->naliases; ++i) {
417 alias = &kvm->aliases[i];
418 if (gfn >= alias->base_gfn
419 && gfn < alias->base_gfn + alias->npages)
420 return alias->target_gfn + gfn - alias->base_gfn;
421 }
422 return gfn;
423}
424
425static struct kvm_memory_slot *__gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800426{
427 int i;
428
429 for (i = 0; i < kvm->nmemslots; ++i) {
430 struct kvm_memory_slot *memslot = &kvm->memslots[i];
431
432 if (gfn >= memslot->base_gfn
433 && gfn < memslot->base_gfn + memslot->npages)
434 return memslot;
435 }
Al Viro8b6d44c2007-02-09 16:38:40 +0000436 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800437}
Avi Kivitye8207542007-03-30 16:54:30 +0300438
439struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
440{
441 gfn = unalias_gfn(kvm, gfn);
442 return __gfn_to_memslot(kvm, gfn);
443}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800444
Izik Eiduse0d62c72007-10-24 23:57:46 +0200445int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
446{
447 int i;
448
449 gfn = unalias_gfn(kvm, gfn);
450 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
451 struct kvm_memory_slot *memslot = &kvm->memslots[i];
452
453 if (gfn >= memslot->base_gfn
454 && gfn < memslot->base_gfn + memslot->npages)
455 return 1;
456 }
457 return 0;
458}
459EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
460
Izik Eidus539cb662007-11-11 22:05:04 +0200461static unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
462{
463 struct kvm_memory_slot *slot;
464
465 gfn = unalias_gfn(kvm, gfn);
466 slot = __gfn_to_memslot(kvm, gfn);
467 if (!slot)
468 return bad_hva();
469 return (slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE);
470}
471
Anthony Liguoriaab61cc2007-10-29 15:15:20 -0500472/*
473 * Requires current->mm->mmap_sem to be held
474 */
475static struct page *__gfn_to_page(struct kvm *kvm, gfn_t gfn)
Avi Kivity954bbbc22007-03-30 14:02:32 +0300476{
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500477 struct page *page[1];
Izik Eidus539cb662007-11-11 22:05:04 +0200478 unsigned long addr;
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500479 int npages;
Avi Kivity954bbbc22007-03-30 14:02:32 +0300480
Avi Kivity60395222007-10-21 11:03:36 +0200481 might_sleep();
482
Izik Eidus539cb662007-11-11 22:05:04 +0200483 addr = gfn_to_hva(kvm, gfn);
484 if (kvm_is_error_hva(addr)) {
Izik Eidus8a7ae052007-10-18 11:09:33 +0200485 get_page(bad_page);
Izik Eiduscea7bb22007-10-17 19:17:48 +0200486 return bad_page;
Izik Eidus8a7ae052007-10-18 11:09:33 +0200487 }
Izik Eidus8a7ae052007-10-18 11:09:33 +0200488
Izik Eidus539cb662007-11-11 22:05:04 +0200489 npages = get_user_pages(current, current->mm, addr, 1, 1, 1, page,
490 NULL);
491
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500492 if (npages != 1) {
493 get_page(bad_page);
494 return bad_page;
Izik Eidus8a7ae052007-10-18 11:09:33 +0200495 }
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500496
497 return page[0];
Avi Kivity954bbbc22007-03-30 14:02:32 +0300498}
Anthony Liguoriaab61cc2007-10-29 15:15:20 -0500499
500struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
501{
502 struct page *page;
503
504 down_read(&current->mm->mmap_sem);
505 page = __gfn_to_page(kvm, gfn);
506 up_read(&current->mm->mmap_sem);
507
508 return page;
509}
510
Avi Kivity954bbbc22007-03-30 14:02:32 +0300511EXPORT_SYMBOL_GPL(gfn_to_page);
512
Izik Eidusb4231d62007-11-20 11:49:33 +0200513void kvm_release_page_clean(struct page *page)
514{
515 put_page(page);
516}
517EXPORT_SYMBOL_GPL(kvm_release_page_clean);
518
519void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +0200520{
521 if (!PageReserved(page))
522 SetPageDirty(page);
523 put_page(page);
524}
Izik Eidusb4231d62007-11-20 11:49:33 +0200525EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +0200526
Izik Eidus195aefd2007-10-01 22:14:18 +0200527static int next_segment(unsigned long len, int offset)
528{
529 if (len > PAGE_SIZE - offset)
530 return PAGE_SIZE - offset;
531 else
532 return len;
533}
534
535int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
536 int len)
537{
Izik Eiduse0506bc2007-11-11 22:10:22 +0200538 int r;
539 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +0200540
Izik Eiduse0506bc2007-11-11 22:10:22 +0200541 addr = gfn_to_hva(kvm, gfn);
542 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +0200543 return -EFAULT;
Izik Eiduse0506bc2007-11-11 22:10:22 +0200544 r = copy_from_user(data, (void __user *)addr + offset, len);
545 if (r)
546 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +0200547 return 0;
548}
549EXPORT_SYMBOL_GPL(kvm_read_guest_page);
550
551int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
552{
553 gfn_t gfn = gpa >> PAGE_SHIFT;
554 int seg;
555 int offset = offset_in_page(gpa);
556 int ret;
557
558 while ((seg = next_segment(len, offset)) != 0) {
559 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
560 if (ret < 0)
561 return ret;
562 offset = 0;
563 len -= seg;
564 data += seg;
565 ++gfn;
566 }
567 return 0;
568}
569EXPORT_SYMBOL_GPL(kvm_read_guest);
570
571int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
572 int offset, int len)
573{
Izik Eiduse0506bc2007-11-11 22:10:22 +0200574 int r;
575 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +0200576
Izik Eiduse0506bc2007-11-11 22:10:22 +0200577 addr = gfn_to_hva(kvm, gfn);
578 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +0200579 return -EFAULT;
Izik Eiduse0506bc2007-11-11 22:10:22 +0200580 r = copy_to_user((void __user *)addr + offset, data, len);
581 if (r)
582 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +0200583 mark_page_dirty(kvm, gfn);
584 return 0;
585}
586EXPORT_SYMBOL_GPL(kvm_write_guest_page);
587
588int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
589 unsigned long len)
590{
591 gfn_t gfn = gpa >> PAGE_SHIFT;
592 int seg;
593 int offset = offset_in_page(gpa);
594 int ret;
595
596 while ((seg = next_segment(len, offset)) != 0) {
597 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
598 if (ret < 0)
599 return ret;
600 offset = 0;
601 len -= seg;
602 data += seg;
603 ++gfn;
604 }
605 return 0;
606}
607
608int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
609{
Izik Eidus3e021bf2007-11-19 11:16:57 +0200610 return kvm_write_guest_page(kvm, gfn, empty_zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +0200611}
612EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
613
614int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
615{
616 gfn_t gfn = gpa >> PAGE_SHIFT;
617 int seg;
618 int offset = offset_in_page(gpa);
619 int ret;
620
621 while ((seg = next_segment(len, offset)) != 0) {
622 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
623 if (ret < 0)
624 return ret;
625 offset = 0;
626 len -= seg;
627 ++gfn;
628 }
629 return 0;
630}
631EXPORT_SYMBOL_GPL(kvm_clear_guest);
632
Avi Kivity6aa8b732006-12-10 02:21:36 -0800633void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
634{
Nguyen Anh Quynh31389942007-06-05 10:35:19 +0300635 struct kvm_memory_slot *memslot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800636
Uri Lublin3b6fff12007-10-30 10:42:09 +0200637 gfn = unalias_gfn(kvm, gfn);
Rusty Russell7e9d6192007-07-31 20:41:14 +1000638 memslot = __gfn_to_memslot(kvm, gfn);
639 if (memslot && memslot->dirty_bitmap) {
640 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800641
Rusty Russell7e9d6192007-07-31 20:41:14 +1000642 /* avoid RMW */
643 if (!test_bit(rel_gfn, memslot->dirty_bitmap))
644 set_bit(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800645 }
646}
647
Eddie Dongb6958ce2007-07-18 12:15:21 +0300648/*
649 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
650 */
Hollis Blanchard8776e512007-10-31 17:24:24 -0500651void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +0300652{
653 DECLARE_WAITQUEUE(wait, current);
654
655 add_wait_queue(&vcpu->wq, &wait);
656
657 /*
658 * We will block until either an interrupt or a signal wakes us up
659 */
He, Qingc5ec1532007-09-03 17:07:41 +0300660 while (!kvm_cpu_has_interrupt(vcpu)
661 && !signal_pending(current)
662 && vcpu->mp_state != VCPU_MP_STATE_RUNNABLE
663 && vcpu->mp_state != VCPU_MP_STATE_SIPI_RECEIVED) {
Eddie Dongb6958ce2007-07-18 12:15:21 +0300664 set_current_state(TASK_INTERRUPTIBLE);
665 vcpu_put(vcpu);
666 schedule();
667 vcpu_load(vcpu);
668 }
669
He, Qingc5ec1532007-09-03 17:07:41 +0300670 __set_current_state(TASK_RUNNING);
Eddie Dongb6958ce2007-07-18 12:15:21 +0300671 remove_wait_queue(&vcpu->wq, &wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +0300672}
673
Avi Kivity6aa8b732006-12-10 02:21:36 -0800674void kvm_resched(struct kvm_vcpu *vcpu)
675{
Yaozu Dong3fca0362007-04-25 16:49:19 +0300676 if (!need_resched())
677 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800678 cond_resched();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800679}
680EXPORT_SYMBOL_GPL(kvm_resched);
681
Avi Kivitybccf2152007-02-21 18:04:26 +0200682static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
683 struct kvm_interrupt *irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800685 if (irq->irq < 0 || irq->irq >= 256)
686 return -EINVAL;
Eddie Dong97222cc2007-09-12 10:58:04 +0300687 if (irqchip_in_kernel(vcpu->kvm))
688 return -ENXIO;
Avi Kivitybccf2152007-02-21 18:04:26 +0200689 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800690
691 set_bit(irq->irq, vcpu->irq_pending);
692 set_bit(irq->irq / BITS_PER_LONG, &vcpu->irq_summary);
693
694 vcpu_put(vcpu);
695
696 return 0;
697}
698
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200699static struct page *kvm_vcpu_nopage(struct vm_area_struct *vma,
700 unsigned long address,
701 int *type)
702{
703 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
704 unsigned long pgoff;
705 struct page *page;
706
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200707 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Avi Kivity039576c2007-03-20 12:46:50 +0200708 if (pgoff == 0)
709 page = virt_to_page(vcpu->run);
710 else if (pgoff == KVM_PIO_PAGE_OFFSET)
711 page = virt_to_page(vcpu->pio_data);
712 else
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200713 return NOPAGE_SIGBUS;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200714 get_page(page);
Nguyen Anh Quynhcd0d9132007-07-11 14:30:54 +0300715 if (type != NULL)
716 *type = VM_FAULT_MINOR;
717
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200718 return page;
719}
720
721static struct vm_operations_struct kvm_vcpu_vm_ops = {
722 .nopage = kvm_vcpu_nopage,
723};
724
725static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
726{
727 vma->vm_ops = &kvm_vcpu_vm_ops;
728 return 0;
729}
730
Avi Kivitybccf2152007-02-21 18:04:26 +0200731static int kvm_vcpu_release(struct inode *inode, struct file *filp)
732{
733 struct kvm_vcpu *vcpu = filp->private_data;
734
735 fput(vcpu->kvm->filp);
736 return 0;
737}
738
739static struct file_operations kvm_vcpu_fops = {
740 .release = kvm_vcpu_release,
741 .unlocked_ioctl = kvm_vcpu_ioctl,
742 .compat_ioctl = kvm_vcpu_ioctl,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200743 .mmap = kvm_vcpu_mmap,
Avi Kivitybccf2152007-02-21 18:04:26 +0200744};
745
746/*
747 * Allocates an inode for the vcpu.
748 */
749static int create_vcpu_fd(struct kvm_vcpu *vcpu)
750{
751 int fd, r;
752 struct inode *inode;
753 struct file *file;
754
Avi Kivityd6d28162007-06-28 08:38:16 -0400755 r = anon_inode_getfd(&fd, &inode, &file,
756 "kvm-vcpu", &kvm_vcpu_fops, vcpu);
757 if (r)
758 return r;
Avi Kivitybccf2152007-02-21 18:04:26 +0200759 atomic_inc(&vcpu->kvm->filp->f_count);
Avi Kivitybccf2152007-02-21 18:04:26 +0200760 return fd;
Avi Kivitybccf2152007-02-21 18:04:26 +0200761}
762
Avi Kivityc5ea7662007-02-20 18:41:05 +0200763/*
764 * Creates some virtual cpus. Good luck creating more than one.
765 */
766static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, int n)
767{
768 int r;
769 struct kvm_vcpu *vcpu;
770
Avi Kivityc5ea7662007-02-20 18:41:05 +0200771 if (!valid_vcpu(n))
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000772 return -EINVAL;
Avi Kivityc5ea7662007-02-20 18:41:05 +0200773
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800774 vcpu = kvm_arch_vcpu_create(kvm, n);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000775 if (IS_ERR(vcpu))
776 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +0200777
Avi Kivity15ad7142007-07-11 18:17:21 +0300778 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
779
Avi Kivity26e52152007-11-20 15:30:24 +0200780 r = kvm_arch_vcpu_setup(vcpu);
781 if (r)
782 goto vcpu_destroy;
783
Shaohua Li11ec2802007-07-23 14:51:37 +0800784 mutex_lock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000785 if (kvm->vcpus[n]) {
786 r = -EEXIST;
Shaohua Li11ec2802007-07-23 14:51:37 +0800787 mutex_unlock(&kvm->lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800788 goto vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000789 }
790 kvm->vcpus[n] = vcpu;
Shaohua Li11ec2802007-07-23 14:51:37 +0800791 mutex_unlock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000792
793 /* Now it's all set up, let userspace reach it */
Avi Kivitybccf2152007-02-21 18:04:26 +0200794 r = create_vcpu_fd(vcpu);
795 if (r < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000796 goto unlink;
Avi Kivitybccf2152007-02-21 18:04:26 +0200797 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +0200798
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000799unlink:
Shaohua Li11ec2802007-07-23 14:51:37 +0800800 mutex_lock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000801 kvm->vcpus[n] = NULL;
Shaohua Li11ec2802007-07-23 14:51:37 +0800802 mutex_unlock(&kvm->lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800803vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -0600804 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +0200805 return r;
806}
807
Avi Kivity1961d272007-03-05 19:46:05 +0200808static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
809{
810 if (sigset) {
811 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
812 vcpu->sigset_active = 1;
813 vcpu->sigset = *sigset;
814 } else
815 vcpu->sigset_active = 0;
816 return 0;
817}
818
Avi Kivitybccf2152007-02-21 18:04:26 +0200819static long kvm_vcpu_ioctl(struct file *filp,
820 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800821{
Avi Kivitybccf2152007-02-21 18:04:26 +0200822 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f366982007-02-09 16:38:35 +0000823 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +0200824 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800825
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200826 if (vcpu->kvm->mm != current->mm)
827 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800828 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200829 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +0200830 r = -EINVAL;
831 if (arg)
832 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500833 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800834 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800835 case KVM_GET_REGS: {
836 struct kvm_regs kvm_regs;
837
Avi Kivitybccf2152007-02-21 18:04:26 +0200838 memset(&kvm_regs, 0, sizeof kvm_regs);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500839 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, &kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800840 if (r)
841 goto out;
842 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000843 if (copy_to_user(argp, &kvm_regs, sizeof kvm_regs))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800844 goto out;
845 r = 0;
846 break;
847 }
848 case KVM_SET_REGS: {
849 struct kvm_regs kvm_regs;
850
851 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000852 if (copy_from_user(&kvm_regs, argp, sizeof kvm_regs))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800853 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500854 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, &kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800855 if (r)
856 goto out;
857 r = 0;
858 break;
859 }
860 case KVM_GET_SREGS: {
861 struct kvm_sregs kvm_sregs;
862
Avi Kivitybccf2152007-02-21 18:04:26 +0200863 memset(&kvm_sregs, 0, sizeof kvm_sregs);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500864 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, &kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800865 if (r)
866 goto out;
867 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000868 if (copy_to_user(argp, &kvm_sregs, sizeof kvm_sregs))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800869 goto out;
870 r = 0;
871 break;
872 }
873 case KVM_SET_SREGS: {
874 struct kvm_sregs kvm_sregs;
875
876 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000877 if (copy_from_user(&kvm_sregs, argp, sizeof kvm_sregs))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800878 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500879 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, &kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800880 if (r)
881 goto out;
882 r = 0;
883 break;
884 }
885 case KVM_TRANSLATE: {
886 struct kvm_translation tr;
887
888 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000889 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800890 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +0800891 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800892 if (r)
893 goto out;
894 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000895 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800896 goto out;
897 r = 0;
898 break;
899 }
900 case KVM_INTERRUPT: {
901 struct kvm_interrupt irq;
902
903 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000904 if (copy_from_user(&irq, argp, sizeof irq))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800905 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +0200906 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800907 if (r)
908 goto out;
909 r = 0;
910 break;
911 }
912 case KVM_DEBUG_GUEST: {
913 struct kvm_debug_guest dbg;
914
915 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000916 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800917 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500918 r = kvm_arch_vcpu_ioctl_debug_guest(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800919 if (r)
920 goto out;
921 r = 0;
922 break;
923 }
Avi Kivity1961d272007-03-05 19:46:05 +0200924 case KVM_SET_SIGNAL_MASK: {
925 struct kvm_signal_mask __user *sigmask_arg = argp;
926 struct kvm_signal_mask kvm_sigmask;
927 sigset_t sigset, *p;
928
929 p = NULL;
930 if (argp) {
931 r = -EFAULT;
932 if (copy_from_user(&kvm_sigmask, argp,
933 sizeof kvm_sigmask))
934 goto out;
935 r = -EINVAL;
936 if (kvm_sigmask.len != sizeof sigset)
937 goto out;
938 r = -EFAULT;
939 if (copy_from_user(&sigset, sigmask_arg->sigset,
940 sizeof sigset))
941 goto out;
942 p = &sigset;
943 }
944 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
945 break;
946 }
Avi Kivityb8836732007-04-01 16:34:31 +0300947 case KVM_GET_FPU: {
948 struct kvm_fpu fpu;
949
950 memset(&fpu, 0, sizeof fpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -0500951 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, &fpu);
Avi Kivityb8836732007-04-01 16:34:31 +0300952 if (r)
953 goto out;
954 r = -EFAULT;
955 if (copy_to_user(argp, &fpu, sizeof fpu))
956 goto out;
957 r = 0;
958 break;
959 }
960 case KVM_SET_FPU: {
961 struct kvm_fpu fpu;
962
963 r = -EFAULT;
964 if (copy_from_user(&fpu, argp, sizeof fpu))
965 goto out;
Hollis Blanchardd0752062007-10-31 17:24:25 -0500966 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, &fpu);
Avi Kivityb8836732007-04-01 16:34:31 +0300967 if (r)
968 goto out;
969 r = 0;
970 break;
971 }
Avi Kivitybccf2152007-02-21 18:04:26 +0200972 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +0200973 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +0200974 }
975out:
976 return r;
977}
978
979static long kvm_vm_ioctl(struct file *filp,
980 unsigned int ioctl, unsigned long arg)
981{
982 struct kvm *kvm = filp->private_data;
983 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +0100984 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +0200985
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200986 if (kvm->mm != current->mm)
987 return -EIO;
Avi Kivitybccf2152007-02-21 18:04:26 +0200988 switch (ioctl) {
989 case KVM_CREATE_VCPU:
990 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
991 if (r < 0)
992 goto out;
993 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +0200994 case KVM_SET_USER_MEMORY_REGION: {
995 struct kvm_userspace_memory_region kvm_userspace_mem;
996
997 r = -EFAULT;
998 if (copy_from_user(&kvm_userspace_mem, argp,
999 sizeof kvm_userspace_mem))
1000 goto out;
1001
1002 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001003 if (r)
1004 goto out;
1005 break;
1006 }
1007 case KVM_GET_DIRTY_LOG: {
1008 struct kvm_dirty_log log;
1009
1010 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00001011 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001012 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02001013 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001014 if (r)
1015 goto out;
1016 break;
1017 }
Avi Kivityf17abe92007-02-21 19:28:04 +02001018 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01001019 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02001020 }
1021out:
1022 return r;
1023}
1024
1025static struct page *kvm_vm_nopage(struct vm_area_struct *vma,
1026 unsigned long address,
1027 int *type)
1028{
1029 struct kvm *kvm = vma->vm_file->private_data;
1030 unsigned long pgoff;
Avi Kivityf17abe92007-02-21 19:28:04 +02001031 struct page *page;
1032
Avi Kivityf17abe92007-02-21 19:28:04 +02001033 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001034 if (!kvm_is_visible_gfn(kvm, pgoff))
1035 return NOPAGE_SIGBUS;
Anthony Liguoriaab61cc2007-10-29 15:15:20 -05001036 /* current->mm->mmap_sem is already held so call lockless version */
1037 page = __gfn_to_page(kvm, pgoff);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001038 if (is_error_page(page)) {
Izik Eidusb4231d62007-11-20 11:49:33 +02001039 kvm_release_page_clean(page);
Avi Kivityf17abe92007-02-21 19:28:04 +02001040 return NOPAGE_SIGBUS;
Izik Eidus8a7ae052007-10-18 11:09:33 +02001041 }
Nguyen Anh Quynhcd0d9132007-07-11 14:30:54 +03001042 if (type != NULL)
1043 *type = VM_FAULT_MINOR;
1044
Avi Kivityf17abe92007-02-21 19:28:04 +02001045 return page;
1046}
1047
1048static struct vm_operations_struct kvm_vm_vm_ops = {
1049 .nopage = kvm_vm_nopage,
1050};
1051
1052static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
1053{
1054 vma->vm_ops = &kvm_vm_vm_ops;
1055 return 0;
1056}
1057
1058static struct file_operations kvm_vm_fops = {
1059 .release = kvm_vm_release,
1060 .unlocked_ioctl = kvm_vm_ioctl,
1061 .compat_ioctl = kvm_vm_ioctl,
1062 .mmap = kvm_vm_mmap,
1063};
1064
1065static int kvm_dev_ioctl_create_vm(void)
1066{
1067 int fd, r;
1068 struct inode *inode;
1069 struct file *file;
1070 struct kvm *kvm;
1071
Avi Kivityf17abe92007-02-21 19:28:04 +02001072 kvm = kvm_create_vm();
Avi Kivityd6d28162007-06-28 08:38:16 -04001073 if (IS_ERR(kvm))
1074 return PTR_ERR(kvm);
1075 r = anon_inode_getfd(&fd, &inode, &file, "kvm-vm", &kvm_vm_fops, kvm);
1076 if (r) {
1077 kvm_destroy_vm(kvm);
1078 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02001079 }
1080
Avi Kivitybccf2152007-02-21 18:04:26 +02001081 kvm->filp = file;
Avi Kivityf17abe92007-02-21 19:28:04 +02001082
Avi Kivityf17abe92007-02-21 19:28:04 +02001083 return fd;
Avi Kivityf17abe92007-02-21 19:28:04 +02001084}
1085
1086static long kvm_dev_ioctl(struct file *filp,
1087 unsigned int ioctl, unsigned long arg)
1088{
1089 void __user *argp = (void __user *)arg;
Avi Kivity07c45a32007-03-07 13:05:38 +02001090 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02001091
1092 switch (ioctl) {
1093 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02001094 r = -EINVAL;
1095 if (arg)
1096 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02001097 r = KVM_API_VERSION;
1098 break;
1099 case KVM_CREATE_VM:
Avi Kivityf0fe5102007-03-07 13:11:17 +02001100 r = -EINVAL;
1101 if (arg)
1102 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02001103 r = kvm_dev_ioctl_create_vm();
1104 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08001105 case KVM_CHECK_EXTENSION:
1106 r = kvm_dev_ioctl_check_extension((long)argp);
Avi Kivity5d308f42007-03-01 17:56:20 +02001107 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02001108 case KVM_GET_VCPU_MMAP_SIZE:
1109 r = -EINVAL;
1110 if (arg)
1111 goto out;
Avi Kivity039576c2007-03-20 12:46:50 +02001112 r = 2 * PAGE_SIZE;
Avi Kivity07c45a32007-03-07 13:05:38 +02001113 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001114 default:
Carsten Otte043405e2007-10-10 17:16:19 +02001115 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001116 }
1117out:
1118 return r;
1119}
1120
Avi Kivity6aa8b732006-12-10 02:21:36 -08001121static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001122 .unlocked_ioctl = kvm_dev_ioctl,
1123 .compat_ioctl = kvm_dev_ioctl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001124};
1125
1126static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02001127 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001128 "kvm",
1129 &kvm_chardev_ops,
1130};
1131
Avi Kivity1b6c0162007-05-24 13:03:52 +03001132static void hardware_enable(void *junk)
1133{
1134 int cpu = raw_smp_processor_id();
1135
1136 if (cpu_isset(cpu, cpus_hardware_enabled))
1137 return;
1138 cpu_set(cpu, cpus_hardware_enabled);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001139 kvm_arch_hardware_enable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03001140}
1141
1142static void hardware_disable(void *junk)
1143{
1144 int cpu = raw_smp_processor_id();
1145
1146 if (!cpu_isset(cpu, cpus_hardware_enabled))
1147 return;
1148 cpu_clear(cpu, cpus_hardware_enabled);
1149 decache_vcpus_on_cpu(cpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001150 kvm_arch_hardware_disable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03001151}
1152
Avi Kivity774c47f2007-02-12 00:54:47 -08001153static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
1154 void *v)
1155{
1156 int cpu = (long)v;
1157
Avi Kivity1a6f4d72007-11-11 18:37:32 +02001158 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08001159 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03001160 case CPU_DYING:
Avi Kivity6ec8a852007-08-19 15:57:26 +03001161 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
1162 cpu);
1163 hardware_disable(NULL);
1164 break;
Avi Kivity774c47f2007-02-12 00:54:47 -08001165 case CPU_UP_CANCELED:
Jeremy Katz43934a32007-02-19 14:37:46 +02001166 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
1167 cpu);
Avi Kivity1b6c0162007-05-24 13:03:52 +03001168 smp_call_function_single(cpu, hardware_disable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08001169 break;
Jeremy Katz43934a32007-02-19 14:37:46 +02001170 case CPU_ONLINE:
1171 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
1172 cpu);
Avi Kivity1b6c0162007-05-24 13:03:52 +03001173 smp_call_function_single(cpu, hardware_enable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08001174 break;
1175 }
1176 return NOTIFY_OK;
1177}
1178
Rusty Russell9a2b85c2007-07-17 23:17:55 +10001179static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04001180 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10001181{
1182 if (val == SYS_RESTART) {
1183 /*
1184 * Some (well, at least mine) BIOSes hang on reboot if
1185 * in vmx root mode.
1186 */
1187 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
1188 on_each_cpu(hardware_disable, NULL, 0, 1);
1189 }
1190 return NOTIFY_OK;
1191}
1192
1193static struct notifier_block kvm_reboot_notifier = {
1194 .notifier_call = kvm_reboot,
1195 .priority = 0,
1196};
1197
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001198void kvm_io_bus_init(struct kvm_io_bus *bus)
1199{
1200 memset(bus, 0, sizeof(*bus));
1201}
1202
1203void kvm_io_bus_destroy(struct kvm_io_bus *bus)
1204{
1205 int i;
1206
1207 for (i = 0; i < bus->dev_count; i++) {
1208 struct kvm_io_device *pos = bus->devs[i];
1209
1210 kvm_iodevice_destructor(pos);
1211 }
1212}
1213
1214struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, gpa_t addr)
1215{
1216 int i;
1217
1218 for (i = 0; i < bus->dev_count; i++) {
1219 struct kvm_io_device *pos = bus->devs[i];
1220
1221 if (pos->in_range(pos, addr))
1222 return pos;
1223 }
1224
1225 return NULL;
1226}
1227
1228void kvm_io_bus_register_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev)
1229{
1230 BUG_ON(bus->dev_count > (NR_IOBUS_DEVS-1));
1231
1232 bus->devs[bus->dev_count++] = dev;
1233}
1234
Avi Kivity774c47f2007-02-12 00:54:47 -08001235static struct notifier_block kvm_cpu_notifier = {
1236 .notifier_call = kvm_cpu_hotplug,
1237 .priority = 20, /* must be > scheduler priority */
1238};
1239
Avi Kivityba1389b2007-11-18 16:24:12 +02001240static u64 vm_stat_get(void *_offset)
1241{
1242 unsigned offset = (long)_offset;
1243 u64 total = 0;
1244 struct kvm *kvm;
1245
1246 spin_lock(&kvm_lock);
1247 list_for_each_entry(kvm, &vm_list, vm_list)
1248 total += *(u32 *)((void *)kvm + offset);
1249 spin_unlock(&kvm_lock);
1250 return total;
1251}
1252
1253DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
1254
1255static u64 vcpu_stat_get(void *_offset)
Avi Kivity1165f5f2007-04-19 17:27:43 +03001256{
1257 unsigned offset = (long)_offset;
1258 u64 total = 0;
1259 struct kvm *kvm;
1260 struct kvm_vcpu *vcpu;
1261 int i;
1262
1263 spin_lock(&kvm_lock);
1264 list_for_each_entry(kvm, &vm_list, vm_list)
1265 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001266 vcpu = kvm->vcpus[i];
1267 if (vcpu)
1268 total += *(u32 *)((void *)vcpu + offset);
Avi Kivity1165f5f2007-04-19 17:27:43 +03001269 }
1270 spin_unlock(&kvm_lock);
1271 return total;
1272}
1273
Avi Kivityba1389b2007-11-18 16:24:12 +02001274DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
1275
1276static struct file_operations *stat_fops[] = {
1277 [KVM_STAT_VCPU] = &vcpu_stat_fops,
1278 [KVM_STAT_VM] = &vm_stat_fops,
1279};
Avi Kivity1165f5f2007-04-19 17:27:43 +03001280
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08001281static void kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001282{
1283 struct kvm_stats_debugfs_item *p;
1284
Al Viro8b6d44c2007-02-09 16:38:40 +00001285 debugfs_dir = debugfs_create_dir("kvm", NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001286 for (p = debugfs_entries; p->name; ++p)
Avi Kivity1165f5f2007-04-19 17:27:43 +03001287 p->dentry = debugfs_create_file(p->name, 0444, debugfs_dir,
1288 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02001289 stat_fops[p->kind]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001290}
1291
1292static void kvm_exit_debug(void)
1293{
1294 struct kvm_stats_debugfs_item *p;
1295
1296 for (p = debugfs_entries; p->name; ++p)
1297 debugfs_remove(p->dentry);
1298 debugfs_remove(debugfs_dir);
1299}
1300
Avi Kivity59ae6c62007-02-12 00:54:48 -08001301static int kvm_suspend(struct sys_device *dev, pm_message_t state)
1302{
Avi Kivity4267c412007-05-24 13:09:41 +03001303 hardware_disable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08001304 return 0;
1305}
1306
1307static int kvm_resume(struct sys_device *dev)
1308{
Avi Kivity4267c412007-05-24 13:09:41 +03001309 hardware_enable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08001310 return 0;
1311}
1312
1313static struct sysdev_class kvm_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001314 .name = "kvm",
Avi Kivity59ae6c62007-02-12 00:54:48 -08001315 .suspend = kvm_suspend,
1316 .resume = kvm_resume,
1317};
1318
1319static struct sys_device kvm_sysdev = {
1320 .id = 0,
1321 .cls = &kvm_sysdev_class,
1322};
1323
Izik Eiduscea7bb22007-10-17 19:17:48 +02001324struct page *bad_page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001325
Avi Kivity15ad7142007-07-11 18:17:21 +03001326static inline
1327struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
1328{
1329 return container_of(pn, struct kvm_vcpu, preempt_notifier);
1330}
1331
1332static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
1333{
1334 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
1335
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001336 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03001337}
1338
1339static void kvm_sched_out(struct preempt_notifier *pn,
1340 struct task_struct *next)
1341{
1342 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
1343
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001344 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03001345}
1346
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08001347int kvm_init(void *opaque, unsigned int vcpu_size,
Rusty Russellc16f8622007-07-30 21:12:19 +10001348 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001349{
1350 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001351 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001352
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001353 kvm_init_debug();
1354
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08001355 r = kvm_arch_init(opaque);
1356 if (r)
1357 goto out4;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001358
1359 bad_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
1360
1361 if (bad_page == NULL) {
1362 r = -ENOMEM;
1363 goto out;
1364 }
1365
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001366 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001367 if (r < 0)
Avi Kivityca45aaa2007-03-01 19:21:03 +02001368 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001369
Yang, Sheng002c7f72007-07-31 14:23:01 +03001370 for_each_online_cpu(cpu) {
1371 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001372 kvm_arch_check_processor_compat,
Yang, Sheng002c7f72007-07-31 14:23:01 +03001373 &r, 0, 1);
1374 if (r < 0)
1375 goto out_free_0;
1376 }
1377
Avi Kivity1b6c0162007-05-24 13:03:52 +03001378 on_each_cpu(hardware_enable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08001379 r = register_cpu_notifier(&kvm_cpu_notifier);
1380 if (r)
1381 goto out_free_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001382 register_reboot_notifier(&kvm_reboot_notifier);
1383
Avi Kivity59ae6c62007-02-12 00:54:48 -08001384 r = sysdev_class_register(&kvm_sysdev_class);
1385 if (r)
1386 goto out_free_2;
1387
1388 r = sysdev_register(&kvm_sysdev);
1389 if (r)
1390 goto out_free_3;
1391
Rusty Russellc16f8622007-07-30 21:12:19 +10001392 /* A kmem cache lets us meet the alignment requirements of fx_save. */
1393 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size,
Joe Perches56919c52007-11-12 20:06:51 -08001394 __alignof__(struct kvm_vcpu),
1395 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10001396 if (!kvm_vcpu_cache) {
1397 r = -ENOMEM;
1398 goto out_free_4;
1399 }
1400
Avi Kivity6aa8b732006-12-10 02:21:36 -08001401 kvm_chardev_ops.owner = module;
1402
1403 r = misc_register(&kvm_dev);
1404 if (r) {
Mike Dayd77c26f2007-10-08 09:02:08 -04001405 printk(KERN_ERR "kvm: misc device register failed\n");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001406 goto out_free;
1407 }
1408
Avi Kivity15ad7142007-07-11 18:17:21 +03001409 kvm_preempt_ops.sched_in = kvm_sched_in;
1410 kvm_preempt_ops.sched_out = kvm_sched_out;
1411
Avi Kivityc7addb92007-09-16 18:58:32 +02001412 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001413
1414out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10001415 kmem_cache_destroy(kvm_vcpu_cache);
1416out_free_4:
Avi Kivity59ae6c62007-02-12 00:54:48 -08001417 sysdev_unregister(&kvm_sysdev);
1418out_free_3:
1419 sysdev_class_unregister(&kvm_sysdev_class);
1420out_free_2:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001421 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08001422 unregister_cpu_notifier(&kvm_cpu_notifier);
1423out_free_1:
Avi Kivity1b6c0162007-05-24 13:03:52 +03001424 on_each_cpu(hardware_disable, NULL, 0, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03001425out_free_0:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001426 kvm_arch_hardware_unsetup();
Avi Kivityca45aaa2007-03-01 19:21:03 +02001427out:
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08001428 kvm_arch_exit();
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001429 kvm_exit_debug();
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001430out4:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001431 return r;
1432}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001433EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001434
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001435void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001436{
1437 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10001438 kmem_cache_destroy(kvm_vcpu_cache);
Avi Kivity59ae6c62007-02-12 00:54:48 -08001439 sysdev_unregister(&kvm_sysdev);
1440 sysdev_class_unregister(&kvm_sysdev_class);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001441 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08001442 unregister_cpu_notifier(&kvm_cpu_notifier);
Avi Kivity1b6c0162007-05-24 13:03:52 +03001443 on_each_cpu(hardware_disable, NULL, 0, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001444 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08001445 kvm_arch_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001446 kvm_exit_debug();
Izik Eiduscea7bb22007-10-17 19:17:48 +02001447 __free_page(bad_page);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001448}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001449EXPORT_SYMBOL_GPL(kvm_exit);