blob: 93ecafbfb1b6bfdeb147f671ebecd3b5988e244c [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 }
Laurent Vivier49d3bd72007-10-22 16:33:07 +0200118 smp_call_function_mask(cpus, ack_flush, NULL, 1);
Avi Kivityd9e368d2007-06-07 19:18:30 +0300119}
120
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000121int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
122{
123 struct page *page;
124 int r;
125
126 mutex_init(&vcpu->mutex);
127 vcpu->cpu = -1;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000128 vcpu->kvm = kvm;
129 vcpu->vcpu_id = id;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300130 init_waitqueue_head(&vcpu->wq);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000131
132 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
133 if (!page) {
134 r = -ENOMEM;
135 goto fail;
136 }
137 vcpu->run = page_address(page);
138
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800139 r = kvm_arch_vcpu_init(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000140 if (r < 0)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800141 goto fail_free_run;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000142 return 0;
143
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000144fail_free_run:
145 free_page((unsigned long)vcpu->run);
146fail:
Rusty Russell76fafa52007-10-08 10:50:48 +1000147 return r;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000148}
149EXPORT_SYMBOL_GPL(kvm_vcpu_init);
150
151void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
152{
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800153 kvm_arch_vcpu_uninit(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000154 free_page((unsigned long)vcpu->run);
155}
156EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
157
Avi Kivityf17abe92007-02-21 19:28:04 +0200158static struct kvm *kvm_create_vm(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800159{
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800160 struct kvm *kvm = kvm_arch_create_vm();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800161
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800162 if (IS_ERR(kvm))
163 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800164
Eddie Dong74906342007-06-19 18:05:03 +0300165 kvm_io_bus_init(&kvm->pio_bus);
Shaohua Li11ec2802007-07-23 14:51:37 +0800166 mutex_init(&kvm->lock);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400167 kvm_io_bus_init(&kvm->mmio_bus);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000168 spin_lock(&kvm_lock);
169 list_add(&kvm->vm_list, &vm_list);
170 spin_unlock(&kvm_lock);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800171out:
Avi Kivityf17abe92007-02-21 19:28:04 +0200172 return kvm;
173}
174
Avi Kivity6aa8b732006-12-10 02:21:36 -0800175/*
176 * Free any memory in @free but not in @dont.
177 */
178static void kvm_free_physmem_slot(struct kvm_memory_slot *free,
179 struct kvm_memory_slot *dont)
180{
Izik Eidus290fc382007-09-27 14:11:22 +0200181 if (!dont || free->rmap != dont->rmap)
182 vfree(free->rmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800183
184 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
185 vfree(free->dirty_bitmap);
186
Avi Kivity6aa8b732006-12-10 02:21:36 -0800187 free->npages = 0;
Al Viro8b6d44c2007-02-09 16:38:40 +0000188 free->dirty_bitmap = NULL;
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500189 free->rmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800190}
191
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800192void kvm_free_physmem(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800193{
194 int i;
195
196 for (i = 0; i < kvm->nmemslots; ++i)
Al Viro8b6d44c2007-02-09 16:38:40 +0000197 kvm_free_physmem_slot(&kvm->memslots[i], NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800198}
199
Avi Kivityf17abe92007-02-21 19:28:04 +0200200static void kvm_destroy_vm(struct kvm *kvm)
201{
Avi Kivity133de902007-02-12 00:54:44 -0800202 spin_lock(&kvm_lock);
203 list_del(&kvm->vm_list);
204 spin_unlock(&kvm_lock);
Eddie Dong74906342007-06-19 18:05:03 +0300205 kvm_io_bus_destroy(&kvm->pio_bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400206 kvm_io_bus_destroy(&kvm->mmio_bus);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800207 kvm_arch_destroy_vm(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200208}
209
210static int kvm_vm_release(struct inode *inode, struct file *filp)
211{
212 struct kvm *kvm = filp->private_data;
213
214 kvm_destroy_vm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800215 return 0;
216}
217
Avi Kivity6aa8b732006-12-10 02:21:36 -0800218/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800219 * Allocate some memory and give it an address in the guest physical address
220 * space.
221 *
222 * Discontiguous memory is allowed, mostly for framebuffers.
Sheng Yangf78e0e22007-10-29 09:40:42 +0800223 *
224 * Must be called holding kvm->lock.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800225 */
Sheng Yangf78e0e22007-10-29 09:40:42 +0800226int __kvm_set_memory_region(struct kvm *kvm,
227 struct kvm_userspace_memory_region *mem,
228 int user_alloc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800229{
230 int r;
231 gfn_t base_gfn;
232 unsigned long npages;
233 unsigned long i;
234 struct kvm_memory_slot *memslot;
235 struct kvm_memory_slot old, new;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800236
237 r = -EINVAL;
238 /* General sanity checks */
239 if (mem->memory_size & (PAGE_SIZE - 1))
240 goto out;
241 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
242 goto out;
Izik Eiduse0d62c72007-10-24 23:57:46 +0200243 if (mem->slot >= KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800244 goto out;
245 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
246 goto out;
247
248 memslot = &kvm->memslots[mem->slot];
249 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
250 npages = mem->memory_size >> PAGE_SHIFT;
251
252 if (!npages)
253 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
254
Avi Kivity6aa8b732006-12-10 02:21:36 -0800255 new = old = *memslot;
256
257 new.base_gfn = base_gfn;
258 new.npages = npages;
259 new.flags = mem->flags;
260
261 /* Disallow changing a memory slot's size. */
262 r = -EINVAL;
263 if (npages && old.npages && npages != old.npages)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800264 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800265
266 /* Check for overlaps */
267 r = -EEXIST;
268 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
269 struct kvm_memory_slot *s = &kvm->memslots[i];
270
271 if (s == memslot)
272 continue;
273 if (!((base_gfn + npages <= s->base_gfn) ||
274 (base_gfn >= s->base_gfn + s->npages)))
Sheng Yangf78e0e22007-10-29 09:40:42 +0800275 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800276 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800277
Avi Kivity6aa8b732006-12-10 02:21:36 -0800278 /* Free page dirty bitmap if unneeded */
279 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000280 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800281
282 r = -ENOMEM;
283
284 /* Allocate if a slot is being created */
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500285 if (npages && !new.rmap) {
Mike Dayd77c26f2007-10-08 09:02:08 -0400286 new.rmap = vmalloc(npages * sizeof(struct page *));
Izik Eidus290fc382007-09-27 14:11:22 +0200287
288 if (!new.rmap)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800289 goto out_free;
Izik Eidus290fc382007-09-27 14:11:22 +0200290
Izik Eidus290fc382007-09-27 14:11:22 +0200291 memset(new.rmap, 0, npages * sizeof(*new.rmap));
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500292
Izik Eidus80b14b52007-10-25 11:54:04 +0200293 new.user_alloc = user_alloc;
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500294 if (user_alloc)
Izik Eidus8a7ae052007-10-18 11:09:33 +0200295 new.userspace_addr = mem->userspace_addr;
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500296 else {
297 down_write(&current->mm->mmap_sem);
298 new.userspace_addr = do_mmap(NULL, 0,
299 npages * PAGE_SIZE,
300 PROT_READ | PROT_WRITE,
301 MAP_SHARED | MAP_ANONYMOUS,
302 0);
303 up_write(&current->mm->mmap_sem);
304
305 if (IS_ERR((void *)new.userspace_addr))
Sheng Yangf78e0e22007-10-29 09:40:42 +0800306 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800307 }
Izik Eidus80b14b52007-10-25 11:54:04 +0200308 } else {
309 if (!old.user_alloc && old.rmap) {
310 int ret;
311
312 down_write(&current->mm->mmap_sem);
313 ret = do_munmap(current->mm, old.userspace_addr,
314 old.npages * PAGE_SIZE);
315 up_write(&current->mm->mmap_sem);
316 if (ret < 0)
317 printk(KERN_WARNING
318 "kvm_vm_ioctl_set_memory_region: "
319 "failed to munmap memory\n");
320 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800321 }
322
323 /* Allocate page dirty bitmap if needed */
324 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
325 unsigned dirty_bytes = ALIGN(npages, BITS_PER_LONG) / 8;
326
327 new.dirty_bitmap = vmalloc(dirty_bytes);
328 if (!new.dirty_bitmap)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800329 goto out_free;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800330 memset(new.dirty_bitmap, 0, dirty_bytes);
331 }
332
Avi Kivity6aa8b732006-12-10 02:21:36 -0800333 if (mem->slot >= kvm->nmemslots)
334 kvm->nmemslots = mem->slot + 1;
335
336 *memslot = new;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800337
Zhang Xiantao3ad82a72007-11-20 13:11:38 +0800338 if (!kvm->n_requested_mmu_pages) {
339 unsigned int nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm);
340 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
341 }
342
Avi Kivity90cb0522007-07-17 13:04:56 +0300343 kvm_mmu_slot_remove_write_access(kvm, mem->slot);
344 kvm_flush_remote_tlbs(kvm);
345
Avi Kivity6aa8b732006-12-10 02:21:36 -0800346 kvm_free_physmem_slot(&old, &new);
347 return 0;
348
Sheng Yangf78e0e22007-10-29 09:40:42 +0800349out_free:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800350 kvm_free_physmem_slot(&new, &old);
351out:
352 return r;
Izik Eidus210c7c42007-10-24 23:52:57 +0200353
354}
Sheng Yangf78e0e22007-10-29 09:40:42 +0800355EXPORT_SYMBOL_GPL(__kvm_set_memory_region);
356
357int kvm_set_memory_region(struct kvm *kvm,
358 struct kvm_userspace_memory_region *mem,
359 int user_alloc)
360{
361 int r;
362
363 mutex_lock(&kvm->lock);
364 r = __kvm_set_memory_region(kvm, mem, user_alloc);
365 mutex_unlock(&kvm->lock);
366 return r;
367}
Izik Eidus210c7c42007-10-24 23:52:57 +0200368EXPORT_SYMBOL_GPL(kvm_set_memory_region);
369
Carsten Otte1fe779f2007-10-29 16:08:35 +0100370int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
371 struct
372 kvm_userspace_memory_region *mem,
373 int user_alloc)
Izik Eidus210c7c42007-10-24 23:52:57 +0200374{
Izik Eiduse0d62c72007-10-24 23:57:46 +0200375 if (mem->slot >= KVM_MEMORY_SLOTS)
376 return -EINVAL;
Izik Eidus210c7c42007-10-24 23:52:57 +0200377 return kvm_set_memory_region(kvm, mem, user_alloc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800378}
379
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800380int kvm_get_dirty_log(struct kvm *kvm,
381 struct kvm_dirty_log *log, int *is_dirty)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800382{
383 struct kvm_memory_slot *memslot;
384 int r, i;
385 int n;
386 unsigned long any = 0;
387
Avi Kivity6aa8b732006-12-10 02:21:36 -0800388 r = -EINVAL;
389 if (log->slot >= KVM_MEMORY_SLOTS)
390 goto out;
391
392 memslot = &kvm->memslots[log->slot];
393 r = -ENOENT;
394 if (!memslot->dirty_bitmap)
395 goto out;
396
Uri Lublincd1a4a92007-02-22 16:43:09 +0200397 n = ALIGN(memslot->npages, BITS_PER_LONG) / 8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800398
Uri Lublincd1a4a92007-02-22 16:43:09 +0200399 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800400 any = memslot->dirty_bitmap[i];
401
402 r = -EFAULT;
403 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
404 goto out;
405
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800406 if (any)
407 *is_dirty = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800408
409 r = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800410out:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800411 return r;
412}
413
Izik Eiduscea7bb22007-10-17 19:17:48 +0200414int is_error_page(struct page *page)
415{
416 return page == bad_page;
417}
418EXPORT_SYMBOL_GPL(is_error_page);
419
Izik Eidusf9d46eb2007-11-11 22:02:22 +0200420static inline unsigned long bad_hva(void)
421{
422 return PAGE_OFFSET;
423}
424
425int kvm_is_error_hva(unsigned long addr)
426{
427 return addr == bad_hva();
428}
429EXPORT_SYMBOL_GPL(kvm_is_error_hva);
430
Izik Eidus290fc382007-09-27 14:11:22 +0200431gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
Avi Kivitye8207542007-03-30 16:54:30 +0300432{
433 int i;
434 struct kvm_mem_alias *alias;
435
436 for (i = 0; i < kvm->naliases; ++i) {
437 alias = &kvm->aliases[i];
438 if (gfn >= alias->base_gfn
439 && gfn < alias->base_gfn + alias->npages)
440 return alias->target_gfn + gfn - alias->base_gfn;
441 }
442 return gfn;
443}
444
445static struct kvm_memory_slot *__gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800446{
447 int i;
448
449 for (i = 0; i < kvm->nmemslots; ++i) {
450 struct kvm_memory_slot *memslot = &kvm->memslots[i];
451
452 if (gfn >= memslot->base_gfn
453 && gfn < memslot->base_gfn + memslot->npages)
454 return memslot;
455 }
Al Viro8b6d44c2007-02-09 16:38:40 +0000456 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800457}
Avi Kivitye8207542007-03-30 16:54:30 +0300458
459struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
460{
461 gfn = unalias_gfn(kvm, gfn);
462 return __gfn_to_memslot(kvm, gfn);
463}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800464
Izik Eiduse0d62c72007-10-24 23:57:46 +0200465int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn)
466{
467 int i;
468
469 gfn = unalias_gfn(kvm, gfn);
470 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
471 struct kvm_memory_slot *memslot = &kvm->memslots[i];
472
473 if (gfn >= memslot->base_gfn
474 && gfn < memslot->base_gfn + memslot->npages)
475 return 1;
476 }
477 return 0;
478}
479EXPORT_SYMBOL_GPL(kvm_is_visible_gfn);
480
Izik Eidus539cb662007-11-11 22:05:04 +0200481static unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn)
482{
483 struct kvm_memory_slot *slot;
484
485 gfn = unalias_gfn(kvm, gfn);
486 slot = __gfn_to_memslot(kvm, gfn);
487 if (!slot)
488 return bad_hva();
489 return (slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE);
490}
491
Anthony Liguoriaab61cc2007-10-29 15:15:20 -0500492/*
493 * Requires current->mm->mmap_sem to be held
494 */
495static struct page *__gfn_to_page(struct kvm *kvm, gfn_t gfn)
Avi Kivity954bbbc22007-03-30 14:02:32 +0300496{
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500497 struct page *page[1];
Izik Eidus539cb662007-11-11 22:05:04 +0200498 unsigned long addr;
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500499 int npages;
Avi Kivity954bbbc22007-03-30 14:02:32 +0300500
Avi Kivity60395222007-10-21 11:03:36 +0200501 might_sleep();
502
Izik Eidus539cb662007-11-11 22:05:04 +0200503 addr = gfn_to_hva(kvm, gfn);
504 if (kvm_is_error_hva(addr)) {
Izik Eidus8a7ae052007-10-18 11:09:33 +0200505 get_page(bad_page);
Izik Eiduscea7bb22007-10-17 19:17:48 +0200506 return bad_page;
Izik Eidus8a7ae052007-10-18 11:09:33 +0200507 }
Izik Eidus8a7ae052007-10-18 11:09:33 +0200508
Izik Eidus539cb662007-11-11 22:05:04 +0200509 npages = get_user_pages(current, current->mm, addr, 1, 1, 1, page,
510 NULL);
511
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500512 if (npages != 1) {
513 get_page(bad_page);
514 return bad_page;
Izik Eidus8a7ae052007-10-18 11:09:33 +0200515 }
Anthony Liguori8d4e1282007-10-18 09:59:34 -0500516
517 return page[0];
Avi Kivity954bbbc22007-03-30 14:02:32 +0300518}
Anthony Liguoriaab61cc2007-10-29 15:15:20 -0500519
520struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
521{
522 struct page *page;
523
524 down_read(&current->mm->mmap_sem);
525 page = __gfn_to_page(kvm, gfn);
526 up_read(&current->mm->mmap_sem);
527
528 return page;
529}
530
Avi Kivity954bbbc22007-03-30 14:02:32 +0300531EXPORT_SYMBOL_GPL(gfn_to_page);
532
Izik Eidusb4231d62007-11-20 11:49:33 +0200533void kvm_release_page_clean(struct page *page)
534{
535 put_page(page);
536}
537EXPORT_SYMBOL_GPL(kvm_release_page_clean);
538
539void kvm_release_page_dirty(struct page *page)
Izik Eidus8a7ae052007-10-18 11:09:33 +0200540{
541 if (!PageReserved(page))
542 SetPageDirty(page);
543 put_page(page);
544}
Izik Eidusb4231d62007-11-20 11:49:33 +0200545EXPORT_SYMBOL_GPL(kvm_release_page_dirty);
Izik Eidus8a7ae052007-10-18 11:09:33 +0200546
Izik Eidus195aefd2007-10-01 22:14:18 +0200547static int next_segment(unsigned long len, int offset)
548{
549 if (len > PAGE_SIZE - offset)
550 return PAGE_SIZE - offset;
551 else
552 return len;
553}
554
555int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
556 int len)
557{
Izik Eiduse0506bc2007-11-11 22:10:22 +0200558 int r;
559 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +0200560
Izik Eiduse0506bc2007-11-11 22:10:22 +0200561 addr = gfn_to_hva(kvm, gfn);
562 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +0200563 return -EFAULT;
Izik Eiduse0506bc2007-11-11 22:10:22 +0200564 r = copy_from_user(data, (void __user *)addr + offset, len);
565 if (r)
566 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +0200567 return 0;
568}
569EXPORT_SYMBOL_GPL(kvm_read_guest_page);
570
571int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len)
572{
573 gfn_t gfn = gpa >> PAGE_SHIFT;
574 int seg;
575 int offset = offset_in_page(gpa);
576 int ret;
577
578 while ((seg = next_segment(len, offset)) != 0) {
579 ret = kvm_read_guest_page(kvm, gfn, data, offset, seg);
580 if (ret < 0)
581 return ret;
582 offset = 0;
583 len -= seg;
584 data += seg;
585 ++gfn;
586 }
587 return 0;
588}
589EXPORT_SYMBOL_GPL(kvm_read_guest);
590
591int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
592 int offset, int len)
593{
Izik Eiduse0506bc2007-11-11 22:10:22 +0200594 int r;
595 unsigned long addr;
Izik Eidus195aefd2007-10-01 22:14:18 +0200596
Izik Eiduse0506bc2007-11-11 22:10:22 +0200597 addr = gfn_to_hva(kvm, gfn);
598 if (kvm_is_error_hva(addr))
Izik Eidus195aefd2007-10-01 22:14:18 +0200599 return -EFAULT;
Izik Eiduse0506bc2007-11-11 22:10:22 +0200600 r = copy_to_user((void __user *)addr + offset, data, len);
601 if (r)
602 return -EFAULT;
Izik Eidus195aefd2007-10-01 22:14:18 +0200603 mark_page_dirty(kvm, gfn);
604 return 0;
605}
606EXPORT_SYMBOL_GPL(kvm_write_guest_page);
607
608int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
609 unsigned long len)
610{
611 gfn_t gfn = gpa >> PAGE_SHIFT;
612 int seg;
613 int offset = offset_in_page(gpa);
614 int ret;
615
616 while ((seg = next_segment(len, offset)) != 0) {
617 ret = kvm_write_guest_page(kvm, gfn, data, offset, seg);
618 if (ret < 0)
619 return ret;
620 offset = 0;
621 len -= seg;
622 data += seg;
623 ++gfn;
624 }
625 return 0;
626}
627
628int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
629{
Izik Eidus3e021bf2007-11-19 11:16:57 +0200630 return kvm_write_guest_page(kvm, gfn, empty_zero_page, offset, len);
Izik Eidus195aefd2007-10-01 22:14:18 +0200631}
632EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
633
634int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
635{
636 gfn_t gfn = gpa >> PAGE_SHIFT;
637 int seg;
638 int offset = offset_in_page(gpa);
639 int ret;
640
641 while ((seg = next_segment(len, offset)) != 0) {
642 ret = kvm_clear_guest_page(kvm, gfn, offset, seg);
643 if (ret < 0)
644 return ret;
645 offset = 0;
646 len -= seg;
647 ++gfn;
648 }
649 return 0;
650}
651EXPORT_SYMBOL_GPL(kvm_clear_guest);
652
Avi Kivity6aa8b732006-12-10 02:21:36 -0800653void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
654{
Nguyen Anh Quynh31389942007-06-05 10:35:19 +0300655 struct kvm_memory_slot *memslot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800656
Uri Lublin3b6fff12007-10-30 10:42:09 +0200657 gfn = unalias_gfn(kvm, gfn);
Rusty Russell7e9d6192007-07-31 20:41:14 +1000658 memslot = __gfn_to_memslot(kvm, gfn);
659 if (memslot && memslot->dirty_bitmap) {
660 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800661
Rusty Russell7e9d6192007-07-31 20:41:14 +1000662 /* avoid RMW */
663 if (!test_bit(rel_gfn, memslot->dirty_bitmap))
664 set_bit(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800665 }
666}
667
Eddie Dongb6958ce2007-07-18 12:15:21 +0300668/*
669 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
670 */
Hollis Blanchard8776e512007-10-31 17:24:24 -0500671void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +0300672{
673 DECLARE_WAITQUEUE(wait, current);
674
675 add_wait_queue(&vcpu->wq, &wait);
676
677 /*
678 * We will block until either an interrupt or a signal wakes us up
679 */
He, Qingc5ec1532007-09-03 17:07:41 +0300680 while (!kvm_cpu_has_interrupt(vcpu)
681 && !signal_pending(current)
682 && vcpu->mp_state != VCPU_MP_STATE_RUNNABLE
683 && vcpu->mp_state != VCPU_MP_STATE_SIPI_RECEIVED) {
Eddie Dongb6958ce2007-07-18 12:15:21 +0300684 set_current_state(TASK_INTERRUPTIBLE);
685 vcpu_put(vcpu);
686 schedule();
687 vcpu_load(vcpu);
688 }
689
He, Qingc5ec1532007-09-03 17:07:41 +0300690 __set_current_state(TASK_RUNNING);
Eddie Dongb6958ce2007-07-18 12:15:21 +0300691 remove_wait_queue(&vcpu->wq, &wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +0300692}
693
Avi Kivity6aa8b732006-12-10 02:21:36 -0800694void kvm_resched(struct kvm_vcpu *vcpu)
695{
Yaozu Dong3fca0362007-04-25 16:49:19 +0300696 if (!need_resched())
697 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800698 cond_resched();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800699}
700EXPORT_SYMBOL_GPL(kvm_resched);
701
Avi Kivitybccf2152007-02-21 18:04:26 +0200702static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
703 struct kvm_interrupt *irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800704{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800705 if (irq->irq < 0 || irq->irq >= 256)
706 return -EINVAL;
Eddie Dong97222cc2007-09-12 10:58:04 +0300707 if (irqchip_in_kernel(vcpu->kvm))
708 return -ENXIO;
Avi Kivitybccf2152007-02-21 18:04:26 +0200709 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800710
711 set_bit(irq->irq, vcpu->irq_pending);
712 set_bit(irq->irq / BITS_PER_LONG, &vcpu->irq_summary);
713
714 vcpu_put(vcpu);
715
716 return 0;
717}
718
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200719static struct page *kvm_vcpu_nopage(struct vm_area_struct *vma,
720 unsigned long address,
721 int *type)
722{
723 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
724 unsigned long pgoff;
725 struct page *page;
726
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200727 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Avi Kivity039576c2007-03-20 12:46:50 +0200728 if (pgoff == 0)
729 page = virt_to_page(vcpu->run);
730 else if (pgoff == KVM_PIO_PAGE_OFFSET)
731 page = virt_to_page(vcpu->pio_data);
732 else
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200733 return NOPAGE_SIGBUS;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200734 get_page(page);
Nguyen Anh Quynhcd0d9132007-07-11 14:30:54 +0300735 if (type != NULL)
736 *type = VM_FAULT_MINOR;
737
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200738 return page;
739}
740
741static struct vm_operations_struct kvm_vcpu_vm_ops = {
742 .nopage = kvm_vcpu_nopage,
743};
744
745static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
746{
747 vma->vm_ops = &kvm_vcpu_vm_ops;
748 return 0;
749}
750
Avi Kivitybccf2152007-02-21 18:04:26 +0200751static int kvm_vcpu_release(struct inode *inode, struct file *filp)
752{
753 struct kvm_vcpu *vcpu = filp->private_data;
754
755 fput(vcpu->kvm->filp);
756 return 0;
757}
758
759static struct file_operations kvm_vcpu_fops = {
760 .release = kvm_vcpu_release,
761 .unlocked_ioctl = kvm_vcpu_ioctl,
762 .compat_ioctl = kvm_vcpu_ioctl,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200763 .mmap = kvm_vcpu_mmap,
Avi Kivitybccf2152007-02-21 18:04:26 +0200764};
765
766/*
767 * Allocates an inode for the vcpu.
768 */
769static int create_vcpu_fd(struct kvm_vcpu *vcpu)
770{
771 int fd, r;
772 struct inode *inode;
773 struct file *file;
774
Avi Kivityd6d28162007-06-28 08:38:16 -0400775 r = anon_inode_getfd(&fd, &inode, &file,
776 "kvm-vcpu", &kvm_vcpu_fops, vcpu);
777 if (r)
778 return r;
Avi Kivitybccf2152007-02-21 18:04:26 +0200779 atomic_inc(&vcpu->kvm->filp->f_count);
Avi Kivitybccf2152007-02-21 18:04:26 +0200780 return fd;
Avi Kivitybccf2152007-02-21 18:04:26 +0200781}
782
Avi Kivityc5ea7662007-02-20 18:41:05 +0200783/*
784 * Creates some virtual cpus. Good luck creating more than one.
785 */
786static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, int n)
787{
788 int r;
789 struct kvm_vcpu *vcpu;
790
Avi Kivityc5ea7662007-02-20 18:41:05 +0200791 if (!valid_vcpu(n))
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000792 return -EINVAL;
Avi Kivityc5ea7662007-02-20 18:41:05 +0200793
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800794 vcpu = kvm_arch_vcpu_create(kvm, n);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000795 if (IS_ERR(vcpu))
796 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +0200797
Avi Kivity15ad7142007-07-11 18:17:21 +0300798 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
799
Shaohua Li11ec2802007-07-23 14:51:37 +0800800 mutex_lock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000801 if (kvm->vcpus[n]) {
802 r = -EEXIST;
Shaohua Li11ec2802007-07-23 14:51:37 +0800803 mutex_unlock(&kvm->lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800804 goto vcpu_destroy;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000805 }
806 kvm->vcpus[n] = vcpu;
Shaohua Li11ec2802007-07-23 14:51:37 +0800807 mutex_unlock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000808
809 /* Now it's all set up, let userspace reach it */
Avi Kivitybccf2152007-02-21 18:04:26 +0200810 r = create_vcpu_fd(vcpu);
811 if (r < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000812 goto unlink;
Avi Kivitybccf2152007-02-21 18:04:26 +0200813 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +0200814
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000815unlink:
Shaohua Li11ec2802007-07-23 14:51:37 +0800816 mutex_lock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000817 kvm->vcpus[n] = NULL;
Shaohua Li11ec2802007-07-23 14:51:37 +0800818 mutex_unlock(&kvm->lock);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800819vcpu_destroy:
Hollis Blanchardd40ccc62007-11-19 14:04:43 -0600820 kvm_arch_vcpu_destroy(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +0200821 return r;
822}
823
Avi Kivity1961d272007-03-05 19:46:05 +0200824static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
825{
826 if (sigset) {
827 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
828 vcpu->sigset_active = 1;
829 vcpu->sigset = *sigset;
830 } else
831 vcpu->sigset_active = 0;
832 return 0;
833}
834
Avi Kivitybccf2152007-02-21 18:04:26 +0200835static long kvm_vcpu_ioctl(struct file *filp,
836 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800837{
Avi Kivitybccf2152007-02-21 18:04:26 +0200838 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f366982007-02-09 16:38:35 +0000839 void __user *argp = (void __user *)arg;
Carsten Otte313a3dc2007-10-11 19:16:52 +0200840 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800841
842 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +0200843 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +0200844 r = -EINVAL;
845 if (arg)
846 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500847 r = kvm_arch_vcpu_ioctl_run(vcpu, vcpu->run);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800848 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800849 case KVM_GET_REGS: {
850 struct kvm_regs kvm_regs;
851
Avi Kivitybccf2152007-02-21 18:04:26 +0200852 memset(&kvm_regs, 0, sizeof kvm_regs);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500853 r = kvm_arch_vcpu_ioctl_get_regs(vcpu, &kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800854 if (r)
855 goto out;
856 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000857 if (copy_to_user(argp, &kvm_regs, sizeof kvm_regs))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800858 goto out;
859 r = 0;
860 break;
861 }
862 case KVM_SET_REGS: {
863 struct kvm_regs kvm_regs;
864
865 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000866 if (copy_from_user(&kvm_regs, argp, sizeof kvm_regs))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800867 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500868 r = kvm_arch_vcpu_ioctl_set_regs(vcpu, &kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800869 if (r)
870 goto out;
871 r = 0;
872 break;
873 }
874 case KVM_GET_SREGS: {
875 struct kvm_sregs kvm_sregs;
876
Avi Kivitybccf2152007-02-21 18:04:26 +0200877 memset(&kvm_sregs, 0, sizeof kvm_sregs);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500878 r = kvm_arch_vcpu_ioctl_get_sregs(vcpu, &kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800879 if (r)
880 goto out;
881 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000882 if (copy_to_user(argp, &kvm_sregs, sizeof kvm_sregs))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800883 goto out;
884 r = 0;
885 break;
886 }
887 case KVM_SET_SREGS: {
888 struct kvm_sregs kvm_sregs;
889
890 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000891 if (copy_from_user(&kvm_sregs, argp, sizeof kvm_sregs))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800892 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500893 r = kvm_arch_vcpu_ioctl_set_sregs(vcpu, &kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800894 if (r)
895 goto out;
896 r = 0;
897 break;
898 }
899 case KVM_TRANSLATE: {
900 struct kvm_translation tr;
901
902 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000903 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800904 goto out;
Zhang Xiantao8b006792007-11-16 13:05:55 +0800905 r = kvm_arch_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906 if (r)
907 goto out;
908 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000909 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800910 goto out;
911 r = 0;
912 break;
913 }
914 case KVM_INTERRUPT: {
915 struct kvm_interrupt irq;
916
917 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000918 if (copy_from_user(&irq, argp, sizeof irq))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800919 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +0200920 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800921 if (r)
922 goto out;
923 r = 0;
924 break;
925 }
926 case KVM_DEBUG_GUEST: {
927 struct kvm_debug_guest dbg;
928
929 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +0000930 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800931 goto out;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500932 r = kvm_arch_vcpu_ioctl_debug_guest(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800933 if (r)
934 goto out;
935 r = 0;
936 break;
937 }
Avi Kivity1961d272007-03-05 19:46:05 +0200938 case KVM_SET_SIGNAL_MASK: {
939 struct kvm_signal_mask __user *sigmask_arg = argp;
940 struct kvm_signal_mask kvm_sigmask;
941 sigset_t sigset, *p;
942
943 p = NULL;
944 if (argp) {
945 r = -EFAULT;
946 if (copy_from_user(&kvm_sigmask, argp,
947 sizeof kvm_sigmask))
948 goto out;
949 r = -EINVAL;
950 if (kvm_sigmask.len != sizeof sigset)
951 goto out;
952 r = -EFAULT;
953 if (copy_from_user(&sigset, sigmask_arg->sigset,
954 sizeof sigset))
955 goto out;
956 p = &sigset;
957 }
958 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
959 break;
960 }
Avi Kivityb8836732007-04-01 16:34:31 +0300961 case KVM_GET_FPU: {
962 struct kvm_fpu fpu;
963
964 memset(&fpu, 0, sizeof fpu);
Hollis Blanchardd0752062007-10-31 17:24:25 -0500965 r = kvm_arch_vcpu_ioctl_get_fpu(vcpu, &fpu);
Avi Kivityb8836732007-04-01 16:34:31 +0300966 if (r)
967 goto out;
968 r = -EFAULT;
969 if (copy_to_user(argp, &fpu, sizeof fpu))
970 goto out;
971 r = 0;
972 break;
973 }
974 case KVM_SET_FPU: {
975 struct kvm_fpu fpu;
976
977 r = -EFAULT;
978 if (copy_from_user(&fpu, argp, sizeof fpu))
979 goto out;
Hollis Blanchardd0752062007-10-31 17:24:25 -0500980 r = kvm_arch_vcpu_ioctl_set_fpu(vcpu, &fpu);
Avi Kivityb8836732007-04-01 16:34:31 +0300981 if (r)
982 goto out;
983 r = 0;
984 break;
985 }
Avi Kivitybccf2152007-02-21 18:04:26 +0200986 default:
Carsten Otte313a3dc2007-10-11 19:16:52 +0200987 r = kvm_arch_vcpu_ioctl(filp, ioctl, arg);
Avi Kivitybccf2152007-02-21 18:04:26 +0200988 }
989out:
990 return r;
991}
992
993static long kvm_vm_ioctl(struct file *filp,
994 unsigned int ioctl, unsigned long arg)
995{
996 struct kvm *kvm = filp->private_data;
997 void __user *argp = (void __user *)arg;
Carsten Otte1fe779f2007-10-29 16:08:35 +0100998 int r;
Avi Kivitybccf2152007-02-21 18:04:26 +0200999
1000 switch (ioctl) {
1001 case KVM_CREATE_VCPU:
1002 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
1003 if (r < 0)
1004 goto out;
1005 break;
Izik Eidus6fc138d2007-10-09 19:20:39 +02001006 case KVM_SET_USER_MEMORY_REGION: {
1007 struct kvm_userspace_memory_region kvm_userspace_mem;
1008
1009 r = -EFAULT;
1010 if (copy_from_user(&kvm_userspace_mem, argp,
1011 sizeof kvm_userspace_mem))
1012 goto out;
1013
1014 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001015 if (r)
1016 goto out;
1017 break;
1018 }
1019 case KVM_GET_DIRTY_LOG: {
1020 struct kvm_dirty_log log;
1021
1022 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00001023 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001024 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02001025 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026 if (r)
1027 goto out;
1028 break;
1029 }
Avi Kivityf17abe92007-02-21 19:28:04 +02001030 default:
Carsten Otte1fe779f2007-10-29 16:08:35 +01001031 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
Avi Kivityf17abe92007-02-21 19:28:04 +02001032 }
1033out:
1034 return r;
1035}
1036
1037static struct page *kvm_vm_nopage(struct vm_area_struct *vma,
1038 unsigned long address,
1039 int *type)
1040{
1041 struct kvm *kvm = vma->vm_file->private_data;
1042 unsigned long pgoff;
Avi Kivityf17abe92007-02-21 19:28:04 +02001043 struct page *page;
1044
Avi Kivityf17abe92007-02-21 19:28:04 +02001045 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Izik Eiduse0d62c72007-10-24 23:57:46 +02001046 if (!kvm_is_visible_gfn(kvm, pgoff))
1047 return NOPAGE_SIGBUS;
Anthony Liguoriaab61cc2007-10-29 15:15:20 -05001048 /* current->mm->mmap_sem is already held so call lockless version */
1049 page = __gfn_to_page(kvm, pgoff);
Izik Eidus8a7ae052007-10-18 11:09:33 +02001050 if (is_error_page(page)) {
Izik Eidusb4231d62007-11-20 11:49:33 +02001051 kvm_release_page_clean(page);
Avi Kivityf17abe92007-02-21 19:28:04 +02001052 return NOPAGE_SIGBUS;
Izik Eidus8a7ae052007-10-18 11:09:33 +02001053 }
Nguyen Anh Quynhcd0d9132007-07-11 14:30:54 +03001054 if (type != NULL)
1055 *type = VM_FAULT_MINOR;
1056
Avi Kivityf17abe92007-02-21 19:28:04 +02001057 return page;
1058}
1059
1060static struct vm_operations_struct kvm_vm_vm_ops = {
1061 .nopage = kvm_vm_nopage,
1062};
1063
1064static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
1065{
1066 vma->vm_ops = &kvm_vm_vm_ops;
1067 return 0;
1068}
1069
1070static struct file_operations kvm_vm_fops = {
1071 .release = kvm_vm_release,
1072 .unlocked_ioctl = kvm_vm_ioctl,
1073 .compat_ioctl = kvm_vm_ioctl,
1074 .mmap = kvm_vm_mmap,
1075};
1076
1077static int kvm_dev_ioctl_create_vm(void)
1078{
1079 int fd, r;
1080 struct inode *inode;
1081 struct file *file;
1082 struct kvm *kvm;
1083
Avi Kivityf17abe92007-02-21 19:28:04 +02001084 kvm = kvm_create_vm();
Avi Kivityd6d28162007-06-28 08:38:16 -04001085 if (IS_ERR(kvm))
1086 return PTR_ERR(kvm);
1087 r = anon_inode_getfd(&fd, &inode, &file, "kvm-vm", &kvm_vm_fops, kvm);
1088 if (r) {
1089 kvm_destroy_vm(kvm);
1090 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02001091 }
1092
Avi Kivitybccf2152007-02-21 18:04:26 +02001093 kvm->filp = file;
Avi Kivityf17abe92007-02-21 19:28:04 +02001094
Avi Kivityf17abe92007-02-21 19:28:04 +02001095 return fd;
Avi Kivityf17abe92007-02-21 19:28:04 +02001096}
1097
1098static long kvm_dev_ioctl(struct file *filp,
1099 unsigned int ioctl, unsigned long arg)
1100{
1101 void __user *argp = (void __user *)arg;
Avi Kivity07c45a32007-03-07 13:05:38 +02001102 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02001103
1104 switch (ioctl) {
1105 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02001106 r = -EINVAL;
1107 if (arg)
1108 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02001109 r = KVM_API_VERSION;
1110 break;
1111 case KVM_CREATE_VM:
Avi Kivityf0fe5102007-03-07 13:11:17 +02001112 r = -EINVAL;
1113 if (arg)
1114 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02001115 r = kvm_dev_ioctl_create_vm();
1116 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +08001117 case KVM_CHECK_EXTENSION:
1118 r = kvm_dev_ioctl_check_extension((long)argp);
Avi Kivity5d308f42007-03-01 17:56:20 +02001119 break;
Avi Kivity07c45a32007-03-07 13:05:38 +02001120 case KVM_GET_VCPU_MMAP_SIZE:
1121 r = -EINVAL;
1122 if (arg)
1123 goto out;
Avi Kivity039576c2007-03-20 12:46:50 +02001124 r = 2 * PAGE_SIZE;
Avi Kivity07c45a32007-03-07 13:05:38 +02001125 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001126 default:
Carsten Otte043405e2007-10-10 17:16:19 +02001127 return kvm_arch_dev_ioctl(filp, ioctl, arg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001128 }
1129out:
1130 return r;
1131}
1132
Avi Kivity6aa8b732006-12-10 02:21:36 -08001133static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001134 .unlocked_ioctl = kvm_dev_ioctl,
1135 .compat_ioctl = kvm_dev_ioctl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001136};
1137
1138static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02001139 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001140 "kvm",
1141 &kvm_chardev_ops,
1142};
1143
Avi Kivity1b6c0162007-05-24 13:03:52 +03001144static void hardware_enable(void *junk)
1145{
1146 int cpu = raw_smp_processor_id();
1147
1148 if (cpu_isset(cpu, cpus_hardware_enabled))
1149 return;
1150 cpu_set(cpu, cpus_hardware_enabled);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001151 kvm_arch_hardware_enable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03001152}
1153
1154static void hardware_disable(void *junk)
1155{
1156 int cpu = raw_smp_processor_id();
1157
1158 if (!cpu_isset(cpu, cpus_hardware_enabled))
1159 return;
1160 cpu_clear(cpu, cpus_hardware_enabled);
1161 decache_vcpus_on_cpu(cpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001162 kvm_arch_hardware_disable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03001163}
1164
Avi Kivity774c47f2007-02-12 00:54:47 -08001165static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
1166 void *v)
1167{
1168 int cpu = (long)v;
1169
Avi Kivity1a6f4d72007-11-11 18:37:32 +02001170 val &= ~CPU_TASKS_FROZEN;
Avi Kivity774c47f2007-02-12 00:54:47 -08001171 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03001172 case CPU_DYING:
Avi Kivity6ec8a852007-08-19 15:57:26 +03001173 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
1174 cpu);
1175 hardware_disable(NULL);
1176 break;
Avi Kivity774c47f2007-02-12 00:54:47 -08001177 case CPU_UP_CANCELED:
Jeremy Katz43934a32007-02-19 14:37:46 +02001178 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
1179 cpu);
Avi Kivity1b6c0162007-05-24 13:03:52 +03001180 smp_call_function_single(cpu, hardware_disable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08001181 break;
Jeremy Katz43934a32007-02-19 14:37:46 +02001182 case CPU_ONLINE:
1183 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
1184 cpu);
Avi Kivity1b6c0162007-05-24 13:03:52 +03001185 smp_call_function_single(cpu, hardware_enable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08001186 break;
1187 }
1188 return NOTIFY_OK;
1189}
1190
Rusty Russell9a2b85c2007-07-17 23:17:55 +10001191static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
Mike Dayd77c26f2007-10-08 09:02:08 -04001192 void *v)
Rusty Russell9a2b85c2007-07-17 23:17:55 +10001193{
1194 if (val == SYS_RESTART) {
1195 /*
1196 * Some (well, at least mine) BIOSes hang on reboot if
1197 * in vmx root mode.
1198 */
1199 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
1200 on_each_cpu(hardware_disable, NULL, 0, 1);
1201 }
1202 return NOTIFY_OK;
1203}
1204
1205static struct notifier_block kvm_reboot_notifier = {
1206 .notifier_call = kvm_reboot,
1207 .priority = 0,
1208};
1209
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001210void kvm_io_bus_init(struct kvm_io_bus *bus)
1211{
1212 memset(bus, 0, sizeof(*bus));
1213}
1214
1215void kvm_io_bus_destroy(struct kvm_io_bus *bus)
1216{
1217 int i;
1218
1219 for (i = 0; i < bus->dev_count; i++) {
1220 struct kvm_io_device *pos = bus->devs[i];
1221
1222 kvm_iodevice_destructor(pos);
1223 }
1224}
1225
1226struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, gpa_t addr)
1227{
1228 int i;
1229
1230 for (i = 0; i < bus->dev_count; i++) {
1231 struct kvm_io_device *pos = bus->devs[i];
1232
1233 if (pos->in_range(pos, addr))
1234 return pos;
1235 }
1236
1237 return NULL;
1238}
1239
1240void kvm_io_bus_register_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev)
1241{
1242 BUG_ON(bus->dev_count > (NR_IOBUS_DEVS-1));
1243
1244 bus->devs[bus->dev_count++] = dev;
1245}
1246
Avi Kivity774c47f2007-02-12 00:54:47 -08001247static struct notifier_block kvm_cpu_notifier = {
1248 .notifier_call = kvm_cpu_hotplug,
1249 .priority = 20, /* must be > scheduler priority */
1250};
1251
Avi Kivityba1389b2007-11-18 16:24:12 +02001252static u64 vm_stat_get(void *_offset)
1253{
1254 unsigned offset = (long)_offset;
1255 u64 total = 0;
1256 struct kvm *kvm;
1257
1258 spin_lock(&kvm_lock);
1259 list_for_each_entry(kvm, &vm_list, vm_list)
1260 total += *(u32 *)((void *)kvm + offset);
1261 spin_unlock(&kvm_lock);
1262 return total;
1263}
1264
1265DEFINE_SIMPLE_ATTRIBUTE(vm_stat_fops, vm_stat_get, NULL, "%llu\n");
1266
1267static u64 vcpu_stat_get(void *_offset)
Avi Kivity1165f5f2007-04-19 17:27:43 +03001268{
1269 unsigned offset = (long)_offset;
1270 u64 total = 0;
1271 struct kvm *kvm;
1272 struct kvm_vcpu *vcpu;
1273 int i;
1274
1275 spin_lock(&kvm_lock);
1276 list_for_each_entry(kvm, &vm_list, vm_list)
1277 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10001278 vcpu = kvm->vcpus[i];
1279 if (vcpu)
1280 total += *(u32 *)((void *)vcpu + offset);
Avi Kivity1165f5f2007-04-19 17:27:43 +03001281 }
1282 spin_unlock(&kvm_lock);
1283 return total;
1284}
1285
Avi Kivityba1389b2007-11-18 16:24:12 +02001286DEFINE_SIMPLE_ATTRIBUTE(vcpu_stat_fops, vcpu_stat_get, NULL, "%llu\n");
1287
1288static struct file_operations *stat_fops[] = {
1289 [KVM_STAT_VCPU] = &vcpu_stat_fops,
1290 [KVM_STAT_VM] = &vm_stat_fops,
1291};
Avi Kivity1165f5f2007-04-19 17:27:43 +03001292
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08001293static void kvm_init_debug(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001294{
1295 struct kvm_stats_debugfs_item *p;
1296
Al Viro8b6d44c2007-02-09 16:38:40 +00001297 debugfs_dir = debugfs_create_dir("kvm", NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001298 for (p = debugfs_entries; p->name; ++p)
Avi Kivity1165f5f2007-04-19 17:27:43 +03001299 p->dentry = debugfs_create_file(p->name, 0444, debugfs_dir,
1300 (void *)(long)p->offset,
Avi Kivityba1389b2007-11-18 16:24:12 +02001301 stat_fops[p->kind]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001302}
1303
1304static void kvm_exit_debug(void)
1305{
1306 struct kvm_stats_debugfs_item *p;
1307
1308 for (p = debugfs_entries; p->name; ++p)
1309 debugfs_remove(p->dentry);
1310 debugfs_remove(debugfs_dir);
1311}
1312
Avi Kivity59ae6c62007-02-12 00:54:48 -08001313static int kvm_suspend(struct sys_device *dev, pm_message_t state)
1314{
Avi Kivity4267c412007-05-24 13:09:41 +03001315 hardware_disable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08001316 return 0;
1317}
1318
1319static int kvm_resume(struct sys_device *dev)
1320{
Avi Kivity4267c412007-05-24 13:09:41 +03001321 hardware_enable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08001322 return 0;
1323}
1324
1325static struct sysdev_class kvm_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +01001326 .name = "kvm",
Avi Kivity59ae6c62007-02-12 00:54:48 -08001327 .suspend = kvm_suspend,
1328 .resume = kvm_resume,
1329};
1330
1331static struct sys_device kvm_sysdev = {
1332 .id = 0,
1333 .cls = &kvm_sysdev_class,
1334};
1335
Izik Eiduscea7bb22007-10-17 19:17:48 +02001336struct page *bad_page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001337
Avi Kivity15ad7142007-07-11 18:17:21 +03001338static inline
1339struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
1340{
1341 return container_of(pn, struct kvm_vcpu, preempt_notifier);
1342}
1343
1344static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
1345{
1346 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
1347
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001348 kvm_arch_vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03001349}
1350
1351static void kvm_sched_out(struct preempt_notifier *pn,
1352 struct task_struct *next)
1353{
1354 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
1355
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001356 kvm_arch_vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03001357}
1358
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08001359int kvm_init(void *opaque, unsigned int vcpu_size,
Rusty Russellc16f8622007-07-30 21:12:19 +10001360 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001361{
1362 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001363 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001364
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001365 kvm_init_debug();
1366
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08001367 r = kvm_arch_init(opaque);
1368 if (r)
1369 goto out4;
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001370
1371 bad_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
1372
1373 if (bad_page == NULL) {
1374 r = -ENOMEM;
1375 goto out;
1376 }
1377
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001378 r = kvm_arch_hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001379 if (r < 0)
Avi Kivityca45aaa2007-03-01 19:21:03 +02001380 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001381
Yang, Sheng002c7f72007-07-31 14:23:01 +03001382 for_each_online_cpu(cpu) {
1383 smp_call_function_single(cpu,
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001384 kvm_arch_check_processor_compat,
Yang, Sheng002c7f72007-07-31 14:23:01 +03001385 &r, 0, 1);
1386 if (r < 0)
1387 goto out_free_0;
1388 }
1389
Avi Kivity1b6c0162007-05-24 13:03:52 +03001390 on_each_cpu(hardware_enable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08001391 r = register_cpu_notifier(&kvm_cpu_notifier);
1392 if (r)
1393 goto out_free_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001394 register_reboot_notifier(&kvm_reboot_notifier);
1395
Avi Kivity59ae6c62007-02-12 00:54:48 -08001396 r = sysdev_class_register(&kvm_sysdev_class);
1397 if (r)
1398 goto out_free_2;
1399
1400 r = sysdev_register(&kvm_sysdev);
1401 if (r)
1402 goto out_free_3;
1403
Rusty Russellc16f8622007-07-30 21:12:19 +10001404 /* A kmem cache lets us meet the alignment requirements of fx_save. */
1405 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size,
Joe Perches56919c52007-11-12 20:06:51 -08001406 __alignof__(struct kvm_vcpu),
1407 0, NULL);
Rusty Russellc16f8622007-07-30 21:12:19 +10001408 if (!kvm_vcpu_cache) {
1409 r = -ENOMEM;
1410 goto out_free_4;
1411 }
1412
Avi Kivity6aa8b732006-12-10 02:21:36 -08001413 kvm_chardev_ops.owner = module;
1414
1415 r = misc_register(&kvm_dev);
1416 if (r) {
Mike Dayd77c26f2007-10-08 09:02:08 -04001417 printk(KERN_ERR "kvm: misc device register failed\n");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001418 goto out_free;
1419 }
1420
Avi Kivity15ad7142007-07-11 18:17:21 +03001421 kvm_preempt_ops.sched_in = kvm_sched_in;
1422 kvm_preempt_ops.sched_out = kvm_sched_out;
1423
Avi Kivityc7addb92007-09-16 18:58:32 +02001424 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001425
1426out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10001427 kmem_cache_destroy(kvm_vcpu_cache);
1428out_free_4:
Avi Kivity59ae6c62007-02-12 00:54:48 -08001429 sysdev_unregister(&kvm_sysdev);
1430out_free_3:
1431 sysdev_class_unregister(&kvm_sysdev_class);
1432out_free_2:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001433 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08001434 unregister_cpu_notifier(&kvm_cpu_notifier);
1435out_free_1:
Avi Kivity1b6c0162007-05-24 13:03:52 +03001436 on_each_cpu(hardware_disable, NULL, 0, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03001437out_free_0:
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001438 kvm_arch_hardware_unsetup();
Avi Kivityca45aaa2007-03-01 19:21:03 +02001439out:
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08001440 kvm_arch_exit();
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001441 kvm_exit_debug();
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001442out4:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001443 return r;
1444}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001445EXPORT_SYMBOL_GPL(kvm_init);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001446
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001447void kvm_exit(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001448{
1449 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10001450 kmem_cache_destroy(kvm_vcpu_cache);
Avi Kivity59ae6c62007-02-12 00:54:48 -08001451 sysdev_unregister(&kvm_sysdev);
1452 sysdev_class_unregister(&kvm_sysdev_class);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001453 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08001454 unregister_cpu_notifier(&kvm_cpu_notifier);
Avi Kivity1b6c0162007-05-24 13:03:52 +03001455 on_each_cpu(hardware_disable, NULL, 0, 1);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08001456 kvm_arch_hardware_unsetup();
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08001457 kvm_arch_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001458 kvm_exit_debug();
Izik Eiduscea7bb22007-10-17 19:17:48 +02001459 __free_page(bad_page);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001460}
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08001461EXPORT_SYMBOL_GPL(kvm_exit);