KVM: Use standard CR4 flags, tighten checking
[deliverable/linux.git] / drivers / kvm / kvm_main.c
CommitLineData
6aa8b732
AK
1/*
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"
e495606d
AK
19#include "x86_emulate.h"
20#include "segment_descriptor.h"
6aa8b732
AK
21
22#include <linux/kvm.h>
23#include <linux/module.h>
24#include <linux/errno.h>
6aa8b732
AK
25#include <linux/percpu.h>
26#include <linux/gfp.h>
6aa8b732
AK
27#include <linux/mm.h>
28#include <linux/miscdevice.h>
29#include <linux/vmalloc.h>
6aa8b732 30#include <linux/reboot.h>
6aa8b732
AK
31#include <linux/debugfs.h>
32#include <linux/highmem.h>
33#include <linux/file.h>
59ae6c6b 34#include <linux/sysdev.h>
774c47f1 35#include <linux/cpu.h>
e8edc6e0 36#include <linux/sched.h>
d9e368d6
AK
37#include <linux/cpumask.h>
38#include <linux/smp.h>
d6d28168 39#include <linux/anon_inodes.h>
6aa8b732 40
e495606d
AK
41#include <asm/processor.h>
42#include <asm/msr.h>
43#include <asm/io.h>
44#include <asm/uaccess.h>
45#include <asm/desc.h>
6aa8b732
AK
46
47MODULE_AUTHOR("Qumranet");
48MODULE_LICENSE("GPL");
49
133de902
AK
50static DEFINE_SPINLOCK(kvm_lock);
51static LIST_HEAD(vm_list);
52
1b6c0168
AK
53static cpumask_t cpus_hardware_enabled;
54
6aa8b732 55struct kvm_arch_ops *kvm_arch_ops;
1165f5fe
AK
56
57#define STAT_OFFSET(x) offsetof(struct kvm_vcpu, stat.x)
6aa8b732
AK
58
59static struct kvm_stats_debugfs_item {
60 const char *name;
1165f5fe 61 int offset;
6aa8b732
AK
62 struct dentry *dentry;
63} debugfs_entries[] = {
1165f5fe
AK
64 { "pf_fixed", STAT_OFFSET(pf_fixed) },
65 { "pf_guest", STAT_OFFSET(pf_guest) },
66 { "tlb_flush", STAT_OFFSET(tlb_flush) },
67 { "invlpg", STAT_OFFSET(invlpg) },
68 { "exits", STAT_OFFSET(exits) },
69 { "io_exits", STAT_OFFSET(io_exits) },
70 { "mmio_exits", STAT_OFFSET(mmio_exits) },
71 { "signal_exits", STAT_OFFSET(signal_exits) },
72 { "irq_window", STAT_OFFSET(irq_window_exits) },
73 { "halt_exits", STAT_OFFSET(halt_exits) },
74 { "request_irq", STAT_OFFSET(request_irq_exits) },
75 { "irq_exits", STAT_OFFSET(irq_exits) },
e6adf283 76 { "light_exits", STAT_OFFSET(light_exits) },
2cc51560 77 { "efer_reload", STAT_OFFSET(efer_reload) },
1165f5fe 78 { NULL }
6aa8b732
AK
79};
80
81static struct dentry *debugfs_dir;
82
83#define MAX_IO_MSRS 256
84
707d92fa
RR
85#define CR0_RESERVED_BITS \
86 (~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \
87 | X86_CR0_ET | X86_CR0_NE | X86_CR0_WP | X86_CR0_AM \
88 | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG))
66aee91a
RR
89#define CR4_RESERVED_BITS \
90 (~(unsigned long)(X86_CR4_VME | X86_CR4_PVI | X86_CR4_TSD | X86_CR4_DE\
91 | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE \
92 | X86_CR4_PGE | X86_CR4_PCE | X86_CR4_OSFXSR \
93 | X86_CR4_OSXMMEXCPT | X86_CR4_VMXE))
94
6aa8b732
AK
95#define CR8_RESEVED_BITS (~0x0fULL)
96#define EFER_RESERVED_BITS 0xfffffffffffff2fe
97
05b3e0c2 98#ifdef CONFIG_X86_64
6aa8b732
AK
99// LDT or TSS descriptor in the GDT. 16 bytes.
100struct segment_descriptor_64 {
101 struct segment_descriptor s;
102 u32 base_higher;
103 u32 pad_zero;
104};
105
106#endif
107
bccf2150
AK
108static long kvm_vcpu_ioctl(struct file *file, unsigned int ioctl,
109 unsigned long arg);
110
6aa8b732
AK
111unsigned long segment_base(u16 selector)
112{
113 struct descriptor_table gdt;
114 struct segment_descriptor *d;
115 unsigned long table_base;
116 typedef unsigned long ul;
117 unsigned long v;
118
119 if (selector == 0)
120 return 0;
121
122 asm ("sgdt %0" : "=m"(gdt));
123 table_base = gdt.base;
124
125 if (selector & 4) { /* from ldt */
126 u16 ldt_selector;
127
128 asm ("sldt %0" : "=g"(ldt_selector));
129 table_base = segment_base(ldt_selector);
130 }
131 d = (struct segment_descriptor *)(table_base + (selector & ~7));
132 v = d->base_low | ((ul)d->base_mid << 16) | ((ul)d->base_high << 24);
05b3e0c2 133#ifdef CONFIG_X86_64
6aa8b732
AK
134 if (d->system == 0
135 && (d->type == 2 || d->type == 9 || d->type == 11))
136 v |= ((ul)((struct segment_descriptor_64 *)d)->base_higher) << 32;
137#endif
138 return v;
139}
140EXPORT_SYMBOL_GPL(segment_base);
141
5aacf0ca
JM
142static inline int valid_vcpu(int n)
143{
144 return likely(n >= 0 && n < KVM_MAX_VCPUS);
145}
146
d27d4aca
AK
147int kvm_read_guest(struct kvm_vcpu *vcpu, gva_t addr, unsigned long size,
148 void *dest)
6aa8b732
AK
149{
150 unsigned char *host_buf = dest;
151 unsigned long req_size = size;
152
153 while (size) {
154 hpa_t paddr;
155 unsigned now;
156 unsigned offset;
157 hva_t guest_buf;
158
159 paddr = gva_to_hpa(vcpu, addr);
160
161 if (is_error_hpa(paddr))
162 break;
163
164 guest_buf = (hva_t)kmap_atomic(
165 pfn_to_page(paddr >> PAGE_SHIFT),
166 KM_USER0);
167 offset = addr & ~PAGE_MASK;
168 guest_buf |= offset;
169 now = min(size, PAGE_SIZE - offset);
170 memcpy(host_buf, (void*)guest_buf, now);
171 host_buf += now;
172 addr += now;
173 size -= now;
174 kunmap_atomic((void *)(guest_buf & PAGE_MASK), KM_USER0);
175 }
176 return req_size - size;
177}
178EXPORT_SYMBOL_GPL(kvm_read_guest);
179
d27d4aca
AK
180int kvm_write_guest(struct kvm_vcpu *vcpu, gva_t addr, unsigned long size,
181 void *data)
6aa8b732
AK
182{
183 unsigned char *host_buf = data;
184 unsigned long req_size = size;
185
186 while (size) {
187 hpa_t paddr;
188 unsigned now;
189 unsigned offset;
190 hva_t guest_buf;
ab51a434 191 gfn_t gfn;
6aa8b732
AK
192
193 paddr = gva_to_hpa(vcpu, addr);
194
195 if (is_error_hpa(paddr))
196 break;
197
ab51a434
UL
198 gfn = vcpu->mmu.gva_to_gpa(vcpu, addr) >> PAGE_SHIFT;
199 mark_page_dirty(vcpu->kvm, gfn);
6aa8b732
AK
200 guest_buf = (hva_t)kmap_atomic(
201 pfn_to_page(paddr >> PAGE_SHIFT), KM_USER0);
202 offset = addr & ~PAGE_MASK;
203 guest_buf |= offset;
204 now = min(size, PAGE_SIZE - offset);
205 memcpy((void*)guest_buf, host_buf, now);
206 host_buf += now;
207 addr += now;
208 size -= now;
209 kunmap_atomic((void *)(guest_buf & PAGE_MASK), KM_USER0);
210 }
211 return req_size - size;
212}
213EXPORT_SYMBOL_GPL(kvm_write_guest);
214
7702fd1f
AK
215void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
216{
217 if (!vcpu->fpu_active || vcpu->guest_fpu_loaded)
218 return;
219
220 vcpu->guest_fpu_loaded = 1;
221 fx_save(vcpu->host_fx_image);
222 fx_restore(vcpu->guest_fx_image);
223}
224EXPORT_SYMBOL_GPL(kvm_load_guest_fpu);
225
226void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
227{
228 if (!vcpu->guest_fpu_loaded)
229 return;
230
231 vcpu->guest_fpu_loaded = 0;
232 fx_save(vcpu->guest_fx_image);
233 fx_restore(vcpu->host_fx_image);
234}
235EXPORT_SYMBOL_GPL(kvm_put_guest_fpu);
236
bccf2150
AK
237/*
238 * Switches to specified vcpu, until a matching vcpu_put()
239 */
240static void vcpu_load(struct kvm_vcpu *vcpu)
6aa8b732 241{
bccf2150
AK
242 mutex_lock(&vcpu->mutex);
243 kvm_arch_ops->vcpu_load(vcpu);
6aa8b732
AK
244}
245
6aa8b732
AK
246static void vcpu_put(struct kvm_vcpu *vcpu)
247{
248 kvm_arch_ops->vcpu_put(vcpu);
6aa8b732
AK
249 mutex_unlock(&vcpu->mutex);
250}
251
d9e368d6
AK
252static void ack_flush(void *_completed)
253{
254 atomic_t *completed = _completed;
255
256 atomic_inc(completed);
257}
258
259void kvm_flush_remote_tlbs(struct kvm *kvm)
260{
261 int i, cpu, needed;
262 cpumask_t cpus;
263 struct kvm_vcpu *vcpu;
264 atomic_t completed;
265
266 atomic_set(&completed, 0);
267 cpus_clear(cpus);
268 needed = 0;
269 for (i = 0; i < kvm->nvcpus; ++i) {
270 vcpu = &kvm->vcpus[i];
271 if (test_and_set_bit(KVM_TLB_FLUSH, &vcpu->requests))
272 continue;
273 cpu = vcpu->cpu;
274 if (cpu != -1 && cpu != raw_smp_processor_id())
275 if (!cpu_isset(cpu, cpus)) {
276 cpu_set(cpu, cpus);
277 ++needed;
278 }
279 }
280
281 /*
282 * We really want smp_call_function_mask() here. But that's not
283 * available, so ipi all cpus in parallel and wait for them
284 * to complete.
285 */
286 for (cpu = first_cpu(cpus); cpu != NR_CPUS; cpu = next_cpu(cpu, cpus))
287 smp_call_function_single(cpu, ack_flush, &completed, 1, 0);
288 while (atomic_read(&completed) != needed) {
289 cpu_relax();
290 barrier();
291 }
292}
293
f17abe9a 294static struct kvm *kvm_create_vm(void)
6aa8b732
AK
295{
296 struct kvm *kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL);
297 int i;
298
299 if (!kvm)
f17abe9a 300 return ERR_PTR(-ENOMEM);
6aa8b732 301
74906345 302 kvm_io_bus_init(&kvm->pio_bus);
6aa8b732
AK
303 spin_lock_init(&kvm->lock);
304 INIT_LIST_HEAD(&kvm->active_mmu_pages);
2eeb2e94 305 kvm_io_bus_init(&kvm->mmio_bus);
6aa8b732
AK
306 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
307 struct kvm_vcpu *vcpu = &kvm->vcpus[i];
308
309 mutex_init(&vcpu->mutex);
133de902 310 vcpu->cpu = -1;
86a2b42e 311 vcpu->kvm = kvm;
6aa8b732 312 vcpu->mmu.root_hpa = INVALID_PAGE;
6aa8b732 313 }
5e58cfe4
RR
314 spin_lock(&kvm_lock);
315 list_add(&kvm->vm_list, &vm_list);
316 spin_unlock(&kvm_lock);
f17abe9a
AK
317 return kvm;
318}
319
320static int kvm_dev_open(struct inode *inode, struct file *filp)
321{
6aa8b732
AK
322 return 0;
323}
324
325/*
326 * Free any memory in @free but not in @dont.
327 */
328static void kvm_free_physmem_slot(struct kvm_memory_slot *free,
329 struct kvm_memory_slot *dont)
330{
331 int i;
332
333 if (!dont || free->phys_mem != dont->phys_mem)
334 if (free->phys_mem) {
335 for (i = 0; i < free->npages; ++i)
55a54f79
AK
336 if (free->phys_mem[i])
337 __free_page(free->phys_mem[i]);
6aa8b732
AK
338 vfree(free->phys_mem);
339 }
340
341 if (!dont || free->dirty_bitmap != dont->dirty_bitmap)
342 vfree(free->dirty_bitmap);
343
8b6d44c7 344 free->phys_mem = NULL;
6aa8b732 345 free->npages = 0;
8b6d44c7 346 free->dirty_bitmap = NULL;
6aa8b732
AK
347}
348
349static void kvm_free_physmem(struct kvm *kvm)
350{
351 int i;
352
353 for (i = 0; i < kvm->nmemslots; ++i)
8b6d44c7 354 kvm_free_physmem_slot(&kvm->memslots[i], NULL);
6aa8b732
AK
355}
356
039576c0
AK
357static void free_pio_guest_pages(struct kvm_vcpu *vcpu)
358{
359 int i;
360
361 for (i = 0; i < 2; ++i)
362 if (vcpu->pio.guest_pages[i]) {
363 __free_page(vcpu->pio.guest_pages[i]);
364 vcpu->pio.guest_pages[i] = NULL;
365 }
366}
367
7b53aa56
AK
368static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
369{
370 if (!vcpu->vmcs)
371 return;
372
373 vcpu_load(vcpu);
374 kvm_mmu_unload(vcpu);
375 vcpu_put(vcpu);
376}
377
6aa8b732
AK
378static void kvm_free_vcpu(struct kvm_vcpu *vcpu)
379{
bccf2150 380 if (!vcpu->vmcs)
1e8ba6fb
IM
381 return;
382
bccf2150 383 vcpu_load(vcpu);
6aa8b732 384 kvm_mmu_destroy(vcpu);
08438475 385 vcpu_put(vcpu);
9ede74e0 386 kvm_arch_ops->vcpu_free(vcpu);
9a2bb7f4
AK
387 free_page((unsigned long)vcpu->run);
388 vcpu->run = NULL;
039576c0
AK
389 free_page((unsigned long)vcpu->pio_data);
390 vcpu->pio_data = NULL;
391 free_pio_guest_pages(vcpu);
6aa8b732
AK
392}
393
394static void kvm_free_vcpus(struct kvm *kvm)
395{
396 unsigned int i;
397
7b53aa56
AK
398 /*
399 * Unpin any mmu pages first.
400 */
401 for (i = 0; i < KVM_MAX_VCPUS; ++i)
402 kvm_unload_vcpu_mmu(&kvm->vcpus[i]);
6aa8b732
AK
403 for (i = 0; i < KVM_MAX_VCPUS; ++i)
404 kvm_free_vcpu(&kvm->vcpus[i]);
405}
406
407static int kvm_dev_release(struct inode *inode, struct file *filp)
408{
f17abe9a
AK
409 return 0;
410}
6aa8b732 411
f17abe9a
AK
412static void kvm_destroy_vm(struct kvm *kvm)
413{
133de902
AK
414 spin_lock(&kvm_lock);
415 list_del(&kvm->vm_list);
416 spin_unlock(&kvm_lock);
74906345 417 kvm_io_bus_destroy(&kvm->pio_bus);
2eeb2e94 418 kvm_io_bus_destroy(&kvm->mmio_bus);
6aa8b732
AK
419 kvm_free_vcpus(kvm);
420 kvm_free_physmem(kvm);
421 kfree(kvm);
f17abe9a
AK
422}
423
424static int kvm_vm_release(struct inode *inode, struct file *filp)
425{
426 struct kvm *kvm = filp->private_data;
427
428 kvm_destroy_vm(kvm);
6aa8b732
AK
429 return 0;
430}
431
432static void inject_gp(struct kvm_vcpu *vcpu)
433{
434 kvm_arch_ops->inject_gp(vcpu, 0);
435}
436
1342d353
AK
437/*
438 * Load the pae pdptrs. Return true is they are all valid.
439 */
440static int load_pdptrs(struct kvm_vcpu *vcpu, unsigned long cr3)
6aa8b732
AK
441{
442 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
1342d353 443 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
6aa8b732
AK
444 int i;
445 u64 pdpte;
446 u64 *pdpt;
1342d353 447 int ret;
954bbbc2 448 struct page *page;
6aa8b732
AK
449
450 spin_lock(&vcpu->kvm->lock);
954bbbc2
AK
451 page = gfn_to_page(vcpu->kvm, pdpt_gfn);
452 /* FIXME: !page - emulate? 0xff? */
453 pdpt = kmap_atomic(page, KM_USER0);
6aa8b732 454
1342d353 455 ret = 1;
6aa8b732
AK
456 for (i = 0; i < 4; ++i) {
457 pdpte = pdpt[offset + i];
1342d353
AK
458 if ((pdpte & 1) && (pdpte & 0xfffffff0000001e6ull)) {
459 ret = 0;
460 goto out;
461 }
6aa8b732
AK
462 }
463
1342d353
AK
464 for (i = 0; i < 4; ++i)
465 vcpu->pdptrs[i] = pdpt[offset + i];
466
467out:
6aa8b732
AK
468 kunmap_atomic(pdpt, KM_USER0);
469 spin_unlock(&vcpu->kvm->lock);
470
1342d353 471 return ret;
6aa8b732
AK
472}
473
474void set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
475{
707d92fa 476 if (cr0 & CR0_RESERVED_BITS) {
6aa8b732
AK
477 printk(KERN_DEBUG "set_cr0: 0x%lx #GP, reserved bits 0x%lx\n",
478 cr0, vcpu->cr0);
479 inject_gp(vcpu);
480 return;
481 }
482
707d92fa 483 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD)) {
6aa8b732
AK
484 printk(KERN_DEBUG "set_cr0: #GP, CD == 0 && NW == 1\n");
485 inject_gp(vcpu);
486 return;
487 }
488
707d92fa 489 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE)) {
6aa8b732
AK
490 printk(KERN_DEBUG "set_cr0: #GP, set PG flag "
491 "and a clear PE flag\n");
492 inject_gp(vcpu);
493 return;
494 }
495
707d92fa 496 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
05b3e0c2 497#ifdef CONFIG_X86_64
6aa8b732
AK
498 if ((vcpu->shadow_efer & EFER_LME)) {
499 int cs_db, cs_l;
500
501 if (!is_pae(vcpu)) {
502 printk(KERN_DEBUG "set_cr0: #GP, start paging "
503 "in long mode while PAE is disabled\n");
504 inject_gp(vcpu);
505 return;
506 }
507 kvm_arch_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
508 if (cs_l) {
509 printk(KERN_DEBUG "set_cr0: #GP, start paging "
510 "in long mode while CS.L == 1\n");
511 inject_gp(vcpu);
512 return;
513
514 }
515 } else
516#endif
1342d353 517 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->cr3)) {
6aa8b732
AK
518 printk(KERN_DEBUG "set_cr0: #GP, pdptrs "
519 "reserved bits\n");
520 inject_gp(vcpu);
521 return;
522 }
523
524 }
525
526 kvm_arch_ops->set_cr0(vcpu, cr0);
527 vcpu->cr0 = cr0;
528
529 spin_lock(&vcpu->kvm->lock);
530 kvm_mmu_reset_context(vcpu);
531 spin_unlock(&vcpu->kvm->lock);
532 return;
533}
534EXPORT_SYMBOL_GPL(set_cr0);
535
536void lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
537{
538 set_cr0(vcpu, (vcpu->cr0 & ~0x0ful) | (msw & 0x0f));
539}
540EXPORT_SYMBOL_GPL(lmsw);
541
542void set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
543{
66aee91a 544 if (cr4 & CR4_RESERVED_BITS) {
6aa8b732
AK
545 printk(KERN_DEBUG "set_cr4: #GP, reserved bits\n");
546 inject_gp(vcpu);
547 return;
548 }
549
a9058ecd 550 if (is_long_mode(vcpu)) {
66aee91a 551 if (!(cr4 & X86_CR4_PAE)) {
6aa8b732
AK
552 printk(KERN_DEBUG "set_cr4: #GP, clearing PAE while "
553 "in long mode\n");
554 inject_gp(vcpu);
555 return;
556 }
66aee91a 557 } else if (is_paging(vcpu) && !is_pae(vcpu) && (cr4 & X86_CR4_PAE)
1342d353 558 && !load_pdptrs(vcpu, vcpu->cr3)) {
6aa8b732
AK
559 printk(KERN_DEBUG "set_cr4: #GP, pdptrs reserved bits\n");
560 inject_gp(vcpu);
561 }
562
66aee91a 563 if (cr4 & X86_CR4_VMXE) {
6aa8b732
AK
564 printk(KERN_DEBUG "set_cr4: #GP, setting VMXE\n");
565 inject_gp(vcpu);
566 return;
567 }
568 kvm_arch_ops->set_cr4(vcpu, cr4);
569 spin_lock(&vcpu->kvm->lock);
570 kvm_mmu_reset_context(vcpu);
571 spin_unlock(&vcpu->kvm->lock);
572}
573EXPORT_SYMBOL_GPL(set_cr4);
574
575void set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
576{
a9058ecd 577 if (is_long_mode(vcpu)) {
f802a307 578 if (cr3 & CR3_L_MODE_RESERVED_BITS) {
6aa8b732
AK
579 printk(KERN_DEBUG "set_cr3: #GP, reserved bits\n");
580 inject_gp(vcpu);
581 return;
582 }
583 } else {
f802a307
RR
584 if (is_pae(vcpu)) {
585 if (cr3 & CR3_PAE_RESERVED_BITS) {
586 printk(KERN_DEBUG
587 "set_cr3: #GP, reserved bits\n");
588 inject_gp(vcpu);
589 return;
590 }
591 if (is_paging(vcpu) && !load_pdptrs(vcpu, cr3)) {
592 printk(KERN_DEBUG "set_cr3: #GP, pdptrs "
593 "reserved bits\n");
594 inject_gp(vcpu);
595 return;
596 }
597 } else {
598 if (cr3 & CR3_NONPAE_RESERVED_BITS) {
599 printk(KERN_DEBUG
600 "set_cr3: #GP, reserved bits\n");
601 inject_gp(vcpu);
602 return;
603 }
6aa8b732
AK
604 }
605 }
606
607 vcpu->cr3 = cr3;
608 spin_lock(&vcpu->kvm->lock);
d21225ee
IM
609 /*
610 * Does the new cr3 value map to physical memory? (Note, we
611 * catch an invalid cr3 even in real-mode, because it would
612 * cause trouble later on when we turn on paging anyway.)
613 *
614 * A real CPU would silently accept an invalid cr3 and would
615 * attempt to use it - with largely undefined (and often hard
616 * to debug) behavior on the guest side.
617 */
618 if (unlikely(!gfn_to_memslot(vcpu->kvm, cr3 >> PAGE_SHIFT)))
619 inject_gp(vcpu);
620 else
621 vcpu->mmu.new_cr3(vcpu);
6aa8b732
AK
622 spin_unlock(&vcpu->kvm->lock);
623}
624EXPORT_SYMBOL_GPL(set_cr3);
625
626void set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
627{
628 if ( cr8 & CR8_RESEVED_BITS) {
629 printk(KERN_DEBUG "set_cr8: #GP, reserved bits 0x%lx\n", cr8);
630 inject_gp(vcpu);
631 return;
632 }
633 vcpu->cr8 = cr8;
634}
635EXPORT_SYMBOL_GPL(set_cr8);
636
637void fx_init(struct kvm_vcpu *vcpu)
638{
639 struct __attribute__ ((__packed__)) fx_image_s {
640 u16 control; //fcw
641 u16 status; //fsw
642 u16 tag; // ftw
643 u16 opcode; //fop
644 u64 ip; // fpu ip
645 u64 operand;// fpu dp
646 u32 mxcsr;
647 u32 mxcsr_mask;
648
649 } *fx_image;
650
651 fx_save(vcpu->host_fx_image);
652 fpu_init();
653 fx_save(vcpu->guest_fx_image);
654 fx_restore(vcpu->host_fx_image);
655
656 fx_image = (struct fx_image_s *)vcpu->guest_fx_image;
657 fx_image->mxcsr = 0x1f80;
658 memset(vcpu->guest_fx_image + sizeof(struct fx_image_s),
659 0, FX_IMAGE_SIZE - sizeof(struct fx_image_s));
660}
661EXPORT_SYMBOL_GPL(fx_init);
662
6aa8b732
AK
663/*
664 * Allocate some memory and give it an address in the guest physical address
665 * space.
666 *
667 * Discontiguous memory is allowed, mostly for framebuffers.
668 */
2c6f5df9
AK
669static int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
670 struct kvm_memory_region *mem)
6aa8b732
AK
671{
672 int r;
673 gfn_t base_gfn;
674 unsigned long npages;
675 unsigned long i;
676 struct kvm_memory_slot *memslot;
677 struct kvm_memory_slot old, new;
678 int memory_config_version;
679
680 r = -EINVAL;
681 /* General sanity checks */
682 if (mem->memory_size & (PAGE_SIZE - 1))
683 goto out;
684 if (mem->guest_phys_addr & (PAGE_SIZE - 1))
685 goto out;
686 if (mem->slot >= KVM_MEMORY_SLOTS)
687 goto out;
688 if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
689 goto out;
690
691 memslot = &kvm->memslots[mem->slot];
692 base_gfn = mem->guest_phys_addr >> PAGE_SHIFT;
693 npages = mem->memory_size >> PAGE_SHIFT;
694
695 if (!npages)
696 mem->flags &= ~KVM_MEM_LOG_DIRTY_PAGES;
697
698raced:
699 spin_lock(&kvm->lock);
700
701 memory_config_version = kvm->memory_config_version;
702 new = old = *memslot;
703
704 new.base_gfn = base_gfn;
705 new.npages = npages;
706 new.flags = mem->flags;
707
708 /* Disallow changing a memory slot's size. */
709 r = -EINVAL;
710 if (npages && old.npages && npages != old.npages)
711 goto out_unlock;
712
713 /* Check for overlaps */
714 r = -EEXIST;
715 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
716 struct kvm_memory_slot *s = &kvm->memslots[i];
717
718 if (s == memslot)
719 continue;
720 if (!((base_gfn + npages <= s->base_gfn) ||
721 (base_gfn >= s->base_gfn + s->npages)))
722 goto out_unlock;
723 }
724 /*
725 * Do memory allocations outside lock. memory_config_version will
726 * detect any races.
727 */
728 spin_unlock(&kvm->lock);
729
730 /* Deallocate if slot is being removed */
731 if (!npages)
8b6d44c7 732 new.phys_mem = NULL;
6aa8b732
AK
733
734 /* Free page dirty bitmap if unneeded */
735 if (!(new.flags & KVM_MEM_LOG_DIRTY_PAGES))
8b6d44c7 736 new.dirty_bitmap = NULL;
6aa8b732
AK
737
738 r = -ENOMEM;
739
740 /* Allocate if a slot is being created */
741 if (npages && !new.phys_mem) {
742 new.phys_mem = vmalloc(npages * sizeof(struct page *));
743
744 if (!new.phys_mem)
745 goto out_free;
746
747 memset(new.phys_mem, 0, npages * sizeof(struct page *));
748 for (i = 0; i < npages; ++i) {
749 new.phys_mem[i] = alloc_page(GFP_HIGHUSER
750 | __GFP_ZERO);
751 if (!new.phys_mem[i])
752 goto out_free;
5972e953 753 set_page_private(new.phys_mem[i],0);
6aa8b732
AK
754 }
755 }
756
757 /* Allocate page dirty bitmap if needed */
758 if ((new.flags & KVM_MEM_LOG_DIRTY_PAGES) && !new.dirty_bitmap) {
759 unsigned dirty_bytes = ALIGN(npages, BITS_PER_LONG) / 8;
760
761 new.dirty_bitmap = vmalloc(dirty_bytes);
762 if (!new.dirty_bitmap)
763 goto out_free;
764 memset(new.dirty_bitmap, 0, dirty_bytes);
765 }
766
767 spin_lock(&kvm->lock);
768
769 if (memory_config_version != kvm->memory_config_version) {
770 spin_unlock(&kvm->lock);
771 kvm_free_physmem_slot(&new, &old);
772 goto raced;
773 }
774
775 r = -EAGAIN;
776 if (kvm->busy)
777 goto out_unlock;
778
779 if (mem->slot >= kvm->nmemslots)
780 kvm->nmemslots = mem->slot + 1;
781
782 *memslot = new;
783 ++kvm->memory_config_version;
784
90cb0529
AK
785 kvm_mmu_slot_remove_write_access(kvm, mem->slot);
786 kvm_flush_remote_tlbs(kvm);
6aa8b732 787
90cb0529 788 spin_unlock(&kvm->lock);
6aa8b732
AK
789
790 kvm_free_physmem_slot(&old, &new);
791 return 0;
792
793out_unlock:
794 spin_unlock(&kvm->lock);
795out_free:
796 kvm_free_physmem_slot(&new, &old);
797out:
798 return r;
799}
800
801/*
802 * Get (and clear) the dirty memory log for a memory slot.
803 */
2c6f5df9
AK
804static int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
805 struct kvm_dirty_log *log)
6aa8b732
AK
806{
807 struct kvm_memory_slot *memslot;
808 int r, i;
809 int n;
810 unsigned long any = 0;
811
812 spin_lock(&kvm->lock);
813
814 /*
815 * Prevent changes to guest memory configuration even while the lock
816 * is not taken.
817 */
818 ++kvm->busy;
819 spin_unlock(&kvm->lock);
820 r = -EINVAL;
821 if (log->slot >= KVM_MEMORY_SLOTS)
822 goto out;
823
824 memslot = &kvm->memslots[log->slot];
825 r = -ENOENT;
826 if (!memslot->dirty_bitmap)
827 goto out;
828
cd1a4a98 829 n = ALIGN(memslot->npages, BITS_PER_LONG) / 8;
6aa8b732 830
cd1a4a98 831 for (i = 0; !any && i < n/sizeof(long); ++i)
6aa8b732
AK
832 any = memslot->dirty_bitmap[i];
833
834 r = -EFAULT;
835 if (copy_to_user(log->dirty_bitmap, memslot->dirty_bitmap, n))
836 goto out;
837
90cb0529
AK
838 spin_lock(&kvm->lock);
839 kvm_mmu_slot_remove_write_access(kvm, log->slot);
840 kvm_flush_remote_tlbs(kvm);
841 memset(memslot->dirty_bitmap, 0, n);
842 spin_unlock(&kvm->lock);
6aa8b732
AK
843
844 r = 0;
845
846out:
847 spin_lock(&kvm->lock);
848 --kvm->busy;
849 spin_unlock(&kvm->lock);
850 return r;
851}
852
e8207547
AK
853/*
854 * Set a new alias region. Aliases map a portion of physical memory into
855 * another portion. This is useful for memory windows, for example the PC
856 * VGA region.
857 */
858static int kvm_vm_ioctl_set_memory_alias(struct kvm *kvm,
859 struct kvm_memory_alias *alias)
860{
861 int r, n;
862 struct kvm_mem_alias *p;
863
864 r = -EINVAL;
865 /* General sanity checks */
866 if (alias->memory_size & (PAGE_SIZE - 1))
867 goto out;
868 if (alias->guest_phys_addr & (PAGE_SIZE - 1))
869 goto out;
870 if (alias->slot >= KVM_ALIAS_SLOTS)
871 goto out;
872 if (alias->guest_phys_addr + alias->memory_size
873 < alias->guest_phys_addr)
874 goto out;
875 if (alias->target_phys_addr + alias->memory_size
876 < alias->target_phys_addr)
877 goto out;
878
879 spin_lock(&kvm->lock);
880
881 p = &kvm->aliases[alias->slot];
882 p->base_gfn = alias->guest_phys_addr >> PAGE_SHIFT;
883 p->npages = alias->memory_size >> PAGE_SHIFT;
884 p->target_gfn = alias->target_phys_addr >> PAGE_SHIFT;
885
886 for (n = KVM_ALIAS_SLOTS; n > 0; --n)
887 if (kvm->aliases[n - 1].npages)
888 break;
889 kvm->naliases = n;
890
90cb0529 891 kvm_mmu_zap_all(kvm);
e8207547 892
e8207547 893 spin_unlock(&kvm->lock);
e8207547
AK
894
895 return 0;
896
897out:
898 return r;
899}
900
901static gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
902{
903 int i;
904 struct kvm_mem_alias *alias;
905
906 for (i = 0; i < kvm->naliases; ++i) {
907 alias = &kvm->aliases[i];
908 if (gfn >= alias->base_gfn
909 && gfn < alias->base_gfn + alias->npages)
910 return alias->target_gfn + gfn - alias->base_gfn;
911 }
912 return gfn;
913}
914
915static struct kvm_memory_slot *__gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
6aa8b732
AK
916{
917 int i;
918
919 for (i = 0; i < kvm->nmemslots; ++i) {
920 struct kvm_memory_slot *memslot = &kvm->memslots[i];
921
922 if (gfn >= memslot->base_gfn
923 && gfn < memslot->base_gfn + memslot->npages)
924 return memslot;
925 }
8b6d44c7 926 return NULL;
6aa8b732 927}
e8207547
AK
928
929struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn)
930{
931 gfn = unalias_gfn(kvm, gfn);
932 return __gfn_to_memslot(kvm, gfn);
933}
6aa8b732 934
954bbbc2
AK
935struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn)
936{
937 struct kvm_memory_slot *slot;
938
e8207547
AK
939 gfn = unalias_gfn(kvm, gfn);
940 slot = __gfn_to_memslot(kvm, gfn);
954bbbc2
AK
941 if (!slot)
942 return NULL;
943 return slot->phys_mem[gfn - slot->base_gfn];
944}
945EXPORT_SYMBOL_GPL(gfn_to_page);
946
6aa8b732
AK
947void mark_page_dirty(struct kvm *kvm, gfn_t gfn)
948{
949 int i;
31389947 950 struct kvm_memory_slot *memslot;
6aa8b732
AK
951 unsigned long rel_gfn;
952
953 for (i = 0; i < kvm->nmemslots; ++i) {
954 memslot = &kvm->memslots[i];
955
956 if (gfn >= memslot->base_gfn
957 && gfn < memslot->base_gfn + memslot->npages) {
958
31389947 959 if (!memslot->dirty_bitmap)
6aa8b732
AK
960 return;
961
962 rel_gfn = gfn - memslot->base_gfn;
963
964 /* avoid RMW */
965 if (!test_bit(rel_gfn, memslot->dirty_bitmap))
966 set_bit(rel_gfn, memslot->dirty_bitmap);
967 return;
968 }
969 }
970}
971
972static int emulator_read_std(unsigned long addr,
4c690a1e 973 void *val,
6aa8b732
AK
974 unsigned int bytes,
975 struct x86_emulate_ctxt *ctxt)
976{
977 struct kvm_vcpu *vcpu = ctxt->vcpu;
978 void *data = val;
979
980 while (bytes) {
981 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, addr);
982 unsigned offset = addr & (PAGE_SIZE-1);
983 unsigned tocopy = min(bytes, (unsigned)PAGE_SIZE - offset);
984 unsigned long pfn;
954bbbc2
AK
985 struct page *page;
986 void *page_virt;
6aa8b732
AK
987
988 if (gpa == UNMAPPED_GVA)
989 return X86EMUL_PROPAGATE_FAULT;
990 pfn = gpa >> PAGE_SHIFT;
954bbbc2
AK
991 page = gfn_to_page(vcpu->kvm, pfn);
992 if (!page)
6aa8b732 993 return X86EMUL_UNHANDLEABLE;
954bbbc2 994 page_virt = kmap_atomic(page, KM_USER0);
6aa8b732 995
954bbbc2 996 memcpy(data, page_virt + offset, tocopy);
6aa8b732 997
954bbbc2 998 kunmap_atomic(page_virt, KM_USER0);
6aa8b732
AK
999
1000 bytes -= tocopy;
1001 data += tocopy;
1002 addr += tocopy;
1003 }
1004
1005 return X86EMUL_CONTINUE;
1006}
1007
1008static int emulator_write_std(unsigned long addr,
4c690a1e 1009 const void *val,
6aa8b732
AK
1010 unsigned int bytes,
1011 struct x86_emulate_ctxt *ctxt)
1012{
1013 printk(KERN_ERR "emulator_write_std: addr %lx n %d\n",
1014 addr, bytes);
1015 return X86EMUL_UNHANDLEABLE;
1016}
1017
2eeb2e94
GH
1018static struct kvm_io_device *vcpu_find_mmio_dev(struct kvm_vcpu *vcpu,
1019 gpa_t addr)
1020{
1021 /*
1022 * Note that its important to have this wrapper function because
1023 * in the very near future we will be checking for MMIOs against
1024 * the LAPIC as well as the general MMIO bus
1025 */
1026 return kvm_io_bus_find_dev(&vcpu->kvm->mmio_bus, addr);
1027}
1028
74906345
ED
1029static struct kvm_io_device *vcpu_find_pio_dev(struct kvm_vcpu *vcpu,
1030 gpa_t addr)
1031{
1032 return kvm_io_bus_find_dev(&vcpu->kvm->pio_bus, addr);
1033}
1034
6aa8b732 1035static int emulator_read_emulated(unsigned long addr,
4c690a1e 1036 void *val,
6aa8b732
AK
1037 unsigned int bytes,
1038 struct x86_emulate_ctxt *ctxt)
1039{
2eeb2e94
GH
1040 struct kvm_vcpu *vcpu = ctxt->vcpu;
1041 struct kvm_io_device *mmio_dev;
1042 gpa_t gpa;
6aa8b732
AK
1043
1044 if (vcpu->mmio_read_completed) {
1045 memcpy(val, vcpu->mmio_data, bytes);
1046 vcpu->mmio_read_completed = 0;
1047 return X86EMUL_CONTINUE;
1048 } else if (emulator_read_std(addr, val, bytes, ctxt)
1049 == X86EMUL_CONTINUE)
1050 return X86EMUL_CONTINUE;
d27d4aca 1051
2eeb2e94
GH
1052 gpa = vcpu->mmu.gva_to_gpa(vcpu, addr);
1053 if (gpa == UNMAPPED_GVA)
1054 return X86EMUL_PROPAGATE_FAULT;
6aa8b732 1055
2eeb2e94
GH
1056 /*
1057 * Is this MMIO handled locally?
1058 */
1059 mmio_dev = vcpu_find_mmio_dev(vcpu, gpa);
1060 if (mmio_dev) {
1061 kvm_iodevice_read(mmio_dev, gpa, bytes, val);
1062 return X86EMUL_CONTINUE;
6aa8b732 1063 }
2eeb2e94
GH
1064
1065 vcpu->mmio_needed = 1;
1066 vcpu->mmio_phys_addr = gpa;
1067 vcpu->mmio_size = bytes;
1068 vcpu->mmio_is_write = 0;
1069
1070 return X86EMUL_UNHANDLEABLE;
6aa8b732
AK
1071}
1072
da4a00f0 1073static int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
4c690a1e 1074 const void *val, int bytes)
da4a00f0 1075{
da4a00f0
AK
1076 struct page *page;
1077 void *virt;
09072daf 1078 unsigned offset = offset_in_page(gpa);
da4a00f0
AK
1079
1080 if (((gpa + bytes - 1) >> PAGE_SHIFT) != (gpa >> PAGE_SHIFT))
1081 return 0;
954bbbc2
AK
1082 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
1083 if (!page)
da4a00f0 1084 return 0;
ab51a434 1085 mark_page_dirty(vcpu->kvm, gpa >> PAGE_SHIFT);
da4a00f0 1086 virt = kmap_atomic(page, KM_USER0);
7cfa4b0a
AK
1087 kvm_mmu_pte_write(vcpu, gpa, virt + offset, val, bytes);
1088 memcpy(virt + offset_in_page(gpa), val, bytes);
da4a00f0 1089 kunmap_atomic(virt, KM_USER0);
da4a00f0
AK
1090 return 1;
1091}
1092
b0fcd903
AK
1093static int emulator_write_emulated_onepage(unsigned long addr,
1094 const void *val,
1095 unsigned int bytes,
1096 struct x86_emulate_ctxt *ctxt)
6aa8b732 1097{
2eeb2e94
GH
1098 struct kvm_vcpu *vcpu = ctxt->vcpu;
1099 struct kvm_io_device *mmio_dev;
1100 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, addr);
6aa8b732 1101
c9047f53
AK
1102 if (gpa == UNMAPPED_GVA) {
1103 kvm_arch_ops->inject_page_fault(vcpu, addr, 2);
6aa8b732 1104 return X86EMUL_PROPAGATE_FAULT;
c9047f53 1105 }
6aa8b732 1106
da4a00f0
AK
1107 if (emulator_write_phys(vcpu, gpa, val, bytes))
1108 return X86EMUL_CONTINUE;
1109
2eeb2e94
GH
1110 /*
1111 * Is this MMIO handled locally?
1112 */
1113 mmio_dev = vcpu_find_mmio_dev(vcpu, gpa);
1114 if (mmio_dev) {
1115 kvm_iodevice_write(mmio_dev, gpa, bytes, val);
1116 return X86EMUL_CONTINUE;
1117 }
1118
6aa8b732
AK
1119 vcpu->mmio_needed = 1;
1120 vcpu->mmio_phys_addr = gpa;
1121 vcpu->mmio_size = bytes;
1122 vcpu->mmio_is_write = 1;
4c690a1e 1123 memcpy(vcpu->mmio_data, val, bytes);
6aa8b732
AK
1124
1125 return X86EMUL_CONTINUE;
1126}
1127
b0fcd903
AK
1128static int emulator_write_emulated(unsigned long addr,
1129 const void *val,
1130 unsigned int bytes,
1131 struct x86_emulate_ctxt *ctxt)
1132{
1133 /* Crossing a page boundary? */
1134 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
1135 int rc, now;
1136
1137 now = -addr & ~PAGE_MASK;
1138 rc = emulator_write_emulated_onepage(addr, val, now, ctxt);
1139 if (rc != X86EMUL_CONTINUE)
1140 return rc;
1141 addr += now;
1142 val += now;
1143 bytes -= now;
1144 }
1145 return emulator_write_emulated_onepage(addr, val, bytes, ctxt);
1146}
1147
6aa8b732 1148static int emulator_cmpxchg_emulated(unsigned long addr,
4c690a1e
AK
1149 const void *old,
1150 const void *new,
6aa8b732
AK
1151 unsigned int bytes,
1152 struct x86_emulate_ctxt *ctxt)
1153{
1154 static int reported;
1155
1156 if (!reported) {
1157 reported = 1;
1158 printk(KERN_WARNING "kvm: emulating exchange as write\n");
1159 }
1160 return emulator_write_emulated(addr, new, bytes, ctxt);
1161}
1162
1163static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
1164{
1165 return kvm_arch_ops->get_segment_base(vcpu, seg);
1166}
1167
1168int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address)
1169{
6aa8b732
AK
1170 return X86EMUL_CONTINUE;
1171}
1172
1173int emulate_clts(struct kvm_vcpu *vcpu)
1174{
399badf3 1175 unsigned long cr0;
6aa8b732 1176
707d92fa 1177 cr0 = vcpu->cr0 & ~X86_CR0_TS;
6aa8b732
AK
1178 kvm_arch_ops->set_cr0(vcpu, cr0);
1179 return X86EMUL_CONTINUE;
1180}
1181
1182int emulator_get_dr(struct x86_emulate_ctxt* ctxt, int dr, unsigned long *dest)
1183{
1184 struct kvm_vcpu *vcpu = ctxt->vcpu;
1185
1186 switch (dr) {
1187 case 0 ... 3:
1188 *dest = kvm_arch_ops->get_dr(vcpu, dr);
1189 return X86EMUL_CONTINUE;
1190 default:
1191 printk(KERN_DEBUG "%s: unexpected dr %u\n",
1192 __FUNCTION__, dr);
1193 return X86EMUL_UNHANDLEABLE;
1194 }
1195}
1196
1197int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr, unsigned long value)
1198{
1199 unsigned long mask = (ctxt->mode == X86EMUL_MODE_PROT64) ? ~0ULL : ~0U;
1200 int exception;
1201
1202 kvm_arch_ops->set_dr(ctxt->vcpu, dr, value & mask, &exception);
1203 if (exception) {
1204 /* FIXME: better handling */
1205 return X86EMUL_UNHANDLEABLE;
1206 }
1207 return X86EMUL_CONTINUE;
1208}
1209
1210static void report_emulation_failure(struct x86_emulate_ctxt *ctxt)
1211{
1212 static int reported;
1213 u8 opcodes[4];
1214 unsigned long rip = ctxt->vcpu->rip;
1215 unsigned long rip_linear;
1216
1217 rip_linear = rip + get_segment_base(ctxt->vcpu, VCPU_SREG_CS);
1218
1219 if (reported)
1220 return;
1221
1222 emulator_read_std(rip_linear, (void *)opcodes, 4, ctxt);
1223
1224 printk(KERN_ERR "emulation failed but !mmio_needed?"
1225 " rip %lx %02x %02x %02x %02x\n",
1226 rip, opcodes[0], opcodes[1], opcodes[2], opcodes[3]);
1227 reported = 1;
1228}
1229
1230struct x86_emulate_ops emulate_ops = {
1231 .read_std = emulator_read_std,
1232 .write_std = emulator_write_std,
1233 .read_emulated = emulator_read_emulated,
1234 .write_emulated = emulator_write_emulated,
1235 .cmpxchg_emulated = emulator_cmpxchg_emulated,
1236};
1237
1238int emulate_instruction(struct kvm_vcpu *vcpu,
1239 struct kvm_run *run,
1240 unsigned long cr2,
1241 u16 error_code)
1242{
1243 struct x86_emulate_ctxt emulate_ctxt;
1244 int r;
1245 int cs_db, cs_l;
1246
e7df56e4 1247 vcpu->mmio_fault_cr2 = cr2;
6aa8b732
AK
1248 kvm_arch_ops->cache_regs(vcpu);
1249
1250 kvm_arch_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
1251
1252 emulate_ctxt.vcpu = vcpu;
1253 emulate_ctxt.eflags = kvm_arch_ops->get_rflags(vcpu);
1254 emulate_ctxt.cr2 = cr2;
1255 emulate_ctxt.mode = (emulate_ctxt.eflags & X86_EFLAGS_VM)
1256 ? X86EMUL_MODE_REAL : cs_l
1257 ? X86EMUL_MODE_PROT64 : cs_db
1258 ? X86EMUL_MODE_PROT32 : X86EMUL_MODE_PROT16;
1259
1260 if (emulate_ctxt.mode == X86EMUL_MODE_PROT64) {
1261 emulate_ctxt.cs_base = 0;
1262 emulate_ctxt.ds_base = 0;
1263 emulate_ctxt.es_base = 0;
1264 emulate_ctxt.ss_base = 0;
1265 } else {
1266 emulate_ctxt.cs_base = get_segment_base(vcpu, VCPU_SREG_CS);
1267 emulate_ctxt.ds_base = get_segment_base(vcpu, VCPU_SREG_DS);
1268 emulate_ctxt.es_base = get_segment_base(vcpu, VCPU_SREG_ES);
1269 emulate_ctxt.ss_base = get_segment_base(vcpu, VCPU_SREG_SS);
1270 }
1271
1272 emulate_ctxt.gs_base = get_segment_base(vcpu, VCPU_SREG_GS);
1273 emulate_ctxt.fs_base = get_segment_base(vcpu, VCPU_SREG_FS);
1274
1275 vcpu->mmio_is_write = 0;
1276 r = x86_emulate_memop(&emulate_ctxt, &emulate_ops);
1277
1278 if ((r || vcpu->mmio_is_write) && run) {
1279 run->mmio.phys_addr = vcpu->mmio_phys_addr;
1280 memcpy(run->mmio.data, vcpu->mmio_data, 8);
1281 run->mmio.len = vcpu->mmio_size;
1282 run->mmio.is_write = vcpu->mmio_is_write;
1283 }
1284
1285 if (r) {
a436036b
AK
1286 if (kvm_mmu_unprotect_page_virt(vcpu, cr2))
1287 return EMULATE_DONE;
6aa8b732
AK
1288 if (!vcpu->mmio_needed) {
1289 report_emulation_failure(&emulate_ctxt);
1290 return EMULATE_FAIL;
1291 }
1292 return EMULATE_DO_MMIO;
1293 }
1294
1295 kvm_arch_ops->decache_regs(vcpu);
1296 kvm_arch_ops->set_rflags(vcpu, emulate_ctxt.eflags);
1297
02c83209
AK
1298 if (vcpu->mmio_is_write) {
1299 vcpu->mmio_needed = 0;
6aa8b732 1300 return EMULATE_DO_MMIO;
02c83209 1301 }
6aa8b732
AK
1302
1303 return EMULATE_DONE;
1304}
1305EXPORT_SYMBOL_GPL(emulate_instruction);
1306
d3bef15f
AK
1307int kvm_emulate_halt(struct kvm_vcpu *vcpu)
1308{
1309 if (vcpu->irq_summary)
1310 return 1;
1311
1312 vcpu->run->exit_reason = KVM_EXIT_HLT;
1313 ++vcpu->stat.halt_exits;
1314 return 0;
1315}
1316EXPORT_SYMBOL_GPL(kvm_emulate_halt);
1317
270fd9b9
AK
1318int kvm_hypercall(struct kvm_vcpu *vcpu, struct kvm_run *run)
1319{
1320 unsigned long nr, a0, a1, a2, a3, a4, a5, ret;
1321
9b22bf57 1322 kvm_arch_ops->cache_regs(vcpu);
270fd9b9
AK
1323 ret = -KVM_EINVAL;
1324#ifdef CONFIG_X86_64
1325 if (is_long_mode(vcpu)) {
1326 nr = vcpu->regs[VCPU_REGS_RAX];
1327 a0 = vcpu->regs[VCPU_REGS_RDI];
1328 a1 = vcpu->regs[VCPU_REGS_RSI];
1329 a2 = vcpu->regs[VCPU_REGS_RDX];
1330 a3 = vcpu->regs[VCPU_REGS_RCX];
1331 a4 = vcpu->regs[VCPU_REGS_R8];
1332 a5 = vcpu->regs[VCPU_REGS_R9];
1333 } else
1334#endif
1335 {
1336 nr = vcpu->regs[VCPU_REGS_RBX] & -1u;
1337 a0 = vcpu->regs[VCPU_REGS_RAX] & -1u;
1338 a1 = vcpu->regs[VCPU_REGS_RCX] & -1u;
1339 a2 = vcpu->regs[VCPU_REGS_RDX] & -1u;
1340 a3 = vcpu->regs[VCPU_REGS_RSI] & -1u;
1341 a4 = vcpu->regs[VCPU_REGS_RDI] & -1u;
1342 a5 = vcpu->regs[VCPU_REGS_RBP] & -1u;
1343 }
1344 switch (nr) {
1345 default:
b4e63f56
AK
1346 run->hypercall.args[0] = a0;
1347 run->hypercall.args[1] = a1;
1348 run->hypercall.args[2] = a2;
1349 run->hypercall.args[3] = a3;
1350 run->hypercall.args[4] = a4;
1351 run->hypercall.args[5] = a5;
1352 run->hypercall.ret = ret;
1353 run->hypercall.longmode = is_long_mode(vcpu);
1354 kvm_arch_ops->decache_regs(vcpu);
1355 return 0;
270fd9b9
AK
1356 }
1357 vcpu->regs[VCPU_REGS_RAX] = ret;
9b22bf57 1358 kvm_arch_ops->decache_regs(vcpu);
270fd9b9
AK
1359 return 1;
1360}
1361EXPORT_SYMBOL_GPL(kvm_hypercall);
1362
6aa8b732
AK
1363static u64 mk_cr_64(u64 curr_cr, u32 new_val)
1364{
1365 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
1366}
1367
1368void realmode_lgdt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
1369{
1370 struct descriptor_table dt = { limit, base };
1371
1372 kvm_arch_ops->set_gdt(vcpu, &dt);
1373}
1374
1375void realmode_lidt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
1376{
1377 struct descriptor_table dt = { limit, base };
1378
1379 kvm_arch_ops->set_idt(vcpu, &dt);
1380}
1381
1382void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
1383 unsigned long *rflags)
1384{
1385 lmsw(vcpu, msw);
1386 *rflags = kvm_arch_ops->get_rflags(vcpu);
1387}
1388
1389unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr)
1390{
25c4c276 1391 kvm_arch_ops->decache_cr4_guest_bits(vcpu);
6aa8b732
AK
1392 switch (cr) {
1393 case 0:
1394 return vcpu->cr0;
1395 case 2:
1396 return vcpu->cr2;
1397 case 3:
1398 return vcpu->cr3;
1399 case 4:
1400 return vcpu->cr4;
1401 default:
1402 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __FUNCTION__, cr);
1403 return 0;
1404 }
1405}
1406
1407void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long val,
1408 unsigned long *rflags)
1409{
1410 switch (cr) {
1411 case 0:
1412 set_cr0(vcpu, mk_cr_64(vcpu->cr0, val));
1413 *rflags = kvm_arch_ops->get_rflags(vcpu);
1414 break;
1415 case 2:
1416 vcpu->cr2 = val;
1417 break;
1418 case 3:
1419 set_cr3(vcpu, val);
1420 break;
1421 case 4:
1422 set_cr4(vcpu, mk_cr_64(vcpu->cr4, val));
1423 break;
1424 default:
1425 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __FUNCTION__, cr);
1426 }
1427}
1428
102d8325
IM
1429/*
1430 * Register the para guest with the host:
1431 */
1432static int vcpu_register_para(struct kvm_vcpu *vcpu, gpa_t para_state_gpa)
1433{
1434 struct kvm_vcpu_para_state *para_state;
1435 hpa_t para_state_hpa, hypercall_hpa;
1436 struct page *para_state_page;
1437 unsigned char *hypercall;
1438 gpa_t hypercall_gpa;
1439
1440 printk(KERN_DEBUG "kvm: guest trying to enter paravirtual mode\n");
1441 printk(KERN_DEBUG ".... para_state_gpa: %08Lx\n", para_state_gpa);
1442
1443 /*
1444 * Needs to be page aligned:
1445 */
1446 if (para_state_gpa != PAGE_ALIGN(para_state_gpa))
1447 goto err_gp;
1448
1449 para_state_hpa = gpa_to_hpa(vcpu, para_state_gpa);
1450 printk(KERN_DEBUG ".... para_state_hpa: %08Lx\n", para_state_hpa);
1451 if (is_error_hpa(para_state_hpa))
1452 goto err_gp;
1453
ab51a434 1454 mark_page_dirty(vcpu->kvm, para_state_gpa >> PAGE_SHIFT);
102d8325
IM
1455 para_state_page = pfn_to_page(para_state_hpa >> PAGE_SHIFT);
1456 para_state = kmap_atomic(para_state_page, KM_USER0);
1457
1458 printk(KERN_DEBUG ".... guest version: %d\n", para_state->guest_version);
1459 printk(KERN_DEBUG ".... size: %d\n", para_state->size);
1460
1461 para_state->host_version = KVM_PARA_API_VERSION;
1462 /*
1463 * We cannot support guests that try to register themselves
1464 * with a newer API version than the host supports:
1465 */
1466 if (para_state->guest_version > KVM_PARA_API_VERSION) {
1467 para_state->ret = -KVM_EINVAL;
1468 goto err_kunmap_skip;
1469 }
1470
1471 hypercall_gpa = para_state->hypercall_gpa;
1472 hypercall_hpa = gpa_to_hpa(vcpu, hypercall_gpa);
1473 printk(KERN_DEBUG ".... hypercall_hpa: %08Lx\n", hypercall_hpa);
1474 if (is_error_hpa(hypercall_hpa)) {
1475 para_state->ret = -KVM_EINVAL;
1476 goto err_kunmap_skip;
1477 }
1478
1479 printk(KERN_DEBUG "kvm: para guest successfully registered.\n");
1480 vcpu->para_state_page = para_state_page;
1481 vcpu->para_state_gpa = para_state_gpa;
1482 vcpu->hypercall_gpa = hypercall_gpa;
1483
ab51a434 1484 mark_page_dirty(vcpu->kvm, hypercall_gpa >> PAGE_SHIFT);
102d8325
IM
1485 hypercall = kmap_atomic(pfn_to_page(hypercall_hpa >> PAGE_SHIFT),
1486 KM_USER1) + (hypercall_hpa & ~PAGE_MASK);
1487 kvm_arch_ops->patch_hypercall(vcpu, hypercall);
1488 kunmap_atomic(hypercall, KM_USER1);
1489
1490 para_state->ret = 0;
1491err_kunmap_skip:
1492 kunmap_atomic(para_state, KM_USER0);
1493 return 0;
1494err_gp:
1495 return 1;
1496}
1497
3bab1f5d
AK
1498int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
1499{
1500 u64 data;
1501
1502 switch (msr) {
1503 case 0xc0010010: /* SYSCFG */
1504 case 0xc0010015: /* HWCR */
1505 case MSR_IA32_PLATFORM_ID:
1506 case MSR_IA32_P5_MC_ADDR:
1507 case MSR_IA32_P5_MC_TYPE:
1508 case MSR_IA32_MC0_CTL:
1509 case MSR_IA32_MCG_STATUS:
1510 case MSR_IA32_MCG_CAP:
1511 case MSR_IA32_MC0_MISC:
1512 case MSR_IA32_MC0_MISC+4:
1513 case MSR_IA32_MC0_MISC+8:
1514 case MSR_IA32_MC0_MISC+12:
1515 case MSR_IA32_MC0_MISC+16:
1516 case MSR_IA32_UCODE_REV:
a8d13ea2 1517 case MSR_IA32_PERF_STATUS:
2dc7094b 1518 case MSR_IA32_EBL_CR_POWERON:
3bab1f5d
AK
1519 /* MTRR registers */
1520 case 0xfe:
1521 case 0x200 ... 0x2ff:
1522 data = 0;
1523 break;
a8d13ea2
AK
1524 case 0xcd: /* fsb frequency */
1525 data = 3;
1526 break;
3bab1f5d
AK
1527 case MSR_IA32_APICBASE:
1528 data = vcpu->apic_base;
1529 break;
6f00e68f
AK
1530 case MSR_IA32_MISC_ENABLE:
1531 data = vcpu->ia32_misc_enable_msr;
1532 break;
3bab1f5d
AK
1533#ifdef CONFIG_X86_64
1534 case MSR_EFER:
1535 data = vcpu->shadow_efer;
1536 break;
1537#endif
1538 default:
1539 printk(KERN_ERR "kvm: unhandled rdmsr: 0x%x\n", msr);
1540 return 1;
1541 }
1542 *pdata = data;
1543 return 0;
1544}
1545EXPORT_SYMBOL_GPL(kvm_get_msr_common);
1546
6aa8b732
AK
1547/*
1548 * Reads an msr value (of 'msr_index') into 'pdata'.
1549 * Returns 0 on success, non-0 otherwise.
1550 * Assumes vcpu_load() was already called.
1551 */
35f3f286 1552int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
6aa8b732
AK
1553{
1554 return kvm_arch_ops->get_msr(vcpu, msr_index, pdata);
1555}
1556
05b3e0c2 1557#ifdef CONFIG_X86_64
6aa8b732 1558
3bab1f5d 1559static void set_efer(struct kvm_vcpu *vcpu, u64 efer)
6aa8b732 1560{
6aa8b732
AK
1561 if (efer & EFER_RESERVED_BITS) {
1562 printk(KERN_DEBUG "set_efer: 0x%llx #GP, reserved bits\n",
1563 efer);
1564 inject_gp(vcpu);
1565 return;
1566 }
1567
1568 if (is_paging(vcpu)
1569 && (vcpu->shadow_efer & EFER_LME) != (efer & EFER_LME)) {
1570 printk(KERN_DEBUG "set_efer: #GP, change LME while paging\n");
1571 inject_gp(vcpu);
1572 return;
1573 }
1574
7725f0ba
AK
1575 kvm_arch_ops->set_efer(vcpu, efer);
1576
6aa8b732
AK
1577 efer &= ~EFER_LMA;
1578 efer |= vcpu->shadow_efer & EFER_LMA;
1579
1580 vcpu->shadow_efer = efer;
6aa8b732 1581}
6aa8b732
AK
1582
1583#endif
1584
3bab1f5d
AK
1585int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data)
1586{
1587 switch (msr) {
1588#ifdef CONFIG_X86_64
1589 case MSR_EFER:
1590 set_efer(vcpu, data);
1591 break;
1592#endif
1593 case MSR_IA32_MC0_STATUS:
1594 printk(KERN_WARNING "%s: MSR_IA32_MC0_STATUS 0x%llx, nop\n",
1595 __FUNCTION__, data);
1596 break;
0e5bf0d0
SK
1597 case MSR_IA32_MCG_STATUS:
1598 printk(KERN_WARNING "%s: MSR_IA32_MCG_STATUS 0x%llx, nop\n",
1599 __FUNCTION__, data);
1600 break;
3bab1f5d
AK
1601 case MSR_IA32_UCODE_REV:
1602 case MSR_IA32_UCODE_WRITE:
1603 case 0x200 ... 0x2ff: /* MTRRs */
1604 break;
1605 case MSR_IA32_APICBASE:
1606 vcpu->apic_base = data;
1607 break;
6f00e68f
AK
1608 case MSR_IA32_MISC_ENABLE:
1609 vcpu->ia32_misc_enable_msr = data;
1610 break;
102d8325
IM
1611 /*
1612 * This is the 'probe whether the host is KVM' logic:
1613 */
1614 case MSR_KVM_API_MAGIC:
1615 return vcpu_register_para(vcpu, data);
1616
3bab1f5d
AK
1617 default:
1618 printk(KERN_ERR "kvm: unhandled wrmsr: 0x%x\n", msr);
1619 return 1;
1620 }
1621 return 0;
1622}
1623EXPORT_SYMBOL_GPL(kvm_set_msr_common);
1624
6aa8b732
AK
1625/*
1626 * Writes msr value into into the appropriate "register".
1627 * Returns 0 on success, non-0 otherwise.
1628 * Assumes vcpu_load() was already called.
1629 */
35f3f286 1630int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
6aa8b732
AK
1631{
1632 return kvm_arch_ops->set_msr(vcpu, msr_index, data);
1633}
1634
1635void kvm_resched(struct kvm_vcpu *vcpu)
1636{
3fca0365
YD
1637 if (!need_resched())
1638 return;
6aa8b732
AK
1639 vcpu_put(vcpu);
1640 cond_resched();
bccf2150 1641 vcpu_load(vcpu);
6aa8b732
AK
1642}
1643EXPORT_SYMBOL_GPL(kvm_resched);
1644
1645void load_msrs(struct vmx_msr_entry *e, int n)
1646{
1647 int i;
1648
1649 for (i = 0; i < n; ++i)
1650 wrmsrl(e[i].index, e[i].data);
1651}
1652EXPORT_SYMBOL_GPL(load_msrs);
1653
1654void save_msrs(struct vmx_msr_entry *e, int n)
1655{
1656 int i;
1657
1658 for (i = 0; i < n; ++i)
1659 rdmsrl(e[i].index, e[i].data);
1660}
1661EXPORT_SYMBOL_GPL(save_msrs);
1662
06465c5a
AK
1663void kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
1664{
1665 int i;
1666 u32 function;
1667 struct kvm_cpuid_entry *e, *best;
1668
1669 kvm_arch_ops->cache_regs(vcpu);
1670 function = vcpu->regs[VCPU_REGS_RAX];
1671 vcpu->regs[VCPU_REGS_RAX] = 0;
1672 vcpu->regs[VCPU_REGS_RBX] = 0;
1673 vcpu->regs[VCPU_REGS_RCX] = 0;
1674 vcpu->regs[VCPU_REGS_RDX] = 0;
1675 best = NULL;
1676 for (i = 0; i < vcpu->cpuid_nent; ++i) {
1677 e = &vcpu->cpuid_entries[i];
1678 if (e->function == function) {
1679 best = e;
1680 break;
1681 }
1682 /*
1683 * Both basic or both extended?
1684 */
1685 if (((e->function ^ function) & 0x80000000) == 0)
1686 if (!best || e->function > best->function)
1687 best = e;
1688 }
1689 if (best) {
1690 vcpu->regs[VCPU_REGS_RAX] = best->eax;
1691 vcpu->regs[VCPU_REGS_RBX] = best->ebx;
1692 vcpu->regs[VCPU_REGS_RCX] = best->ecx;
1693 vcpu->regs[VCPU_REGS_RDX] = best->edx;
1694 }
1695 kvm_arch_ops->decache_regs(vcpu);
1696 kvm_arch_ops->skip_emulated_instruction(vcpu);
1697}
1698EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);
1699
039576c0 1700static int pio_copy_data(struct kvm_vcpu *vcpu)
46fc1477 1701{
039576c0
AK
1702 void *p = vcpu->pio_data;
1703 void *q;
1704 unsigned bytes;
1705 int nr_pages = vcpu->pio.guest_pages[1] ? 2 : 1;
1706
1707 kvm_arch_ops->vcpu_put(vcpu);
1708 q = vmap(vcpu->pio.guest_pages, nr_pages, VM_READ|VM_WRITE,
1709 PAGE_KERNEL);
1710 if (!q) {
1711 kvm_arch_ops->vcpu_load(vcpu);
1712 free_pio_guest_pages(vcpu);
1713 return -ENOMEM;
1714 }
1715 q += vcpu->pio.guest_page_offset;
1716 bytes = vcpu->pio.size * vcpu->pio.cur_count;
1717 if (vcpu->pio.in)
1718 memcpy(q, p, bytes);
1719 else
1720 memcpy(p, q, bytes);
1721 q -= vcpu->pio.guest_page_offset;
1722 vunmap(q);
1723 kvm_arch_ops->vcpu_load(vcpu);
1724 free_pio_guest_pages(vcpu);
1725 return 0;
1726}
1727
1728static int complete_pio(struct kvm_vcpu *vcpu)
1729{
1730 struct kvm_pio_request *io = &vcpu->pio;
46fc1477 1731 long delta;
039576c0 1732 int r;
46fc1477
AK
1733
1734 kvm_arch_ops->cache_regs(vcpu);
1735
1736 if (!io->string) {
039576c0
AK
1737 if (io->in)
1738 memcpy(&vcpu->regs[VCPU_REGS_RAX], vcpu->pio_data,
46fc1477
AK
1739 io->size);
1740 } else {
039576c0
AK
1741 if (io->in) {
1742 r = pio_copy_data(vcpu);
1743 if (r) {
1744 kvm_arch_ops->cache_regs(vcpu);
1745 return r;
1746 }
1747 }
1748
46fc1477
AK
1749 delta = 1;
1750 if (io->rep) {
039576c0 1751 delta *= io->cur_count;
46fc1477
AK
1752 /*
1753 * The size of the register should really depend on
1754 * current address size.
1755 */
1756 vcpu->regs[VCPU_REGS_RCX] -= delta;
1757 }
039576c0 1758 if (io->down)
46fc1477
AK
1759 delta = -delta;
1760 delta *= io->size;
039576c0 1761 if (io->in)
46fc1477
AK
1762 vcpu->regs[VCPU_REGS_RDI] += delta;
1763 else
1764 vcpu->regs[VCPU_REGS_RSI] += delta;
1765 }
1766
46fc1477
AK
1767 kvm_arch_ops->decache_regs(vcpu);
1768
039576c0
AK
1769 io->count -= io->cur_count;
1770 io->cur_count = 0;
1771
1772 if (!io->count)
1773 kvm_arch_ops->skip_emulated_instruction(vcpu);
1774 return 0;
46fc1477
AK
1775}
1776
65619eb5
ED
1777static void kernel_pio(struct kvm_io_device *pio_dev,
1778 struct kvm_vcpu *vcpu,
1779 void *pd)
74906345
ED
1780{
1781 /* TODO: String I/O for in kernel device */
1782
1783 if (vcpu->pio.in)
1784 kvm_iodevice_read(pio_dev, vcpu->pio.port,
1785 vcpu->pio.size,
65619eb5 1786 pd);
74906345
ED
1787 else
1788 kvm_iodevice_write(pio_dev, vcpu->pio.port,
1789 vcpu->pio.size,
65619eb5
ED
1790 pd);
1791}
1792
1793static void pio_string_write(struct kvm_io_device *pio_dev,
1794 struct kvm_vcpu *vcpu)
1795{
1796 struct kvm_pio_request *io = &vcpu->pio;
1797 void *pd = vcpu->pio_data;
1798 int i;
1799
1800 for (i = 0; i < io->cur_count; i++) {
1801 kvm_iodevice_write(pio_dev, io->port,
1802 io->size,
1803 pd);
1804 pd += io->size;
1805 }
74906345
ED
1806}
1807
039576c0
AK
1808int kvm_setup_pio(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
1809 int size, unsigned long count, int string, int down,
1810 gva_t address, int rep, unsigned port)
1811{
1812 unsigned now, in_page;
65619eb5 1813 int i, ret = 0;
039576c0
AK
1814 int nr_pages = 1;
1815 struct page *page;
74906345 1816 struct kvm_io_device *pio_dev;
039576c0
AK
1817
1818 vcpu->run->exit_reason = KVM_EXIT_IO;
1819 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
1820 vcpu->run->io.size = size;
1821 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
1822 vcpu->run->io.count = count;
1823 vcpu->run->io.port = port;
1824 vcpu->pio.count = count;
1825 vcpu->pio.cur_count = count;
1826 vcpu->pio.size = size;
1827 vcpu->pio.in = in;
74906345 1828 vcpu->pio.port = port;
039576c0
AK
1829 vcpu->pio.string = string;
1830 vcpu->pio.down = down;
1831 vcpu->pio.guest_page_offset = offset_in_page(address);
1832 vcpu->pio.rep = rep;
1833
74906345 1834 pio_dev = vcpu_find_pio_dev(vcpu, port);
039576c0
AK
1835 if (!string) {
1836 kvm_arch_ops->cache_regs(vcpu);
1837 memcpy(vcpu->pio_data, &vcpu->regs[VCPU_REGS_RAX], 4);
1838 kvm_arch_ops->decache_regs(vcpu);
74906345 1839 if (pio_dev) {
65619eb5 1840 kernel_pio(pio_dev, vcpu, vcpu->pio_data);
74906345
ED
1841 complete_pio(vcpu);
1842 return 1;
1843 }
039576c0
AK
1844 return 0;
1845 }
1846
1847 if (!count) {
1848 kvm_arch_ops->skip_emulated_instruction(vcpu);
1849 return 1;
1850 }
1851
1852 now = min(count, PAGE_SIZE / size);
1853
1854 if (!down)
1855 in_page = PAGE_SIZE - offset_in_page(address);
1856 else
1857 in_page = offset_in_page(address) + size;
1858 now = min(count, (unsigned long)in_page / size);
1859 if (!now) {
1860 /*
1861 * String I/O straddles page boundary. Pin two guest pages
1862 * so that we satisfy atomicity constraints. Do just one
1863 * transaction to avoid complexity.
1864 */
1865 nr_pages = 2;
1866 now = 1;
1867 }
1868 if (down) {
1869 /*
1870 * String I/O in reverse. Yuck. Kill the guest, fix later.
1871 */
1872 printk(KERN_ERR "kvm: guest string pio down\n");
1873 inject_gp(vcpu);
1874 return 1;
1875 }
1876 vcpu->run->io.count = now;
1877 vcpu->pio.cur_count = now;
1878
1879 for (i = 0; i < nr_pages; ++i) {
1880 spin_lock(&vcpu->kvm->lock);
1881 page = gva_to_page(vcpu, address + i * PAGE_SIZE);
1882 if (page)
1883 get_page(page);
1884 vcpu->pio.guest_pages[i] = page;
1885 spin_unlock(&vcpu->kvm->lock);
1886 if (!page) {
1887 inject_gp(vcpu);
1888 free_pio_guest_pages(vcpu);
1889 return 1;
1890 }
1891 }
1892
65619eb5
ED
1893 if (!vcpu->pio.in) {
1894 /* string PIO write */
1895 ret = pio_copy_data(vcpu);
1896 if (ret >= 0 && pio_dev) {
1897 pio_string_write(pio_dev, vcpu);
1898 complete_pio(vcpu);
1899 if (vcpu->pio.count == 0)
1900 ret = 1;
1901 }
1902 } else if (pio_dev)
1903 printk(KERN_ERR "no string pio read support yet, "
1904 "port %x size %d count %ld\n",
1905 port, size, count);
1906
1907 return ret;
039576c0
AK
1908}
1909EXPORT_SYMBOL_GPL(kvm_setup_pio);
1910
bccf2150 1911static int kvm_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
6aa8b732 1912{
6aa8b732 1913 int r;
1961d276 1914 sigset_t sigsaved;
6aa8b732 1915
bccf2150 1916 vcpu_load(vcpu);
6aa8b732 1917
1961d276
AK
1918 if (vcpu->sigset_active)
1919 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
1920
54810342
DL
1921 /* re-sync apic's tpr */
1922 vcpu->cr8 = kvm_run->cr8;
1923
02c83209
AK
1924 if (vcpu->pio.cur_count) {
1925 r = complete_pio(vcpu);
1926 if (r)
1927 goto out;
1928 }
1929
1930 if (vcpu->mmio_needed) {
1931 memcpy(vcpu->mmio_data, kvm_run->mmio.data, 8);
1932 vcpu->mmio_read_completed = 1;
1933 vcpu->mmio_needed = 0;
1934 r = emulate_instruction(vcpu, kvm_run,
1935 vcpu->mmio_fault_cr2, 0);
1936 if (r == EMULATE_DO_MMIO) {
1937 /*
1938 * Read-modify-write. Back to userspace.
1939 */
1940 kvm_run->exit_reason = KVM_EXIT_MMIO;
1941 r = 0;
1942 goto out;
46fc1477 1943 }
6aa8b732
AK
1944 }
1945
8eb7d334 1946 if (kvm_run->exit_reason == KVM_EXIT_HYPERCALL) {
b4e63f56
AK
1947 kvm_arch_ops->cache_regs(vcpu);
1948 vcpu->regs[VCPU_REGS_RAX] = kvm_run->hypercall.ret;
1949 kvm_arch_ops->decache_regs(vcpu);
1950 }
1951
6aa8b732
AK
1952 r = kvm_arch_ops->run(vcpu, kvm_run);
1953
039576c0 1954out:
1961d276
AK
1955 if (vcpu->sigset_active)
1956 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1957
6aa8b732
AK
1958 vcpu_put(vcpu);
1959 return r;
1960}
1961
bccf2150
AK
1962static int kvm_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu,
1963 struct kvm_regs *regs)
6aa8b732 1964{
bccf2150 1965 vcpu_load(vcpu);
6aa8b732
AK
1966
1967 kvm_arch_ops->cache_regs(vcpu);
1968
1969 regs->rax = vcpu->regs[VCPU_REGS_RAX];
1970 regs->rbx = vcpu->regs[VCPU_REGS_RBX];
1971 regs->rcx = vcpu->regs[VCPU_REGS_RCX];
1972 regs->rdx = vcpu->regs[VCPU_REGS_RDX];
1973 regs->rsi = vcpu->regs[VCPU_REGS_RSI];
1974 regs->rdi = vcpu->regs[VCPU_REGS_RDI];
1975 regs->rsp = vcpu->regs[VCPU_REGS_RSP];
1976 regs->rbp = vcpu->regs[VCPU_REGS_RBP];
05b3e0c2 1977#ifdef CONFIG_X86_64
6aa8b732
AK
1978 regs->r8 = vcpu->regs[VCPU_REGS_R8];
1979 regs->r9 = vcpu->regs[VCPU_REGS_R9];
1980 regs->r10 = vcpu->regs[VCPU_REGS_R10];
1981 regs->r11 = vcpu->regs[VCPU_REGS_R11];
1982 regs->r12 = vcpu->regs[VCPU_REGS_R12];
1983 regs->r13 = vcpu->regs[VCPU_REGS_R13];
1984 regs->r14 = vcpu->regs[VCPU_REGS_R14];
1985 regs->r15 = vcpu->regs[VCPU_REGS_R15];
1986#endif
1987
1988 regs->rip = vcpu->rip;
1989 regs->rflags = kvm_arch_ops->get_rflags(vcpu);
1990
1991 /*
1992 * Don't leak debug flags in case they were set for guest debugging
1993 */
1994 if (vcpu->guest_debug.enabled && vcpu->guest_debug.singlestep)
1995 regs->rflags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
1996
1997 vcpu_put(vcpu);
1998
1999 return 0;
2000}
2001
bccf2150
AK
2002static int kvm_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu,
2003 struct kvm_regs *regs)
6aa8b732 2004{
bccf2150 2005 vcpu_load(vcpu);
6aa8b732
AK
2006
2007 vcpu->regs[VCPU_REGS_RAX] = regs->rax;
2008 vcpu->regs[VCPU_REGS_RBX] = regs->rbx;
2009 vcpu->regs[VCPU_REGS_RCX] = regs->rcx;
2010 vcpu->regs[VCPU_REGS_RDX] = regs->rdx;
2011 vcpu->regs[VCPU_REGS_RSI] = regs->rsi;
2012 vcpu->regs[VCPU_REGS_RDI] = regs->rdi;
2013 vcpu->regs[VCPU_REGS_RSP] = regs->rsp;
2014 vcpu->regs[VCPU_REGS_RBP] = regs->rbp;
05b3e0c2 2015#ifdef CONFIG_X86_64
6aa8b732
AK
2016 vcpu->regs[VCPU_REGS_R8] = regs->r8;
2017 vcpu->regs[VCPU_REGS_R9] = regs->r9;
2018 vcpu->regs[VCPU_REGS_R10] = regs->r10;
2019 vcpu->regs[VCPU_REGS_R11] = regs->r11;
2020 vcpu->regs[VCPU_REGS_R12] = regs->r12;
2021 vcpu->regs[VCPU_REGS_R13] = regs->r13;
2022 vcpu->regs[VCPU_REGS_R14] = regs->r14;
2023 vcpu->regs[VCPU_REGS_R15] = regs->r15;
2024#endif
2025
2026 vcpu->rip = regs->rip;
2027 kvm_arch_ops->set_rflags(vcpu, regs->rflags);
2028
2029 kvm_arch_ops->decache_regs(vcpu);
2030
2031 vcpu_put(vcpu);
2032
2033 return 0;
2034}
2035
2036static void get_segment(struct kvm_vcpu *vcpu,
2037 struct kvm_segment *var, int seg)
2038{
2039 return kvm_arch_ops->get_segment(vcpu, var, seg);
2040}
2041
bccf2150
AK
2042static int kvm_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
2043 struct kvm_sregs *sregs)
6aa8b732 2044{
6aa8b732
AK
2045 struct descriptor_table dt;
2046
bccf2150 2047 vcpu_load(vcpu);
6aa8b732
AK
2048
2049 get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
2050 get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
2051 get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
2052 get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
2053 get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
2054 get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
2055
2056 get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
2057 get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
2058
2059 kvm_arch_ops->get_idt(vcpu, &dt);
2060 sregs->idt.limit = dt.limit;
2061 sregs->idt.base = dt.base;
2062 kvm_arch_ops->get_gdt(vcpu, &dt);
2063 sregs->gdt.limit = dt.limit;
2064 sregs->gdt.base = dt.base;
2065
25c4c276 2066 kvm_arch_ops->decache_cr4_guest_bits(vcpu);
6aa8b732
AK
2067 sregs->cr0 = vcpu->cr0;
2068 sregs->cr2 = vcpu->cr2;
2069 sregs->cr3 = vcpu->cr3;
2070 sregs->cr4 = vcpu->cr4;
2071 sregs->cr8 = vcpu->cr8;
2072 sregs->efer = vcpu->shadow_efer;
2073 sregs->apic_base = vcpu->apic_base;
2074
2075 memcpy(sregs->interrupt_bitmap, vcpu->irq_pending,
2076 sizeof sregs->interrupt_bitmap);
2077
2078 vcpu_put(vcpu);
2079
2080 return 0;
2081}
2082
2083static void set_segment(struct kvm_vcpu *vcpu,
2084 struct kvm_segment *var, int seg)
2085{
2086 return kvm_arch_ops->set_segment(vcpu, var, seg);
2087}
2088
bccf2150
AK
2089static int kvm_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
2090 struct kvm_sregs *sregs)
6aa8b732 2091{
6aa8b732
AK
2092 int mmu_reset_needed = 0;
2093 int i;
2094 struct descriptor_table dt;
2095
bccf2150 2096 vcpu_load(vcpu);
6aa8b732 2097
6aa8b732
AK
2098 dt.limit = sregs->idt.limit;
2099 dt.base = sregs->idt.base;
2100 kvm_arch_ops->set_idt(vcpu, &dt);
2101 dt.limit = sregs->gdt.limit;
2102 dt.base = sregs->gdt.base;
2103 kvm_arch_ops->set_gdt(vcpu, &dt);
2104
2105 vcpu->cr2 = sregs->cr2;
2106 mmu_reset_needed |= vcpu->cr3 != sregs->cr3;
2107 vcpu->cr3 = sregs->cr3;
2108
2109 vcpu->cr8 = sregs->cr8;
2110
2111 mmu_reset_needed |= vcpu->shadow_efer != sregs->efer;
05b3e0c2 2112#ifdef CONFIG_X86_64
6aa8b732
AK
2113 kvm_arch_ops->set_efer(vcpu, sregs->efer);
2114#endif
2115 vcpu->apic_base = sregs->apic_base;
2116
25c4c276 2117 kvm_arch_ops->decache_cr4_guest_bits(vcpu);
399badf3 2118
6aa8b732 2119 mmu_reset_needed |= vcpu->cr0 != sregs->cr0;
f6528b03 2120 kvm_arch_ops->set_cr0(vcpu, sregs->cr0);
6aa8b732
AK
2121
2122 mmu_reset_needed |= vcpu->cr4 != sregs->cr4;
2123 kvm_arch_ops->set_cr4(vcpu, sregs->cr4);
1b0973bd
AK
2124 if (!is_long_mode(vcpu) && is_pae(vcpu))
2125 load_pdptrs(vcpu, vcpu->cr3);
6aa8b732
AK
2126
2127 if (mmu_reset_needed)
2128 kvm_mmu_reset_context(vcpu);
2129
2130 memcpy(vcpu->irq_pending, sregs->interrupt_bitmap,
2131 sizeof vcpu->irq_pending);
2132 vcpu->irq_summary = 0;
2133 for (i = 0; i < NR_IRQ_WORDS; ++i)
2134 if (vcpu->irq_pending[i])
2135 __set_bit(i, &vcpu->irq_summary);
2136
024aa1c0
AK
2137 set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
2138 set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
2139 set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
2140 set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
2141 set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
2142 set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
2143
2144 set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
2145 set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
2146
6aa8b732
AK
2147 vcpu_put(vcpu);
2148
2149 return 0;
2150}
2151
2152/*
2153 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
2154 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
bf591b24
MR
2155 *
2156 * This list is modified at module load time to reflect the
2157 * capabilities of the host cpu.
6aa8b732
AK
2158 */
2159static u32 msrs_to_save[] = {
2160 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
2161 MSR_K6_STAR,
05b3e0c2 2162#ifdef CONFIG_X86_64
6aa8b732
AK
2163 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
2164#endif
2165 MSR_IA32_TIME_STAMP_COUNTER,
2166};
2167
bf591b24
MR
2168static unsigned num_msrs_to_save;
2169
6f00e68f
AK
2170static u32 emulated_msrs[] = {
2171 MSR_IA32_MISC_ENABLE,
2172};
2173
bf591b24
MR
2174static __init void kvm_init_msr_list(void)
2175{
2176 u32 dummy[2];
2177 unsigned i, j;
2178
2179 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
2180 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
2181 continue;
2182 if (j < i)
2183 msrs_to_save[j] = msrs_to_save[i];
2184 j++;
2185 }
2186 num_msrs_to_save = j;
2187}
6aa8b732
AK
2188
2189/*
2190 * Adapt set_msr() to msr_io()'s calling convention
2191 */
2192static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
2193{
35f3f286 2194 return kvm_set_msr(vcpu, index, *data);
6aa8b732
AK
2195}
2196
2197/*
2198 * Read or write a bunch of msrs. All parameters are kernel addresses.
2199 *
2200 * @return number of msrs set successfully.
2201 */
bccf2150 2202static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
6aa8b732
AK
2203 struct kvm_msr_entry *entries,
2204 int (*do_msr)(struct kvm_vcpu *vcpu,
2205 unsigned index, u64 *data))
2206{
6aa8b732
AK
2207 int i;
2208
bccf2150 2209 vcpu_load(vcpu);
6aa8b732
AK
2210
2211 for (i = 0; i < msrs->nmsrs; ++i)
2212 if (do_msr(vcpu, entries[i].index, &entries[i].data))
2213 break;
2214
2215 vcpu_put(vcpu);
2216
2217 return i;
2218}
2219
2220/*
2221 * Read or write a bunch of msrs. Parameters are user addresses.
2222 *
2223 * @return number of msrs set successfully.
2224 */
bccf2150 2225static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
6aa8b732
AK
2226 int (*do_msr)(struct kvm_vcpu *vcpu,
2227 unsigned index, u64 *data),
2228 int writeback)
2229{
2230 struct kvm_msrs msrs;
2231 struct kvm_msr_entry *entries;
2232 int r, n;
2233 unsigned size;
2234
2235 r = -EFAULT;
2236 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
2237 goto out;
2238
2239 r = -E2BIG;
2240 if (msrs.nmsrs >= MAX_IO_MSRS)
2241 goto out;
2242
2243 r = -ENOMEM;
2244 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
2245 entries = vmalloc(size);
2246 if (!entries)
2247 goto out;
2248
2249 r = -EFAULT;
2250 if (copy_from_user(entries, user_msrs->entries, size))
2251 goto out_free;
2252
bccf2150 2253 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
6aa8b732
AK
2254 if (r < 0)
2255 goto out_free;
2256
2257 r = -EFAULT;
2258 if (writeback && copy_to_user(user_msrs->entries, entries, size))
2259 goto out_free;
2260
2261 r = n;
2262
2263out_free:
2264 vfree(entries);
2265out:
2266 return r;
2267}
2268
2269/*
2270 * Translate a guest virtual address to a guest physical address.
2271 */
bccf2150
AK
2272static int kvm_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
2273 struct kvm_translation *tr)
6aa8b732
AK
2274{
2275 unsigned long vaddr = tr->linear_address;
6aa8b732
AK
2276 gpa_t gpa;
2277
bccf2150
AK
2278 vcpu_load(vcpu);
2279 spin_lock(&vcpu->kvm->lock);
6aa8b732
AK
2280 gpa = vcpu->mmu.gva_to_gpa(vcpu, vaddr);
2281 tr->physical_address = gpa;
2282 tr->valid = gpa != UNMAPPED_GVA;
2283 tr->writeable = 1;
2284 tr->usermode = 0;
bccf2150 2285 spin_unlock(&vcpu->kvm->lock);
6aa8b732
AK
2286 vcpu_put(vcpu);
2287
2288 return 0;
2289}
2290
bccf2150
AK
2291static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
2292 struct kvm_interrupt *irq)
6aa8b732 2293{
6aa8b732
AK
2294 if (irq->irq < 0 || irq->irq >= 256)
2295 return -EINVAL;
bccf2150 2296 vcpu_load(vcpu);
6aa8b732
AK
2297
2298 set_bit(irq->irq, vcpu->irq_pending);
2299 set_bit(irq->irq / BITS_PER_LONG, &vcpu->irq_summary);
2300
2301 vcpu_put(vcpu);
2302
2303 return 0;
2304}
2305
bccf2150
AK
2306static int kvm_vcpu_ioctl_debug_guest(struct kvm_vcpu *vcpu,
2307 struct kvm_debug_guest *dbg)
6aa8b732 2308{
6aa8b732
AK
2309 int r;
2310
bccf2150 2311 vcpu_load(vcpu);
6aa8b732
AK
2312
2313 r = kvm_arch_ops->set_guest_debug(vcpu, dbg);
2314
2315 vcpu_put(vcpu);
2316
2317 return r;
2318}
2319
9a2bb7f4
AK
2320static struct page *kvm_vcpu_nopage(struct vm_area_struct *vma,
2321 unsigned long address,
2322 int *type)
2323{
2324 struct kvm_vcpu *vcpu = vma->vm_file->private_data;
2325 unsigned long pgoff;
2326 struct page *page;
2327
9a2bb7f4 2328 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
039576c0
AK
2329 if (pgoff == 0)
2330 page = virt_to_page(vcpu->run);
2331 else if (pgoff == KVM_PIO_PAGE_OFFSET)
2332 page = virt_to_page(vcpu->pio_data);
2333 else
9a2bb7f4 2334 return NOPAGE_SIGBUS;
9a2bb7f4 2335 get_page(page);
cd0d9137
NAQ
2336 if (type != NULL)
2337 *type = VM_FAULT_MINOR;
2338
9a2bb7f4
AK
2339 return page;
2340}
2341
2342static struct vm_operations_struct kvm_vcpu_vm_ops = {
2343 .nopage = kvm_vcpu_nopage,
2344};
2345
2346static int kvm_vcpu_mmap(struct file *file, struct vm_area_struct *vma)
2347{
2348 vma->vm_ops = &kvm_vcpu_vm_ops;
2349 return 0;
2350}
2351
bccf2150
AK
2352static int kvm_vcpu_release(struct inode *inode, struct file *filp)
2353{
2354 struct kvm_vcpu *vcpu = filp->private_data;
2355
2356 fput(vcpu->kvm->filp);
2357 return 0;
2358}
2359
2360static struct file_operations kvm_vcpu_fops = {
2361 .release = kvm_vcpu_release,
2362 .unlocked_ioctl = kvm_vcpu_ioctl,
2363 .compat_ioctl = kvm_vcpu_ioctl,
9a2bb7f4 2364 .mmap = kvm_vcpu_mmap,
bccf2150
AK
2365};
2366
2367/*
2368 * Allocates an inode for the vcpu.
2369 */
2370static int create_vcpu_fd(struct kvm_vcpu *vcpu)
2371{
2372 int fd, r;
2373 struct inode *inode;
2374 struct file *file;
2375
d6d28168
AK
2376 r = anon_inode_getfd(&fd, &inode, &file,
2377 "kvm-vcpu", &kvm_vcpu_fops, vcpu);
2378 if (r)
2379 return r;
bccf2150 2380 atomic_inc(&vcpu->kvm->filp->f_count);
bccf2150 2381 return fd;
bccf2150
AK
2382}
2383
c5ea7660
AK
2384/*
2385 * Creates some virtual cpus. Good luck creating more than one.
2386 */
2387static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, int n)
2388{
2389 int r;
2390 struct kvm_vcpu *vcpu;
9a2bb7f4 2391 struct page *page;
c5ea7660
AK
2392
2393 r = -EINVAL;
2394 if (!valid_vcpu(n))
2395 goto out;
2396
2397 vcpu = &kvm->vcpus[n];
dad3795d 2398 vcpu->vcpu_id = n;
c5ea7660
AK
2399
2400 mutex_lock(&vcpu->mutex);
2401
2402 if (vcpu->vmcs) {
2403 mutex_unlock(&vcpu->mutex);
2404 return -EEXIST;
2405 }
2406
9a2bb7f4
AK
2407 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2408 r = -ENOMEM;
2409 if (!page)
2410 goto out_unlock;
2411 vcpu->run = page_address(page);
2412
039576c0
AK
2413 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
2414 r = -ENOMEM;
2415 if (!page)
2416 goto out_free_run;
2417 vcpu->pio_data = page_address(page);
2418
c5ea7660
AK
2419 vcpu->host_fx_image = (char*)ALIGN((hva_t)vcpu->fx_buf,
2420 FX_IMAGE_ALIGN);
2421 vcpu->guest_fx_image = vcpu->host_fx_image + FX_IMAGE_SIZE;
d917a6b9 2422 vcpu->cr0 = 0x10;
c5ea7660
AK
2423
2424 r = kvm_arch_ops->vcpu_create(vcpu);
2425 if (r < 0)
2426 goto out_free_vcpus;
2427
2428 r = kvm_mmu_create(vcpu);
2429 if (r < 0)
2430 goto out_free_vcpus;
2431
2432 kvm_arch_ops->vcpu_load(vcpu);
2433 r = kvm_mmu_setup(vcpu);
2434 if (r >= 0)
2435 r = kvm_arch_ops->vcpu_setup(vcpu);
2436 vcpu_put(vcpu);
2437
2438 if (r < 0)
2439 goto out_free_vcpus;
2440
bccf2150
AK
2441 r = create_vcpu_fd(vcpu);
2442 if (r < 0)
2443 goto out_free_vcpus;
2444
39c3b86e
AK
2445 spin_lock(&kvm_lock);
2446 if (n >= kvm->nvcpus)
2447 kvm->nvcpus = n + 1;
2448 spin_unlock(&kvm_lock);
2449
bccf2150 2450 return r;
c5ea7660
AK
2451
2452out_free_vcpus:
2453 kvm_free_vcpu(vcpu);
039576c0
AK
2454out_free_run:
2455 free_page((unsigned long)vcpu->run);
2456 vcpu->run = NULL;
9a2bb7f4 2457out_unlock:
c5ea7660
AK
2458 mutex_unlock(&vcpu->mutex);
2459out:
2460 return r;
2461}
2462
2cc51560
ED
2463static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu)
2464{
2465 u64 efer;
2466 int i;
2467 struct kvm_cpuid_entry *e, *entry;
2468
2469 rdmsrl(MSR_EFER, efer);
2470 entry = NULL;
2471 for (i = 0; i < vcpu->cpuid_nent; ++i) {
2472 e = &vcpu->cpuid_entries[i];
2473 if (e->function == 0x80000001) {
2474 entry = e;
2475 break;
2476 }
2477 }
4c981b43 2478 if (entry && (entry->edx & (1 << 20)) && !(efer & EFER_NX)) {
2cc51560 2479 entry->edx &= ~(1 << 20);
4c981b43 2480 printk(KERN_INFO "kvm: guest NX capability removed\n");
2cc51560
ED
2481 }
2482}
2483
06465c5a
AK
2484static int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
2485 struct kvm_cpuid *cpuid,
2486 struct kvm_cpuid_entry __user *entries)
2487{
2488 int r;
2489
2490 r = -E2BIG;
2491 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
2492 goto out;
2493 r = -EFAULT;
2494 if (copy_from_user(&vcpu->cpuid_entries, entries,
2495 cpuid->nent * sizeof(struct kvm_cpuid_entry)))
2496 goto out;
2497 vcpu->cpuid_nent = cpuid->nent;
2cc51560 2498 cpuid_fix_nx_cap(vcpu);
06465c5a
AK
2499 return 0;
2500
2501out:
2502 return r;
2503}
2504
1961d276
AK
2505static int kvm_vcpu_ioctl_set_sigmask(struct kvm_vcpu *vcpu, sigset_t *sigset)
2506{
2507 if (sigset) {
2508 sigdelsetmask(sigset, sigmask(SIGKILL)|sigmask(SIGSTOP));
2509 vcpu->sigset_active = 1;
2510 vcpu->sigset = *sigset;
2511 } else
2512 vcpu->sigset_active = 0;
2513 return 0;
2514}
2515
b8836737
AK
2516/*
2517 * fxsave fpu state. Taken from x86_64/processor.h. To be killed when
2518 * we have asm/x86/processor.h
2519 */
2520struct fxsave {
2521 u16 cwd;
2522 u16 swd;
2523 u16 twd;
2524 u16 fop;
2525 u64 rip;
2526 u64 rdp;
2527 u32 mxcsr;
2528 u32 mxcsr_mask;
2529 u32 st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
2530#ifdef CONFIG_X86_64
2531 u32 xmm_space[64]; /* 16*16 bytes for each XMM-reg = 256 bytes */
2532#else
2533 u32 xmm_space[32]; /* 8*16 bytes for each XMM-reg = 128 bytes */
2534#endif
2535};
2536
2537static int kvm_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2538{
2539 struct fxsave *fxsave = (struct fxsave *)vcpu->guest_fx_image;
2540
2541 vcpu_load(vcpu);
2542
2543 memcpy(fpu->fpr, fxsave->st_space, 128);
2544 fpu->fcw = fxsave->cwd;
2545 fpu->fsw = fxsave->swd;
2546 fpu->ftwx = fxsave->twd;
2547 fpu->last_opcode = fxsave->fop;
2548 fpu->last_ip = fxsave->rip;
2549 fpu->last_dp = fxsave->rdp;
2550 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
2551
2552 vcpu_put(vcpu);
2553
2554 return 0;
2555}
2556
2557static int kvm_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2558{
2559 struct fxsave *fxsave = (struct fxsave *)vcpu->guest_fx_image;
2560
2561 vcpu_load(vcpu);
2562
2563 memcpy(fxsave->st_space, fpu->fpr, 128);
2564 fxsave->cwd = fpu->fcw;
2565 fxsave->swd = fpu->fsw;
2566 fxsave->twd = fpu->ftwx;
2567 fxsave->fop = fpu->last_opcode;
2568 fxsave->rip = fpu->last_ip;
2569 fxsave->rdp = fpu->last_dp;
2570 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
2571
2572 vcpu_put(vcpu);
2573
2574 return 0;
2575}
2576
bccf2150
AK
2577static long kvm_vcpu_ioctl(struct file *filp,
2578 unsigned int ioctl, unsigned long arg)
6aa8b732 2579{
bccf2150 2580 struct kvm_vcpu *vcpu = filp->private_data;
2f366987 2581 void __user *argp = (void __user *)arg;
6aa8b732
AK
2582 int r = -EINVAL;
2583
2584 switch (ioctl) {
9a2bb7f4 2585 case KVM_RUN:
f0fe5108
AK
2586 r = -EINVAL;
2587 if (arg)
2588 goto out;
9a2bb7f4 2589 r = kvm_vcpu_ioctl_run(vcpu, vcpu->run);
6aa8b732 2590 break;
6aa8b732
AK
2591 case KVM_GET_REGS: {
2592 struct kvm_regs kvm_regs;
2593
bccf2150
AK
2594 memset(&kvm_regs, 0, sizeof kvm_regs);
2595 r = kvm_vcpu_ioctl_get_regs(vcpu, &kvm_regs);
6aa8b732
AK
2596 if (r)
2597 goto out;
2598 r = -EFAULT;
2f366987 2599 if (copy_to_user(argp, &kvm_regs, sizeof kvm_regs))
6aa8b732
AK
2600 goto out;
2601 r = 0;
2602 break;
2603 }
2604 case KVM_SET_REGS: {
2605 struct kvm_regs kvm_regs;
2606
2607 r = -EFAULT;
2f366987 2608 if (copy_from_user(&kvm_regs, argp, sizeof kvm_regs))
6aa8b732 2609 goto out;
bccf2150 2610 r = kvm_vcpu_ioctl_set_regs(vcpu, &kvm_regs);
6aa8b732
AK
2611 if (r)
2612 goto out;
2613 r = 0;
2614 break;
2615 }
2616 case KVM_GET_SREGS: {
2617 struct kvm_sregs kvm_sregs;
2618
bccf2150
AK
2619 memset(&kvm_sregs, 0, sizeof kvm_sregs);
2620 r = kvm_vcpu_ioctl_get_sregs(vcpu, &kvm_sregs);
6aa8b732
AK
2621 if (r)
2622 goto out;
2623 r = -EFAULT;
2f366987 2624 if (copy_to_user(argp, &kvm_sregs, sizeof kvm_sregs))
6aa8b732
AK
2625 goto out;
2626 r = 0;
2627 break;
2628 }
2629 case KVM_SET_SREGS: {
2630 struct kvm_sregs kvm_sregs;
2631
2632 r = -EFAULT;
2f366987 2633 if (copy_from_user(&kvm_sregs, argp, sizeof kvm_sregs))
6aa8b732 2634 goto out;
bccf2150 2635 r = kvm_vcpu_ioctl_set_sregs(vcpu, &kvm_sregs);
6aa8b732
AK
2636 if (r)
2637 goto out;
2638 r = 0;
2639 break;
2640 }
2641 case KVM_TRANSLATE: {
2642 struct kvm_translation tr;
2643
2644 r = -EFAULT;
2f366987 2645 if (copy_from_user(&tr, argp, sizeof tr))
6aa8b732 2646 goto out;
bccf2150 2647 r = kvm_vcpu_ioctl_translate(vcpu, &tr);
6aa8b732
AK
2648 if (r)
2649 goto out;
2650 r = -EFAULT;
2f366987 2651 if (copy_to_user(argp, &tr, sizeof tr))
6aa8b732
AK
2652 goto out;
2653 r = 0;
2654 break;
2655 }
2656 case KVM_INTERRUPT: {
2657 struct kvm_interrupt irq;
2658
2659 r = -EFAULT;
2f366987 2660 if (copy_from_user(&irq, argp, sizeof irq))
6aa8b732 2661 goto out;
bccf2150 2662 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
6aa8b732
AK
2663 if (r)
2664 goto out;
2665 r = 0;
2666 break;
2667 }
2668 case KVM_DEBUG_GUEST: {
2669 struct kvm_debug_guest dbg;
2670
2671 r = -EFAULT;
2f366987 2672 if (copy_from_user(&dbg, argp, sizeof dbg))
6aa8b732 2673 goto out;
bccf2150 2674 r = kvm_vcpu_ioctl_debug_guest(vcpu, &dbg);
6aa8b732
AK
2675 if (r)
2676 goto out;
2677 r = 0;
2678 break;
2679 }
bccf2150 2680 case KVM_GET_MSRS:
35f3f286 2681 r = msr_io(vcpu, argp, kvm_get_msr, 1);
bccf2150
AK
2682 break;
2683 case KVM_SET_MSRS:
2684 r = msr_io(vcpu, argp, do_set_msr, 0);
2685 break;
06465c5a
AK
2686 case KVM_SET_CPUID: {
2687 struct kvm_cpuid __user *cpuid_arg = argp;
2688 struct kvm_cpuid cpuid;
2689
2690 r = -EFAULT;
2691 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
2692 goto out;
2693 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
2694 if (r)
2695 goto out;
2696 break;
2697 }
1961d276
AK
2698 case KVM_SET_SIGNAL_MASK: {
2699 struct kvm_signal_mask __user *sigmask_arg = argp;
2700 struct kvm_signal_mask kvm_sigmask;
2701 sigset_t sigset, *p;
2702
2703 p = NULL;
2704 if (argp) {
2705 r = -EFAULT;
2706 if (copy_from_user(&kvm_sigmask, argp,
2707 sizeof kvm_sigmask))
2708 goto out;
2709 r = -EINVAL;
2710 if (kvm_sigmask.len != sizeof sigset)
2711 goto out;
2712 r = -EFAULT;
2713 if (copy_from_user(&sigset, sigmask_arg->sigset,
2714 sizeof sigset))
2715 goto out;
2716 p = &sigset;
2717 }
2718 r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
2719 break;
2720 }
b8836737
AK
2721 case KVM_GET_FPU: {
2722 struct kvm_fpu fpu;
2723
2724 memset(&fpu, 0, sizeof fpu);
2725 r = kvm_vcpu_ioctl_get_fpu(vcpu, &fpu);
2726 if (r)
2727 goto out;
2728 r = -EFAULT;
2729 if (copy_to_user(argp, &fpu, sizeof fpu))
2730 goto out;
2731 r = 0;
2732 break;
2733 }
2734 case KVM_SET_FPU: {
2735 struct kvm_fpu fpu;
2736
2737 r = -EFAULT;
2738 if (copy_from_user(&fpu, argp, sizeof fpu))
2739 goto out;
2740 r = kvm_vcpu_ioctl_set_fpu(vcpu, &fpu);
2741 if (r)
2742 goto out;
2743 r = 0;
2744 break;
2745 }
bccf2150
AK
2746 default:
2747 ;
2748 }
2749out:
2750 return r;
2751}
2752
2753static long kvm_vm_ioctl(struct file *filp,
2754 unsigned int ioctl, unsigned long arg)
2755{
2756 struct kvm *kvm = filp->private_data;
2757 void __user *argp = (void __user *)arg;
2758 int r = -EINVAL;
2759
2760 switch (ioctl) {
2761 case KVM_CREATE_VCPU:
2762 r = kvm_vm_ioctl_create_vcpu(kvm, arg);
2763 if (r < 0)
2764 goto out;
2765 break;
6aa8b732
AK
2766 case KVM_SET_MEMORY_REGION: {
2767 struct kvm_memory_region kvm_mem;
2768
2769 r = -EFAULT;
2f366987 2770 if (copy_from_user(&kvm_mem, argp, sizeof kvm_mem))
6aa8b732 2771 goto out;
2c6f5df9 2772 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_mem);
6aa8b732
AK
2773 if (r)
2774 goto out;
2775 break;
2776 }
2777 case KVM_GET_DIRTY_LOG: {
2778 struct kvm_dirty_log log;
2779
2780 r = -EFAULT;
2f366987 2781 if (copy_from_user(&log, argp, sizeof log))
6aa8b732 2782 goto out;
2c6f5df9 2783 r = kvm_vm_ioctl_get_dirty_log(kvm, &log);
6aa8b732
AK
2784 if (r)
2785 goto out;
2786 break;
2787 }
e8207547
AK
2788 case KVM_SET_MEMORY_ALIAS: {
2789 struct kvm_memory_alias alias;
2790
2791 r = -EFAULT;
2792 if (copy_from_user(&alias, argp, sizeof alias))
2793 goto out;
2794 r = kvm_vm_ioctl_set_memory_alias(kvm, &alias);
2795 if (r)
2796 goto out;
2797 break;
2798 }
f17abe9a
AK
2799 default:
2800 ;
2801 }
2802out:
2803 return r;
2804}
2805
2806static struct page *kvm_vm_nopage(struct vm_area_struct *vma,
2807 unsigned long address,
2808 int *type)
2809{
2810 struct kvm *kvm = vma->vm_file->private_data;
2811 unsigned long pgoff;
f17abe9a
AK
2812 struct page *page;
2813
f17abe9a 2814 pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
954bbbc2 2815 page = gfn_to_page(kvm, pgoff);
f17abe9a
AK
2816 if (!page)
2817 return NOPAGE_SIGBUS;
2818 get_page(page);
cd0d9137
NAQ
2819 if (type != NULL)
2820 *type = VM_FAULT_MINOR;
2821
f17abe9a
AK
2822 return page;
2823}
2824
2825static struct vm_operations_struct kvm_vm_vm_ops = {
2826 .nopage = kvm_vm_nopage,
2827};
2828
2829static int kvm_vm_mmap(struct file *file, struct vm_area_struct *vma)
2830{
2831 vma->vm_ops = &kvm_vm_vm_ops;
2832 return 0;
2833}
2834
2835static struct file_operations kvm_vm_fops = {
2836 .release = kvm_vm_release,
2837 .unlocked_ioctl = kvm_vm_ioctl,
2838 .compat_ioctl = kvm_vm_ioctl,
2839 .mmap = kvm_vm_mmap,
2840};
2841
2842static int kvm_dev_ioctl_create_vm(void)
2843{
2844 int fd, r;
2845 struct inode *inode;
2846 struct file *file;
2847 struct kvm *kvm;
2848
f17abe9a 2849 kvm = kvm_create_vm();
d6d28168
AK
2850 if (IS_ERR(kvm))
2851 return PTR_ERR(kvm);
2852 r = anon_inode_getfd(&fd, &inode, &file, "kvm-vm", &kvm_vm_fops, kvm);
2853 if (r) {
2854 kvm_destroy_vm(kvm);
2855 return r;
f17abe9a
AK
2856 }
2857
bccf2150 2858 kvm->filp = file;
f17abe9a 2859
f17abe9a 2860 return fd;
f17abe9a
AK
2861}
2862
2863static long kvm_dev_ioctl(struct file *filp,
2864 unsigned int ioctl, unsigned long arg)
2865{
2866 void __user *argp = (void __user *)arg;
07c45a36 2867 long r = -EINVAL;
f17abe9a
AK
2868
2869 switch (ioctl) {
2870 case KVM_GET_API_VERSION:
f0fe5108
AK
2871 r = -EINVAL;
2872 if (arg)
2873 goto out;
f17abe9a
AK
2874 r = KVM_API_VERSION;
2875 break;
2876 case KVM_CREATE_VM:
f0fe5108
AK
2877 r = -EINVAL;
2878 if (arg)
2879 goto out;
f17abe9a
AK
2880 r = kvm_dev_ioctl_create_vm();
2881 break;
6aa8b732 2882 case KVM_GET_MSR_INDEX_LIST: {
2f366987 2883 struct kvm_msr_list __user *user_msr_list = argp;
6aa8b732
AK
2884 struct kvm_msr_list msr_list;
2885 unsigned n;
2886
2887 r = -EFAULT;
2888 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
2889 goto out;
2890 n = msr_list.nmsrs;
6f00e68f 2891 msr_list.nmsrs = num_msrs_to_save + ARRAY_SIZE(emulated_msrs);
6aa8b732
AK
2892 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
2893 goto out;
2894 r = -E2BIG;
bf591b24 2895 if (n < num_msrs_to_save)
6aa8b732
AK
2896 goto out;
2897 r = -EFAULT;
2898 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
bf591b24 2899 num_msrs_to_save * sizeof(u32)))
6aa8b732 2900 goto out;
6f00e68f
AK
2901 if (copy_to_user(user_msr_list->indices
2902 + num_msrs_to_save * sizeof(u32),
2903 &emulated_msrs,
2904 ARRAY_SIZE(emulated_msrs) * sizeof(u32)))
2905 goto out;
6aa8b732 2906 r = 0;
cc1d8955 2907 break;
6aa8b732 2908 }
5d308f45
AK
2909 case KVM_CHECK_EXTENSION:
2910 /*
2911 * No extensions defined at present.
2912 */
2913 r = 0;
2914 break;
07c45a36
AK
2915 case KVM_GET_VCPU_MMAP_SIZE:
2916 r = -EINVAL;
2917 if (arg)
2918 goto out;
039576c0 2919 r = 2 * PAGE_SIZE;
07c45a36 2920 break;
6aa8b732
AK
2921 default:
2922 ;
2923 }
2924out:
2925 return r;
2926}
2927
6aa8b732
AK
2928static struct file_operations kvm_chardev_ops = {
2929 .open = kvm_dev_open,
2930 .release = kvm_dev_release,
2931 .unlocked_ioctl = kvm_dev_ioctl,
2932 .compat_ioctl = kvm_dev_ioctl,
6aa8b732
AK
2933};
2934
2935static struct miscdevice kvm_dev = {
bbe4432e 2936 KVM_MINOR,
6aa8b732
AK
2937 "kvm",
2938 &kvm_chardev_ops,
2939};
2940
774c47f1
AK
2941/*
2942 * Make sure that a cpu that is being hot-unplugged does not have any vcpus
2943 * cached on it.
2944 */
2945static void decache_vcpus_on_cpu(int cpu)
2946{
2947 struct kvm *vm;
2948 struct kvm_vcpu *vcpu;
2949 int i;
2950
2951 spin_lock(&kvm_lock);
2952 list_for_each_entry(vm, &vm_list, vm_list)
2953 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
2954 vcpu = &vm->vcpus[i];
2955 /*
2956 * If the vcpu is locked, then it is running on some
2957 * other cpu and therefore it is not cached on the
2958 * cpu in question.
2959 *
2960 * If it's not locked, check the last cpu it executed
2961 * on.
2962 */
2963 if (mutex_trylock(&vcpu->mutex)) {
2964 if (vcpu->cpu == cpu) {
2965 kvm_arch_ops->vcpu_decache(vcpu);
2966 vcpu->cpu = -1;
2967 }
2968 mutex_unlock(&vcpu->mutex);
2969 }
2970 }
2971 spin_unlock(&kvm_lock);
2972}
2973
1b6c0168
AK
2974static void hardware_enable(void *junk)
2975{
2976 int cpu = raw_smp_processor_id();
2977
2978 if (cpu_isset(cpu, cpus_hardware_enabled))
2979 return;
2980 cpu_set(cpu, cpus_hardware_enabled);
2981 kvm_arch_ops->hardware_enable(NULL);
2982}
2983
2984static void hardware_disable(void *junk)
2985{
2986 int cpu = raw_smp_processor_id();
2987
2988 if (!cpu_isset(cpu, cpus_hardware_enabled))
2989 return;
2990 cpu_clear(cpu, cpus_hardware_enabled);
2991 decache_vcpus_on_cpu(cpu);
2992 kvm_arch_ops->hardware_disable(NULL);
2993}
2994
774c47f1
AK
2995static int kvm_cpu_hotplug(struct notifier_block *notifier, unsigned long val,
2996 void *v)
2997{
2998 int cpu = (long)v;
2999
3000 switch (val) {
cec9ad27
AK
3001 case CPU_DYING:
3002 case CPU_DYING_FROZEN:
6ec8a856
AK
3003 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
3004 cpu);
3005 hardware_disable(NULL);
3006 break;
774c47f1 3007 case CPU_UP_CANCELED:
8bb78442 3008 case CPU_UP_CANCELED_FROZEN:
43934a38
JK
3009 printk(KERN_INFO "kvm: disabling virtualization on CPU%d\n",
3010 cpu);
1b6c0168 3011 smp_call_function_single(cpu, hardware_disable, NULL, 0, 1);
774c47f1 3012 break;
43934a38 3013 case CPU_ONLINE:
8bb78442 3014 case CPU_ONLINE_FROZEN:
43934a38
JK
3015 printk(KERN_INFO "kvm: enabling virtualization on CPU%d\n",
3016 cpu);
1b6c0168 3017 smp_call_function_single(cpu, hardware_enable, NULL, 0, 1);
774c47f1
AK
3018 break;
3019 }
3020 return NOTIFY_OK;
3021}
3022
9a2b85c6
RR
3023static int kvm_reboot(struct notifier_block *notifier, unsigned long val,
3024 void *v)
3025{
3026 if (val == SYS_RESTART) {
3027 /*
3028 * Some (well, at least mine) BIOSes hang on reboot if
3029 * in vmx root mode.
3030 */
3031 printk(KERN_INFO "kvm: exiting hardware virtualization\n");
3032 on_each_cpu(hardware_disable, NULL, 0, 1);
3033 }
3034 return NOTIFY_OK;
3035}
3036
3037static struct notifier_block kvm_reboot_notifier = {
3038 .notifier_call = kvm_reboot,
3039 .priority = 0,
3040};
3041
2eeb2e94
GH
3042void kvm_io_bus_init(struct kvm_io_bus *bus)
3043{
3044 memset(bus, 0, sizeof(*bus));
3045}
3046
3047void kvm_io_bus_destroy(struct kvm_io_bus *bus)
3048{
3049 int i;
3050
3051 for (i = 0; i < bus->dev_count; i++) {
3052 struct kvm_io_device *pos = bus->devs[i];
3053
3054 kvm_iodevice_destructor(pos);
3055 }
3056}
3057
3058struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, gpa_t addr)
3059{
3060 int i;
3061
3062 for (i = 0; i < bus->dev_count; i++) {
3063 struct kvm_io_device *pos = bus->devs[i];
3064
3065 if (pos->in_range(pos, addr))
3066 return pos;
3067 }
3068
3069 return NULL;
3070}
3071
3072void kvm_io_bus_register_dev(struct kvm_io_bus *bus, struct kvm_io_device *dev)
3073{
3074 BUG_ON(bus->dev_count > (NR_IOBUS_DEVS-1));
3075
3076 bus->devs[bus->dev_count++] = dev;
3077}
3078
774c47f1
AK
3079static struct notifier_block kvm_cpu_notifier = {
3080 .notifier_call = kvm_cpu_hotplug,
3081 .priority = 20, /* must be > scheduler priority */
3082};
3083
1165f5fe
AK
3084static u64 stat_get(void *_offset)
3085{
3086 unsigned offset = (long)_offset;
3087 u64 total = 0;
3088 struct kvm *kvm;
3089 struct kvm_vcpu *vcpu;
3090 int i;
3091
3092 spin_lock(&kvm_lock);
3093 list_for_each_entry(kvm, &vm_list, vm_list)
3094 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
3095 vcpu = &kvm->vcpus[i];
3096 total += *(u32 *)((void *)vcpu + offset);
3097 }
3098 spin_unlock(&kvm_lock);
3099 return total;
3100}
3101
3102static void stat_set(void *offset, u64 val)
3103{
3104}
3105
3106DEFINE_SIMPLE_ATTRIBUTE(stat_fops, stat_get, stat_set, "%llu\n");
3107
6aa8b732
AK
3108static __init void kvm_init_debug(void)
3109{
3110 struct kvm_stats_debugfs_item *p;
3111
8b6d44c7 3112 debugfs_dir = debugfs_create_dir("kvm", NULL);
6aa8b732 3113 for (p = debugfs_entries; p->name; ++p)
1165f5fe
AK
3114 p->dentry = debugfs_create_file(p->name, 0444, debugfs_dir,
3115 (void *)(long)p->offset,
3116 &stat_fops);
6aa8b732
AK
3117}
3118
3119static void kvm_exit_debug(void)
3120{
3121 struct kvm_stats_debugfs_item *p;
3122
3123 for (p = debugfs_entries; p->name; ++p)
3124 debugfs_remove(p->dentry);
3125 debugfs_remove(debugfs_dir);
3126}
3127
59ae6c6b
AK
3128static int kvm_suspend(struct sys_device *dev, pm_message_t state)
3129{
4267c41a 3130 hardware_disable(NULL);
59ae6c6b
AK
3131 return 0;
3132}
3133
3134static int kvm_resume(struct sys_device *dev)
3135{
4267c41a 3136 hardware_enable(NULL);
59ae6c6b
AK
3137 return 0;
3138}
3139
3140static struct sysdev_class kvm_sysdev_class = {
3141 set_kset_name("kvm"),
3142 .suspend = kvm_suspend,
3143 .resume = kvm_resume,
3144};
3145
3146static struct sys_device kvm_sysdev = {
3147 .id = 0,
3148 .cls = &kvm_sysdev_class,
3149};
3150
6aa8b732
AK
3151hpa_t bad_page_address;
3152
3153int kvm_init_arch(struct kvm_arch_ops *ops, struct module *module)
3154{
3155 int r;
3156
09db28b8
YI
3157 if (kvm_arch_ops) {
3158 printk(KERN_ERR "kvm: already loaded the other module\n");
3159 return -EEXIST;
3160 }
3161
e097f35c 3162 if (!ops->cpu_has_kvm_support()) {
6aa8b732
AK
3163 printk(KERN_ERR "kvm: no hardware support\n");
3164 return -EOPNOTSUPP;
3165 }
e097f35c 3166 if (ops->disabled_by_bios()) {
6aa8b732
AK
3167 printk(KERN_ERR "kvm: disabled by bios\n");
3168 return -EOPNOTSUPP;
3169 }
3170
e097f35c
YI
3171 kvm_arch_ops = ops;
3172
6aa8b732
AK
3173 r = kvm_arch_ops->hardware_setup();
3174 if (r < 0)
ca45aaae 3175 goto out;
6aa8b732 3176
1b6c0168 3177 on_each_cpu(hardware_enable, NULL, 0, 1);
774c47f1
AK
3178 r = register_cpu_notifier(&kvm_cpu_notifier);
3179 if (r)
3180 goto out_free_1;
6aa8b732
AK
3181 register_reboot_notifier(&kvm_reboot_notifier);
3182
59ae6c6b
AK
3183 r = sysdev_class_register(&kvm_sysdev_class);
3184 if (r)
3185 goto out_free_2;
3186
3187 r = sysdev_register(&kvm_sysdev);
3188 if (r)
3189 goto out_free_3;
3190
6aa8b732
AK
3191 kvm_chardev_ops.owner = module;
3192
3193 r = misc_register(&kvm_dev);
3194 if (r) {
3195 printk (KERN_ERR "kvm: misc device register failed\n");
3196 goto out_free;
3197 }
3198
3199 return r;
3200
3201out_free:
59ae6c6b
AK
3202 sysdev_unregister(&kvm_sysdev);
3203out_free_3:
3204 sysdev_class_unregister(&kvm_sysdev_class);
3205out_free_2:
6aa8b732 3206 unregister_reboot_notifier(&kvm_reboot_notifier);
774c47f1
AK
3207 unregister_cpu_notifier(&kvm_cpu_notifier);
3208out_free_1:
1b6c0168 3209 on_each_cpu(hardware_disable, NULL, 0, 1);
6aa8b732 3210 kvm_arch_ops->hardware_unsetup();
ca45aaae
AK
3211out:
3212 kvm_arch_ops = NULL;
6aa8b732
AK
3213 return r;
3214}
3215
3216void kvm_exit_arch(void)
3217{
3218 misc_deregister(&kvm_dev);
59ae6c6b
AK
3219 sysdev_unregister(&kvm_sysdev);
3220 sysdev_class_unregister(&kvm_sysdev_class);
6aa8b732 3221 unregister_reboot_notifier(&kvm_reboot_notifier);
59ae6c6b 3222 unregister_cpu_notifier(&kvm_cpu_notifier);
1b6c0168 3223 on_each_cpu(hardware_disable, NULL, 0, 1);
6aa8b732 3224 kvm_arch_ops->hardware_unsetup();
09db28b8 3225 kvm_arch_ops = NULL;
6aa8b732
AK
3226}
3227
3228static __init int kvm_init(void)
3229{
3230 static struct page *bad_page;
37e29d90
AK
3231 int r;
3232
b5a33a75
AK
3233 r = kvm_mmu_module_init();
3234 if (r)
3235 goto out4;
3236
6aa8b732
AK
3237 kvm_init_debug();
3238
bf591b24
MR
3239 kvm_init_msr_list();
3240
6aa8b732
AK
3241 if ((bad_page = alloc_page(GFP_KERNEL)) == NULL) {
3242 r = -ENOMEM;
3243 goto out;
3244 }
3245
3246 bad_page_address = page_to_pfn(bad_page) << PAGE_SHIFT;
3247 memset(__va(bad_page_address), 0, PAGE_SIZE);
3248
58e690e6 3249 return 0;
6aa8b732
AK
3250
3251out:
3252 kvm_exit_debug();
b5a33a75
AK
3253 kvm_mmu_module_exit();
3254out4:
6aa8b732
AK
3255 return r;
3256}
3257
3258static __exit void kvm_exit(void)
3259{
3260 kvm_exit_debug();
3261 __free_page(pfn_to_page(bad_page_address >> PAGE_SHIFT));
b5a33a75 3262 kvm_mmu_module_exit();
6aa8b732
AK
3263}
3264
3265module_init(kvm_init)
3266module_exit(kvm_exit)
3267
3268EXPORT_SYMBOL_GPL(kvm_init_arch);
3269EXPORT_SYMBOL_GPL(kvm_exit_arch);
This page took 0.277917 seconds and 5 git commands to generate.