blob: d0a5a2b3d599d82d2336473cc8ef0269f78cbc76 [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;
He, Qingc5ec1532007-09-03 17:07:41 +0300252 if (!irqchip_in_kernel(kvm) || id == 0)
253 vcpu->mp_state = VCPU_MP_STATE_RUNNABLE;
254 else
255 vcpu->mp_state = VCPU_MP_STATE_UNINITIALIZED;
Eddie Dongb6958ce2007-07-18 12:15:21 +0300256 init_waitqueue_head(&vcpu->wq);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000257
258 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
259 if (!page) {
260 r = -ENOMEM;
261 goto fail;
262 }
263 vcpu->run = page_address(page);
264
265 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
266 if (!page) {
267 r = -ENOMEM;
268 goto fail_free_run;
269 }
270 vcpu->pio_data = page_address(page);
271
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000272 r = kvm_mmu_create(vcpu);
273 if (r < 0)
274 goto fail_free_pio_data;
275
276 return 0;
277
278fail_free_pio_data:
279 free_page((unsigned long)vcpu->pio_data);
280fail_free_run:
281 free_page((unsigned long)vcpu->run);
282fail:
283 return -ENOMEM;
284}
285EXPORT_SYMBOL_GPL(kvm_vcpu_init);
286
287void kvm_vcpu_uninit(struct kvm_vcpu *vcpu)
288{
289 kvm_mmu_destroy(vcpu);
Eddie Dong1b9778d2007-09-03 16:56:58 +0300290 if (vcpu->apic)
291 hrtimer_cancel(&vcpu->apic->timer.dev);
Eddie Dong97222cc2007-09-12 10:58:04 +0300292 kvm_free_apic(vcpu->apic);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000293 free_page((unsigned long)vcpu->pio_data);
294 free_page((unsigned long)vcpu->run);
295}
296EXPORT_SYMBOL_GPL(kvm_vcpu_uninit);
297
Avi Kivityf17abe92007-02-21 19:28:04 +0200298static struct kvm *kvm_create_vm(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800299{
300 struct kvm *kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800301
302 if (!kvm)
Avi Kivityf17abe92007-02-21 19:28:04 +0200303 return ERR_PTR(-ENOMEM);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800304
Eddie Dong74906342007-06-19 18:05:03 +0300305 kvm_io_bus_init(&kvm->pio_bus);
Shaohua Li11ec2802007-07-23 14:51:37 +0800306 mutex_init(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800307 INIT_LIST_HEAD(&kvm->active_mmu_pages);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400308 kvm_io_bus_init(&kvm->mmio_bus);
Rusty Russell5e58cfe2007-07-23 17:08:21 +1000309 spin_lock(&kvm_lock);
310 list_add(&kvm->vm_list, &vm_list);
311 spin_unlock(&kvm_lock);
Avi Kivityf17abe92007-02-21 19:28:04 +0200312 return kvm;
313}
314
Avi Kivity6aa8b732006-12-10 02:21:36 -0800315/*
316 * Free any memory in @free but not in @dont.
317 */
318static void kvm_free_physmem_slot(struct kvm_memory_slot *free,
319 struct kvm_memory_slot *dont)
320{
321 int i;
322
323 if (!dont || free->phys_mem != dont->phys_mem)
324 if (free->phys_mem) {
325 for (i = 0; i < free->npages; ++i)
Avi Kivity55a54f72006-12-29 16:49:58 -0800326 if (free->phys_mem[i])
327 __free_page(free->phys_mem[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800328 vfree(free->phys_mem);
329 }
330
331 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
332 vfree(free->dirty_bitmap);
333
Al Viro8b6d44c2007-02-09 16:38:40 +0000334 free->phys_mem = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800335 free->npages = 0;
Al Viro8b6d44c2007-02-09 16:38:40 +0000336 free->dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800337}
338
339static void kvm_free_physmem(struct kvm *kvm)
340{
341 int i;
342
343 for (i = 0; i < kvm->nmemslots; ++i)
Al Viro8b6d44c2007-02-09 16:38:40 +0000344 kvm_free_physmem_slot(&kvm->memslots[i], NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800345}
346
Avi Kivity039576c2007-03-20 12:46:50 +0200347static void free_pio_guest_pages(struct kvm_vcpu *vcpu)
348{
349 int i;
350
Rusty Russell3077c4512007-07-30 16:41:57 +1000351 for (i = 0; i < ARRAY_SIZE(vcpu->pio.guest_pages); ++i)
Avi Kivity039576c2007-03-20 12:46:50 +0200352 if (vcpu->pio.guest_pages[i]) {
353 __free_page(vcpu->pio.guest_pages[i]);
354 vcpu->pio.guest_pages[i] = NULL;
355 }
356}
357
Avi Kivity7b53aa52007-06-05 12:17:03 +0300358static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
359{
Avi Kivity7b53aa52007-06-05 12:17:03 +0300360 vcpu_load(vcpu);
361 kvm_mmu_unload(vcpu);
362 vcpu_put(vcpu);
363}
364
Avi Kivity6aa8b732006-12-10 02:21:36 -0800365static void kvm_free_vcpus(struct kvm *kvm)
366{
367 unsigned int i;
368
Avi Kivity7b53aa52007-06-05 12:17:03 +0300369 /*
370 * Unpin any mmu pages first.
371 */
372 for (i = 0; i < KVM_MAX_VCPUS; ++i)
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000373 if (kvm->vcpus[i])
374 kvm_unload_vcpu_mmu(kvm->vcpus[i]);
375 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
376 if (kvm->vcpus[i]) {
377 kvm_arch_ops->vcpu_free(kvm->vcpus[i]);
378 kvm->vcpus[i] = NULL;
379 }
380 }
381
Avi Kivity6aa8b732006-12-10 02:21:36 -0800382}
383
Avi Kivityf17abe92007-02-21 19:28:04 +0200384static void kvm_destroy_vm(struct kvm *kvm)
385{
Avi Kivity133de902007-02-12 00:54:44 -0800386 spin_lock(&kvm_lock);
387 list_del(&kvm->vm_list);
388 spin_unlock(&kvm_lock);
Eddie Dong74906342007-06-19 18:05:03 +0300389 kvm_io_bus_destroy(&kvm->pio_bus);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400390 kvm_io_bus_destroy(&kvm->mmio_bus);
Eddie Dong85f455f2007-07-06 12:20:49 +0300391 kfree(kvm->vpic);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +0300392 kfree(kvm->vioapic);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800393 kvm_free_vcpus(kvm);
394 kvm_free_physmem(kvm);
395 kfree(kvm);
Avi Kivityf17abe92007-02-21 19:28:04 +0200396}
397
398static int kvm_vm_release(struct inode *inode, struct file *filp)
399{
400 struct kvm *kvm = filp->private_data;
401
402 kvm_destroy_vm(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800403 return 0;
404}
405
406static void inject_gp(struct kvm_vcpu *vcpu)
407{
408 kvm_arch_ops->inject_gp(vcpu, 0);
409}
410
Avi Kivity1342d352007-01-05 16:36:39 -0800411/*
412 * Load the pae pdptrs. Return true is they are all valid.
413 */
414static int load_pdptrs(struct kvm_vcpu *vcpu, unsigned long cr3)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800415{
416 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
Avi Kivity1342d352007-01-05 16:36:39 -0800417 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800418 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800419 u64 *pdpt;
Avi Kivity1342d352007-01-05 16:36:39 -0800420 int ret;
Avi Kivity954bbbc2007-03-30 14:02:32 +0300421 struct page *page;
Rusty Russellc820c2a2007-07-25 13:29:51 +1000422 u64 pdpte[ARRAY_SIZE(vcpu->pdptrs)];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800423
Shaohua Li11ec2802007-07-23 14:51:37 +0800424 mutex_lock(&vcpu->kvm->lock);
Avi Kivity954bbbc2007-03-30 14:02:32 +0300425 page = gfn_to_page(vcpu->kvm, pdpt_gfn);
Rusty Russellc820c2a2007-07-25 13:29:51 +1000426 if (!page) {
427 ret = 0;
428 goto out;
429 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800430
Rusty Russellc820c2a2007-07-25 13:29:51 +1000431 pdpt = kmap_atomic(page, KM_USER0);
432 memcpy(pdpte, pdpt+offset, sizeof(pdpte));
433 kunmap_atomic(pdpt, KM_USER0);
434
435 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
436 if ((pdpte[i] & 1) && (pdpte[i] & 0xfffffff0000001e6ull)) {
Avi Kivity1342d352007-01-05 16:36:39 -0800437 ret = 0;
438 goto out;
439 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800440 }
Rusty Russellc820c2a2007-07-25 13:29:51 +1000441 ret = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800442
Rusty Russellc820c2a2007-07-25 13:29:51 +1000443 memcpy(vcpu->pdptrs, pdpte, sizeof(vcpu->pdptrs));
Avi Kivity1342d352007-01-05 16:36:39 -0800444out:
Shaohua Li11ec2802007-07-23 14:51:37 +0800445 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800446
Avi Kivity1342d352007-01-05 16:36:39 -0800447 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800448}
449
450void set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
451{
Rusty Russell707d92f2007-07-17 23:19:08 +1000452 if (cr0 & CR0_RESERVED_BITS) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800453 printk(KERN_DEBUG "set_cr0: 0x%lx #GP, reserved bits 0x%lx\n",
454 cr0, vcpu->cr0);
455 inject_gp(vcpu);
456 return;
457 }
458
Rusty Russell707d92f2007-07-17 23:19:08 +1000459 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800460 printk(KERN_DEBUG "set_cr0: #GP, CD == 0 && NW == 1\n");
461 inject_gp(vcpu);
462 return;
463 }
464
Rusty Russell707d92f2007-07-17 23:19:08 +1000465 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800466 printk(KERN_DEBUG "set_cr0: #GP, set PG flag "
467 "and a clear PE flag\n");
468 inject_gp(vcpu);
469 return;
470 }
471
Rusty Russell707d92f2007-07-17 23:19:08 +1000472 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800473#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800474 if ((vcpu->shadow_efer & EFER_LME)) {
475 int cs_db, cs_l;
476
477 if (!is_pae(vcpu)) {
478 printk(KERN_DEBUG "set_cr0: #GP, start paging "
479 "in long mode while PAE is disabled\n");
480 inject_gp(vcpu);
481 return;
482 }
483 kvm_arch_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
484 if (cs_l) {
485 printk(KERN_DEBUG "set_cr0: #GP, start paging "
486 "in long mode while CS.L == 1\n");
487 inject_gp(vcpu);
488 return;
489
490 }
491 } else
492#endif
Avi Kivity1342d352007-01-05 16:36:39 -0800493 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->cr3)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800494 printk(KERN_DEBUG "set_cr0: #GP, pdptrs "
495 "reserved bits\n");
496 inject_gp(vcpu);
497 return;
498 }
499
500 }
501
502 kvm_arch_ops->set_cr0(vcpu, cr0);
503 vcpu->cr0 = cr0;
504
Shaohua Li11ec2802007-07-23 14:51:37 +0800505 mutex_lock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800506 kvm_mmu_reset_context(vcpu);
Shaohua Li11ec2802007-07-23 14:51:37 +0800507 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800508 return;
509}
510EXPORT_SYMBOL_GPL(set_cr0);
511
512void lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
513{
514 set_cr0(vcpu, (vcpu->cr0 & ~0x0ful) | (msw & 0x0f));
515}
516EXPORT_SYMBOL_GPL(lmsw);
517
518void set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
519{
Rusty Russell66aee912007-07-17 23:34:16 +1000520 if (cr4 & CR4_RESERVED_BITS) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800521 printk(KERN_DEBUG "set_cr4: #GP, reserved bits\n");
522 inject_gp(vcpu);
523 return;
524 }
525
Avi Kivitya9058ec2006-12-29 16:49:37 -0800526 if (is_long_mode(vcpu)) {
Rusty Russell66aee912007-07-17 23:34:16 +1000527 if (!(cr4 & X86_CR4_PAE)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800528 printk(KERN_DEBUG "set_cr4: #GP, clearing PAE while "
529 "in long mode\n");
530 inject_gp(vcpu);
531 return;
532 }
Rusty Russell66aee912007-07-17 23:34:16 +1000533 } else if (is_paging(vcpu) && !is_pae(vcpu) && (cr4 & X86_CR4_PAE)
Avi Kivity1342d352007-01-05 16:36:39 -0800534 && !load_pdptrs(vcpu, vcpu->cr3)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800535 printk(KERN_DEBUG "set_cr4: #GP, pdptrs reserved bits\n");
536 inject_gp(vcpu);
Rusty Russell310bc762007-07-23 17:11:02 +1000537 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800538 }
539
Rusty Russell66aee912007-07-17 23:34:16 +1000540 if (cr4 & X86_CR4_VMXE) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800541 printk(KERN_DEBUG "set_cr4: #GP, setting VMXE\n");
542 inject_gp(vcpu);
543 return;
544 }
545 kvm_arch_ops->set_cr4(vcpu, cr4);
Shaohua Li11ec2802007-07-23 14:51:37 +0800546 mutex_lock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800547 kvm_mmu_reset_context(vcpu);
Shaohua Li11ec2802007-07-23 14:51:37 +0800548 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800549}
550EXPORT_SYMBOL_GPL(set_cr4);
551
552void set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
553{
Avi Kivitya9058ec2006-12-29 16:49:37 -0800554 if (is_long_mode(vcpu)) {
Rusty Russellf802a302007-07-17 23:32:55 +1000555 if (cr3 & CR3_L_MODE_RESERVED_BITS) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800556 printk(KERN_DEBUG "set_cr3: #GP, reserved bits\n");
557 inject_gp(vcpu);
558 return;
559 }
560 } else {
Rusty Russellf802a302007-07-17 23:32:55 +1000561 if (is_pae(vcpu)) {
562 if (cr3 & CR3_PAE_RESERVED_BITS) {
563 printk(KERN_DEBUG
564 "set_cr3: #GP, reserved bits\n");
565 inject_gp(vcpu);
566 return;
567 }
568 if (is_paging(vcpu) && !load_pdptrs(vcpu, cr3)) {
569 printk(KERN_DEBUG "set_cr3: #GP, pdptrs "
570 "reserved bits\n");
571 inject_gp(vcpu);
572 return;
573 }
574 } else {
575 if (cr3 & CR3_NONPAE_RESERVED_BITS) {
576 printk(KERN_DEBUG
577 "set_cr3: #GP, reserved bits\n");
578 inject_gp(vcpu);
579 return;
580 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800581 }
582 }
583
Shaohua Li11ec2802007-07-23 14:51:37 +0800584 mutex_lock(&vcpu->kvm->lock);
Ingo Molnard21225e2007-01-05 16:36:59 -0800585 /*
586 * Does the new cr3 value map to physical memory? (Note, we
587 * catch an invalid cr3 even in real-mode, because it would
588 * cause trouble later on when we turn on paging anyway.)
589 *
590 * A real CPU would silently accept an invalid cr3 and would
591 * attempt to use it - with largely undefined (and often hard
592 * to debug) behavior on the guest side.
593 */
594 if (unlikely(!gfn_to_memslot(vcpu->kvm, cr3 >> PAGE_SHIFT)))
595 inject_gp(vcpu);
Rusty Russellfb764412007-07-31 20:45:03 +1000596 else {
597 vcpu->cr3 = cr3;
Ingo Molnard21225e2007-01-05 16:36:59 -0800598 vcpu->mmu.new_cr3(vcpu);
Rusty Russellfb764412007-07-31 20:45:03 +1000599 }
Shaohua Li11ec2802007-07-23 14:51:37 +0800600 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800601}
602EXPORT_SYMBOL_GPL(set_cr3);
603
604void set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
605{
Rusty Russell7075bc82007-07-17 23:37:17 +1000606 if (cr8 & CR8_RESERVED_BITS) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800607 printk(KERN_DEBUG "set_cr8: #GP, reserved bits 0x%lx\n", cr8);
608 inject_gp(vcpu);
609 return;
610 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300611 if (irqchip_in_kernel(vcpu->kvm))
612 kvm_lapic_set_tpr(vcpu, cr8);
613 else
614 vcpu->cr8 = cr8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800615}
616EXPORT_SYMBOL_GPL(set_cr8);
617
Eddie Dong7017fc32007-07-18 11:34:57 +0300618unsigned long get_cr8(struct kvm_vcpu *vcpu)
619{
Eddie Dong97222cc2007-09-12 10:58:04 +0300620 if (irqchip_in_kernel(vcpu->kvm))
621 return kvm_lapic_get_cr8(vcpu);
622 else
623 return vcpu->cr8;
Eddie Dong7017fc32007-07-18 11:34:57 +0300624}
625EXPORT_SYMBOL_GPL(get_cr8);
626
627u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
628{
Eddie Dong97222cc2007-09-12 10:58:04 +0300629 if (irqchip_in_kernel(vcpu->kvm))
630 return vcpu->apic_base;
631 else
632 return vcpu->apic_base;
Eddie Dong7017fc32007-07-18 11:34:57 +0300633}
634EXPORT_SYMBOL_GPL(kvm_get_apic_base);
635
636void kvm_set_apic_base(struct kvm_vcpu *vcpu, u64 data)
637{
Eddie Dong97222cc2007-09-12 10:58:04 +0300638 /* TODO: reserve bits check */
639 if (irqchip_in_kernel(vcpu->kvm))
640 kvm_lapic_set_base(vcpu, data);
641 else
642 vcpu->apic_base = data;
Eddie Dong7017fc32007-07-18 11:34:57 +0300643}
644EXPORT_SYMBOL_GPL(kvm_set_apic_base);
645
Avi Kivity6aa8b732006-12-10 02:21:36 -0800646void fx_init(struct kvm_vcpu *vcpu)
647{
Rusty Russellb114b082007-07-30 21:13:43 +1000648 unsigned after_mxcsr_mask;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800649
Rusty Russell9bd01502007-07-30 16:29:56 +1000650 /* Initialize guest FPU by resetting ours and saving into guest's */
651 preempt_disable();
Rusty Russellb114b082007-07-30 21:13:43 +1000652 fx_save(&vcpu->host_fx_image);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800653 fpu_init();
Rusty Russellb114b082007-07-30 21:13:43 +1000654 fx_save(&vcpu->guest_fx_image);
655 fx_restore(&vcpu->host_fx_image);
Rusty Russell9bd01502007-07-30 16:29:56 +1000656 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800657
Rusty Russellb114b082007-07-30 21:13:43 +1000658 after_mxcsr_mask = offsetof(struct i387_fxsave_struct, st_space);
659 vcpu->guest_fx_image.mxcsr = 0x1f80;
660 memset((void *)&vcpu->guest_fx_image + after_mxcsr_mask,
661 0, sizeof(struct i387_fxsave_struct) - after_mxcsr_mask);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800662}
663EXPORT_SYMBOL_GPL(fx_init);
664
665/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800666 * Allocate some memory and give it an address in the guest physical address
667 * space.
668 *
669 * Discontiguous memory is allowed, mostly for framebuffers.
670 */
Avi Kivity2c6f5df2007-02-20 18:27:58 +0200671static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
672 struct kvm_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800673{
674 int r;
675 gfn_t base_gfn;
676 unsigned long npages;
677 unsigned long i;
678 struct kvm_memory_slot *memslot;
679 struct kvm_memory_slot old, new;
680 int memory_config_version;
681
682 r = -EINVAL;
683 /* General sanity checks */
684 if (mem->memory_size & (PAGE_SIZE - 1))
685 goto out;
686 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
687 goto out;
688 if (mem->slot >= KVM_MEMORY_SLOTS)
689 goto out;
690 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
691 goto out;
692
693 memslot = &kvm->memslots[mem->slot];
694 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
695 npages = mem->memory_size >> PAGE_SHIFT;
696
697 if (!npages)
698 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
699
700raced:
Shaohua Li11ec2802007-07-23 14:51:37 +0800701 mutex_lock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800702
703 memory_config_version = kvm->memory_config_version;
704 new = old = *memslot;
705
706 new.base_gfn = base_gfn;
707 new.npages = npages;
708 new.flags = mem->flags;
709
710 /* Disallow changing a memory slot's size. */
711 r = -EINVAL;
712 if (npages && old.npages && npages != old.npages)
713 goto out_unlock;
714
715 /* Check for overlaps */
716 r = -EEXIST;
717 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
718 struct kvm_memory_slot *s = &kvm->memslots[i];
719
720 if (s == memslot)
721 continue;
722 if (!((base_gfn + npages <= s->base_gfn) ||
723 (base_gfn >= s->base_gfn + s->npages)))
724 goto out_unlock;
725 }
726 /*
727 * Do memory allocations outside lock. memory_config_version will
728 * detect any races.
729 */
Shaohua Li11ec2802007-07-23 14:51:37 +0800730 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800731
732 /* Deallocate if slot is being removed */
733 if (!npages)
Al Viro8b6d44c2007-02-09 16:38:40 +0000734 new.phys_mem = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800735
736 /* Free page dirty bitmap if unneeded */
737 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000738 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800739
740 r = -ENOMEM;
741
742 /* Allocate if a slot is being created */
743 if (npages && !new.phys_mem) {
744 new.phys_mem = vmalloc(npages * sizeof(struct page *));
745
746 if (!new.phys_mem)
747 goto out_free;
748
749 memset(new.phys_mem, 0, npages * sizeof(struct page *));
750 for (i = 0; i < npages; ++i) {
751 new.phys_mem[i] = alloc_page(GFP_HIGHUSER
752 | __GFP_ZERO);
753 if (!new.phys_mem[i])
754 goto out_free;
Markus Rechberger5972e952007-02-19 14:37:47 +0200755 set_page_private(new.phys_mem[i],0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800756 }
757 }
758
759 /* Allocate page dirty bitmap if needed */
760 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
761 unsigned dirty_bytes = ALIGN(npages, BITS_PER_LONG) / 8;
762
763 new.dirty_bitmap = vmalloc(dirty_bytes);
764 if (!new.dirty_bitmap)
765 goto out_free;
766 memset(new.dirty_bitmap, 0, dirty_bytes);
767 }
768
Shaohua Li11ec2802007-07-23 14:51:37 +0800769 mutex_lock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800770
771 if (memory_config_version != kvm->memory_config_version) {
Shaohua Li11ec2802007-07-23 14:51:37 +0800772 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800773 kvm_free_physmem_slot(&new, &old);
774 goto raced;
775 }
776
777 r = -EAGAIN;
778 if (kvm->busy)
779 goto out_unlock;
780
781 if (mem->slot >= kvm->nmemslots)
782 kvm->nmemslots = mem->slot + 1;
783
784 *memslot = new;
785 ++kvm->memory_config_version;
786
Avi Kivity90cb0522007-07-17 13:04:56 +0300787 kvm_mmu_slot_remove_write_access(kvm, mem->slot);
788 kvm_flush_remote_tlbs(kvm);
789
Shaohua Li11ec2802007-07-23 14:51:37 +0800790 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800791
Avi Kivity6aa8b732006-12-10 02:21:36 -0800792 kvm_free_physmem_slot(&old, &new);
793 return 0;
794
795out_unlock:
Shaohua Li11ec2802007-07-23 14:51:37 +0800796 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800797out_free:
798 kvm_free_physmem_slot(&new, &old);
799out:
800 return r;
801}
802
803/*
804 * Get (and clear) the dirty memory log for a memory slot.
805 */
Avi Kivity2c6f5df2007-02-20 18:27:58 +0200806static int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
807 struct kvm_dirty_log *log)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800808{
809 struct kvm_memory_slot *memslot;
810 int r, i;
811 int n;
812 unsigned long any = 0;
813
Shaohua Li11ec2802007-07-23 14:51:37 +0800814 mutex_lock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800815
816 /*
817 * Prevent changes to guest memory configuration even while the lock
818 * is not taken.
819 */
820 ++kvm->busy;
Shaohua Li11ec2802007-07-23 14:51:37 +0800821 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800822 r = -EINVAL;
823 if (log->slot >= KVM_MEMORY_SLOTS)
824 goto out;
825
826 memslot = &kvm->memslots[log->slot];
827 r = -ENOENT;
828 if (!memslot->dirty_bitmap)
829 goto out;
830
Uri Lublincd1a4a92007-02-22 16:43:09 +0200831 n = ALIGN(memslot->npages, BITS_PER_LONG) / 8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800832
Uri Lublincd1a4a92007-02-22 16:43:09 +0200833 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800834 any = memslot->dirty_bitmap[i];
835
836 r = -EFAULT;
837 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
838 goto out;
839
Rusty Russell39214912007-07-31 19:57:47 +1000840 /* If nothing is dirty, don't bother messing with page tables. */
841 if (any) {
842 mutex_lock(&kvm->lock);
843 kvm_mmu_slot_remove_write_access(kvm, log->slot);
844 kvm_flush_remote_tlbs(kvm);
845 memset(memslot->dirty_bitmap, 0, n);
846 mutex_unlock(&kvm->lock);
847 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800848
849 r = 0;
850
851out:
Shaohua Li11ec2802007-07-23 14:51:37 +0800852 mutex_lock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800853 --kvm->busy;
Shaohua Li11ec2802007-07-23 14:51:37 +0800854 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800855 return r;
856}
857
Avi Kivitye8207542007-03-30 16:54:30 +0300858/*
859 * Set a new alias region. Aliases map a portion of physical memory into
860 * another portion. This is useful for memory windows, for example the PC
861 * VGA region.
862 */
863static int kvm_vm_ioctl_set_memory_alias(struct kvm *kvm,
864 struct kvm_memory_alias *alias)
865{
866 int r, n;
867 struct kvm_mem_alias *p;
868
869 r = -EINVAL;
870 /* General sanity checks */
871 if (alias->memory_size & (PAGE_SIZE - 1))
872 goto out;
873 if (alias->guest_phys_addr & (PAGE_SIZE - 1))
874 goto out;
875 if (alias->slot >= KVM_ALIAS_SLOTS)
876 goto out;
877 if (alias->guest_phys_addr + alias->memory_size
878 < alias->guest_phys_addr)
879 goto out;
880 if (alias->target_phys_addr + alias->memory_size
881 < alias->target_phys_addr)
882 goto out;
883
Shaohua Li11ec2802007-07-23 14:51:37 +0800884 mutex_lock(&kvm->lock);
Avi Kivitye8207542007-03-30 16:54:30 +0300885
886 p = &kvm->aliases[alias->slot];
887 p->base_gfn = alias->guest_phys_addr >> PAGE_SHIFT;
888 p->npages = alias->memory_size >> PAGE_SHIFT;
889 p->target_gfn = alias->target_phys_addr >> PAGE_SHIFT;
890
891 for (n = KVM_ALIAS_SLOTS; n > 0; --n)
892 if (kvm->aliases[n - 1].npages)
893 break;
894 kvm->naliases = n;
895
Avi Kivity90cb0522007-07-17 13:04:56 +0300896 kvm_mmu_zap_all(kvm);
Avi Kivitye8207542007-03-30 16:54:30 +0300897
Shaohua Li11ec2802007-07-23 14:51:37 +0800898 mutex_unlock(&kvm->lock);
Avi Kivitye8207542007-03-30 16:54:30 +0300899
900 return 0;
901
902out:
903 return r;
904}
905
He, Qing6ceb9d72007-07-26 11:05:18 +0300906static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
907{
908 int r;
909
910 r = 0;
911 switch (chip->chip_id) {
912 case KVM_IRQCHIP_PIC_MASTER:
913 memcpy (&chip->chip.pic,
914 &pic_irqchip(kvm)->pics[0],
915 sizeof(struct kvm_pic_state));
916 break;
917 case KVM_IRQCHIP_PIC_SLAVE:
918 memcpy (&chip->chip.pic,
919 &pic_irqchip(kvm)->pics[1],
920 sizeof(struct kvm_pic_state));
921 break;
He, Qing6bf9e962007-08-05 10:49:16 +0300922 case KVM_IRQCHIP_IOAPIC:
923 memcpy (&chip->chip.ioapic,
924 ioapic_irqchip(kvm),
925 sizeof(struct kvm_ioapic_state));
926 break;
He, Qing6ceb9d72007-07-26 11:05:18 +0300927 default:
928 r = -EINVAL;
929 break;
930 }
931 return r;
932}
933
934static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
935{
936 int r;
937
938 r = 0;
939 switch (chip->chip_id) {
940 case KVM_IRQCHIP_PIC_MASTER:
941 memcpy (&pic_irqchip(kvm)->pics[0],
942 &chip->chip.pic,
943 sizeof(struct kvm_pic_state));
944 break;
945 case KVM_IRQCHIP_PIC_SLAVE:
946 memcpy (&pic_irqchip(kvm)->pics[1],
947 &chip->chip.pic,
948 sizeof(struct kvm_pic_state));
949 break;
He, Qing6bf9e962007-08-05 10:49:16 +0300950 case KVM_IRQCHIP_IOAPIC:
951 memcpy (ioapic_irqchip(kvm),
952 &chip->chip.ioapic,
953 sizeof(struct kvm_ioapic_state));
954 break;
He, Qing6ceb9d72007-07-26 11:05:18 +0300955 default:
956 r = -EINVAL;
957 break;
958 }
959 kvm_pic_update_irq(pic_irqchip(kvm));
960 return r;
961}
962
Avi Kivitye8207542007-03-30 16:54:30 +0300963static gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
964{
965 int i;
966 struct kvm_mem_alias *alias;
967
968 for (i = 0; i < kvm->naliases; ++i) {
969 alias = &kvm->aliases[i];
970 if (gfn >= alias->base_gfn
971 && gfn < alias->base_gfn + alias->npages)
972 return alias->target_gfn + gfn - alias->base_gfn;
973 }
974 return gfn;
975}
976
977static struct kvm_memory_slot *__gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800978{
979 int i;
980
981 for (i = 0; i < kvm->nmemslots; ++i) {
982 struct kvm_memory_slot *memslot = &kvm->memslots[i];
983
984 if (gfn >= memslot->base_gfn
985 && gfn < memslot->base_gfn + memslot->npages)
986 return memslot;
987 }
Al Viro8b6d44c2007-02-09 16:38:40 +0000988 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800989}
Avi Kivitye8207542007-03-30 16:54:30 +0300990
991struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
992{
993 gfn = unalias_gfn(kvm, gfn);
994 return __gfn_to_memslot(kvm, gfn);
995}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800996
Avi Kivity954bbbc2007-03-30 14:02:32 +0300997struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
998{
999 struct kvm_memory_slot *slot;
1000
Avi Kivitye8207542007-03-30 16:54:30 +03001001 gfn = unalias_gfn(kvm, gfn);
1002 slot = __gfn_to_memslot(kvm, gfn);
Avi Kivity954bbbc2007-03-30 14:02:32 +03001003 if (!slot)
1004 return NULL;
1005 return slot->phys_mem[gfn - slot->base_gfn];
1006}
1007EXPORT_SYMBOL_GPL(gfn_to_page);
1008
Rusty Russell7e9d6192007-07-31 20:41:14 +10001009/* WARNING: Does not work on aliased pages. */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001010void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
1011{
Nguyen Anh Quynh31389942007-06-05 10:35:19 +03001012 struct kvm_memory_slot *memslot;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001013
Rusty Russell7e9d6192007-07-31 20:41:14 +10001014 memslot = __gfn_to_memslot(kvm, gfn);
1015 if (memslot && memslot->dirty_bitmap) {
1016 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001017
Rusty Russell7e9d6192007-07-31 20:41:14 +10001018 /* avoid RMW */
1019 if (!test_bit(rel_gfn, memslot->dirty_bitmap))
1020 set_bit(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001021 }
1022}
1023
Laurent Viviere7d5d762007-07-30 13:41:19 +03001024int emulator_read_std(unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +03001025 void *val,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001027 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001028{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001029 void *data = val;
1030
1031 while (bytes) {
1032 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, addr);
1033 unsigned offset = addr & (PAGE_SIZE-1);
1034 unsigned tocopy = min(bytes, (unsigned)PAGE_SIZE - offset);
1035 unsigned long pfn;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001036 struct page *page;
1037 void *page_virt;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001038
1039 if (gpa == UNMAPPED_GVA)
1040 return X86EMUL_PROPAGATE_FAULT;
1041 pfn = gpa >> PAGE_SHIFT;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001042 page = gfn_to_page(vcpu->kvm, pfn);
1043 if (!page)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001044 return X86EMUL_UNHANDLEABLE;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001045 page_virt = kmap_atomic(page, KM_USER0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001046
Avi Kivity954bbbc2007-03-30 14:02:32 +03001047 memcpy(data, page_virt + offset, tocopy);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001048
Avi Kivity954bbbc2007-03-30 14:02:32 +03001049 kunmap_atomic(page_virt, KM_USER0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001050
1051 bytes -= tocopy;
1052 data += tocopy;
1053 addr += tocopy;
1054 }
1055
1056 return X86EMUL_CONTINUE;
1057}
Laurent Viviere7d5d762007-07-30 13:41:19 +03001058EXPORT_SYMBOL_GPL(emulator_read_std);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001059
1060static int emulator_write_std(unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +03001061 const void *val,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001062 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001063 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001064{
Rusty Russellf0242472007-08-01 10:48:02 +10001065 pr_unimpl(vcpu, "emulator_write_std: addr %lx n %d\n", addr, bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001066 return X86EMUL_UNHANDLEABLE;
1067}
1068
Eddie Dong97222cc2007-09-12 10:58:04 +03001069/*
1070 * Only apic need an MMIO device hook, so shortcut now..
1071 */
1072static struct kvm_io_device *vcpu_find_pervcpu_dev(struct kvm_vcpu *vcpu,
1073 gpa_t addr)
1074{
1075 struct kvm_io_device *dev;
1076
1077 if (vcpu->apic) {
1078 dev = &vcpu->apic->dev;
1079 if (dev->in_range(dev, addr))
1080 return dev;
1081 }
1082 return NULL;
1083}
1084
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001085static struct kvm_io_device *vcpu_find_mmio_dev(struct kvm_vcpu *vcpu,
1086 gpa_t addr)
1087{
Eddie Dong97222cc2007-09-12 10:58:04 +03001088 struct kvm_io_device *dev;
1089
1090 dev = vcpu_find_pervcpu_dev(vcpu, addr);
1091 if (dev == NULL)
1092 dev = kvm_io_bus_find_dev(&vcpu->kvm->mmio_bus, addr);
1093 return dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001094}
1095
Eddie Dong74906342007-06-19 18:05:03 +03001096static struct kvm_io_device *vcpu_find_pio_dev(struct kvm_vcpu *vcpu,
1097 gpa_t addr)
1098{
1099 return kvm_io_bus_find_dev(&vcpu->kvm->pio_bus, addr);
1100}
1101
Avi Kivity6aa8b732006-12-10 02:21:36 -08001102static int emulator_read_emulated(unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +03001103 void *val,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001104 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001105 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001106{
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001107 struct kvm_io_device *mmio_dev;
1108 gpa_t gpa;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001109
1110 if (vcpu->mmio_read_completed) {
1111 memcpy(val, vcpu->mmio_data, bytes);
1112 vcpu->mmio_read_completed = 0;
1113 return X86EMUL_CONTINUE;
Laurent Viviercebff022007-07-30 13:35:24 +03001114 } else if (emulator_read_std(addr, val, bytes, vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001115 == X86EMUL_CONTINUE)
1116 return X86EMUL_CONTINUE;
Avi Kivityd27d4ac2007-02-19 14:37:46 +02001117
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001118 gpa = vcpu->mmu.gva_to_gpa(vcpu, addr);
1119 if (gpa == UNMAPPED_GVA)
1120 return X86EMUL_PROPAGATE_FAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001121
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001122 /*
1123 * Is this MMIO handled locally?
1124 */
1125 mmio_dev = vcpu_find_mmio_dev(vcpu, gpa);
1126 if (mmio_dev) {
1127 kvm_iodevice_read(mmio_dev, gpa, bytes, val);
1128 return X86EMUL_CONTINUE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001129 }
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001130
1131 vcpu->mmio_needed = 1;
1132 vcpu->mmio_phys_addr = gpa;
1133 vcpu->mmio_size = bytes;
1134 vcpu->mmio_is_write = 0;
1135
1136 return X86EMUL_UNHANDLEABLE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001137}
1138
Avi Kivityda4a00f2007-01-05 16:36:44 -08001139static int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivity4c690a12007-04-22 15:28:19 +03001140 const void *val, int bytes)
Avi Kivityda4a00f2007-01-05 16:36:44 -08001141{
Avi Kivityda4a00f2007-01-05 16:36:44 -08001142 struct page *page;
1143 void *virt;
1144
1145 if (((gpa + bytes - 1) >> PAGE_SHIFT) != (gpa >> PAGE_SHIFT))
1146 return 0;
Avi Kivity954bbbc2007-03-30 14:02:32 +03001147 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
1148 if (!page)
Avi Kivityda4a00f2007-01-05 16:36:44 -08001149 return 0;
Uri Lublinab51a432007-02-21 18:25:21 +02001150 mark_page_dirty(vcpu->kvm, gpa >> PAGE_SHIFT);
Avi Kivityda4a00f2007-01-05 16:36:44 -08001151 virt = kmap_atomic(page, KM_USER0);
Shaohua Life551882007-07-23 14:51:39 +08001152 kvm_mmu_pte_write(vcpu, gpa, val, bytes);
Avi Kivity7cfa4b02007-07-23 18:33:14 +03001153 memcpy(virt + offset_in_page(gpa), val, bytes);
Avi Kivityda4a00f2007-01-05 16:36:44 -08001154 kunmap_atomic(virt, KM_USER0);
Avi Kivityda4a00f2007-01-05 16:36:44 -08001155 return 1;
1156}
1157
Avi Kivityb0fcd902007-07-22 18:48:54 +03001158static int emulator_write_emulated_onepage(unsigned long addr,
1159 const void *val,
1160 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001161 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001162{
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001163 struct kvm_io_device *mmio_dev;
1164 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001165
Avi Kivityc9047f52007-04-17 10:53:22 +03001166 if (gpa == UNMAPPED_GVA) {
1167 kvm_arch_ops->inject_page_fault(vcpu, addr, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001168 return X86EMUL_PROPAGATE_FAULT;
Avi Kivityc9047f52007-04-17 10:53:22 +03001169 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001170
Avi Kivityda4a00f2007-01-05 16:36:44 -08001171 if (emulator_write_phys(vcpu, gpa, val, bytes))
1172 return X86EMUL_CONTINUE;
1173
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001174 /*
1175 * Is this MMIO handled locally?
1176 */
1177 mmio_dev = vcpu_find_mmio_dev(vcpu, gpa);
1178 if (mmio_dev) {
1179 kvm_iodevice_write(mmio_dev, gpa, bytes, val);
1180 return X86EMUL_CONTINUE;
1181 }
1182
Avi Kivity6aa8b732006-12-10 02:21:36 -08001183 vcpu->mmio_needed = 1;
1184 vcpu->mmio_phys_addr = gpa;
1185 vcpu->mmio_size = bytes;
1186 vcpu->mmio_is_write = 1;
Avi Kivity4c690a12007-04-22 15:28:19 +03001187 memcpy(vcpu->mmio_data, val, bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001188
1189 return X86EMUL_CONTINUE;
1190}
1191
Laurent Viviere7d5d762007-07-30 13:41:19 +03001192int emulator_write_emulated(unsigned long addr,
Avi Kivityb0fcd902007-07-22 18:48:54 +03001193 const void *val,
1194 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001195 struct kvm_vcpu *vcpu)
Avi Kivityb0fcd902007-07-22 18:48:54 +03001196{
1197 /* Crossing a page boundary? */
1198 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
1199 int rc, now;
1200
1201 now = -addr & ~PAGE_MASK;
Laurent Viviercebff022007-07-30 13:35:24 +03001202 rc = emulator_write_emulated_onepage(addr, val, now, vcpu);
Avi Kivityb0fcd902007-07-22 18:48:54 +03001203 if (rc != X86EMUL_CONTINUE)
1204 return rc;
1205 addr += now;
1206 val += now;
1207 bytes -= now;
1208 }
Laurent Viviercebff022007-07-30 13:35:24 +03001209 return emulator_write_emulated_onepage(addr, val, bytes, vcpu);
Avi Kivityb0fcd902007-07-22 18:48:54 +03001210}
Laurent Viviere7d5d762007-07-30 13:41:19 +03001211EXPORT_SYMBOL_GPL(emulator_write_emulated);
Avi Kivityb0fcd902007-07-22 18:48:54 +03001212
Avi Kivity6aa8b732006-12-10 02:21:36 -08001213static int emulator_cmpxchg_emulated(unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +03001214 const void *old,
1215 const void *new,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001216 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001217 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001218{
1219 static int reported;
1220
1221 if (!reported) {
1222 reported = 1;
1223 printk(KERN_WARNING "kvm: emulating exchange as write\n");
1224 }
Laurent Viviercebff022007-07-30 13:35:24 +03001225 return emulator_write_emulated(addr, new, bytes, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001226}
1227
1228static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
1229{
1230 return kvm_arch_ops->get_segment_base(vcpu, seg);
1231}
1232
1233int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address)
1234{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001235 return X86EMUL_CONTINUE;
1236}
1237
1238int emulate_clts(struct kvm_vcpu *vcpu)
1239{
Avi Kivity399badf2007-01-05 16:36:38 -08001240 unsigned long cr0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001241
Rusty Russell707d92f2007-07-17 23:19:08 +10001242 cr0 = vcpu->cr0 & ~X86_CR0_TS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001243 kvm_arch_ops->set_cr0(vcpu, cr0);
1244 return X86EMUL_CONTINUE;
1245}
1246
1247int emulator_get_dr(struct x86_emulate_ctxt* ctxt, int dr, unsigned long *dest)
1248{
1249 struct kvm_vcpu *vcpu = ctxt->vcpu;
1250
1251 switch (dr) {
1252 case 0 ... 3:
1253 *dest = kvm_arch_ops->get_dr(vcpu, dr);
1254 return X86EMUL_CONTINUE;
1255 default:
Rusty Russellf0242472007-08-01 10:48:02 +10001256 pr_unimpl(vcpu, "%s: unexpected dr %u\n", __FUNCTION__, dr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001257 return X86EMUL_UNHANDLEABLE;
1258 }
1259}
1260
1261int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr, unsigned long value)
1262{
1263 unsigned long mask = (ctxt->mode == X86EMUL_MODE_PROT64) ? ~0ULL : ~0U;
1264 int exception;
1265
1266 kvm_arch_ops->set_dr(ctxt->vcpu, dr, value & mask, &exception);
1267 if (exception) {
1268 /* FIXME: better handling */
1269 return X86EMUL_UNHANDLEABLE;
1270 }
1271 return X86EMUL_CONTINUE;
1272}
1273
1274static void report_emulation_failure(struct x86_emulate_ctxt *ctxt)
1275{
1276 static int reported;
1277 u8 opcodes[4];
1278 unsigned long rip = ctxt->vcpu->rip;
1279 unsigned long rip_linear;
1280
1281 rip_linear = rip + get_segment_base(ctxt->vcpu, VCPU_SREG_CS);
1282
1283 if (reported)
1284 return;
1285
Laurent Viviercebff022007-07-30 13:35:24 +03001286 emulator_read_std(rip_linear, (void *)opcodes, 4, ctxt->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001287
1288 printk(KERN_ERR "emulation failed but !mmio_needed?"
1289 " rip %lx %02x %02x %02x %02x\n",
1290 rip, opcodes[0], opcodes[1], opcodes[2], opcodes[3]);
1291 reported = 1;
1292}
1293
1294struct x86_emulate_ops emulate_ops = {
1295 .read_std = emulator_read_std,
1296 .write_std = emulator_write_std,
1297 .read_emulated = emulator_read_emulated,
1298 .write_emulated = emulator_write_emulated,
1299 .cmpxchg_emulated = emulator_cmpxchg_emulated,
1300};
1301
1302int emulate_instruction(struct kvm_vcpu *vcpu,
1303 struct kvm_run *run,
1304 unsigned long cr2,
1305 u16 error_code)
1306{
1307 struct x86_emulate_ctxt emulate_ctxt;
1308 int r;
1309 int cs_db, cs_l;
1310
Avi Kivitye7df56e2007-03-14 15:54:54 +02001311 vcpu->mmio_fault_cr2 = cr2;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001312 kvm_arch_ops->cache_regs(vcpu);
1313
1314 kvm_arch_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
1315
1316 emulate_ctxt.vcpu = vcpu;
1317 emulate_ctxt.eflags = kvm_arch_ops->get_rflags(vcpu);
1318 emulate_ctxt.cr2 = cr2;
1319 emulate_ctxt.mode = (emulate_ctxt.eflags & X86_EFLAGS_VM)
1320 ? X86EMUL_MODE_REAL : cs_l
1321 ? X86EMUL_MODE_PROT64 : cs_db
1322 ? X86EMUL_MODE_PROT32 : X86EMUL_MODE_PROT16;
1323
1324 if (emulate_ctxt.mode == X86EMUL_MODE_PROT64) {
1325 emulate_ctxt.cs_base = 0;
1326 emulate_ctxt.ds_base = 0;
1327 emulate_ctxt.es_base = 0;
1328 emulate_ctxt.ss_base = 0;
1329 } else {
1330 emulate_ctxt.cs_base = get_segment_base(vcpu, VCPU_SREG_CS);
1331 emulate_ctxt.ds_base = get_segment_base(vcpu, VCPU_SREG_DS);
1332 emulate_ctxt.es_base = get_segment_base(vcpu, VCPU_SREG_ES);
1333 emulate_ctxt.ss_base = get_segment_base(vcpu, VCPU_SREG_SS);
1334 }
1335
1336 emulate_ctxt.gs_base = get_segment_base(vcpu, VCPU_SREG_GS);
1337 emulate_ctxt.fs_base = get_segment_base(vcpu, VCPU_SREG_FS);
1338
1339 vcpu->mmio_is_write = 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03001340 vcpu->pio.string = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001341 r = x86_emulate_memop(&emulate_ctxt, &emulate_ops);
Laurent Viviere70669a2007-08-05 10:36:40 +03001342 if (vcpu->pio.string)
1343 return EMULATE_DO_MMIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001344
1345 if ((r || vcpu->mmio_is_write) && run) {
Jeff Dike8fc0d082007-07-17 12:26:59 -04001346 run->exit_reason = KVM_EXIT_MMIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001347 run->mmio.phys_addr = vcpu->mmio_phys_addr;
1348 memcpy(run->mmio.data, vcpu->mmio_data, 8);
1349 run->mmio.len = vcpu->mmio_size;
1350 run->mmio.is_write = vcpu->mmio_is_write;
1351 }
1352
1353 if (r) {
Avi Kivitya4360362007-01-05 16:36:45 -08001354 if (kvm_mmu_unprotect_page_virt(vcpu, cr2))
1355 return EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001356 if (!vcpu->mmio_needed) {
1357 report_emulation_failure(&emulate_ctxt);
1358 return EMULATE_FAIL;
1359 }
1360 return EMULATE_DO_MMIO;
1361 }
1362
1363 kvm_arch_ops->decache_regs(vcpu);
1364 kvm_arch_ops->set_rflags(vcpu, emulate_ctxt.eflags);
1365
Avi Kivity02c83202007-04-29 15:02:17 +03001366 if (vcpu->mmio_is_write) {
1367 vcpu->mmio_needed = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001368 return EMULATE_DO_MMIO;
Avi Kivity02c83202007-04-29 15:02:17 +03001369 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001370
1371 return EMULATE_DONE;
1372}
1373EXPORT_SYMBOL_GPL(emulate_instruction);
1374
Eddie Dongb6958ce2007-07-18 12:15:21 +03001375/*
1376 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1377 */
He, Qingc5ec1532007-09-03 17:07:41 +03001378static void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001379{
1380 DECLARE_WAITQUEUE(wait, current);
1381
1382 add_wait_queue(&vcpu->wq, &wait);
1383
1384 /*
1385 * We will block until either an interrupt or a signal wakes us up
1386 */
He, Qingc5ec1532007-09-03 17:07:41 +03001387 while (!kvm_cpu_has_interrupt(vcpu)
1388 && !signal_pending(current)
1389 && vcpu->mp_state != VCPU_MP_STATE_RUNNABLE
1390 && vcpu->mp_state != VCPU_MP_STATE_SIPI_RECEIVED) {
Eddie Dongb6958ce2007-07-18 12:15:21 +03001391 set_current_state(TASK_INTERRUPTIBLE);
1392 vcpu_put(vcpu);
1393 schedule();
1394 vcpu_load(vcpu);
1395 }
1396
He, Qingc5ec1532007-09-03 17:07:41 +03001397 __set_current_state(TASK_RUNNING);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001398 remove_wait_queue(&vcpu->wq, &wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001399}
1400
Avi Kivityd3bef152007-06-05 15:53:05 +03001401int kvm_emulate_halt(struct kvm_vcpu *vcpu)
1402{
Avi Kivityd3bef152007-06-05 15:53:05 +03001403 ++vcpu->stat.halt_exits;
Eddie Dongb6958ce2007-07-18 12:15:21 +03001404 if (irqchip_in_kernel(vcpu->kvm)) {
He, Qingc5ec1532007-09-03 17:07:41 +03001405 vcpu->mp_state = VCPU_MP_STATE_HALTED;
1406 kvm_vcpu_block(vcpu);
1407 if (vcpu->mp_state != VCPU_MP_STATE_RUNNABLE)
1408 return -EINTR;
Eddie Dongb6958ce2007-07-18 12:15:21 +03001409 return 1;
1410 } else {
1411 vcpu->run->exit_reason = KVM_EXIT_HLT;
1412 return 0;
1413 }
Avi Kivityd3bef152007-06-05 15:53:05 +03001414}
1415EXPORT_SYMBOL_GPL(kvm_emulate_halt);
1416
Avi Kivity270fd9b2007-02-19 14:37:47 +02001417int kvm_hypercall(struct kvm_vcpu *vcpu, struct kvm_run *run)
1418{
1419 unsigned long nr, a0, a1, a2, a3, a4, a5, ret;
1420
Dor Laor9b22bf52007-02-19 16:44:49 +02001421 kvm_arch_ops->cache_regs(vcpu);
Avi Kivity270fd9b2007-02-19 14:37:47 +02001422 ret = -KVM_EINVAL;
1423#ifdef CONFIG_X86_64
1424 if (is_long_mode(vcpu)) {
1425 nr = vcpu->regs[VCPU_REGS_RAX];
1426 a0 = vcpu->regs[VCPU_REGS_RDI];
1427 a1 = vcpu->regs[VCPU_REGS_RSI];
1428 a2 = vcpu->regs[VCPU_REGS_RDX];
1429 a3 = vcpu->regs[VCPU_REGS_RCX];
1430 a4 = vcpu->regs[VCPU_REGS_R8];
1431 a5 = vcpu->regs[VCPU_REGS_R9];
1432 } else
1433#endif
1434 {
1435 nr = vcpu->regs[VCPU_REGS_RBX] & -1u;
1436 a0 = vcpu->regs[VCPU_REGS_RAX] & -1u;
1437 a1 = vcpu->regs[VCPU_REGS_RCX] & -1u;
1438 a2 = vcpu->regs[VCPU_REGS_RDX] & -1u;
1439 a3 = vcpu->regs[VCPU_REGS_RSI] & -1u;
1440 a4 = vcpu->regs[VCPU_REGS_RDI] & -1u;
1441 a5 = vcpu->regs[VCPU_REGS_RBP] & -1u;
1442 }
1443 switch (nr) {
1444 default:
Jeff Dike519ef352007-07-16 15:24:47 -04001445 run->hypercall.nr = nr;
Avi Kivityb4e63f52007-03-04 13:59:30 +02001446 run->hypercall.args[0] = a0;
1447 run->hypercall.args[1] = a1;
1448 run->hypercall.args[2] = a2;
1449 run->hypercall.args[3] = a3;
1450 run->hypercall.args[4] = a4;
1451 run->hypercall.args[5] = a5;
1452 run->hypercall.ret = ret;
1453 run->hypercall.longmode = is_long_mode(vcpu);
1454 kvm_arch_ops->decache_regs(vcpu);
1455 return 0;
Avi Kivity270fd9b2007-02-19 14:37:47 +02001456 }
1457 vcpu->regs[VCPU_REGS_RAX] = ret;
Dor Laor9b22bf52007-02-19 16:44:49 +02001458 kvm_arch_ops->decache_regs(vcpu);
Avi Kivity270fd9b2007-02-19 14:37:47 +02001459 return 1;
1460}
1461EXPORT_SYMBOL_GPL(kvm_hypercall);
1462
Avi Kivity6aa8b732006-12-10 02:21:36 -08001463static u64 mk_cr_64(u64 curr_cr, u32 new_val)
1464{
1465 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
1466}
1467
1468void realmode_lgdt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
1469{
1470 struct descriptor_table dt = { limit, base };
1471
1472 kvm_arch_ops->set_gdt(vcpu, &dt);
1473}
1474
1475void realmode_lidt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
1476{
1477 struct descriptor_table dt = { limit, base };
1478
1479 kvm_arch_ops->set_idt(vcpu, &dt);
1480}
1481
1482void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
1483 unsigned long *rflags)
1484{
1485 lmsw(vcpu, msw);
1486 *rflags = kvm_arch_ops->get_rflags(vcpu);
1487}
1488
1489unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr)
1490{
Anthony Liguori25c4c272007-04-27 09:29:21 +03001491 kvm_arch_ops->decache_cr4_guest_bits(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001492 switch (cr) {
1493 case 0:
1494 return vcpu->cr0;
1495 case 2:
1496 return vcpu->cr2;
1497 case 3:
1498 return vcpu->cr3;
1499 case 4:
1500 return vcpu->cr4;
1501 default:
1502 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __FUNCTION__, cr);
1503 return 0;
1504 }
1505}
1506
1507void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long val,
1508 unsigned long *rflags)
1509{
1510 switch (cr) {
1511 case 0:
1512 set_cr0(vcpu, mk_cr_64(vcpu->cr0, val));
1513 *rflags = kvm_arch_ops->get_rflags(vcpu);
1514 break;
1515 case 2:
1516 vcpu->cr2 = val;
1517 break;
1518 case 3:
1519 set_cr3(vcpu, val);
1520 break;
1521 case 4:
1522 set_cr4(vcpu, mk_cr_64(vcpu->cr4, val));
1523 break;
1524 default:
1525 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __FUNCTION__, cr);
1526 }
1527}
1528
Ingo Molnar102d8322007-02-19 14:37:47 +02001529/*
1530 * Register the para guest with the host:
1531 */
1532static int vcpu_register_para(struct kvm_vcpu *vcpu, gpa_t para_state_gpa)
1533{
1534 struct kvm_vcpu_para_state *para_state;
1535 hpa_t para_state_hpa, hypercall_hpa;
1536 struct page *para_state_page;
1537 unsigned char *hypercall;
1538 gpa_t hypercall_gpa;
1539
1540 printk(KERN_DEBUG "kvm: guest trying to enter paravirtual mode\n");
1541 printk(KERN_DEBUG ".... para_state_gpa: %08Lx\n", para_state_gpa);
1542
1543 /*
1544 * Needs to be page aligned:
1545 */
1546 if (para_state_gpa != PAGE_ALIGN(para_state_gpa))
1547 goto err_gp;
1548
1549 para_state_hpa = gpa_to_hpa(vcpu, para_state_gpa);
1550 printk(KERN_DEBUG ".... para_state_hpa: %08Lx\n", para_state_hpa);
1551 if (is_error_hpa(para_state_hpa))
1552 goto err_gp;
1553
Uri Lublinab51a432007-02-21 18:25:21 +02001554 mark_page_dirty(vcpu->kvm, para_state_gpa >> PAGE_SHIFT);
Ingo Molnar102d8322007-02-19 14:37:47 +02001555 para_state_page = pfn_to_page(para_state_hpa >> PAGE_SHIFT);
Shaohua Life551882007-07-23 14:51:39 +08001556 para_state = kmap(para_state_page);
Ingo Molnar102d8322007-02-19 14:37:47 +02001557
1558 printk(KERN_DEBUG ".... guest version: %d\n", para_state->guest_version);
1559 printk(KERN_DEBUG ".... size: %d\n", para_state->size);
1560
1561 para_state->host_version = KVM_PARA_API_VERSION;
1562 /*
1563 * We cannot support guests that try to register themselves
1564 * with a newer API version than the host supports:
1565 */
1566 if (para_state->guest_version > KVM_PARA_API_VERSION) {
1567 para_state->ret = -KVM_EINVAL;
1568 goto err_kunmap_skip;
1569 }
1570
1571 hypercall_gpa = para_state->hypercall_gpa;
1572 hypercall_hpa = gpa_to_hpa(vcpu, hypercall_gpa);
1573 printk(KERN_DEBUG ".... hypercall_hpa: %08Lx\n", hypercall_hpa);
1574 if (is_error_hpa(hypercall_hpa)) {
1575 para_state->ret = -KVM_EINVAL;
1576 goto err_kunmap_skip;
1577 }
1578
1579 printk(KERN_DEBUG "kvm: para guest successfully registered.\n");
1580 vcpu->para_state_page = para_state_page;
1581 vcpu->para_state_gpa = para_state_gpa;
1582 vcpu->hypercall_gpa = hypercall_gpa;
1583
Uri Lublinab51a432007-02-21 18:25:21 +02001584 mark_page_dirty(vcpu->kvm, hypercall_gpa >> PAGE_SHIFT);
Ingo Molnar102d8322007-02-19 14:37:47 +02001585 hypercall = kmap_atomic(pfn_to_page(hypercall_hpa >> PAGE_SHIFT),
1586 KM_USER1) + (hypercall_hpa & ~PAGE_MASK);
1587 kvm_arch_ops->patch_hypercall(vcpu, hypercall);
1588 kunmap_atomic(hypercall, KM_USER1);
1589
1590 para_state->ret = 0;
1591err_kunmap_skip:
Shaohua Life551882007-07-23 14:51:39 +08001592 kunmap(para_state_page);
Ingo Molnar102d8322007-02-19 14:37:47 +02001593 return 0;
1594err_gp:
1595 return 1;
1596}
1597
Avi Kivity3bab1f52006-12-29 16:49:48 -08001598int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
1599{
1600 u64 data;
1601
1602 switch (msr) {
1603 case 0xc0010010: /* SYSCFG */
1604 case 0xc0010015: /* HWCR */
1605 case MSR_IA32_PLATFORM_ID:
1606 case MSR_IA32_P5_MC_ADDR:
1607 case MSR_IA32_P5_MC_TYPE:
1608 case MSR_IA32_MC0_CTL:
1609 case MSR_IA32_MCG_STATUS:
1610 case MSR_IA32_MCG_CAP:
1611 case MSR_IA32_MC0_MISC:
1612 case MSR_IA32_MC0_MISC+4:
1613 case MSR_IA32_MC0_MISC+8:
1614 case MSR_IA32_MC0_MISC+12:
1615 case MSR_IA32_MC0_MISC+16:
1616 case MSR_IA32_UCODE_REV:
Avi Kivitya8d13ea2006-12-29 16:49:51 -08001617 case MSR_IA32_PERF_STATUS:
Matthew Gregan2dc70942007-05-06 10:59:46 +03001618 case MSR_IA32_EBL_CR_POWERON:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001619 /* MTRR registers */
1620 case 0xfe:
1621 case 0x200 ... 0x2ff:
1622 data = 0;
1623 break;
Avi Kivitya8d13ea2006-12-29 16:49:51 -08001624 case 0xcd: /* fsb frequency */
1625 data = 3;
1626 break;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001627 case MSR_IA32_APICBASE:
Eddie Dong7017fc32007-07-18 11:34:57 +03001628 data = kvm_get_apic_base(vcpu);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001629 break;
Avi Kivity6f00e682007-01-26 00:56:40 -08001630 case MSR_IA32_MISC_ENABLE:
1631 data = vcpu->ia32_misc_enable_msr;
1632 break;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001633#ifdef CONFIG_X86_64
1634 case MSR_EFER:
1635 data = vcpu->shadow_efer;
1636 break;
1637#endif
1638 default:
Rusty Russellf0242472007-08-01 10:48:02 +10001639 pr_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001640 return 1;
1641 }
1642 *pdata = data;
1643 return 0;
1644}
1645EXPORT_SYMBOL_GPL(kvm_get_msr_common);
1646
Avi Kivity6aa8b732006-12-10 02:21:36 -08001647/*
1648 * Reads an msr value (of 'msr_index') into 'pdata'.
1649 * Returns 0 on success, non-0 otherwise.
1650 * Assumes vcpu_load() was already called.
1651 */
Avi Kivity35f3f282007-07-17 14:20:30 +03001652int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001653{
1654 return kvm_arch_ops->get_msr(vcpu, msr_index, pdata);
1655}
1656
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001657#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001658
Avi Kivity3bab1f52006-12-29 16:49:48 -08001659static void set_efer(struct kvm_vcpu *vcpu, u64 efer)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001660{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001661 if (efer & EFER_RESERVED_BITS) {
1662 printk(KERN_DEBUG "set_efer: 0x%llx #GP, reserved bits\n",
1663 efer);
1664 inject_gp(vcpu);
1665 return;
1666 }
1667
1668 if (is_paging(vcpu)
1669 && (vcpu->shadow_efer & EFER_LME) != (efer & EFER_LME)) {
1670 printk(KERN_DEBUG "set_efer: #GP, change LME while paging\n");
1671 inject_gp(vcpu);
1672 return;
1673 }
1674
Avi Kivity7725f0b2006-12-13 00:34:01 -08001675 kvm_arch_ops->set_efer(vcpu, efer);
1676
Avi Kivity6aa8b732006-12-10 02:21:36 -08001677 efer &= ~EFER_LMA;
1678 efer |= vcpu->shadow_efer & EFER_LMA;
1679
1680 vcpu->shadow_efer = efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001681}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001682
1683#endif
1684
Avi Kivity3bab1f52006-12-29 16:49:48 -08001685int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1686{
1687 switch (msr) {
1688#ifdef CONFIG_X86_64
1689 case MSR_EFER:
1690 set_efer(vcpu, data);
1691 break;
1692#endif
1693 case MSR_IA32_MC0_STATUS:
Rusty Russellf0242472007-08-01 10:48:02 +10001694 pr_unimpl(vcpu, "%s: MSR_IA32_MC0_STATUS 0x%llx, nop\n",
Avi Kivity3bab1f52006-12-29 16:49:48 -08001695 __FUNCTION__, data);
1696 break;
Sergey Kiselev0e5bf0d2007-03-22 14:06:18 +02001697 case MSR_IA32_MCG_STATUS:
Rusty Russellf0242472007-08-01 10:48:02 +10001698 pr_unimpl(vcpu, "%s: MSR_IA32_MCG_STATUS 0x%llx, nop\n",
Sergey Kiselev0e5bf0d2007-03-22 14:06:18 +02001699 __FUNCTION__, data);
1700 break;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001701 case MSR_IA32_UCODE_REV:
1702 case MSR_IA32_UCODE_WRITE:
1703 case 0x200 ... 0x2ff: /* MTRRs */
1704 break;
1705 case MSR_IA32_APICBASE:
Eddie Dong7017fc32007-07-18 11:34:57 +03001706 kvm_set_apic_base(vcpu, data);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001707 break;
Avi Kivity6f00e682007-01-26 00:56:40 -08001708 case MSR_IA32_MISC_ENABLE:
1709 vcpu->ia32_misc_enable_msr = data;
1710 break;
Ingo Molnar102d8322007-02-19 14:37:47 +02001711 /*
1712 * This is the 'probe whether the host is KVM' logic:
1713 */
1714 case MSR_KVM_API_MAGIC:
1715 return vcpu_register_para(vcpu, data);
1716
Avi Kivity3bab1f52006-12-29 16:49:48 -08001717 default:
Rusty Russellf0242472007-08-01 10:48:02 +10001718 pr_unimpl(vcpu, "unhandled wrmsr: 0x%x\n", msr);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001719 return 1;
1720 }
1721 return 0;
1722}
1723EXPORT_SYMBOL_GPL(kvm_set_msr_common);
1724
Avi Kivity6aa8b732006-12-10 02:21:36 -08001725/*
1726 * Writes msr value into into the appropriate "register".
1727 * Returns 0 on success, non-0 otherwise.
1728 * Assumes vcpu_load() was already called.
1729 */
Avi Kivity35f3f282007-07-17 14:20:30 +03001730int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001731{
1732 return kvm_arch_ops->set_msr(vcpu, msr_index, data);
1733}
1734
1735void kvm_resched(struct kvm_vcpu *vcpu)
1736{
Yaozu Dong3fca0362007-04-25 16:49:19 +03001737 if (!need_resched())
1738 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001739 cond_resched();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001740}
1741EXPORT_SYMBOL_GPL(kvm_resched);
1742
Avi Kivity06465c52007-02-28 20:46:53 +02001743void kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
1744{
1745 int i;
1746 u32 function;
1747 struct kvm_cpuid_entry *e, *best;
1748
1749 kvm_arch_ops->cache_regs(vcpu);
1750 function = vcpu->regs[VCPU_REGS_RAX];
1751 vcpu->regs[VCPU_REGS_RAX] = 0;
1752 vcpu->regs[VCPU_REGS_RBX] = 0;
1753 vcpu->regs[VCPU_REGS_RCX] = 0;
1754 vcpu->regs[VCPU_REGS_RDX] = 0;
1755 best = NULL;
1756 for (i = 0; i < vcpu->cpuid_nent; ++i) {
1757 e = &vcpu->cpuid_entries[i];
1758 if (e->function == function) {
1759 best = e;
1760 break;
1761 }
1762 /*
1763 * Both basic or both extended?
1764 */
1765 if (((e->function ^ function) & 0x80000000) == 0)
1766 if (!best || e->function > best->function)
1767 best = e;
1768 }
1769 if (best) {
1770 vcpu->regs[VCPU_REGS_RAX] = best->eax;
1771 vcpu->regs[VCPU_REGS_RBX] = best->ebx;
1772 vcpu->regs[VCPU_REGS_RCX] = best->ecx;
1773 vcpu->regs[VCPU_REGS_RDX] = best->edx;
1774 }
1775 kvm_arch_ops->decache_regs(vcpu);
1776 kvm_arch_ops->skip_emulated_instruction(vcpu);
1777}
1778EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);
1779
Avi Kivity039576c2007-03-20 12:46:50 +02001780static int pio_copy_data(struct kvm_vcpu *vcpu)
Avi Kivity46fc1472007-02-22 19:39:30 +02001781{
Avi Kivity039576c2007-03-20 12:46:50 +02001782 void *p = vcpu->pio_data;
1783 void *q;
1784 unsigned bytes;
1785 int nr_pages = vcpu->pio.guest_pages[1] ? 2 : 1;
1786
Avi Kivity039576c2007-03-20 12:46:50 +02001787 q = vmap(vcpu->pio.guest_pages, nr_pages, VM_READ|VM_WRITE,
1788 PAGE_KERNEL);
1789 if (!q) {
Avi Kivity039576c2007-03-20 12:46:50 +02001790 free_pio_guest_pages(vcpu);
1791 return -ENOMEM;
1792 }
1793 q += vcpu->pio.guest_page_offset;
1794 bytes = vcpu->pio.size * vcpu->pio.cur_count;
1795 if (vcpu->pio.in)
1796 memcpy(q, p, bytes);
1797 else
1798 memcpy(p, q, bytes);
1799 q -= vcpu->pio.guest_page_offset;
1800 vunmap(q);
Avi Kivity039576c2007-03-20 12:46:50 +02001801 free_pio_guest_pages(vcpu);
1802 return 0;
1803}
1804
1805static int complete_pio(struct kvm_vcpu *vcpu)
1806{
1807 struct kvm_pio_request *io = &vcpu->pio;
Avi Kivity46fc1472007-02-22 19:39:30 +02001808 long delta;
Avi Kivity039576c2007-03-20 12:46:50 +02001809 int r;
Avi Kivity46fc1472007-02-22 19:39:30 +02001810
1811 kvm_arch_ops->cache_regs(vcpu);
1812
1813 if (!io->string) {
Avi Kivity039576c2007-03-20 12:46:50 +02001814 if (io->in)
1815 memcpy(&vcpu->regs[VCPU_REGS_RAX], vcpu->pio_data,
Avi Kivity46fc1472007-02-22 19:39:30 +02001816 io->size);
1817 } else {
Avi Kivity039576c2007-03-20 12:46:50 +02001818 if (io->in) {
1819 r = pio_copy_data(vcpu);
1820 if (r) {
1821 kvm_arch_ops->cache_regs(vcpu);
1822 return r;
1823 }
1824 }
1825
Avi Kivity46fc1472007-02-22 19:39:30 +02001826 delta = 1;
1827 if (io->rep) {
Avi Kivity039576c2007-03-20 12:46:50 +02001828 delta *= io->cur_count;
Avi Kivity46fc1472007-02-22 19:39:30 +02001829 /*
1830 * The size of the register should really depend on
1831 * current address size.
1832 */
1833 vcpu->regs[VCPU_REGS_RCX] -= delta;
1834 }
Avi Kivity039576c2007-03-20 12:46:50 +02001835 if (io->down)
Avi Kivity46fc1472007-02-22 19:39:30 +02001836 delta = -delta;
1837 delta *= io->size;
Avi Kivity039576c2007-03-20 12:46:50 +02001838 if (io->in)
Avi Kivity46fc1472007-02-22 19:39:30 +02001839 vcpu->regs[VCPU_REGS_RDI] += delta;
1840 else
1841 vcpu->regs[VCPU_REGS_RSI] += delta;
1842 }
1843
Avi Kivity46fc1472007-02-22 19:39:30 +02001844 kvm_arch_ops->decache_regs(vcpu);
1845
Avi Kivity039576c2007-03-20 12:46:50 +02001846 io->count -= io->cur_count;
1847 io->cur_count = 0;
1848
1849 if (!io->count)
1850 kvm_arch_ops->skip_emulated_instruction(vcpu);
1851 return 0;
Avi Kivity46fc1472007-02-22 19:39:30 +02001852}
1853
Eddie Dong65619eb2007-07-17 11:52:33 +03001854static void kernel_pio(struct kvm_io_device *pio_dev,
1855 struct kvm_vcpu *vcpu,
1856 void *pd)
Eddie Dong74906342007-06-19 18:05:03 +03001857{
1858 /* TODO: String I/O for in kernel device */
1859
Eddie Dong9cf98822007-07-22 10:36:31 +03001860 mutex_lock(&vcpu->kvm->lock);
Eddie Dong74906342007-06-19 18:05:03 +03001861 if (vcpu->pio.in)
1862 kvm_iodevice_read(pio_dev, vcpu->pio.port,
1863 vcpu->pio.size,
Eddie Dong65619eb2007-07-17 11:52:33 +03001864 pd);
Eddie Dong74906342007-06-19 18:05:03 +03001865 else
1866 kvm_iodevice_write(pio_dev, vcpu->pio.port,
1867 vcpu->pio.size,
Eddie Dong65619eb2007-07-17 11:52:33 +03001868 pd);
Eddie Dong9cf98822007-07-22 10:36:31 +03001869 mutex_unlock(&vcpu->kvm->lock);
Eddie Dong65619eb2007-07-17 11:52:33 +03001870}
1871
1872static void pio_string_write(struct kvm_io_device *pio_dev,
1873 struct kvm_vcpu *vcpu)
1874{
1875 struct kvm_pio_request *io = &vcpu->pio;
1876 void *pd = vcpu->pio_data;
1877 int i;
1878
Eddie Dong9cf98822007-07-22 10:36:31 +03001879 mutex_lock(&vcpu->kvm->lock);
Eddie Dong65619eb2007-07-17 11:52:33 +03001880 for (i = 0; i < io->cur_count; i++) {
1881 kvm_iodevice_write(pio_dev, io->port,
1882 io->size,
1883 pd);
1884 pd += io->size;
1885 }
Eddie Dong9cf98822007-07-22 10:36:31 +03001886 mutex_unlock(&vcpu->kvm->lock);
Eddie Dong74906342007-06-19 18:05:03 +03001887}
1888
Laurent Vivier3090dd72007-08-05 10:43:32 +03001889int kvm_emulate_pio (struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
1890 int size, unsigned port)
1891{
1892 struct kvm_io_device *pio_dev;
1893
1894 vcpu->run->exit_reason = KVM_EXIT_IO;
1895 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
1896 vcpu->run->io.size = vcpu->pio.size = size;
1897 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
1898 vcpu->run->io.count = vcpu->pio.count = vcpu->pio.cur_count = 1;
1899 vcpu->run->io.port = vcpu->pio.port = port;
1900 vcpu->pio.in = in;
1901 vcpu->pio.string = 0;
1902 vcpu->pio.down = 0;
1903 vcpu->pio.guest_page_offset = 0;
1904 vcpu->pio.rep = 0;
1905
1906 kvm_arch_ops->cache_regs(vcpu);
1907 memcpy(vcpu->pio_data, &vcpu->regs[VCPU_REGS_RAX], 4);
1908 kvm_arch_ops->decache_regs(vcpu);
1909
1910 pio_dev = vcpu_find_pio_dev(vcpu, port);
1911 if (pio_dev) {
1912 kernel_pio(pio_dev, vcpu, vcpu->pio_data);
1913 complete_pio(vcpu);
1914 return 1;
1915 }
1916 return 0;
1917}
1918EXPORT_SYMBOL_GPL(kvm_emulate_pio);
1919
1920int kvm_emulate_pio_string(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
1921 int size, unsigned long count, int down,
Avi Kivity039576c2007-03-20 12:46:50 +02001922 gva_t address, int rep, unsigned port)
1923{
1924 unsigned now, in_page;
Eddie Dong65619eb2007-07-17 11:52:33 +03001925 int i, ret = 0;
Avi Kivity039576c2007-03-20 12:46:50 +02001926 int nr_pages = 1;
1927 struct page *page;
Eddie Dong74906342007-06-19 18:05:03 +03001928 struct kvm_io_device *pio_dev;
Avi Kivity039576c2007-03-20 12:46:50 +02001929
1930 vcpu->run->exit_reason = KVM_EXIT_IO;
1931 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
Laurent Vivier3090dd72007-08-05 10:43:32 +03001932 vcpu->run->io.size = vcpu->pio.size = size;
Avi Kivity039576c2007-03-20 12:46:50 +02001933 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
Laurent Vivier3090dd72007-08-05 10:43:32 +03001934 vcpu->run->io.count = vcpu->pio.count = vcpu->pio.cur_count = count;
1935 vcpu->run->io.port = vcpu->pio.port = port;
Avi Kivity039576c2007-03-20 12:46:50 +02001936 vcpu->pio.in = in;
Laurent Vivier3090dd72007-08-05 10:43:32 +03001937 vcpu->pio.string = 1;
Avi Kivity039576c2007-03-20 12:46:50 +02001938 vcpu->pio.down = down;
1939 vcpu->pio.guest_page_offset = offset_in_page(address);
1940 vcpu->pio.rep = rep;
1941
Avi Kivity039576c2007-03-20 12:46:50 +02001942 if (!count) {
1943 kvm_arch_ops->skip_emulated_instruction(vcpu);
1944 return 1;
1945 }
1946
Avi Kivity039576c2007-03-20 12:46:50 +02001947 if (!down)
1948 in_page = PAGE_SIZE - offset_in_page(address);
1949 else
1950 in_page = offset_in_page(address) + size;
1951 now = min(count, (unsigned long)in_page / size);
1952 if (!now) {
1953 /*
1954 * String I/O straddles page boundary. Pin two guest pages
1955 * so that we satisfy atomicity constraints. Do just one
1956 * transaction to avoid complexity.
1957 */
1958 nr_pages = 2;
1959 now = 1;
1960 }
1961 if (down) {
1962 /*
1963 * String I/O in reverse. Yuck. Kill the guest, fix later.
1964 */
Rusty Russellf0242472007-08-01 10:48:02 +10001965 pr_unimpl(vcpu, "guest string pio down\n");
Avi Kivity039576c2007-03-20 12:46:50 +02001966 inject_gp(vcpu);
1967 return 1;
1968 }
1969 vcpu->run->io.count = now;
1970 vcpu->pio.cur_count = now;
1971
1972 for (i = 0; i < nr_pages; ++i) {
Shaohua Li11ec2802007-07-23 14:51:37 +08001973 mutex_lock(&vcpu->kvm->lock);
Avi Kivity039576c2007-03-20 12:46:50 +02001974 page = gva_to_page(vcpu, address + i * PAGE_SIZE);
1975 if (page)
1976 get_page(page);
1977 vcpu->pio.guest_pages[i] = page;
Shaohua Li11ec2802007-07-23 14:51:37 +08001978 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity039576c2007-03-20 12:46:50 +02001979 if (!page) {
1980 inject_gp(vcpu);
1981 free_pio_guest_pages(vcpu);
1982 return 1;
1983 }
1984 }
1985
Laurent Vivier3090dd72007-08-05 10:43:32 +03001986 pio_dev = vcpu_find_pio_dev(vcpu, port);
Eddie Dong65619eb2007-07-17 11:52:33 +03001987 if (!vcpu->pio.in) {
1988 /* string PIO write */
1989 ret = pio_copy_data(vcpu);
1990 if (ret >= 0 && pio_dev) {
1991 pio_string_write(pio_dev, vcpu);
1992 complete_pio(vcpu);
1993 if (vcpu->pio.count == 0)
1994 ret = 1;
1995 }
1996 } else if (pio_dev)
Rusty Russellf0242472007-08-01 10:48:02 +10001997 pr_unimpl(vcpu, "no string pio read support yet, "
Eddie Dong65619eb2007-07-17 11:52:33 +03001998 "port %x size %d count %ld\n",
1999 port, size, count);
2000
2001 return ret;
Avi Kivity039576c2007-03-20 12:46:50 +02002002}
Laurent Vivier3090dd72007-08-05 10:43:32 +03002003EXPORT_SYMBOL_GPL(kvm_emulate_pio_string);
Avi Kivity039576c2007-03-20 12:46:50 +02002004
Avi Kivitybccf2152007-02-21 18:04:26 +02002005static int kvm_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002006{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002007 int r;
Avi Kivity1961d272007-03-05 19:46:05 +02002008 sigset_t sigsaved;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002009
Avi Kivitybccf2152007-02-21 18:04:26 +02002010 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002011
He, Qingc5ec1532007-09-03 17:07:41 +03002012 if (unlikely(vcpu->mp_state == VCPU_MP_STATE_UNINITIALIZED)) {
2013 kvm_vcpu_block(vcpu);
2014 vcpu_put(vcpu);
2015 return -EAGAIN;
2016 }
2017
Avi Kivity1961d272007-03-05 19:46:05 +02002018 if (vcpu->sigset_active)
2019 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
2020
Dor Laor54810342007-02-12 00:54:39 -08002021 /* re-sync apic's tpr */
He, Qing5cd4f6f2007-08-30 17:04:26 +08002022 if (!irqchip_in_kernel(vcpu->kvm))
2023 set_cr8(vcpu, kvm_run->cr8);
Dor Laor54810342007-02-12 00:54:39 -08002024
Avi Kivity02c83202007-04-29 15:02:17 +03002025 if (vcpu->pio.cur_count) {
2026 r = complete_pio(vcpu);
2027 if (r)
2028 goto out;
2029 }
2030
2031 if (vcpu->mmio_needed) {
2032 memcpy(vcpu->mmio_data, kvm_run->mmio.data, 8);
2033 vcpu->mmio_read_completed = 1;
2034 vcpu->mmio_needed = 0;
2035 r = emulate_instruction(vcpu, kvm_run,
2036 vcpu->mmio_fault_cr2, 0);
2037 if (r == EMULATE_DO_MMIO) {
2038 /*
2039 * Read-modify-write. Back to userspace.
2040 */
Avi Kivity02c83202007-04-29 15:02:17 +03002041 r = 0;
2042 goto out;
Avi Kivity46fc1472007-02-22 19:39:30 +02002043 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002044 }
2045
Avi Kivity8eb7d332007-03-04 14:17:08 +02002046 if (kvm_run->exit_reason == KVM_EXIT_HYPERCALL) {
Avi Kivityb4e63f52007-03-04 13:59:30 +02002047 kvm_arch_ops->cache_regs(vcpu);
2048 vcpu->regs[VCPU_REGS_RAX] = kvm_run->hypercall.ret;
2049 kvm_arch_ops->decache_regs(vcpu);
2050 }
2051
Avi Kivity6aa8b732006-12-10 02:21:36 -08002052 r = kvm_arch_ops->run(vcpu, kvm_run);
2053
Avi Kivity039576c2007-03-20 12:46:50 +02002054out:
Avi Kivity1961d272007-03-05 19:46:05 +02002055 if (vcpu->sigset_active)
2056 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
2057
Avi Kivity6aa8b732006-12-10 02:21:36 -08002058 vcpu_put(vcpu);
2059 return r;
2060}
2061
Avi Kivitybccf2152007-02-21 18:04:26 +02002062static int kvm_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu,
2063 struct kvm_regs *regs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002064{
Avi Kivitybccf2152007-02-21 18:04:26 +02002065 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002066
2067 kvm_arch_ops->cache_regs(vcpu);
2068
2069 regs->rax = vcpu->regs[VCPU_REGS_RAX];
2070 regs->rbx = vcpu->regs[VCPU_REGS_RBX];
2071 regs->rcx = vcpu->regs[VCPU_REGS_RCX];
2072 regs->rdx = vcpu->regs[VCPU_REGS_RDX];
2073 regs->rsi = vcpu->regs[VCPU_REGS_RSI];
2074 regs->rdi = vcpu->regs[VCPU_REGS_RDI];
2075 regs->rsp = vcpu->regs[VCPU_REGS_RSP];
2076 regs->rbp = vcpu->regs[VCPU_REGS_RBP];
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002077#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002078 regs->r8 = vcpu->regs[VCPU_REGS_R8];
2079 regs->r9 = vcpu->regs[VCPU_REGS_R9];
2080 regs->r10 = vcpu->regs[VCPU_REGS_R10];
2081 regs->r11 = vcpu->regs[VCPU_REGS_R11];
2082 regs->r12 = vcpu->regs[VCPU_REGS_R12];
2083 regs->r13 = vcpu->regs[VCPU_REGS_R13];
2084 regs->r14 = vcpu->regs[VCPU_REGS_R14];
2085 regs->r15 = vcpu->regs[VCPU_REGS_R15];
2086#endif
2087
2088 regs->rip = vcpu->rip;
2089 regs->rflags = kvm_arch_ops->get_rflags(vcpu);
2090
2091 /*
2092 * Don't leak debug flags in case they were set for guest debugging
2093 */
2094 if (vcpu->guest_debug.enabled && vcpu->guest_debug.singlestep)
2095 regs->rflags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
2096
2097 vcpu_put(vcpu);
2098
2099 return 0;
2100}
2101
Avi Kivitybccf2152007-02-21 18:04:26 +02002102static int kvm_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu,
2103 struct kvm_regs *regs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002104{
Avi Kivitybccf2152007-02-21 18:04:26 +02002105 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002106
2107 vcpu->regs[VCPU_REGS_RAX] = regs->rax;
2108 vcpu->regs[VCPU_REGS_RBX] = regs->rbx;
2109 vcpu->regs[VCPU_REGS_RCX] = regs->rcx;
2110 vcpu->regs[VCPU_REGS_RDX] = regs->rdx;
2111 vcpu->regs[VCPU_REGS_RSI] = regs->rsi;
2112 vcpu->regs[VCPU_REGS_RDI] = regs->rdi;
2113 vcpu->regs[VCPU_REGS_RSP] = regs->rsp;
2114 vcpu->regs[VCPU_REGS_RBP] = regs->rbp;
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002115#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002116 vcpu->regs[VCPU_REGS_R8] = regs->r8;
2117 vcpu->regs[VCPU_REGS_R9] = regs->r9;
2118 vcpu->regs[VCPU_REGS_R10] = regs->r10;
2119 vcpu->regs[VCPU_REGS_R11] = regs->r11;
2120 vcpu->regs[VCPU_REGS_R12] = regs->r12;
2121 vcpu->regs[VCPU_REGS_R13] = regs->r13;
2122 vcpu->regs[VCPU_REGS_R14] = regs->r14;
2123 vcpu->regs[VCPU_REGS_R15] = regs->r15;
2124#endif
2125
2126 vcpu->rip = regs->rip;
2127 kvm_arch_ops->set_rflags(vcpu, regs->rflags);
2128
2129 kvm_arch_ops->decache_regs(vcpu);
2130
2131 vcpu_put(vcpu);
2132
2133 return 0;
2134}
2135
2136static void get_segment(struct kvm_vcpu *vcpu,
2137 struct kvm_segment *var, int seg)
2138{
2139 return kvm_arch_ops->get_segment(vcpu, var, seg);
2140}
2141
Avi Kivitybccf2152007-02-21 18:04:26 +02002142static int kvm_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
2143 struct kvm_sregs *sregs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002144{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002145 struct descriptor_table dt;
Eddie Dong2a8067f2007-08-06 16:29:07 +03002146 int pending_vec;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002147
Avi Kivitybccf2152007-02-21 18:04:26 +02002148 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002149
2150 get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
2151 get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
2152 get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
2153 get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
2154 get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
2155 get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
2156
2157 get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
2158 get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
2159
2160 kvm_arch_ops->get_idt(vcpu, &dt);
2161 sregs->idt.limit = dt.limit;
2162 sregs->idt.base = dt.base;
2163 kvm_arch_ops->get_gdt(vcpu, &dt);
2164 sregs->gdt.limit = dt.limit;
2165 sregs->gdt.base = dt.base;
2166
Anthony Liguori25c4c272007-04-27 09:29:21 +03002167 kvm_arch_ops->decache_cr4_guest_bits(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002168 sregs->cr0 = vcpu->cr0;
2169 sregs->cr2 = vcpu->cr2;
2170 sregs->cr3 = vcpu->cr3;
2171 sregs->cr4 = vcpu->cr4;
Eddie Dong7017fc32007-07-18 11:34:57 +03002172 sregs->cr8 = get_cr8(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002173 sregs->efer = vcpu->shadow_efer;
Eddie Dong7017fc32007-07-18 11:34:57 +03002174 sregs->apic_base = kvm_get_apic_base(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002175
Eddie Dong2a8067f2007-08-06 16:29:07 +03002176 if (irqchip_in_kernel(vcpu->kvm)) {
He, Qingc52fb352007-08-02 14:03:07 +03002177 memset(sregs->interrupt_bitmap, 0,
2178 sizeof sregs->interrupt_bitmap);
Eddie Dong2a8067f2007-08-06 16:29:07 +03002179 pending_vec = kvm_arch_ops->get_irq(vcpu);
2180 if (pending_vec >= 0)
2181 set_bit(pending_vec, (unsigned long *)sregs->interrupt_bitmap);
2182 } else
He, Qingc52fb352007-08-02 14:03:07 +03002183 memcpy(sregs->interrupt_bitmap, vcpu->irq_pending,
2184 sizeof sregs->interrupt_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002185
2186 vcpu_put(vcpu);
2187
2188 return 0;
2189}
2190
2191static void set_segment(struct kvm_vcpu *vcpu,
2192 struct kvm_segment *var, int seg)
2193{
2194 return kvm_arch_ops->set_segment(vcpu, var, seg);
2195}
2196
Avi Kivitybccf2152007-02-21 18:04:26 +02002197static int kvm_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
2198 struct kvm_sregs *sregs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002199{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002200 int mmu_reset_needed = 0;
Eddie Dong2a8067f2007-08-06 16:29:07 +03002201 int i, pending_vec, max_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002202 struct descriptor_table dt;
2203
Avi Kivitybccf2152007-02-21 18:04:26 +02002204 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002205
Avi Kivity6aa8b732006-12-10 02:21:36 -08002206 dt.limit = sregs->idt.limit;
2207 dt.base = sregs->idt.base;
2208 kvm_arch_ops->set_idt(vcpu, &dt);
2209 dt.limit = sregs->gdt.limit;
2210 dt.base = sregs->gdt.base;
2211 kvm_arch_ops->set_gdt(vcpu, &dt);
2212
2213 vcpu->cr2 = sregs->cr2;
2214 mmu_reset_needed |= vcpu->cr3 != sregs->cr3;
2215 vcpu->cr3 = sregs->cr3;
2216
Eddie Dong7017fc32007-07-18 11:34:57 +03002217 set_cr8(vcpu, sregs->cr8);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002218
2219 mmu_reset_needed |= vcpu->shadow_efer != sregs->efer;
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002220#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002221 kvm_arch_ops->set_efer(vcpu, sregs->efer);
2222#endif
Eddie Dong7017fc32007-07-18 11:34:57 +03002223 kvm_set_apic_base(vcpu, sregs->apic_base);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002224
Anthony Liguori25c4c272007-04-27 09:29:21 +03002225 kvm_arch_ops->decache_cr4_guest_bits(vcpu);
Avi Kivity399badf2007-01-05 16:36:38 -08002226
Avi Kivity6aa8b732006-12-10 02:21:36 -08002227 mmu_reset_needed |= vcpu->cr0 != sregs->cr0;
Avi Kivityf6528b02007-03-20 18:44:51 +02002228 kvm_arch_ops->set_cr0(vcpu, sregs->cr0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002229
2230 mmu_reset_needed |= vcpu->cr4 != sregs->cr4;
2231 kvm_arch_ops->set_cr4(vcpu, sregs->cr4);
Avi Kivity1b0973b2007-01-05 16:36:41 -08002232 if (!is_long_mode(vcpu) && is_pae(vcpu))
2233 load_pdptrs(vcpu, vcpu->cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002234
2235 if (mmu_reset_needed)
2236 kvm_mmu_reset_context(vcpu);
2237
He, Qingc52fb352007-08-02 14:03:07 +03002238 if (!irqchip_in_kernel(vcpu->kvm)) {
2239 memcpy(vcpu->irq_pending, sregs->interrupt_bitmap,
2240 sizeof vcpu->irq_pending);
2241 vcpu->irq_summary = 0;
2242 for (i = 0; i < ARRAY_SIZE(vcpu->irq_pending); ++i)
2243 if (vcpu->irq_pending[i])
2244 __set_bit(i, &vcpu->irq_summary);
Eddie Dong2a8067f2007-08-06 16:29:07 +03002245 } else {
2246 max_bits = (sizeof sregs->interrupt_bitmap) << 3;
2247 pending_vec = find_first_bit(
2248 (const unsigned long *)sregs->interrupt_bitmap,
2249 max_bits);
2250 /* Only pending external irq is handled here */
2251 if (pending_vec < max_bits) {
2252 kvm_arch_ops->set_irq(vcpu, pending_vec);
2253 printk("Set back pending irq %d\n", pending_vec);
2254 }
He, Qingc52fb352007-08-02 14:03:07 +03002255 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002256
Avi Kivity024aa1c2007-03-21 13:44:58 +02002257 set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
2258 set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
2259 set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
2260 set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
2261 set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
2262 set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
2263
2264 set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
2265 set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
2266
Avi Kivity6aa8b732006-12-10 02:21:36 -08002267 vcpu_put(vcpu);
2268
2269 return 0;
2270}
2271
2272/*
2273 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
2274 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
Michael Riepebf591b22006-12-22 01:05:36 -08002275 *
2276 * This list is modified at module load time to reflect the
2277 * capabilities of the host cpu.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002278 */
2279static u32 msrs_to_save[] = {
2280 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
2281 MSR_K6_STAR,
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002282#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002283 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
2284#endif
2285 MSR_IA32_TIME_STAMP_COUNTER,
2286};
2287
Michael Riepebf591b22006-12-22 01:05:36 -08002288static unsigned num_msrs_to_save;
2289
Avi Kivity6f00e682007-01-26 00:56:40 -08002290static u32 emulated_msrs[] = {
2291 MSR_IA32_MISC_ENABLE,
2292};
2293
Michael Riepebf591b22006-12-22 01:05:36 -08002294static __init void kvm_init_msr_list(void)
2295{
2296 u32 dummy[2];
2297 unsigned i, j;
2298
2299 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
2300 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
2301 continue;
2302 if (j < i)
2303 msrs_to_save[j] = msrs_to_save[i];
2304 j++;
2305 }
2306 num_msrs_to_save = j;
2307}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002308
2309/*
2310 * Adapt set_msr() to msr_io()'s calling convention
2311 */
2312static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2313{
Avi Kivity35f3f282007-07-17 14:20:30 +03002314 return kvm_set_msr(vcpu, index, *data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002315}
2316
2317/*
2318 * Read or write a bunch of msrs. All parameters are kernel addresses.
2319 *
2320 * @return number of msrs set successfully.
2321 */
Avi Kivitybccf2152007-02-21 18:04:26 +02002322static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002323 struct kvm_msr_entry *entries,
2324 int (*do_msr)(struct kvm_vcpu *vcpu,
2325 unsigned index, u64 *data))
2326{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002327 int i;
2328
Avi Kivitybccf2152007-02-21 18:04:26 +02002329 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002330
2331 for (i = 0; i < msrs->nmsrs; ++i)
2332 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2333 break;
2334
2335 vcpu_put(vcpu);
2336
2337 return i;
2338}
2339
2340/*
2341 * Read or write a bunch of msrs. Parameters are user addresses.
2342 *
2343 * @return number of msrs set successfully.
2344 */
Avi Kivitybccf2152007-02-21 18:04:26 +02002345static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002346 int (*do_msr)(struct kvm_vcpu *vcpu,
2347 unsigned index, u64 *data),
2348 int writeback)
2349{
2350 struct kvm_msrs msrs;
2351 struct kvm_msr_entry *entries;
2352 int r, n;
2353 unsigned size;
2354
2355 r = -EFAULT;
2356 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2357 goto out;
2358
2359 r = -E2BIG;
2360 if (msrs.nmsrs >= MAX_IO_MSRS)
2361 goto out;
2362
2363 r = -ENOMEM;
2364 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
2365 entries = vmalloc(size);
2366 if (!entries)
2367 goto out;
2368
2369 r = -EFAULT;
2370 if (copy_from_user(entries, user_msrs->entries, size))
2371 goto out_free;
2372
Avi Kivitybccf2152007-02-21 18:04:26 +02002373 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002374 if (r < 0)
2375 goto out_free;
2376
2377 r = -EFAULT;
2378 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2379 goto out_free;
2380
2381 r = n;
2382
2383out_free:
2384 vfree(entries);
2385out:
2386 return r;
2387}
2388
2389/*
2390 * Translate a guest virtual address to a guest physical address.
2391 */
Avi Kivitybccf2152007-02-21 18:04:26 +02002392static int kvm_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
2393 struct kvm_translation *tr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002394{
2395 unsigned long vaddr = tr->linear_address;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002396 gpa_t gpa;
2397
Avi Kivitybccf2152007-02-21 18:04:26 +02002398 vcpu_load(vcpu);
Shaohua Li11ec2802007-07-23 14:51:37 +08002399 mutex_lock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002400 gpa = vcpu->mmu.gva_to_gpa(vcpu, vaddr);
2401 tr->physical_address = gpa;
2402 tr->valid = gpa != UNMAPPED_GVA;
2403 tr->writeable = 1;
2404 tr->usermode = 0;
Shaohua Li11ec2802007-07-23 14:51:37 +08002405 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002406 vcpu_put(vcpu);
2407
2408 return 0;
2409}
2410
Avi Kivitybccf2152007-02-21 18:04:26 +02002411static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2412 struct kvm_interrupt *irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002413{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002414 if (irq->irq < 0 || irq->irq >= 256)
2415 return -EINVAL;
Eddie Dong97222cc2007-09-12 10:58:04 +03002416 if (irqchip_in_kernel(vcpu->kvm))
2417 return -ENXIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002418 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002419
2420 set_bit(irq->irq, vcpu->irq_pending);
2421 set_bit(irq->irq / BITS_PER_LONG, &vcpu->irq_summary);
2422
2423 vcpu_put(vcpu);
2424
2425 return 0;
2426}
2427
Avi Kivitybccf2152007-02-21 18:04:26 +02002428static int kvm_vcpu_ioctl_debug_guest(struct kvm_vcpu *vcpu,
2429 struct kvm_debug_guest *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002430{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002431 int r;
2432
Avi Kivitybccf2152007-02-21 18:04:26 +02002433 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002434
2435 r = kvm_arch_ops->set_guest_debug(vcpu, dbg);
2436
2437 vcpu_put(vcpu);
2438
2439 return r;
2440}
2441
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002442static struct page *kvm_vcpu_nopage(struct vm_area_struct *vma,
2443 unsigned long address,
2444 int *type)
2445{
2446 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
2447 unsigned long pgoff;
2448 struct page *page;
2449
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002450 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Avi Kivity039576c2007-03-20 12:46:50 +02002451 if (pgoff == 0)
2452 page = virt_to_page(vcpu->run);
2453 else if (pgoff == KVM_PIO_PAGE_OFFSET)
2454 page = virt_to_page(vcpu->pio_data);
2455 else
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002456 return NOPAGE_SIGBUS;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002457 get_page(page);
Nguyen Anh Quynhcd0d9132007-07-11 14:30:54 +03002458 if (type != NULL)
2459 *type = VM_FAULT_MINOR;
2460
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002461 return page;
2462}
2463
2464static struct vm_operations_struct kvm_vcpu_vm_ops = {
2465 .nopage = kvm_vcpu_nopage,
2466};
2467
2468static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2469{
2470 vma->vm_ops = &kvm_vcpu_vm_ops;
2471 return 0;
2472}
2473
Avi Kivitybccf2152007-02-21 18:04:26 +02002474static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2475{
2476 struct kvm_vcpu *vcpu = filp->private_data;
2477
2478 fput(vcpu->kvm->filp);
2479 return 0;
2480}
2481
2482static struct file_operations kvm_vcpu_fops = {
2483 .release = kvm_vcpu_release,
2484 .unlocked_ioctl = kvm_vcpu_ioctl,
2485 .compat_ioctl = kvm_vcpu_ioctl,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002486 .mmap = kvm_vcpu_mmap,
Avi Kivitybccf2152007-02-21 18:04:26 +02002487};
2488
2489/*
2490 * Allocates an inode for the vcpu.
2491 */
2492static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2493{
2494 int fd, r;
2495 struct inode *inode;
2496 struct file *file;
2497
Avi Kivityd6d28162007-06-28 08:38:16 -04002498 r = anon_inode_getfd(&fd, &inode, &file,
2499 "kvm-vcpu", &kvm_vcpu_fops, vcpu);
2500 if (r)
2501 return r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002502 atomic_inc(&vcpu->kvm->filp->f_count);
Avi Kivitybccf2152007-02-21 18:04:26 +02002503 return fd;
Avi Kivitybccf2152007-02-21 18:04:26 +02002504}
2505
Avi Kivityc5ea7662007-02-20 18:41:05 +02002506/*
2507 * Creates some virtual cpus. Good luck creating more than one.
2508 */
2509static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, int n)
2510{
2511 int r;
2512 struct kvm_vcpu *vcpu;
2513
Avi Kivityc5ea7662007-02-20 18:41:05 +02002514 if (!valid_vcpu(n))
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002515 return -EINVAL;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002516
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002517 vcpu = kvm_arch_ops->vcpu_create(kvm, n);
2518 if (IS_ERR(vcpu))
2519 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002520
Avi Kivity15ad7142007-07-11 18:17:21 +03002521 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2522
Rusty Russellb114b082007-07-30 21:13:43 +10002523 /* We do fxsave: this must be aligned. */
2524 BUG_ON((unsigned long)&vcpu->host_fx_image & 0xF);
2525
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002526 vcpu_load(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002527 r = kvm_mmu_setup(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002528 vcpu_put(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002529 if (r < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002530 goto free_vcpu;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002531
Shaohua Li11ec2802007-07-23 14:51:37 +08002532 mutex_lock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002533 if (kvm->vcpus[n]) {
2534 r = -EEXIST;
Shaohua Li11ec2802007-07-23 14:51:37 +08002535 mutex_unlock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002536 goto mmu_unload;
2537 }
2538 kvm->vcpus[n] = vcpu;
Shaohua Li11ec2802007-07-23 14:51:37 +08002539 mutex_unlock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002540
2541 /* Now it's all set up, let userspace reach it */
Avi Kivitybccf2152007-02-21 18:04:26 +02002542 r = create_vcpu_fd(vcpu);
2543 if (r < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002544 goto unlink;
Avi Kivitybccf2152007-02-21 18:04:26 +02002545 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002546
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002547unlink:
Shaohua Li11ec2802007-07-23 14:51:37 +08002548 mutex_lock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002549 kvm->vcpus[n] = NULL;
Shaohua Li11ec2802007-07-23 14:51:37 +08002550 mutex_unlock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002551
2552mmu_unload:
2553 vcpu_load(vcpu);
2554 kvm_mmu_unload(vcpu);
2555 vcpu_put(vcpu);
2556
2557free_vcpu:
2558 kvm_arch_ops->vcpu_free(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002559 return r;
2560}
2561
Eddie Dong2cc51562007-05-21 07:28:09 +03002562static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu)
2563{
2564 u64 efer;
2565 int i;
2566 struct kvm_cpuid_entry *e, *entry;
2567
2568 rdmsrl(MSR_EFER, efer);
2569 entry = NULL;
2570 for (i = 0; i < vcpu->cpuid_nent; ++i) {
2571 e = &vcpu->cpuid_entries[i];
2572 if (e->function == 0x80000001) {
2573 entry = e;
2574 break;
2575 }
2576 }
Avi Kivity4c981b42007-07-25 09:22:12 +03002577 if (entry && (entry->edx & (1 << 20)) && !(efer & EFER_NX)) {
Eddie Dong2cc51562007-05-21 07:28:09 +03002578 entry->edx &= ~(1 << 20);
Avi Kivity4c981b42007-07-25 09:22:12 +03002579 printk(KERN_INFO "kvm: guest NX capability removed\n");
Eddie Dong2cc51562007-05-21 07:28:09 +03002580 }
2581}
2582
Avi Kivity06465c52007-02-28 20:46:53 +02002583static int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
2584 struct kvm_cpuid *cpuid,
2585 struct kvm_cpuid_entry __user *entries)
2586{
2587 int r;
2588
2589 r = -E2BIG;
2590 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
2591 goto out;
2592 r = -EFAULT;
2593 if (copy_from_user(&vcpu->cpuid_entries, entries,
2594 cpuid->nent * sizeof(struct kvm_cpuid_entry)))
2595 goto out;
2596 vcpu->cpuid_nent = cpuid->nent;
Eddie Dong2cc51562007-05-21 07:28:09 +03002597 cpuid_fix_nx_cap(vcpu);
Avi Kivity06465c52007-02-28 20:46:53 +02002598 return 0;
2599
2600out:
2601 return r;
2602}
2603
Avi Kivity1961d272007-03-05 19:46:05 +02002604static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2605{
2606 if (sigset) {
2607 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2608 vcpu->sigset_active = 1;
2609 vcpu->sigset = *sigset;
2610 } else
2611 vcpu->sigset_active = 0;
2612 return 0;
2613}
2614
Avi Kivityb8836732007-04-01 16:34:31 +03002615/*
2616 * fxsave fpu state. Taken from x86_64/processor.h. To be killed when
2617 * we have asm/x86/processor.h
2618 */
2619struct fxsave {
2620 u16 cwd;
2621 u16 swd;
2622 u16 twd;
2623 u16 fop;
2624 u64 rip;
2625 u64 rdp;
2626 u32 mxcsr;
2627 u32 mxcsr_mask;
2628 u32 st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
2629#ifdef CONFIG_X86_64
2630 u32 xmm_space[64]; /* 16*16 bytes for each XMM-reg = 256 bytes */
2631#else
2632 u32 xmm_space[32]; /* 8*16 bytes for each XMM-reg = 128 bytes */
2633#endif
2634};
2635
2636static int kvm_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2637{
Rusty Russellb114b082007-07-30 21:13:43 +10002638 struct fxsave *fxsave = (struct fxsave *)&vcpu->guest_fx_image;
Avi Kivityb8836732007-04-01 16:34:31 +03002639
2640 vcpu_load(vcpu);
2641
2642 memcpy(fpu->fpr, fxsave->st_space, 128);
2643 fpu->fcw = fxsave->cwd;
2644 fpu->fsw = fxsave->swd;
2645 fpu->ftwx = fxsave->twd;
2646 fpu->last_opcode = fxsave->fop;
2647 fpu->last_ip = fxsave->rip;
2648 fpu->last_dp = fxsave->rdp;
2649 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
2650
2651 vcpu_put(vcpu);
2652
2653 return 0;
2654}
2655
2656static int kvm_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2657{
Rusty Russellb114b082007-07-30 21:13:43 +10002658 struct fxsave *fxsave = (struct fxsave *)&vcpu->guest_fx_image;
Avi Kivityb8836732007-04-01 16:34:31 +03002659
2660 vcpu_load(vcpu);
2661
2662 memcpy(fxsave->st_space, fpu->fpr, 128);
2663 fxsave->cwd = fpu->fcw;
2664 fxsave->swd = fpu->fsw;
2665 fxsave->twd = fpu->ftwx;
2666 fxsave->fop = fpu->last_opcode;
2667 fxsave->rip = fpu->last_ip;
2668 fxsave->rdp = fpu->last_dp;
2669 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
2670
2671 vcpu_put(vcpu);
2672
2673 return 0;
2674}
2675
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002676static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
2677 struct kvm_lapic_state *s)
2678{
2679 vcpu_load(vcpu);
2680 memcpy(s->regs, vcpu->apic->regs, sizeof *s);
2681 vcpu_put(vcpu);
2682
2683 return 0;
2684}
2685
2686static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
2687 struct kvm_lapic_state *s)
2688{
2689 vcpu_load(vcpu);
2690 memcpy(vcpu->apic->regs, s->regs, sizeof *s);
2691 kvm_apic_post_state_restore(vcpu);
2692 vcpu_put(vcpu);
2693
2694 return 0;
2695}
2696
Avi Kivitybccf2152007-02-21 18:04:26 +02002697static long kvm_vcpu_ioctl(struct file *filp,
2698 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002699{
Avi Kivitybccf2152007-02-21 18:04:26 +02002700 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f3669872007-02-09 16:38:35 +00002701 void __user *argp = (void __user *)arg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002702 int r = -EINVAL;
2703
2704 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002705 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002706 r = -EINVAL;
2707 if (arg)
2708 goto out;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002709 r = kvm_vcpu_ioctl_run(vcpu, vcpu->run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002710 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002711 case KVM_GET_REGS: {
2712 struct kvm_regs kvm_regs;
2713
Avi Kivitybccf2152007-02-21 18:04:26 +02002714 memset(&kvm_regs, 0, sizeof kvm_regs);
2715 r = kvm_vcpu_ioctl_get_regs(vcpu, &kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002716 if (r)
2717 goto out;
2718 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002719 if (copy_to_user(argp, &kvm_regs, sizeof kvm_regs))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002720 goto out;
2721 r = 0;
2722 break;
2723 }
2724 case KVM_SET_REGS: {
2725 struct kvm_regs kvm_regs;
2726
2727 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002728 if (copy_from_user(&kvm_regs, argp, sizeof kvm_regs))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002729 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002730 r = kvm_vcpu_ioctl_set_regs(vcpu, &kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002731 if (r)
2732 goto out;
2733 r = 0;
2734 break;
2735 }
2736 case KVM_GET_SREGS: {
2737 struct kvm_sregs kvm_sregs;
2738
Avi Kivitybccf2152007-02-21 18:04:26 +02002739 memset(&kvm_sregs, 0, sizeof kvm_sregs);
2740 r = kvm_vcpu_ioctl_get_sregs(vcpu, &kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002741 if (r)
2742 goto out;
2743 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002744 if (copy_to_user(argp, &kvm_sregs, sizeof kvm_sregs))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002745 goto out;
2746 r = 0;
2747 break;
2748 }
2749 case KVM_SET_SREGS: {
2750 struct kvm_sregs kvm_sregs;
2751
2752 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002753 if (copy_from_user(&kvm_sregs, argp, sizeof kvm_sregs))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002754 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002755 r = kvm_vcpu_ioctl_set_sregs(vcpu, &kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002756 if (r)
2757 goto out;
2758 r = 0;
2759 break;
2760 }
2761 case KVM_TRANSLATE: {
2762 struct kvm_translation tr;
2763
2764 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002765 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002766 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002767 r = kvm_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002768 if (r)
2769 goto out;
2770 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002771 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002772 goto out;
2773 r = 0;
2774 break;
2775 }
2776 case KVM_INTERRUPT: {
2777 struct kvm_interrupt irq;
2778
2779 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002780 if (copy_from_user(&irq, argp, sizeof irq))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002781 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002782 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002783 if (r)
2784 goto out;
2785 r = 0;
2786 break;
2787 }
2788 case KVM_DEBUG_GUEST: {
2789 struct kvm_debug_guest dbg;
2790
2791 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002792 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002793 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002794 r = kvm_vcpu_ioctl_debug_guest(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002795 if (r)
2796 goto out;
2797 r = 0;
2798 break;
2799 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002800 case KVM_GET_MSRS:
Avi Kivity35f3f282007-07-17 14:20:30 +03002801 r = msr_io(vcpu, argp, kvm_get_msr, 1);
Avi Kivitybccf2152007-02-21 18:04:26 +02002802 break;
2803 case KVM_SET_MSRS:
2804 r = msr_io(vcpu, argp, do_set_msr, 0);
2805 break;
Avi Kivity06465c52007-02-28 20:46:53 +02002806 case KVM_SET_CPUID: {
2807 struct kvm_cpuid __user *cpuid_arg = argp;
2808 struct kvm_cpuid cpuid;
2809
2810 r = -EFAULT;
2811 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2812 goto out;
2813 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
2814 if (r)
2815 goto out;
2816 break;
2817 }
Avi Kivity1961d272007-03-05 19:46:05 +02002818 case KVM_SET_SIGNAL_MASK: {
2819 struct kvm_signal_mask __user *sigmask_arg = argp;
2820 struct kvm_signal_mask kvm_sigmask;
2821 sigset_t sigset, *p;
2822
2823 p = NULL;
2824 if (argp) {
2825 r = -EFAULT;
2826 if (copy_from_user(&kvm_sigmask, argp,
2827 sizeof kvm_sigmask))
2828 goto out;
2829 r = -EINVAL;
2830 if (kvm_sigmask.len != sizeof sigset)
2831 goto out;
2832 r = -EFAULT;
2833 if (copy_from_user(&sigset, sigmask_arg->sigset,
2834 sizeof sigset))
2835 goto out;
2836 p = &sigset;
2837 }
2838 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2839 break;
2840 }
Avi Kivityb8836732007-04-01 16:34:31 +03002841 case KVM_GET_FPU: {
2842 struct kvm_fpu fpu;
2843
2844 memset(&fpu, 0, sizeof fpu);
2845 r = kvm_vcpu_ioctl_get_fpu(vcpu, &fpu);
2846 if (r)
2847 goto out;
2848 r = -EFAULT;
2849 if (copy_to_user(argp, &fpu, sizeof fpu))
2850 goto out;
2851 r = 0;
2852 break;
2853 }
2854 case KVM_SET_FPU: {
2855 struct kvm_fpu fpu;
2856
2857 r = -EFAULT;
2858 if (copy_from_user(&fpu, argp, sizeof fpu))
2859 goto out;
2860 r = kvm_vcpu_ioctl_set_fpu(vcpu, &fpu);
2861 if (r)
2862 goto out;
2863 r = 0;
2864 break;
2865 }
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002866 case KVM_GET_LAPIC: {
2867 struct kvm_lapic_state lapic;
2868
2869 memset(&lapic, 0, sizeof lapic);
2870 r = kvm_vcpu_ioctl_get_lapic(vcpu, &lapic);
2871 if (r)
2872 goto out;
2873 r = -EFAULT;
2874 if (copy_to_user(argp, &lapic, sizeof lapic))
2875 goto out;
2876 r = 0;
2877 break;
2878 }
2879 case KVM_SET_LAPIC: {
2880 struct kvm_lapic_state lapic;
2881
2882 r = -EFAULT;
2883 if (copy_from_user(&lapic, argp, sizeof lapic))
2884 goto out;
2885 r = kvm_vcpu_ioctl_set_lapic(vcpu, &lapic);;
2886 if (r)
2887 goto out;
2888 r = 0;
2889 break;
2890 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002891 default:
2892 ;
2893 }
2894out:
2895 return r;
2896}
2897
2898static long kvm_vm_ioctl(struct file *filp,
2899 unsigned int ioctl, unsigned long arg)
2900{
2901 struct kvm *kvm = filp->private_data;
2902 void __user *argp = (void __user *)arg;
2903 int r = -EINVAL;
2904
2905 switch (ioctl) {
2906 case KVM_CREATE_VCPU:
2907 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
2908 if (r < 0)
2909 goto out;
2910 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002911 case KVM_SET_MEMORY_REGION: {
2912 struct kvm_memory_region kvm_mem;
2913
2914 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002915 if (copy_from_user(&kvm_mem, argp, sizeof kvm_mem))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002916 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002917 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002918 if (r)
2919 goto out;
2920 break;
2921 }
2922 case KVM_GET_DIRTY_LOG: {
2923 struct kvm_dirty_log log;
2924
2925 r = -EFAULT;
Al Viro2f3669872007-02-09 16:38:35 +00002926 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002927 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002928 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002929 if (r)
2930 goto out;
2931 break;
2932 }
Avi Kivitye8207542007-03-30 16:54:30 +03002933 case KVM_SET_MEMORY_ALIAS: {
2934 struct kvm_memory_alias alias;
2935
2936 r = -EFAULT;
2937 if (copy_from_user(&alias, argp, sizeof alias))
2938 goto out;
2939 r = kvm_vm_ioctl_set_memory_alias(kvm, &alias);
2940 if (r)
2941 goto out;
2942 break;
2943 }
Eddie Dong85f455f2007-07-06 12:20:49 +03002944 case KVM_CREATE_IRQCHIP:
2945 r = -ENOMEM;
2946 kvm->vpic = kvm_create_pic(kvm);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +03002947 if (kvm->vpic) {
2948 r = kvm_ioapic_init(kvm);
2949 if (r) {
2950 kfree(kvm->vpic);
2951 kvm->vpic = NULL;
2952 goto out;
2953 }
2954 }
Eddie Dong85f455f2007-07-06 12:20:49 +03002955 else
2956 goto out;
2957 break;
2958 case KVM_IRQ_LINE: {
2959 struct kvm_irq_level irq_event;
2960
2961 r = -EFAULT;
2962 if (copy_from_user(&irq_event, argp, sizeof irq_event))
2963 goto out;
2964 if (irqchip_in_kernel(kvm)) {
Eddie Dong9cf98822007-07-22 10:36:31 +03002965 mutex_lock(&kvm->lock);
Eddie Dong85f455f2007-07-06 12:20:49 +03002966 if (irq_event.irq < 16)
2967 kvm_pic_set_irq(pic_irqchip(kvm),
2968 irq_event.irq,
2969 irq_event.level);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +03002970 kvm_ioapic_set_irq(kvm->vioapic,
2971 irq_event.irq,
2972 irq_event.level);
Eddie Dong9cf98822007-07-22 10:36:31 +03002973 mutex_unlock(&kvm->lock);
Eddie Dong85f455f2007-07-06 12:20:49 +03002974 r = 0;
2975 }
2976 break;
2977 }
He, Qing6ceb9d72007-07-26 11:05:18 +03002978 case KVM_GET_IRQCHIP: {
2979 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
2980 struct kvm_irqchip chip;
2981
2982 r = -EFAULT;
2983 if (copy_from_user(&chip, argp, sizeof chip))
2984 goto out;
2985 r = -ENXIO;
2986 if (!irqchip_in_kernel(kvm))
2987 goto out;
2988 r = kvm_vm_ioctl_get_irqchip(kvm, &chip);
2989 if (r)
2990 goto out;
2991 r = -EFAULT;
2992 if (copy_to_user(argp, &chip, sizeof chip))
2993 goto out;
2994 r = 0;
2995 break;
2996 }
2997 case KVM_SET_IRQCHIP: {
2998 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
2999 struct kvm_irqchip chip;
3000
3001 r = -EFAULT;
3002 if (copy_from_user(&chip, argp, sizeof chip))
3003 goto out;
3004 r = -ENXIO;
3005 if (!irqchip_in_kernel(kvm))
3006 goto out;
3007 r = kvm_vm_ioctl_set_irqchip(kvm, &chip);
3008 if (r)
3009 goto out;
3010 r = 0;
3011 break;
3012 }
Avi Kivityf17abe92007-02-21 19:28:04 +02003013 default:
3014 ;
3015 }
3016out:
3017 return r;
3018}
3019
3020static struct page *kvm_vm_nopage(struct vm_area_struct *vma,
3021 unsigned long address,
3022 int *type)
3023{
3024 struct kvm *kvm = vma->vm_file->private_data;
3025 unsigned long pgoff;
Avi Kivityf17abe92007-02-21 19:28:04 +02003026 struct page *page;
3027
Avi Kivityf17abe92007-02-21 19:28:04 +02003028 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Avi Kivity954bbbc2007-03-30 14:02:32 +03003029 page = gfn_to_page(kvm, pgoff);
Avi Kivityf17abe92007-02-21 19:28:04 +02003030 if (!page)
3031 return NOPAGE_SIGBUS;
3032 get_page(page);
Nguyen Anh Quynhcd0d9132007-07-11 14:30:54 +03003033 if (type != NULL)
3034 *type = VM_FAULT_MINOR;
3035
Avi Kivityf17abe92007-02-21 19:28:04 +02003036 return page;
3037}
3038
3039static struct vm_operations_struct kvm_vm_vm_ops = {
3040 .nopage = kvm_vm_nopage,
3041};
3042
3043static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
3044{
3045 vma->vm_ops = &kvm_vm_vm_ops;
3046 return 0;
3047}
3048
3049static struct file_operations kvm_vm_fops = {
3050 .release = kvm_vm_release,
3051 .unlocked_ioctl = kvm_vm_ioctl,
3052 .compat_ioctl = kvm_vm_ioctl,
3053 .mmap = kvm_vm_mmap,
3054};
3055
3056static int kvm_dev_ioctl_create_vm(void)
3057{
3058 int fd, r;
3059 struct inode *inode;
3060 struct file *file;
3061 struct kvm *kvm;
3062
Avi Kivityf17abe92007-02-21 19:28:04 +02003063 kvm = kvm_create_vm();
Avi Kivityd6d28162007-06-28 08:38:16 -04003064 if (IS_ERR(kvm))
3065 return PTR_ERR(kvm);
3066 r = anon_inode_getfd(&fd, &inode, &file, "kvm-vm", &kvm_vm_fops, kvm);
3067 if (r) {
3068 kvm_destroy_vm(kvm);
3069 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003070 }
3071
Avi Kivitybccf2152007-02-21 18:04:26 +02003072 kvm->filp = file;
Avi Kivityf17abe92007-02-21 19:28:04 +02003073
Avi Kivityf17abe92007-02-21 19:28:04 +02003074 return fd;
Avi Kivityf17abe92007-02-21 19:28:04 +02003075}
3076
3077static long kvm_dev_ioctl(struct file *filp,
3078 unsigned int ioctl, unsigned long arg)
3079{
3080 void __user *argp = (void __user *)arg;
Avi Kivity07c45a32007-03-07 13:05:38 +02003081 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02003082
3083 switch (ioctl) {
3084 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02003085 r = -EINVAL;
3086 if (arg)
3087 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02003088 r = KVM_API_VERSION;
3089 break;
3090 case KVM_CREATE_VM:
Avi Kivityf0fe5102007-03-07 13:11:17 +02003091 r = -EINVAL;
3092 if (arg)
3093 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02003094 r = kvm_dev_ioctl_create_vm();
3095 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003096 case KVM_GET_MSR_INDEX_LIST: {
Al Viro2f3669872007-02-09 16:38:35 +00003097 struct kvm_msr_list __user *user_msr_list = argp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003098 struct kvm_msr_list msr_list;
3099 unsigned n;
3100
3101 r = -EFAULT;
3102 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
3103 goto out;
3104 n = msr_list.nmsrs;
Avi Kivity6f00e682007-01-26 00:56:40 -08003105 msr_list.nmsrs = num_msrs_to_save + ARRAY_SIZE(emulated_msrs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003106 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
3107 goto out;
3108 r = -E2BIG;
Michael Riepebf591b22006-12-22 01:05:36 -08003109 if (n < num_msrs_to_save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003110 goto out;
3111 r = -EFAULT;
3112 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
Michael Riepebf591b22006-12-22 01:05:36 -08003113 num_msrs_to_save * sizeof(u32)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003114 goto out;
Avi Kivity6f00e682007-01-26 00:56:40 -08003115 if (copy_to_user(user_msr_list->indices
3116 + num_msrs_to_save * sizeof(u32),
3117 &emulated_msrs,
3118 ARRAY_SIZE(emulated_msrs) * sizeof(u32)))
3119 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003120 r = 0;
Avi Kivitycc1d8952007-01-05 16:36:58 -08003121 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003122 }
Eddie Dong85f455f2007-07-06 12:20:49 +03003123 case KVM_CHECK_EXTENSION: {
3124 int ext = (long)argp;
3125
3126 switch (ext) {
3127 case KVM_CAP_IRQCHIP:
Eddie Dongb6958ce2007-07-18 12:15:21 +03003128 case KVM_CAP_HLT:
Eddie Dong85f455f2007-07-06 12:20:49 +03003129 r = 1;
3130 break;
3131 default:
3132 r = 0;
3133 break;
3134 }
Avi Kivity5d308f42007-03-01 17:56:20 +02003135 break;
Eddie Dong85f455f2007-07-06 12:20:49 +03003136 }
Avi Kivity07c45a32007-03-07 13:05:38 +02003137 case KVM_GET_VCPU_MMAP_SIZE:
3138 r = -EINVAL;
3139 if (arg)
3140 goto out;
Avi Kivity039576c2007-03-20 12:46:50 +02003141 r = 2 * PAGE_SIZE;
Avi Kivity07c45a32007-03-07 13:05:38 +02003142 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003143 default:
3144 ;
3145 }
3146out:
3147 return r;
3148}
3149
Avi Kivity6aa8b732006-12-10 02:21:36 -08003150static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003151 .unlocked_ioctl = kvm_dev_ioctl,
3152 .compat_ioctl = kvm_dev_ioctl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003153};
3154
3155static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02003156 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003157 "kvm",
3158 &kvm_chardev_ops,
3159};
3160
Avi Kivity774c47f2007-02-12 00:54:47 -08003161/*
3162 * Make sure that a cpu that is being hot-unplugged does not have any vcpus
3163 * cached on it.
3164 */
3165static void decache_vcpus_on_cpu(int cpu)
3166{
3167 struct kvm *vm;
3168 struct kvm_vcpu *vcpu;
3169 int i;
3170
3171 spin_lock(&kvm_lock);
Shaohua Li11ec2802007-07-23 14:51:37 +08003172 list_for_each_entry(vm, &vm_list, vm_list)
Avi Kivity774c47f2007-02-12 00:54:47 -08003173 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003174 vcpu = vm->vcpus[i];
3175 if (!vcpu)
3176 continue;
Avi Kivity774c47f2007-02-12 00:54:47 -08003177 /*
3178 * If the vcpu is locked, then it is running on some
3179 * other cpu and therefore it is not cached on the
3180 * cpu in question.
3181 *
3182 * If it's not locked, check the last cpu it executed
3183 * on.
3184 */
3185 if (mutex_trylock(&vcpu->mutex)) {
3186 if (vcpu->cpu == cpu) {
3187 kvm_arch_ops->vcpu_decache(vcpu);
3188 vcpu->cpu = -1;
3189 }
3190 mutex_unlock(&vcpu->mutex);
3191 }
3192 }
3193 spin_unlock(&kvm_lock);
3194}
3195
Avi Kivity1b6c0162007-05-24 13:03:52 +03003196static void hardware_enable(void *junk)
3197{
3198 int cpu = raw_smp_processor_id();
3199
3200 if (cpu_isset(cpu, cpus_hardware_enabled))
3201 return;
3202 cpu_set(cpu, cpus_hardware_enabled);
3203 kvm_arch_ops->hardware_enable(NULL);
3204}
3205
3206static void hardware_disable(void *junk)
3207{
3208 int cpu = raw_smp_processor_id();
3209
3210 if (!cpu_isset(cpu, cpus_hardware_enabled))
3211 return;
3212 cpu_clear(cpu, cpus_hardware_enabled);
3213 decache_vcpus_on_cpu(cpu);
3214 kvm_arch_ops->hardware_disable(NULL);
3215}
3216
Avi Kivity774c47f2007-02-12 00:54:47 -08003217static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
3218 void *v)
3219{
3220 int cpu = (long)v;
3221
3222 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03003223 case CPU_DYING:
3224 case CPU_DYING_FROZEN:
Avi Kivity6ec8a852007-08-19 15:57:26 +03003225 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
3226 cpu);
3227 hardware_disable(NULL);
3228 break;
Avi Kivity774c47f2007-02-12 00:54:47 -08003229 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003230 case CPU_UP_CANCELED_FROZEN:
Jeremy Katz43934a32007-02-19 14:37:46 +02003231 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
3232 cpu);
Avi Kivity1b6c0162007-05-24 13:03:52 +03003233 smp_call_function_single(cpu, hardware_disable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08003234 break;
Jeremy Katz43934a32007-02-19 14:37:46 +02003235 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003236 case CPU_ONLINE_FROZEN:
Jeremy Katz43934a32007-02-19 14:37:46 +02003237 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
3238 cpu);
Avi Kivity1b6c0162007-05-24 13:03:52 +03003239 smp_call_function_single(cpu, hardware_enable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08003240 break;
3241 }
3242 return NOTIFY_OK;
3243}
3244
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003245static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
3246 void *v)
3247{
3248 if (val == SYS_RESTART) {
3249 /*
3250 * Some (well, at least mine) BIOSes hang on reboot if
3251 * in vmx root mode.
3252 */
3253 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
3254 on_each_cpu(hardware_disable, NULL, 0, 1);
3255 }
3256 return NOTIFY_OK;
3257}
3258
3259static struct notifier_block kvm_reboot_notifier = {
3260 .notifier_call = kvm_reboot,
3261 .priority = 0,
3262};
3263
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003264void kvm_io_bus_init(struct kvm_io_bus *bus)
3265{
3266 memset(bus, 0, sizeof(*bus));
3267}
3268
3269void kvm_io_bus_destroy(struct kvm_io_bus *bus)
3270{
3271 int i;
3272
3273 for (i = 0; i < bus->dev_count; i++) {
3274 struct kvm_io_device *pos = bus->devs[i];
3275
3276 kvm_iodevice_destructor(pos);
3277 }
3278}
3279
3280struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, gpa_t addr)
3281{
3282 int i;
3283
3284 for (i = 0; i < bus->dev_count; i++) {
3285 struct kvm_io_device *pos = bus->devs[i];
3286
3287 if (pos->in_range(pos, addr))
3288 return pos;
3289 }
3290
3291 return NULL;
3292}
3293
3294void kvm_io_bus_register_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev)
3295{
3296 BUG_ON(bus->dev_count > (NR_IOBUS_DEVS-1));
3297
3298 bus->devs[bus->dev_count++] = dev;
3299}
3300
Avi Kivity774c47f2007-02-12 00:54:47 -08003301static struct notifier_block kvm_cpu_notifier = {
3302 .notifier_call = kvm_cpu_hotplug,
3303 .priority = 20, /* must be > scheduler priority */
3304};
3305
Avi Kivity1165f5f2007-04-19 17:27:43 +03003306static u64 stat_get(void *_offset)
3307{
3308 unsigned offset = (long)_offset;
3309 u64 total = 0;
3310 struct kvm *kvm;
3311 struct kvm_vcpu *vcpu;
3312 int i;
3313
3314 spin_lock(&kvm_lock);
3315 list_for_each_entry(kvm, &vm_list, vm_list)
3316 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003317 vcpu = kvm->vcpus[i];
3318 if (vcpu)
3319 total += *(u32 *)((void *)vcpu + offset);
Avi Kivity1165f5f2007-04-19 17:27:43 +03003320 }
3321 spin_unlock(&kvm_lock);
3322 return total;
3323}
3324
Rusty Russell3dea7ca2007-08-01 10:12:22 +10003325DEFINE_SIMPLE_ATTRIBUTE(stat_fops, stat_get, NULL, "%llu\n");
Avi Kivity1165f5f2007-04-19 17:27:43 +03003326
Avi Kivity6aa8b732006-12-10 02:21:36 -08003327static __init void kvm_init_debug(void)
3328{
3329 struct kvm_stats_debugfs_item *p;
3330
Al Viro8b6d44c2007-02-09 16:38:40 +00003331 debugfs_dir = debugfs_create_dir("kvm", NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003332 for (p = debugfs_entries; p->name; ++p)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003333 p->dentry = debugfs_create_file(p->name, 0444, debugfs_dir,
3334 (void *)(long)p->offset,
3335 &stat_fops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003336}
3337
3338static void kvm_exit_debug(void)
3339{
3340 struct kvm_stats_debugfs_item *p;
3341
3342 for (p = debugfs_entries; p->name; ++p)
3343 debugfs_remove(p->dentry);
3344 debugfs_remove(debugfs_dir);
3345}
3346
Avi Kivity59ae6c62007-02-12 00:54:48 -08003347static int kvm_suspend(struct sys_device *dev, pm_message_t state)
3348{
Avi Kivity4267c412007-05-24 13:09:41 +03003349 hardware_disable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003350 return 0;
3351}
3352
3353static int kvm_resume(struct sys_device *dev)
3354{
Avi Kivity4267c412007-05-24 13:09:41 +03003355 hardware_enable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003356 return 0;
3357}
3358
3359static struct sysdev_class kvm_sysdev_class = {
3360 set_kset_name("kvm"),
3361 .suspend = kvm_suspend,
3362 .resume = kvm_resume,
3363};
3364
3365static struct sys_device kvm_sysdev = {
3366 .id = 0,
3367 .cls = &kvm_sysdev_class,
3368};
3369
Avi Kivity6aa8b732006-12-10 02:21:36 -08003370hpa_t bad_page_address;
3371
Avi Kivity15ad7142007-07-11 18:17:21 +03003372static inline
3373struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3374{
3375 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3376}
3377
3378static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3379{
3380 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3381
3382 kvm_arch_ops->vcpu_load(vcpu, cpu);
3383}
3384
3385static void kvm_sched_out(struct preempt_notifier *pn,
3386 struct task_struct *next)
3387{
3388 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3389
3390 kvm_arch_ops->vcpu_put(vcpu);
3391}
3392
Rusty Russellc16f8622007-07-30 21:12:19 +10003393int kvm_init_arch(struct kvm_arch_ops *ops, unsigned int vcpu_size,
3394 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003395{
3396 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003397 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003398
Yoshimi Ichiyanagi09db28b2006-12-29 16:49:41 -08003399 if (kvm_arch_ops) {
3400 printk(KERN_ERR "kvm: already loaded the other module\n");
3401 return -EEXIST;
3402 }
3403
Yoshimi Ichiyanagie097f352007-01-05 16:36:24 -08003404 if (!ops->cpu_has_kvm_support()) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003405 printk(KERN_ERR "kvm: no hardware support\n");
3406 return -EOPNOTSUPP;
3407 }
Yoshimi Ichiyanagie097f352007-01-05 16:36:24 -08003408 if (ops->disabled_by_bios()) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003409 printk(KERN_ERR "kvm: disabled by bios\n");
3410 return -EOPNOTSUPP;
3411 }
3412
Yoshimi Ichiyanagie097f352007-01-05 16:36:24 -08003413 kvm_arch_ops = ops;
3414
Avi Kivity6aa8b732006-12-10 02:21:36 -08003415 r = kvm_arch_ops->hardware_setup();
3416 if (r < 0)
Avi Kivityca45aaa2007-03-01 19:21:03 +02003417 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003418
Yang, Sheng002c7f72007-07-31 14:23:01 +03003419 for_each_online_cpu(cpu) {
3420 smp_call_function_single(cpu,
3421 kvm_arch_ops->check_processor_compatibility,
3422 &r, 0, 1);
3423 if (r < 0)
3424 goto out_free_0;
3425 }
3426
Avi Kivity1b6c0162007-05-24 13:03:52 +03003427 on_each_cpu(hardware_enable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08003428 r = register_cpu_notifier(&kvm_cpu_notifier);
3429 if (r)
3430 goto out_free_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003431 register_reboot_notifier(&kvm_reboot_notifier);
3432
Avi Kivity59ae6c62007-02-12 00:54:48 -08003433 r = sysdev_class_register(&kvm_sysdev_class);
3434 if (r)
3435 goto out_free_2;
3436
3437 r = sysdev_register(&kvm_sysdev);
3438 if (r)
3439 goto out_free_3;
3440
Rusty Russellc16f8622007-07-30 21:12:19 +10003441 /* A kmem cache lets us meet the alignment requirements of fx_save. */
3442 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size,
3443 __alignof__(struct kvm_vcpu), 0, 0);
3444 if (!kvm_vcpu_cache) {
3445 r = -ENOMEM;
3446 goto out_free_4;
3447 }
3448
Avi Kivity6aa8b732006-12-10 02:21:36 -08003449 kvm_chardev_ops.owner = module;
3450
3451 r = misc_register(&kvm_dev);
3452 if (r) {
3453 printk (KERN_ERR "kvm: misc device register failed\n");
3454 goto out_free;
3455 }
3456
Avi Kivity15ad7142007-07-11 18:17:21 +03003457 kvm_preempt_ops.sched_in = kvm_sched_in;
3458 kvm_preempt_ops.sched_out = kvm_sched_out;
3459
Avi Kivity6aa8b732006-12-10 02:21:36 -08003460 return r;
3461
3462out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10003463 kmem_cache_destroy(kvm_vcpu_cache);
3464out_free_4:
Avi Kivity59ae6c62007-02-12 00:54:48 -08003465 sysdev_unregister(&kvm_sysdev);
3466out_free_3:
3467 sysdev_class_unregister(&kvm_sysdev_class);
3468out_free_2:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003469 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08003470 unregister_cpu_notifier(&kvm_cpu_notifier);
3471out_free_1:
Avi Kivity1b6c0162007-05-24 13:03:52 +03003472 on_each_cpu(hardware_disable, NULL, 0, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003473out_free_0:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003474 kvm_arch_ops->hardware_unsetup();
Avi Kivityca45aaa2007-03-01 19:21:03 +02003475out:
3476 kvm_arch_ops = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003477 return r;
3478}
3479
3480void kvm_exit_arch(void)
3481{
3482 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10003483 kmem_cache_destroy(kvm_vcpu_cache);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003484 sysdev_unregister(&kvm_sysdev);
3485 sysdev_class_unregister(&kvm_sysdev_class);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003486 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003487 unregister_cpu_notifier(&kvm_cpu_notifier);
Avi Kivity1b6c0162007-05-24 13:03:52 +03003488 on_each_cpu(hardware_disable, NULL, 0, 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003489 kvm_arch_ops->hardware_unsetup();
Yoshimi Ichiyanagi09db28b2006-12-29 16:49:41 -08003490 kvm_arch_ops = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003491}
3492
3493static __init int kvm_init(void)
3494{
3495 static struct page *bad_page;
Avi Kivity37e29d92007-02-20 14:07:37 +02003496 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003497
Avi Kivityb5a33a72007-04-15 16:31:09 +03003498 r = kvm_mmu_module_init();
3499 if (r)
3500 goto out4;
3501
Avi Kivity6aa8b732006-12-10 02:21:36 -08003502 kvm_init_debug();
3503
Michael Riepebf591b22006-12-22 01:05:36 -08003504 kvm_init_msr_list();
3505
Avi Kivity6aa8b732006-12-10 02:21:36 -08003506 if ((bad_page = alloc_page(GFP_KERNEL)) == NULL) {
3507 r = -ENOMEM;
3508 goto out;
3509 }
3510
3511 bad_page_address = page_to_pfn(bad_page) << PAGE_SHIFT;
3512 memset(__va(bad_page_address), 0, PAGE_SIZE);
3513
Avi Kivity58e690e2007-02-26 16:29:43 +02003514 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003515
3516out:
3517 kvm_exit_debug();
Avi Kivityb5a33a72007-04-15 16:31:09 +03003518 kvm_mmu_module_exit();
3519out4:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003520 return r;
3521}
3522
3523static __exit void kvm_exit(void)
3524{
3525 kvm_exit_debug();
3526 __free_page(pfn_to_page(bad_page_address >> PAGE_SHIFT));
Avi Kivityb5a33a72007-04-15 16:31:09 +03003527 kvm_mmu_module_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003528}
3529
3530module_init(kvm_init)
3531module_exit(kvm_exit)
3532
3533EXPORT_SYMBOL_GPL(kvm_init_arch);
3534EXPORT_SYMBOL_GPL(kvm_exit_arch);