blob: 9bfa1bcd26e9e1b4fd6780fc425c1d1751c1e130 [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
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +030056struct kvm_x86_ops *kvm_x86_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);
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +0300185 kvm_x86_ops->vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +0300186 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();
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +0300192 kvm_x86_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]) {
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +0300377 kvm_x86_ops->vcpu_free(kvm->vcpus[i]);
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000378 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{
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +0300408 kvm_x86_ops->inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800409}
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 Kivity954bbbc22007-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 Kivity954bbbc22007-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 }
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +0300483 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800484 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
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +0300502 kvm_x86_ops->set_cr0(vcpu, cr0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800503 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 }
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +0300545 kvm_x86_ops->set_cr4(vcpu, cr4);
Rusty Russell81f50e32007-09-06 01:20:38 +1000546 vcpu->cr4 = cr4;
Shaohua Li11ec2802007-07-23 14:51:37 +0800547 mutex_lock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800548 kvm_mmu_reset_context(vcpu);
Shaohua Li11ec2802007-07-23 14:51:37 +0800549 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800550}
551EXPORT_SYMBOL_GPL(set_cr4);
552
553void set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
554{
Avi Kivitya9058ec2006-12-29 16:49:37 -0800555 if (is_long_mode(vcpu)) {
Rusty Russellf802a302007-07-17 23:32:55 +1000556 if (cr3 & CR3_L_MODE_RESERVED_BITS) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800557 printk(KERN_DEBUG "set_cr3: #GP, reserved bits\n");
558 inject_gp(vcpu);
559 return;
560 }
561 } else {
Rusty Russellf802a302007-07-17 23:32:55 +1000562 if (is_pae(vcpu)) {
563 if (cr3 & CR3_PAE_RESERVED_BITS) {
564 printk(KERN_DEBUG
565 "set_cr3: #GP, reserved bits\n");
566 inject_gp(vcpu);
567 return;
568 }
569 if (is_paging(vcpu) && !load_pdptrs(vcpu, cr3)) {
570 printk(KERN_DEBUG "set_cr3: #GP, pdptrs "
571 "reserved bits\n");
572 inject_gp(vcpu);
573 return;
574 }
575 } else {
576 if (cr3 & CR3_NONPAE_RESERVED_BITS) {
577 printk(KERN_DEBUG
578 "set_cr3: #GP, reserved bits\n");
579 inject_gp(vcpu);
580 return;
581 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800582 }
583 }
584
Shaohua Li11ec2802007-07-23 14:51:37 +0800585 mutex_lock(&vcpu->kvm->lock);
Ingo Molnard21225e2007-01-05 16:36:59 -0800586 /*
587 * Does the new cr3 value map to physical memory? (Note, we
588 * catch an invalid cr3 even in real-mode, because it would
589 * cause trouble later on when we turn on paging anyway.)
590 *
591 * A real CPU would silently accept an invalid cr3 and would
592 * attempt to use it - with largely undefined (and often hard
593 * to debug) behavior on the guest side.
594 */
595 if (unlikely(!gfn_to_memslot(vcpu->kvm, cr3 >> PAGE_SHIFT)))
596 inject_gp(vcpu);
Rusty Russellfb764412007-07-31 20:45:03 +1000597 else {
598 vcpu->cr3 = cr3;
Ingo Molnard21225e2007-01-05 16:36:59 -0800599 vcpu->mmu.new_cr3(vcpu);
Rusty Russellfb764412007-07-31 20:45:03 +1000600 }
Shaohua Li11ec2802007-07-23 14:51:37 +0800601 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800602}
603EXPORT_SYMBOL_GPL(set_cr3);
604
605void set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
606{
Rusty Russell7075bc82007-07-17 23:37:17 +1000607 if (cr8 & CR8_RESERVED_BITS) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800608 printk(KERN_DEBUG "set_cr8: #GP, reserved bits 0x%lx\n", cr8);
609 inject_gp(vcpu);
610 return;
611 }
Eddie Dong97222cc2007-09-12 10:58:04 +0300612 if (irqchip_in_kernel(vcpu->kvm))
613 kvm_lapic_set_tpr(vcpu, cr8);
614 else
615 vcpu->cr8 = cr8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800616}
617EXPORT_SYMBOL_GPL(set_cr8);
618
Eddie Dong7017fc32007-07-18 11:34:57 +0300619unsigned long get_cr8(struct kvm_vcpu *vcpu)
620{
Eddie Dong97222cc2007-09-12 10:58:04 +0300621 if (irqchip_in_kernel(vcpu->kvm))
622 return kvm_lapic_get_cr8(vcpu);
623 else
624 return vcpu->cr8;
Eddie Dong7017fc32007-07-18 11:34:57 +0300625}
626EXPORT_SYMBOL_GPL(get_cr8);
627
628u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
629{
Eddie Dong97222cc2007-09-12 10:58:04 +0300630 if (irqchip_in_kernel(vcpu->kvm))
631 return vcpu->apic_base;
632 else
633 return vcpu->apic_base;
Eddie Dong7017fc32007-07-18 11:34:57 +0300634}
635EXPORT_SYMBOL_GPL(kvm_get_apic_base);
636
637void kvm_set_apic_base(struct kvm_vcpu *vcpu, u64 data)
638{
Eddie Dong97222cc2007-09-12 10:58:04 +0300639 /* TODO: reserve bits check */
640 if (irqchip_in_kernel(vcpu->kvm))
641 kvm_lapic_set_base(vcpu, data);
642 else
643 vcpu->apic_base = data;
Eddie Dong7017fc32007-07-18 11:34:57 +0300644}
645EXPORT_SYMBOL_GPL(kvm_set_apic_base);
646
Avi Kivity6aa8b732006-12-10 02:21:36 -0800647void fx_init(struct kvm_vcpu *vcpu)
648{
Rusty Russellb114b082007-07-30 21:13:43 +1000649 unsigned after_mxcsr_mask;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800650
Rusty Russell9bd01502007-07-30 16:29:56 +1000651 /* Initialize guest FPU by resetting ours and saving into guest's */
652 preempt_disable();
Rusty Russellb114b082007-07-30 21:13:43 +1000653 fx_save(&vcpu->host_fx_image);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800654 fpu_init();
Rusty Russellb114b082007-07-30 21:13:43 +1000655 fx_save(&vcpu->guest_fx_image);
656 fx_restore(&vcpu->host_fx_image);
Rusty Russell9bd01502007-07-30 16:29:56 +1000657 preempt_enable();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800658
Amit Shah380102c2007-08-25 11:35:52 +0300659 vcpu->cr0 |= X86_CR0_ET;
Rusty Russellb114b082007-07-30 21:13:43 +1000660 after_mxcsr_mask = offsetof(struct i387_fxsave_struct, st_space);
661 vcpu->guest_fx_image.mxcsr = 0x1f80;
662 memset((void *)&vcpu->guest_fx_image + after_mxcsr_mask,
663 0, sizeof(struct i387_fxsave_struct) - after_mxcsr_mask);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800664}
665EXPORT_SYMBOL_GPL(fx_init);
666
667/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800668 * Allocate some memory and give it an address in the guest physical address
669 * space.
670 *
671 * Discontiguous memory is allowed, mostly for framebuffers.
672 */
Avi Kivity2c6f5df2007-02-20 18:27:58 +0200673static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
674 struct kvm_memory_region *mem)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800675{
676 int r;
677 gfn_t base_gfn;
678 unsigned long npages;
679 unsigned long i;
680 struct kvm_memory_slot *memslot;
681 struct kvm_memory_slot old, new;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800682
683 r = -EINVAL;
684 /* General sanity checks */
685 if (mem->memory_size & (PAGE_SIZE - 1))
686 goto out;
687 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
688 goto out;
689 if (mem->slot >= KVM_MEMORY_SLOTS)
690 goto out;
691 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
692 goto out;
693
694 memslot = &kvm->memslots[mem->slot];
695 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
696 npages = mem->memory_size >> PAGE_SHIFT;
697
698 if (!npages)
699 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
700
Shaohua Li11ec2802007-07-23 14:51:37 +0800701 mutex_lock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800702
Avi Kivity6aa8b732006-12-10 02:21:36 -0800703 new = old = *memslot;
704
705 new.base_gfn = base_gfn;
706 new.npages = npages;
707 new.flags = mem->flags;
708
709 /* Disallow changing a memory slot's size. */
710 r = -EINVAL;
711 if (npages && old.npages && npages != old.npages)
712 goto out_unlock;
713
714 /* Check for overlaps */
715 r = -EEXIST;
716 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
717 struct kvm_memory_slot *s = &kvm->memslots[i];
718
719 if (s == memslot)
720 continue;
721 if (!((base_gfn + npages <= s->base_gfn) ||
722 (base_gfn >= s->base_gfn + s->npages)))
723 goto out_unlock;
724 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800725
726 /* Deallocate if slot is being removed */
727 if (!npages)
Al Viro8b6d44c2007-02-09 16:38:40 +0000728 new.phys_mem = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800729
730 /* Free page dirty bitmap if unneeded */
731 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
Al Viro8b6d44c2007-02-09 16:38:40 +0000732 new.dirty_bitmap = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800733
734 r = -ENOMEM;
735
736 /* Allocate if a slot is being created */
737 if (npages && !new.phys_mem) {
738 new.phys_mem = vmalloc(npages * sizeof(struct page *));
739
740 if (!new.phys_mem)
Laurent Vivier0d8d2bd2007-08-30 14:56:21 +0200741 goto out_unlock;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800742
743 memset(new.phys_mem, 0, npages * sizeof(struct page *));
744 for (i = 0; i < npages; ++i) {
745 new.phys_mem[i] = alloc_page(GFP_HIGHUSER
746 | __GFP_ZERO);
747 if (!new.phys_mem[i])
Laurent Vivier0d8d2bd2007-08-30 14:56:21 +0200748 goto out_unlock;
Markus Rechberger5972e952007-02-19 14:37:47 +0200749 set_page_private(new.phys_mem[i],0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800750 }
751 }
752
753 /* Allocate page dirty bitmap if needed */
754 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
755 unsigned dirty_bytes = ALIGN(npages, BITS_PER_LONG) / 8;
756
757 new.dirty_bitmap = vmalloc(dirty_bytes);
758 if (!new.dirty_bitmap)
Laurent Vivier0d8d2bd2007-08-30 14:56:21 +0200759 goto out_unlock;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800760 memset(new.dirty_bitmap, 0, dirty_bytes);
761 }
762
Avi Kivity6aa8b732006-12-10 02:21:36 -0800763 if (mem->slot >= kvm->nmemslots)
764 kvm->nmemslots = mem->slot + 1;
765
766 *memslot = new;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800767
Avi Kivity90cb0522007-07-17 13:04:56 +0300768 kvm_mmu_slot_remove_write_access(kvm, mem->slot);
769 kvm_flush_remote_tlbs(kvm);
770
Shaohua Li11ec2802007-07-23 14:51:37 +0800771 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800772
Avi Kivity6aa8b732006-12-10 02:21:36 -0800773 kvm_free_physmem_slot(&old, &new);
774 return 0;
775
776out_unlock:
Shaohua Li11ec2802007-07-23 14:51:37 +0800777 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800778 kvm_free_physmem_slot(&new, &old);
779out:
780 return r;
781}
782
783/*
784 * Get (and clear) the dirty memory log for a memory slot.
785 */
Avi Kivity2c6f5df2007-02-20 18:27:58 +0200786static int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
787 struct kvm_dirty_log *log)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800788{
789 struct kvm_memory_slot *memslot;
790 int r, i;
791 int n;
792 unsigned long any = 0;
793
Shaohua Li11ec2802007-07-23 14:51:37 +0800794 mutex_lock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800795
Avi Kivity6aa8b732006-12-10 02:21:36 -0800796 r = -EINVAL;
797 if (log->slot >= KVM_MEMORY_SLOTS)
798 goto out;
799
800 memslot = &kvm->memslots[log->slot];
801 r = -ENOENT;
802 if (!memslot->dirty_bitmap)
803 goto out;
804
Uri Lublincd1a4a92007-02-22 16:43:09 +0200805 n = ALIGN(memslot->npages, BITS_PER_LONG) / 8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800806
Uri Lublincd1a4a92007-02-22 16:43:09 +0200807 for (i = 0; !any && i < n/sizeof(long); ++i)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800808 any = memslot->dirty_bitmap[i];
809
810 r = -EFAULT;
811 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
812 goto out;
813
Rusty Russell39214912007-07-31 19:57:47 +1000814 /* If nothing is dirty, don't bother messing with page tables. */
815 if (any) {
Rusty Russell39214912007-07-31 19:57:47 +1000816 kvm_mmu_slot_remove_write_access(kvm, log->slot);
817 kvm_flush_remote_tlbs(kvm);
818 memset(memslot->dirty_bitmap, 0, n);
Rusty Russell39214912007-07-31 19:57:47 +1000819 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800820
821 r = 0;
822
823out:
Shaohua Li11ec2802007-07-23 14:51:37 +0800824 mutex_unlock(&kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800825 return r;
826}
827
Avi Kivitye8207542007-03-30 16:54:30 +0300828/*
829 * Set a new alias region. Aliases map a portion of physical memory into
830 * another portion. This is useful for memory windows, for example the PC
831 * VGA region.
832 */
833static int kvm_vm_ioctl_set_memory_alias(struct kvm *kvm,
834 struct kvm_memory_alias *alias)
835{
836 int r, n;
837 struct kvm_mem_alias *p;
838
839 r = -EINVAL;
840 /* General sanity checks */
841 if (alias->memory_size & (PAGE_SIZE - 1))
842 goto out;
843 if (alias->guest_phys_addr & (PAGE_SIZE - 1))
844 goto out;
845 if (alias->slot >= KVM_ALIAS_SLOTS)
846 goto out;
847 if (alias->guest_phys_addr + alias->memory_size
848 < alias->guest_phys_addr)
849 goto out;
850 if (alias->target_phys_addr + alias->memory_size
851 < alias->target_phys_addr)
852 goto out;
853
Shaohua Li11ec2802007-07-23 14:51:37 +0800854 mutex_lock(&kvm->lock);
Avi Kivitye8207542007-03-30 16:54:30 +0300855
856 p = &kvm->aliases[alias->slot];
857 p->base_gfn = alias->guest_phys_addr >> PAGE_SHIFT;
858 p->npages = alias->memory_size >> PAGE_SHIFT;
859 p->target_gfn = alias->target_phys_addr >> PAGE_SHIFT;
860
861 for (n = KVM_ALIAS_SLOTS; n > 0; --n)
862 if (kvm->aliases[n - 1].npages)
863 break;
864 kvm->naliases = n;
865
Avi Kivity90cb0522007-07-17 13:04:56 +0300866 kvm_mmu_zap_all(kvm);
Avi Kivitye8207542007-03-30 16:54:30 +0300867
Shaohua Li11ec2802007-07-23 14:51:37 +0800868 mutex_unlock(&kvm->lock);
Avi Kivitye8207542007-03-30 16:54:30 +0300869
870 return 0;
871
872out:
873 return r;
874}
875
He, Qing6ceb9d72007-07-26 11:05:18 +0300876static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
877{
878 int r;
879
880 r = 0;
881 switch (chip->chip_id) {
882 case KVM_IRQCHIP_PIC_MASTER:
883 memcpy (&chip->chip.pic,
884 &pic_irqchip(kvm)->pics[0],
885 sizeof(struct kvm_pic_state));
886 break;
887 case KVM_IRQCHIP_PIC_SLAVE:
888 memcpy (&chip->chip.pic,
889 &pic_irqchip(kvm)->pics[1],
890 sizeof(struct kvm_pic_state));
891 break;
He, Qing6bf9e962007-08-05 10:49:16 +0300892 case KVM_IRQCHIP_IOAPIC:
893 memcpy (&chip->chip.ioapic,
894 ioapic_irqchip(kvm),
895 sizeof(struct kvm_ioapic_state));
896 break;
He, Qing6ceb9d72007-07-26 11:05:18 +0300897 default:
898 r = -EINVAL;
899 break;
900 }
901 return r;
902}
903
904static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
905{
906 int r;
907
908 r = 0;
909 switch (chip->chip_id) {
910 case KVM_IRQCHIP_PIC_MASTER:
911 memcpy (&pic_irqchip(kvm)->pics[0],
912 &chip->chip.pic,
913 sizeof(struct kvm_pic_state));
914 break;
915 case KVM_IRQCHIP_PIC_SLAVE:
916 memcpy (&pic_irqchip(kvm)->pics[1],
917 &chip->chip.pic,
918 sizeof(struct kvm_pic_state));
919 break;
He, Qing6bf9e962007-08-05 10:49:16 +0300920 case KVM_IRQCHIP_IOAPIC:
921 memcpy (ioapic_irqchip(kvm),
922 &chip->chip.ioapic,
923 sizeof(struct kvm_ioapic_state));
924 break;
He, Qing6ceb9d72007-07-26 11:05:18 +0300925 default:
926 r = -EINVAL;
927 break;
928 }
929 kvm_pic_update_irq(pic_irqchip(kvm));
930 return r;
931}
932
Avi Kivitye8207542007-03-30 16:54:30 +0300933static gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
934{
935 int i;
936 struct kvm_mem_alias *alias;
937
938 for (i = 0; i < kvm->naliases; ++i) {
939 alias = &kvm->aliases[i];
940 if (gfn >= alias->base_gfn
941 && gfn < alias->base_gfn + alias->npages)
942 return alias->target_gfn + gfn - alias->base_gfn;
943 }
944 return gfn;
945}
946
947static struct kvm_memory_slot *__gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800948{
949 int i;
950
951 for (i = 0; i < kvm->nmemslots; ++i) {
952 struct kvm_memory_slot *memslot = &kvm->memslots[i];
953
954 if (gfn >= memslot->base_gfn
955 && gfn < memslot->base_gfn + memslot->npages)
956 return memslot;
957 }
Al Viro8b6d44c2007-02-09 16:38:40 +0000958 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800959}
Avi Kivitye8207542007-03-30 16:54:30 +0300960
961struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
962{
963 gfn = unalias_gfn(kvm, gfn);
964 return __gfn_to_memslot(kvm, gfn);
965}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800966
Avi Kivity954bbbc22007-03-30 14:02:32 +0300967struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
968{
969 struct kvm_memory_slot *slot;
970
Avi Kivitye8207542007-03-30 16:54:30 +0300971 gfn = unalias_gfn(kvm, gfn);
972 slot = __gfn_to_memslot(kvm, gfn);
Avi Kivity954bbbc22007-03-30 14:02:32 +0300973 if (!slot)
974 return NULL;
975 return slot->phys_mem[gfn - slot->base_gfn];
976}
977EXPORT_SYMBOL_GPL(gfn_to_page);
978
Rusty Russell7e9d6192007-07-31 20:41:14 +1000979/* WARNING: Does not work on aliased pages. */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800980void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
981{
Nguyen Anh Quynh31389942007-06-05 10:35:19 +0300982 struct kvm_memory_slot *memslot;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800983
Rusty Russell7e9d6192007-07-31 20:41:14 +1000984 memslot = __gfn_to_memslot(kvm, gfn);
985 if (memslot && memslot->dirty_bitmap) {
986 unsigned long rel_gfn = gfn - memslot->base_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800987
Rusty Russell7e9d6192007-07-31 20:41:14 +1000988 /* avoid RMW */
989 if (!test_bit(rel_gfn, memslot->dirty_bitmap))
990 set_bit(rel_gfn, memslot->dirty_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991 }
992}
993
Laurent Viviere7d5d762007-07-30 13:41:19 +0300994int emulator_read_std(unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +0300995 void *val,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800996 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +0300997 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800998{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999 void *data = val;
1000
1001 while (bytes) {
1002 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, addr);
1003 unsigned offset = addr & (PAGE_SIZE-1);
1004 unsigned tocopy = min(bytes, (unsigned)PAGE_SIZE - offset);
1005 unsigned long pfn;
Avi Kivity954bbbc22007-03-30 14:02:32 +03001006 struct page *page;
1007 void *page_virt;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008
1009 if (gpa == UNMAPPED_GVA)
1010 return X86EMUL_PROPAGATE_FAULT;
1011 pfn = gpa >> PAGE_SHIFT;
Avi Kivity954bbbc22007-03-30 14:02:32 +03001012 page = gfn_to_page(vcpu->kvm, pfn);
1013 if (!page)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001014 return X86EMUL_UNHANDLEABLE;
Avi Kivity954bbbc22007-03-30 14:02:32 +03001015 page_virt = kmap_atomic(page, KM_USER0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001016
Avi Kivity954bbbc22007-03-30 14:02:32 +03001017 memcpy(data, page_virt + offset, tocopy);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001018
Avi Kivity954bbbc22007-03-30 14:02:32 +03001019 kunmap_atomic(page_virt, KM_USER0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001020
1021 bytes -= tocopy;
1022 data += tocopy;
1023 addr += tocopy;
1024 }
1025
1026 return X86EMUL_CONTINUE;
1027}
Laurent Viviere7d5d762007-07-30 13:41:19 +03001028EXPORT_SYMBOL_GPL(emulator_read_std);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001029
1030static int emulator_write_std(unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +03001031 const void *val,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001033 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034{
Rusty Russellf0242472007-08-01 10:48:02 +10001035 pr_unimpl(vcpu, "emulator_write_std: addr %lx n %d\n", addr, bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001036 return X86EMUL_UNHANDLEABLE;
1037}
1038
Eddie Dong97222cc2007-09-12 10:58:04 +03001039/*
1040 * Only apic need an MMIO device hook, so shortcut now..
1041 */
1042static struct kvm_io_device *vcpu_find_pervcpu_dev(struct kvm_vcpu *vcpu,
1043 gpa_t addr)
1044{
1045 struct kvm_io_device *dev;
1046
1047 if (vcpu->apic) {
1048 dev = &vcpu->apic->dev;
1049 if (dev->in_range(dev, addr))
1050 return dev;
1051 }
1052 return NULL;
1053}
1054
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001055static struct kvm_io_device *vcpu_find_mmio_dev(struct kvm_vcpu *vcpu,
1056 gpa_t addr)
1057{
Eddie Dong97222cc2007-09-12 10:58:04 +03001058 struct kvm_io_device *dev;
1059
1060 dev = vcpu_find_pervcpu_dev(vcpu, addr);
1061 if (dev == NULL)
1062 dev = kvm_io_bus_find_dev(&vcpu->kvm->mmio_bus, addr);
1063 return dev;
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001064}
1065
Eddie Dong74906342007-06-19 18:05:03 +03001066static struct kvm_io_device *vcpu_find_pio_dev(struct kvm_vcpu *vcpu,
1067 gpa_t addr)
1068{
1069 return kvm_io_bus_find_dev(&vcpu->kvm->pio_bus, addr);
1070}
1071
Avi Kivity6aa8b732006-12-10 02:21:36 -08001072static int emulator_read_emulated(unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +03001073 void *val,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001074 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001075 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001076{
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001077 struct kvm_io_device *mmio_dev;
1078 gpa_t gpa;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001079
1080 if (vcpu->mmio_read_completed) {
1081 memcpy(val, vcpu->mmio_data, bytes);
1082 vcpu->mmio_read_completed = 0;
1083 return X86EMUL_CONTINUE;
Laurent Viviercebff022007-07-30 13:35:24 +03001084 } else if (emulator_read_std(addr, val, bytes, vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001085 == X86EMUL_CONTINUE)
1086 return X86EMUL_CONTINUE;
Avi Kivityd27d4ac2007-02-19 14:37:46 +02001087
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001088 gpa = vcpu->mmu.gva_to_gpa(vcpu, addr);
1089 if (gpa == UNMAPPED_GVA)
1090 return X86EMUL_PROPAGATE_FAULT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001091
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001092 /*
1093 * Is this MMIO handled locally?
1094 */
1095 mmio_dev = vcpu_find_mmio_dev(vcpu, gpa);
1096 if (mmio_dev) {
1097 kvm_iodevice_read(mmio_dev, gpa, bytes, val);
1098 return X86EMUL_CONTINUE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001099 }
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001100
1101 vcpu->mmio_needed = 1;
1102 vcpu->mmio_phys_addr = gpa;
1103 vcpu->mmio_size = bytes;
1104 vcpu->mmio_is_write = 0;
1105
1106 return X86EMUL_UNHANDLEABLE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001107}
1108
Avi Kivityda4a00f2007-01-05 16:36:44 -08001109static int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
Avi Kivity4c690a12007-04-22 15:28:19 +03001110 const void *val, int bytes)
Avi Kivityda4a00f2007-01-05 16:36:44 -08001111{
Avi Kivityda4a00f2007-01-05 16:36:44 -08001112 struct page *page;
1113 void *virt;
1114
1115 if (((gpa + bytes - 1) >> PAGE_SHIFT) != (gpa >> PAGE_SHIFT))
1116 return 0;
Avi Kivity954bbbc22007-03-30 14:02:32 +03001117 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
1118 if (!page)
Avi Kivityda4a00f2007-01-05 16:36:44 -08001119 return 0;
Uri Lublinab51a432007-02-21 18:25:21 +02001120 mark_page_dirty(vcpu->kvm, gpa >> PAGE_SHIFT);
Avi Kivityda4a00f2007-01-05 16:36:44 -08001121 virt = kmap_atomic(page, KM_USER0);
Shaohua Life551882007-07-23 14:51:39 +08001122 kvm_mmu_pte_write(vcpu, gpa, val, bytes);
Avi Kivity7cfa4b02007-07-23 18:33:14 +03001123 memcpy(virt + offset_in_page(gpa), val, bytes);
Avi Kivityda4a00f2007-01-05 16:36:44 -08001124 kunmap_atomic(virt, KM_USER0);
Avi Kivityda4a00f2007-01-05 16:36:44 -08001125 return 1;
1126}
1127
Avi Kivityb0fcd902007-07-22 18:48:54 +03001128static int emulator_write_emulated_onepage(unsigned long addr,
1129 const void *val,
1130 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001131 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001132{
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001133 struct kvm_io_device *mmio_dev;
1134 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001135
Avi Kivityc9047f52007-04-17 10:53:22 +03001136 if (gpa == UNMAPPED_GVA) {
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001137 kvm_x86_ops->inject_page_fault(vcpu, addr, 2);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001138 return X86EMUL_PROPAGATE_FAULT;
Avi Kivityc9047f52007-04-17 10:53:22 +03001139 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001140
Avi Kivityda4a00f2007-01-05 16:36:44 -08001141 if (emulator_write_phys(vcpu, gpa, val, bytes))
1142 return X86EMUL_CONTINUE;
1143
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04001144 /*
1145 * Is this MMIO handled locally?
1146 */
1147 mmio_dev = vcpu_find_mmio_dev(vcpu, gpa);
1148 if (mmio_dev) {
1149 kvm_iodevice_write(mmio_dev, gpa, bytes, val);
1150 return X86EMUL_CONTINUE;
1151 }
1152
Avi Kivity6aa8b732006-12-10 02:21:36 -08001153 vcpu->mmio_needed = 1;
1154 vcpu->mmio_phys_addr = gpa;
1155 vcpu->mmio_size = bytes;
1156 vcpu->mmio_is_write = 1;
Avi Kivity4c690a12007-04-22 15:28:19 +03001157 memcpy(vcpu->mmio_data, val, bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001158
1159 return X86EMUL_CONTINUE;
1160}
1161
Laurent Viviere7d5d762007-07-30 13:41:19 +03001162int emulator_write_emulated(unsigned long addr,
Avi Kivityb0fcd902007-07-22 18:48:54 +03001163 const void *val,
1164 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001165 struct kvm_vcpu *vcpu)
Avi Kivityb0fcd902007-07-22 18:48:54 +03001166{
1167 /* Crossing a page boundary? */
1168 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
1169 int rc, now;
1170
1171 now = -addr & ~PAGE_MASK;
Laurent Viviercebff022007-07-30 13:35:24 +03001172 rc = emulator_write_emulated_onepage(addr, val, now, vcpu);
Avi Kivityb0fcd902007-07-22 18:48:54 +03001173 if (rc != X86EMUL_CONTINUE)
1174 return rc;
1175 addr += now;
1176 val += now;
1177 bytes -= now;
1178 }
Laurent Viviercebff022007-07-30 13:35:24 +03001179 return emulator_write_emulated_onepage(addr, val, bytes, vcpu);
Avi Kivityb0fcd902007-07-22 18:48:54 +03001180}
Laurent Viviere7d5d762007-07-30 13:41:19 +03001181EXPORT_SYMBOL_GPL(emulator_write_emulated);
Avi Kivityb0fcd902007-07-22 18:48:54 +03001182
Avi Kivity6aa8b732006-12-10 02:21:36 -08001183static int emulator_cmpxchg_emulated(unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +03001184 const void *old,
1185 const void *new,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001186 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +03001187 struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001188{
1189 static int reported;
1190
1191 if (!reported) {
1192 reported = 1;
1193 printk(KERN_WARNING "kvm: emulating exchange as write\n");
1194 }
Laurent Viviercebff022007-07-30 13:35:24 +03001195 return emulator_write_emulated(addr, new, bytes, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001196}
1197
1198static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
1199{
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001200 return kvm_x86_ops->get_segment_base(vcpu, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001201}
1202
1203int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address)
1204{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001205 return X86EMUL_CONTINUE;
1206}
1207
1208int emulate_clts(struct kvm_vcpu *vcpu)
1209{
Rusty Russell81f50e32007-09-06 01:20:38 +10001210 vcpu->cr0 &= ~X86_CR0_TS;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001211 kvm_x86_ops->set_cr0(vcpu, vcpu->cr0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001212 return X86EMUL_CONTINUE;
1213}
1214
1215int emulator_get_dr(struct x86_emulate_ctxt* ctxt, int dr, unsigned long *dest)
1216{
1217 struct kvm_vcpu *vcpu = ctxt->vcpu;
1218
1219 switch (dr) {
1220 case 0 ... 3:
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001221 *dest = kvm_x86_ops->get_dr(vcpu, dr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001222 return X86EMUL_CONTINUE;
1223 default:
Rusty Russellf0242472007-08-01 10:48:02 +10001224 pr_unimpl(vcpu, "%s: unexpected dr %u\n", __FUNCTION__, dr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001225 return X86EMUL_UNHANDLEABLE;
1226 }
1227}
1228
1229int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr, unsigned long value)
1230{
1231 unsigned long mask = (ctxt->mode == X86EMUL_MODE_PROT64) ? ~0ULL : ~0U;
1232 int exception;
1233
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001234 kvm_x86_ops->set_dr(ctxt->vcpu, dr, value & mask, &exception);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001235 if (exception) {
1236 /* FIXME: better handling */
1237 return X86EMUL_UNHANDLEABLE;
1238 }
1239 return X86EMUL_CONTINUE;
1240}
1241
1242static void report_emulation_failure(struct x86_emulate_ctxt *ctxt)
1243{
1244 static int reported;
1245 u8 opcodes[4];
1246 unsigned long rip = ctxt->vcpu->rip;
1247 unsigned long rip_linear;
1248
1249 rip_linear = rip + get_segment_base(ctxt->vcpu, VCPU_SREG_CS);
1250
1251 if (reported)
1252 return;
1253
Laurent Viviercebff022007-07-30 13:35:24 +03001254 emulator_read_std(rip_linear, (void *)opcodes, 4, ctxt->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001255
1256 printk(KERN_ERR "emulation failed but !mmio_needed?"
1257 " rip %lx %02x %02x %02x %02x\n",
1258 rip, opcodes[0], opcodes[1], opcodes[2], opcodes[3]);
1259 reported = 1;
1260}
1261
1262struct x86_emulate_ops emulate_ops = {
1263 .read_std = emulator_read_std,
1264 .write_std = emulator_write_std,
1265 .read_emulated = emulator_read_emulated,
1266 .write_emulated = emulator_write_emulated,
1267 .cmpxchg_emulated = emulator_cmpxchg_emulated,
1268};
1269
1270int emulate_instruction(struct kvm_vcpu *vcpu,
1271 struct kvm_run *run,
1272 unsigned long cr2,
1273 u16 error_code)
1274{
1275 struct x86_emulate_ctxt emulate_ctxt;
1276 int r;
1277 int cs_db, cs_l;
1278
Avi Kivitye7df56e2007-03-14 15:54:54 +02001279 vcpu->mmio_fault_cr2 = cr2;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001280 kvm_x86_ops->cache_regs(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001281
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001282 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001283
1284 emulate_ctxt.vcpu = vcpu;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001285 emulate_ctxt.eflags = kvm_x86_ops->get_rflags(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001286 emulate_ctxt.cr2 = cr2;
1287 emulate_ctxt.mode = (emulate_ctxt.eflags & X86_EFLAGS_VM)
1288 ? X86EMUL_MODE_REAL : cs_l
1289 ? X86EMUL_MODE_PROT64 : cs_db
1290 ? X86EMUL_MODE_PROT32 : X86EMUL_MODE_PROT16;
1291
1292 if (emulate_ctxt.mode == X86EMUL_MODE_PROT64) {
1293 emulate_ctxt.cs_base = 0;
1294 emulate_ctxt.ds_base = 0;
1295 emulate_ctxt.es_base = 0;
1296 emulate_ctxt.ss_base = 0;
1297 } else {
1298 emulate_ctxt.cs_base = get_segment_base(vcpu, VCPU_SREG_CS);
1299 emulate_ctxt.ds_base = get_segment_base(vcpu, VCPU_SREG_DS);
1300 emulate_ctxt.es_base = get_segment_base(vcpu, VCPU_SREG_ES);
1301 emulate_ctxt.ss_base = get_segment_base(vcpu, VCPU_SREG_SS);
1302 }
1303
1304 emulate_ctxt.gs_base = get_segment_base(vcpu, VCPU_SREG_GS);
1305 emulate_ctxt.fs_base = get_segment_base(vcpu, VCPU_SREG_FS);
1306
1307 vcpu->mmio_is_write = 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03001308 vcpu->pio.string = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001309 r = x86_emulate_memop(&emulate_ctxt, &emulate_ops);
Laurent Viviere70669a2007-08-05 10:36:40 +03001310 if (vcpu->pio.string)
1311 return EMULATE_DO_MMIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001312
1313 if ((r || vcpu->mmio_is_write) && run) {
Jeff Dike8fc0d082007-07-17 12:26:59 -04001314 run->exit_reason = KVM_EXIT_MMIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001315 run->mmio.phys_addr = vcpu->mmio_phys_addr;
1316 memcpy(run->mmio.data, vcpu->mmio_data, 8);
1317 run->mmio.len = vcpu->mmio_size;
1318 run->mmio.is_write = vcpu->mmio_is_write;
1319 }
1320
1321 if (r) {
Avi Kivitya4360362007-01-05 16:36:45 -08001322 if (kvm_mmu_unprotect_page_virt(vcpu, cr2))
1323 return EMULATE_DONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001324 if (!vcpu->mmio_needed) {
1325 report_emulation_failure(&emulate_ctxt);
1326 return EMULATE_FAIL;
1327 }
1328 return EMULATE_DO_MMIO;
1329 }
1330
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001331 kvm_x86_ops->decache_regs(vcpu);
1332 kvm_x86_ops->set_rflags(vcpu, emulate_ctxt.eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001333
Avi Kivity02c83202007-04-29 15:02:17 +03001334 if (vcpu->mmio_is_write) {
1335 vcpu->mmio_needed = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001336 return EMULATE_DO_MMIO;
Avi Kivity02c83202007-04-29 15:02:17 +03001337 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001338
1339 return EMULATE_DONE;
1340}
1341EXPORT_SYMBOL_GPL(emulate_instruction);
1342
Eddie Dongb6958ce2007-07-18 12:15:21 +03001343/*
1344 * The vCPU has executed a HLT instruction with in-kernel mode enabled.
1345 */
He, Qingc5ec1532007-09-03 17:07:41 +03001346static void kvm_vcpu_block(struct kvm_vcpu *vcpu)
Eddie Dongb6958ce2007-07-18 12:15:21 +03001347{
1348 DECLARE_WAITQUEUE(wait, current);
1349
1350 add_wait_queue(&vcpu->wq, &wait);
1351
1352 /*
1353 * We will block until either an interrupt or a signal wakes us up
1354 */
He, Qingc5ec1532007-09-03 17:07:41 +03001355 while (!kvm_cpu_has_interrupt(vcpu)
1356 && !signal_pending(current)
1357 && vcpu->mp_state != VCPU_MP_STATE_RUNNABLE
1358 && vcpu->mp_state != VCPU_MP_STATE_SIPI_RECEIVED) {
Eddie Dongb6958ce2007-07-18 12:15:21 +03001359 set_current_state(TASK_INTERRUPTIBLE);
1360 vcpu_put(vcpu);
1361 schedule();
1362 vcpu_load(vcpu);
1363 }
1364
He, Qingc5ec1532007-09-03 17:07:41 +03001365 __set_current_state(TASK_RUNNING);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001366 remove_wait_queue(&vcpu->wq, &wait);
Eddie Dongb6958ce2007-07-18 12:15:21 +03001367}
1368
Avi Kivityd3bef152007-06-05 15:53:05 +03001369int kvm_emulate_halt(struct kvm_vcpu *vcpu)
1370{
Avi Kivityd3bef152007-06-05 15:53:05 +03001371 ++vcpu->stat.halt_exits;
Eddie Dongb6958ce2007-07-18 12:15:21 +03001372 if (irqchip_in_kernel(vcpu->kvm)) {
He, Qingc5ec1532007-09-03 17:07:41 +03001373 vcpu->mp_state = VCPU_MP_STATE_HALTED;
1374 kvm_vcpu_block(vcpu);
1375 if (vcpu->mp_state != VCPU_MP_STATE_RUNNABLE)
1376 return -EINTR;
Eddie Dongb6958ce2007-07-18 12:15:21 +03001377 return 1;
1378 } else {
1379 vcpu->run->exit_reason = KVM_EXIT_HLT;
1380 return 0;
1381 }
Avi Kivityd3bef152007-06-05 15:53:05 +03001382}
1383EXPORT_SYMBOL_GPL(kvm_emulate_halt);
1384
Avi Kivity270fd9b2007-02-19 14:37:47 +02001385int kvm_hypercall(struct kvm_vcpu *vcpu, struct kvm_run *run)
1386{
1387 unsigned long nr, a0, a1, a2, a3, a4, a5, ret;
1388
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001389 kvm_x86_ops->cache_regs(vcpu);
Avi Kivity270fd9b2007-02-19 14:37:47 +02001390 ret = -KVM_EINVAL;
1391#ifdef CONFIG_X86_64
1392 if (is_long_mode(vcpu)) {
1393 nr = vcpu->regs[VCPU_REGS_RAX];
1394 a0 = vcpu->regs[VCPU_REGS_RDI];
1395 a1 = vcpu->regs[VCPU_REGS_RSI];
1396 a2 = vcpu->regs[VCPU_REGS_RDX];
1397 a3 = vcpu->regs[VCPU_REGS_RCX];
1398 a4 = vcpu->regs[VCPU_REGS_R8];
1399 a5 = vcpu->regs[VCPU_REGS_R9];
1400 } else
1401#endif
1402 {
1403 nr = vcpu->regs[VCPU_REGS_RBX] & -1u;
1404 a0 = vcpu->regs[VCPU_REGS_RAX] & -1u;
1405 a1 = vcpu->regs[VCPU_REGS_RCX] & -1u;
1406 a2 = vcpu->regs[VCPU_REGS_RDX] & -1u;
1407 a3 = vcpu->regs[VCPU_REGS_RSI] & -1u;
1408 a4 = vcpu->regs[VCPU_REGS_RDI] & -1u;
1409 a5 = vcpu->regs[VCPU_REGS_RBP] & -1u;
1410 }
1411 switch (nr) {
1412 default:
Jeff Dike519ef352007-07-16 15:24:47 -04001413 run->hypercall.nr = nr;
Avi Kivityb4e63f52007-03-04 13:59:30 +02001414 run->hypercall.args[0] = a0;
1415 run->hypercall.args[1] = a1;
1416 run->hypercall.args[2] = a2;
1417 run->hypercall.args[3] = a3;
1418 run->hypercall.args[4] = a4;
1419 run->hypercall.args[5] = a5;
1420 run->hypercall.ret = ret;
1421 run->hypercall.longmode = is_long_mode(vcpu);
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001422 kvm_x86_ops->decache_regs(vcpu);
Avi Kivityb4e63f52007-03-04 13:59:30 +02001423 return 0;
Avi Kivity270fd9b2007-02-19 14:37:47 +02001424 }
1425 vcpu->regs[VCPU_REGS_RAX] = ret;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001426 kvm_x86_ops->decache_regs(vcpu);
Avi Kivity270fd9b2007-02-19 14:37:47 +02001427 return 1;
1428}
1429EXPORT_SYMBOL_GPL(kvm_hypercall);
1430
Avi Kivity6aa8b732006-12-10 02:21:36 -08001431static u64 mk_cr_64(u64 curr_cr, u32 new_val)
1432{
1433 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
1434}
1435
1436void realmode_lgdt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
1437{
1438 struct descriptor_table dt = { limit, base };
1439
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001440 kvm_x86_ops->set_gdt(vcpu, &dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001441}
1442
1443void realmode_lidt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
1444{
1445 struct descriptor_table dt = { limit, base };
1446
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001447 kvm_x86_ops->set_idt(vcpu, &dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001448}
1449
1450void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
1451 unsigned long *rflags)
1452{
1453 lmsw(vcpu, msw);
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001454 *rflags = kvm_x86_ops->get_rflags(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001455}
1456
1457unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr)
1458{
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001459 kvm_x86_ops->decache_cr4_guest_bits(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001460 switch (cr) {
1461 case 0:
1462 return vcpu->cr0;
1463 case 2:
1464 return vcpu->cr2;
1465 case 3:
1466 return vcpu->cr3;
1467 case 4:
1468 return vcpu->cr4;
1469 default:
1470 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __FUNCTION__, cr);
1471 return 0;
1472 }
1473}
1474
1475void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long val,
1476 unsigned long *rflags)
1477{
1478 switch (cr) {
1479 case 0:
1480 set_cr0(vcpu, mk_cr_64(vcpu->cr0, val));
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001481 *rflags = kvm_x86_ops->get_rflags(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001482 break;
1483 case 2:
1484 vcpu->cr2 = val;
1485 break;
1486 case 3:
1487 set_cr3(vcpu, val);
1488 break;
1489 case 4:
1490 set_cr4(vcpu, mk_cr_64(vcpu->cr4, val));
1491 break;
1492 default:
1493 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __FUNCTION__, cr);
1494 }
1495}
1496
Ingo Molnar102d8322007-02-19 14:37:47 +02001497/*
1498 * Register the para guest with the host:
1499 */
1500static int vcpu_register_para(struct kvm_vcpu *vcpu, gpa_t para_state_gpa)
1501{
1502 struct kvm_vcpu_para_state *para_state;
1503 hpa_t para_state_hpa, hypercall_hpa;
1504 struct page *para_state_page;
1505 unsigned char *hypercall;
1506 gpa_t hypercall_gpa;
1507
1508 printk(KERN_DEBUG "kvm: guest trying to enter paravirtual mode\n");
1509 printk(KERN_DEBUG ".... para_state_gpa: %08Lx\n", para_state_gpa);
1510
1511 /*
1512 * Needs to be page aligned:
1513 */
1514 if (para_state_gpa != PAGE_ALIGN(para_state_gpa))
1515 goto err_gp;
1516
1517 para_state_hpa = gpa_to_hpa(vcpu, para_state_gpa);
1518 printk(KERN_DEBUG ".... para_state_hpa: %08Lx\n", para_state_hpa);
1519 if (is_error_hpa(para_state_hpa))
1520 goto err_gp;
1521
Uri Lublinab51a432007-02-21 18:25:21 +02001522 mark_page_dirty(vcpu->kvm, para_state_gpa >> PAGE_SHIFT);
Ingo Molnar102d8322007-02-19 14:37:47 +02001523 para_state_page = pfn_to_page(para_state_hpa >> PAGE_SHIFT);
Shaohua Life551882007-07-23 14:51:39 +08001524 para_state = kmap(para_state_page);
Ingo Molnar102d8322007-02-19 14:37:47 +02001525
1526 printk(KERN_DEBUG ".... guest version: %d\n", para_state->guest_version);
1527 printk(KERN_DEBUG ".... size: %d\n", para_state->size);
1528
1529 para_state->host_version = KVM_PARA_API_VERSION;
1530 /*
1531 * We cannot support guests that try to register themselves
1532 * with a newer API version than the host supports:
1533 */
1534 if (para_state->guest_version > KVM_PARA_API_VERSION) {
1535 para_state->ret = -KVM_EINVAL;
1536 goto err_kunmap_skip;
1537 }
1538
1539 hypercall_gpa = para_state->hypercall_gpa;
1540 hypercall_hpa = gpa_to_hpa(vcpu, hypercall_gpa);
1541 printk(KERN_DEBUG ".... hypercall_hpa: %08Lx\n", hypercall_hpa);
1542 if (is_error_hpa(hypercall_hpa)) {
1543 para_state->ret = -KVM_EINVAL;
1544 goto err_kunmap_skip;
1545 }
1546
1547 printk(KERN_DEBUG "kvm: para guest successfully registered.\n");
1548 vcpu->para_state_page = para_state_page;
1549 vcpu->para_state_gpa = para_state_gpa;
1550 vcpu->hypercall_gpa = hypercall_gpa;
1551
Uri Lublinab51a432007-02-21 18:25:21 +02001552 mark_page_dirty(vcpu->kvm, hypercall_gpa >> PAGE_SHIFT);
Ingo Molnar102d8322007-02-19 14:37:47 +02001553 hypercall = kmap_atomic(pfn_to_page(hypercall_hpa >> PAGE_SHIFT),
1554 KM_USER1) + (hypercall_hpa & ~PAGE_MASK);
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001555 kvm_x86_ops->patch_hypercall(vcpu, hypercall);
Ingo Molnar102d8322007-02-19 14:37:47 +02001556 kunmap_atomic(hypercall, KM_USER1);
1557
1558 para_state->ret = 0;
1559err_kunmap_skip:
Shaohua Life551882007-07-23 14:51:39 +08001560 kunmap(para_state_page);
Ingo Molnar102d8322007-02-19 14:37:47 +02001561 return 0;
1562err_gp:
1563 return 1;
1564}
1565
Avi Kivity3bab1f52006-12-29 16:49:48 -08001566int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
1567{
1568 u64 data;
1569
1570 switch (msr) {
1571 case 0xc0010010: /* SYSCFG */
1572 case 0xc0010015: /* HWCR */
1573 case MSR_IA32_PLATFORM_ID:
1574 case MSR_IA32_P5_MC_ADDR:
1575 case MSR_IA32_P5_MC_TYPE:
1576 case MSR_IA32_MC0_CTL:
1577 case MSR_IA32_MCG_STATUS:
1578 case MSR_IA32_MCG_CAP:
1579 case MSR_IA32_MC0_MISC:
1580 case MSR_IA32_MC0_MISC+4:
1581 case MSR_IA32_MC0_MISC+8:
1582 case MSR_IA32_MC0_MISC+12:
1583 case MSR_IA32_MC0_MISC+16:
1584 case MSR_IA32_UCODE_REV:
Avi Kivitya8d13ea2006-12-29 16:49:51 -08001585 case MSR_IA32_PERF_STATUS:
Matthew Gregan2dc70942007-05-06 10:59:46 +03001586 case MSR_IA32_EBL_CR_POWERON:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001587 /* MTRR registers */
1588 case 0xfe:
1589 case 0x200 ... 0x2ff:
1590 data = 0;
1591 break;
Avi Kivitya8d13ea2006-12-29 16:49:51 -08001592 case 0xcd: /* fsb frequency */
1593 data = 3;
1594 break;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001595 case MSR_IA32_APICBASE:
Eddie Dong7017fc32007-07-18 11:34:57 +03001596 data = kvm_get_apic_base(vcpu);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001597 break;
Avi Kivity6f00e682007-01-26 00:56:40 -08001598 case MSR_IA32_MISC_ENABLE:
1599 data = vcpu->ia32_misc_enable_msr;
1600 break;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001601#ifdef CONFIG_X86_64
1602 case MSR_EFER:
1603 data = vcpu->shadow_efer;
1604 break;
1605#endif
1606 default:
Rusty Russellf0242472007-08-01 10:48:02 +10001607 pr_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001608 return 1;
1609 }
1610 *pdata = data;
1611 return 0;
1612}
1613EXPORT_SYMBOL_GPL(kvm_get_msr_common);
1614
Avi Kivity6aa8b732006-12-10 02:21:36 -08001615/*
1616 * Reads an msr value (of 'msr_index') into 'pdata'.
1617 * Returns 0 on success, non-0 otherwise.
1618 * Assumes vcpu_load() was already called.
1619 */
Avi Kivity35f3f282007-07-17 14:20:30 +03001620int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001621{
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001622 return kvm_x86_ops->get_msr(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001623}
1624
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001625#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001626
Avi Kivity3bab1f52006-12-29 16:49:48 -08001627static void set_efer(struct kvm_vcpu *vcpu, u64 efer)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001628{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001629 if (efer & EFER_RESERVED_BITS) {
1630 printk(KERN_DEBUG "set_efer: 0x%llx #GP, reserved bits\n",
1631 efer);
1632 inject_gp(vcpu);
1633 return;
1634 }
1635
1636 if (is_paging(vcpu)
1637 && (vcpu->shadow_efer & EFER_LME) != (efer & EFER_LME)) {
1638 printk(KERN_DEBUG "set_efer: #GP, change LME while paging\n");
1639 inject_gp(vcpu);
1640 return;
1641 }
1642
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001643 kvm_x86_ops->set_efer(vcpu, efer);
Avi Kivity7725f0b2006-12-13 00:34:01 -08001644
Avi Kivity6aa8b732006-12-10 02:21:36 -08001645 efer &= ~EFER_LMA;
1646 efer |= vcpu->shadow_efer & EFER_LMA;
1647
1648 vcpu->shadow_efer = efer;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001649}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001650
1651#endif
1652
Avi Kivity3bab1f52006-12-29 16:49:48 -08001653int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1654{
1655 switch (msr) {
1656#ifdef CONFIG_X86_64
1657 case MSR_EFER:
1658 set_efer(vcpu, data);
1659 break;
1660#endif
1661 case MSR_IA32_MC0_STATUS:
Rusty Russellf0242472007-08-01 10:48:02 +10001662 pr_unimpl(vcpu, "%s: MSR_IA32_MC0_STATUS 0x%llx, nop\n",
Avi Kivity3bab1f52006-12-29 16:49:48 -08001663 __FUNCTION__, data);
1664 break;
Sergey Kiselev0e5bf0d2007-03-22 14:06:18 +02001665 case MSR_IA32_MCG_STATUS:
Rusty Russellf0242472007-08-01 10:48:02 +10001666 pr_unimpl(vcpu, "%s: MSR_IA32_MCG_STATUS 0x%llx, nop\n",
Sergey Kiselev0e5bf0d2007-03-22 14:06:18 +02001667 __FUNCTION__, data);
1668 break;
Avi Kivity3bab1f52006-12-29 16:49:48 -08001669 case MSR_IA32_UCODE_REV:
1670 case MSR_IA32_UCODE_WRITE:
1671 case 0x200 ... 0x2ff: /* MTRRs */
1672 break;
1673 case MSR_IA32_APICBASE:
Eddie Dong7017fc32007-07-18 11:34:57 +03001674 kvm_set_apic_base(vcpu, data);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001675 break;
Avi Kivity6f00e682007-01-26 00:56:40 -08001676 case MSR_IA32_MISC_ENABLE:
1677 vcpu->ia32_misc_enable_msr = data;
1678 break;
Ingo Molnar102d8322007-02-19 14:37:47 +02001679 /*
1680 * This is the 'probe whether the host is KVM' logic:
1681 */
1682 case MSR_KVM_API_MAGIC:
1683 return vcpu_register_para(vcpu, data);
1684
Avi Kivity3bab1f52006-12-29 16:49:48 -08001685 default:
Rusty Russellf0242472007-08-01 10:48:02 +10001686 pr_unimpl(vcpu, "unhandled wrmsr: 0x%x\n", msr);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001687 return 1;
1688 }
1689 return 0;
1690}
1691EXPORT_SYMBOL_GPL(kvm_set_msr_common);
1692
Avi Kivity6aa8b732006-12-10 02:21:36 -08001693/*
1694 * Writes msr value into into the appropriate "register".
1695 * Returns 0 on success, non-0 otherwise.
1696 * Assumes vcpu_load() was already called.
1697 */
Avi Kivity35f3f282007-07-17 14:20:30 +03001698int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001699{
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001700 return kvm_x86_ops->set_msr(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001701}
1702
1703void kvm_resched(struct kvm_vcpu *vcpu)
1704{
Yaozu Dong3fca0362007-04-25 16:49:19 +03001705 if (!need_resched())
1706 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001707 cond_resched();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001708}
1709EXPORT_SYMBOL_GPL(kvm_resched);
1710
Avi Kivity06465c52007-02-28 20:46:53 +02001711void kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
1712{
1713 int i;
1714 u32 function;
1715 struct kvm_cpuid_entry *e, *best;
1716
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001717 kvm_x86_ops->cache_regs(vcpu);
Avi Kivity06465c52007-02-28 20:46:53 +02001718 function = vcpu->regs[VCPU_REGS_RAX];
1719 vcpu->regs[VCPU_REGS_RAX] = 0;
1720 vcpu->regs[VCPU_REGS_RBX] = 0;
1721 vcpu->regs[VCPU_REGS_RCX] = 0;
1722 vcpu->regs[VCPU_REGS_RDX] = 0;
1723 best = NULL;
1724 for (i = 0; i < vcpu->cpuid_nent; ++i) {
1725 e = &vcpu->cpuid_entries[i];
1726 if (e->function == function) {
1727 best = e;
1728 break;
1729 }
1730 /*
1731 * Both basic or both extended?
1732 */
1733 if (((e->function ^ function) & 0x80000000) == 0)
1734 if (!best || e->function > best->function)
1735 best = e;
1736 }
1737 if (best) {
1738 vcpu->regs[VCPU_REGS_RAX] = best->eax;
1739 vcpu->regs[VCPU_REGS_RBX] = best->ebx;
1740 vcpu->regs[VCPU_REGS_RCX] = best->ecx;
1741 vcpu->regs[VCPU_REGS_RDX] = best->edx;
1742 }
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001743 kvm_x86_ops->decache_regs(vcpu);
1744 kvm_x86_ops->skip_emulated_instruction(vcpu);
Avi Kivity06465c52007-02-28 20:46:53 +02001745}
1746EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);
1747
Avi Kivity039576c2007-03-20 12:46:50 +02001748static int pio_copy_data(struct kvm_vcpu *vcpu)
Avi Kivity46fc1472007-02-22 19:39:30 +02001749{
Avi Kivity039576c2007-03-20 12:46:50 +02001750 void *p = vcpu->pio_data;
1751 void *q;
1752 unsigned bytes;
1753 int nr_pages = vcpu->pio.guest_pages[1] ? 2 : 1;
1754
Avi Kivity039576c2007-03-20 12:46:50 +02001755 q = vmap(vcpu->pio.guest_pages, nr_pages, VM_READ|VM_WRITE,
1756 PAGE_KERNEL);
1757 if (!q) {
Avi Kivity039576c2007-03-20 12:46:50 +02001758 free_pio_guest_pages(vcpu);
1759 return -ENOMEM;
1760 }
1761 q += vcpu->pio.guest_page_offset;
1762 bytes = vcpu->pio.size * vcpu->pio.cur_count;
1763 if (vcpu->pio.in)
1764 memcpy(q, p, bytes);
1765 else
1766 memcpy(p, q, bytes);
1767 q -= vcpu->pio.guest_page_offset;
1768 vunmap(q);
Avi Kivity039576c2007-03-20 12:46:50 +02001769 free_pio_guest_pages(vcpu);
1770 return 0;
1771}
1772
1773static int complete_pio(struct kvm_vcpu *vcpu)
1774{
1775 struct kvm_pio_request *io = &vcpu->pio;
Avi Kivity46fc1472007-02-22 19:39:30 +02001776 long delta;
Avi Kivity039576c2007-03-20 12:46:50 +02001777 int r;
Avi Kivity46fc1472007-02-22 19:39:30 +02001778
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001779 kvm_x86_ops->cache_regs(vcpu);
Avi Kivity46fc1472007-02-22 19:39:30 +02001780
1781 if (!io->string) {
Avi Kivity039576c2007-03-20 12:46:50 +02001782 if (io->in)
1783 memcpy(&vcpu->regs[VCPU_REGS_RAX], vcpu->pio_data,
Avi Kivity46fc1472007-02-22 19:39:30 +02001784 io->size);
1785 } else {
Avi Kivity039576c2007-03-20 12:46:50 +02001786 if (io->in) {
1787 r = pio_copy_data(vcpu);
1788 if (r) {
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001789 kvm_x86_ops->cache_regs(vcpu);
Avi Kivity039576c2007-03-20 12:46:50 +02001790 return r;
1791 }
1792 }
1793
Avi Kivity46fc1472007-02-22 19:39:30 +02001794 delta = 1;
1795 if (io->rep) {
Avi Kivity039576c2007-03-20 12:46:50 +02001796 delta *= io->cur_count;
Avi Kivity46fc1472007-02-22 19:39:30 +02001797 /*
1798 * The size of the register should really depend on
1799 * current address size.
1800 */
1801 vcpu->regs[VCPU_REGS_RCX] -= delta;
1802 }
Avi Kivity039576c2007-03-20 12:46:50 +02001803 if (io->down)
Avi Kivity46fc1472007-02-22 19:39:30 +02001804 delta = -delta;
1805 delta *= io->size;
Avi Kivity039576c2007-03-20 12:46:50 +02001806 if (io->in)
Avi Kivity46fc1472007-02-22 19:39:30 +02001807 vcpu->regs[VCPU_REGS_RDI] += delta;
1808 else
1809 vcpu->regs[VCPU_REGS_RSI] += delta;
1810 }
1811
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001812 kvm_x86_ops->decache_regs(vcpu);
Avi Kivity46fc1472007-02-22 19:39:30 +02001813
Avi Kivity039576c2007-03-20 12:46:50 +02001814 io->count -= io->cur_count;
1815 io->cur_count = 0;
1816
1817 if (!io->count)
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001818 kvm_x86_ops->skip_emulated_instruction(vcpu);
Avi Kivity039576c2007-03-20 12:46:50 +02001819 return 0;
Avi Kivity46fc1472007-02-22 19:39:30 +02001820}
1821
Eddie Dong65619eb2007-07-17 11:52:33 +03001822static void kernel_pio(struct kvm_io_device *pio_dev,
1823 struct kvm_vcpu *vcpu,
1824 void *pd)
Eddie Dong74906342007-06-19 18:05:03 +03001825{
1826 /* TODO: String I/O for in kernel device */
1827
Eddie Dong9cf98822007-07-22 10:36:31 +03001828 mutex_lock(&vcpu->kvm->lock);
Eddie Dong74906342007-06-19 18:05:03 +03001829 if (vcpu->pio.in)
1830 kvm_iodevice_read(pio_dev, vcpu->pio.port,
1831 vcpu->pio.size,
Eddie Dong65619eb2007-07-17 11:52:33 +03001832 pd);
Eddie Dong74906342007-06-19 18:05:03 +03001833 else
1834 kvm_iodevice_write(pio_dev, vcpu->pio.port,
1835 vcpu->pio.size,
Eddie Dong65619eb2007-07-17 11:52:33 +03001836 pd);
Eddie Dong9cf98822007-07-22 10:36:31 +03001837 mutex_unlock(&vcpu->kvm->lock);
Eddie Dong65619eb2007-07-17 11:52:33 +03001838}
1839
1840static void pio_string_write(struct kvm_io_device *pio_dev,
1841 struct kvm_vcpu *vcpu)
1842{
1843 struct kvm_pio_request *io = &vcpu->pio;
1844 void *pd = vcpu->pio_data;
1845 int i;
1846
Eddie Dong9cf98822007-07-22 10:36:31 +03001847 mutex_lock(&vcpu->kvm->lock);
Eddie Dong65619eb2007-07-17 11:52:33 +03001848 for (i = 0; i < io->cur_count; i++) {
1849 kvm_iodevice_write(pio_dev, io->port,
1850 io->size,
1851 pd);
1852 pd += io->size;
1853 }
Eddie Dong9cf98822007-07-22 10:36:31 +03001854 mutex_unlock(&vcpu->kvm->lock);
Eddie Dong74906342007-06-19 18:05:03 +03001855}
1856
Laurent Vivier3090dd72007-08-05 10:43:32 +03001857int kvm_emulate_pio (struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
1858 int size, unsigned port)
1859{
1860 struct kvm_io_device *pio_dev;
1861
1862 vcpu->run->exit_reason = KVM_EXIT_IO;
1863 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
1864 vcpu->run->io.size = vcpu->pio.size = size;
1865 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
1866 vcpu->run->io.count = vcpu->pio.count = vcpu->pio.cur_count = 1;
1867 vcpu->run->io.port = vcpu->pio.port = port;
1868 vcpu->pio.in = in;
1869 vcpu->pio.string = 0;
1870 vcpu->pio.down = 0;
1871 vcpu->pio.guest_page_offset = 0;
1872 vcpu->pio.rep = 0;
1873
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001874 kvm_x86_ops->cache_regs(vcpu);
Laurent Vivier3090dd72007-08-05 10:43:32 +03001875 memcpy(vcpu->pio_data, &vcpu->regs[VCPU_REGS_RAX], 4);
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001876 kvm_x86_ops->decache_regs(vcpu);
Laurent Vivier3090dd72007-08-05 10:43:32 +03001877
1878 pio_dev = vcpu_find_pio_dev(vcpu, port);
1879 if (pio_dev) {
1880 kernel_pio(pio_dev, vcpu, vcpu->pio_data);
1881 complete_pio(vcpu);
1882 return 1;
1883 }
1884 return 0;
1885}
1886EXPORT_SYMBOL_GPL(kvm_emulate_pio);
1887
1888int kvm_emulate_pio_string(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
1889 int size, unsigned long count, int down,
Avi Kivity039576c2007-03-20 12:46:50 +02001890 gva_t address, int rep, unsigned port)
1891{
1892 unsigned now, in_page;
Eddie Dong65619eb2007-07-17 11:52:33 +03001893 int i, ret = 0;
Avi Kivity039576c2007-03-20 12:46:50 +02001894 int nr_pages = 1;
1895 struct page *page;
Eddie Dong74906342007-06-19 18:05:03 +03001896 struct kvm_io_device *pio_dev;
Avi Kivity039576c2007-03-20 12:46:50 +02001897
1898 vcpu->run->exit_reason = KVM_EXIT_IO;
1899 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
Laurent Vivier3090dd72007-08-05 10:43:32 +03001900 vcpu->run->io.size = vcpu->pio.size = size;
Avi Kivity039576c2007-03-20 12:46:50 +02001901 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
Laurent Vivier3090dd72007-08-05 10:43:32 +03001902 vcpu->run->io.count = vcpu->pio.count = vcpu->pio.cur_count = count;
1903 vcpu->run->io.port = vcpu->pio.port = port;
Avi Kivity039576c2007-03-20 12:46:50 +02001904 vcpu->pio.in = in;
Laurent Vivier3090dd72007-08-05 10:43:32 +03001905 vcpu->pio.string = 1;
Avi Kivity039576c2007-03-20 12:46:50 +02001906 vcpu->pio.down = down;
1907 vcpu->pio.guest_page_offset = offset_in_page(address);
1908 vcpu->pio.rep = rep;
1909
Avi Kivity039576c2007-03-20 12:46:50 +02001910 if (!count) {
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001911 kvm_x86_ops->skip_emulated_instruction(vcpu);
Avi Kivity039576c2007-03-20 12:46:50 +02001912 return 1;
1913 }
1914
Avi Kivity039576c2007-03-20 12:46:50 +02001915 if (!down)
1916 in_page = PAGE_SIZE - offset_in_page(address);
1917 else
1918 in_page = offset_in_page(address) + size;
1919 now = min(count, (unsigned long)in_page / size);
1920 if (!now) {
1921 /*
1922 * String I/O straddles page boundary. Pin two guest pages
1923 * so that we satisfy atomicity constraints. Do just one
1924 * transaction to avoid complexity.
1925 */
1926 nr_pages = 2;
1927 now = 1;
1928 }
1929 if (down) {
1930 /*
1931 * String I/O in reverse. Yuck. Kill the guest, fix later.
1932 */
Rusty Russellf0242472007-08-01 10:48:02 +10001933 pr_unimpl(vcpu, "guest string pio down\n");
Avi Kivity039576c2007-03-20 12:46:50 +02001934 inject_gp(vcpu);
1935 return 1;
1936 }
1937 vcpu->run->io.count = now;
1938 vcpu->pio.cur_count = now;
1939
1940 for (i = 0; i < nr_pages; ++i) {
Shaohua Li11ec2802007-07-23 14:51:37 +08001941 mutex_lock(&vcpu->kvm->lock);
Avi Kivity039576c2007-03-20 12:46:50 +02001942 page = gva_to_page(vcpu, address + i * PAGE_SIZE);
1943 if (page)
1944 get_page(page);
1945 vcpu->pio.guest_pages[i] = page;
Shaohua Li11ec2802007-07-23 14:51:37 +08001946 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity039576c2007-03-20 12:46:50 +02001947 if (!page) {
1948 inject_gp(vcpu);
1949 free_pio_guest_pages(vcpu);
1950 return 1;
1951 }
1952 }
1953
Laurent Vivier3090dd72007-08-05 10:43:32 +03001954 pio_dev = vcpu_find_pio_dev(vcpu, port);
Eddie Dong65619eb2007-07-17 11:52:33 +03001955 if (!vcpu->pio.in) {
1956 /* string PIO write */
1957 ret = pio_copy_data(vcpu);
1958 if (ret >= 0 && pio_dev) {
1959 pio_string_write(pio_dev, vcpu);
1960 complete_pio(vcpu);
1961 if (vcpu->pio.count == 0)
1962 ret = 1;
1963 }
1964 } else if (pio_dev)
Rusty Russellf0242472007-08-01 10:48:02 +10001965 pr_unimpl(vcpu, "no string pio read support yet, "
Eddie Dong65619eb2007-07-17 11:52:33 +03001966 "port %x size %d count %ld\n",
1967 port, size, count);
1968
1969 return ret;
Avi Kivity039576c2007-03-20 12:46:50 +02001970}
Laurent Vivier3090dd72007-08-05 10:43:32 +03001971EXPORT_SYMBOL_GPL(kvm_emulate_pio_string);
Avi Kivity039576c2007-03-20 12:46:50 +02001972
Avi Kivitybccf2152007-02-21 18:04:26 +02001973static int kvm_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001974{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001975 int r;
Avi Kivity1961d272007-03-05 19:46:05 +02001976 sigset_t sigsaved;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001977
Avi Kivitybccf2152007-02-21 18:04:26 +02001978 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001979
He, Qingc5ec1532007-09-03 17:07:41 +03001980 if (unlikely(vcpu->mp_state == VCPU_MP_STATE_UNINITIALIZED)) {
1981 kvm_vcpu_block(vcpu);
1982 vcpu_put(vcpu);
1983 return -EAGAIN;
1984 }
1985
Avi Kivity1961d272007-03-05 19:46:05 +02001986 if (vcpu->sigset_active)
1987 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
1988
Dor Laor54810342007-02-12 00:54:39 -08001989 /* re-sync apic's tpr */
He, Qing5cd4f6f2007-08-30 17:04:26 +08001990 if (!irqchip_in_kernel(vcpu->kvm))
1991 set_cr8(vcpu, kvm_run->cr8);
Dor Laor54810342007-02-12 00:54:39 -08001992
Avi Kivity02c83202007-04-29 15:02:17 +03001993 if (vcpu->pio.cur_count) {
1994 r = complete_pio(vcpu);
1995 if (r)
1996 goto out;
1997 }
1998
1999 if (vcpu->mmio_needed) {
2000 memcpy(vcpu->mmio_data, kvm_run->mmio.data, 8);
2001 vcpu->mmio_read_completed = 1;
2002 vcpu->mmio_needed = 0;
2003 r = emulate_instruction(vcpu, kvm_run,
2004 vcpu->mmio_fault_cr2, 0);
2005 if (r == EMULATE_DO_MMIO) {
2006 /*
2007 * Read-modify-write. Back to userspace.
2008 */
Avi Kivity02c83202007-04-29 15:02:17 +03002009 r = 0;
2010 goto out;
Avi Kivity46fc1472007-02-22 19:39:30 +02002011 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002012 }
2013
Avi Kivity8eb7d332007-03-04 14:17:08 +02002014 if (kvm_run->exit_reason == KVM_EXIT_HYPERCALL) {
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002015 kvm_x86_ops->cache_regs(vcpu);
Avi Kivityb4e63f52007-03-04 13:59:30 +02002016 vcpu->regs[VCPU_REGS_RAX] = kvm_run->hypercall.ret;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002017 kvm_x86_ops->decache_regs(vcpu);
Avi Kivityb4e63f52007-03-04 13:59:30 +02002018 }
2019
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002020 r = kvm_x86_ops->run(vcpu, kvm_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002021
Avi Kivity039576c2007-03-20 12:46:50 +02002022out:
Avi Kivity1961d272007-03-05 19:46:05 +02002023 if (vcpu->sigset_active)
2024 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
2025
Avi Kivity6aa8b732006-12-10 02:21:36 -08002026 vcpu_put(vcpu);
2027 return r;
2028}
2029
Avi Kivitybccf2152007-02-21 18:04:26 +02002030static int kvm_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu,
2031 struct kvm_regs *regs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002032{
Avi Kivitybccf2152007-02-21 18:04:26 +02002033 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002034
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002035 kvm_x86_ops->cache_regs(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002036
2037 regs->rax = vcpu->regs[VCPU_REGS_RAX];
2038 regs->rbx = vcpu->regs[VCPU_REGS_RBX];
2039 regs->rcx = vcpu->regs[VCPU_REGS_RCX];
2040 regs->rdx = vcpu->regs[VCPU_REGS_RDX];
2041 regs->rsi = vcpu->regs[VCPU_REGS_RSI];
2042 regs->rdi = vcpu->regs[VCPU_REGS_RDI];
2043 regs->rsp = vcpu->regs[VCPU_REGS_RSP];
2044 regs->rbp = vcpu->regs[VCPU_REGS_RBP];
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002045#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002046 regs->r8 = vcpu->regs[VCPU_REGS_R8];
2047 regs->r9 = vcpu->regs[VCPU_REGS_R9];
2048 regs->r10 = vcpu->regs[VCPU_REGS_R10];
2049 regs->r11 = vcpu->regs[VCPU_REGS_R11];
2050 regs->r12 = vcpu->regs[VCPU_REGS_R12];
2051 regs->r13 = vcpu->regs[VCPU_REGS_R13];
2052 regs->r14 = vcpu->regs[VCPU_REGS_R14];
2053 regs->r15 = vcpu->regs[VCPU_REGS_R15];
2054#endif
2055
2056 regs->rip = vcpu->rip;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002057 regs->rflags = kvm_x86_ops->get_rflags(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002058
2059 /*
2060 * Don't leak debug flags in case they were set for guest debugging
2061 */
2062 if (vcpu->guest_debug.enabled && vcpu->guest_debug.singlestep)
2063 regs->rflags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
2064
2065 vcpu_put(vcpu);
2066
2067 return 0;
2068}
2069
Avi Kivitybccf2152007-02-21 18:04:26 +02002070static int kvm_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu,
2071 struct kvm_regs *regs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002072{
Avi Kivitybccf2152007-02-21 18:04:26 +02002073 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002074
2075 vcpu->regs[VCPU_REGS_RAX] = regs->rax;
2076 vcpu->regs[VCPU_REGS_RBX] = regs->rbx;
2077 vcpu->regs[VCPU_REGS_RCX] = regs->rcx;
2078 vcpu->regs[VCPU_REGS_RDX] = regs->rdx;
2079 vcpu->regs[VCPU_REGS_RSI] = regs->rsi;
2080 vcpu->regs[VCPU_REGS_RDI] = regs->rdi;
2081 vcpu->regs[VCPU_REGS_RSP] = regs->rsp;
2082 vcpu->regs[VCPU_REGS_RBP] = regs->rbp;
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002083#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002084 vcpu->regs[VCPU_REGS_R8] = regs->r8;
2085 vcpu->regs[VCPU_REGS_R9] = regs->r9;
2086 vcpu->regs[VCPU_REGS_R10] = regs->r10;
2087 vcpu->regs[VCPU_REGS_R11] = regs->r11;
2088 vcpu->regs[VCPU_REGS_R12] = regs->r12;
2089 vcpu->regs[VCPU_REGS_R13] = regs->r13;
2090 vcpu->regs[VCPU_REGS_R14] = regs->r14;
2091 vcpu->regs[VCPU_REGS_R15] = regs->r15;
2092#endif
2093
2094 vcpu->rip = regs->rip;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002095 kvm_x86_ops->set_rflags(vcpu, regs->rflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002096
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002097 kvm_x86_ops->decache_regs(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002098
2099 vcpu_put(vcpu);
2100
2101 return 0;
2102}
2103
2104static void get_segment(struct kvm_vcpu *vcpu,
2105 struct kvm_segment *var, int seg)
2106{
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002107 return kvm_x86_ops->get_segment(vcpu, var, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002108}
2109
Avi Kivitybccf2152007-02-21 18:04:26 +02002110static int kvm_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
2111 struct kvm_sregs *sregs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002112{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002113 struct descriptor_table dt;
Eddie Dong2a8067f2007-08-06 16:29:07 +03002114 int pending_vec;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002115
Avi Kivitybccf2152007-02-21 18:04:26 +02002116 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002117
2118 get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
2119 get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
2120 get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
2121 get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
2122 get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
2123 get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
2124
2125 get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
2126 get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
2127
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002128 kvm_x86_ops->get_idt(vcpu, &dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002129 sregs->idt.limit = dt.limit;
2130 sregs->idt.base = dt.base;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002131 kvm_x86_ops->get_gdt(vcpu, &dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002132 sregs->gdt.limit = dt.limit;
2133 sregs->gdt.base = dt.base;
2134
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002135 kvm_x86_ops->decache_cr4_guest_bits(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002136 sregs->cr0 = vcpu->cr0;
2137 sregs->cr2 = vcpu->cr2;
2138 sregs->cr3 = vcpu->cr3;
2139 sregs->cr4 = vcpu->cr4;
Eddie Dong7017fc32007-07-18 11:34:57 +03002140 sregs->cr8 = get_cr8(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002141 sregs->efer = vcpu->shadow_efer;
Eddie Dong7017fc32007-07-18 11:34:57 +03002142 sregs->apic_base = kvm_get_apic_base(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002143
Eddie Dong2a8067f2007-08-06 16:29:07 +03002144 if (irqchip_in_kernel(vcpu->kvm)) {
He, Qingc52fb352007-08-02 14:03:07 +03002145 memset(sregs->interrupt_bitmap, 0,
2146 sizeof sregs->interrupt_bitmap);
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002147 pending_vec = kvm_x86_ops->get_irq(vcpu);
Eddie Dong2a8067f2007-08-06 16:29:07 +03002148 if (pending_vec >= 0)
2149 set_bit(pending_vec, (unsigned long *)sregs->interrupt_bitmap);
2150 } else
He, Qingc52fb352007-08-02 14:03:07 +03002151 memcpy(sregs->interrupt_bitmap, vcpu->irq_pending,
2152 sizeof sregs->interrupt_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002153
2154 vcpu_put(vcpu);
2155
2156 return 0;
2157}
2158
2159static void set_segment(struct kvm_vcpu *vcpu,
2160 struct kvm_segment *var, int seg)
2161{
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002162 return kvm_x86_ops->set_segment(vcpu, var, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002163}
2164
Avi Kivitybccf2152007-02-21 18:04:26 +02002165static int kvm_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
2166 struct kvm_sregs *sregs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002167{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002168 int mmu_reset_needed = 0;
Eddie Dong2a8067f2007-08-06 16:29:07 +03002169 int i, pending_vec, max_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002170 struct descriptor_table dt;
2171
Avi Kivitybccf2152007-02-21 18:04:26 +02002172 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002173
Avi Kivity6aa8b732006-12-10 02:21:36 -08002174 dt.limit = sregs->idt.limit;
2175 dt.base = sregs->idt.base;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002176 kvm_x86_ops->set_idt(vcpu, &dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002177 dt.limit = sregs->gdt.limit;
2178 dt.base = sregs->gdt.base;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002179 kvm_x86_ops->set_gdt(vcpu, &dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002180
2181 vcpu->cr2 = sregs->cr2;
2182 mmu_reset_needed |= vcpu->cr3 != sregs->cr3;
2183 vcpu->cr3 = sregs->cr3;
2184
Eddie Dong7017fc32007-07-18 11:34:57 +03002185 set_cr8(vcpu, sregs->cr8);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002186
2187 mmu_reset_needed |= vcpu->shadow_efer != sregs->efer;
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002188#ifdef CONFIG_X86_64
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002189 kvm_x86_ops->set_efer(vcpu, sregs->efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002190#endif
Eddie Dong7017fc32007-07-18 11:34:57 +03002191 kvm_set_apic_base(vcpu, sregs->apic_base);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002192
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002193 kvm_x86_ops->decache_cr4_guest_bits(vcpu);
Avi Kivity399badf2007-01-05 16:36:38 -08002194
Avi Kivity6aa8b732006-12-10 02:21:36 -08002195 mmu_reset_needed |= vcpu->cr0 != sregs->cr0;
Rusty Russell81f50e32007-09-06 01:20:38 +10002196 vcpu->cr0 = sregs->cr0;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002197 kvm_x86_ops->set_cr0(vcpu, sregs->cr0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002198
2199 mmu_reset_needed |= vcpu->cr4 != sregs->cr4;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002200 kvm_x86_ops->set_cr4(vcpu, sregs->cr4);
Avi Kivity1b0973b2007-01-05 16:36:41 -08002201 if (!is_long_mode(vcpu) && is_pae(vcpu))
2202 load_pdptrs(vcpu, vcpu->cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002203
2204 if (mmu_reset_needed)
2205 kvm_mmu_reset_context(vcpu);
2206
He, Qingc52fb352007-08-02 14:03:07 +03002207 if (!irqchip_in_kernel(vcpu->kvm)) {
2208 memcpy(vcpu->irq_pending, sregs->interrupt_bitmap,
2209 sizeof vcpu->irq_pending);
2210 vcpu->irq_summary = 0;
2211 for (i = 0; i < ARRAY_SIZE(vcpu->irq_pending); ++i)
2212 if (vcpu->irq_pending[i])
2213 __set_bit(i, &vcpu->irq_summary);
Eddie Dong2a8067f2007-08-06 16:29:07 +03002214 } else {
2215 max_bits = (sizeof sregs->interrupt_bitmap) << 3;
2216 pending_vec = find_first_bit(
2217 (const unsigned long *)sregs->interrupt_bitmap,
2218 max_bits);
2219 /* Only pending external irq is handled here */
2220 if (pending_vec < max_bits) {
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002221 kvm_x86_ops->set_irq(vcpu, pending_vec);
Eddie Dong2a8067f2007-08-06 16:29:07 +03002222 printk("Set back pending irq %d\n", pending_vec);
2223 }
He, Qingc52fb352007-08-02 14:03:07 +03002224 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002225
Avi Kivity024aa1c2007-03-21 13:44:58 +02002226 set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
2227 set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
2228 set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
2229 set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
2230 set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
2231 set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
2232
2233 set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
2234 set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
2235
Avi Kivity6aa8b732006-12-10 02:21:36 -08002236 vcpu_put(vcpu);
2237
2238 return 0;
2239}
2240
Rusty Russell1747fb72007-09-06 01:21:32 +10002241void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
2242{
2243 struct kvm_segment cs;
2244
2245 get_segment(vcpu, &cs, VCPU_SREG_CS);
2246 *db = cs.db;
2247 *l = cs.l;
2248}
2249EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
2250
Avi Kivity6aa8b732006-12-10 02:21:36 -08002251/*
2252 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
2253 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
Michael Riepebf591b22006-12-22 01:05:36 -08002254 *
2255 * This list is modified at module load time to reflect the
2256 * capabilities of the host cpu.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002257 */
2258static u32 msrs_to_save[] = {
2259 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
2260 MSR_K6_STAR,
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002261#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002262 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
2263#endif
2264 MSR_IA32_TIME_STAMP_COUNTER,
2265};
2266
Michael Riepebf591b22006-12-22 01:05:36 -08002267static unsigned num_msrs_to_save;
2268
Avi Kivity6f00e682007-01-26 00:56:40 -08002269static u32 emulated_msrs[] = {
2270 MSR_IA32_MISC_ENABLE,
2271};
2272
Michael Riepebf591b22006-12-22 01:05:36 -08002273static __init void kvm_init_msr_list(void)
2274{
2275 u32 dummy[2];
2276 unsigned i, j;
2277
2278 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
2279 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
2280 continue;
2281 if (j < i)
2282 msrs_to_save[j] = msrs_to_save[i];
2283 j++;
2284 }
2285 num_msrs_to_save = j;
2286}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002287
2288/*
2289 * Adapt set_msr() to msr_io()'s calling convention
2290 */
2291static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2292{
Avi Kivity35f3f282007-07-17 14:20:30 +03002293 return kvm_set_msr(vcpu, index, *data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002294}
2295
2296/*
2297 * Read or write a bunch of msrs. All parameters are kernel addresses.
2298 *
2299 * @return number of msrs set successfully.
2300 */
Avi Kivitybccf2152007-02-21 18:04:26 +02002301static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002302 struct kvm_msr_entry *entries,
2303 int (*do_msr)(struct kvm_vcpu *vcpu,
2304 unsigned index, u64 *data))
2305{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002306 int i;
2307
Avi Kivitybccf2152007-02-21 18:04:26 +02002308 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002309
2310 for (i = 0; i < msrs->nmsrs; ++i)
2311 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2312 break;
2313
2314 vcpu_put(vcpu);
2315
2316 return i;
2317}
2318
2319/*
2320 * Read or write a bunch of msrs. Parameters are user addresses.
2321 *
2322 * @return number of msrs set successfully.
2323 */
Avi Kivitybccf2152007-02-21 18:04:26 +02002324static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002325 int (*do_msr)(struct kvm_vcpu *vcpu,
2326 unsigned index, u64 *data),
2327 int writeback)
2328{
2329 struct kvm_msrs msrs;
2330 struct kvm_msr_entry *entries;
2331 int r, n;
2332 unsigned size;
2333
2334 r = -EFAULT;
2335 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2336 goto out;
2337
2338 r = -E2BIG;
2339 if (msrs.nmsrs >= MAX_IO_MSRS)
2340 goto out;
2341
2342 r = -ENOMEM;
2343 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
2344 entries = vmalloc(size);
2345 if (!entries)
2346 goto out;
2347
2348 r = -EFAULT;
2349 if (copy_from_user(entries, user_msrs->entries, size))
2350 goto out_free;
2351
Avi Kivitybccf2152007-02-21 18:04:26 +02002352 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002353 if (r < 0)
2354 goto out_free;
2355
2356 r = -EFAULT;
2357 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2358 goto out_free;
2359
2360 r = n;
2361
2362out_free:
2363 vfree(entries);
2364out:
2365 return r;
2366}
2367
2368/*
2369 * Translate a guest virtual address to a guest physical address.
2370 */
Avi Kivitybccf2152007-02-21 18:04:26 +02002371static int kvm_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
2372 struct kvm_translation *tr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002373{
2374 unsigned long vaddr = tr->linear_address;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002375 gpa_t gpa;
2376
Avi Kivitybccf2152007-02-21 18:04:26 +02002377 vcpu_load(vcpu);
Shaohua Li11ec2802007-07-23 14:51:37 +08002378 mutex_lock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002379 gpa = vcpu->mmu.gva_to_gpa(vcpu, vaddr);
2380 tr->physical_address = gpa;
2381 tr->valid = gpa != UNMAPPED_GVA;
2382 tr->writeable = 1;
2383 tr->usermode = 0;
Shaohua Li11ec2802007-07-23 14:51:37 +08002384 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002385 vcpu_put(vcpu);
2386
2387 return 0;
2388}
2389
Avi Kivitybccf2152007-02-21 18:04:26 +02002390static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2391 struct kvm_interrupt *irq)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002392{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002393 if (irq->irq < 0 || irq->irq >= 256)
2394 return -EINVAL;
Eddie Dong97222cc2007-09-12 10:58:04 +03002395 if (irqchip_in_kernel(vcpu->kvm))
2396 return -ENXIO;
Avi Kivitybccf2152007-02-21 18:04:26 +02002397 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002398
2399 set_bit(irq->irq, vcpu->irq_pending);
2400 set_bit(irq->irq / BITS_PER_LONG, &vcpu->irq_summary);
2401
2402 vcpu_put(vcpu);
2403
2404 return 0;
2405}
2406
Avi Kivitybccf2152007-02-21 18:04:26 +02002407static int kvm_vcpu_ioctl_debug_guest(struct kvm_vcpu *vcpu,
2408 struct kvm_debug_guest *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002409{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002410 int r;
2411
Avi Kivitybccf2152007-02-21 18:04:26 +02002412 vcpu_load(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002413
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002414 r = kvm_x86_ops->set_guest_debug(vcpu, dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002415
2416 vcpu_put(vcpu);
2417
2418 return r;
2419}
2420
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002421static struct page *kvm_vcpu_nopage(struct vm_area_struct *vma,
2422 unsigned long address,
2423 int *type)
2424{
2425 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
2426 unsigned long pgoff;
2427 struct page *page;
2428
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002429 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Avi Kivity039576c2007-03-20 12:46:50 +02002430 if (pgoff == 0)
2431 page = virt_to_page(vcpu->run);
2432 else if (pgoff == KVM_PIO_PAGE_OFFSET)
2433 page = virt_to_page(vcpu->pio_data);
2434 else
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002435 return NOPAGE_SIGBUS;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002436 get_page(page);
Nguyen Anh Quynhcd0d9132007-07-11 14:30:54 +03002437 if (type != NULL)
2438 *type = VM_FAULT_MINOR;
2439
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002440 return page;
2441}
2442
2443static struct vm_operations_struct kvm_vcpu_vm_ops = {
2444 .nopage = kvm_vcpu_nopage,
2445};
2446
2447static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2448{
2449 vma->vm_ops = &kvm_vcpu_vm_ops;
2450 return 0;
2451}
2452
Avi Kivitybccf2152007-02-21 18:04:26 +02002453static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2454{
2455 struct kvm_vcpu *vcpu = filp->private_data;
2456
2457 fput(vcpu->kvm->filp);
2458 return 0;
2459}
2460
2461static struct file_operations kvm_vcpu_fops = {
2462 .release = kvm_vcpu_release,
2463 .unlocked_ioctl = kvm_vcpu_ioctl,
2464 .compat_ioctl = kvm_vcpu_ioctl,
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002465 .mmap = kvm_vcpu_mmap,
Avi Kivitybccf2152007-02-21 18:04:26 +02002466};
2467
2468/*
2469 * Allocates an inode for the vcpu.
2470 */
2471static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2472{
2473 int fd, r;
2474 struct inode *inode;
2475 struct file *file;
2476
Avi Kivityd6d28162007-06-28 08:38:16 -04002477 r = anon_inode_getfd(&fd, &inode, &file,
2478 "kvm-vcpu", &kvm_vcpu_fops, vcpu);
2479 if (r)
2480 return r;
Avi Kivitybccf2152007-02-21 18:04:26 +02002481 atomic_inc(&vcpu->kvm->filp->f_count);
Avi Kivitybccf2152007-02-21 18:04:26 +02002482 return fd;
Avi Kivitybccf2152007-02-21 18:04:26 +02002483}
2484
Avi Kivityc5ea7662007-02-20 18:41:05 +02002485/*
2486 * Creates some virtual cpus. Good luck creating more than one.
2487 */
2488static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, int n)
2489{
2490 int r;
2491 struct kvm_vcpu *vcpu;
2492
Avi Kivityc5ea7662007-02-20 18:41:05 +02002493 if (!valid_vcpu(n))
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002494 return -EINVAL;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002495
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002496 vcpu = kvm_x86_ops->vcpu_create(kvm, n);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002497 if (IS_ERR(vcpu))
2498 return PTR_ERR(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002499
Avi Kivity15ad7142007-07-11 18:17:21 +03002500 preempt_notifier_init(&vcpu->preempt_notifier, &kvm_preempt_ops);
2501
Rusty Russellb114b082007-07-30 21:13:43 +10002502 /* We do fxsave: this must be aligned. */
2503 BUG_ON((unsigned long)&vcpu->host_fx_image & 0xF);
2504
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002505 vcpu_load(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002506 r = kvm_mmu_setup(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002507 vcpu_put(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002508 if (r < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002509 goto free_vcpu;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002510
Shaohua Li11ec2802007-07-23 14:51:37 +08002511 mutex_lock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002512 if (kvm->vcpus[n]) {
2513 r = -EEXIST;
Shaohua Li11ec2802007-07-23 14:51:37 +08002514 mutex_unlock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002515 goto mmu_unload;
2516 }
2517 kvm->vcpus[n] = vcpu;
Shaohua Li11ec2802007-07-23 14:51:37 +08002518 mutex_unlock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002519
2520 /* Now it's all set up, let userspace reach it */
Avi Kivitybccf2152007-02-21 18:04:26 +02002521 r = create_vcpu_fd(vcpu);
2522 if (r < 0)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002523 goto unlink;
Avi Kivitybccf2152007-02-21 18:04:26 +02002524 return r;
Avi Kivityc5ea7662007-02-20 18:41:05 +02002525
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002526unlink:
Shaohua Li11ec2802007-07-23 14:51:37 +08002527 mutex_lock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002528 kvm->vcpus[n] = NULL;
Shaohua Li11ec2802007-07-23 14:51:37 +08002529 mutex_unlock(&kvm->lock);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002530
2531mmu_unload:
2532 vcpu_load(vcpu);
2533 kvm_mmu_unload(vcpu);
2534 vcpu_put(vcpu);
2535
2536free_vcpu:
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002537 kvm_x86_ops->vcpu_free(vcpu);
Avi Kivityc5ea7662007-02-20 18:41:05 +02002538 return r;
2539}
2540
Eddie Dong2cc51562007-05-21 07:28:09 +03002541static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu)
2542{
2543 u64 efer;
2544 int i;
2545 struct kvm_cpuid_entry *e, *entry;
2546
2547 rdmsrl(MSR_EFER, efer);
2548 entry = NULL;
2549 for (i = 0; i < vcpu->cpuid_nent; ++i) {
2550 e = &vcpu->cpuid_entries[i];
2551 if (e->function == 0x80000001) {
2552 entry = e;
2553 break;
2554 }
2555 }
Avi Kivity4c981b42007-07-25 09:22:12 +03002556 if (entry && (entry->edx & (1 << 20)) && !(efer & EFER_NX)) {
Eddie Dong2cc51562007-05-21 07:28:09 +03002557 entry->edx &= ~(1 << 20);
Avi Kivity4c981b42007-07-25 09:22:12 +03002558 printk(KERN_INFO "kvm: guest NX capability removed\n");
Eddie Dong2cc51562007-05-21 07:28:09 +03002559 }
2560}
2561
Avi Kivity06465c52007-02-28 20:46:53 +02002562static int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
2563 struct kvm_cpuid *cpuid,
2564 struct kvm_cpuid_entry __user *entries)
2565{
2566 int r;
2567
2568 r = -E2BIG;
2569 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
2570 goto out;
2571 r = -EFAULT;
2572 if (copy_from_user(&vcpu->cpuid_entries, entries,
2573 cpuid->nent * sizeof(struct kvm_cpuid_entry)))
2574 goto out;
2575 vcpu->cpuid_nent = cpuid->nent;
Eddie Dong2cc51562007-05-21 07:28:09 +03002576 cpuid_fix_nx_cap(vcpu);
Avi Kivity06465c52007-02-28 20:46:53 +02002577 return 0;
2578
2579out:
2580 return r;
2581}
2582
Avi Kivity1961d272007-03-05 19:46:05 +02002583static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2584{
2585 if (sigset) {
2586 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2587 vcpu->sigset_active = 1;
2588 vcpu->sigset = *sigset;
2589 } else
2590 vcpu->sigset_active = 0;
2591 return 0;
2592}
2593
Avi Kivityb8836732007-04-01 16:34:31 +03002594/*
2595 * fxsave fpu state. Taken from x86_64/processor.h. To be killed when
2596 * we have asm/x86/processor.h
2597 */
2598struct fxsave {
2599 u16 cwd;
2600 u16 swd;
2601 u16 twd;
2602 u16 fop;
2603 u64 rip;
2604 u64 rdp;
2605 u32 mxcsr;
2606 u32 mxcsr_mask;
2607 u32 st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
2608#ifdef CONFIG_X86_64
2609 u32 xmm_space[64]; /* 16*16 bytes for each XMM-reg = 256 bytes */
2610#else
2611 u32 xmm_space[32]; /* 8*16 bytes for each XMM-reg = 128 bytes */
2612#endif
2613};
2614
2615static int kvm_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2616{
Rusty Russellb114b082007-07-30 21:13:43 +10002617 struct fxsave *fxsave = (struct fxsave *)&vcpu->guest_fx_image;
Avi Kivityb8836732007-04-01 16:34:31 +03002618
2619 vcpu_load(vcpu);
2620
2621 memcpy(fpu->fpr, fxsave->st_space, 128);
2622 fpu->fcw = fxsave->cwd;
2623 fpu->fsw = fxsave->swd;
2624 fpu->ftwx = fxsave->twd;
2625 fpu->last_opcode = fxsave->fop;
2626 fpu->last_ip = fxsave->rip;
2627 fpu->last_dp = fxsave->rdp;
2628 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
2629
2630 vcpu_put(vcpu);
2631
2632 return 0;
2633}
2634
2635static int kvm_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2636{
Rusty Russellb114b082007-07-30 21:13:43 +10002637 struct fxsave *fxsave = (struct fxsave *)&vcpu->guest_fx_image;
Avi Kivityb8836732007-04-01 16:34:31 +03002638
2639 vcpu_load(vcpu);
2640
2641 memcpy(fxsave->st_space, fpu->fpr, 128);
2642 fxsave->cwd = fpu->fcw;
2643 fxsave->swd = fpu->fsw;
2644 fxsave->twd = fpu->ftwx;
2645 fxsave->fop = fpu->last_opcode;
2646 fxsave->rip = fpu->last_ip;
2647 fxsave->rdp = fpu->last_dp;
2648 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
2649
2650 vcpu_put(vcpu);
2651
2652 return 0;
2653}
2654
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002655static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
2656 struct kvm_lapic_state *s)
2657{
2658 vcpu_load(vcpu);
2659 memcpy(s->regs, vcpu->apic->regs, sizeof *s);
2660 vcpu_put(vcpu);
2661
2662 return 0;
2663}
2664
2665static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
2666 struct kvm_lapic_state *s)
2667{
2668 vcpu_load(vcpu);
2669 memcpy(vcpu->apic->regs, s->regs, sizeof *s);
2670 kvm_apic_post_state_restore(vcpu);
2671 vcpu_put(vcpu);
2672
2673 return 0;
2674}
2675
Avi Kivitybccf2152007-02-21 18:04:26 +02002676static long kvm_vcpu_ioctl(struct file *filp,
2677 unsigned int ioctl, unsigned long arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002678{
Avi Kivitybccf2152007-02-21 18:04:26 +02002679 struct kvm_vcpu *vcpu = filp->private_data;
Al Viro2f366982007-02-09 16:38:35 +00002680 void __user *argp = (void __user *)arg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002681 int r = -EINVAL;
2682
2683 switch (ioctl) {
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002684 case KVM_RUN:
Avi Kivityf0fe5102007-03-07 13:11:17 +02002685 r = -EINVAL;
2686 if (arg)
2687 goto out;
Avi Kivity9a2bb7f2007-02-22 12:58:31 +02002688 r = kvm_vcpu_ioctl_run(vcpu, vcpu->run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002689 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002690 case KVM_GET_REGS: {
2691 struct kvm_regs kvm_regs;
2692
Avi Kivitybccf2152007-02-21 18:04:26 +02002693 memset(&kvm_regs, 0, sizeof kvm_regs);
2694 r = kvm_vcpu_ioctl_get_regs(vcpu, &kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002695 if (r)
2696 goto out;
2697 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002698 if (copy_to_user(argp, &kvm_regs, sizeof kvm_regs))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002699 goto out;
2700 r = 0;
2701 break;
2702 }
2703 case KVM_SET_REGS: {
2704 struct kvm_regs kvm_regs;
2705
2706 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002707 if (copy_from_user(&kvm_regs, argp, sizeof kvm_regs))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002708 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002709 r = kvm_vcpu_ioctl_set_regs(vcpu, &kvm_regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002710 if (r)
2711 goto out;
2712 r = 0;
2713 break;
2714 }
2715 case KVM_GET_SREGS: {
2716 struct kvm_sregs kvm_sregs;
2717
Avi Kivitybccf2152007-02-21 18:04:26 +02002718 memset(&kvm_sregs, 0, sizeof kvm_sregs);
2719 r = kvm_vcpu_ioctl_get_sregs(vcpu, &kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002720 if (r)
2721 goto out;
2722 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002723 if (copy_to_user(argp, &kvm_sregs, sizeof kvm_sregs))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002724 goto out;
2725 r = 0;
2726 break;
2727 }
2728 case KVM_SET_SREGS: {
2729 struct kvm_sregs kvm_sregs;
2730
2731 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002732 if (copy_from_user(&kvm_sregs, argp, sizeof kvm_sregs))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002733 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002734 r = kvm_vcpu_ioctl_set_sregs(vcpu, &kvm_sregs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002735 if (r)
2736 goto out;
2737 r = 0;
2738 break;
2739 }
2740 case KVM_TRANSLATE: {
2741 struct kvm_translation tr;
2742
2743 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002744 if (copy_from_user(&tr, argp, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002745 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002746 r = kvm_vcpu_ioctl_translate(vcpu, &tr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002747 if (r)
2748 goto out;
2749 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002750 if (copy_to_user(argp, &tr, sizeof tr))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002751 goto out;
2752 r = 0;
2753 break;
2754 }
2755 case KVM_INTERRUPT: {
2756 struct kvm_interrupt irq;
2757
2758 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002759 if (copy_from_user(&irq, argp, sizeof irq))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002760 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002761 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002762 if (r)
2763 goto out;
2764 r = 0;
2765 break;
2766 }
2767 case KVM_DEBUG_GUEST: {
2768 struct kvm_debug_guest dbg;
2769
2770 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002771 if (copy_from_user(&dbg, argp, sizeof dbg))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002772 goto out;
Avi Kivitybccf2152007-02-21 18:04:26 +02002773 r = kvm_vcpu_ioctl_debug_guest(vcpu, &dbg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002774 if (r)
2775 goto out;
2776 r = 0;
2777 break;
2778 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002779 case KVM_GET_MSRS:
Avi Kivity35f3f282007-07-17 14:20:30 +03002780 r = msr_io(vcpu, argp, kvm_get_msr, 1);
Avi Kivitybccf2152007-02-21 18:04:26 +02002781 break;
2782 case KVM_SET_MSRS:
2783 r = msr_io(vcpu, argp, do_set_msr, 0);
2784 break;
Avi Kivity06465c52007-02-28 20:46:53 +02002785 case KVM_SET_CPUID: {
2786 struct kvm_cpuid __user *cpuid_arg = argp;
2787 struct kvm_cpuid cpuid;
2788
2789 r = -EFAULT;
2790 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2791 goto out;
2792 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
2793 if (r)
2794 goto out;
2795 break;
2796 }
Avi Kivity1961d272007-03-05 19:46:05 +02002797 case KVM_SET_SIGNAL_MASK: {
2798 struct kvm_signal_mask __user *sigmask_arg = argp;
2799 struct kvm_signal_mask kvm_sigmask;
2800 sigset_t sigset, *p;
2801
2802 p = NULL;
2803 if (argp) {
2804 r = -EFAULT;
2805 if (copy_from_user(&kvm_sigmask, argp,
2806 sizeof kvm_sigmask))
2807 goto out;
2808 r = -EINVAL;
2809 if (kvm_sigmask.len != sizeof sigset)
2810 goto out;
2811 r = -EFAULT;
2812 if (copy_from_user(&sigset, sigmask_arg->sigset,
2813 sizeof sigset))
2814 goto out;
2815 p = &sigset;
2816 }
2817 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2818 break;
2819 }
Avi Kivityb8836732007-04-01 16:34:31 +03002820 case KVM_GET_FPU: {
2821 struct kvm_fpu fpu;
2822
2823 memset(&fpu, 0, sizeof fpu);
2824 r = kvm_vcpu_ioctl_get_fpu(vcpu, &fpu);
2825 if (r)
2826 goto out;
2827 r = -EFAULT;
2828 if (copy_to_user(argp, &fpu, sizeof fpu))
2829 goto out;
2830 r = 0;
2831 break;
2832 }
2833 case KVM_SET_FPU: {
2834 struct kvm_fpu fpu;
2835
2836 r = -EFAULT;
2837 if (copy_from_user(&fpu, argp, sizeof fpu))
2838 goto out;
2839 r = kvm_vcpu_ioctl_set_fpu(vcpu, &fpu);
2840 if (r)
2841 goto out;
2842 r = 0;
2843 break;
2844 }
Eddie Dong96ad2cc2007-09-06 12:22:56 +03002845 case KVM_GET_LAPIC: {
2846 struct kvm_lapic_state lapic;
2847
2848 memset(&lapic, 0, sizeof lapic);
2849 r = kvm_vcpu_ioctl_get_lapic(vcpu, &lapic);
2850 if (r)
2851 goto out;
2852 r = -EFAULT;
2853 if (copy_to_user(argp, &lapic, sizeof lapic))
2854 goto out;
2855 r = 0;
2856 break;
2857 }
2858 case KVM_SET_LAPIC: {
2859 struct kvm_lapic_state lapic;
2860
2861 r = -EFAULT;
2862 if (copy_from_user(&lapic, argp, sizeof lapic))
2863 goto out;
2864 r = kvm_vcpu_ioctl_set_lapic(vcpu, &lapic);;
2865 if (r)
2866 goto out;
2867 r = 0;
2868 break;
2869 }
Avi Kivitybccf2152007-02-21 18:04:26 +02002870 default:
2871 ;
2872 }
2873out:
2874 return r;
2875}
2876
2877static long kvm_vm_ioctl(struct file *filp,
2878 unsigned int ioctl, unsigned long arg)
2879{
2880 struct kvm *kvm = filp->private_data;
2881 void __user *argp = (void __user *)arg;
2882 int r = -EINVAL;
2883
2884 switch (ioctl) {
2885 case KVM_CREATE_VCPU:
2886 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
2887 if (r < 0)
2888 goto out;
2889 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002890 case KVM_SET_MEMORY_REGION: {
2891 struct kvm_memory_region kvm_mem;
2892
2893 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002894 if (copy_from_user(&kvm_mem, argp, sizeof kvm_mem))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002895 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002896 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_mem);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002897 if (r)
2898 goto out;
2899 break;
2900 }
2901 case KVM_GET_DIRTY_LOG: {
2902 struct kvm_dirty_log log;
2903
2904 r = -EFAULT;
Al Viro2f366982007-02-09 16:38:35 +00002905 if (copy_from_user(&log, argp, sizeof log))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002906 goto out;
Avi Kivity2c6f5df2007-02-20 18:27:58 +02002907 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002908 if (r)
2909 goto out;
2910 break;
2911 }
Avi Kivitye8207542007-03-30 16:54:30 +03002912 case KVM_SET_MEMORY_ALIAS: {
2913 struct kvm_memory_alias alias;
2914
2915 r = -EFAULT;
2916 if (copy_from_user(&alias, argp, sizeof alias))
2917 goto out;
2918 r = kvm_vm_ioctl_set_memory_alias(kvm, &alias);
2919 if (r)
2920 goto out;
2921 break;
2922 }
Eddie Dong85f455f2007-07-06 12:20:49 +03002923 case KVM_CREATE_IRQCHIP:
2924 r = -ENOMEM;
2925 kvm->vpic = kvm_create_pic(kvm);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +03002926 if (kvm->vpic) {
2927 r = kvm_ioapic_init(kvm);
2928 if (r) {
2929 kfree(kvm->vpic);
2930 kvm->vpic = NULL;
2931 goto out;
2932 }
2933 }
Eddie Dong85f455f2007-07-06 12:20:49 +03002934 else
2935 goto out;
2936 break;
2937 case KVM_IRQ_LINE: {
2938 struct kvm_irq_level irq_event;
2939
2940 r = -EFAULT;
2941 if (copy_from_user(&irq_event, argp, sizeof irq_event))
2942 goto out;
2943 if (irqchip_in_kernel(kvm)) {
Eddie Dong9cf98822007-07-22 10:36:31 +03002944 mutex_lock(&kvm->lock);
Eddie Dong85f455f2007-07-06 12:20:49 +03002945 if (irq_event.irq < 16)
2946 kvm_pic_set_irq(pic_irqchip(kvm),
2947 irq_event.irq,
2948 irq_event.level);
Eddie Dong1fd4f2a2007-07-18 12:03:39 +03002949 kvm_ioapic_set_irq(kvm->vioapic,
2950 irq_event.irq,
2951 irq_event.level);
Eddie Dong9cf98822007-07-22 10:36:31 +03002952 mutex_unlock(&kvm->lock);
Eddie Dong85f455f2007-07-06 12:20:49 +03002953 r = 0;
2954 }
2955 break;
2956 }
He, Qing6ceb9d72007-07-26 11:05:18 +03002957 case KVM_GET_IRQCHIP: {
2958 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
2959 struct kvm_irqchip chip;
2960
2961 r = -EFAULT;
2962 if (copy_from_user(&chip, argp, sizeof chip))
2963 goto out;
2964 r = -ENXIO;
2965 if (!irqchip_in_kernel(kvm))
2966 goto out;
2967 r = kvm_vm_ioctl_get_irqchip(kvm, &chip);
2968 if (r)
2969 goto out;
2970 r = -EFAULT;
2971 if (copy_to_user(argp, &chip, sizeof chip))
2972 goto out;
2973 r = 0;
2974 break;
2975 }
2976 case KVM_SET_IRQCHIP: {
2977 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
2978 struct kvm_irqchip chip;
2979
2980 r = -EFAULT;
2981 if (copy_from_user(&chip, argp, sizeof chip))
2982 goto out;
2983 r = -ENXIO;
2984 if (!irqchip_in_kernel(kvm))
2985 goto out;
2986 r = kvm_vm_ioctl_set_irqchip(kvm, &chip);
2987 if (r)
2988 goto out;
2989 r = 0;
2990 break;
2991 }
Avi Kivityf17abe92007-02-21 19:28:04 +02002992 default:
2993 ;
2994 }
2995out:
2996 return r;
2997}
2998
2999static struct page *kvm_vm_nopage(struct vm_area_struct *vma,
3000 unsigned long address,
3001 int *type)
3002{
3003 struct kvm *kvm = vma->vm_file->private_data;
3004 unsigned long pgoff;
Avi Kivityf17abe92007-02-21 19:28:04 +02003005 struct page *page;
3006
Avi Kivityf17abe92007-02-21 19:28:04 +02003007 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
Avi Kivity954bbbc22007-03-30 14:02:32 +03003008 page = gfn_to_page(kvm, pgoff);
Avi Kivityf17abe92007-02-21 19:28:04 +02003009 if (!page)
3010 return NOPAGE_SIGBUS;
3011 get_page(page);
Nguyen Anh Quynhcd0d9132007-07-11 14:30:54 +03003012 if (type != NULL)
3013 *type = VM_FAULT_MINOR;
3014
Avi Kivityf17abe92007-02-21 19:28:04 +02003015 return page;
3016}
3017
3018static struct vm_operations_struct kvm_vm_vm_ops = {
3019 .nopage = kvm_vm_nopage,
3020};
3021
3022static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
3023{
3024 vma->vm_ops = &kvm_vm_vm_ops;
3025 return 0;
3026}
3027
3028static struct file_operations kvm_vm_fops = {
3029 .release = kvm_vm_release,
3030 .unlocked_ioctl = kvm_vm_ioctl,
3031 .compat_ioctl = kvm_vm_ioctl,
3032 .mmap = kvm_vm_mmap,
3033};
3034
3035static int kvm_dev_ioctl_create_vm(void)
3036{
3037 int fd, r;
3038 struct inode *inode;
3039 struct file *file;
3040 struct kvm *kvm;
3041
Avi Kivityf17abe92007-02-21 19:28:04 +02003042 kvm = kvm_create_vm();
Avi Kivityd6d28162007-06-28 08:38:16 -04003043 if (IS_ERR(kvm))
3044 return PTR_ERR(kvm);
3045 r = anon_inode_getfd(&fd, &inode, &file, "kvm-vm", &kvm_vm_fops, kvm);
3046 if (r) {
3047 kvm_destroy_vm(kvm);
3048 return r;
Avi Kivityf17abe92007-02-21 19:28:04 +02003049 }
3050
Avi Kivitybccf2152007-02-21 18:04:26 +02003051 kvm->filp = file;
Avi Kivityf17abe92007-02-21 19:28:04 +02003052
Avi Kivityf17abe92007-02-21 19:28:04 +02003053 return fd;
Avi Kivityf17abe92007-02-21 19:28:04 +02003054}
3055
3056static long kvm_dev_ioctl(struct file *filp,
3057 unsigned int ioctl, unsigned long arg)
3058{
3059 void __user *argp = (void __user *)arg;
Avi Kivity07c45a32007-03-07 13:05:38 +02003060 long r = -EINVAL;
Avi Kivityf17abe92007-02-21 19:28:04 +02003061
3062 switch (ioctl) {
3063 case KVM_GET_API_VERSION:
Avi Kivityf0fe5102007-03-07 13:11:17 +02003064 r = -EINVAL;
3065 if (arg)
3066 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02003067 r = KVM_API_VERSION;
3068 break;
3069 case KVM_CREATE_VM:
Avi Kivityf0fe5102007-03-07 13:11:17 +02003070 r = -EINVAL;
3071 if (arg)
3072 goto out;
Avi Kivityf17abe92007-02-21 19:28:04 +02003073 r = kvm_dev_ioctl_create_vm();
3074 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003075 case KVM_GET_MSR_INDEX_LIST: {
Al Viro2f366982007-02-09 16:38:35 +00003076 struct kvm_msr_list __user *user_msr_list = argp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003077 struct kvm_msr_list msr_list;
3078 unsigned n;
3079
3080 r = -EFAULT;
3081 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
3082 goto out;
3083 n = msr_list.nmsrs;
Avi Kivity6f00e682007-01-26 00:56:40 -08003084 msr_list.nmsrs = num_msrs_to_save + ARRAY_SIZE(emulated_msrs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003085 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
3086 goto out;
3087 r = -E2BIG;
Michael Riepebf591b22006-12-22 01:05:36 -08003088 if (n < num_msrs_to_save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003089 goto out;
3090 r = -EFAULT;
3091 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
Michael Riepebf591b22006-12-22 01:05:36 -08003092 num_msrs_to_save * sizeof(u32)))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003093 goto out;
Avi Kivity6f00e682007-01-26 00:56:40 -08003094 if (copy_to_user(user_msr_list->indices
3095 + num_msrs_to_save * sizeof(u32),
3096 &emulated_msrs,
3097 ARRAY_SIZE(emulated_msrs) * sizeof(u32)))
3098 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003099 r = 0;
Avi Kivitycc1d8952007-01-05 16:36:58 -08003100 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003101 }
Eddie Dong85f455f2007-07-06 12:20:49 +03003102 case KVM_CHECK_EXTENSION: {
3103 int ext = (long)argp;
3104
3105 switch (ext) {
3106 case KVM_CAP_IRQCHIP:
Eddie Dongb6958ce2007-07-18 12:15:21 +03003107 case KVM_CAP_HLT:
Eddie Dong85f455f2007-07-06 12:20:49 +03003108 r = 1;
3109 break;
3110 default:
3111 r = 0;
3112 break;
3113 }
Avi Kivity5d308f42007-03-01 17:56:20 +02003114 break;
Eddie Dong85f455f2007-07-06 12:20:49 +03003115 }
Avi Kivity07c45a32007-03-07 13:05:38 +02003116 case KVM_GET_VCPU_MMAP_SIZE:
3117 r = -EINVAL;
3118 if (arg)
3119 goto out;
Avi Kivity039576c2007-03-20 12:46:50 +02003120 r = 2 * PAGE_SIZE;
Avi Kivity07c45a32007-03-07 13:05:38 +02003121 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003122 default:
3123 ;
3124 }
3125out:
3126 return r;
3127}
3128
Avi Kivity6aa8b732006-12-10 02:21:36 -08003129static struct file_operations kvm_chardev_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003130 .unlocked_ioctl = kvm_dev_ioctl,
3131 .compat_ioctl = kvm_dev_ioctl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003132};
3133
3134static struct miscdevice kvm_dev = {
Avi Kivitybbe44322007-03-04 13:27:36 +02003135 KVM_MINOR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003136 "kvm",
3137 &kvm_chardev_ops,
3138};
3139
Avi Kivity774c47f2007-02-12 00:54:47 -08003140/*
3141 * Make sure that a cpu that is being hot-unplugged does not have any vcpus
3142 * cached on it.
3143 */
3144static void decache_vcpus_on_cpu(int cpu)
3145{
3146 struct kvm *vm;
3147 struct kvm_vcpu *vcpu;
3148 int i;
3149
3150 spin_lock(&kvm_lock);
Shaohua Li11ec2802007-07-23 14:51:37 +08003151 list_for_each_entry(vm, &vm_list, vm_list)
Avi Kivity774c47f2007-02-12 00:54:47 -08003152 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003153 vcpu = vm->vcpus[i];
3154 if (!vcpu)
3155 continue;
Avi Kivity774c47f2007-02-12 00:54:47 -08003156 /*
3157 * If the vcpu is locked, then it is running on some
3158 * other cpu and therefore it is not cached on the
3159 * cpu in question.
3160 *
3161 * If it's not locked, check the last cpu it executed
3162 * on.
3163 */
3164 if (mutex_trylock(&vcpu->mutex)) {
3165 if (vcpu->cpu == cpu) {
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003166 kvm_x86_ops->vcpu_decache(vcpu);
Avi Kivity774c47f2007-02-12 00:54:47 -08003167 vcpu->cpu = -1;
3168 }
3169 mutex_unlock(&vcpu->mutex);
3170 }
3171 }
3172 spin_unlock(&kvm_lock);
3173}
3174
Avi Kivity1b6c0162007-05-24 13:03:52 +03003175static void hardware_enable(void *junk)
3176{
3177 int cpu = raw_smp_processor_id();
3178
3179 if (cpu_isset(cpu, cpus_hardware_enabled))
3180 return;
3181 cpu_set(cpu, cpus_hardware_enabled);
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003182 kvm_x86_ops->hardware_enable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03003183}
3184
3185static void hardware_disable(void *junk)
3186{
3187 int cpu = raw_smp_processor_id();
3188
3189 if (!cpu_isset(cpu, cpus_hardware_enabled))
3190 return;
3191 cpu_clear(cpu, cpus_hardware_enabled);
3192 decache_vcpus_on_cpu(cpu);
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003193 kvm_x86_ops->hardware_disable(NULL);
Avi Kivity1b6c0162007-05-24 13:03:52 +03003194}
3195
Avi Kivity774c47f2007-02-12 00:54:47 -08003196static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
3197 void *v)
3198{
3199 int cpu = (long)v;
3200
3201 switch (val) {
Avi Kivitycec9ad22007-05-24 13:11:41 +03003202 case CPU_DYING:
3203 case CPU_DYING_FROZEN:
Avi Kivity6ec8a852007-08-19 15:57:26 +03003204 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
3205 cpu);
3206 hardware_disable(NULL);
3207 break;
Avi Kivity774c47f2007-02-12 00:54:47 -08003208 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003209 case CPU_UP_CANCELED_FROZEN:
Jeremy Katz43934a32007-02-19 14:37:46 +02003210 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
3211 cpu);
Avi Kivity1b6c0162007-05-24 13:03:52 +03003212 smp_call_function_single(cpu, hardware_disable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08003213 break;
Jeremy Katz43934a32007-02-19 14:37:46 +02003214 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003215 case CPU_ONLINE_FROZEN:
Jeremy Katz43934a32007-02-19 14:37:46 +02003216 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
3217 cpu);
Avi Kivity1b6c0162007-05-24 13:03:52 +03003218 smp_call_function_single(cpu, hardware_enable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08003219 break;
3220 }
3221 return NOTIFY_OK;
3222}
3223
Rusty Russell9a2b85c2007-07-17 23:17:55 +10003224static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
3225 void *v)
3226{
3227 if (val == SYS_RESTART) {
3228 /*
3229 * Some (well, at least mine) BIOSes hang on reboot if
3230 * in vmx root mode.
3231 */
3232 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
3233 on_each_cpu(hardware_disable, NULL, 0, 1);
3234 }
3235 return NOTIFY_OK;
3236}
3237
3238static struct notifier_block kvm_reboot_notifier = {
3239 .notifier_call = kvm_reboot,
3240 .priority = 0,
3241};
3242
Gregory Haskins2eeb2e92007-05-31 14:08:53 -04003243void kvm_io_bus_init(struct kvm_io_bus *bus)
3244{
3245 memset(bus, 0, sizeof(*bus));
3246}
3247
3248void kvm_io_bus_destroy(struct kvm_io_bus *bus)
3249{
3250 int i;
3251
3252 for (i = 0; i < bus->dev_count; i++) {
3253 struct kvm_io_device *pos = bus->devs[i];
3254
3255 kvm_iodevice_destructor(pos);
3256 }
3257}
3258
3259struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, gpa_t addr)
3260{
3261 int i;
3262
3263 for (i = 0; i < bus->dev_count; i++) {
3264 struct kvm_io_device *pos = bus->devs[i];
3265
3266 if (pos->in_range(pos, addr))
3267 return pos;
3268 }
3269
3270 return NULL;
3271}
3272
3273void kvm_io_bus_register_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev)
3274{
3275 BUG_ON(bus->dev_count > (NR_IOBUS_DEVS-1));
3276
3277 bus->devs[bus->dev_count++] = dev;
3278}
3279
Avi Kivity774c47f2007-02-12 00:54:47 -08003280static struct notifier_block kvm_cpu_notifier = {
3281 .notifier_call = kvm_cpu_hotplug,
3282 .priority = 20, /* must be > scheduler priority */
3283};
3284
Avi Kivity1165f5f2007-04-19 17:27:43 +03003285static u64 stat_get(void *_offset)
3286{
3287 unsigned offset = (long)_offset;
3288 u64 total = 0;
3289 struct kvm *kvm;
3290 struct kvm_vcpu *vcpu;
3291 int i;
3292
3293 spin_lock(&kvm_lock);
3294 list_for_each_entry(kvm, &vm_list, vm_list)
3295 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003296 vcpu = kvm->vcpus[i];
3297 if (vcpu)
3298 total += *(u32 *)((void *)vcpu + offset);
Avi Kivity1165f5f2007-04-19 17:27:43 +03003299 }
3300 spin_unlock(&kvm_lock);
3301 return total;
3302}
3303
Rusty Russell3dea7ca2007-08-01 10:12:22 +10003304DEFINE_SIMPLE_ATTRIBUTE(stat_fops, stat_get, NULL, "%llu\n");
Avi Kivity1165f5f2007-04-19 17:27:43 +03003305
Avi Kivity6aa8b732006-12-10 02:21:36 -08003306static __init void kvm_init_debug(void)
3307{
3308 struct kvm_stats_debugfs_item *p;
3309
Al Viro8b6d44c2007-02-09 16:38:40 +00003310 debugfs_dir = debugfs_create_dir("kvm", NULL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003311 for (p = debugfs_entries; p->name; ++p)
Avi Kivity1165f5f2007-04-19 17:27:43 +03003312 p->dentry = debugfs_create_file(p->name, 0444, debugfs_dir,
3313 (void *)(long)p->offset,
3314 &stat_fops);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003315}
3316
3317static void kvm_exit_debug(void)
3318{
3319 struct kvm_stats_debugfs_item *p;
3320
3321 for (p = debugfs_entries; p->name; ++p)
3322 debugfs_remove(p->dentry);
3323 debugfs_remove(debugfs_dir);
3324}
3325
Avi Kivity59ae6c62007-02-12 00:54:48 -08003326static int kvm_suspend(struct sys_device *dev, pm_message_t state)
3327{
Avi Kivity4267c412007-05-24 13:09:41 +03003328 hardware_disable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003329 return 0;
3330}
3331
3332static int kvm_resume(struct sys_device *dev)
3333{
Avi Kivity4267c412007-05-24 13:09:41 +03003334 hardware_enable(NULL);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003335 return 0;
3336}
3337
3338static struct sysdev_class kvm_sysdev_class = {
3339 set_kset_name("kvm"),
3340 .suspend = kvm_suspend,
3341 .resume = kvm_resume,
3342};
3343
3344static struct sys_device kvm_sysdev = {
3345 .id = 0,
3346 .cls = &kvm_sysdev_class,
3347};
3348
Avi Kivity6aa8b732006-12-10 02:21:36 -08003349hpa_t bad_page_address;
3350
Avi Kivity15ad7142007-07-11 18:17:21 +03003351static inline
3352struct kvm_vcpu *preempt_notifier_to_vcpu(struct preempt_notifier *pn)
3353{
3354 return container_of(pn, struct kvm_vcpu, preempt_notifier);
3355}
3356
3357static void kvm_sched_in(struct preempt_notifier *pn, int cpu)
3358{
3359 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3360
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003361 kvm_x86_ops->vcpu_load(vcpu, cpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003362}
3363
3364static void kvm_sched_out(struct preempt_notifier *pn,
3365 struct task_struct *next)
3366{
3367 struct kvm_vcpu *vcpu = preempt_notifier_to_vcpu(pn);
3368
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003369 kvm_x86_ops->vcpu_put(vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003370}
3371
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003372int kvm_init_x86(struct kvm_x86_ops *ops, unsigned int vcpu_size,
Rusty Russellc16f8622007-07-30 21:12:19 +10003373 struct module *module)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003374{
3375 int r;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003376 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003377
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003378 if (kvm_x86_ops) {
Yoshimi Ichiyanagi09db28b2006-12-29 16:49:41 -08003379 printk(KERN_ERR "kvm: already loaded the other module\n");
3380 return -EEXIST;
3381 }
3382
Yoshimi Ichiyanagie097f352007-01-05 16:36:24 -08003383 if (!ops->cpu_has_kvm_support()) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003384 printk(KERN_ERR "kvm: no hardware support\n");
3385 return -EOPNOTSUPP;
3386 }
Yoshimi Ichiyanagie097f352007-01-05 16:36:24 -08003387 if (ops->disabled_by_bios()) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003388 printk(KERN_ERR "kvm: disabled by bios\n");
3389 return -EOPNOTSUPP;
3390 }
3391
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003392 kvm_x86_ops = ops;
Yoshimi Ichiyanagie097f352007-01-05 16:36:24 -08003393
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003394 r = kvm_x86_ops->hardware_setup();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003395 if (r < 0)
Avi Kivityca45aaa2007-03-01 19:21:03 +02003396 goto out;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003397
Yang, Sheng002c7f72007-07-31 14:23:01 +03003398 for_each_online_cpu(cpu) {
3399 smp_call_function_single(cpu,
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003400 kvm_x86_ops->check_processor_compatibility,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003401 &r, 0, 1);
3402 if (r < 0)
3403 goto out_free_0;
3404 }
3405
Avi Kivity1b6c0162007-05-24 13:03:52 +03003406 on_each_cpu(hardware_enable, NULL, 0, 1);
Avi Kivity774c47f2007-02-12 00:54:47 -08003407 r = register_cpu_notifier(&kvm_cpu_notifier);
3408 if (r)
3409 goto out_free_1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003410 register_reboot_notifier(&kvm_reboot_notifier);
3411
Avi Kivity59ae6c62007-02-12 00:54:48 -08003412 r = sysdev_class_register(&kvm_sysdev_class);
3413 if (r)
3414 goto out_free_2;
3415
3416 r = sysdev_register(&kvm_sysdev);
3417 if (r)
3418 goto out_free_3;
3419
Rusty Russellc16f8622007-07-30 21:12:19 +10003420 /* A kmem cache lets us meet the alignment requirements of fx_save. */
3421 kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size,
3422 __alignof__(struct kvm_vcpu), 0, 0);
3423 if (!kvm_vcpu_cache) {
3424 r = -ENOMEM;
3425 goto out_free_4;
3426 }
3427
Avi Kivity6aa8b732006-12-10 02:21:36 -08003428 kvm_chardev_ops.owner = module;
3429
3430 r = misc_register(&kvm_dev);
3431 if (r) {
3432 printk (KERN_ERR "kvm: misc device register failed\n");
3433 goto out_free;
3434 }
3435
Avi Kivity15ad7142007-07-11 18:17:21 +03003436 kvm_preempt_ops.sched_in = kvm_sched_in;
3437 kvm_preempt_ops.sched_out = kvm_sched_out;
3438
Avi Kivity6aa8b732006-12-10 02:21:36 -08003439 return r;
3440
3441out_free:
Rusty Russellc16f8622007-07-30 21:12:19 +10003442 kmem_cache_destroy(kvm_vcpu_cache);
3443out_free_4:
Avi Kivity59ae6c62007-02-12 00:54:48 -08003444 sysdev_unregister(&kvm_sysdev);
3445out_free_3:
3446 sysdev_class_unregister(&kvm_sysdev_class);
3447out_free_2:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003448 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity774c47f2007-02-12 00:54:47 -08003449 unregister_cpu_notifier(&kvm_cpu_notifier);
3450out_free_1:
Avi Kivity1b6c0162007-05-24 13:03:52 +03003451 on_each_cpu(hardware_disable, NULL, 0, 1);
Yang, Sheng002c7f72007-07-31 14:23:01 +03003452out_free_0:
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003453 kvm_x86_ops->hardware_unsetup();
Avi Kivityca45aaa2007-03-01 19:21:03 +02003454out:
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003455 kvm_x86_ops = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003456 return r;
3457}
3458
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003459void kvm_exit_x86(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003460{
3461 misc_deregister(&kvm_dev);
Rusty Russellc16f8622007-07-30 21:12:19 +10003462 kmem_cache_destroy(kvm_vcpu_cache);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003463 sysdev_unregister(&kvm_sysdev);
3464 sysdev_class_unregister(&kvm_sysdev_class);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003465 unregister_reboot_notifier(&kvm_reboot_notifier);
Avi Kivity59ae6c62007-02-12 00:54:48 -08003466 unregister_cpu_notifier(&kvm_cpu_notifier);
Avi Kivity1b6c0162007-05-24 13:03:52 +03003467 on_each_cpu(hardware_disable, NULL, 0, 1);
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003468 kvm_x86_ops->hardware_unsetup();
3469 kvm_x86_ops = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003470}
3471
3472static __init int kvm_init(void)
3473{
3474 static struct page *bad_page;
Avi Kivity37e29d92007-02-20 14:07:37 +02003475 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003476
Avi Kivityb5a33a72007-04-15 16:31:09 +03003477 r = kvm_mmu_module_init();
3478 if (r)
3479 goto out4;
3480
Avi Kivity6aa8b732006-12-10 02:21:36 -08003481 kvm_init_debug();
3482
Michael Riepebf591b22006-12-22 01:05:36 -08003483 kvm_init_msr_list();
3484
Avi Kivity6aa8b732006-12-10 02:21:36 -08003485 if ((bad_page = alloc_page(GFP_KERNEL)) == NULL) {
3486 r = -ENOMEM;
3487 goto out;
3488 }
3489
3490 bad_page_address = page_to_pfn(bad_page) << PAGE_SHIFT;
3491 memset(__va(bad_page_address), 0, PAGE_SIZE);
3492
Avi Kivity58e690e2007-02-26 16:29:43 +02003493 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003494
3495out:
3496 kvm_exit_debug();
Avi Kivityb5a33a72007-04-15 16:31:09 +03003497 kvm_mmu_module_exit();
3498out4:
Avi Kivity6aa8b732006-12-10 02:21:36 -08003499 return r;
3500}
3501
3502static __exit void kvm_exit(void)
3503{
3504 kvm_exit_debug();
3505 __free_page(pfn_to_page(bad_page_address >> PAGE_SHIFT));
Avi Kivityb5a33a72007-04-15 16:31:09 +03003506 kvm_mmu_module_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003507}
3508
3509module_init(kvm_init)
3510module_exit(kvm_exit)
3511
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003512EXPORT_SYMBOL_GPL(kvm_init_x86);
3513EXPORT_SYMBOL_GPL(kvm_exit_x86);