blob: 5063b3addbbf62a2a24caa355d7528ed01020db3 [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"
Avi Kivitye4956062007-06-28 14:15:57 -040019#include "x86_emulate.h"
20#include "segment_descriptor.h"
Eddie Dong85f455f2007-07-06 12:20:49 +030021#include "irq.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080022
23#include <linux/kvm.h>
24#include <linux/module.h>
25#include <linux/errno.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080026#include <linux/percpu.h>
27#include <linux/gfp.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080028#include <linux/mm.h>
29#include <linux/miscdevice.h>
30#include <linux/vmalloc.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080031#include <linux/reboot.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080032#include <linux/debugfs.h>
33#include <linux/highmem.h>
34#include <linux/file.h>
Avi Kivity59ae6c62007-02-12 00:54:48 -080035#include <linux/sysdev.h>
Avi Kivity774c47f2007-02-12 00:54:47 -080036#include <linux/cpu.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040037#include <linux/sched.h>
Avi Kivityd9e368d2007-06-07 19:18:30 +030038#include <linux/cpumask.h>
39#include <linux/smp.h>
Avi Kivityd6d28162007-06-28 08:38:16 -040040#include <linux/anon_inodes.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080041
Avi Kivitye4956062007-06-28 14:15:57 -040042#include <asm/processor.h>
43#include <asm/msr.h>
44#include <asm/io.h>
45#include <asm/uaccess.h>
46#include <asm/desc.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080047
48MODULE_AUTHOR("Qumranet");
49MODULE_LICENSE("GPL");
50
Avi Kivity133de902007-02-12 00:54:44 -080051static DEFINE_SPINLOCK(kvm_lock);
52static LIST_HEAD(vm_list);
53
Avi Kivity1b6c0162007-05-24 13:03:52 +030054static cpumask_t cpus_hardware_enabled;
55
Avi Kivity6aa8b732006-12-10 02:21:36 -080056struct kvm_arch_ops *kvm_arch_ops;
Rusty Russellc16f8622007-07-30 21:12:19 +100057struct kmem_cache *kvm_vcpu_cache;
58EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
Avi Kivity1165f5f2007-04-19 17:27:43 +030059
Avi Kivity15ad7142007-07-11 18:17:21 +030060static __read_mostly struct preempt_ops kvm_preempt_ops;
61
Avi Kivity1165f5f2007-04-19 17:27:43 +030062#define STAT_OFFSET(x) offsetof(struct kvm_vcpu, stat.x)
Avi Kivity6aa8b732006-12-10 02:21:36 -080063
64static struct kvm_stats_debugfs_item {
65 const char *name;
Avi Kivity1165f5f2007-04-19 17:27:43 +030066 int offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -080067 struct dentry *dentry;
68} debugfs_entries[] = {
Avi Kivity1165f5f2007-04-19 17:27:43 +030069 { "pf_fixed", STAT_OFFSET(pf_fixed) },
70 { "pf_guest", STAT_OFFSET(pf_guest) },
71 { "tlb_flush", STAT_OFFSET(tlb_flush) },
72 { "invlpg", STAT_OFFSET(invlpg) },
73 { "exits", STAT_OFFSET(exits) },
74 { "io_exits", STAT_OFFSET(io_exits) },
75 { "mmio_exits", STAT_OFFSET(mmio_exits) },
76 { "signal_exits", STAT_OFFSET(signal_exits) },
77 { "irq_window", STAT_OFFSET(irq_window_exits) },
78 { "halt_exits", STAT_OFFSET(halt_exits) },
Eddie Dongb6958ce2007-07-18 12:15:21 +030079 { "halt_wakeup", STAT_OFFSET(halt_wakeup) },
Avi Kivity1165f5f2007-04-19 17:27:43 +030080 { "request_irq", STAT_OFFSET(request_irq_exits) },
81 { "irq_exits", STAT_OFFSET(irq_exits) },
Avi Kivitye6adf282007-04-30 16:07:54 +030082 { "light_exits", STAT_OFFSET(light_exits) },
Eddie Dong2cc51562007-05-21 07:28:09 +030083 { "efer_reload", STAT_OFFSET(efer_reload) },
Avi Kivity1165f5f2007-04-19 17:27:43 +030084 { NULL }
Avi Kivity6aa8b732006-12-10 02:21:36 -080085};
86
87static struct dentry *debugfs_dir;
88
89#define MAX_IO_MSRS 256
90
Rusty Russell707d92f2007-07-17 23:19:08 +100091#define CR0_RESERVED_BITS \
92 (~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \
93 | X86_CR0_ET | X86_CR0_NE | X86_CR0_WP | X86_CR0_AM \
94 | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG))
Rusty Russell66aee912007-07-17 23:34:16 +100095#define CR4_RESERVED_BITS \
96 (~(unsigned long)(X86_CR4_VME | X86_CR4_PVI | X86_CR4_TSD | X86_CR4_DE\
97 | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE \
98 | X86_CR4_PGE | X86_CR4_PCE | X86_CR4_OSFXSR \
99 | X86_CR4_OSXMMEXCPT | X86_CR4_VMXE))
100
Rusty Russell7075bc82007-07-17 23:37:17 +1000101#define CR8_RESERVED_BITS (~(unsigned long)X86_CR8_TPR)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800102#define EFER_RESERVED_BITS 0xfffffffffffff2fe
103
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800104#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800105// LDT or TSS descriptor in the GDT. 16 bytes.
106struct segment_descriptor_64 {
107 struct segment_descriptor s;
108 u32 base_higher;
109 u32 pad_zero;
110};
111
112#endif
113
Avi Kivitybccf2152007-02-21 18:04:26 +0200114static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
115 unsigned long arg);
116
Avi Kivity6aa8b732006-12-10 02:21:36 -0800117unsigned long segment_base(u16 selector)
118{
119 struct descriptor_table gdt;
120 struct segment_descriptor *d;
121 unsigned long table_base;
122 typedef unsigned long ul;
123 unsigned long v;
124
125 if (selector == 0)
126 return 0;
127
128 asm ("sgdt %0" : "=m"(gdt));
129 table_base = gdt.base;
130
131 if (selector & 4) { /* from ldt */
132 u16 ldt_selector;
133
134 asm ("sldt %0" : "=g"(ldt_selector));
135 table_base = segment_base(ldt_selector);
136 }
137 d = (struct segment_descriptor *)(table_base + (selector & ~7));
138 v = d->base_low | ((ul)d->base_mid << 16) | ((ul)d->base_high << 24);
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800139#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800140 if (d->system == 0
141 && (d->type == 2 || d->type == 9 || d->type == 11))
142 v |= ((ul)((struct segment_descriptor_64 *)d)->base_higher) << 32;
143#endif
144 return v;
145}
146EXPORT_SYMBOL_GPL(segment_base);
147
James Morris5aacf0c2006-12-22 01:04:55 -0800148static inline int valid_vcpu(int n)
149{
150 return likely(n >= 0 && n < KVM_MAX_VCPUS);
151}
152
Avi Kivity7702fd12007-06-14 16:27:40 +0300153void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
154{
155 if (!vcpu->fpu_active || vcpu->guest_fpu_loaded)
156 return;
157
158 vcpu->guest_fpu_loaded = 1;
Rusty Russellb114b082007-07-30 21:13:43 +1000159 fx_save(&vcpu->host_fx_image);
160 fx_restore(&vcpu->guest_fx_image);
Avi Kivity7702fd12007-06-14 16:27:40 +0300161}
162EXPORT_SYMBOL_GPL(kvm_load_guest_fpu);
163
164void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
165{
166 if (!vcpu->guest_fpu_loaded)
167 return;
168
169 vcpu->guest_fpu_loaded = 0;
Rusty Russellb114b082007-07-30 21:13:43 +1000170 fx_save(&vcpu->guest_fx_image);
171 fx_restore(&vcpu->host_fx_image);
Avi Kivity7702fd12007-06-14 16:27:40 +0300172}
173EXPORT_SYMBOL_GPL(kvm_put_guest_fpu);
174
Avi Kivity6aa8b732006-12-10 02:21:36 -0800175/*
176 * Switches to specified vcpu, until a matching vcpu_put()
177 */
Avi Kivitybccf2152007-02-21 18:04:26 +0200178static void vcpu_load(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800179{
Avi Kivity15ad7142007-07-11 18:17:21 +0300180 int cpu;
181
Avi Kivitybccf2152007-02-21 18:04:26 +0200182 mutex_lock(&vcpu->mutex);
Avi Kivity15ad7142007-07-11 18:17:21 +0300183 cpu = get_cpu();
184 preempt_notifier_register(&vcpu->preempt_notifier);
185 kvm_arch_ops->vcpu_load(vcpu, cpu);
186 put_cpu();
Avi Kivitybccf2152007-02-21 18:04:26 +0200187}
188
Avi Kivity6aa8b732006-12-10 02:21:36 -0800189static void vcpu_put(struct kvm_vcpu *vcpu)
190{
Avi Kivity15ad7142007-07-11 18:17:21 +0300191 preempt_disable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800192 kvm_arch_ops->vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300193 preempt_notifier_unregister(&vcpu->preempt_notifier);
194 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800195 mutex_unlock(&vcpu->mutex);
196}
197
Avi Kivityd9e368d2007-06-07 19:18:30 +0300198static void ack_flush(void *_completed)
199{
200 atomic_t *completed = _completed;
201
202 atomic_inc(completed);
203}
204
205void kvm_flush_remote_tlbs(struct kvm *kvm)
206{
207 int i, cpu, needed;
208 cpumask_t cpus;
209 struct kvm_vcpu *vcpu;
210 atomic_t completed;
211
212 atomic_set(&completed, 0);
213 cpus_clear(cpus);
214 needed = 0;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000215 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
216 vcpu = kvm->vcpus[i];
217 if (!vcpu)
218 continue;
Avi Kivityd9e368d2007-06-07 19:18:30 +0300219 if (test_and_set_bit(KVM_TLB_FLUSH, &vcpu->requests))
220 continue;
221 cpu = vcpu->cpu;
222 if (cpu != -1 && cpu != raw_smp_processor_id())
223 if (!cpu_isset(cpu, cpus)) {
224 cpu_set(cpu, cpus);
225 ++needed;
226 }
227 }
228
229 /*
230 * We really want smp_call_function_mask() here. But that's not
231 * available, so ipi all cpus in parallel and wait for them
232 * to complete.
233 */
234 for (cpu = first_cpu(cpus); cpu != NR_CPUS; cpu = next_cpu(cpu, cpus))
235 smp_call_function_single(cpu, ack_flush, &completed, 1, 0);
236 while (atomic_read(&completed) != needed) {
237 cpu_relax();
238 barrier();
239 }
240}
241
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000242int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id)
243{
244 struct page *page;
245 int r;
246
247 mutex_init(&vcpu->mutex);
248 vcpu->cpu = -1;
249 vcpu->mmu.root_hpa = INVALID_PAGE;
250 vcpu->kvm = kvm;
251 vcpu->vcpu_id = id;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300252 init_waitqueue_head(&vcpu->wq);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000253
254 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
255 if (!page) {
256 r = -ENOMEM;
257 goto fail;
258 }
259 vcpu->run = page_address(page);
260
261 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
262 if (!page) {
263 r = -ENOMEM;
264 goto fail_free_run;
265 }
266 vcpu->pio_data = page_address(page);
267
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000268 r = kvm_mmu_create(vcpu);
269 if (r < 0)
270 goto fail_free_pio_data;
271
272 return 0;
273
274fail_free_pio_data:
275 free_page((unsigned long)vcpu->pio_data);
276fail_free_run:
277 free_page((unsigned long)vcpu->run);
278fail:
279 return -ENOMEM;
280}
281EXPORT_SYMBOL_GPL(kvm_vcpu_init);
282
283void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
284{
285 kvm_mmu_destroy(vcpu);
Eddie Dong97222cc2007-09-12 10:58:04 +0300286 kvm_free_apic(vcpu->apic);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000287 free_page((unsigned long)vcpu->pio_data);
288 free_page((unsigned long)vcpu->run);
289}
290EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
291
Avi Kivityf17abe92007-02-21 19:28:04 +0200292static struct kvm *kvm_create_vm(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800293{
294 struct kvm *kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800295
296 if (!kvm)
Avi Kivityf17abe92007-02-21 19:28:04 +0200297 return ERR_PTR(-ENOMEM);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800298
Eddie Dong74906342007-06-19 18:05:03 +0300299 kvm_io_bus_init(&kvm->pio_bus);
Shaohua Li11ec2802007-07-23 14:51:37 +0800300 mutex_init(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800301 INIT_LIST_HEAD(&kvm->active_mmu_pages);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400302 kvm_io_bus_init(&kvm->mmio_bus);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000303 spin_lock(&kvm_lock);
304 list_add(&kvm->vm_list, &vm_list);
305 spin_unlock(&kvm_lock);
Avi Kivityf17abe92007-02-21 19:28:04 +0200306 return kvm;
307}
308
Avi Kivity6aa8b732006-12-10 02:21:36 -0800309/*
310 * Free any memory in @free but not in @dont.
311 */
312static void kvm_free_physmem_slot(struct kvm_memory_slot *free,
313 struct kvm_memory_slot *dont)
314{
315 int i;
316
317 if (!dont || free->phys_mem != dont->phys_mem)
318 if (free->phys_mem) {
319 for (i = 0; i < free->npages; ++i)
Avi Kivity55a54f72006-12-29 16:49:58 -0800320 if (free->phys_mem[i])
321 __free_page(free->phys_mem[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800322 vfree(free->phys_mem);
323 }
324
325 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
326 vfree(free->dirty_bitmap);
327
Al Viro8b6d44c2007-02-09 16:38:40 +0000328 free->phys_mem = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800329 free->npages = 0;
Al Viro8b6d44c2007-02-09 16:38:40 +0000330 free->dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800331}
332
333static void kvm_free_physmem(struct kvm *kvm)
334{
335 int i;
336
337 for (i = 0; i < kvm->nmemslots; ++i)
Al Viro8b6d44c2007-02-09 16:38:40 +0000338 kvm_free_physmem_slot(&kvm->memslots[i], NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800339}
340
Avi Kivity039576c2007-03-20 12:46:50 +0200341static void free_pio_guest_pages(struct kvm_vcpu *vcpu)
342{
343 int i;
344
Rusty Russell3077c4512007-07-30 16:41:57 +1000345 for (i = 0; i < ARRAY_SIZE(vcpu->pio.guest_pages); ++i)
Avi Kivity039576c2007-03-20 12:46:50 +0200346 if (vcpu->pio.guest_pages[i]) {
347 __free_page(vcpu->pio.guest_pages[i]);
348 vcpu->pio.guest_pages[i] = NULL;
349 }
350}
351
Avi Kivity7b53aa52007-06-05 12:17:03 +0300352static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
353{
Avi Kivity7b53aa52007-06-05 12:17:03 +0300354 vcpu_load(vcpu);
355 kvm_mmu_unload(vcpu);
356 vcpu_put(vcpu);
357}
358
Avi Kivity6aa8b732006-12-10 02:21:36 -0800359static void kvm_free_vcpus(struct kvm *kvm)
360{
361 unsigned int i;
362
Avi Kivity7b53aa52007-06-05 12:17:03 +0300363 /*
364 * Unpin any mmu pages first.
365 */
366 for (i = 0; i < KVM_MAX_VCPUS; ++i)
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000367 if (kvm->vcpus[i])
368 kvm_unload_vcpu_mmu(kvm->vcpus[i]);
369 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
370 if (kvm->vcpus[i]) {
371 kvm_arch_ops->vcpu_free(kvm->vcpus[i]);
372 kvm->vcpus[i] = NULL;
373 }
374 }
375
Avi Kivity6aa8b732006-12-10 02:21:36 -0800376}
377
Avi Kivityf17abe92007-02-21 19:28:04 +0200378static void kvm_destroy_vm(struct kvm *kvm)
379{
Avi Kivity133de902007-02-12 00:54:44 -0800380 spin_lock(&kvm_lock);
381 list_del(&kvm->vm_list);
382 spin_unlock(&kvm_lock);
Eddie Dong74906342007-06-19 18:05:03 +0300383 kvm_io_bus_destroy(&kvm->pio_bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400384 kvm_io_bus_destroy(&kvm->mmio_bus);
Eddie Dong85f455f2007-07-06 12:20:49 +0300385 kfree(kvm->vpic);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300386 kfree(kvm->vioapic);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800387 kvm_free_vcpus(kvm);
388 kvm_free_physmem(kvm);
389 kfree(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200390}
391
392static int kvm_vm_release(struct inode *inode, struct file *filp)
393{
394 struct kvm *kvm = filp->private_data;
395
396 kvm_destroy_vm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800397 return 0;
398}
399
400static void inject_gp(struct kvm_vcpu *vcpu)
401{
402 kvm_arch_ops->inject_gp(vcpu, 0);
403}
404
Avi Kivity1342d352007-01-05 16:36:39 -0800405/*
406 * Load the pae pdptrs. Return true is they are all valid.
407 */
408static int load_pdptrs(struct kvm_vcpu *vcpu, unsigned long cr3)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800409{
410 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
Avi Kivity1342d352007-01-05 16:36:39 -0800411 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800412 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800413 u64 *pdpt;
Avi Kivity1342d352007-01-05 16:36:39 -0800414 int ret;
Avi Kivity954bbbc2007-03-30 14:02:32 +0300415 struct page *page;
Rusty Russellc820c2a2007-07-25 13:29:51 +1000416 u64 pdpte[ARRAY_SIZE(vcpu->pdptrs)];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800417
Shaohua Li11ec2802007-07-23 14:51:37 +0800418 mutex_lock(&vcpu->kvm->lock);
Avi Kivity954bbbc2007-03-30 14:02:32 +0300419 page = gfn_to_page(vcpu->kvm, pdpt_gfn);
Rusty Russellc820c2a2007-07-25 13:29:51 +1000420 if (!page) {
421 ret = 0;
422 goto out;
423 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800424
Rusty Russellc820c2a2007-07-25 13:29:51 +1000425 pdpt = kmap_atomic(page, KM_USER0);
426 memcpy(pdpte, pdpt+offset, sizeof(pdpte));
427 kunmap_atomic(pdpt, KM_USER0);
428
429 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
430 if ((pdpte[i] & 1) && (pdpte[i] & 0xfffffff0000001e6ull)) {
Avi Kivity1342d352007-01-05 16:36:39 -0800431 ret = 0;
432 goto out;
433 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800434 }
Rusty Russellc820c2a2007-07-25 13:29:51 +1000435 ret = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800436
Rusty Russellc820c2a2007-07-25 13:29:51 +1000437 memcpy(vcpu->pdptrs, pdpte, sizeof(vcpu->pdptrs));
Avi Kivity1342d352007-01-05 16:36:39 -0800438out:
Shaohua Li11ec2802007-07-23 14:51:37 +0800439 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800440
Avi Kivity1342d352007-01-05 16:36:39 -0800441 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800442}
443
444void set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
445{
Rusty Russell707d92f2007-07-17 23:19:08 +1000446 if (cr0 & CR0_RESERVED_BITS) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800447 printk(KERN_DEBUG "set_cr0: 0x%lx #GP, reserved bits 0x%lx\n",
448 cr0, vcpu->cr0);
449 inject_gp(vcpu);
450 return;
451 }
452
Rusty Russell707d92f2007-07-17 23:19:08 +1000453 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800454 printk(KERN_DEBUG "set_cr0: #GP, CD == 0 && NW == 1\n");
455 inject_gp(vcpu);
456 return;
457 }
458
Rusty Russell707d92f2007-07-17 23:19:08 +1000459 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800460 printk(KERN_DEBUG "set_cr0: #GP, set PG flag "
461 "and a clear PE flag\n");
462 inject_gp(vcpu);
463 return;
464 }
465
Rusty Russell707d92f2007-07-17 23:19:08 +1000466 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800467#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800468 if ((vcpu->shadow_efer & EFER_LME)) {
469 int cs_db, cs_l;
470
471 if (!is_pae(vcpu)) {
472 printk(KERN_DEBUG "set_cr0: #GP, start paging "
473 "in long mode while PAE is disabled\n");
474 inject_gp(vcpu);
475 return;
476 }
477 kvm_arch_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
478 if (cs_l) {
479 printk(KERN_DEBUG "set_cr0: #GP, start paging "
480 "in long mode while CS.L == 1\n");
481 inject_gp(vcpu);
482 return;
483
484 }
485 } else
486#endif
Avi Kivity1342d352007-01-05 16:36:39 -0800487 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->cr3)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800488 printk(KERN_DEBUG "set_cr0: #GP, pdptrs "
489 "reserved bits\n");
490 inject_gp(vcpu);
491 return;
492 }
493
494 }
495
496 kvm_arch_ops->set_cr0(vcpu, cr0);
497 vcpu->cr0 = cr0;
498
Shaohua Li11ec2802007-07-23 14:51:37 +0800499 mutex_lock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800500 kvm_mmu_reset_context(vcpu);
Shaohua Li11ec2802007-07-23 14:51:37 +0800501 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800502 return;
503}
504EXPORT_SYMBOL_GPL(set_cr0);
505
506void lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
507{
508 set_cr0(vcpu, (vcpu->cr0 & ~0x0ful) | (msw & 0x0f));
509}
510EXPORT_SYMBOL_GPL(lmsw);
511
512void set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
513{
Rusty Russell66aee912007-07-17 23:34:16 +1000514 if (cr4 & CR4_RESERVED_BITS) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800515 printk(KERN_DEBUG "set_cr4: #GP, reserved bits\n");
516 inject_gp(vcpu);
517 return;
518 }
519
Avi Kivitya9058ec2006-12-29 16:49:37 -0800520 if (is_long_mode(vcpu)) {
Rusty Russell66aee912007-07-17 23:34:16 +1000521 if (!(cr4 & X86_CR4_PAE)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800522 printk(KERN_DEBUG "set_cr4: #GP, clearing PAE while "
523 "in long mode\n");
524 inject_gp(vcpu);
525 return;
526 }
Rusty Russell66aee912007-07-17 23:34:16 +1000527 } else if (is_paging(vcpu) && !is_pae(vcpu) && (cr4 & X86_CR4_PAE)
Avi Kivity1342d352007-01-05 16:36:39 -0800528 && !load_pdptrs(vcpu, vcpu->cr3)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800529 printk(KERN_DEBUG "set_cr4: #GP, pdptrs reserved bits\n");
530 inject_gp(vcpu);
Rusty Russell310bc762007-07-23 17:11:02 +1000531 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800532 }
533
Rusty Russell66aee912007-07-17 23:34:16 +1000534 if (cr4 & X86_CR4_VMXE) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800535 printk(KERN_DEBUG "set_cr4: #GP, setting VMXE\n");
536 inject_gp(vcpu);
537 return;
538 }
539 kvm_arch_ops->set_cr4(vcpu, cr4);
Shaohua Li11ec2802007-07-23 14:51:37 +0800540 mutex_lock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800541 kvm_mmu_reset_context(vcpu);
Shaohua Li11ec2802007-07-23 14:51:37 +0800542 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800543}
544EXPORT_SYMBOL_GPL(set_cr4);
545
546void set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
547{
Avi Kivitya9058ec2006-12-29 16:49:37 -0800548 if (is_long_mode(vcpu)) {
Rusty Russellf802a302007-07-17 23:32:55 +1000549 if (cr3 & CR3_L_MODE_RESERVED_BITS) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800550 printk(KERN_DEBUG "set_cr3: #GP, reserved bits\n");
551 inject_gp(vcpu);
552 return;
553 }
554 } else {
Rusty Russellf802a302007-07-17 23:32:55 +1000555 if (is_pae(vcpu)) {
556 if (cr3 & CR3_PAE_RESERVED_BITS) {
557 printk(KERN_DEBUG
558 "set_cr3: #GP, reserved bits\n");
559 inject_gp(vcpu);
560 return;
561 }
562 if (is_paging(vcpu) && !load_pdptrs(vcpu, cr3)) {
563 printk(KERN_DEBUG "set_cr3: #GP, pdptrs "
564 "reserved bits\n");
565 inject_gp(vcpu);
566 return;
567 }
568 } else {
569 if (cr3 & CR3_NONPAE_RESERVED_BITS) {
570 printk(KERN_DEBUG
571 "set_cr3: #GP, reserved bits\n");
572 inject_gp(vcpu);
573 return;
574 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800575 }
576 }
577
Shaohua Li11ec2802007-07-23 14:51:37 +0800578 mutex_lock(&vcpu->kvm->lock);
Ingo Molnard21225e2007-01-05 16:36:59 -0800579 /*
580 * Does the new cr3 value map to physical memory? (Note, we
581 * catch an invalid cr3 even in real-mode, because it would
582 * cause trouble later on when we turn on paging anyway.)
583 *
584 * A real CPU would silently accept an invalid cr3 and would
585 * attempt to use it - with largely undefined (and often hard
586 * to debug) behavior on the guest side.
587 */
588 if (unlikely(!gfn_to_memslot(vcpu->kvm, cr3 >> PAGE_SHIFT)))
589 inject_gp(vcpu);
Rusty Russellfb764412007-07-31 20:45:03 +1000590 else {
591 vcpu->cr3 = cr3;
Ingo Molnard21225e2007-01-05 16:36:59 -0800592 vcpu->mmu.new_cr3(vcpu);
Rusty Russellfb764412007-07-31 20:45:03 +1000593 }
Shaohua Li11ec2802007-07-23 14:51:37 +0800594 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800595}
596EXPORT_SYMBOL_GPL(set_cr3);
597
598void set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
599{
Rusty Russell7075bc82007-07-17 23:37:17 +1000600 if (cr8 & CR8_RESERVED_BITS) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800601 printk(KERN_DEBUG "set_cr8: #GP, reserved bits 0x%lx\n", cr8);
602 inject_gp(vcpu);
603 return;
604 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300605 if (irqchip_in_kernel(vcpu->kvm))
606 kvm_lapic_set_tpr(vcpu, cr8);
607 else
608 vcpu->cr8 = cr8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800609}
610EXPORT_SYMBOL_GPL(set_cr8);
611
Eddie Dong7017fc32007-07-18 11:34:57 +0300612unsigned long get_cr8(struct kvm_vcpu *vcpu)
613{
Eddie Dong97222cc2007-09-12 10:58:04 +0300614 if (irqchip_in_kernel(vcpu->kvm))
615 return kvm_lapic_get_cr8(vcpu);
616 else
617 return vcpu->cr8;
Eddie Dong7017fc32007-07-18 11:34:57 +0300618}
619EXPORT_SYMBOL_GPL(get_cr8);
620
621u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
622{
Eddie Dong97222cc2007-09-12 10:58:04 +0300623 if (irqchip_in_kernel(vcpu->kvm))
624 return vcpu->apic_base;
625 else
626 return vcpu->apic_base;
Eddie Dong7017fc32007-07-18 11:34:57 +0300627}
628EXPORT_SYMBOL_GPL(kvm_get_apic_base);
629
630void kvm_set_apic_base(struct kvm_vcpu *vcpu, u64 data)
631{
Eddie Dong97222cc2007-09-12 10:58:04 +0300632 /* TODO: reserve bits check */
633 if (irqchip_in_kernel(vcpu->kvm))
634 kvm_lapic_set_base(vcpu, data);
635 else
636 vcpu->apic_base = data;
Eddie Dong7017fc32007-07-18 11:34:57 +0300637}
638EXPORT_SYMBOL_GPL(kvm_set_apic_base);
639
Avi Kivity6aa8b732006-12-10 02:21:36 -0800640void fx_init(struct kvm_vcpu *vcpu)
641{
Rusty Russellb114b082007-07-30 21:13:43 +1000642 unsigned after_mxcsr_mask;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800643
Rusty Russell9bd01502007-07-30 16:29:56 +1000644 /* Initialize guest FPU by resetting ours and saving into guest's */
645 preempt_disable();
Rusty Russellb114b082007-07-30 21:13:43 +1000646 fx_save(&vcpu->host_fx_image);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800647 fpu_init();
Rusty Russellb114b082007-07-30 21:13:43 +1000648 fx_save(&vcpu->guest_fx_image);
649 fx_restore(&vcpu->host_fx_image);
Rusty Russell9bd01502007-07-30 16:29:56 +1000650 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800651
Rusty Russellb114b082007-07-30 21:13:43 +1000652 after_mxcsr_mask = offsetof(struct i387_fxsave_struct, st_space);
653 vcpu->guest_fx_image.mxcsr = 0x1f80;
654 memset((void *)&vcpu->guest_fx_image + after_mxcsr_mask,
655 0, sizeof(struct i387_fxsave_struct) - after_mxcsr_mask);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800656}
657EXPORT_SYMBOL_GPL(fx_init);
658
659/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800660 * Allocate some memory and give it an address in the guest physical address
661 * space.
662 *
663 * Discontiguous memory is allowed, mostly for framebuffers.
664 */
Avi Kivity2c6f5df2007-02-20 18:27:58 +0200665static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
666 struct kvm_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800667{
668 int r;
669 gfn_t base_gfn;
670 unsigned long npages;
671 unsigned long i;
672 struct kvm_memory_slot *memslot;
673 struct kvm_memory_slot old, new;
674 int memory_config_version;
675
676 r = -EINVAL;
677 /* General sanity checks */
678 if (mem->memory_size & (PAGE_SIZE - 1))
679 goto out;
680 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
681 goto out;
682 if (mem->slot >= KVM_MEMORY_SLOTS)
683 goto out;
684 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
685 goto out;
686
687 memslot = &kvm->memslots[mem->slot];
688 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
689 npages = mem->memory_size >> PAGE_SHIFT;
690
691 if (!npages)
692 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
693
694raced:
Shaohua Li11ec2802007-07-23 14:51:37 +0800695 mutex_lock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800696
697 memory_config_version = kvm->memory_config_version;
698 new = old = *memslot;
699
700 new.base_gfn = base_gfn;
701 new.npages = npages;
702 new.flags = mem->flags;
703
704 /* Disallow changing a memory slot's size. */
705 r = -EINVAL;
706 if (npages && old.npages && npages != old.npages)
707 goto out_unlock;
708
709 /* Check for overlaps */
710 r = -EEXIST;
711 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
712 struct kvm_memory_slot *s = &kvm->memslots[i];
713
714 if (s == memslot)
715 continue;
716 if (!((base_gfn + npages <= s->base_gfn) ||
717 (base_gfn >= s->base_gfn + s->npages)))
718 goto out_unlock;
719 }
720 /*
721 * Do memory allocations outside lock. memory_config_version will
722 * detect any races.
723 */
Shaohua Li11ec2802007-07-23 14:51:37 +0800724 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800725
726 /* Deallocate if slot is being removed */
727 if (!npages)
Al Viro8b6d44c2007-02-09 16:38:40 +0000728 new.phys_mem = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800729
730 /* Free page dirty bitmap if unneeded */
731 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000732 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800733
734 r = -ENOMEM;
735
736 /* Allocate if a slot is being created */
737 if (npages && !new.phys_mem) {
738 new.phys_mem = vmalloc(npages * sizeof(struct page *));
739
740 if (!new.phys_mem)
741 goto out_free;
742
743 memset(new.phys_mem, 0, npages * sizeof(struct page *));
744 for (i = 0; i < npages; ++i) {
745 new.phys_mem[i] = alloc_page(GFP_HIGHUSER
746 | __GFP_ZERO);
747 if (!new.phys_mem[i])
748 goto out_free;
Markus Rechberger5972e952007-02-19 14:37:47 +0200749 set_page_private(new.phys_mem[i],0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800750 }
751 }
752
753 /* Allocate page dirty bitmap if needed */
754 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
755 unsigned dirty_bytes = ALIGN(npages, BITS_PER_LONG) / 8;
756
757 new.dirty_bitmap = vmalloc(dirty_bytes);
758 if (!new.dirty_bitmap)
759 goto out_free;
760 memset(new.dirty_bitmap, 0, dirty_bytes);
761 }
762
Shaohua Li11ec2802007-07-23 14:51:37 +0800763 mutex_lock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800764
765 if (memory_config_version != kvm->memory_config_version) {
Shaohua Li11ec2802007-07-23 14:51:37 +0800766 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800767 kvm_free_physmem_slot(&new, &old);
768 goto raced;
769 }
770
771 r = -EAGAIN;
772 if (kvm->busy)
773 goto out_unlock;
774
775 if (mem->slot >= kvm->nmemslots)
776 kvm->nmemslots = mem->slot + 1;
777
778 *memslot = new;
779 ++kvm->memory_config_version;
780
Avi Kivity90cb0522007-07-17 13:04:56 +0300781 kvm_mmu_slot_remove_write_access(kvm, mem->slot);
782 kvm_flush_remote_tlbs(kvm);
783
Shaohua Li11ec2802007-07-23 14:51:37 +0800784 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800785
Avi Kivity6aa8b732006-12-10 02:21:36 -0800786 kvm_free_physmem_slot(&old, &new);
787 return 0;
788
789out_unlock:
Shaohua Li11ec2802007-07-23 14:51:37 +0800790 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800791out_free:
792 kvm_free_physmem_slot(&new, &old);
793out:
794 return r;
795}
796
797/*
798 * Get (and clear) the dirty memory log for a memory slot.
799 */
Avi Kivity2c6f5df2007-02-20 18:27:58 +0200800static int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
801 struct kvm_dirty_log *log)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800802{
803 struct kvm_memory_slot *memslot;
804 int r, i;
805 int n;
806 unsigned long any = 0;
807
Shaohua Li11ec2802007-07-23 14:51:37 +0800808 mutex_lock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800809
810 /*
811 * Prevent changes to guest memory configuration even while the lock
812 * is not taken.
813 */
814 ++kvm->busy;
Shaohua Li11ec2802007-07-23 14:51:37 +0800815 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800816 r = -EINVAL;
817 if (log->slot >= KVM_MEMORY_SLOTS)
818 goto out;
819
820 memslot = &kvm->memslots[log->slot];
821 r = -ENOENT;
822 if (!memslot->dirty_bitmap)
823 goto out;
824
Uri Lublincd1a4a92007-02-22 16:43:09 +0200825 n = ALIGN(memslot->npages, BITS_PER_LONG) / 8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800826
Uri Lublincd1a4a92007-02-22 16:43:09 +0200827 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800828 any = memslot->dirty_bitmap[i];
829
830 r = -EFAULT;
831 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
832 goto out;
833
Rusty Russell39214912007-07-31 19:57:47 +1000834 /* If nothing is dirty, don't bother messing with page tables. */
835 if (any) {
836 mutex_lock(&kvm->lock);
837 kvm_mmu_slot_remove_write_access(kvm, log->slot);
838 kvm_flush_remote_tlbs(kvm);
839 memset(memslot->dirty_bitmap, 0, n);
840 mutex_unlock(&kvm->lock);
841 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800842
843 r = 0;
844
845out:
Shaohua Li11ec2802007-07-23 14:51:37 +0800846 mutex_lock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800847 --kvm->busy;
Shaohua Li11ec2802007-07-23 14:51:37 +0800848 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800849 return r;
850}
851
Avi Kivitye8207542007-03-30 16:54:30 +0300852/*
853 * Set a new alias region. Aliases map a portion of physical memory into
854 * another portion. This is useful for memory windows, for example the PC
855 * VGA region.
856 */
857static int kvm_vm_ioctl_set_memory_alias(struct kvm *kvm,
858 struct kvm_memory_alias *alias)
859{
860 int r, n;
861 struct kvm_mem_alias *p;
862
863 r = -EINVAL;
864 /* General sanity checks */
865 if (alias->memory_size & (PAGE_SIZE - 1))
866 goto out;
867 if (alias->guest_phys_addr & (PAGE_SIZE - 1))
868 goto out;
869 if (alias->slot >= KVM_ALIAS_SLOTS)
870 goto out;
871 if (alias->guest_phys_addr + alias->memory_size
872 < alias->guest_phys_addr)
873 goto out;
874 if (alias->target_phys_addr + alias->memory_size
875 < alias->target_phys_addr)
876 goto out;
877
Shaohua Li11ec2802007-07-23 14:51:37 +0800878 mutex_lock(&kvm->lock);
Avi Kivitye8207542007-03-30 16:54:30 +0300879
880 p = &kvm->aliases[alias->slot];
881 p->base_gfn = alias->guest_phys_addr >> PAGE_SHIFT;
882 p->npages = alias->memory_size >> PAGE_SHIFT;
883 p->target_gfn = alias->target_phys_addr >> PAGE_SHIFT;
884
885 for (n = KVM_ALIAS_SLOTS; n > 0; --n)
886 if (kvm->aliases[n - 1].npages)
887 break;
888 kvm->naliases = n;
889
Avi Kivity90cb0522007-07-17 13:04:56 +0300890 kvm_mmu_zap_all(kvm);
Avi Kivitye8207542007-03-30 16:54:30 +0300891
Shaohua Li11ec2802007-07-23 14:51:37 +0800892 mutex_unlock(&kvm->lock);
Avi Kivitye8207542007-03-30 16:54:30 +0300893
894 return 0;
895
896out:
897 return r;
898}
899
900static gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
901{
902 int i;
903 struct kvm_mem_alias *alias;
904
905 for (i = 0; i < kvm->naliases; ++i) {
906 alias = &kvm->aliases[i];
907 if (gfn >= alias->base_gfn
908 && gfn < alias->base_gfn + alias->npages)
909 return alias->target_gfn + gfn - alias->base_gfn;
910 }
911 return gfn;
912}
913
914static struct kvm_memory_slot *__gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800915{
916 int i;
917
918 for (i = 0; i < kvm->nmemslots; ++i) {
919 struct kvm_memory_slot *memslot = &kvm->memslots[i];
920
921 if (gfn >= memslot->base_gfn
922 && gfn < memslot->base_gfn + memslot->npages)
923 return memslot;
924 }
Al Viro8b6d44c2007-02-09 16:38:40 +0000925 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800926}
Avi Kivitye8207542007-03-30 16:54:30 +0300927
928struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
929{
930 gfn = unalias_gfn(kvm, gfn);
931 return __gfn_to_memslot(kvm, gfn);
932}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800933
Avi Kivity954bbbc2007-03-30 14:02:32 +0300934struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
935{
936 struct kvm_memory_slot *slot;
937
Avi Kivitye8207542007-03-30 16:54:30 +0300938 gfn = unalias_gfn(kvm, gfn);
939 slot = __gfn_to_memslot(kvm, gfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +0300940 if (!slot)
941 return NULL;
942 return slot->phys_mem[gfn - slot->base_gfn];
943}
944EXPORT_SYMBOL_GPL(gfn_to_page);
945
Rusty Russell7e9d6192007-07-31 20:41:14 +1000946/* WARNING: Does not work on aliased pages. */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800947void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
948{
Nguyen Anh Quynh31389942007-06-05 10:35:19 +0300949 struct kvm_memory_slot *memslot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800950
Rusty Russell7e9d6192007-07-31 20:41:14 +1000951 memslot = __gfn_to_memslot(kvm, gfn);
952 if (memslot && memslot->dirty_bitmap) {
953 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800954
Rusty Russell7e9d6192007-07-31 20:41:14 +1000955 /* avoid RMW */
956 if (!test_bit(rel_gfn, memslot->dirty_bitmap))
957 set_bit(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800958 }
959}
960
Laurent Viviere7d5d762007-07-30 13:41:19 +0300961int emulator_read_std(unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +0300962 void *val,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +0300964 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800965{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800966 void *data = val;
967
968 while (bytes) {
969 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, addr);
970 unsigned offset = addr & (PAGE_SIZE-1);
971 unsigned tocopy = min(bytes, (unsigned)PAGE_SIZE - offset);
972 unsigned long pfn;
Avi Kivity954bbbc2007-03-30 14:02:32 +0300973 struct page *page;
974 void *page_virt;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800975
976 if (gpa == UNMAPPED_GVA)
977 return X86EMUL_PROPAGATE_FAULT;
978 pfn = gpa >> PAGE_SHIFT;
Avi Kivity954bbbc2007-03-30 14:02:32 +0300979 page = gfn_to_page(vcpu->kvm, pfn);
980 if (!page)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800981 return X86EMUL_UNHANDLEABLE;
Avi Kivity954bbbc2007-03-30 14:02:32 +0300982 page_virt = kmap_atomic(page, KM_USER0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800983
Avi Kivity954bbbc2007-03-30 14:02:32 +0300984 memcpy(data, page_virt + offset, tocopy);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985
Avi Kivity954bbbc2007-03-30 14:02:32 +0300986 kunmap_atomic(page_virt, KM_USER0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800987
988 bytes -= tocopy;
989 data += tocopy;
990 addr += tocopy;
991 }
992
993 return X86EMUL_CONTINUE;
994}
Laurent Viviere7d5d762007-07-30 13:41:19 +0300995EXPORT_SYMBOL_GPL(emulator_read_std);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800996
997static int emulator_write_std(unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +0300998 const void *val,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001000 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001001{
Rusty Russellf0242472007-08-01 10:48:02 +10001002 pr_unimpl(vcpu, "emulator_write_std: addr %lx n %d\n", addr, bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001003 return X86EMUL_UNHANDLEABLE;
1004}
1005
Eddie Dong97222cc2007-09-12 10:58:04 +03001006/*
1007 * Only apic need an MMIO device hook, so shortcut now..
1008 */
1009static struct kvm_io_device *vcpu_find_pervcpu_dev(struct kvm_vcpu *vcpu,
1010 gpa_t addr)
1011{
1012 struct kvm_io_device *dev;
1013
1014 if (vcpu->apic) {
1015 dev = &vcpu->apic->dev;
1016 if (dev->in_range(dev, addr))
1017 return dev;
1018 }
1019 return NULL;
1020}
1021
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001022static struct kvm_io_device *vcpu_find_mmio_dev(struct kvm_vcpu *vcpu,
1023 gpa_t addr)
1024{
Eddie Dong97222cc2007-09-12 10:58:04 +03001025 struct kvm_io_device *dev;
1026
1027 dev = vcpu_find_pervcpu_dev(vcpu, addr);
1028 if (dev == NULL)
1029 dev = kvm_io_bus_find_dev(&vcpu->kvm->mmio_bus, addr);
1030 return dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001031}
1032
Eddie Dong74906342007-06-19 18:05:03 +03001033static struct kvm_io_device *vcpu_find_pio_dev(struct kvm_vcpu *vcpu,
1034 gpa_t addr)
1035{
1036 return kvm_io_bus_find_dev(&vcpu->kvm->pio_bus, addr);
1037}
1038
Avi Kivity6aa8b732006-12-10 02:21:36 -08001039static int emulator_read_emulated(unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +03001040 void *val,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001041 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001042 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001043{
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001044 struct kvm_io_device *mmio_dev;
1045 gpa_t gpa;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001046
1047 if (vcpu->mmio_read_completed) {
1048 memcpy(val, vcpu->mmio_data, bytes);
1049 vcpu->mmio_read_completed = 0;
1050 return X86EMUL_CONTINUE;
Laurent Viviercebff022007-07-30 13:35:24 +03001051 } else if (emulator_read_std(addr, val, bytes, vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001052 == X86EMUL_CONTINUE)
1053 return X86EMUL_CONTINUE;
Avi Kivityd27d4ac2007-02-19 14:37:46 +02001054
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001055 gpa = vcpu->mmu.gva_to_gpa(vcpu, addr);
1056 if (gpa == UNMAPPED_GVA)
1057 return X86EMUL_PROPAGATE_FAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001059 /*
1060 * Is this MMIO handled locally?
1061 */
1062 mmio_dev = vcpu_find_mmio_dev(vcpu, gpa);
1063 if (mmio_dev) {
1064 kvm_iodevice_read(mmio_dev, gpa, bytes, val);
1065 return X86EMUL_CONTINUE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001066 }
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001067
1068 vcpu->mmio_needed = 1;
1069 vcpu->mmio_phys_addr = gpa;
1070 vcpu->mmio_size = bytes;
1071 vcpu->mmio_is_write = 0;
1072
1073 return X86EMUL_UNHANDLEABLE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001074}
1075
Avi Kivityda4a00f2007-01-05 16:36:44 -08001076static int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivity4c690a12007-04-22 15:28:19 +03001077 const void *val, int bytes)
Avi Kivityda4a00f2007-01-05 16:36:44 -08001078{
Avi Kivityda4a00f2007-01-05 16:36:44 -08001079 struct page *page;
1080 void *virt;
1081
1082 if (((gpa + bytes - 1) >> PAGE_SHIFT) != (gpa >> PAGE_SHIFT))
1083 return 0;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001084 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
1085 if (!page)
Avi Kivityda4a00f2007-01-05 16:36:44 -08001086 return 0;
Uri Lublinab51a432007-02-21 18:25:21 +02001087 mark_page_dirty(vcpu->kvm, gpa >> PAGE_SHIFT);
Avi Kivityda4a00f2007-01-05 16:36:44 -08001088 virt = kmap_atomic(page, KM_USER0);
Shaohua Life551882007-07-23 14:51:39 +08001089 kvm_mmu_pte_write(vcpu, gpa, val, bytes);
Avi Kivity7cfa4b02007-07-23 18:33:14 +03001090 memcpy(virt + offset_in_page(gpa), val, bytes);
Avi Kivityda4a00f2007-01-05 16:36:44 -08001091 kunmap_atomic(virt, KM_USER0);
Avi Kivityda4a00f2007-01-05 16:36:44 -08001092 return 1;
1093}
1094
Avi Kivityb0fcd902007-07-22 18:48:54 +03001095static int emulator_write_emulated_onepage(unsigned long addr,
1096 const void *val,
1097 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001098 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001099{
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001100 struct kvm_io_device *mmio_dev;
1101 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001102
Avi Kivityc9047f52007-04-17 10:53:22 +03001103 if (gpa == UNMAPPED_GVA) {
1104 kvm_arch_ops->inject_page_fault(vcpu, addr, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001105 return X86EMUL_PROPAGATE_FAULT;
Avi Kivityc9047f52007-04-17 10:53:22 +03001106 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001107
Avi Kivityda4a00f2007-01-05 16:36:44 -08001108 if (emulator_write_phys(vcpu, gpa, val, bytes))
1109 return X86EMUL_CONTINUE;
1110
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001111 /*
1112 * Is this MMIO handled locally?
1113 */
1114 mmio_dev = vcpu_find_mmio_dev(vcpu, gpa);
1115 if (mmio_dev) {
1116 kvm_iodevice_write(mmio_dev, gpa, bytes, val);
1117 return X86EMUL_CONTINUE;
1118 }
1119
Avi Kivity6aa8b732006-12-10 02:21:36 -08001120 vcpu->mmio_needed = 1;
1121 vcpu->mmio_phys_addr = gpa;
1122 vcpu->mmio_size = bytes;
1123 vcpu->mmio_is_write = 1;
Avi Kivity4c690a12007-04-22 15:28:19 +03001124 memcpy(vcpu->mmio_data, val, bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001125
1126 return X86EMUL_CONTINUE;
1127}
1128
Laurent Viviere7d5d762007-07-30 13:41:19 +03001129int emulator_write_emulated(unsigned long addr,
Avi Kivityb0fcd902007-07-22 18:48:54 +03001130 const void *val,
1131 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001132 struct kvm_vcpu *vcpu)
Avi Kivityb0fcd902007-07-22 18:48:54 +03001133{
1134 /* Crossing a page boundary? */
1135 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
1136 int rc, now;
1137
1138 now = -addr & ~PAGE_MASK;
Laurent Viviercebff022007-07-30 13:35:24 +03001139 rc = emulator_write_emulated_onepage(addr, val, now, vcpu);
Avi Kivityb0fcd902007-07-22 18:48:54 +03001140 if (rc != X86EMUL_CONTINUE)
1141 return rc;
1142 addr += now;
1143 val += now;
1144 bytes -= now;
1145 }
Laurent Viviercebff022007-07-30 13:35:24 +03001146 return emulator_write_emulated_onepage(addr, val, bytes, vcpu);
Avi Kivityb0fcd902007-07-22 18:48:54 +03001147}
Laurent Viviere7d5d762007-07-30 13:41:19 +03001148EXPORT_SYMBOL_GPL(emulator_write_emulated);
Avi Kivityb0fcd902007-07-22 18:48:54 +03001149
Avi Kivity6aa8b732006-12-10 02:21:36 -08001150static int emulator_cmpxchg_emulated(unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +03001151 const void *old,
1152 const void *new,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001153 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001154 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001155{
1156 static int reported;
1157
1158 if (!reported) {
1159 reported = 1;
1160 printk(KERN_WARNING "kvm: emulating exchange as write\n");
1161 }
Laurent Viviercebff022007-07-30 13:35:24 +03001162 return emulator_write_emulated(addr, new, bytes, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001163}
1164
1165static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
1166{
1167 return kvm_arch_ops->get_segment_base(vcpu, seg);
1168}
1169
1170int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address)
1171{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001172 return X86EMUL_CONTINUE;
1173}
1174
1175int emulate_clts(struct kvm_vcpu *vcpu)
1176{
Avi Kivity399badf2007-01-05 16:36:38 -08001177 unsigned long cr0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001178
Rusty Russell707d92f2007-07-17 23:19:08 +10001179 cr0 = vcpu->cr0 & ~X86_CR0_TS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001180 kvm_arch_ops->set_cr0(vcpu, cr0);
1181 return X86EMUL_CONTINUE;
1182}
1183
1184int emulator_get_dr(struct x86_emulate_ctxt* ctxt, int dr, unsigned long *dest)
1185{
1186 struct kvm_vcpu *vcpu = ctxt->vcpu;
1187
1188 switch (dr) {
1189 case 0 ... 3:
1190 *dest = kvm_arch_ops->get_dr(vcpu, dr);
1191 return X86EMUL_CONTINUE;
1192 default:
Rusty Russellf0242472007-08-01 10:48:02 +10001193 pr_unimpl(vcpu, "%s: unexpected dr %u\n", __FUNCTION__, dr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001194 return X86EMUL_UNHANDLEABLE;
1195 }
1196}
1197
1198int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr, unsigned long value)
1199{
1200 unsigned long mask = (ctxt->mode == X86EMUL_MODE_PROT64) ? ~0ULL : ~0U;
1201 int exception;
1202
1203 kvm_arch_ops->set_dr(ctxt->vcpu, dr, value & mask, &exception);
1204 if (exception) {
1205 /* FIXME: better handling */
1206 return X86EMUL_UNHANDLEABLE;
1207 }
1208 return X86EMUL_CONTINUE;
1209}
1210
1211static void report_emulation_failure(struct x86_emulate_ctxt *ctxt)
1212{
1213 static int reported;
1214 u8 opcodes[4];
1215 unsigned long rip = ctxt->vcpu->rip;
1216 unsigned long rip_linear;
1217
1218 rip_linear = rip + get_segment_base(ctxt->vcpu, VCPU_SREG_CS);
1219
1220 if (reported)
1221 return;
1222
Laurent Viviercebff022007-07-30 13:35:24 +03001223 emulator_read_std(rip_linear, (void *)opcodes, 4, ctxt->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001224
1225 printk(KERN_ERR "emulation failed but !mmio_needed?"
1226 " rip %lx %02x %02x %02x %02x\n",
1227 rip, opcodes[0], opcodes[1], opcodes[2], opcodes[3]);
1228 reported = 1;
1229}
1230
1231struct x86_emulate_ops emulate_ops = {
1232 .read_std = emulator_read_std,
1233 .write_std = emulator_write_std,
1234 .read_emulated = emulator_read_emulated,
1235 .write_emulated = emulator_write_emulated,
1236 .cmpxchg_emulated = emulator_cmpxchg_emulated,
1237};
1238
1239int emulate_instruction(struct kvm_vcpu *vcpu,
1240 struct kvm_run *run,
1241 unsigned long cr2,
1242 u16 error_code)
1243{
1244 struct x86_emulate_ctxt emulate_ctxt;
1245 int r;
1246 int cs_db, cs_l;
1247
Avi Kivitye7df56e2007-03-14 15:54:54 +02001248 vcpu->mmio_fault_cr2 = cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001249 kvm_arch_ops->cache_regs(vcpu);
1250
1251 kvm_arch_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
1252
1253 emulate_ctxt.vcpu = vcpu;
1254 emulate_ctxt.eflags = kvm_arch_ops->get_rflags(vcpu);
1255 emulate_ctxt.cr2 = cr2;
1256 emulate_ctxt.mode = (emulate_ctxt.eflags & X86_EFLAGS_VM)
1257 ? X86EMUL_MODE_REAL : cs_l
1258 ? X86EMUL_MODE_PROT64 : cs_db
1259 ? X86EMUL_MODE_PROT32 : X86EMUL_MODE_PROT16;
1260
1261 if (emulate_ctxt.mode == X86EMUL_MODE_PROT64) {
1262 emulate_ctxt.cs_base = 0;
1263 emulate_ctxt.ds_base = 0;
1264 emulate_ctxt.es_base = 0;
1265 emulate_ctxt.ss_base = 0;
1266 } else {
1267 emulate_ctxt.cs_base = get_segment_base(vcpu, VCPU_SREG_CS);
1268 emulate_ctxt.ds_base = get_segment_base(vcpu, VCPU_SREG_DS);
1269 emulate_ctxt.es_base = get_segment_base(vcpu, VCPU_SREG_ES);
1270 emulate_ctxt.ss_base = get_segment_base(vcpu, VCPU_SREG_SS);
1271 }
1272
1273 emulate_ctxt.gs_base = get_segment_base(vcpu, VCPU_SREG_GS);
1274 emulate_ctxt.fs_base = get_segment_base(vcpu, VCPU_SREG_FS);
1275
1276 vcpu->mmio_is_write = 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03001277 vcpu->pio.string = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001278 r = x86_emulate_memop(&emulate_ctxt, &emulate_ops);
Laurent Viviere70669a2007-08-05 10:36:40 +03001279 if (vcpu->pio.string)
1280 return EMULATE_DO_MMIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001281
1282 if ((r || vcpu->mmio_is_write) && run) {
Jeff Dike8fc0d082007-07-17 12:26:59 -04001283 run->exit_reason = KVM_EXIT_MMIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001284 run->mmio.phys_addr = vcpu->mmio_phys_addr;
1285 memcpy(run->mmio.data, vcpu->mmio_data, 8);
1286 run->mmio.len = vcpu->mmio_size;
1287 run->mmio.is_write = vcpu->mmio_is_write;
1288 }
1289
1290 if (r) {
Avi Kivitya4360362007-01-05 16:36:45 -08001291 if (kvm_mmu_unprotect_page_virt(vcpu, cr2))
1292 return EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001293 if (!vcpu->mmio_needed) {
1294 report_emulation_failure(&emulate_ctxt);
1295 return EMULATE_FAIL;
1296 }
1297 return EMULATE_DO_MMIO;
1298 }
1299
1300 kvm_arch_ops->decache_regs(vcpu);
1301 kvm_arch_ops->set_rflags(vcpu, emulate_ctxt.eflags);
1302
Avi Kivity02c83202007-04-29 15:02:17 +03001303 if (vcpu->mmio_is_write) {
1304 vcpu->mmio_needed = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001305 return EMULATE_DO_MMIO;
Avi Kivity02c83202007-04-29 15:02:17 +03001306 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001307
1308 return EMULATE_DONE;
1309}
1310EXPORT_SYMBOL_GPL(emulate_instruction);
1311
Eddie Dongb6958ce2007-07-18 12:15:21 +03001312/*
1313 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1314 */
1315static void kvm_vcpu_kernel_halt(struct kvm_vcpu *vcpu)
1316{
1317 DECLARE_WAITQUEUE(wait, current);
1318
1319 add_wait_queue(&vcpu->wq, &wait);
1320
1321 /*
1322 * We will block until either an interrupt or a signal wakes us up
1323 */
1324 while(!(irqchip_in_kernel(vcpu->kvm) && kvm_cpu_has_interrupt(vcpu))
1325 && !vcpu->irq_summary
1326 && !signal_pending(current)) {
1327 set_current_state(TASK_INTERRUPTIBLE);
1328 vcpu_put(vcpu);
1329 schedule();
1330 vcpu_load(vcpu);
1331 }
1332
1333 remove_wait_queue(&vcpu->wq, &wait);
1334 set_current_state(TASK_RUNNING);
1335}
1336
Avi Kivityd3bef152007-06-05 15:53:05 +03001337int kvm_emulate_halt(struct kvm_vcpu *vcpu)
1338{
Avi Kivityd3bef152007-06-05 15:53:05 +03001339 ++vcpu->stat.halt_exits;
Eddie Dongb6958ce2007-07-18 12:15:21 +03001340 if (irqchip_in_kernel(vcpu->kvm)) {
1341 kvm_vcpu_kernel_halt(vcpu);
1342 return 1;
1343 } else {
1344 vcpu->run->exit_reason = KVM_EXIT_HLT;
1345 return 0;
1346 }
Avi Kivityd3bef152007-06-05 15:53:05 +03001347}
1348EXPORT_SYMBOL_GPL(kvm_emulate_halt);
1349
Avi Kivity270fd9b2007-02-19 14:37:47 +02001350int kvm_hypercall(struct kvm_vcpu *vcpu, struct kvm_run *run)
1351{
1352 unsigned long nr, a0, a1, a2, a3, a4, a5, ret;
1353
Dor Laor9b22bf52007-02-19 16:44:49 +02001354 kvm_arch_ops->cache_regs(vcpu);
Avi Kivity270fd9b2007-02-19 14:37:47 +02001355 ret = -KVM_EINVAL;
1356#ifdef CONFIG_X86_64
1357 if (is_long_mode(vcpu)) {
1358 nr = vcpu->regs[VCPU_REGS_RAX];
1359 a0 = vcpu->regs[VCPU_REGS_RDI];
1360 a1 = vcpu->regs[VCPU_REGS_RSI];
1361 a2 = vcpu->regs[VCPU_REGS_RDX];
1362 a3 = vcpu->regs[VCPU_REGS_RCX];
1363 a4 = vcpu->regs[VCPU_REGS_R8];
1364 a5 = vcpu->regs[VCPU_REGS_R9];
1365 } else
1366#endif
1367 {
1368 nr = vcpu->regs[VCPU_REGS_RBX] & -1u;
1369 a0 = vcpu->regs[VCPU_REGS_RAX] & -1u;
1370 a1 = vcpu->regs[VCPU_REGS_RCX] & -1u;
1371 a2 = vcpu->regs[VCPU_REGS_RDX] & -1u;
1372 a3 = vcpu->regs[VCPU_REGS_RSI] & -1u;
1373 a4 = vcpu->regs[VCPU_REGS_RDI] & -1u;
1374 a5 = vcpu->regs[VCPU_REGS_RBP] & -1u;
1375 }
1376 switch (nr) {
1377 default:
Jeff Dike519ef352007-07-16 15:24:47 -04001378 run->hypercall.nr = nr;
Avi Kivityb4e63f52007-03-04 13:59:30 +02001379 run->hypercall.args[0] = a0;
1380 run->hypercall.args[1] = a1;
1381 run->hypercall.args[2] = a2;
1382 run->hypercall.args[3] = a3;
1383 run->hypercall.args[4] = a4;
1384 run->hypercall.args[5] = a5;
1385 run->hypercall.ret = ret;
1386 run->hypercall.longmode = is_long_mode(vcpu);
1387 kvm_arch_ops->decache_regs(vcpu);
1388 return 0;
Avi Kivity270fd9b2007-02-19 14:37:47 +02001389 }
1390 vcpu->regs[VCPU_REGS_RAX] = ret;
Dor Laor9b22bf52007-02-19 16:44:49 +02001391 kvm_arch_ops->decache_regs(vcpu);
Avi Kivity270fd9b2007-02-19 14:37:47 +02001392 return 1;
1393}
1394EXPORT_SYMBOL_GPL(kvm_hypercall);
1395
Avi Kivity6aa8b732006-12-10 02:21:36 -08001396static u64 mk_cr_64(u64 curr_cr, u32 new_val)
1397{
1398 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
1399}
1400
1401void realmode_lgdt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
1402{
1403 struct descriptor_table dt = { limit, base };
1404
1405 kvm_arch_ops->set_gdt(vcpu, &dt);
1406}
1407
1408void realmode_lidt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
1409{
1410 struct descriptor_table dt = { limit, base };
1411
1412 kvm_arch_ops->set_idt(vcpu, &dt);
1413}
1414
1415void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
1416 unsigned long *rflags)
1417{
1418 lmsw(vcpu, msw);
1419 *rflags = kvm_arch_ops->get_rflags(vcpu);
1420}
1421
1422unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr)
1423{
Anthony Liguori25c4c272007-04-27 09:29:21 +03001424 kvm_arch_ops->decache_cr4_guest_bits(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001425 switch (cr) {
1426 case 0:
1427 return vcpu->cr0;
1428 case 2:
1429 return vcpu->cr2;
1430 case 3:
1431 return vcpu->cr3;
1432 case 4:
1433 return vcpu->cr4;
1434 default:
1435 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __FUNCTION__, cr);
1436 return 0;
1437 }
1438}
1439
1440void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long val,
1441 unsigned long *rflags)
1442{
1443 switch (cr) {
1444 case 0:
1445 set_cr0(vcpu, mk_cr_64(vcpu->cr0, val));
1446 *rflags = kvm_arch_ops->get_rflags(vcpu);
1447 break;
1448 case 2:
1449 vcpu->cr2 = val;
1450 break;
1451 case 3:
1452 set_cr3(vcpu, val);
1453 break;
1454 case 4:
1455 set_cr4(vcpu, mk_cr_64(vcpu->cr4, val));
1456 break;
1457 default:
1458 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __FUNCTION__, cr);
1459 }
1460}
1461
Ingo Molnar102d8322007-02-19 14:37:47 +02001462/*
1463 * Register the para guest with the host:
1464 */
1465static int vcpu_register_para(struct kvm_vcpu *vcpu, gpa_t para_state_gpa)
1466{
1467 struct kvm_vcpu_para_state *para_state;
1468 hpa_t para_state_hpa, hypercall_hpa;
1469 struct page *para_state_page;
1470 unsigned char *hypercall;
1471 gpa_t hypercall_gpa;
1472
1473 printk(KERN_DEBUG "kvm: guest trying to enter paravirtual mode\n");
1474 printk(KERN_DEBUG ".... para_state_gpa: %08Lx\n", para_state_gpa);
1475
1476 /*
1477 * Needs to be page aligned:
1478 */
1479 if (para_state_gpa != PAGE_ALIGN(para_state_gpa))
1480 goto err_gp;
1481
1482 para_state_hpa = gpa_to_hpa(vcpu, para_state_gpa);
1483 printk(KERN_DEBUG ".... para_state_hpa: %08Lx\n", para_state_hpa);
1484 if (is_error_hpa(para_state_hpa))
1485 goto err_gp;
1486
Uri Lublinab51a432007-02-21 18:25:21 +02001487 mark_page_dirty(vcpu->kvm, para_state_gpa >> PAGE_SHIFT);
Ingo Molnar102d8322007-02-19 14:37:47 +02001488 para_state_page = pfn_to_page(para_state_hpa >> PAGE_SHIFT);
Shaohua Life551882007-07-23 14:51:39 +08001489 para_state = kmap(para_state_page);
Ingo Molnar102d8322007-02-19 14:37:47 +02001490
1491 printk(KERN_DEBUG ".... guest version: %d\n", para_state->guest_version);
1492 printk(KERN_DEBUG ".... size: %d\n", para_state->size);
1493
1494 para_state->host_version = KVM_PARA_API_VERSION;
1495 /*
1496 * We cannot support guests that try to register themselves
1497 * with a newer API version than the host supports:
1498 */
1499 if (para_state->guest_version > KVM_PARA_API_VERSION) {
1500 para_state->ret = -KVM_EINVAL;
1501 goto err_kunmap_skip;
1502 }
1503
1504 hypercall_gpa = para_state->hypercall_gpa;
1505 hypercall_hpa = gpa_to_hpa(vcpu, hypercall_gpa);
1506 printk(KERN_DEBUG ".... hypercall_hpa: %08Lx\n", hypercall_hpa);
1507 if (is_error_hpa(hypercall_hpa)) {
1508 para_state->ret = -KVM_EINVAL;
1509 goto err_kunmap_skip;
1510 }
1511
1512 printk(KERN_DEBUG "kvm: para guest successfully registered.\n");
1513 vcpu->para_state_page = para_state_page;
1514 vcpu->para_state_gpa = para_state_gpa;
1515 vcpu->hypercall_gpa = hypercall_gpa;
1516
Uri Lublinab51a432007-02-21 18:25:21 +02001517 mark_page_dirty(vcpu->kvm, hypercall_gpa >> PAGE_SHIFT);
Ingo Molnar102d8322007-02-19 14:37:47 +02001518 hypercall = kmap_atomic(pfn_to_page(hypercall_hpa >> PAGE_SHIFT),
1519 KM_USER1) + (hypercall_hpa & ~PAGE_MASK);
1520 kvm_arch_ops->patch_hypercall(vcpu, hypercall);
1521 kunmap_atomic(hypercall, KM_USER1);
1522
1523 para_state->ret = 0;
1524err_kunmap_skip:
Shaohua Life551882007-07-23 14:51:39 +08001525 kunmap(para_state_page);
Ingo Molnar102d8322007-02-19 14:37:47 +02001526 return 0;
1527err_gp:
1528 return 1;
1529}
1530
Avi Kivity3bab1f52006-12-29 16:49:48 -08001531int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
1532{
1533 u64 data;
1534
1535 switch (msr) {
1536 case 0xc0010010: /* SYSCFG */
1537 case 0xc0010015: /* HWCR */
1538 case MSR_IA32_PLATFORM_ID:
1539 case MSR_IA32_P5_MC_ADDR:
1540 case MSR_IA32_P5_MC_TYPE:
1541 case MSR_IA32_MC0_CTL:
1542 case MSR_IA32_MCG_STATUS:
1543 case MSR_IA32_MCG_CAP:
1544 case MSR_IA32_MC0_MISC:
1545 case MSR_IA32_MC0_MISC+4:
1546 case MSR_IA32_MC0_MISC+8:
1547 case MSR_IA32_MC0_MISC+12:
1548 case MSR_IA32_MC0_MISC+16:
1549 case MSR_IA32_UCODE_REV:
Avi Kivitya8d13ea2006-12-29 16:49:51 -08001550 case MSR_IA32_PERF_STATUS:
Matthew Gregan2dc70942007-05-06 10:59:46 +03001551 case MSR_IA32_EBL_CR_POWERON:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001552 /* MTRR registers */
1553 case 0xfe:
1554 case 0x200 ... 0x2ff:
1555 data = 0;
1556 break;
Avi Kivitya8d13ea2006-12-29 16:49:51 -08001557 case 0xcd: /* fsb frequency */
1558 data = 3;
1559 break;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001560 case MSR_IA32_APICBASE:
Eddie Dong7017fc32007-07-18 11:34:57 +03001561 data = kvm_get_apic_base(vcpu);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001562 break;
Avi Kivity6f00e682007-01-26 00:56:40 -08001563 case MSR_IA32_MISC_ENABLE:
1564 data = vcpu->ia32_misc_enable_msr;
1565 break;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001566#ifdef CONFIG_X86_64
1567 case MSR_EFER:
1568 data = vcpu->shadow_efer;
1569 break;
1570#endif
1571 default:
Rusty Russellf0242472007-08-01 10:48:02 +10001572 pr_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001573 return 1;
1574 }
1575 *pdata = data;
1576 return 0;
1577}
1578EXPORT_SYMBOL_GPL(kvm_get_msr_common);
1579
Avi Kivity6aa8b732006-12-10 02:21:36 -08001580/*
1581 * Reads an msr value (of 'msr_index') into 'pdata'.
1582 * Returns 0 on success, non-0 otherwise.
1583 * Assumes vcpu_load() was already called.
1584 */
Avi Kivity35f3f282007-07-17 14:20:30 +03001585int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001586{
1587 return kvm_arch_ops->get_msr(vcpu, msr_index, pdata);
1588}
1589
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001590#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001591
Avi Kivity3bab1f52006-12-29 16:49:48 -08001592static void set_efer(struct kvm_vcpu *vcpu, u64 efer)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001593{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001594 if (efer & EFER_RESERVED_BITS) {
1595 printk(KERN_DEBUG "set_efer: 0x%llx #GP, reserved bits\n",
1596 efer);
1597 inject_gp(vcpu);
1598 return;
1599 }
1600
1601 if (is_paging(vcpu)
1602 && (vcpu->shadow_efer & EFER_LME) != (efer & EFER_LME)) {
1603 printk(KERN_DEBUG "set_efer: #GP, change LME while paging\n");
1604 inject_gp(vcpu);
1605 return;
1606 }
1607
Avi Kivity7725f0b2006-12-13 00:34:01 -08001608 kvm_arch_ops->set_efer(vcpu, efer);
1609
Avi Kivity6aa8b732006-12-10 02:21:36 -08001610 efer &= ~EFER_LMA;
1611 efer |= vcpu->shadow_efer & EFER_LMA;
1612
1613 vcpu->shadow_efer = efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001614}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001615
1616#endif
1617
Avi Kivity3bab1f52006-12-29 16:49:48 -08001618int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1619{
1620 switch (msr) {
1621#ifdef CONFIG_X86_64
1622 case MSR_EFER:
1623 set_efer(vcpu, data);
1624 break;
1625#endif
1626 case MSR_IA32_MC0_STATUS:
Rusty Russellf0242472007-08-01 10:48:02 +10001627 pr_unimpl(vcpu, "%s: MSR_IA32_MC0_STATUS 0x%llx, nop\n",
Avi Kivity3bab1f52006-12-29 16:49:48 -08001628 __FUNCTION__, data);
1629 break;
Sergey Kiselev0e5bf0d2007-03-22 14:06:18 +02001630 case MSR_IA32_MCG_STATUS:
Rusty Russellf0242472007-08-01 10:48:02 +10001631 pr_unimpl(vcpu, "%s: MSR_IA32_MCG_STATUS 0x%llx, nop\n",
Sergey Kiselev0e5bf0d2007-03-22 14:06:18 +02001632 __FUNCTION__, data);
1633 break;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001634 case MSR_IA32_UCODE_REV:
1635 case MSR_IA32_UCODE_WRITE:
1636 case 0x200 ... 0x2ff: /* MTRRs */
1637 break;
1638 case MSR_IA32_APICBASE:
Eddie Dong7017fc32007-07-18 11:34:57 +03001639 kvm_set_apic_base(vcpu, data);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001640 break;
Avi Kivity6f00e682007-01-26 00:56:40 -08001641 case MSR_IA32_MISC_ENABLE:
1642 vcpu->ia32_misc_enable_msr = data;
1643 break;
Ingo Molnar102d8322007-02-19 14:37:47 +02001644 /*
1645 * This is the 'probe whether the host is KVM' logic:
1646 */
1647 case MSR_KVM_API_MAGIC:
1648 return vcpu_register_para(vcpu, data);
1649
Avi Kivity3bab1f52006-12-29 16:49:48 -08001650 default:
Rusty Russellf0242472007-08-01 10:48:02 +10001651 pr_unimpl(vcpu, "unhandled wrmsr: 0x%x\n", msr);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001652 return 1;
1653 }
1654 return 0;
1655}
1656EXPORT_SYMBOL_GPL(kvm_set_msr_common);
1657
Avi Kivity6aa8b732006-12-10 02:21:36 -08001658/*
1659 * Writes msr value into into the appropriate "register".
1660 * Returns 0 on success, non-0 otherwise.
1661 * Assumes vcpu_load() was already called.
1662 */
Avi Kivity35f3f282007-07-17 14:20:30 +03001663int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001664{
1665 return kvm_arch_ops->set_msr(vcpu, msr_index, data);
1666}
1667
1668void kvm_resched(struct kvm_vcpu *vcpu)
1669{
Yaozu Dong3fca0362007-04-25 16:49:19 +03001670 if (!need_resched())
1671 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001672 cond_resched();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001673}
1674EXPORT_SYMBOL_GPL(kvm_resched);
1675
Avi Kivity06465c52007-02-28 20:46:53 +02001676void kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
1677{
1678 int i;
1679 u32 function;
1680 struct kvm_cpuid_entry *e, *best;
1681
1682 kvm_arch_ops->cache_regs(vcpu);
1683 function = vcpu->regs[VCPU_REGS_RAX];
1684 vcpu->regs[VCPU_REGS_RAX] = 0;
1685 vcpu->regs[VCPU_REGS_RBX] = 0;
1686 vcpu->regs[VCPU_REGS_RCX] = 0;
1687 vcpu->regs[VCPU_REGS_RDX] = 0;
1688 best = NULL;
1689 for (i = 0; i < vcpu->cpuid_nent; ++i) {
1690 e = &vcpu->cpuid_entries[i];
1691 if (e->function == function) {
1692 best = e;
1693 break;
1694 }
1695 /*
1696 * Both basic or both extended?
1697 */
1698 if (((e->function ^ function) & 0x80000000) == 0)
1699 if (!best || e->function > best->function)
1700 best = e;
1701 }
1702 if (best) {
1703 vcpu->regs[VCPU_REGS_RAX] = best->eax;
1704 vcpu->regs[VCPU_REGS_RBX] = best->ebx;
1705 vcpu->regs[VCPU_REGS_RCX] = best->ecx;
1706 vcpu->regs[VCPU_REGS_RDX] = best->edx;
1707 }
1708 kvm_arch_ops->decache_regs(vcpu);
1709 kvm_arch_ops->skip_emulated_instruction(vcpu);
1710}
1711EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);
1712
Avi Kivity039576c2007-03-20 12:46:50 +02001713static int pio_copy_data(struct kvm_vcpu *vcpu)
Avi Kivity46fc1472007-02-22 19:39:30 +02001714{
Avi Kivity039576c2007-03-20 12:46:50 +02001715 void *p = vcpu->pio_data;
1716 void *q;
1717 unsigned bytes;
1718 int nr_pages = vcpu->pio.guest_pages[1] ? 2 : 1;
1719
Avi Kivity039576c2007-03-20 12:46:50 +02001720 q = vmap(vcpu->pio.guest_pages, nr_pages, VM_READ|VM_WRITE,
1721 PAGE_KERNEL);
1722 if (!q) {
Avi Kivity039576c2007-03-20 12:46:50 +02001723 free_pio_guest_pages(vcpu);
1724 return -ENOMEM;
1725 }
1726 q += vcpu->pio.guest_page_offset;
1727 bytes = vcpu->pio.size * vcpu->pio.cur_count;
1728 if (vcpu->pio.in)
1729 memcpy(q, p, bytes);
1730 else
1731 memcpy(p, q, bytes);
1732 q -= vcpu->pio.guest_page_offset;
1733 vunmap(q);
Avi Kivity039576c2007-03-20 12:46:50 +02001734 free_pio_guest_pages(vcpu);
1735 return 0;
1736}
1737
1738static int complete_pio(struct kvm_vcpu *vcpu)
1739{
1740 struct kvm_pio_request *io = &vcpu->pio;
Avi Kivity46fc1472007-02-22 19:39:30 +02001741 long delta;
Avi Kivity039576c2007-03-20 12:46:50 +02001742 int r;
Avi Kivity46fc1472007-02-22 19:39:30 +02001743
1744 kvm_arch_ops->cache_regs(vcpu);
1745
1746 if (!io->string) {
Avi Kivity039576c2007-03-20 12:46:50 +02001747 if (io->in)
1748 memcpy(&vcpu->regs[VCPU_REGS_RAX], vcpu->pio_data,
Avi Kivity46fc1472007-02-22 19:39:30 +02001749 io->size);
1750 } else {
Avi Kivity039576c2007-03-20 12:46:50 +02001751 if (io->in) {
1752 r = pio_copy_data(vcpu);
1753 if (r) {
1754 kvm_arch_ops->cache_regs(vcpu);
1755 return r;
1756 }
1757 }
1758
Avi Kivity46fc1472007-02-22 19:39:30 +02001759 delta = 1;
1760 if (io->rep) {
Avi Kivity039576c2007-03-20 12:46:50 +02001761 delta *= io->cur_count;
Avi Kivity46fc1472007-02-22 19:39:30 +02001762 /*
1763 * The size of the register should really depend on
1764 * current address size.
1765 */
1766 vcpu->regs[VCPU_REGS_RCX] -= delta;
1767 }
Avi Kivity039576c2007-03-20 12:46:50 +02001768 if (io->down)
Avi Kivity46fc1472007-02-22 19:39:30 +02001769 delta = -delta;
1770 delta *= io->size;
Avi Kivity039576c2007-03-20 12:46:50 +02001771 if (io->in)
Avi Kivity46fc1472007-02-22 19:39:30 +02001772 vcpu->regs[VCPU_REGS_RDI] += delta;
1773 else
1774 vcpu->regs[VCPU_REGS_RSI] += delta;
1775 }
1776
Avi Kivity46fc1472007-02-22 19:39:30 +02001777 kvm_arch_ops->decache_regs(vcpu);
1778
Avi Kivity039576c2007-03-20 12:46:50 +02001779 io->count -= io->cur_count;
1780 io->cur_count = 0;
1781
1782 if (!io->count)
1783 kvm_arch_ops->skip_emulated_instruction(vcpu);
1784 return 0;
Avi Kivity46fc1472007-02-22 19:39:30 +02001785}
1786
Eddie Dong65619eb2007-07-17 11:52:33 +03001787static void kernel_pio(struct kvm_io_device *pio_dev,
1788 struct kvm_vcpu *vcpu,
1789 void *pd)
Eddie Dong74906342007-06-19 18:05:03 +03001790{
1791 /* TODO: String I/O for in kernel device */
1792
Eddie Dong9cf98822007-07-22 10:36:31 +03001793 mutex_lock(&vcpu->kvm->lock);
Eddie Dong74906342007-06-19 18:05:03 +03001794 if (vcpu->pio.in)
1795 kvm_iodevice_read(pio_dev, vcpu->pio.port,
1796 vcpu->pio.size,
Eddie Dong65619eb2007-07-17 11:52:33 +03001797 pd);
Eddie Dong74906342007-06-19 18:05:03 +03001798 else
1799 kvm_iodevice_write(pio_dev, vcpu->pio.port,
1800 vcpu->pio.size,
Eddie Dong65619eb2007-07-17 11:52:33 +03001801 pd);
Eddie Dong9cf98822007-07-22 10:36:31 +03001802 mutex_unlock(&vcpu->kvm->lock);
Eddie Dong65619eb2007-07-17 11:52:33 +03001803}
1804
1805static void pio_string_write(struct kvm_io_device *pio_dev,
1806 struct kvm_vcpu *vcpu)
1807{
1808 struct kvm_pio_request *io = &vcpu->pio;
1809 void *pd = vcpu->pio_data;
1810 int i;
1811
Eddie Dong9cf98822007-07-22 10:36:31 +03001812 mutex_lock(&vcpu->kvm->lock);
Eddie Dong65619eb2007-07-17 11:52:33 +03001813 for (i = 0; i < io->cur_count; i++) {
1814 kvm_iodevice_write(pio_dev, io->port,
1815 io->size,
1816 pd);
1817 pd += io->size;
1818 }
Eddie Dong9cf98822007-07-22 10:36:31 +03001819 mutex_unlock(&vcpu->kvm->lock);
Eddie Dong74906342007-06-19 18:05:03 +03001820}
1821
Laurent Vivier3090dd72007-08-05 10:43:32 +03001822int kvm_emulate_pio (struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
1823 int size, unsigned port)
1824{
1825 struct kvm_io_device *pio_dev;
1826
1827 vcpu->run->exit_reason = KVM_EXIT_IO;
1828 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
1829 vcpu->run->io.size = vcpu->pio.size = size;
1830 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
1831 vcpu->run->io.count = vcpu->pio.count = vcpu->pio.cur_count = 1;
1832 vcpu->run->io.port = vcpu->pio.port = port;
1833 vcpu->pio.in = in;
1834 vcpu->pio.string = 0;
1835 vcpu->pio.down = 0;
1836 vcpu->pio.guest_page_offset = 0;
1837 vcpu->pio.rep = 0;
1838
1839 kvm_arch_ops->cache_regs(vcpu);
1840 memcpy(vcpu->pio_data, &vcpu->regs[VCPU_REGS_RAX], 4);
1841 kvm_arch_ops->decache_regs(vcpu);
1842
1843 pio_dev = vcpu_find_pio_dev(vcpu, port);
1844 if (pio_dev) {
1845 kernel_pio(pio_dev, vcpu, vcpu->pio_data);
1846 complete_pio(vcpu);
1847 return 1;
1848 }
1849 return 0;
1850}
1851EXPORT_SYMBOL_GPL(kvm_emulate_pio);
1852
1853int kvm_emulate_pio_string(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
1854 int size, unsigned long count, int down,
Avi Kivity039576c2007-03-20 12:46:50 +02001855 gva_t address, int rep, unsigned port)
1856{
1857 unsigned now, in_page;
Eddie Dong65619eb2007-07-17 11:52:33 +03001858 int i, ret = 0;
Avi Kivity039576c2007-03-20 12:46:50 +02001859 int nr_pages = 1;
1860 struct page *page;
Eddie Dong74906342007-06-19 18:05:03 +03001861 struct kvm_io_device *pio_dev;
Avi Kivity039576c2007-03-20 12:46:50 +02001862
1863 vcpu->run->exit_reason = KVM_EXIT_IO;
1864 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
Laurent Vivier3090dd72007-08-05 10:43:32 +03001865 vcpu->run->io.size = vcpu->pio.size = size;
Avi Kivity039576c2007-03-20 12:46:50 +02001866 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
Laurent Vivier3090dd72007-08-05 10:43:32 +03001867 vcpu->run->io.count = vcpu->pio.count = vcpu->pio.cur_count = count;
1868 vcpu->run->io.port = vcpu->pio.port = port;
Avi Kivity039576c2007-03-20 12:46:50 +02001869 vcpu->pio.in = in;
Laurent Vivier3090dd72007-08-05 10:43:32 +03001870 vcpu->pio.string = 1;
Avi Kivity039576c2007-03-20 12:46:50 +02001871 vcpu->pio.down = down;
1872 vcpu->pio.guest_page_offset = offset_in_page(address);
1873 vcpu->pio.rep = rep;
1874
Avi Kivity039576c2007-03-20 12:46:50 +02001875 if (!count) {
1876 kvm_arch_ops->skip_emulated_instruction(vcpu);
1877 return 1;
1878 }
1879
Avi Kivity039576c2007-03-20 12:46:50 +02001880 if (!down)
1881 in_page = PAGE_SIZE - offset_in_page(address);
1882 else
1883 in_page = offset_in_page(address) + size;
1884 now = min(count, (unsigned long)in_page / size);
1885 if (!now) {
1886 /*
1887 * String I/O straddles page boundary. Pin two guest pages
1888 * so that we satisfy atomicity constraints. Do just one
1889 * transaction to avoid complexity.
1890 */
1891 nr_pages = 2;
1892 now = 1;
1893 }
1894 if (down) {
1895 /*
1896 * String I/O in reverse. Yuck. Kill the guest, fix later.
1897 */
Rusty Russellf0242472007-08-01 10:48:02 +10001898 pr_unimpl(vcpu, "guest string pio down\n");
Avi Kivity039576c2007-03-20 12:46:50 +02001899 inject_gp(vcpu);
1900 return 1;
1901 }
1902 vcpu->run->io.count = now;
1903 vcpu->pio.cur_count = now;
1904
1905 for (i = 0; i < nr_pages; ++i) {
Shaohua Li11ec2802007-07-23 14:51:37 +08001906 mutex_lock(&vcpu->kvm->lock);
Avi Kivity039576c2007-03-20 12:46:50 +02001907 page = gva_to_page(vcpu, address + i * PAGE_SIZE);
1908 if (page)
1909 get_page(page);
1910 vcpu->pio.guest_pages[i] = page;
Shaohua Li11ec2802007-07-23 14:51:37 +08001911 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity039576c2007-03-20 12:46:50 +02001912 if (!page) {
1913 inject_gp(vcpu);
1914 free_pio_guest_pages(vcpu);
1915 return 1;
1916 }
1917 }
1918
Laurent Vivier3090dd72007-08-05 10:43:32 +03001919 pio_dev = vcpu_find_pio_dev(vcpu, port);
Eddie Dong65619eb2007-07-17 11:52:33 +03001920 if (!vcpu->pio.in) {
1921 /* string PIO write */
1922 ret = pio_copy_data(vcpu);
1923 if (ret >= 0 && pio_dev) {
1924 pio_string_write(pio_dev, vcpu);
1925 complete_pio(vcpu);
1926 if (vcpu->pio.count == 0)
1927 ret = 1;
1928 }
1929 } else if (pio_dev)
Rusty Russellf0242472007-08-01 10:48:02 +10001930 pr_unimpl(vcpu, "no string pio read support yet, "
Eddie Dong65619eb2007-07-17 11:52:33 +03001931 "port %x size %d count %ld\n",
1932 port, size, count);
1933
1934 return ret;
Avi Kivity039576c2007-03-20 12:46:50 +02001935}
Laurent Vivier3090dd72007-08-05 10:43:32 +03001936EXPORT_SYMBOL_GPL(kvm_emulate_pio_string);
Avi Kivity039576c2007-03-20 12:46:50 +02001937
Avi Kivitybccf2152007-02-21 18:04:26 +02001938static int kvm_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001939{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001940 int r;
Avi Kivity1961d272007-03-05 19:46:05 +02001941 sigset_t sigsaved;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001942
Avi Kivitybccf2152007-02-21 18:04:26 +02001943 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001944
Avi Kivity1961d272007-03-05 19:46:05 +02001945 if (vcpu->sigset_active)
1946 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
1947
Dor Laor54810342007-02-12 00:54:39 -08001948 /* re-sync apic's tpr */
Eddie Dong7017fc32007-07-18 11:34:57 +03001949 set_cr8(vcpu, kvm_run->cr8);
Dor Laor54810342007-02-12 00:54:39 -08001950
Avi Kivity02c83202007-04-29 15:02:17 +03001951 if (vcpu->pio.cur_count) {
1952 r = complete_pio(vcpu);
1953 if (r)
1954 goto out;
1955 }
1956
1957 if (vcpu->mmio_needed) {
1958 memcpy(vcpu->mmio_data, kvm_run->mmio.data, 8);
1959 vcpu->mmio_read_completed = 1;
1960 vcpu->mmio_needed = 0;
1961 r = emulate_instruction(vcpu, kvm_run,
1962 vcpu->mmio_fault_cr2, 0);
1963 if (r == EMULATE_DO_MMIO) {
1964 /*
1965 * Read-modify-write. Back to userspace.
1966 */
Avi Kivity02c83202007-04-29 15:02:17 +03001967 r = 0;
1968 goto out;
Avi Kivity46fc1472007-02-22 19:39:30 +02001969 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001970 }
1971
Avi Kivity8eb7d332007-03-04 14:17:08 +02001972 if (kvm_run->exit_reason == KVM_EXIT_HYPERCALL) {
Avi Kivityb4e63f52007-03-04 13:59:30 +02001973 kvm_arch_ops->cache_regs(vcpu);
1974 vcpu->regs[VCPU_REGS_RAX] = kvm_run->hypercall.ret;
1975 kvm_arch_ops->decache_regs(vcpu);
1976 }
1977
Avi Kivity6aa8b732006-12-10 02:21:36 -08001978 r = kvm_arch_ops->run(vcpu, kvm_run);
1979
Avi Kivity039576c2007-03-20 12:46:50 +02001980out:
Avi Kivity1961d272007-03-05 19:46:05 +02001981 if (vcpu->sigset_active)
1982 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1983
Avi Kivity6aa8b732006-12-10 02:21:36 -08001984 vcpu_put(vcpu);
1985 return r;
1986}
1987
Avi Kivitybccf2152007-02-21 18:04:26 +02001988static int kvm_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu,
1989 struct kvm_regs *regs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001990{
Avi Kivitybccf2152007-02-21 18:04:26 +02001991 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001992
1993 kvm_arch_ops->cache_regs(vcpu);
1994
1995 regs->rax = vcpu->regs[VCPU_REGS_RAX];
1996 regs->rbx = vcpu->regs[VCPU_REGS_RBX];
1997 regs->rcx = vcpu->regs[VCPU_REGS_RCX];
1998 regs->rdx = vcpu->regs[VCPU_REGS_RDX];
1999 regs->rsi = vcpu->regs[VCPU_REGS_RSI];
2000 regs->rdi = vcpu->regs[VCPU_REGS_RDI];
2001 regs->rsp = vcpu->regs[VCPU_REGS_RSP];
2002 regs->rbp = vcpu->regs[VCPU_REGS_RBP];
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002003#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002004 regs->r8 = vcpu->regs[VCPU_REGS_R8];
2005 regs->r9 = vcpu->regs[VCPU_REGS_R9];
2006 regs->r10 = vcpu->regs[VCPU_REGS_R10];
2007 regs->r11 = vcpu->regs[VCPU_REGS_R11];
2008 regs->r12 = vcpu->regs[VCPU_REGS_R12];
2009 regs->r13 = vcpu->regs[VCPU_REGS_R13];
2010 regs->r14 = vcpu->regs[VCPU_REGS_R14];
2011 regs->r15 = vcpu->regs[VCPU_REGS_R15];
2012#endif
2013
2014 regs->rip = vcpu->rip;
2015 regs->rflags = kvm_arch_ops->get_rflags(vcpu);
2016
2017 /*
2018 * Don't leak debug flags in case they were set for guest debugging
2019 */
2020 if (vcpu->guest_debug.enabled && vcpu->guest_debug.singlestep)
2021 regs->rflags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
2022
2023 vcpu_put(vcpu);
2024
2025 return 0;
2026}
2027
Avi Kivitybccf2152007-02-21 18:04:26 +02002028static int kvm_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu,
2029 struct kvm_regs *regs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002030{
Avi Kivitybccf2152007-02-21 18:04:26 +02002031 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002032
2033 vcpu->regs[VCPU_REGS_RAX] = regs->rax;
2034 vcpu->regs[VCPU_REGS_RBX] = regs->rbx;
2035 vcpu->regs[VCPU_REGS_RCX] = regs->rcx;
2036 vcpu->regs[VCPU_REGS_RDX] = regs->rdx;
2037 vcpu->regs[VCPU_REGS_RSI] = regs->rsi;
2038 vcpu->regs[VCPU_REGS_RDI] = regs->rdi;
2039 vcpu->regs[VCPU_REGS_RSP] = regs->rsp;
2040 vcpu->regs[VCPU_REGS_RBP] = regs->rbp;
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002041#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002042 vcpu->regs[VCPU_REGS_R8] = regs->r8;
2043 vcpu->regs[VCPU_REGS_R9] = regs->r9;
2044 vcpu->regs[VCPU_REGS_R10] = regs->r10;
2045 vcpu->regs[VCPU_REGS_R11] = regs->r11;
2046 vcpu->regs[VCPU_REGS_R12] = regs->r12;
2047 vcpu->regs[VCPU_REGS_R13] = regs->r13;
2048 vcpu->regs[VCPU_REGS_R14] = regs->r14;
2049 vcpu->regs[VCPU_REGS_R15] = regs->r15;
2050#endif
2051
2052 vcpu->rip = regs->rip;
2053 kvm_arch_ops->set_rflags(vcpu, regs->rflags);
2054
2055 kvm_arch_ops->decache_regs(vcpu);
2056
2057 vcpu_put(vcpu);
2058
2059 return 0;
2060}
2061
2062static void get_segment(struct kvm_vcpu *vcpu,
2063 struct kvm_segment *var, int seg)
2064{
2065 return kvm_arch_ops->get_segment(vcpu, var, seg);
2066}
2067
Avi Kivitybccf2152007-02-21 18:04:26 +02002068static int kvm_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
2069 struct kvm_sregs *sregs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002070{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002071 struct descriptor_table dt;
2072
Avi Kivitybccf2152007-02-21 18:04:26 +02002073 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002074
2075 get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
2076 get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
2077 get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
2078 get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
2079 get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
2080 get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
2081
2082 get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
2083 get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
2084
2085 kvm_arch_ops->get_idt(vcpu, &dt);
2086 sregs->idt.limit = dt.limit;
2087 sregs->idt.base = dt.base;
2088 kvm_arch_ops->get_gdt(vcpu, &dt);
2089 sregs->gdt.limit = dt.limit;
2090 sregs->gdt.base = dt.base;
2091
Anthony Liguori25c4c272007-04-27 09:29:21 +03002092 kvm_arch_ops->decache_cr4_guest_bits(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002093 sregs->cr0 = vcpu->cr0;
2094 sregs->cr2 = vcpu->cr2;
2095 sregs->cr3 = vcpu->cr3;
2096 sregs->cr4 = vcpu->cr4;
Eddie Dong7017fc32007-07-18 11:34:57 +03002097 sregs->cr8 = get_cr8(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002098 sregs->efer = vcpu->shadow_efer;
Eddie Dong7017fc32007-07-18 11:34:57 +03002099 sregs->apic_base = kvm_get_apic_base(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002100
2101 memcpy(sregs->interrupt_bitmap, vcpu->irq_pending,
2102 sizeof sregs->interrupt_bitmap);
2103
2104 vcpu_put(vcpu);
2105
2106 return 0;
2107}
2108
2109static void set_segment(struct kvm_vcpu *vcpu,
2110 struct kvm_segment *var, int seg)
2111{
2112 return kvm_arch_ops->set_segment(vcpu, var, seg);
2113}
2114
Avi Kivitybccf2152007-02-21 18:04:26 +02002115static int kvm_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
2116 struct kvm_sregs *sregs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002117{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002118 int mmu_reset_needed = 0;
2119 int i;
2120 struct descriptor_table dt;
2121
Avi Kivitybccf2152007-02-21 18:04:26 +02002122 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002123
Avi Kivity6aa8b732006-12-10 02:21:36 -08002124 dt.limit = sregs->idt.limit;
2125 dt.base = sregs->idt.base;
2126 kvm_arch_ops->set_idt(vcpu, &dt);
2127 dt.limit = sregs->gdt.limit;
2128 dt.base = sregs->gdt.base;
2129 kvm_arch_ops->set_gdt(vcpu, &dt);
2130
2131 vcpu->cr2 = sregs->cr2;
2132 mmu_reset_needed |= vcpu->cr3 != sregs->cr3;
2133 vcpu->cr3 = sregs->cr3;
2134
Eddie Dong7017fc32007-07-18 11:34:57 +03002135 set_cr8(vcpu, sregs->cr8);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002136
2137 mmu_reset_needed |= vcpu->shadow_efer != sregs->efer;
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002138#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002139 kvm_arch_ops->set_efer(vcpu, sregs->efer);
2140#endif
Eddie Dong7017fc32007-07-18 11:34:57 +03002141 kvm_set_apic_base(vcpu, sregs->apic_base);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002142
Anthony Liguori25c4c272007-04-27 09:29:21 +03002143 kvm_arch_ops->decache_cr4_guest_bits(vcpu);
Avi Kivity399badf2007-01-05 16:36:38 -08002144
Avi Kivity6aa8b732006-12-10 02:21:36 -08002145 mmu_reset_needed |= vcpu->cr0 != sregs->cr0;
Avi Kivityf6528b02007-03-20 18:44:51 +02002146 kvm_arch_ops->set_cr0(vcpu, sregs->cr0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002147
2148 mmu_reset_needed |= vcpu->cr4 != sregs->cr4;
2149 kvm_arch_ops->set_cr4(vcpu, sregs->cr4);
Avi Kivity1b0973b2007-01-05 16:36:41 -08002150 if (!is_long_mode(vcpu) && is_pae(vcpu))
2151 load_pdptrs(vcpu, vcpu->cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002152
2153 if (mmu_reset_needed)
2154 kvm_mmu_reset_context(vcpu);
2155
2156 memcpy(vcpu->irq_pending, sregs->interrupt_bitmap,
2157 sizeof vcpu->irq_pending);
2158 vcpu->irq_summary = 0;
Rusty Russell9eb829c2007-07-18 13:05:58 +10002159 for (i = 0; i < ARRAY_SIZE(vcpu->irq_pending); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002160 if (vcpu->irq_pending[i])
2161 __set_bit(i, &vcpu->irq_summary);
2162
Avi Kivity024aa1c2007-03-21 13:44:58 +02002163 set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
2164 set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
2165 set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
2166 set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
2167 set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
2168 set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
2169
2170 set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
2171 set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
2172
Avi Kivity6aa8b732006-12-10 02:21:36 -08002173 vcpu_put(vcpu);
2174
2175 return 0;
2176}
2177
2178/*
2179 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
2180 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
Michael Riepebf591b22006-12-22 01:05:36 -08002181 *
2182 * This list is modified at module load time to reflect the
2183 * capabilities of the host cpu.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002184 */
2185static u32 msrs_to_save[] = {
2186 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
2187 MSR_K6_STAR,
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002188#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002189 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
2190#endif
2191 MSR_IA32_TIME_STAMP_COUNTER,
2192};
2193
Michael Riepebf591b22006-12-22 01:05:36 -08002194static unsigned num_msrs_to_save;
2195
Avi Kivity6f00e682007-01-26 00:56:40 -08002196static u32 emulated_msrs[] = {
2197 MSR_IA32_MISC_ENABLE,
2198};
2199
Michael Riepebf591b22006-12-22 01:05:36 -08002200static __init void kvm_init_msr_list(void)
2201{
2202 u32 dummy[2];
2203 unsigned i, j;
2204
2205 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
2206 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
2207 continue;
2208 if (j < i)
2209 msrs_to_save[j] = msrs_to_save[i];
2210 j++;
2211 }
2212 num_msrs_to_save = j;
2213}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002214
2215/*
2216 * Adapt set_msr() to msr_io()'s calling convention
2217 */
2218static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2219{
Avi Kivity35f3f282007-07-17 14:20:30 +03002220 return kvm_set_msr(vcpu, index, *data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002221}
2222
2223/*
2224 * Read or write a bunch of msrs. All parameters are kernel addresses.
2225 *
2226 * @return number of msrs set successfully.
2227 */
Avi Kivitybccf2152007-02-21 18:04:26 +02002228static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002229 struct kvm_msr_entry *entries,
2230 int (*do_msr)(struct kvm_vcpu *vcpu,
2231 unsigned index, u64 *data))
2232{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002233 int i;
2234
Avi Kivitybccf2152007-02-21 18:04:26 +02002235 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002236
2237 for (i = 0; i < msrs->nmsrs; ++i)
2238 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2239 break;
2240
2241 vcpu_put(vcpu);
2242
2243 return i;
2244}
2245
2246/*
2247 * Read or write a bunch of msrs. Parameters are user addresses.
2248 *
2249 * @return number of msrs set successfully.
2250 */
Avi Kivitybccf2152007-02-21 18:04:26 +02002251static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002252 int (*do_msr)(struct kvm_vcpu *vcpu,
2253 unsigned index, u64 *data),
2254 int writeback)
2255{
2256 struct kvm_msrs msrs;
2257 struct kvm_msr_entry *entries;
2258 int r, n;
2259 unsigned size;
2260
2261 r = -EFAULT;
2262 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2263 goto out;
2264
2265 r = -E2BIG;
2266 if (msrs.nmsrs >= MAX_IO_MSRS)
2267 goto out;
2268
2269 r = -ENOMEM;
2270 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
2271 entries = vmalloc(size);
2272 if (!entries)
2273 goto out;
2274
2275 r = -EFAULT;
2276 if (copy_from_user(entries, user_msrs->entries, size))
2277 goto out_free;
2278
Avi Kivitybccf2152007-02-21 18:04:26 +02002279 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002280 if (r < 0)
2281 goto out_free;
2282
2283 r = -EFAULT;
2284 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2285 goto out_free;
2286
2287 r = n;
2288
2289out_free:
2290 vfree(entries);
2291out:
2292 return r;
2293}
2294
2295/*
2296 * Translate a guest virtual address to a guest physical address.
2297 */
Avi Kivitybccf2152007-02-21 18:04:26 +02002298static int kvm_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
2299 struct kvm_translation *tr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002300{
2301 unsigned long vaddr = tr->linear_address;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002302 gpa_t gpa;
2303
Avi Kivitybccf2152007-02-21 18:04:26 +02002304 vcpu_load(vcpu);
Shaohua Li11ec2802007-07-23 14:51:37 +08002305 mutex_lock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002306 gpa = vcpu->mmu.gva_to_gpa(vcpu, vaddr);
2307 tr->physical_address = gpa;
2308 tr->valid = gpa != UNMAPPED_GVA;
2309 tr->writeable = 1;
2310 tr->usermode = 0;
Shaohua Li11ec2802007-07-23 14:51:37 +08002311 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002312 vcpu_put(vcpu);
2313
2314 return 0;
2315}
2316
Avi Kivitybccf2152007-02-21 18:04:26 +02002317static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2318 struct kvm_interrupt *irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002319{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002320 if (irq->irq < 0 || irq->irq >= 256)
2321 return -EINVAL;
Eddie Dong97222cc2007-09-12 10:58:04 +03002322 if (irqchip_in_kernel(vcpu->kvm))
2323 return -ENXIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002324 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002325
2326 set_bit(irq->irq, vcpu->irq_pending);
2327 set_bit(irq->irq / BITS_PER_LONG, &vcpu->irq_summary);
2328
2329 vcpu_put(vcpu);
2330
2331 return 0;
2332}
2333
Avi Kivitybccf2152007-02-21 18:04:26 +02002334static int kvm_vcpu_ioctl_debug_guest(struct kvm_vcpu *vcpu,
2335 struct kvm_debug_guest *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002336{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002337 int r;
2338
Avi Kivitybccf2152007-02-21 18:04:26 +02002339 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002340
2341 r = kvm_arch_ops->set_guest_debug(vcpu, dbg);
2342
2343 vcpu_put(vcpu);
2344
2345 return r;
2346}
2347
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002348static struct page *kvm_vcpu_nopage(struct vm_area_struct *vma,
2349 unsigned long address,
2350 int *type)
2351{
2352 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
2353 unsigned long pgoff;
2354 struct page *page;
2355
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002356 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Avi Kivity039576c2007-03-20 12:46:50 +02002357 if (pgoff == 0)
2358 page = virt_to_page(vcpu->run);
2359 else if (pgoff == KVM_PIO_PAGE_OFFSET)
2360 page = virt_to_page(vcpu->pio_data);
2361 else
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002362 return NOPAGE_SIGBUS;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002363 get_page(page);
Nguyen Anh Quynhcd0d9132007-07-11 14:30:54 +03002364 if (type != NULL)
2365 *type = VM_FAULT_MINOR;
2366
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002367 return page;
2368}
2369
2370static struct vm_operations_struct kvm_vcpu_vm_ops = {
2371 .nopage = kvm_vcpu_nopage,
2372};
2373
2374static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2375{
2376 vma->vm_ops = &kvm_vcpu_vm_ops;
2377 return 0;
2378}
2379
Avi Kivitybccf2152007-02-21 18:04:26 +02002380static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2381{
2382 struct kvm_vcpu *vcpu = filp->private_data;
2383
2384 fput(vcpu->kvm->filp);
2385 return 0;
2386}
2387
2388static struct file_operations kvm_vcpu_fops = {
2389 .release = kvm_vcpu_release,
2390 .unlocked_ioctl = kvm_vcpu_ioctl,
2391 .compat_ioctl = kvm_vcpu_ioctl,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002392 .mmap = kvm_vcpu_mmap,
Avi Kivitybccf2152007-02-21 18:04:26 +02002393};
2394
2395/*
2396 * Allocates an inode for the vcpu.
2397 */
2398static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2399{
2400 int fd, r;
2401 struct inode *inode;
2402 struct file *file;
2403
Avi Kivityd6d28162007-06-28 08:38:16 -04002404 r = anon_inode_getfd(&fd, &inode, &file,
2405 "kvm-vcpu", &kvm_vcpu_fops, vcpu);
2406 if (r)
2407 return r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002408 atomic_inc(&vcpu->kvm->filp->f_count);
Avi Kivitybccf2152007-02-21 18:04:26 +02002409 return fd;
Avi Kivitybccf2152007-02-21 18:04:26 +02002410}
2411
Avi Kivityc5ea7662007-02-20 18:41:05 +02002412/*
2413 * Creates some virtual cpus. Good luck creating more than one.
2414 */
2415static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, int n)
2416{
2417 int r;
2418 struct kvm_vcpu *vcpu;
2419
Avi Kivityc5ea7662007-02-20 18:41:05 +02002420 if (!valid_vcpu(n))
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002421 return -EINVAL;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002422
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002423 vcpu = kvm_arch_ops->vcpu_create(kvm, n);
2424 if (IS_ERR(vcpu))
2425 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002426
Avi Kivity15ad7142007-07-11 18:17:21 +03002427 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2428
Rusty Russellb114b082007-07-30 21:13:43 +10002429 /* We do fxsave: this must be aligned. */
2430 BUG_ON((unsigned long)&vcpu->host_fx_image & 0xF);
2431
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002432 vcpu_load(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002433 r = kvm_mmu_setup(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002434 vcpu_put(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002435 if (r < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002436 goto free_vcpu;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002437
Shaohua Li11ec2802007-07-23 14:51:37 +08002438 mutex_lock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002439 if (kvm->vcpus[n]) {
2440 r = -EEXIST;
Shaohua Li11ec2802007-07-23 14:51:37 +08002441 mutex_unlock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002442 goto mmu_unload;
2443 }
2444 kvm->vcpus[n] = vcpu;
Shaohua Li11ec2802007-07-23 14:51:37 +08002445 mutex_unlock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002446
2447 /* Now it's all set up, let userspace reach it */
Avi Kivitybccf2152007-02-21 18:04:26 +02002448 r = create_vcpu_fd(vcpu);
2449 if (r < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002450 goto unlink;
Avi Kivitybccf2152007-02-21 18:04:26 +02002451 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002452
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002453unlink:
Shaohua Li11ec2802007-07-23 14:51:37 +08002454 mutex_lock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002455 kvm->vcpus[n] = NULL;
Shaohua Li11ec2802007-07-23 14:51:37 +08002456 mutex_unlock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002457
2458mmu_unload:
2459 vcpu_load(vcpu);
2460 kvm_mmu_unload(vcpu);
2461 vcpu_put(vcpu);
2462
2463free_vcpu:
2464 kvm_arch_ops->vcpu_free(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002465 return r;
2466}
2467
Eddie Dong2cc51562007-05-21 07:28:09 +03002468static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu)
2469{
2470 u64 efer;
2471 int i;
2472 struct kvm_cpuid_entry *e, *entry;
2473
2474 rdmsrl(MSR_EFER, efer);
2475 entry = NULL;
2476 for (i = 0; i < vcpu->cpuid_nent; ++i) {
2477 e = &vcpu->cpuid_entries[i];
2478 if (e->function == 0x80000001) {
2479 entry = e;
2480 break;
2481 }
2482 }
Avi Kivity4c981b42007-07-25 09:22:12 +03002483 if (entry && (entry->edx & (1 << 20)) && !(efer & EFER_NX)) {
Eddie Dong2cc51562007-05-21 07:28:09 +03002484 entry->edx &= ~(1 << 20);
Avi Kivity4c981b42007-07-25 09:22:12 +03002485 printk(KERN_INFO "kvm: guest NX capability removed\n");
Eddie Dong2cc51562007-05-21 07:28:09 +03002486 }
2487}
2488
Avi Kivity06465c52007-02-28 20:46:53 +02002489static int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
2490 struct kvm_cpuid *cpuid,
2491 struct kvm_cpuid_entry __user *entries)
2492{
2493 int r;
2494
2495 r = -E2BIG;
2496 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
2497 goto out;
2498 r = -EFAULT;
2499 if (copy_from_user(&vcpu->cpuid_entries, entries,
2500 cpuid->nent * sizeof(struct kvm_cpuid_entry)))
2501 goto out;
2502 vcpu->cpuid_nent = cpuid->nent;
Eddie Dong2cc51562007-05-21 07:28:09 +03002503 cpuid_fix_nx_cap(vcpu);
Avi Kivity06465c52007-02-28 20:46:53 +02002504 return 0;
2505
2506out:
2507 return r;
2508}
2509
Avi Kivity1961d272007-03-05 19:46:05 +02002510static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2511{
2512 if (sigset) {
2513 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2514 vcpu->sigset_active = 1;
2515 vcpu->sigset = *sigset;
2516 } else
2517 vcpu->sigset_active = 0;
2518 return 0;
2519}
2520
Avi Kivityb8836732007-04-01 16:34:31 +03002521/*
2522 * fxsave fpu state. Taken from x86_64/processor.h. To be killed when
2523 * we have asm/x86/processor.h
2524 */
2525struct fxsave {
2526 u16 cwd;
2527 u16 swd;
2528 u16 twd;
2529 u16 fop;
2530 u64 rip;
2531 u64 rdp;
2532 u32 mxcsr;
2533 u32 mxcsr_mask;
2534 u32 st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
2535#ifdef CONFIG_X86_64
2536 u32 xmm_space[64]; /* 16*16 bytes for each XMM-reg = 256 bytes */
2537#else
2538 u32 xmm_space[32]; /* 8*16 bytes for each XMM-reg = 128 bytes */
2539#endif
2540};
2541
2542static int kvm_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2543{
Rusty Russellb114b082007-07-30 21:13:43 +10002544 struct fxsave *fxsave = (struct fxsave *)&vcpu->guest_fx_image;
Avi Kivityb8836732007-04-01 16:34:31 +03002545
2546 vcpu_load(vcpu);
2547
2548 memcpy(fpu->fpr, fxsave->st_space, 128);
2549 fpu->fcw = fxsave->cwd;
2550 fpu->fsw = fxsave->swd;
2551 fpu->ftwx = fxsave->twd;
2552 fpu->last_opcode = fxsave->fop;
2553 fpu->last_ip = fxsave->rip;
2554 fpu->last_dp = fxsave->rdp;
2555 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
2556
2557 vcpu_put(vcpu);
2558
2559 return 0;
2560}
2561
2562static int kvm_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2563{
Rusty Russellb114b082007-07-30 21:13:43 +10002564 struct fxsave *fxsave = (struct fxsave *)&vcpu->guest_fx_image;
Avi Kivityb8836732007-04-01 16:34:31 +03002565
2566 vcpu_load(vcpu);
2567
2568 memcpy(fxsave->st_space, fpu->fpr, 128);
2569 fxsave->cwd = fpu->fcw;
2570 fxsave->swd = fpu->fsw;
2571 fxsave->twd = fpu->ftwx;
2572 fxsave->fop = fpu->last_opcode;
2573 fxsave->rip = fpu->last_ip;
2574 fxsave->rdp = fpu->last_dp;
2575 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
2576
2577 vcpu_put(vcpu);
2578
2579 return 0;
2580}
2581
Avi Kivitybccf2152007-02-21 18:04:26 +02002582static long kvm_vcpu_ioctl(struct file *filp,
2583 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002584{
Avi Kivitybccf2152007-02-21 18:04:26 +02002585 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f366982007-02-09 16:38:35 +00002586 void __user *argp = (void __user *)arg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002587 int r = -EINVAL;
2588
2589 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002590 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002591 r = -EINVAL;
2592 if (arg)
2593 goto out;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002594 r = kvm_vcpu_ioctl_run(vcpu, vcpu->run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002595 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002596 case KVM_GET_REGS: {
2597 struct kvm_regs kvm_regs;
2598
Avi Kivitybccf2152007-02-21 18:04:26 +02002599 memset(&kvm_regs, 0, sizeof kvm_regs);
2600 r = kvm_vcpu_ioctl_get_regs(vcpu, &kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002601 if (r)
2602 goto out;
2603 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002604 if (copy_to_user(argp, &kvm_regs, sizeof kvm_regs))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002605 goto out;
2606 r = 0;
2607 break;
2608 }
2609 case KVM_SET_REGS: {
2610 struct kvm_regs kvm_regs;
2611
2612 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002613 if (copy_from_user(&kvm_regs, argp, sizeof kvm_regs))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002614 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002615 r = kvm_vcpu_ioctl_set_regs(vcpu, &kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002616 if (r)
2617 goto out;
2618 r = 0;
2619 break;
2620 }
2621 case KVM_GET_SREGS: {
2622 struct kvm_sregs kvm_sregs;
2623
Avi Kivitybccf2152007-02-21 18:04:26 +02002624 memset(&kvm_sregs, 0, sizeof kvm_sregs);
2625 r = kvm_vcpu_ioctl_get_sregs(vcpu, &kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002626 if (r)
2627 goto out;
2628 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002629 if (copy_to_user(argp, &kvm_sregs, sizeof kvm_sregs))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002630 goto out;
2631 r = 0;
2632 break;
2633 }
2634 case KVM_SET_SREGS: {
2635 struct kvm_sregs kvm_sregs;
2636
2637 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002638 if (copy_from_user(&kvm_sregs, argp, sizeof kvm_sregs))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002639 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002640 r = kvm_vcpu_ioctl_set_sregs(vcpu, &kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002641 if (r)
2642 goto out;
2643 r = 0;
2644 break;
2645 }
2646 case KVM_TRANSLATE: {
2647 struct kvm_translation tr;
2648
2649 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002650 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002651 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002652 r = kvm_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002653 if (r)
2654 goto out;
2655 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002656 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002657 goto out;
2658 r = 0;
2659 break;
2660 }
2661 case KVM_INTERRUPT: {
2662 struct kvm_interrupt irq;
2663
2664 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002665 if (copy_from_user(&irq, argp, sizeof irq))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002666 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002667 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002668 if (r)
2669 goto out;
2670 r = 0;
2671 break;
2672 }
2673 case KVM_DEBUG_GUEST: {
2674 struct kvm_debug_guest dbg;
2675
2676 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002677 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002678 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002679 r = kvm_vcpu_ioctl_debug_guest(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002680 if (r)
2681 goto out;
2682 r = 0;
2683 break;
2684 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002685 case KVM_GET_MSRS:
Avi Kivity35f3f282007-07-17 14:20:30 +03002686 r = msr_io(vcpu, argp, kvm_get_msr, 1);
Avi Kivitybccf2152007-02-21 18:04:26 +02002687 break;
2688 case KVM_SET_MSRS:
2689 r = msr_io(vcpu, argp, do_set_msr, 0);
2690 break;
Avi Kivity06465c52007-02-28 20:46:53 +02002691 case KVM_SET_CPUID: {
2692 struct kvm_cpuid __user *cpuid_arg = argp;
2693 struct kvm_cpuid cpuid;
2694
2695 r = -EFAULT;
2696 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2697 goto out;
2698 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
2699 if (r)
2700 goto out;
2701 break;
2702 }
Avi Kivity1961d272007-03-05 19:46:05 +02002703 case KVM_SET_SIGNAL_MASK: {
2704 struct kvm_signal_mask __user *sigmask_arg = argp;
2705 struct kvm_signal_mask kvm_sigmask;
2706 sigset_t sigset, *p;
2707
2708 p = NULL;
2709 if (argp) {
2710 r = -EFAULT;
2711 if (copy_from_user(&kvm_sigmask, argp,
2712 sizeof kvm_sigmask))
2713 goto out;
2714 r = -EINVAL;
2715 if (kvm_sigmask.len != sizeof sigset)
2716 goto out;
2717 r = -EFAULT;
2718 if (copy_from_user(&sigset, sigmask_arg->sigset,
2719 sizeof sigset))
2720 goto out;
2721 p = &sigset;
2722 }
2723 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2724 break;
2725 }
Avi Kivityb8836732007-04-01 16:34:31 +03002726 case KVM_GET_FPU: {
2727 struct kvm_fpu fpu;
2728
2729 memset(&fpu, 0, sizeof fpu);
2730 r = kvm_vcpu_ioctl_get_fpu(vcpu, &fpu);
2731 if (r)
2732 goto out;
2733 r = -EFAULT;
2734 if (copy_to_user(argp, &fpu, sizeof fpu))
2735 goto out;
2736 r = 0;
2737 break;
2738 }
2739 case KVM_SET_FPU: {
2740 struct kvm_fpu fpu;
2741
2742 r = -EFAULT;
2743 if (copy_from_user(&fpu, argp, sizeof fpu))
2744 goto out;
2745 r = kvm_vcpu_ioctl_set_fpu(vcpu, &fpu);
2746 if (r)
2747 goto out;
2748 r = 0;
2749 break;
2750 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002751 default:
2752 ;
2753 }
2754out:
2755 return r;
2756}
2757
2758static long kvm_vm_ioctl(struct file *filp,
2759 unsigned int ioctl, unsigned long arg)
2760{
2761 struct kvm *kvm = filp->private_data;
2762 void __user *argp = (void __user *)arg;
2763 int r = -EINVAL;
2764
2765 switch (ioctl) {
2766 case KVM_CREATE_VCPU:
2767 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
2768 if (r < 0)
2769 goto out;
2770 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002771 case KVM_SET_MEMORY_REGION: {
2772 struct kvm_memory_region kvm_mem;
2773
2774 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002775 if (copy_from_user(&kvm_mem, argp, sizeof kvm_mem))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002776 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002777 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002778 if (r)
2779 goto out;
2780 break;
2781 }
2782 case KVM_GET_DIRTY_LOG: {
2783 struct kvm_dirty_log log;
2784
2785 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002786 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002787 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002788 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002789 if (r)
2790 goto out;
2791 break;
2792 }
Avi Kivitye8207542007-03-30 16:54:30 +03002793 case KVM_SET_MEMORY_ALIAS: {
2794 struct kvm_memory_alias alias;
2795
2796 r = -EFAULT;
2797 if (copy_from_user(&alias, argp, sizeof alias))
2798 goto out;
2799 r = kvm_vm_ioctl_set_memory_alias(kvm, &alias);
2800 if (r)
2801 goto out;
2802 break;
2803 }
Eddie Dong85f455f2007-07-06 12:20:49 +03002804 case KVM_CREATE_IRQCHIP:
2805 r = -ENOMEM;
2806 kvm->vpic = kvm_create_pic(kvm);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +03002807 if (kvm->vpic) {
2808 r = kvm_ioapic_init(kvm);
2809 if (r) {
2810 kfree(kvm->vpic);
2811 kvm->vpic = NULL;
2812 goto out;
2813 }
2814 }
Eddie Dong85f455f2007-07-06 12:20:49 +03002815 else
2816 goto out;
2817 break;
2818 case KVM_IRQ_LINE: {
2819 struct kvm_irq_level irq_event;
2820
2821 r = -EFAULT;
2822 if (copy_from_user(&irq_event, argp, sizeof irq_event))
2823 goto out;
2824 if (irqchip_in_kernel(kvm)) {
Eddie Dong9cf98822007-07-22 10:36:31 +03002825 mutex_lock(&kvm->lock);
Eddie Dong85f455f2007-07-06 12:20:49 +03002826 if (irq_event.irq < 16)
2827 kvm_pic_set_irq(pic_irqchip(kvm),
2828 irq_event.irq,
2829 irq_event.level);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +03002830 kvm_ioapic_set_irq(kvm->vioapic,
2831 irq_event.irq,
2832 irq_event.level);
Eddie Dong9cf98822007-07-22 10:36:31 +03002833 mutex_unlock(&kvm->lock);
Eddie Dong85f455f2007-07-06 12:20:49 +03002834 r = 0;
2835 }
2836 break;
2837 }
Avi Kivityf17abe92007-02-21 19:28:04 +02002838 default:
2839 ;
2840 }
2841out:
2842 return r;
2843}
2844
2845static struct page *kvm_vm_nopage(struct vm_area_struct *vma,
2846 unsigned long address,
2847 int *type)
2848{
2849 struct kvm *kvm = vma->vm_file->private_data;
2850 unsigned long pgoff;
Avi Kivityf17abe92007-02-21 19:28:04 +02002851 struct page *page;
2852
Avi Kivityf17abe92007-02-21 19:28:04 +02002853 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Avi Kivity954bbbc2007-03-30 14:02:32 +03002854 page = gfn_to_page(kvm, pgoff);
Avi Kivityf17abe92007-02-21 19:28:04 +02002855 if (!page)
2856 return NOPAGE_SIGBUS;
2857 get_page(page);
Nguyen Anh Quynhcd0d9132007-07-11 14:30:54 +03002858 if (type != NULL)
2859 *type = VM_FAULT_MINOR;
2860
Avi Kivityf17abe92007-02-21 19:28:04 +02002861 return page;
2862}
2863
2864static struct vm_operations_struct kvm_vm_vm_ops = {
2865 .nopage = kvm_vm_nopage,
2866};
2867
2868static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
2869{
2870 vma->vm_ops = &kvm_vm_vm_ops;
2871 return 0;
2872}
2873
2874static struct file_operations kvm_vm_fops = {
2875 .release = kvm_vm_release,
2876 .unlocked_ioctl = kvm_vm_ioctl,
2877 .compat_ioctl = kvm_vm_ioctl,
2878 .mmap = kvm_vm_mmap,
2879};
2880
2881static int kvm_dev_ioctl_create_vm(void)
2882{
2883 int fd, r;
2884 struct inode *inode;
2885 struct file *file;
2886 struct kvm *kvm;
2887
Avi Kivityf17abe92007-02-21 19:28:04 +02002888 kvm = kvm_create_vm();
Avi Kivityd6d28162007-06-28 08:38:16 -04002889 if (IS_ERR(kvm))
2890 return PTR_ERR(kvm);
2891 r = anon_inode_getfd(&fd, &inode, &file, "kvm-vm", &kvm_vm_fops, kvm);
2892 if (r) {
2893 kvm_destroy_vm(kvm);
2894 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02002895 }
2896
Avi Kivitybccf2152007-02-21 18:04:26 +02002897 kvm->filp = file;
Avi Kivityf17abe92007-02-21 19:28:04 +02002898
Avi Kivityf17abe92007-02-21 19:28:04 +02002899 return fd;
Avi Kivityf17abe92007-02-21 19:28:04 +02002900}
2901
2902static long kvm_dev_ioctl(struct file *filp,
2903 unsigned int ioctl, unsigned long arg)
2904{
2905 void __user *argp = (void __user *)arg;
Avi Kivity07c45a32007-03-07 13:05:38 +02002906 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02002907
2908 switch (ioctl) {
2909 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002910 r = -EINVAL;
2911 if (arg)
2912 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002913 r = KVM_API_VERSION;
2914 break;
2915 case KVM_CREATE_VM:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002916 r = -EINVAL;
2917 if (arg)
2918 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02002919 r = kvm_dev_ioctl_create_vm();
2920 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002921 case KVM_GET_MSR_INDEX_LIST: {
Al Viro2f366982007-02-09 16:38:35 +00002922 struct kvm_msr_list __user *user_msr_list = argp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002923 struct kvm_msr_list msr_list;
2924 unsigned n;
2925
2926 r = -EFAULT;
2927 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
2928 goto out;
2929 n = msr_list.nmsrs;
Avi Kivity6f00e682007-01-26 00:56:40 -08002930 msr_list.nmsrs = num_msrs_to_save + ARRAY_SIZE(emulated_msrs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002931 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
2932 goto out;
2933 r = -E2BIG;
Michael Riepebf591b22006-12-22 01:05:36 -08002934 if (n < num_msrs_to_save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002935 goto out;
2936 r = -EFAULT;
2937 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
Michael Riepebf591b22006-12-22 01:05:36 -08002938 num_msrs_to_save * sizeof(u32)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002939 goto out;
Avi Kivity6f00e682007-01-26 00:56:40 -08002940 if (copy_to_user(user_msr_list->indices
2941 + num_msrs_to_save * sizeof(u32),
2942 &emulated_msrs,
2943 ARRAY_SIZE(emulated_msrs) * sizeof(u32)))
2944 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002945 r = 0;
Avi Kivitycc1d8952007-01-05 16:36:58 -08002946 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002947 }
Eddie Dong85f455f2007-07-06 12:20:49 +03002948 case KVM_CHECK_EXTENSION: {
2949 int ext = (long)argp;
2950
2951 switch (ext) {
2952 case KVM_CAP_IRQCHIP:
Eddie Dongb6958ce2007-07-18 12:15:21 +03002953 case KVM_CAP_HLT:
Eddie Dong85f455f2007-07-06 12:20:49 +03002954 r = 1;
2955 break;
2956 default:
2957 r = 0;
2958 break;
2959 }
Avi Kivity5d308f42007-03-01 17:56:20 +02002960 break;
Eddie Dong85f455f2007-07-06 12:20:49 +03002961 }
Avi Kivity07c45a32007-03-07 13:05:38 +02002962 case KVM_GET_VCPU_MMAP_SIZE:
2963 r = -EINVAL;
2964 if (arg)
2965 goto out;
Avi Kivity039576c2007-03-20 12:46:50 +02002966 r = 2 * PAGE_SIZE;
Avi Kivity07c45a32007-03-07 13:05:38 +02002967 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002968 default:
2969 ;
2970 }
2971out:
2972 return r;
2973}
2974
Avi Kivity6aa8b732006-12-10 02:21:36 -08002975static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002976 .unlocked_ioctl = kvm_dev_ioctl,
2977 .compat_ioctl = kvm_dev_ioctl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002978};
2979
2980static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02002981 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002982 "kvm",
2983 &kvm_chardev_ops,
2984};
2985
Avi Kivity774c47f2007-02-12 00:54:47 -08002986/*
2987 * Make sure that a cpu that is being hot-unplugged does not have any vcpus
2988 * cached on it.
2989 */
2990static void decache_vcpus_on_cpu(int cpu)
2991{
2992 struct kvm *vm;
2993 struct kvm_vcpu *vcpu;
2994 int i;
2995
2996 spin_lock(&kvm_lock);
Shaohua Li11ec2802007-07-23 14:51:37 +08002997 list_for_each_entry(vm, &vm_list, vm_list)
Avi Kivity774c47f2007-02-12 00:54:47 -08002998 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002999 vcpu = vm->vcpus[i];
3000 if (!vcpu)
3001 continue;
Avi Kivity774c47f2007-02-12 00:54:47 -08003002 /*
3003 * If the vcpu is locked, then it is running on some
3004 * other cpu and therefore it is not cached on the
3005 * cpu in question.
3006 *
3007 * If it's not locked, check the last cpu it executed
3008 * on.
3009 */
3010 if (mutex_trylock(&vcpu->mutex)) {
3011 if (vcpu->cpu == cpu) {
3012 kvm_arch_ops->vcpu_decache(vcpu);
3013 vcpu->cpu = -1;
3014 }
3015 mutex_unlock(&vcpu->mutex);
3016 }
3017 }
3018 spin_unlock(&kvm_lock);
3019}
3020
Avi Kivity1b6c0162007-05-24 13:03:52 +03003021static void hardware_enable(void *junk)
3022{
3023 int cpu = raw_smp_processor_id();
3024
3025 if (cpu_isset(cpu, cpus_hardware_enabled))
3026 return;
3027 cpu_set(cpu, cpus_hardware_enabled);
3028 kvm_arch_ops->hardware_enable(NULL);
3029}
3030
3031static void hardware_disable(void *junk)
3032{
3033 int cpu = raw_smp_processor_id();
3034
3035 if (!cpu_isset(cpu, cpus_hardware_enabled))
3036 return;
3037 cpu_clear(cpu, cpus_hardware_enabled);
3038 decache_vcpus_on_cpu(cpu);
3039 kvm_arch_ops->hardware_disable(NULL);
3040}
3041
Avi Kivity774c47f2007-02-12 00:54:47 -08003042static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
3043 void *v)
3044{
3045 int cpu = (long)v;
3046
3047 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03003048 case CPU_DYING:
3049 case CPU_DYING_FROZEN:
Avi Kivity6ec8a852007-08-19 15:57:26 +03003050 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
3051 cpu);
3052 hardware_disable(NULL);
3053 break;
Avi Kivity774c47f2007-02-12 00:54:47 -08003054 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003055 case CPU_UP_CANCELED_FROZEN:
Jeremy Katz43934a32007-02-19 14:37:46 +02003056 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
3057 cpu);
Avi Kivity1b6c0162007-05-24 13:03:52 +03003058 smp_call_function_single(cpu, hardware_disable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08003059 break;
Jeremy Katz43934a32007-02-19 14:37:46 +02003060 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003061 case CPU_ONLINE_FROZEN:
Jeremy Katz43934a32007-02-19 14:37:46 +02003062 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
3063 cpu);
Avi Kivity1b6c0162007-05-24 13:03:52 +03003064 smp_call_function_single(cpu, hardware_enable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08003065 break;
3066 }
3067 return NOTIFY_OK;
3068}
3069
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003070static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
3071 void *v)
3072{
3073 if (val == SYS_RESTART) {
3074 /*
3075 * Some (well, at least mine) BIOSes hang on reboot if
3076 * in vmx root mode.
3077 */
3078 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
3079 on_each_cpu(hardware_disable, NULL, 0, 1);
3080 }
3081 return NOTIFY_OK;
3082}
3083
3084static struct notifier_block kvm_reboot_notifier = {
3085 .notifier_call = kvm_reboot,
3086 .priority = 0,
3087};
3088
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003089void kvm_io_bus_init(struct kvm_io_bus *bus)
3090{
3091 memset(bus, 0, sizeof(*bus));
3092}
3093
3094void kvm_io_bus_destroy(struct kvm_io_bus *bus)
3095{
3096 int i;
3097
3098 for (i = 0; i < bus->dev_count; i++) {
3099 struct kvm_io_device *pos = bus->devs[i];
3100
3101 kvm_iodevice_destructor(pos);
3102 }
3103}
3104
3105struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, gpa_t addr)
3106{
3107 int i;
3108
3109 for (i = 0; i < bus->dev_count; i++) {
3110 struct kvm_io_device *pos = bus->devs[i];
3111
3112 if (pos->in_range(pos, addr))
3113 return pos;
3114 }
3115
3116 return NULL;
3117}
3118
3119void kvm_io_bus_register_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev)
3120{
3121 BUG_ON(bus->dev_count > (NR_IOBUS_DEVS-1));
3122
3123 bus->devs[bus->dev_count++] = dev;
3124}
3125
Avi Kivity774c47f2007-02-12 00:54:47 -08003126static struct notifier_block kvm_cpu_notifier = {
3127 .notifier_call = kvm_cpu_hotplug,
3128 .priority = 20, /* must be > scheduler priority */
3129};
3130
Avi Kivity1165f5f2007-04-19 17:27:43 +03003131static u64 stat_get(void *_offset)
3132{
3133 unsigned offset = (long)_offset;
3134 u64 total = 0;
3135 struct kvm *kvm;
3136 struct kvm_vcpu *vcpu;
3137 int i;
3138
3139 spin_lock(&kvm_lock);
3140 list_for_each_entry(kvm, &vm_list, vm_list)
3141 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003142 vcpu = kvm->vcpus[i];
3143 if (vcpu)
3144 total += *(u32 *)((void *)vcpu + offset);
Avi Kivity1165f5f2007-04-19 17:27:43 +03003145 }
3146 spin_unlock(&kvm_lock);
3147 return total;
3148}
3149
Rusty Russell3dea7ca2007-08-01 10:12:22 +10003150DEFINE_SIMPLE_ATTRIBUTE(stat_fops, stat_get, NULL, "%llu\n");
Avi Kivity1165f5f2007-04-19 17:27:43 +03003151
Avi Kivity6aa8b732006-12-10 02:21:36 -08003152static __init void kvm_init_debug(void)
3153{
3154 struct kvm_stats_debugfs_item *p;
3155
Al Viro8b6d44c2007-02-09 16:38:40 +00003156 debugfs_dir = debugfs_create_dir("kvm", NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003157 for (p = debugfs_entries; p->name; ++p)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003158 p->dentry = debugfs_create_file(p->name, 0444, debugfs_dir,
3159 (void *)(long)p->offset,
3160 &stat_fops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003161}
3162
3163static void kvm_exit_debug(void)
3164{
3165 struct kvm_stats_debugfs_item *p;
3166
3167 for (p = debugfs_entries; p->name; ++p)
3168 debugfs_remove(p->dentry);
3169 debugfs_remove(debugfs_dir);
3170}
3171
Avi Kivity59ae6c62007-02-12 00:54:48 -08003172static int kvm_suspend(struct sys_device *dev, pm_message_t state)
3173{
Avi Kivity4267c412007-05-24 13:09:41 +03003174 hardware_disable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003175 return 0;
3176}
3177
3178static int kvm_resume(struct sys_device *dev)
3179{
Avi Kivity4267c412007-05-24 13:09:41 +03003180 hardware_enable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003181 return 0;
3182}
3183
3184static struct sysdev_class kvm_sysdev_class = {
3185 set_kset_name("kvm"),
3186 .suspend = kvm_suspend,
3187 .resume = kvm_resume,
3188};
3189
3190static struct sys_device kvm_sysdev = {
3191 .id = 0,
3192 .cls = &kvm_sysdev_class,
3193};
3194
Avi Kivity6aa8b732006-12-10 02:21:36 -08003195hpa_t bad_page_address;
3196
Avi Kivity15ad7142007-07-11 18:17:21 +03003197static inline
3198struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3199{
3200 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3201}
3202
3203static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3204{
3205 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3206
3207 kvm_arch_ops->vcpu_load(vcpu, cpu);
3208}
3209
3210static void kvm_sched_out(struct preempt_notifier *pn,
3211 struct task_struct *next)
3212{
3213 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3214
3215 kvm_arch_ops->vcpu_put(vcpu);
3216}
3217
Rusty Russellc16f8622007-07-30 21:12:19 +10003218int kvm_init_arch(struct kvm_arch_ops *ops, unsigned int vcpu_size,
3219 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003220{
3221 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003222 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003223
Yoshimi Ichiyanagi09db28b2006-12-29 16:49:41 -08003224 if (kvm_arch_ops) {
3225 printk(KERN_ERR "kvm: already loaded the other module\n");
3226 return -EEXIST;
3227 }
3228
Yoshimi Ichiyanagie097f352007-01-05 16:36:24 -08003229 if (!ops->cpu_has_kvm_support()) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003230 printk(KERN_ERR "kvm: no hardware support\n");
3231 return -EOPNOTSUPP;
3232 }
Yoshimi Ichiyanagie097f352007-01-05 16:36:24 -08003233 if (ops->disabled_by_bios()) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003234 printk(KERN_ERR "kvm: disabled by bios\n");
3235 return -EOPNOTSUPP;
3236 }
3237
Yoshimi Ichiyanagie097f352007-01-05 16:36:24 -08003238 kvm_arch_ops = ops;
3239
Avi Kivity6aa8b732006-12-10 02:21:36 -08003240 r = kvm_arch_ops->hardware_setup();
3241 if (r < 0)
Avi Kivityca45aaa2007-03-01 19:21:03 +02003242 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003243
Yang, Sheng002c7f72007-07-31 14:23:01 +03003244 for_each_online_cpu(cpu) {
3245 smp_call_function_single(cpu,
3246 kvm_arch_ops->check_processor_compatibility,
3247 &r, 0, 1);
3248 if (r < 0)
3249 goto out_free_0;
3250 }
3251
Avi Kivity1b6c0162007-05-24 13:03:52 +03003252 on_each_cpu(hardware_enable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08003253 r = register_cpu_notifier(&kvm_cpu_notifier);
3254 if (r)
3255 goto out_free_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003256 register_reboot_notifier(&kvm_reboot_notifier);
3257
Avi Kivity59ae6c62007-02-12 00:54:48 -08003258 r = sysdev_class_register(&kvm_sysdev_class);
3259 if (r)
3260 goto out_free_2;
3261
3262 r = sysdev_register(&kvm_sysdev);
3263 if (r)
3264 goto out_free_3;
3265
Rusty Russellc16f8622007-07-30 21:12:19 +10003266 /* A kmem cache lets us meet the alignment requirements of fx_save. */
3267 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size,
3268 __alignof__(struct kvm_vcpu), 0, 0);
3269 if (!kvm_vcpu_cache) {
3270 r = -ENOMEM;
3271 goto out_free_4;
3272 }
3273
Avi Kivity6aa8b732006-12-10 02:21:36 -08003274 kvm_chardev_ops.owner = module;
3275
3276 r = misc_register(&kvm_dev);
3277 if (r) {
3278 printk (KERN_ERR "kvm: misc device register failed\n");
3279 goto out_free;
3280 }
3281
Avi Kivity15ad7142007-07-11 18:17:21 +03003282 kvm_preempt_ops.sched_in = kvm_sched_in;
3283 kvm_preempt_ops.sched_out = kvm_sched_out;
3284
Avi Kivity6aa8b732006-12-10 02:21:36 -08003285 return r;
3286
3287out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10003288 kmem_cache_destroy(kvm_vcpu_cache);
3289out_free_4:
Avi Kivity59ae6c62007-02-12 00:54:48 -08003290 sysdev_unregister(&kvm_sysdev);
3291out_free_3:
3292 sysdev_class_unregister(&kvm_sysdev_class);
3293out_free_2:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003294 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08003295 unregister_cpu_notifier(&kvm_cpu_notifier);
3296out_free_1:
Avi Kivity1b6c0162007-05-24 13:03:52 +03003297 on_each_cpu(hardware_disable, NULL, 0, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003298out_free_0:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003299 kvm_arch_ops->hardware_unsetup();
Avi Kivityca45aaa2007-03-01 19:21:03 +02003300out:
3301 kvm_arch_ops = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003302 return r;
3303}
3304
3305void kvm_exit_arch(void)
3306{
3307 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10003308 kmem_cache_destroy(kvm_vcpu_cache);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003309 sysdev_unregister(&kvm_sysdev);
3310 sysdev_class_unregister(&kvm_sysdev_class);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003311 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003312 unregister_cpu_notifier(&kvm_cpu_notifier);
Avi Kivity1b6c0162007-05-24 13:03:52 +03003313 on_each_cpu(hardware_disable, NULL, 0, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003314 kvm_arch_ops->hardware_unsetup();
Yoshimi Ichiyanagi09db28b2006-12-29 16:49:41 -08003315 kvm_arch_ops = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003316}
3317
3318static __init int kvm_init(void)
3319{
3320 static struct page *bad_page;
Avi Kivity37e29d92007-02-20 14:07:37 +02003321 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003322
Avi Kivityb5a33a72007-04-15 16:31:09 +03003323 r = kvm_mmu_module_init();
3324 if (r)
3325 goto out4;
3326
Avi Kivity6aa8b732006-12-10 02:21:36 -08003327 kvm_init_debug();
3328
Michael Riepebf591b22006-12-22 01:05:36 -08003329 kvm_init_msr_list();
3330
Avi Kivity6aa8b732006-12-10 02:21:36 -08003331 if ((bad_page = alloc_page(GFP_KERNEL)) == NULL) {
3332 r = -ENOMEM;
3333 goto out;
3334 }
3335
3336 bad_page_address = page_to_pfn(bad_page) << PAGE_SHIFT;
3337 memset(__va(bad_page_address), 0, PAGE_SIZE);
3338
Avi Kivity58e690e2007-02-26 16:29:43 +02003339 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003340
3341out:
3342 kvm_exit_debug();
Avi Kivityb5a33a72007-04-15 16:31:09 +03003343 kvm_mmu_module_exit();
3344out4:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003345 return r;
3346}
3347
3348static __exit void kvm_exit(void)
3349{
3350 kvm_exit_debug();
3351 __free_page(pfn_to_page(bad_page_address >> PAGE_SHIFT));
Avi Kivityb5a33a72007-04-15 16:31:09 +03003352 kvm_mmu_module_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003353}
3354
3355module_init(kvm_init)
3356module_exit(kvm_exit)
3357
3358EXPORT_SYMBOL_GPL(kvm_init_arch);
3359EXPORT_SYMBOL_GPL(kvm_exit_arch);