blob: 621a8e362fe772ec1b65789854ca555f13672ded [file] [log] [blame]
Carsten Otte043405e2007-10-10 17:16:19 +02001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * derived from drivers/kvm/kvm_main.c
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
7 *
8 * Authors:
9 * Avi Kivity <avi@qumranet.com>
10 * Yaniv Kamay <yaniv@qumranet.com>
11 *
12 * This work is licensed under the terms of the GNU GPL, version 2. See
13 * the COPYING file in the top-level directory.
14 *
15 */
16
Avi Kivityedf88412007-12-16 11:02:48 +020017#include <linux/kvm_host.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020018#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080019#include "mmu.h"
Sheng Yang78376992008-01-28 05:10:22 +080020#include "i8254.h"
Carsten Otte313a3dc2007-10-11 19:16:52 +020021
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -020022#include <linux/clocksource.h>
Carsten Otte313a3dc2007-10-11 19:16:52 +020023#include <linux/kvm.h>
24#include <linux/fs.h>
25#include <linux/vmalloc.h>
Carsten Otte5fb76f92007-10-29 16:08:51 +010026#include <linux/module.h>
Zhang Xiantao0de10342007-11-20 16:25:04 +080027#include <linux/mman.h>
Marcelo Tosatti2bacc552007-12-12 10:46:12 -050028#include <linux/highmem.h>
Carsten Otte043405e2007-10-10 17:16:19 +020029
30#include <asm/uaccess.h>
Zhang Xiantaod825ed02007-11-14 20:08:51 +080031#include <asm/msr.h>
Avi Kivitya5f61302008-02-20 17:57:21 +020032#include <asm/desc.h>
Carsten Otte043405e2007-10-10 17:16:19 +020033
Carsten Otte313a3dc2007-10-11 19:16:52 +020034#define MAX_IO_MSRS 256
Carsten Ottea03490e2007-10-29 16:09:35 +010035#define CR0_RESERVED_BITS \
36 (~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \
37 | X86_CR0_ET | X86_CR0_NE | X86_CR0_WP | X86_CR0_AM \
38 | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG))
39#define CR4_RESERVED_BITS \
40 (~(unsigned long)(X86_CR4_VME | X86_CR4_PVI | X86_CR4_TSD | X86_CR4_DE\
41 | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE \
42 | X86_CR4_PGE | X86_CR4_PCE | X86_CR4_OSFXSR \
43 | X86_CR4_OSXMMEXCPT | X86_CR4_VMXE))
44
45#define CR8_RESERVED_BITS (~(unsigned long)X86_CR8_TPR)
Joerg Roedel50a37eb2008-01-31 14:57:38 +010046/* EFER defaults:
47 * - enable syscall per default because its emulated by KVM
48 * - enable LME and LMA per default on 64 bit KVM
49 */
50#ifdef CONFIG_X86_64
51static u64 __read_mostly efer_reserved_bits = 0xfffffffffffffafeULL;
52#else
53static u64 __read_mostly efer_reserved_bits = 0xfffffffffffffffeULL;
54#endif
Carsten Otte313a3dc2007-10-11 19:16:52 +020055
Avi Kivityba1389b2007-11-18 16:24:12 +020056#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
57#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
Hollis Blanchard417bc302007-10-31 17:24:23 -050058
Avi Kivity674eea02008-02-11 18:37:23 +020059static int kvm_dev_ioctl_get_supported_cpuid(struct kvm_cpuid2 *cpuid,
60 struct kvm_cpuid_entry2 __user *entries);
61
Zhang Xiantao97896d02007-11-14 20:09:30 +080062struct kvm_x86_ops *kvm_x86_ops;
63
Hollis Blanchard417bc302007-10-31 17:24:23 -050064struct kvm_stats_debugfs_item debugfs_entries[] = {
Avi Kivityba1389b2007-11-18 16:24:12 +020065 { "pf_fixed", VCPU_STAT(pf_fixed) },
66 { "pf_guest", VCPU_STAT(pf_guest) },
67 { "tlb_flush", VCPU_STAT(tlb_flush) },
68 { "invlpg", VCPU_STAT(invlpg) },
69 { "exits", VCPU_STAT(exits) },
70 { "io_exits", VCPU_STAT(io_exits) },
71 { "mmio_exits", VCPU_STAT(mmio_exits) },
72 { "signal_exits", VCPU_STAT(signal_exits) },
73 { "irq_window", VCPU_STAT(irq_window_exits) },
74 { "halt_exits", VCPU_STAT(halt_exits) },
75 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Amit Shahf11c3a82008-02-21 01:00:30 +053076 { "hypercalls", VCPU_STAT(hypercalls) },
Avi Kivityba1389b2007-11-18 16:24:12 +020077 { "request_irq", VCPU_STAT(request_irq_exits) },
78 { "irq_exits", VCPU_STAT(irq_exits) },
79 { "host_state_reload", VCPU_STAT(host_state_reload) },
80 { "efer_reload", VCPU_STAT(efer_reload) },
81 { "fpu_reload", VCPU_STAT(fpu_reload) },
82 { "insn_emulation", VCPU_STAT(insn_emulation) },
83 { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) },
Avi Kivity4cee5762007-11-18 16:37:07 +020084 { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) },
85 { "mmu_pte_write", VM_STAT(mmu_pte_write) },
86 { "mmu_pte_updated", VM_STAT(mmu_pte_updated) },
87 { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) },
88 { "mmu_flooded", VM_STAT(mmu_flooded) },
89 { "mmu_recycled", VM_STAT(mmu_recycled) },
Avi Kivitydfc5aa02007-12-18 19:47:18 +020090 { "mmu_cache_miss", VM_STAT(mmu_cache_miss) },
Avi Kivity0f74a242007-11-20 23:01:14 +020091 { "remote_tlb_flush", VM_STAT(remote_tlb_flush) },
Marcelo Tosatti05da4552008-02-23 11:44:30 -030092 { "largepages", VM_STAT(lpages) },
Hollis Blanchard417bc302007-10-31 17:24:23 -050093 { NULL }
94};
95
96
Carsten Otte5fb76f92007-10-29 16:08:51 +010097unsigned long segment_base(u16 selector)
98{
99 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200100 struct desc_struct *d;
Carsten Otte5fb76f92007-10-29 16:08:51 +0100101 unsigned long table_base;
102 unsigned long v;
103
104 if (selector == 0)
105 return 0;
106
107 asm("sgdt %0" : "=m"(gdt));
108 table_base = gdt.base;
109
110 if (selector & 4) { /* from ldt */
111 u16 ldt_selector;
112
113 asm("sldt %0" : "=g"(ldt_selector));
114 table_base = segment_base(ldt_selector);
115 }
Avi Kivitya5f61302008-02-20 17:57:21 +0200116 d = (struct desc_struct *)(table_base + (selector & ~7));
117 v = d->base0 | ((unsigned long)d->base1 << 16) |
118 ((unsigned long)d->base2 << 24);
Carsten Otte5fb76f92007-10-29 16:08:51 +0100119#ifdef CONFIG_X86_64
Avi Kivitya5f61302008-02-20 17:57:21 +0200120 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
121 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
Carsten Otte5fb76f92007-10-29 16:08:51 +0100122#endif
123 return v;
124}
125EXPORT_SYMBOL_GPL(segment_base);
126
Carsten Otte6866b832007-10-29 16:09:10 +0100127u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
128{
129 if (irqchip_in_kernel(vcpu->kvm))
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800130 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100131 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800132 return vcpu->arch.apic_base;
Carsten Otte6866b832007-10-29 16:09:10 +0100133}
134EXPORT_SYMBOL_GPL(kvm_get_apic_base);
135
136void kvm_set_apic_base(struct kvm_vcpu *vcpu, u64 data)
137{
138 /* TODO: reserve bits check */
139 if (irqchip_in_kernel(vcpu->kvm))
140 kvm_lapic_set_base(vcpu, data);
141 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800142 vcpu->arch.apic_base = data;
Carsten Otte6866b832007-10-29 16:09:10 +0100143}
144EXPORT_SYMBOL_GPL(kvm_set_apic_base);
145
Avi Kivity298101d2007-11-25 13:41:11 +0200146void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
147{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800148 WARN_ON(vcpu->arch.exception.pending);
149 vcpu->arch.exception.pending = true;
150 vcpu->arch.exception.has_error_code = false;
151 vcpu->arch.exception.nr = nr;
Avi Kivity298101d2007-11-25 13:41:11 +0200152}
153EXPORT_SYMBOL_GPL(kvm_queue_exception);
154
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200155void kvm_inject_page_fault(struct kvm_vcpu *vcpu, unsigned long addr,
156 u32 error_code)
157{
158 ++vcpu->stat.pf_guest;
Joerg Roedel71c4dfa2008-02-26 16:49:16 +0100159 if (vcpu->arch.exception.pending) {
160 if (vcpu->arch.exception.nr == PF_VECTOR) {
161 printk(KERN_DEBUG "kvm: inject_page_fault:"
162 " double fault 0x%lx\n", addr);
163 vcpu->arch.exception.nr = DF_VECTOR;
164 vcpu->arch.exception.error_code = 0;
165 } else if (vcpu->arch.exception.nr == DF_VECTOR) {
166 /* triple fault -> shutdown */
167 set_bit(KVM_REQ_TRIPLE_FAULT, &vcpu->requests);
168 }
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200169 return;
170 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800171 vcpu->arch.cr2 = addr;
Avi Kivityc3c91fe2007-11-25 14:04:58 +0200172 kvm_queue_exception_e(vcpu, PF_VECTOR, error_code);
173}
174
Avi Kivity298101d2007-11-25 13:41:11 +0200175void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
176{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800177 WARN_ON(vcpu->arch.exception.pending);
178 vcpu->arch.exception.pending = true;
179 vcpu->arch.exception.has_error_code = true;
180 vcpu->arch.exception.nr = nr;
181 vcpu->arch.exception.error_code = error_code;
Avi Kivity298101d2007-11-25 13:41:11 +0200182}
183EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
184
185static void __queue_exception(struct kvm_vcpu *vcpu)
186{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800187 kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr,
188 vcpu->arch.exception.has_error_code,
189 vcpu->arch.exception.error_code);
Avi Kivity298101d2007-11-25 13:41:11 +0200190}
191
Carsten Ottea03490e2007-10-29 16:09:35 +0100192/*
193 * Load the pae pdptrs. Return true is they are all valid.
194 */
195int load_pdptrs(struct kvm_vcpu *vcpu, unsigned long cr3)
196{
197 gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
198 unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
199 int i;
200 int ret;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800201 u64 pdpte[ARRAY_SIZE(vcpu->arch.pdptrs)];
Carsten Ottea03490e2007-10-29 16:09:35 +0100202
Izik Eidus72dc67a2008-02-10 18:04:15 +0200203 down_read(&vcpu->kvm->slots_lock);
Carsten Ottea03490e2007-10-29 16:09:35 +0100204 ret = kvm_read_guest_page(vcpu->kvm, pdpt_gfn, pdpte,
205 offset * sizeof(u64), sizeof(pdpte));
206 if (ret < 0) {
207 ret = 0;
208 goto out;
209 }
210 for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
211 if ((pdpte[i] & 1) && (pdpte[i] & 0xfffffff0000001e6ull)) {
212 ret = 0;
213 goto out;
214 }
215 }
216 ret = 1;
217
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800218 memcpy(vcpu->arch.pdptrs, pdpte, sizeof(vcpu->arch.pdptrs));
Carsten Ottea03490e2007-10-29 16:09:35 +0100219out:
Izik Eidus72dc67a2008-02-10 18:04:15 +0200220 up_read(&vcpu->kvm->slots_lock);
Carsten Ottea03490e2007-10-29 16:09:35 +0100221
222 return ret;
223}
Joerg Roedelcc4b6872008-02-07 13:47:43 +0100224EXPORT_SYMBOL_GPL(load_pdptrs);
Carsten Ottea03490e2007-10-29 16:09:35 +0100225
Avi Kivityd835dfe2007-11-21 02:57:59 +0200226static bool pdptrs_changed(struct kvm_vcpu *vcpu)
227{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800228 u64 pdpte[ARRAY_SIZE(vcpu->arch.pdptrs)];
Avi Kivityd835dfe2007-11-21 02:57:59 +0200229 bool changed = true;
230 int r;
231
232 if (is_long_mode(vcpu) || !is_pae(vcpu))
233 return false;
234
Izik Eidus72dc67a2008-02-10 18:04:15 +0200235 down_read(&vcpu->kvm->slots_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800236 r = kvm_read_guest(vcpu->kvm, vcpu->arch.cr3 & ~31u, pdpte, sizeof(pdpte));
Avi Kivityd835dfe2007-11-21 02:57:59 +0200237 if (r < 0)
238 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800239 changed = memcmp(pdpte, vcpu->arch.pdptrs, sizeof(pdpte)) != 0;
Avi Kivityd835dfe2007-11-21 02:57:59 +0200240out:
Izik Eidus72dc67a2008-02-10 18:04:15 +0200241 up_read(&vcpu->kvm->slots_lock);
Avi Kivityd835dfe2007-11-21 02:57:59 +0200242
243 return changed;
244}
245
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200246void kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
Carsten Ottea03490e2007-10-29 16:09:35 +0100247{
248 if (cr0 & CR0_RESERVED_BITS) {
249 printk(KERN_DEBUG "set_cr0: 0x%lx #GP, reserved bits 0x%lx\n",
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800250 cr0, vcpu->arch.cr0);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200251 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100252 return;
253 }
254
255 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD)) {
256 printk(KERN_DEBUG "set_cr0: #GP, CD == 0 && NW == 1\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200257 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100258 return;
259 }
260
261 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE)) {
262 printk(KERN_DEBUG "set_cr0: #GP, set PG flag "
263 "and a clear PE flag\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200264 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100265 return;
266 }
267
268 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
269#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800270 if ((vcpu->arch.shadow_efer & EFER_LME)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100271 int cs_db, cs_l;
272
273 if (!is_pae(vcpu)) {
274 printk(KERN_DEBUG "set_cr0: #GP, start paging "
275 "in long mode while PAE is disabled\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200276 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100277 return;
278 }
279 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
280 if (cs_l) {
281 printk(KERN_DEBUG "set_cr0: #GP, start paging "
282 "in long mode while CS.L == 1\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200283 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100284 return;
285
286 }
287 } else
288#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800289 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.cr3)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100290 printk(KERN_DEBUG "set_cr0: #GP, pdptrs "
291 "reserved bits\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200292 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100293 return;
294 }
295
296 }
297
298 kvm_x86_ops->set_cr0(vcpu, cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800299 vcpu->arch.cr0 = cr0;
Carsten Ottea03490e2007-10-29 16:09:35 +0100300
Carsten Ottea03490e2007-10-29 16:09:35 +0100301 kvm_mmu_reset_context(vcpu);
Carsten Ottea03490e2007-10-29 16:09:35 +0100302 return;
303}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200304EXPORT_SYMBOL_GPL(kvm_set_cr0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100305
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200306void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
Carsten Ottea03490e2007-10-29 16:09:35 +0100307{
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200308 kvm_set_cr0(vcpu, (vcpu->arch.cr0 & ~0x0ful) | (msw & 0x0f));
Carsten Ottea03490e2007-10-29 16:09:35 +0100309}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200310EXPORT_SYMBOL_GPL(kvm_lmsw);
Carsten Ottea03490e2007-10-29 16:09:35 +0100311
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200312void kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Carsten Ottea03490e2007-10-29 16:09:35 +0100313{
314 if (cr4 & CR4_RESERVED_BITS) {
315 printk(KERN_DEBUG "set_cr4: #GP, reserved bits\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200316 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100317 return;
318 }
319
320 if (is_long_mode(vcpu)) {
321 if (!(cr4 & X86_CR4_PAE)) {
322 printk(KERN_DEBUG "set_cr4: #GP, clearing PAE while "
323 "in long mode\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200324 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100325 return;
326 }
327 } else if (is_paging(vcpu) && !is_pae(vcpu) && (cr4 & X86_CR4_PAE)
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800328 && !load_pdptrs(vcpu, vcpu->arch.cr3)) {
Carsten Ottea03490e2007-10-29 16:09:35 +0100329 printk(KERN_DEBUG "set_cr4: #GP, pdptrs reserved bits\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200330 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100331 return;
332 }
333
334 if (cr4 & X86_CR4_VMXE) {
335 printk(KERN_DEBUG "set_cr4: #GP, setting VMXE\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200336 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100337 return;
338 }
339 kvm_x86_ops->set_cr4(vcpu, cr4);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800340 vcpu->arch.cr4 = cr4;
Carsten Ottea03490e2007-10-29 16:09:35 +0100341 kvm_mmu_reset_context(vcpu);
Carsten Ottea03490e2007-10-29 16:09:35 +0100342}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200343EXPORT_SYMBOL_GPL(kvm_set_cr4);
Carsten Ottea03490e2007-10-29 16:09:35 +0100344
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200345void kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
Carsten Ottea03490e2007-10-29 16:09:35 +0100346{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800347 if (cr3 == vcpu->arch.cr3 && !pdptrs_changed(vcpu)) {
Avi Kivityd835dfe2007-11-21 02:57:59 +0200348 kvm_mmu_flush_tlb(vcpu);
349 return;
350 }
351
Carsten Ottea03490e2007-10-29 16:09:35 +0100352 if (is_long_mode(vcpu)) {
353 if (cr3 & CR3_L_MODE_RESERVED_BITS) {
354 printk(KERN_DEBUG "set_cr3: #GP, reserved bits\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200355 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100356 return;
357 }
358 } else {
359 if (is_pae(vcpu)) {
360 if (cr3 & CR3_PAE_RESERVED_BITS) {
361 printk(KERN_DEBUG
362 "set_cr3: #GP, reserved bits\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200363 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100364 return;
365 }
366 if (is_paging(vcpu) && !load_pdptrs(vcpu, cr3)) {
367 printk(KERN_DEBUG "set_cr3: #GP, pdptrs "
368 "reserved bits\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200369 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100370 return;
371 }
372 }
373 /*
374 * We don't check reserved bits in nonpae mode, because
375 * this isn't enforced, and VMware depends on this.
376 */
377 }
378
Izik Eidus72dc67a2008-02-10 18:04:15 +0200379 down_read(&vcpu->kvm->slots_lock);
Carsten Ottea03490e2007-10-29 16:09:35 +0100380 /*
381 * Does the new cr3 value map to physical memory? (Note, we
382 * catch an invalid cr3 even in real-mode, because it would
383 * cause trouble later on when we turn on paging anyway.)
384 *
385 * A real CPU would silently accept an invalid cr3 and would
386 * attempt to use it - with largely undefined (and often hard
387 * to debug) behavior on the guest side.
388 */
389 if (unlikely(!gfn_to_memslot(vcpu->kvm, cr3 >> PAGE_SHIFT)))
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200390 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100391 else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800392 vcpu->arch.cr3 = cr3;
393 vcpu->arch.mmu.new_cr3(vcpu);
Carsten Ottea03490e2007-10-29 16:09:35 +0100394 }
Izik Eidus72dc67a2008-02-10 18:04:15 +0200395 up_read(&vcpu->kvm->slots_lock);
Carsten Ottea03490e2007-10-29 16:09:35 +0100396}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200397EXPORT_SYMBOL_GPL(kvm_set_cr3);
Carsten Ottea03490e2007-10-29 16:09:35 +0100398
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200399void kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
Carsten Ottea03490e2007-10-29 16:09:35 +0100400{
401 if (cr8 & CR8_RESERVED_BITS) {
402 printk(KERN_DEBUG "set_cr8: #GP, reserved bits 0x%lx\n", cr8);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200403 kvm_inject_gp(vcpu, 0);
Carsten Ottea03490e2007-10-29 16:09:35 +0100404 return;
405 }
406 if (irqchip_in_kernel(vcpu->kvm))
407 kvm_lapic_set_tpr(vcpu, cr8);
408 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800409 vcpu->arch.cr8 = cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +0100410}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200411EXPORT_SYMBOL_GPL(kvm_set_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100412
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200413unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
Carsten Ottea03490e2007-10-29 16:09:35 +0100414{
415 if (irqchip_in_kernel(vcpu->kvm))
416 return kvm_lapic_get_cr8(vcpu);
417 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800418 return vcpu->arch.cr8;
Carsten Ottea03490e2007-10-29 16:09:35 +0100419}
Avi Kivity2d3ad1f2008-02-24 11:20:43 +0200420EXPORT_SYMBOL_GPL(kvm_get_cr8);
Carsten Ottea03490e2007-10-29 16:09:35 +0100421
Carsten Otte043405e2007-10-10 17:16:19 +0200422/*
423 * List of msr numbers which we expose to userspace through KVM_GET_MSRS
424 * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
425 *
426 * This list is modified at module load time to reflect the
427 * capabilities of the host cpu.
428 */
429static u32 msrs_to_save[] = {
430 MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
431 MSR_K6_STAR,
432#ifdef CONFIG_X86_64
433 MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
434#endif
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200435 MSR_IA32_TIME_STAMP_COUNTER, MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
Alexander Graf847f0ad2008-02-21 12:11:01 +0100436 MSR_IA32_PERF_STATUS,
Carsten Otte043405e2007-10-10 17:16:19 +0200437};
438
439static unsigned num_msrs_to_save;
440
441static u32 emulated_msrs[] = {
442 MSR_IA32_MISC_ENABLE,
443};
444
Carsten Otte15c4a642007-10-30 18:44:17 +0100445static void set_efer(struct kvm_vcpu *vcpu, u64 efer)
446{
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +0100447 if (efer & efer_reserved_bits) {
Carsten Otte15c4a642007-10-30 18:44:17 +0100448 printk(KERN_DEBUG "set_efer: 0x%llx #GP, reserved bits\n",
449 efer);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200450 kvm_inject_gp(vcpu, 0);
Carsten Otte15c4a642007-10-30 18:44:17 +0100451 return;
452 }
453
454 if (is_paging(vcpu)
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800455 && (vcpu->arch.shadow_efer & EFER_LME) != (efer & EFER_LME)) {
Carsten Otte15c4a642007-10-30 18:44:17 +0100456 printk(KERN_DEBUG "set_efer: #GP, change LME while paging\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +0200457 kvm_inject_gp(vcpu, 0);
Carsten Otte15c4a642007-10-30 18:44:17 +0100458 return;
459 }
460
461 kvm_x86_ops->set_efer(vcpu, efer);
462
463 efer &= ~EFER_LMA;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800464 efer |= vcpu->arch.shadow_efer & EFER_LMA;
Carsten Otte15c4a642007-10-30 18:44:17 +0100465
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800466 vcpu->arch.shadow_efer = efer;
Carsten Otte15c4a642007-10-30 18:44:17 +0100467}
468
Joerg Roedelf2b4b7d2008-01-31 14:57:37 +0100469void kvm_enable_efer_bits(u64 mask)
470{
471 efer_reserved_bits &= ~mask;
472}
473EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
474
475
Carsten Otte15c4a642007-10-30 18:44:17 +0100476/*
477 * Writes msr value into into the appropriate "register".
478 * Returns 0 on success, non-0 otherwise.
479 * Assumes vcpu_load() was already called.
480 */
481int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
482{
483 return kvm_x86_ops->set_msr(vcpu, msr_index, data);
484}
485
Carsten Otte313a3dc2007-10-11 19:16:52 +0200486/*
487 * Adapt set_msr() to msr_io()'s calling convention
488 */
489static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
490{
491 return kvm_set_msr(vcpu, index, *data);
492}
493
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200494static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
495{
496 static int version;
497 struct kvm_wall_clock wc;
498 struct timespec wc_ts;
499
500 if (!wall_clock)
501 return;
502
503 version++;
504
505 down_read(&kvm->slots_lock);
506 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
507
508 wc_ts = current_kernel_time();
509 wc.wc_sec = wc_ts.tv_sec;
510 wc.wc_nsec = wc_ts.tv_nsec;
511 wc.wc_version = version;
512
513 kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
514
515 version++;
516 kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
517 up_read(&kvm->slots_lock);
518}
519
520static void kvm_write_guest_time(struct kvm_vcpu *v)
521{
522 struct timespec ts;
523 unsigned long flags;
524 struct kvm_vcpu_arch *vcpu = &v->arch;
525 void *shared_kaddr;
526
527 if ((!vcpu->time_page))
528 return;
529
530 /* Keep irq disabled to prevent changes to the clock */
531 local_irq_save(flags);
532 kvm_get_msr(v, MSR_IA32_TIME_STAMP_COUNTER,
533 &vcpu->hv_clock.tsc_timestamp);
534 ktime_get_ts(&ts);
535 local_irq_restore(flags);
536
537 /* With all the info we got, fill in the values */
538
539 vcpu->hv_clock.system_time = ts.tv_nsec +
540 (NSEC_PER_SEC * (u64)ts.tv_sec);
541 /*
542 * The interface expects us to write an even number signaling that the
543 * update is finished. Since the guest won't see the intermediate
544 * state, we just write "2" at the end
545 */
546 vcpu->hv_clock.version = 2;
547
548 shared_kaddr = kmap_atomic(vcpu->time_page, KM_USER0);
549
550 memcpy(shared_kaddr + vcpu->time_offset, &vcpu->hv_clock,
551 sizeof(vcpu->hv_clock));
552
553 kunmap_atomic(shared_kaddr, KM_USER0);
554
555 mark_page_dirty(v->kvm, vcpu->time >> PAGE_SHIFT);
556}
557
Carsten Otte15c4a642007-10-30 18:44:17 +0100558
559int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data)
560{
561 switch (msr) {
Carsten Otte15c4a642007-10-30 18:44:17 +0100562 case MSR_EFER:
563 set_efer(vcpu, data);
564 break;
Carsten Otte15c4a642007-10-30 18:44:17 +0100565 case MSR_IA32_MC0_STATUS:
566 pr_unimpl(vcpu, "%s: MSR_IA32_MC0_STATUS 0x%llx, nop\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800567 __func__, data);
Carsten Otte15c4a642007-10-30 18:44:17 +0100568 break;
569 case MSR_IA32_MCG_STATUS:
570 pr_unimpl(vcpu, "%s: MSR_IA32_MCG_STATUS 0x%llx, nop\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800571 __func__, data);
Carsten Otte15c4a642007-10-30 18:44:17 +0100572 break;
Joerg Roedelc7ac6792008-02-11 20:28:27 +0100573 case MSR_IA32_MCG_CTL:
574 pr_unimpl(vcpu, "%s: MSR_IA32_MCG_CTL 0x%llx, nop\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800575 __func__, data);
Joerg Roedelc7ac6792008-02-11 20:28:27 +0100576 break;
Carsten Otte15c4a642007-10-30 18:44:17 +0100577 case MSR_IA32_UCODE_REV:
578 case MSR_IA32_UCODE_WRITE:
579 case 0x200 ... 0x2ff: /* MTRRs */
580 break;
581 case MSR_IA32_APICBASE:
582 kvm_set_apic_base(vcpu, data);
583 break;
584 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800585 vcpu->arch.ia32_misc_enable_msr = data;
Carsten Otte15c4a642007-10-30 18:44:17 +0100586 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200587 case MSR_KVM_WALL_CLOCK:
588 vcpu->kvm->arch.wall_clock = data;
589 kvm_write_wall_clock(vcpu->kvm, data);
590 break;
591 case MSR_KVM_SYSTEM_TIME: {
592 if (vcpu->arch.time_page) {
593 kvm_release_page_dirty(vcpu->arch.time_page);
594 vcpu->arch.time_page = NULL;
595 }
596
597 vcpu->arch.time = data;
598
599 /* we verify if the enable bit is set... */
600 if (!(data & 1))
601 break;
602
603 /* ...but clean it before doing the actual write */
604 vcpu->arch.time_offset = data & ~(PAGE_MASK | 1);
605
606 vcpu->arch.hv_clock.tsc_to_system_mul =
607 clocksource_khz2mult(tsc_khz, 22);
608 vcpu->arch.hv_clock.tsc_shift = 22;
609
610 down_read(&current->mm->mmap_sem);
611 down_read(&vcpu->kvm->slots_lock);
612 vcpu->arch.time_page =
613 gfn_to_page(vcpu->kvm, data >> PAGE_SHIFT);
614 up_read(&vcpu->kvm->slots_lock);
615 up_read(&current->mm->mmap_sem);
616
617 if (is_error_page(vcpu->arch.time_page)) {
618 kvm_release_page_clean(vcpu->arch.time_page);
619 vcpu->arch.time_page = NULL;
620 }
621
622 kvm_write_guest_time(vcpu);
623 break;
624 }
Carsten Otte15c4a642007-10-30 18:44:17 +0100625 default:
Avi Kivity565f1fb2007-12-19 12:02:40 +0200626 pr_unimpl(vcpu, "unhandled wrmsr: 0x%x data %llx\n", msr, data);
Carsten Otte15c4a642007-10-30 18:44:17 +0100627 return 1;
628 }
629 return 0;
630}
631EXPORT_SYMBOL_GPL(kvm_set_msr_common);
632
633
634/*
635 * Reads an msr value (of 'msr_index') into 'pdata'.
636 * Returns 0 on success, non-0 otherwise.
637 * Assumes vcpu_load() was already called.
638 */
639int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
640{
641 return kvm_x86_ops->get_msr(vcpu, msr_index, pdata);
642}
643
644int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
645{
646 u64 data;
647
648 switch (msr) {
649 case 0xc0010010: /* SYSCFG */
650 case 0xc0010015: /* HWCR */
651 case MSR_IA32_PLATFORM_ID:
652 case MSR_IA32_P5_MC_ADDR:
653 case MSR_IA32_P5_MC_TYPE:
654 case MSR_IA32_MC0_CTL:
655 case MSR_IA32_MCG_STATUS:
656 case MSR_IA32_MCG_CAP:
Joerg Roedelc7ac6792008-02-11 20:28:27 +0100657 case MSR_IA32_MCG_CTL:
Carsten Otte15c4a642007-10-30 18:44:17 +0100658 case MSR_IA32_MC0_MISC:
659 case MSR_IA32_MC0_MISC+4:
660 case MSR_IA32_MC0_MISC+8:
661 case MSR_IA32_MC0_MISC+12:
662 case MSR_IA32_MC0_MISC+16:
663 case MSR_IA32_UCODE_REV:
Carsten Otte15c4a642007-10-30 18:44:17 +0100664 case MSR_IA32_EBL_CR_POWERON:
665 /* MTRR registers */
666 case 0xfe:
667 case 0x200 ... 0x2ff:
668 data = 0;
669 break;
670 case 0xcd: /* fsb frequency */
671 data = 3;
672 break;
673 case MSR_IA32_APICBASE:
674 data = kvm_get_apic_base(vcpu);
675 break;
676 case MSR_IA32_MISC_ENABLE:
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800677 data = vcpu->arch.ia32_misc_enable_msr;
Carsten Otte15c4a642007-10-30 18:44:17 +0100678 break;
Alexander Graf847f0ad2008-02-21 12:11:01 +0100679 case MSR_IA32_PERF_STATUS:
680 /* TSC increment by tick */
681 data = 1000ULL;
682 /* CPU multiplier */
683 data |= (((uint64_t)4ULL) << 40);
684 break;
Carsten Otte15c4a642007-10-30 18:44:17 +0100685 case MSR_EFER:
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800686 data = vcpu->arch.shadow_efer;
Carsten Otte15c4a642007-10-30 18:44:17 +0100687 break;
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200688 case MSR_KVM_WALL_CLOCK:
689 data = vcpu->kvm->arch.wall_clock;
690 break;
691 case MSR_KVM_SYSTEM_TIME:
692 data = vcpu->arch.time;
693 break;
Carsten Otte15c4a642007-10-30 18:44:17 +0100694 default:
695 pr_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr);
696 return 1;
697 }
698 *pdata = data;
699 return 0;
700}
701EXPORT_SYMBOL_GPL(kvm_get_msr_common);
702
Carsten Otte313a3dc2007-10-11 19:16:52 +0200703/*
704 * Read or write a bunch of msrs. All parameters are kernel addresses.
705 *
706 * @return number of msrs set successfully.
707 */
708static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
709 struct kvm_msr_entry *entries,
710 int (*do_msr)(struct kvm_vcpu *vcpu,
711 unsigned index, u64 *data))
712{
713 int i;
714
715 vcpu_load(vcpu);
716
717 for (i = 0; i < msrs->nmsrs; ++i)
718 if (do_msr(vcpu, entries[i].index, &entries[i].data))
719 break;
720
721 vcpu_put(vcpu);
722
723 return i;
724}
725
726/*
727 * Read or write a bunch of msrs. Parameters are user addresses.
728 *
729 * @return number of msrs set successfully.
730 */
731static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
732 int (*do_msr)(struct kvm_vcpu *vcpu,
733 unsigned index, u64 *data),
734 int writeback)
735{
736 struct kvm_msrs msrs;
737 struct kvm_msr_entry *entries;
738 int r, n;
739 unsigned size;
740
741 r = -EFAULT;
742 if (copy_from_user(&msrs, user_msrs, sizeof msrs))
743 goto out;
744
745 r = -E2BIG;
746 if (msrs.nmsrs >= MAX_IO_MSRS)
747 goto out;
748
749 r = -ENOMEM;
750 size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
751 entries = vmalloc(size);
752 if (!entries)
753 goto out;
754
755 r = -EFAULT;
756 if (copy_from_user(entries, user_msrs->entries, size))
757 goto out_free;
758
759 r = n = __msr_io(vcpu, &msrs, entries, do_msr);
760 if (r < 0)
761 goto out_free;
762
763 r = -EFAULT;
764 if (writeback && copy_to_user(user_msrs->entries, entries, size))
765 goto out_free;
766
767 r = n;
768
769out_free:
770 vfree(entries);
771out:
772 return r;
773}
774
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800775/*
776 * Make sure that a cpu that is being hot-unplugged does not have any vcpus
777 * cached on it.
778 */
779void decache_vcpus_on_cpu(int cpu)
780{
781 struct kvm *vm;
782 struct kvm_vcpu *vcpu;
783 int i;
784
785 spin_lock(&kvm_lock);
786 list_for_each_entry(vm, &vm_list, vm_list)
787 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
788 vcpu = vm->vcpus[i];
789 if (!vcpu)
790 continue;
791 /*
792 * If the vcpu is locked, then it is running on some
793 * other cpu and therefore it is not cached on the
794 * cpu in question.
795 *
796 * If it's not locked, check the last cpu it executed
797 * on.
798 */
799 if (mutex_trylock(&vcpu->mutex)) {
800 if (vcpu->cpu == cpu) {
801 kvm_x86_ops->vcpu_decache(vcpu);
802 vcpu->cpu = -1;
803 }
804 mutex_unlock(&vcpu->mutex);
805 }
806 }
807 spin_unlock(&kvm_lock);
808}
809
Zhang Xiantao018d00d2007-11-15 23:07:47 +0800810int kvm_dev_ioctl_check_extension(long ext)
811{
812 int r;
813
814 switch (ext) {
815 case KVM_CAP_IRQCHIP:
816 case KVM_CAP_HLT:
817 case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
818 case KVM_CAP_USER_MEMORY:
819 case KVM_CAP_SET_TSS_ADDR:
Dan Kenigsberg07716712007-11-21 17:10:04 +0200820 case KVM_CAP_EXT_CPUID:
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200821 case KVM_CAP_CLOCKSOURCE:
Sheng Yang78376992008-01-28 05:10:22 +0800822 case KVM_CAP_PIT:
Zhang Xiantao018d00d2007-11-15 23:07:47 +0800823 r = 1;
824 break;
Avi Kivity774ead32007-12-26 13:57:04 +0200825 case KVM_CAP_VAPIC:
826 r = !kvm_x86_ops->cpu_has_accelerated_tpr();
827 break;
Avi Kivityf7252302008-02-20 11:53:16 +0200828 case KVM_CAP_NR_VCPUS:
829 r = KVM_MAX_VCPUS;
830 break;
Avi Kivitya988b912008-02-20 11:59:20 +0200831 case KVM_CAP_NR_MEMSLOTS:
832 r = KVM_MEMORY_SLOTS;
833 break;
Zhang Xiantao018d00d2007-11-15 23:07:47 +0800834 default:
835 r = 0;
836 break;
837 }
838 return r;
839
840}
841
Carsten Otte043405e2007-10-10 17:16:19 +0200842long kvm_arch_dev_ioctl(struct file *filp,
843 unsigned int ioctl, unsigned long arg)
844{
845 void __user *argp = (void __user *)arg;
846 long r;
847
848 switch (ioctl) {
849 case KVM_GET_MSR_INDEX_LIST: {
850 struct kvm_msr_list __user *user_msr_list = argp;
851 struct kvm_msr_list msr_list;
852 unsigned n;
853
854 r = -EFAULT;
855 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
856 goto out;
857 n = msr_list.nmsrs;
858 msr_list.nmsrs = num_msrs_to_save + ARRAY_SIZE(emulated_msrs);
859 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
860 goto out;
861 r = -E2BIG;
862 if (n < num_msrs_to_save)
863 goto out;
864 r = -EFAULT;
865 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
866 num_msrs_to_save * sizeof(u32)))
867 goto out;
868 if (copy_to_user(user_msr_list->indices
869 + num_msrs_to_save * sizeof(u32),
870 &emulated_msrs,
871 ARRAY_SIZE(emulated_msrs) * sizeof(u32)))
872 goto out;
873 r = 0;
874 break;
875 }
Avi Kivity674eea02008-02-11 18:37:23 +0200876 case KVM_GET_SUPPORTED_CPUID: {
877 struct kvm_cpuid2 __user *cpuid_arg = argp;
878 struct kvm_cpuid2 cpuid;
879
880 r = -EFAULT;
881 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
882 goto out;
883 r = kvm_dev_ioctl_get_supported_cpuid(&cpuid,
884 cpuid_arg->entries);
885 if (r)
886 goto out;
887
888 r = -EFAULT;
889 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
890 goto out;
891 r = 0;
892 break;
893 }
Carsten Otte043405e2007-10-10 17:16:19 +0200894 default:
895 r = -EINVAL;
896 }
897out:
898 return r;
899}
900
Carsten Otte313a3dc2007-10-11 19:16:52 +0200901void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
902{
903 kvm_x86_ops->vcpu_load(vcpu, cpu);
Glauber de Oliveira Costa18068522008-02-15 17:52:47 -0200904 kvm_write_guest_time(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200905}
906
907void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
908{
909 kvm_x86_ops->vcpu_put(vcpu);
Amit Shah9327fd12007-11-15 18:38:46 +0200910 kvm_put_guest_fpu(vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200911}
912
Dan Kenigsberg07716712007-11-21 17:10:04 +0200913static int is_efer_nx(void)
Carsten Otte313a3dc2007-10-11 19:16:52 +0200914{
915 u64 efer;
Carsten Otte313a3dc2007-10-11 19:16:52 +0200916
917 rdmsrl(MSR_EFER, efer);
Dan Kenigsberg07716712007-11-21 17:10:04 +0200918 return efer & EFER_NX;
919}
920
921static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu)
922{
923 int i;
924 struct kvm_cpuid_entry2 *e, *entry;
925
Carsten Otte313a3dc2007-10-11 19:16:52 +0200926 entry = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800927 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
928 e = &vcpu->arch.cpuid_entries[i];
Carsten Otte313a3dc2007-10-11 19:16:52 +0200929 if (e->function == 0x80000001) {
930 entry = e;
931 break;
932 }
933 }
Dan Kenigsberg07716712007-11-21 17:10:04 +0200934 if (entry && (entry->edx & (1 << 20)) && !is_efer_nx()) {
Carsten Otte313a3dc2007-10-11 19:16:52 +0200935 entry->edx &= ~(1 << 20);
936 printk(KERN_INFO "kvm: guest NX capability removed\n");
937 }
938}
939
Dan Kenigsberg07716712007-11-21 17:10:04 +0200940/* when an old userspace process fills a new kernel module */
Carsten Otte313a3dc2007-10-11 19:16:52 +0200941static int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
942 struct kvm_cpuid *cpuid,
943 struct kvm_cpuid_entry __user *entries)
944{
Dan Kenigsberg07716712007-11-21 17:10:04 +0200945 int r, i;
946 struct kvm_cpuid_entry *cpuid_entries;
947
948 r = -E2BIG;
949 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
950 goto out;
951 r = -ENOMEM;
952 cpuid_entries = vmalloc(sizeof(struct kvm_cpuid_entry) * cpuid->nent);
953 if (!cpuid_entries)
954 goto out;
955 r = -EFAULT;
956 if (copy_from_user(cpuid_entries, entries,
957 cpuid->nent * sizeof(struct kvm_cpuid_entry)))
958 goto out_free;
959 for (i = 0; i < cpuid->nent; i++) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800960 vcpu->arch.cpuid_entries[i].function = cpuid_entries[i].function;
961 vcpu->arch.cpuid_entries[i].eax = cpuid_entries[i].eax;
962 vcpu->arch.cpuid_entries[i].ebx = cpuid_entries[i].ebx;
963 vcpu->arch.cpuid_entries[i].ecx = cpuid_entries[i].ecx;
964 vcpu->arch.cpuid_entries[i].edx = cpuid_entries[i].edx;
965 vcpu->arch.cpuid_entries[i].index = 0;
966 vcpu->arch.cpuid_entries[i].flags = 0;
967 vcpu->arch.cpuid_entries[i].padding[0] = 0;
968 vcpu->arch.cpuid_entries[i].padding[1] = 0;
969 vcpu->arch.cpuid_entries[i].padding[2] = 0;
Dan Kenigsberg07716712007-11-21 17:10:04 +0200970 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800971 vcpu->arch.cpuid_nent = cpuid->nent;
Dan Kenigsberg07716712007-11-21 17:10:04 +0200972 cpuid_fix_nx_cap(vcpu);
973 r = 0;
974
975out_free:
976 vfree(cpuid_entries);
977out:
978 return r;
979}
980
981static int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu,
982 struct kvm_cpuid2 *cpuid,
983 struct kvm_cpuid_entry2 __user *entries)
984{
Carsten Otte313a3dc2007-10-11 19:16:52 +0200985 int r;
986
987 r = -E2BIG;
988 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
989 goto out;
990 r = -EFAULT;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800991 if (copy_from_user(&vcpu->arch.cpuid_entries, entries,
Dan Kenigsberg07716712007-11-21 17:10:04 +0200992 cpuid->nent * sizeof(struct kvm_cpuid_entry2)))
Carsten Otte313a3dc2007-10-11 19:16:52 +0200993 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800994 vcpu->arch.cpuid_nent = cpuid->nent;
Carsten Otte313a3dc2007-10-11 19:16:52 +0200995 return 0;
996
997out:
998 return r;
999}
1000
Dan Kenigsberg07716712007-11-21 17:10:04 +02001001static int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu,
1002 struct kvm_cpuid2 *cpuid,
1003 struct kvm_cpuid_entry2 __user *entries)
1004{
1005 int r;
1006
1007 r = -E2BIG;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001008 if (cpuid->nent < vcpu->arch.cpuid_nent)
Dan Kenigsberg07716712007-11-21 17:10:04 +02001009 goto out;
1010 r = -EFAULT;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001011 if (copy_to_user(entries, &vcpu->arch.cpuid_entries,
1012 vcpu->arch.cpuid_nent * sizeof(struct kvm_cpuid_entry2)))
Dan Kenigsberg07716712007-11-21 17:10:04 +02001013 goto out;
1014 return 0;
1015
1016out:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001017 cpuid->nent = vcpu->arch.cpuid_nent;
Dan Kenigsberg07716712007-11-21 17:10:04 +02001018 return r;
1019}
1020
1021static inline u32 bit(int bitno)
1022{
1023 return 1 << (bitno & 31);
1024}
1025
1026static void do_cpuid_1_ent(struct kvm_cpuid_entry2 *entry, u32 function,
1027 u32 index)
1028{
1029 entry->function = function;
1030 entry->index = index;
1031 cpuid_count(entry->function, entry->index,
1032 &entry->eax, &entry->ebx, &entry->ecx, &entry->edx);
1033 entry->flags = 0;
1034}
1035
1036static void do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function,
1037 u32 index, int *nent, int maxnent)
1038{
1039 const u32 kvm_supported_word0_x86_features = bit(X86_FEATURE_FPU) |
1040 bit(X86_FEATURE_VME) | bit(X86_FEATURE_DE) |
1041 bit(X86_FEATURE_PSE) | bit(X86_FEATURE_TSC) |
1042 bit(X86_FEATURE_MSR) | bit(X86_FEATURE_PAE) |
1043 bit(X86_FEATURE_CX8) | bit(X86_FEATURE_APIC) |
1044 bit(X86_FEATURE_SEP) | bit(X86_FEATURE_PGE) |
1045 bit(X86_FEATURE_CMOV) | bit(X86_FEATURE_PSE36) |
1046 bit(X86_FEATURE_CLFLSH) | bit(X86_FEATURE_MMX) |
1047 bit(X86_FEATURE_FXSR) | bit(X86_FEATURE_XMM) |
1048 bit(X86_FEATURE_XMM2) | bit(X86_FEATURE_SELFSNOOP);
1049 const u32 kvm_supported_word1_x86_features = bit(X86_FEATURE_FPU) |
1050 bit(X86_FEATURE_VME) | bit(X86_FEATURE_DE) |
1051 bit(X86_FEATURE_PSE) | bit(X86_FEATURE_TSC) |
1052 bit(X86_FEATURE_MSR) | bit(X86_FEATURE_PAE) |
1053 bit(X86_FEATURE_CX8) | bit(X86_FEATURE_APIC) |
1054 bit(X86_FEATURE_PGE) |
1055 bit(X86_FEATURE_CMOV) | bit(X86_FEATURE_PSE36) |
1056 bit(X86_FEATURE_MMX) | bit(X86_FEATURE_FXSR) |
1057 bit(X86_FEATURE_SYSCALL) |
1058 (bit(X86_FEATURE_NX) && is_efer_nx()) |
1059#ifdef CONFIG_X86_64
1060 bit(X86_FEATURE_LM) |
1061#endif
1062 bit(X86_FEATURE_MMXEXT) |
1063 bit(X86_FEATURE_3DNOWEXT) |
1064 bit(X86_FEATURE_3DNOW);
1065 const u32 kvm_supported_word3_x86_features =
1066 bit(X86_FEATURE_XMM3) | bit(X86_FEATURE_CX16);
1067 const u32 kvm_supported_word6_x86_features =
1068 bit(X86_FEATURE_LAHF_LM) | bit(X86_FEATURE_CMP_LEGACY);
1069
1070 /* all func 2 cpuid_count() should be called on the same cpu */
1071 get_cpu();
1072 do_cpuid_1_ent(entry, function, index);
1073 ++*nent;
1074
1075 switch (function) {
1076 case 0:
1077 entry->eax = min(entry->eax, (u32)0xb);
1078 break;
1079 case 1:
1080 entry->edx &= kvm_supported_word0_x86_features;
1081 entry->ecx &= kvm_supported_word3_x86_features;
1082 break;
1083 /* function 2 entries are STATEFUL. That is, repeated cpuid commands
1084 * may return different values. This forces us to get_cpu() before
1085 * issuing the first command, and also to emulate this annoying behavior
1086 * in kvm_emulate_cpuid() using KVM_CPUID_FLAG_STATE_READ_NEXT */
1087 case 2: {
1088 int t, times = entry->eax & 0xff;
1089
1090 entry->flags |= KVM_CPUID_FLAG_STATEFUL_FUNC;
1091 for (t = 1; t < times && *nent < maxnent; ++t) {
1092 do_cpuid_1_ent(&entry[t], function, 0);
1093 entry[t].flags |= KVM_CPUID_FLAG_STATEFUL_FUNC;
1094 ++*nent;
1095 }
1096 break;
1097 }
1098 /* function 4 and 0xb have additional index. */
1099 case 4: {
Harvey Harrison14af3f32008-02-19 10:25:50 -08001100 int i, cache_type;
Dan Kenigsberg07716712007-11-21 17:10:04 +02001101
1102 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
1103 /* read more entries until cache_type is zero */
Harvey Harrison14af3f32008-02-19 10:25:50 -08001104 for (i = 1; *nent < maxnent; ++i) {
1105 cache_type = entry[i - 1].eax & 0x1f;
Dan Kenigsberg07716712007-11-21 17:10:04 +02001106 if (!cache_type)
1107 break;
Harvey Harrison14af3f32008-02-19 10:25:50 -08001108 do_cpuid_1_ent(&entry[i], function, i);
1109 entry[i].flags |=
Dan Kenigsberg07716712007-11-21 17:10:04 +02001110 KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
1111 ++*nent;
1112 }
1113 break;
1114 }
1115 case 0xb: {
Harvey Harrison14af3f32008-02-19 10:25:50 -08001116 int i, level_type;
Dan Kenigsberg07716712007-11-21 17:10:04 +02001117
1118 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
1119 /* read more entries until level_type is zero */
Harvey Harrison14af3f32008-02-19 10:25:50 -08001120 for (i = 1; *nent < maxnent; ++i) {
1121 level_type = entry[i - 1].ecx & 0xff;
Dan Kenigsberg07716712007-11-21 17:10:04 +02001122 if (!level_type)
1123 break;
Harvey Harrison14af3f32008-02-19 10:25:50 -08001124 do_cpuid_1_ent(&entry[i], function, i);
1125 entry[i].flags |=
Dan Kenigsberg07716712007-11-21 17:10:04 +02001126 KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
1127 ++*nent;
1128 }
1129 break;
1130 }
1131 case 0x80000000:
1132 entry->eax = min(entry->eax, 0x8000001a);
1133 break;
1134 case 0x80000001:
1135 entry->edx &= kvm_supported_word1_x86_features;
1136 entry->ecx &= kvm_supported_word6_x86_features;
1137 break;
1138 }
1139 put_cpu();
1140}
1141
Avi Kivity674eea02008-02-11 18:37:23 +02001142static int kvm_dev_ioctl_get_supported_cpuid(struct kvm_cpuid2 *cpuid,
Dan Kenigsberg07716712007-11-21 17:10:04 +02001143 struct kvm_cpuid_entry2 __user *entries)
1144{
1145 struct kvm_cpuid_entry2 *cpuid_entries;
1146 int limit, nent = 0, r = -E2BIG;
1147 u32 func;
1148
1149 if (cpuid->nent < 1)
1150 goto out;
1151 r = -ENOMEM;
1152 cpuid_entries = vmalloc(sizeof(struct kvm_cpuid_entry2) * cpuid->nent);
1153 if (!cpuid_entries)
1154 goto out;
1155
1156 do_cpuid_ent(&cpuid_entries[0], 0, 0, &nent, cpuid->nent);
1157 limit = cpuid_entries[0].eax;
1158 for (func = 1; func <= limit && nent < cpuid->nent; ++func)
1159 do_cpuid_ent(&cpuid_entries[nent], func, 0,
1160 &nent, cpuid->nent);
1161 r = -E2BIG;
1162 if (nent >= cpuid->nent)
1163 goto out_free;
1164
1165 do_cpuid_ent(&cpuid_entries[nent], 0x80000000, 0, &nent, cpuid->nent);
1166 limit = cpuid_entries[nent - 1].eax;
1167 for (func = 0x80000001; func <= limit && nent < cpuid->nent; ++func)
1168 do_cpuid_ent(&cpuid_entries[nent], func, 0,
1169 &nent, cpuid->nent);
1170 r = -EFAULT;
1171 if (copy_to_user(entries, cpuid_entries,
1172 nent * sizeof(struct kvm_cpuid_entry2)))
1173 goto out_free;
1174 cpuid->nent = nent;
1175 r = 0;
1176
1177out_free:
1178 vfree(cpuid_entries);
1179out:
1180 return r;
1181}
1182
Carsten Otte313a3dc2007-10-11 19:16:52 +02001183static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
1184 struct kvm_lapic_state *s)
1185{
1186 vcpu_load(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001187 memcpy(s->regs, vcpu->arch.apic->regs, sizeof *s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02001188 vcpu_put(vcpu);
1189
1190 return 0;
1191}
1192
1193static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
1194 struct kvm_lapic_state *s)
1195{
1196 vcpu_load(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001197 memcpy(vcpu->arch.apic->regs, s->regs, sizeof *s);
Carsten Otte313a3dc2007-10-11 19:16:52 +02001198 kvm_apic_post_state_restore(vcpu);
1199 vcpu_put(vcpu);
1200
1201 return 0;
1202}
1203
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08001204static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
1205 struct kvm_interrupt *irq)
1206{
1207 if (irq->irq < 0 || irq->irq >= 256)
1208 return -EINVAL;
1209 if (irqchip_in_kernel(vcpu->kvm))
1210 return -ENXIO;
1211 vcpu_load(vcpu);
1212
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001213 set_bit(irq->irq, vcpu->arch.irq_pending);
1214 set_bit(irq->irq / BITS_PER_LONG, &vcpu->arch.irq_summary);
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08001215
1216 vcpu_put(vcpu);
1217
1218 return 0;
1219}
1220
Avi Kivityb209749f2007-10-22 16:50:39 +02001221static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
1222 struct kvm_tpr_access_ctl *tac)
1223{
1224 if (tac->flags)
1225 return -EINVAL;
1226 vcpu->arch.tpr_access_reporting = !!tac->enabled;
1227 return 0;
1228}
1229
Carsten Otte313a3dc2007-10-11 19:16:52 +02001230long kvm_arch_vcpu_ioctl(struct file *filp,
1231 unsigned int ioctl, unsigned long arg)
1232{
1233 struct kvm_vcpu *vcpu = filp->private_data;
1234 void __user *argp = (void __user *)arg;
1235 int r;
1236
1237 switch (ioctl) {
1238 case KVM_GET_LAPIC: {
1239 struct kvm_lapic_state lapic;
1240
1241 memset(&lapic, 0, sizeof lapic);
1242 r = kvm_vcpu_ioctl_get_lapic(vcpu, &lapic);
1243 if (r)
1244 goto out;
1245 r = -EFAULT;
1246 if (copy_to_user(argp, &lapic, sizeof lapic))
1247 goto out;
1248 r = 0;
1249 break;
1250 }
1251 case KVM_SET_LAPIC: {
1252 struct kvm_lapic_state lapic;
1253
1254 r = -EFAULT;
1255 if (copy_from_user(&lapic, argp, sizeof lapic))
1256 goto out;
1257 r = kvm_vcpu_ioctl_set_lapic(vcpu, &lapic);;
1258 if (r)
1259 goto out;
1260 r = 0;
1261 break;
1262 }
Zhang Xiantaof77bc6a2007-11-21 04:36:41 +08001263 case KVM_INTERRUPT: {
1264 struct kvm_interrupt irq;
1265
1266 r = -EFAULT;
1267 if (copy_from_user(&irq, argp, sizeof irq))
1268 goto out;
1269 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
1270 if (r)
1271 goto out;
1272 r = 0;
1273 break;
1274 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02001275 case KVM_SET_CPUID: {
1276 struct kvm_cpuid __user *cpuid_arg = argp;
1277 struct kvm_cpuid cpuid;
1278
1279 r = -EFAULT;
1280 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
1281 goto out;
1282 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
1283 if (r)
1284 goto out;
1285 break;
1286 }
Dan Kenigsberg07716712007-11-21 17:10:04 +02001287 case KVM_SET_CPUID2: {
1288 struct kvm_cpuid2 __user *cpuid_arg = argp;
1289 struct kvm_cpuid2 cpuid;
1290
1291 r = -EFAULT;
1292 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
1293 goto out;
1294 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
1295 cpuid_arg->entries);
1296 if (r)
1297 goto out;
1298 break;
1299 }
1300 case KVM_GET_CPUID2: {
1301 struct kvm_cpuid2 __user *cpuid_arg = argp;
1302 struct kvm_cpuid2 cpuid;
1303
1304 r = -EFAULT;
1305 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
1306 goto out;
1307 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
1308 cpuid_arg->entries);
1309 if (r)
1310 goto out;
1311 r = -EFAULT;
1312 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
1313 goto out;
1314 r = 0;
1315 break;
1316 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02001317 case KVM_GET_MSRS:
1318 r = msr_io(vcpu, argp, kvm_get_msr, 1);
1319 break;
1320 case KVM_SET_MSRS:
1321 r = msr_io(vcpu, argp, do_set_msr, 0);
1322 break;
Avi Kivityb209749f2007-10-22 16:50:39 +02001323 case KVM_TPR_ACCESS_REPORTING: {
1324 struct kvm_tpr_access_ctl tac;
1325
1326 r = -EFAULT;
1327 if (copy_from_user(&tac, argp, sizeof tac))
1328 goto out;
1329 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
1330 if (r)
1331 goto out;
1332 r = -EFAULT;
1333 if (copy_to_user(argp, &tac, sizeof tac))
1334 goto out;
1335 r = 0;
1336 break;
1337 };
Avi Kivityb93463a2007-10-25 16:52:32 +02001338 case KVM_SET_VAPIC_ADDR: {
1339 struct kvm_vapic_addr va;
1340
1341 r = -EINVAL;
1342 if (!irqchip_in_kernel(vcpu->kvm))
1343 goto out;
1344 r = -EFAULT;
1345 if (copy_from_user(&va, argp, sizeof va))
1346 goto out;
1347 r = 0;
1348 kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
1349 break;
1350 }
Carsten Otte313a3dc2007-10-11 19:16:52 +02001351 default:
1352 r = -EINVAL;
1353 }
1354out:
1355 return r;
1356}
1357
Carsten Otte1fe779f2007-10-29 16:08:35 +01001358static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
1359{
1360 int ret;
1361
1362 if (addr > (unsigned int)(-3 * PAGE_SIZE))
1363 return -1;
1364 ret = kvm_x86_ops->set_tss_addr(kvm, addr);
1365 return ret;
1366}
1367
1368static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
1369 u32 kvm_nr_mmu_pages)
1370{
1371 if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
1372 return -EINVAL;
1373
Izik Eidus72dc67a2008-02-10 18:04:15 +02001374 down_write(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01001375
1376 kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001377 kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01001378
Izik Eidus72dc67a2008-02-10 18:04:15 +02001379 up_write(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01001380 return 0;
1381}
1382
1383static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
1384{
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001385 return kvm->arch.n_alloc_mmu_pages;
Carsten Otte1fe779f2007-10-29 16:08:35 +01001386}
1387
Zhang Xiantaoe9f85cd2007-11-22 11:20:33 +08001388gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
1389{
1390 int i;
1391 struct kvm_mem_alias *alias;
1392
Zhang Xiantaod69fb812007-12-14 09:54:20 +08001393 for (i = 0; i < kvm->arch.naliases; ++i) {
1394 alias = &kvm->arch.aliases[i];
Zhang Xiantaoe9f85cd2007-11-22 11:20:33 +08001395 if (gfn >= alias->base_gfn
1396 && gfn < alias->base_gfn + alias->npages)
1397 return alias->target_gfn + gfn - alias->base_gfn;
1398 }
1399 return gfn;
1400}
1401
Carsten Otte1fe779f2007-10-29 16:08:35 +01001402/*
1403 * Set a new alias region. Aliases map a portion of physical memory into
1404 * another portion. This is useful for memory windows, for example the PC
1405 * VGA region.
1406 */
1407static int kvm_vm_ioctl_set_memory_alias(struct kvm *kvm,
1408 struct kvm_memory_alias *alias)
1409{
1410 int r, n;
1411 struct kvm_mem_alias *p;
1412
1413 r = -EINVAL;
1414 /* General sanity checks */
1415 if (alias->memory_size & (PAGE_SIZE - 1))
1416 goto out;
1417 if (alias->guest_phys_addr & (PAGE_SIZE - 1))
1418 goto out;
1419 if (alias->slot >= KVM_ALIAS_SLOTS)
1420 goto out;
1421 if (alias->guest_phys_addr + alias->memory_size
1422 < alias->guest_phys_addr)
1423 goto out;
1424 if (alias->target_phys_addr + alias->memory_size
1425 < alias->target_phys_addr)
1426 goto out;
1427
Izik Eidus72dc67a2008-02-10 18:04:15 +02001428 down_write(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01001429
Zhang Xiantaod69fb812007-12-14 09:54:20 +08001430 p = &kvm->arch.aliases[alias->slot];
Carsten Otte1fe779f2007-10-29 16:08:35 +01001431 p->base_gfn = alias->guest_phys_addr >> PAGE_SHIFT;
1432 p->npages = alias->memory_size >> PAGE_SHIFT;
1433 p->target_gfn = alias->target_phys_addr >> PAGE_SHIFT;
1434
1435 for (n = KVM_ALIAS_SLOTS; n > 0; --n)
Zhang Xiantaod69fb812007-12-14 09:54:20 +08001436 if (kvm->arch.aliases[n - 1].npages)
Carsten Otte1fe779f2007-10-29 16:08:35 +01001437 break;
Zhang Xiantaod69fb812007-12-14 09:54:20 +08001438 kvm->arch.naliases = n;
Carsten Otte1fe779f2007-10-29 16:08:35 +01001439
1440 kvm_mmu_zap_all(kvm);
1441
Izik Eidus72dc67a2008-02-10 18:04:15 +02001442 up_write(&kvm->slots_lock);
Carsten Otte1fe779f2007-10-29 16:08:35 +01001443
1444 return 0;
1445
1446out:
1447 return r;
1448}
1449
1450static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
1451{
1452 int r;
1453
1454 r = 0;
1455 switch (chip->chip_id) {
1456 case KVM_IRQCHIP_PIC_MASTER:
1457 memcpy(&chip->chip.pic,
1458 &pic_irqchip(kvm)->pics[0],
1459 sizeof(struct kvm_pic_state));
1460 break;
1461 case KVM_IRQCHIP_PIC_SLAVE:
1462 memcpy(&chip->chip.pic,
1463 &pic_irqchip(kvm)->pics[1],
1464 sizeof(struct kvm_pic_state));
1465 break;
1466 case KVM_IRQCHIP_IOAPIC:
1467 memcpy(&chip->chip.ioapic,
1468 ioapic_irqchip(kvm),
1469 sizeof(struct kvm_ioapic_state));
1470 break;
1471 default:
1472 r = -EINVAL;
1473 break;
1474 }
1475 return r;
1476}
1477
1478static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
1479{
1480 int r;
1481
1482 r = 0;
1483 switch (chip->chip_id) {
1484 case KVM_IRQCHIP_PIC_MASTER:
1485 memcpy(&pic_irqchip(kvm)->pics[0],
1486 &chip->chip.pic,
1487 sizeof(struct kvm_pic_state));
1488 break;
1489 case KVM_IRQCHIP_PIC_SLAVE:
1490 memcpy(&pic_irqchip(kvm)->pics[1],
1491 &chip->chip.pic,
1492 sizeof(struct kvm_pic_state));
1493 break;
1494 case KVM_IRQCHIP_IOAPIC:
1495 memcpy(ioapic_irqchip(kvm),
1496 &chip->chip.ioapic,
1497 sizeof(struct kvm_ioapic_state));
1498 break;
1499 default:
1500 r = -EINVAL;
1501 break;
1502 }
1503 kvm_pic_update_irq(pic_irqchip(kvm));
1504 return r;
1505}
1506
Sheng Yange0f63cb2008-03-04 00:50:59 +08001507static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
1508{
1509 int r = 0;
1510
1511 memcpy(ps, &kvm->arch.vpit->pit_state, sizeof(struct kvm_pit_state));
1512 return r;
1513}
1514
1515static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
1516{
1517 int r = 0;
1518
1519 memcpy(&kvm->arch.vpit->pit_state, ps, sizeof(struct kvm_pit_state));
1520 kvm_pit_load_count(kvm, 0, ps->channels[0].count);
1521 return r;
1522}
1523
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001524/*
1525 * Get (and clear) the dirty memory log for a memory slot.
1526 */
1527int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
1528 struct kvm_dirty_log *log)
1529{
1530 int r;
1531 int n;
1532 struct kvm_memory_slot *memslot;
1533 int is_dirty = 0;
1534
Izik Eidus72dc67a2008-02-10 18:04:15 +02001535 down_write(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001536
1537 r = kvm_get_dirty_log(kvm, log, &is_dirty);
1538 if (r)
1539 goto out;
1540
1541 /* If nothing is dirty, don't bother messing with page tables. */
1542 if (is_dirty) {
1543 kvm_mmu_slot_remove_write_access(kvm, log->slot);
1544 kvm_flush_remote_tlbs(kvm);
1545 memslot = &kvm->memslots[log->slot];
1546 n = ALIGN(memslot->npages, BITS_PER_LONG) / 8;
1547 memset(memslot->dirty_bitmap, 0, n);
1548 }
1549 r = 0;
1550out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02001551 up_write(&kvm->slots_lock);
Zhang Xiantao5bb064d2007-11-18 20:29:43 +08001552 return r;
1553}
1554
Carsten Otte1fe779f2007-10-29 16:08:35 +01001555long kvm_arch_vm_ioctl(struct file *filp,
1556 unsigned int ioctl, unsigned long arg)
1557{
1558 struct kvm *kvm = filp->private_data;
1559 void __user *argp = (void __user *)arg;
1560 int r = -EINVAL;
1561
1562 switch (ioctl) {
1563 case KVM_SET_TSS_ADDR:
1564 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
1565 if (r < 0)
1566 goto out;
1567 break;
1568 case KVM_SET_MEMORY_REGION: {
1569 struct kvm_memory_region kvm_mem;
1570 struct kvm_userspace_memory_region kvm_userspace_mem;
1571
1572 r = -EFAULT;
1573 if (copy_from_user(&kvm_mem, argp, sizeof kvm_mem))
1574 goto out;
1575 kvm_userspace_mem.slot = kvm_mem.slot;
1576 kvm_userspace_mem.flags = kvm_mem.flags;
1577 kvm_userspace_mem.guest_phys_addr = kvm_mem.guest_phys_addr;
1578 kvm_userspace_mem.memory_size = kvm_mem.memory_size;
1579 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem, 0);
1580 if (r)
1581 goto out;
1582 break;
1583 }
1584 case KVM_SET_NR_MMU_PAGES:
1585 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
1586 if (r)
1587 goto out;
1588 break;
1589 case KVM_GET_NR_MMU_PAGES:
1590 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
1591 break;
1592 case KVM_SET_MEMORY_ALIAS: {
1593 struct kvm_memory_alias alias;
1594
1595 r = -EFAULT;
1596 if (copy_from_user(&alias, argp, sizeof alias))
1597 goto out;
1598 r = kvm_vm_ioctl_set_memory_alias(kvm, &alias);
1599 if (r)
1600 goto out;
1601 break;
1602 }
1603 case KVM_CREATE_IRQCHIP:
1604 r = -ENOMEM;
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +08001605 kvm->arch.vpic = kvm_create_pic(kvm);
1606 if (kvm->arch.vpic) {
Carsten Otte1fe779f2007-10-29 16:08:35 +01001607 r = kvm_ioapic_init(kvm);
1608 if (r) {
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +08001609 kfree(kvm->arch.vpic);
1610 kvm->arch.vpic = NULL;
Carsten Otte1fe779f2007-10-29 16:08:35 +01001611 goto out;
1612 }
1613 } else
1614 goto out;
1615 break;
Sheng Yang78376992008-01-28 05:10:22 +08001616 case KVM_CREATE_PIT:
1617 r = -ENOMEM;
1618 kvm->arch.vpit = kvm_create_pit(kvm);
1619 if (kvm->arch.vpit)
1620 r = 0;
1621 break;
Carsten Otte1fe779f2007-10-29 16:08:35 +01001622 case KVM_IRQ_LINE: {
1623 struct kvm_irq_level irq_event;
1624
1625 r = -EFAULT;
1626 if (copy_from_user(&irq_event, argp, sizeof irq_event))
1627 goto out;
1628 if (irqchip_in_kernel(kvm)) {
1629 mutex_lock(&kvm->lock);
1630 if (irq_event.irq < 16)
1631 kvm_pic_set_irq(pic_irqchip(kvm),
1632 irq_event.irq,
1633 irq_event.level);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +08001634 kvm_ioapic_set_irq(kvm->arch.vioapic,
Carsten Otte1fe779f2007-10-29 16:08:35 +01001635 irq_event.irq,
1636 irq_event.level);
1637 mutex_unlock(&kvm->lock);
1638 r = 0;
1639 }
1640 break;
1641 }
1642 case KVM_GET_IRQCHIP: {
1643 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
1644 struct kvm_irqchip chip;
1645
1646 r = -EFAULT;
1647 if (copy_from_user(&chip, argp, sizeof chip))
1648 goto out;
1649 r = -ENXIO;
1650 if (!irqchip_in_kernel(kvm))
1651 goto out;
1652 r = kvm_vm_ioctl_get_irqchip(kvm, &chip);
1653 if (r)
1654 goto out;
1655 r = -EFAULT;
1656 if (copy_to_user(argp, &chip, sizeof chip))
1657 goto out;
1658 r = 0;
1659 break;
1660 }
1661 case KVM_SET_IRQCHIP: {
1662 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
1663 struct kvm_irqchip chip;
1664
1665 r = -EFAULT;
1666 if (copy_from_user(&chip, argp, sizeof chip))
1667 goto out;
1668 r = -ENXIO;
1669 if (!irqchip_in_kernel(kvm))
1670 goto out;
1671 r = kvm_vm_ioctl_set_irqchip(kvm, &chip);
1672 if (r)
1673 goto out;
1674 r = 0;
1675 break;
1676 }
Sheng Yange0f63cb2008-03-04 00:50:59 +08001677 case KVM_GET_PIT: {
1678 struct kvm_pit_state ps;
1679 r = -EFAULT;
1680 if (copy_from_user(&ps, argp, sizeof ps))
1681 goto out;
1682 r = -ENXIO;
1683 if (!kvm->arch.vpit)
1684 goto out;
1685 r = kvm_vm_ioctl_get_pit(kvm, &ps);
1686 if (r)
1687 goto out;
1688 r = -EFAULT;
1689 if (copy_to_user(argp, &ps, sizeof ps))
1690 goto out;
1691 r = 0;
1692 break;
1693 }
1694 case KVM_SET_PIT: {
1695 struct kvm_pit_state ps;
1696 r = -EFAULT;
1697 if (copy_from_user(&ps, argp, sizeof ps))
1698 goto out;
1699 r = -ENXIO;
1700 if (!kvm->arch.vpit)
1701 goto out;
1702 r = kvm_vm_ioctl_set_pit(kvm, &ps);
1703 if (r)
1704 goto out;
1705 r = 0;
1706 break;
1707 }
Carsten Otte1fe779f2007-10-29 16:08:35 +01001708 default:
1709 ;
1710 }
1711out:
1712 return r;
1713}
1714
Zhang Xiantaoa16b0432007-11-16 14:38:21 +08001715static void kvm_init_msr_list(void)
Carsten Otte043405e2007-10-10 17:16:19 +02001716{
1717 u32 dummy[2];
1718 unsigned i, j;
1719
1720 for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
1721 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
1722 continue;
1723 if (j < i)
1724 msrs_to_save[j] = msrs_to_save[i];
1725 j++;
1726 }
1727 num_msrs_to_save = j;
1728}
1729
Carsten Ottebbd9b642007-10-30 18:44:21 +01001730/*
1731 * Only apic need an MMIO device hook, so shortcut now..
1732 */
1733static struct kvm_io_device *vcpu_find_pervcpu_dev(struct kvm_vcpu *vcpu,
1734 gpa_t addr)
1735{
1736 struct kvm_io_device *dev;
1737
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001738 if (vcpu->arch.apic) {
1739 dev = &vcpu->arch.apic->dev;
Carsten Ottebbd9b642007-10-30 18:44:21 +01001740 if (dev->in_range(dev, addr))
1741 return dev;
1742 }
1743 return NULL;
1744}
1745
1746
1747static struct kvm_io_device *vcpu_find_mmio_dev(struct kvm_vcpu *vcpu,
1748 gpa_t addr)
1749{
1750 struct kvm_io_device *dev;
1751
1752 dev = vcpu_find_pervcpu_dev(vcpu, addr);
1753 if (dev == NULL)
1754 dev = kvm_io_bus_find_dev(&vcpu->kvm->mmio_bus, addr);
1755 return dev;
1756}
1757
1758int emulator_read_std(unsigned long addr,
1759 void *val,
1760 unsigned int bytes,
1761 struct kvm_vcpu *vcpu)
1762{
1763 void *data = val;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001764 int r = X86EMUL_CONTINUE;
Carsten Ottebbd9b642007-10-30 18:44:21 +01001765
Izik Eidus72dc67a2008-02-10 18:04:15 +02001766 down_read(&vcpu->kvm->slots_lock);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001767 while (bytes) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001768 gpa_t gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, addr);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001769 unsigned offset = addr & (PAGE_SIZE-1);
1770 unsigned tocopy = min(bytes, (unsigned)PAGE_SIZE - offset);
1771 int ret;
1772
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001773 if (gpa == UNMAPPED_GVA) {
1774 r = X86EMUL_PROPAGATE_FAULT;
1775 goto out;
1776 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01001777 ret = kvm_read_guest(vcpu->kvm, gpa, data, tocopy);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001778 if (ret < 0) {
1779 r = X86EMUL_UNHANDLEABLE;
1780 goto out;
1781 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01001782
1783 bytes -= tocopy;
1784 data += tocopy;
1785 addr += tocopy;
1786 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001787out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02001788 up_read(&vcpu->kvm->slots_lock);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001789 return r;
Carsten Ottebbd9b642007-10-30 18:44:21 +01001790}
1791EXPORT_SYMBOL_GPL(emulator_read_std);
1792
Carsten Ottebbd9b642007-10-30 18:44:21 +01001793static int emulator_read_emulated(unsigned long addr,
1794 void *val,
1795 unsigned int bytes,
1796 struct kvm_vcpu *vcpu)
1797{
1798 struct kvm_io_device *mmio_dev;
1799 gpa_t gpa;
1800
1801 if (vcpu->mmio_read_completed) {
1802 memcpy(val, vcpu->mmio_data, bytes);
1803 vcpu->mmio_read_completed = 0;
1804 return X86EMUL_CONTINUE;
1805 }
1806
Izik Eidus72dc67a2008-02-10 18:04:15 +02001807 down_read(&vcpu->kvm->slots_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001808 gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, addr);
Izik Eidus72dc67a2008-02-10 18:04:15 +02001809 up_read(&vcpu->kvm->slots_lock);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001810
1811 /* For APIC access vmexit */
1812 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
1813 goto mmio;
1814
1815 if (emulator_read_std(addr, val, bytes, vcpu)
1816 == X86EMUL_CONTINUE)
1817 return X86EMUL_CONTINUE;
1818 if (gpa == UNMAPPED_GVA)
1819 return X86EMUL_PROPAGATE_FAULT;
1820
1821mmio:
1822 /*
1823 * Is this MMIO handled locally?
1824 */
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001825 mutex_lock(&vcpu->kvm->lock);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001826 mmio_dev = vcpu_find_mmio_dev(vcpu, gpa);
1827 if (mmio_dev) {
1828 kvm_iodevice_read(mmio_dev, gpa, bytes, val);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001829 mutex_unlock(&vcpu->kvm->lock);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001830 return X86EMUL_CONTINUE;
1831 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001832 mutex_unlock(&vcpu->kvm->lock);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001833
1834 vcpu->mmio_needed = 1;
1835 vcpu->mmio_phys_addr = gpa;
1836 vcpu->mmio_size = bytes;
1837 vcpu->mmio_is_write = 0;
1838
1839 return X86EMUL_UNHANDLEABLE;
1840}
1841
1842static int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
1843 const void *val, int bytes)
1844{
1845 int ret;
1846
Izik Eidus72dc67a2008-02-10 18:04:15 +02001847 down_read(&vcpu->kvm->slots_lock);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001848 ret = kvm_write_guest(vcpu->kvm, gpa, val, bytes);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001849 if (ret < 0) {
Izik Eidus72dc67a2008-02-10 18:04:15 +02001850 up_read(&vcpu->kvm->slots_lock);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001851 return 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001852 }
Carsten Ottebbd9b642007-10-30 18:44:21 +01001853 kvm_mmu_pte_write(vcpu, gpa, val, bytes);
Izik Eidus72dc67a2008-02-10 18:04:15 +02001854 up_read(&vcpu->kvm->slots_lock);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001855 return 1;
1856}
1857
1858static int emulator_write_emulated_onepage(unsigned long addr,
1859 const void *val,
1860 unsigned int bytes,
1861 struct kvm_vcpu *vcpu)
1862{
1863 struct kvm_io_device *mmio_dev;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001864 gpa_t gpa;
1865
Izik Eidus72dc67a2008-02-10 18:04:15 +02001866 down_read(&vcpu->kvm->slots_lock);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001867 gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, addr);
Izik Eidus72dc67a2008-02-10 18:04:15 +02001868 up_read(&vcpu->kvm->slots_lock);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001869
1870 if (gpa == UNMAPPED_GVA) {
Avi Kivityc3c91fe2007-11-25 14:04:58 +02001871 kvm_inject_page_fault(vcpu, addr, 2);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001872 return X86EMUL_PROPAGATE_FAULT;
1873 }
1874
1875 /* For APIC access vmexit */
1876 if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
1877 goto mmio;
1878
1879 if (emulator_write_phys(vcpu, gpa, val, bytes))
1880 return X86EMUL_CONTINUE;
1881
1882mmio:
1883 /*
1884 * Is this MMIO handled locally?
1885 */
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001886 mutex_lock(&vcpu->kvm->lock);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001887 mmio_dev = vcpu_find_mmio_dev(vcpu, gpa);
1888 if (mmio_dev) {
1889 kvm_iodevice_write(mmio_dev, gpa, bytes, val);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001890 mutex_unlock(&vcpu->kvm->lock);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001891 return X86EMUL_CONTINUE;
1892 }
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001893 mutex_unlock(&vcpu->kvm->lock);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001894
1895 vcpu->mmio_needed = 1;
1896 vcpu->mmio_phys_addr = gpa;
1897 vcpu->mmio_size = bytes;
1898 vcpu->mmio_is_write = 1;
1899 memcpy(vcpu->mmio_data, val, bytes);
1900
1901 return X86EMUL_CONTINUE;
1902}
1903
1904int emulator_write_emulated(unsigned long addr,
1905 const void *val,
1906 unsigned int bytes,
1907 struct kvm_vcpu *vcpu)
1908{
1909 /* Crossing a page boundary? */
1910 if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
1911 int rc, now;
1912
1913 now = -addr & ~PAGE_MASK;
1914 rc = emulator_write_emulated_onepage(addr, val, now, vcpu);
1915 if (rc != X86EMUL_CONTINUE)
1916 return rc;
1917 addr += now;
1918 val += now;
1919 bytes -= now;
1920 }
1921 return emulator_write_emulated_onepage(addr, val, bytes, vcpu);
1922}
1923EXPORT_SYMBOL_GPL(emulator_write_emulated);
1924
1925static int emulator_cmpxchg_emulated(unsigned long addr,
1926 const void *old,
1927 const void *new,
1928 unsigned int bytes,
1929 struct kvm_vcpu *vcpu)
1930{
1931 static int reported;
1932
1933 if (!reported) {
1934 reported = 1;
1935 printk(KERN_WARNING "kvm: emulating exchange as write\n");
1936 }
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05001937#ifndef CONFIG_X86_64
1938 /* guests cmpxchg8b have to be emulated atomically */
1939 if (bytes == 8) {
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001940 gpa_t gpa;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05001941 struct page *page;
Andrew Mortonc0b49b02008-02-04 22:27:18 -08001942 char *kaddr;
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05001943 u64 val;
1944
Izik Eidus72dc67a2008-02-10 18:04:15 +02001945 down_read(&vcpu->kvm->slots_lock);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001946 gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, addr);
1947
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05001948 if (gpa == UNMAPPED_GVA ||
1949 (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
1950 goto emul_write;
1951
1952 if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK))
1953 goto emul_write;
1954
1955 val = *(u64 *)new;
Izik Eidus72dc67a2008-02-10 18:04:15 +02001956
1957 down_read(&current->mm->mmap_sem);
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05001958 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Izik Eidus72dc67a2008-02-10 18:04:15 +02001959 up_read(&current->mm->mmap_sem);
1960
Andrew Mortonc0b49b02008-02-04 22:27:18 -08001961 kaddr = kmap_atomic(page, KM_USER0);
1962 set_64bit((u64 *)(kaddr + offset_in_page(gpa)), val);
1963 kunmap_atomic(kaddr, KM_USER0);
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05001964 kvm_release_page_dirty(page);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001965 emul_write:
Izik Eidus72dc67a2008-02-10 18:04:15 +02001966 up_read(&vcpu->kvm->slots_lock);
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05001967 }
Marcelo Tosatti2bacc552007-12-12 10:46:12 -05001968#endif
1969
Carsten Ottebbd9b642007-10-30 18:44:21 +01001970 return emulator_write_emulated(addr, new, bytes, vcpu);
1971}
1972
1973static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
1974{
1975 return kvm_x86_ops->get_segment_base(vcpu, seg);
1976}
1977
1978int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address)
1979{
1980 return X86EMUL_CONTINUE;
1981}
1982
1983int emulate_clts(struct kvm_vcpu *vcpu)
1984{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001985 kvm_x86_ops->set_cr0(vcpu, vcpu->arch.cr0 & ~X86_CR0_TS);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001986 return X86EMUL_CONTINUE;
1987}
1988
1989int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr, unsigned long *dest)
1990{
1991 struct kvm_vcpu *vcpu = ctxt->vcpu;
1992
1993 switch (dr) {
1994 case 0 ... 3:
1995 *dest = kvm_x86_ops->get_dr(vcpu, dr);
1996 return X86EMUL_CONTINUE;
1997 default:
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001998 pr_unimpl(vcpu, "%s: unexpected dr %u\n", __func__, dr);
Carsten Ottebbd9b642007-10-30 18:44:21 +01001999 return X86EMUL_UNHANDLEABLE;
2000 }
2001}
2002
2003int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr, unsigned long value)
2004{
2005 unsigned long mask = (ctxt->mode == X86EMUL_MODE_PROT64) ? ~0ULL : ~0U;
2006 int exception;
2007
2008 kvm_x86_ops->set_dr(ctxt->vcpu, dr, value & mask, &exception);
2009 if (exception) {
2010 /* FIXME: better handling */
2011 return X86EMUL_UNHANDLEABLE;
2012 }
2013 return X86EMUL_CONTINUE;
2014}
2015
2016void kvm_report_emulation_failure(struct kvm_vcpu *vcpu, const char *context)
2017{
2018 static int reported;
2019 u8 opcodes[4];
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002020 unsigned long rip = vcpu->arch.rip;
Carsten Ottebbd9b642007-10-30 18:44:21 +01002021 unsigned long rip_linear;
2022
2023 rip_linear = rip + get_segment_base(vcpu, VCPU_SREG_CS);
2024
2025 if (reported)
2026 return;
2027
2028 emulator_read_std(rip_linear, (void *)opcodes, 4, vcpu);
2029
2030 printk(KERN_ERR "emulation failed (%s) rip %lx %02x %02x %02x %02x\n",
2031 context, rip, opcodes[0], opcodes[1], opcodes[2], opcodes[3]);
2032 reported = 1;
2033}
2034EXPORT_SYMBOL_GPL(kvm_report_emulation_failure);
2035
Harvey Harrison14af3f32008-02-19 10:25:50 -08002036static struct x86_emulate_ops emulate_ops = {
Carsten Ottebbd9b642007-10-30 18:44:21 +01002037 .read_std = emulator_read_std,
Carsten Ottebbd9b642007-10-30 18:44:21 +01002038 .read_emulated = emulator_read_emulated,
2039 .write_emulated = emulator_write_emulated,
2040 .cmpxchg_emulated = emulator_cmpxchg_emulated,
2041};
2042
2043int emulate_instruction(struct kvm_vcpu *vcpu,
2044 struct kvm_run *run,
2045 unsigned long cr2,
2046 u16 error_code,
Sheng Yang571008d2008-01-02 14:49:22 +08002047 int emulation_type)
Carsten Ottebbd9b642007-10-30 18:44:21 +01002048{
2049 int r;
Sheng Yang571008d2008-01-02 14:49:22 +08002050 struct decode_cache *c;
Carsten Ottebbd9b642007-10-30 18:44:21 +01002051
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002052 vcpu->arch.mmio_fault_cr2 = cr2;
Carsten Ottebbd9b642007-10-30 18:44:21 +01002053 kvm_x86_ops->cache_regs(vcpu);
2054
2055 vcpu->mmio_is_write = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002056 vcpu->arch.pio.string = 0;
Carsten Ottebbd9b642007-10-30 18:44:21 +01002057
Sheng Yang571008d2008-01-02 14:49:22 +08002058 if (!(emulation_type & EMULTYPE_NO_DECODE)) {
Carsten Ottebbd9b642007-10-30 18:44:21 +01002059 int cs_db, cs_l;
2060 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
2061
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002062 vcpu->arch.emulate_ctxt.vcpu = vcpu;
2063 vcpu->arch.emulate_ctxt.eflags = kvm_x86_ops->get_rflags(vcpu);
2064 vcpu->arch.emulate_ctxt.mode =
2065 (vcpu->arch.emulate_ctxt.eflags & X86_EFLAGS_VM)
Carsten Ottebbd9b642007-10-30 18:44:21 +01002066 ? X86EMUL_MODE_REAL : cs_l
2067 ? X86EMUL_MODE_PROT64 : cs_db
2068 ? X86EMUL_MODE_PROT32 : X86EMUL_MODE_PROT16;
2069
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002070 if (vcpu->arch.emulate_ctxt.mode == X86EMUL_MODE_PROT64) {
2071 vcpu->arch.emulate_ctxt.cs_base = 0;
2072 vcpu->arch.emulate_ctxt.ds_base = 0;
2073 vcpu->arch.emulate_ctxt.es_base = 0;
2074 vcpu->arch.emulate_ctxt.ss_base = 0;
Carsten Ottebbd9b642007-10-30 18:44:21 +01002075 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002076 vcpu->arch.emulate_ctxt.cs_base =
Carsten Ottebbd9b642007-10-30 18:44:21 +01002077 get_segment_base(vcpu, VCPU_SREG_CS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002078 vcpu->arch.emulate_ctxt.ds_base =
Carsten Ottebbd9b642007-10-30 18:44:21 +01002079 get_segment_base(vcpu, VCPU_SREG_DS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002080 vcpu->arch.emulate_ctxt.es_base =
Carsten Ottebbd9b642007-10-30 18:44:21 +01002081 get_segment_base(vcpu, VCPU_SREG_ES);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002082 vcpu->arch.emulate_ctxt.ss_base =
Carsten Ottebbd9b642007-10-30 18:44:21 +01002083 get_segment_base(vcpu, VCPU_SREG_SS);
2084 }
2085
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002086 vcpu->arch.emulate_ctxt.gs_base =
Carsten Ottebbd9b642007-10-30 18:44:21 +01002087 get_segment_base(vcpu, VCPU_SREG_GS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002088 vcpu->arch.emulate_ctxt.fs_base =
Carsten Ottebbd9b642007-10-30 18:44:21 +01002089 get_segment_base(vcpu, VCPU_SREG_FS);
2090
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002091 r = x86_decode_insn(&vcpu->arch.emulate_ctxt, &emulate_ops);
Sheng Yang571008d2008-01-02 14:49:22 +08002092
2093 /* Reject the instructions other than VMCALL/VMMCALL when
2094 * try to emulate invalid opcode */
2095 c = &vcpu->arch.emulate_ctxt.decode;
2096 if ((emulation_type & EMULTYPE_TRAP_UD) &&
2097 (!(c->twobyte && c->b == 0x01 &&
2098 (c->modrm_reg == 0 || c->modrm_reg == 3) &&
2099 c->modrm_mod == 3 && c->modrm_rm == 1)))
2100 return EMULATE_FAIL;
2101
Avi Kivityf2b57562007-11-18 15:17:51 +02002102 ++vcpu->stat.insn_emulation;
Carsten Ottebbd9b642007-10-30 18:44:21 +01002103 if (r) {
Avi Kivityf2b57562007-11-18 15:17:51 +02002104 ++vcpu->stat.insn_emulation_fail;
Carsten Ottebbd9b642007-10-30 18:44:21 +01002105 if (kvm_mmu_unprotect_page_virt(vcpu, cr2))
2106 return EMULATE_DONE;
2107 return EMULATE_FAIL;
2108 }
2109 }
2110
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002111 r = x86_emulate_insn(&vcpu->arch.emulate_ctxt, &emulate_ops);
Carsten Ottebbd9b642007-10-30 18:44:21 +01002112
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002113 if (vcpu->arch.pio.string)
Carsten Ottebbd9b642007-10-30 18:44:21 +01002114 return EMULATE_DO_MMIO;
2115
2116 if ((r || vcpu->mmio_is_write) && run) {
2117 run->exit_reason = KVM_EXIT_MMIO;
2118 run->mmio.phys_addr = vcpu->mmio_phys_addr;
2119 memcpy(run->mmio.data, vcpu->mmio_data, 8);
2120 run->mmio.len = vcpu->mmio_size;
2121 run->mmio.is_write = vcpu->mmio_is_write;
2122 }
2123
2124 if (r) {
2125 if (kvm_mmu_unprotect_page_virt(vcpu, cr2))
2126 return EMULATE_DONE;
2127 if (!vcpu->mmio_needed) {
2128 kvm_report_emulation_failure(vcpu, "mmio");
2129 return EMULATE_FAIL;
2130 }
2131 return EMULATE_DO_MMIO;
2132 }
2133
2134 kvm_x86_ops->decache_regs(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002135 kvm_x86_ops->set_rflags(vcpu, vcpu->arch.emulate_ctxt.eflags);
Carsten Ottebbd9b642007-10-30 18:44:21 +01002136
2137 if (vcpu->mmio_is_write) {
2138 vcpu->mmio_needed = 0;
2139 return EMULATE_DO_MMIO;
2140 }
2141
2142 return EMULATE_DONE;
2143}
2144EXPORT_SYMBOL_GPL(emulate_instruction);
2145
Carsten Ottede7d7892007-10-30 18:44:25 +01002146static void free_pio_guest_pages(struct kvm_vcpu *vcpu)
2147{
2148 int i;
2149
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002150 for (i = 0; i < ARRAY_SIZE(vcpu->arch.pio.guest_pages); ++i)
2151 if (vcpu->arch.pio.guest_pages[i]) {
2152 kvm_release_page_dirty(vcpu->arch.pio.guest_pages[i]);
2153 vcpu->arch.pio.guest_pages[i] = NULL;
Carsten Ottede7d7892007-10-30 18:44:25 +01002154 }
2155}
2156
2157static int pio_copy_data(struct kvm_vcpu *vcpu)
2158{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002159 void *p = vcpu->arch.pio_data;
Carsten Ottede7d7892007-10-30 18:44:25 +01002160 void *q;
2161 unsigned bytes;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002162 int nr_pages = vcpu->arch.pio.guest_pages[1] ? 2 : 1;
Carsten Ottede7d7892007-10-30 18:44:25 +01002163
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002164 q = vmap(vcpu->arch.pio.guest_pages, nr_pages, VM_READ|VM_WRITE,
Carsten Ottede7d7892007-10-30 18:44:25 +01002165 PAGE_KERNEL);
2166 if (!q) {
2167 free_pio_guest_pages(vcpu);
2168 return -ENOMEM;
2169 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002170 q += vcpu->arch.pio.guest_page_offset;
2171 bytes = vcpu->arch.pio.size * vcpu->arch.pio.cur_count;
2172 if (vcpu->arch.pio.in)
Carsten Ottede7d7892007-10-30 18:44:25 +01002173 memcpy(q, p, bytes);
2174 else
2175 memcpy(p, q, bytes);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002176 q -= vcpu->arch.pio.guest_page_offset;
Carsten Ottede7d7892007-10-30 18:44:25 +01002177 vunmap(q);
2178 free_pio_guest_pages(vcpu);
2179 return 0;
2180}
2181
2182int complete_pio(struct kvm_vcpu *vcpu)
2183{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002184 struct kvm_pio_request *io = &vcpu->arch.pio;
Carsten Ottede7d7892007-10-30 18:44:25 +01002185 long delta;
2186 int r;
2187
2188 kvm_x86_ops->cache_regs(vcpu);
2189
2190 if (!io->string) {
2191 if (io->in)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002192 memcpy(&vcpu->arch.regs[VCPU_REGS_RAX], vcpu->arch.pio_data,
Carsten Ottede7d7892007-10-30 18:44:25 +01002193 io->size);
2194 } else {
2195 if (io->in) {
2196 r = pio_copy_data(vcpu);
2197 if (r) {
2198 kvm_x86_ops->cache_regs(vcpu);
2199 return r;
2200 }
2201 }
2202
2203 delta = 1;
2204 if (io->rep) {
2205 delta *= io->cur_count;
2206 /*
2207 * The size of the register should really depend on
2208 * current address size.
2209 */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002210 vcpu->arch.regs[VCPU_REGS_RCX] -= delta;
Carsten Ottede7d7892007-10-30 18:44:25 +01002211 }
2212 if (io->down)
2213 delta = -delta;
2214 delta *= io->size;
2215 if (io->in)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002216 vcpu->arch.regs[VCPU_REGS_RDI] += delta;
Carsten Ottede7d7892007-10-30 18:44:25 +01002217 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002218 vcpu->arch.regs[VCPU_REGS_RSI] += delta;
Carsten Ottede7d7892007-10-30 18:44:25 +01002219 }
2220
2221 kvm_x86_ops->decache_regs(vcpu);
2222
2223 io->count -= io->cur_count;
2224 io->cur_count = 0;
2225
2226 return 0;
2227}
2228
2229static void kernel_pio(struct kvm_io_device *pio_dev,
2230 struct kvm_vcpu *vcpu,
2231 void *pd)
2232{
2233 /* TODO: String I/O for in kernel device */
2234
2235 mutex_lock(&vcpu->kvm->lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002236 if (vcpu->arch.pio.in)
2237 kvm_iodevice_read(pio_dev, vcpu->arch.pio.port,
2238 vcpu->arch.pio.size,
Carsten Ottede7d7892007-10-30 18:44:25 +01002239 pd);
2240 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002241 kvm_iodevice_write(pio_dev, vcpu->arch.pio.port,
2242 vcpu->arch.pio.size,
Carsten Ottede7d7892007-10-30 18:44:25 +01002243 pd);
2244 mutex_unlock(&vcpu->kvm->lock);
2245}
2246
2247static void pio_string_write(struct kvm_io_device *pio_dev,
2248 struct kvm_vcpu *vcpu)
2249{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002250 struct kvm_pio_request *io = &vcpu->arch.pio;
2251 void *pd = vcpu->arch.pio_data;
Carsten Ottede7d7892007-10-30 18:44:25 +01002252 int i;
2253
2254 mutex_lock(&vcpu->kvm->lock);
2255 for (i = 0; i < io->cur_count; i++) {
2256 kvm_iodevice_write(pio_dev, io->port,
2257 io->size,
2258 pd);
2259 pd += io->size;
2260 }
2261 mutex_unlock(&vcpu->kvm->lock);
2262}
2263
2264static struct kvm_io_device *vcpu_find_pio_dev(struct kvm_vcpu *vcpu,
2265 gpa_t addr)
2266{
2267 return kvm_io_bus_find_dev(&vcpu->kvm->pio_bus, addr);
2268}
2269
2270int kvm_emulate_pio(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
2271 int size, unsigned port)
2272{
2273 struct kvm_io_device *pio_dev;
2274
2275 vcpu->run->exit_reason = KVM_EXIT_IO;
2276 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002277 vcpu->run->io.size = vcpu->arch.pio.size = size;
Carsten Ottede7d7892007-10-30 18:44:25 +01002278 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002279 vcpu->run->io.count = vcpu->arch.pio.count = vcpu->arch.pio.cur_count = 1;
2280 vcpu->run->io.port = vcpu->arch.pio.port = port;
2281 vcpu->arch.pio.in = in;
2282 vcpu->arch.pio.string = 0;
2283 vcpu->arch.pio.down = 0;
2284 vcpu->arch.pio.guest_page_offset = 0;
2285 vcpu->arch.pio.rep = 0;
Carsten Ottede7d7892007-10-30 18:44:25 +01002286
2287 kvm_x86_ops->cache_regs(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002288 memcpy(vcpu->arch.pio_data, &vcpu->arch.regs[VCPU_REGS_RAX], 4);
Carsten Ottede7d7892007-10-30 18:44:25 +01002289 kvm_x86_ops->decache_regs(vcpu);
2290
2291 kvm_x86_ops->skip_emulated_instruction(vcpu);
2292
2293 pio_dev = vcpu_find_pio_dev(vcpu, port);
2294 if (pio_dev) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002295 kernel_pio(pio_dev, vcpu, vcpu->arch.pio_data);
Carsten Ottede7d7892007-10-30 18:44:25 +01002296 complete_pio(vcpu);
2297 return 1;
2298 }
2299 return 0;
2300}
2301EXPORT_SYMBOL_GPL(kvm_emulate_pio);
2302
2303int kvm_emulate_pio_string(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
2304 int size, unsigned long count, int down,
2305 gva_t address, int rep, unsigned port)
2306{
2307 unsigned now, in_page;
2308 int i, ret = 0;
2309 int nr_pages = 1;
2310 struct page *page;
2311 struct kvm_io_device *pio_dev;
2312
2313 vcpu->run->exit_reason = KVM_EXIT_IO;
2314 vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002315 vcpu->run->io.size = vcpu->arch.pio.size = size;
Carsten Ottede7d7892007-10-30 18:44:25 +01002316 vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002317 vcpu->run->io.count = vcpu->arch.pio.count = vcpu->arch.pio.cur_count = count;
2318 vcpu->run->io.port = vcpu->arch.pio.port = port;
2319 vcpu->arch.pio.in = in;
2320 vcpu->arch.pio.string = 1;
2321 vcpu->arch.pio.down = down;
2322 vcpu->arch.pio.guest_page_offset = offset_in_page(address);
2323 vcpu->arch.pio.rep = rep;
Carsten Ottede7d7892007-10-30 18:44:25 +01002324
2325 if (!count) {
2326 kvm_x86_ops->skip_emulated_instruction(vcpu);
2327 return 1;
2328 }
2329
2330 if (!down)
2331 in_page = PAGE_SIZE - offset_in_page(address);
2332 else
2333 in_page = offset_in_page(address) + size;
2334 now = min(count, (unsigned long)in_page / size);
2335 if (!now) {
2336 /*
2337 * String I/O straddles page boundary. Pin two guest pages
2338 * so that we satisfy atomicity constraints. Do just one
2339 * transaction to avoid complexity.
2340 */
2341 nr_pages = 2;
2342 now = 1;
2343 }
2344 if (down) {
2345 /*
2346 * String I/O in reverse. Yuck. Kill the guest, fix later.
2347 */
2348 pr_unimpl(vcpu, "guest string pio down\n");
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002349 kvm_inject_gp(vcpu, 0);
Carsten Ottede7d7892007-10-30 18:44:25 +01002350 return 1;
2351 }
2352 vcpu->run->io.count = now;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002353 vcpu->arch.pio.cur_count = now;
Carsten Ottede7d7892007-10-30 18:44:25 +01002354
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002355 if (vcpu->arch.pio.cur_count == vcpu->arch.pio.count)
Carsten Ottede7d7892007-10-30 18:44:25 +01002356 kvm_x86_ops->skip_emulated_instruction(vcpu);
2357
2358 for (i = 0; i < nr_pages; ++i) {
Izik Eidus72dc67a2008-02-10 18:04:15 +02002359 down_read(&vcpu->kvm->slots_lock);
Carsten Ottede7d7892007-10-30 18:44:25 +01002360 page = gva_to_page(vcpu, address + i * PAGE_SIZE);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002361 vcpu->arch.pio.guest_pages[i] = page;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002362 up_read(&vcpu->kvm->slots_lock);
Carsten Ottede7d7892007-10-30 18:44:25 +01002363 if (!page) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002364 kvm_inject_gp(vcpu, 0);
Carsten Ottede7d7892007-10-30 18:44:25 +01002365 free_pio_guest_pages(vcpu);
2366 return 1;
2367 }
2368 }
2369
2370 pio_dev = vcpu_find_pio_dev(vcpu, port);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002371 if (!vcpu->arch.pio.in) {
Carsten Ottede7d7892007-10-30 18:44:25 +01002372 /* string PIO write */
2373 ret = pio_copy_data(vcpu);
2374 if (ret >= 0 && pio_dev) {
2375 pio_string_write(pio_dev, vcpu);
2376 complete_pio(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002377 if (vcpu->arch.pio.count == 0)
Carsten Ottede7d7892007-10-30 18:44:25 +01002378 ret = 1;
2379 }
2380 } else if (pio_dev)
2381 pr_unimpl(vcpu, "no string pio read support yet, "
2382 "port %x size %d count %ld\n",
2383 port, size, count);
2384
2385 return ret;
2386}
2387EXPORT_SYMBOL_GPL(kvm_emulate_pio_string);
2388
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002389int kvm_arch_init(void *opaque)
Carsten Otte043405e2007-10-10 17:16:19 +02002390{
Zhang Xiantao56c6d282007-11-18 20:43:21 +08002391 int r;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002392 struct kvm_x86_ops *ops = (struct kvm_x86_ops *)opaque;
2393
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002394 if (kvm_x86_ops) {
2395 printk(KERN_ERR "kvm: already loaded the other module\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08002396 r = -EEXIST;
2397 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002398 }
2399
2400 if (!ops->cpu_has_kvm_support()) {
2401 printk(KERN_ERR "kvm: no hardware support\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08002402 r = -EOPNOTSUPP;
2403 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002404 }
2405 if (ops->disabled_by_bios()) {
2406 printk(KERN_ERR "kvm: disabled by bios\n");
Zhang Xiantao56c6d282007-11-18 20:43:21 +08002407 r = -EOPNOTSUPP;
2408 goto out;
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002409 }
2410
Avi Kivity97db56c2008-01-13 13:23:56 +02002411 r = kvm_mmu_module_init();
2412 if (r)
2413 goto out;
2414
2415 kvm_init_msr_list();
2416
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002417 kvm_x86_ops = ops;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08002418 kvm_mmu_set_nonpresent_ptes(0ull, 0ull);
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002419 return 0;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08002420
2421out:
Zhang Xiantao56c6d282007-11-18 20:43:21 +08002422 return r;
Carsten Otte043405e2007-10-10 17:16:19 +02002423}
Hollis Blanchard8776e512007-10-31 17:24:24 -05002424
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002425void kvm_arch_exit(void)
2426{
2427 kvm_x86_ops = NULL;
Zhang Xiantao56c6d282007-11-18 20:43:21 +08002428 kvm_mmu_module_exit();
2429}
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +08002430
Hollis Blanchard8776e512007-10-31 17:24:24 -05002431int kvm_emulate_halt(struct kvm_vcpu *vcpu)
2432{
2433 ++vcpu->stat.halt_exits;
2434 if (irqchip_in_kernel(vcpu->kvm)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002435 vcpu->arch.mp_state = VCPU_MP_STATE_HALTED;
Hollis Blanchard8776e512007-10-31 17:24:24 -05002436 kvm_vcpu_block(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002437 if (vcpu->arch.mp_state != VCPU_MP_STATE_RUNNABLE)
Hollis Blanchard8776e512007-10-31 17:24:24 -05002438 return -EINTR;
2439 return 1;
2440 } else {
2441 vcpu->run->exit_reason = KVM_EXIT_HLT;
2442 return 0;
2443 }
2444}
2445EXPORT_SYMBOL_GPL(kvm_emulate_halt);
2446
2447int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
2448{
2449 unsigned long nr, a0, a1, a2, a3, ret;
2450
2451 kvm_x86_ops->cache_regs(vcpu);
2452
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002453 nr = vcpu->arch.regs[VCPU_REGS_RAX];
2454 a0 = vcpu->arch.regs[VCPU_REGS_RBX];
2455 a1 = vcpu->arch.regs[VCPU_REGS_RCX];
2456 a2 = vcpu->arch.regs[VCPU_REGS_RDX];
2457 a3 = vcpu->arch.regs[VCPU_REGS_RSI];
Hollis Blanchard8776e512007-10-31 17:24:24 -05002458
2459 if (!is_long_mode(vcpu)) {
2460 nr &= 0xFFFFFFFF;
2461 a0 &= 0xFFFFFFFF;
2462 a1 &= 0xFFFFFFFF;
2463 a2 &= 0xFFFFFFFF;
2464 a3 &= 0xFFFFFFFF;
2465 }
2466
2467 switch (nr) {
Avi Kivityb93463a2007-10-25 16:52:32 +02002468 case KVM_HC_VAPIC_POLL_IRQ:
2469 ret = 0;
2470 break;
Hollis Blanchard8776e512007-10-31 17:24:24 -05002471 default:
2472 ret = -KVM_ENOSYS;
2473 break;
2474 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002475 vcpu->arch.regs[VCPU_REGS_RAX] = ret;
Hollis Blanchard8776e512007-10-31 17:24:24 -05002476 kvm_x86_ops->decache_regs(vcpu);
Amit Shahf11c3a82008-02-21 01:00:30 +05302477 ++vcpu->stat.hypercalls;
Hollis Blanchard8776e512007-10-31 17:24:24 -05002478 return 0;
2479}
2480EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
2481
2482int kvm_fix_hypercall(struct kvm_vcpu *vcpu)
2483{
2484 char instruction[3];
2485 int ret = 0;
2486
Hollis Blanchard8776e512007-10-31 17:24:24 -05002487
2488 /*
2489 * Blow out the MMU to ensure that no other VCPU has an active mapping
2490 * to ensure that the updated hypercall appears atomically across all
2491 * VCPUs.
2492 */
2493 kvm_mmu_zap_all(vcpu->kvm);
2494
2495 kvm_x86_ops->cache_regs(vcpu);
2496 kvm_x86_ops->patch_hypercall(vcpu, instruction);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002497 if (emulator_write_emulated(vcpu->arch.rip, instruction, 3, vcpu)
Hollis Blanchard8776e512007-10-31 17:24:24 -05002498 != X86EMUL_CONTINUE)
2499 ret = -EFAULT;
2500
Hollis Blanchard8776e512007-10-31 17:24:24 -05002501 return ret;
2502}
2503
2504static u64 mk_cr_64(u64 curr_cr, u32 new_val)
2505{
2506 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
2507}
2508
2509void realmode_lgdt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
2510{
2511 struct descriptor_table dt = { limit, base };
2512
2513 kvm_x86_ops->set_gdt(vcpu, &dt);
2514}
2515
2516void realmode_lidt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
2517{
2518 struct descriptor_table dt = { limit, base };
2519
2520 kvm_x86_ops->set_idt(vcpu, &dt);
2521}
2522
2523void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
2524 unsigned long *rflags)
2525{
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002526 kvm_lmsw(vcpu, msw);
Hollis Blanchard8776e512007-10-31 17:24:24 -05002527 *rflags = kvm_x86_ops->get_rflags(vcpu);
2528}
2529
2530unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr)
2531{
2532 kvm_x86_ops->decache_cr4_guest_bits(vcpu);
2533 switch (cr) {
2534 case 0:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002535 return vcpu->arch.cr0;
Hollis Blanchard8776e512007-10-31 17:24:24 -05002536 case 2:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002537 return vcpu->arch.cr2;
Hollis Blanchard8776e512007-10-31 17:24:24 -05002538 case 3:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002539 return vcpu->arch.cr3;
Hollis Blanchard8776e512007-10-31 17:24:24 -05002540 case 4:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002541 return vcpu->arch.cr4;
Joerg Roedel152ff9b2007-12-06 15:46:52 +01002542 case 8:
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002543 return kvm_get_cr8(vcpu);
Hollis Blanchard8776e512007-10-31 17:24:24 -05002544 default:
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002545 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __func__, cr);
Hollis Blanchard8776e512007-10-31 17:24:24 -05002546 return 0;
2547 }
2548}
2549
2550void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long val,
2551 unsigned long *rflags)
2552{
2553 switch (cr) {
2554 case 0:
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002555 kvm_set_cr0(vcpu, mk_cr_64(vcpu->arch.cr0, val));
Hollis Blanchard8776e512007-10-31 17:24:24 -05002556 *rflags = kvm_x86_ops->get_rflags(vcpu);
2557 break;
2558 case 2:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002559 vcpu->arch.cr2 = val;
Hollis Blanchard8776e512007-10-31 17:24:24 -05002560 break;
2561 case 3:
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002562 kvm_set_cr3(vcpu, val);
Hollis Blanchard8776e512007-10-31 17:24:24 -05002563 break;
2564 case 4:
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002565 kvm_set_cr4(vcpu, mk_cr_64(vcpu->arch.cr4, val));
Hollis Blanchard8776e512007-10-31 17:24:24 -05002566 break;
Joerg Roedel152ff9b2007-12-06 15:46:52 +01002567 case 8:
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002568 kvm_set_cr8(vcpu, val & 0xfUL);
Joerg Roedel152ff9b2007-12-06 15:46:52 +01002569 break;
Hollis Blanchard8776e512007-10-31 17:24:24 -05002570 default:
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002571 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __func__, cr);
Hollis Blanchard8776e512007-10-31 17:24:24 -05002572 }
2573}
2574
Dan Kenigsberg07716712007-11-21 17:10:04 +02002575static int move_to_next_stateful_cpuid_entry(struct kvm_vcpu *vcpu, int i)
2576{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002577 struct kvm_cpuid_entry2 *e = &vcpu->arch.cpuid_entries[i];
2578 int j, nent = vcpu->arch.cpuid_nent;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002579
2580 e->flags &= ~KVM_CPUID_FLAG_STATE_READ_NEXT;
2581 /* when no next entry is found, the current entry[i] is reselected */
2582 for (j = i + 1; j == i; j = (j + 1) % nent) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002583 struct kvm_cpuid_entry2 *ej = &vcpu->arch.cpuid_entries[j];
Dan Kenigsberg07716712007-11-21 17:10:04 +02002584 if (ej->function == e->function) {
2585 ej->flags |= KVM_CPUID_FLAG_STATE_READ_NEXT;
2586 return j;
2587 }
2588 }
2589 return 0; /* silence gcc, even though control never reaches here */
2590}
2591
2592/* find an entry with matching function, matching index (if needed), and that
2593 * should be read next (if it's stateful) */
2594static int is_matching_cpuid_entry(struct kvm_cpuid_entry2 *e,
2595 u32 function, u32 index)
2596{
2597 if (e->function != function)
2598 return 0;
2599 if ((e->flags & KVM_CPUID_FLAG_SIGNIFCANT_INDEX) && e->index != index)
2600 return 0;
2601 if ((e->flags & KVM_CPUID_FLAG_STATEFUL_FUNC) &&
2602 !(e->flags & KVM_CPUID_FLAG_STATE_READ_NEXT))
2603 return 0;
2604 return 1;
2605}
2606
Hollis Blanchard8776e512007-10-31 17:24:24 -05002607void kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
2608{
2609 int i;
Dan Kenigsberg07716712007-11-21 17:10:04 +02002610 u32 function, index;
2611 struct kvm_cpuid_entry2 *e, *best;
Hollis Blanchard8776e512007-10-31 17:24:24 -05002612
2613 kvm_x86_ops->cache_regs(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002614 function = vcpu->arch.regs[VCPU_REGS_RAX];
2615 index = vcpu->arch.regs[VCPU_REGS_RCX];
2616 vcpu->arch.regs[VCPU_REGS_RAX] = 0;
2617 vcpu->arch.regs[VCPU_REGS_RBX] = 0;
2618 vcpu->arch.regs[VCPU_REGS_RCX] = 0;
2619 vcpu->arch.regs[VCPU_REGS_RDX] = 0;
Hollis Blanchard8776e512007-10-31 17:24:24 -05002620 best = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002621 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
2622 e = &vcpu->arch.cpuid_entries[i];
Dan Kenigsberg07716712007-11-21 17:10:04 +02002623 if (is_matching_cpuid_entry(e, function, index)) {
2624 if (e->flags & KVM_CPUID_FLAG_STATEFUL_FUNC)
2625 move_to_next_stateful_cpuid_entry(vcpu, i);
Hollis Blanchard8776e512007-10-31 17:24:24 -05002626 best = e;
2627 break;
2628 }
2629 /*
2630 * Both basic or both extended?
2631 */
2632 if (((e->function ^ function) & 0x80000000) == 0)
2633 if (!best || e->function > best->function)
2634 best = e;
2635 }
2636 if (best) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002637 vcpu->arch.regs[VCPU_REGS_RAX] = best->eax;
2638 vcpu->arch.regs[VCPU_REGS_RBX] = best->ebx;
2639 vcpu->arch.regs[VCPU_REGS_RCX] = best->ecx;
2640 vcpu->arch.regs[VCPU_REGS_RDX] = best->edx;
Hollis Blanchard8776e512007-10-31 17:24:24 -05002641 }
2642 kvm_x86_ops->decache_regs(vcpu);
2643 kvm_x86_ops->skip_emulated_instruction(vcpu);
2644}
2645EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);
Hollis Blanchardd0752062007-10-31 17:24:25 -05002646
2647/*
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002648 * Check if userspace requested an interrupt window, and that the
2649 * interrupt window is open.
2650 *
2651 * No need to exit to userspace if we already have an interrupt queued.
2652 */
2653static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu,
2654 struct kvm_run *kvm_run)
2655{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002656 return (!vcpu->arch.irq_summary &&
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002657 kvm_run->request_interrupt_window &&
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002658 vcpu->arch.interrupt_window_open &&
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002659 (kvm_x86_ops->get_rflags(vcpu) & X86_EFLAGS_IF));
2660}
2661
2662static void post_kvm_run_save(struct kvm_vcpu *vcpu,
2663 struct kvm_run *kvm_run)
2664{
2665 kvm_run->if_flag = (kvm_x86_ops->get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002666 kvm_run->cr8 = kvm_get_cr8(vcpu);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002667 kvm_run->apic_base = kvm_get_apic_base(vcpu);
2668 if (irqchip_in_kernel(vcpu->kvm))
2669 kvm_run->ready_for_interrupt_injection = 1;
2670 else
2671 kvm_run->ready_for_interrupt_injection =
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002672 (vcpu->arch.interrupt_window_open &&
2673 vcpu->arch.irq_summary == 0);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002674}
2675
Avi Kivityb93463a2007-10-25 16:52:32 +02002676static void vapic_enter(struct kvm_vcpu *vcpu)
2677{
2678 struct kvm_lapic *apic = vcpu->arch.apic;
2679 struct page *page;
2680
2681 if (!apic || !apic->vapic_addr)
2682 return;
2683
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002684 down_read(&current->mm->mmap_sem);
Avi Kivityb93463a2007-10-25 16:52:32 +02002685 page = gfn_to_page(vcpu->kvm, apic->vapic_addr >> PAGE_SHIFT);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002686 up_read(&current->mm->mmap_sem);
Izik Eidus72dc67a2008-02-10 18:04:15 +02002687
2688 vcpu->arch.apic->vapic_page = page;
Avi Kivityb93463a2007-10-25 16:52:32 +02002689}
2690
2691static void vapic_exit(struct kvm_vcpu *vcpu)
2692{
2693 struct kvm_lapic *apic = vcpu->arch.apic;
2694
2695 if (!apic || !apic->vapic_addr)
2696 return;
2697
2698 kvm_release_page_dirty(apic->vapic_page);
2699 mark_page_dirty(vcpu->kvm, apic->vapic_addr >> PAGE_SHIFT);
2700}
2701
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002702static int __vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2703{
2704 int r;
2705
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002706 if (unlikely(vcpu->arch.mp_state == VCPU_MP_STATE_SIPI_RECEIVED)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002707 pr_debug("vcpu %d received sipi with vector # %x\n",
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002708 vcpu->vcpu_id, vcpu->arch.sipi_vector);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002709 kvm_lapic_reset(vcpu);
2710 r = kvm_x86_ops->vcpu_reset(vcpu);
2711 if (r)
2712 return r;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002713 vcpu->arch.mp_state = VCPU_MP_STATE_RUNNABLE;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002714 }
2715
Avi Kivityb93463a2007-10-25 16:52:32 +02002716 vapic_enter(vcpu);
2717
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002718preempted:
2719 if (vcpu->guest_debug.enabled)
2720 kvm_x86_ops->guest_debug_pre(vcpu);
2721
2722again:
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002723 if (vcpu->requests)
2724 if (test_and_clear_bit(KVM_REQ_MMU_RELOAD, &vcpu->requests))
2725 kvm_mmu_unload(vcpu);
2726
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002727 r = kvm_mmu_reload(vcpu);
2728 if (unlikely(r))
2729 goto out;
2730
Avi Kivity2f52d582008-01-16 12:49:30 +02002731 if (vcpu->requests) {
2732 if (test_and_clear_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests))
2733 __kvm_migrate_apic_timer(vcpu);
Avi Kivityb93463a2007-10-25 16:52:32 +02002734 if (test_and_clear_bit(KVM_REQ_REPORT_TPR_ACCESS,
2735 &vcpu->requests)) {
2736 kvm_run->exit_reason = KVM_EXIT_TPR_ACCESS;
2737 r = 0;
2738 goto out;
2739 }
Joerg Roedel71c4dfa2008-02-26 16:49:16 +01002740 if (test_and_clear_bit(KVM_REQ_TRIPLE_FAULT, &vcpu->requests)) {
2741 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2742 r = 0;
2743 goto out;
2744 }
Avi Kivity2f52d582008-01-16 12:49:30 +02002745 }
Avi Kivityb93463a2007-10-25 16:52:32 +02002746
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002747 kvm_inject_pending_timer_irqs(vcpu);
2748
2749 preempt_disable();
2750
2751 kvm_x86_ops->prepare_guest_switch(vcpu);
2752 kvm_load_guest_fpu(vcpu);
2753
2754 local_irq_disable();
2755
Avi Kivity6c142802008-01-15 18:27:32 +02002756 if (need_resched()) {
2757 local_irq_enable();
2758 preempt_enable();
2759 r = 1;
2760 goto out;
2761 }
2762
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002763 if (vcpu->requests)
2764 if (test_bit(KVM_REQ_MMU_RELOAD, &vcpu->requests)) {
2765 local_irq_enable();
2766 preempt_enable();
2767 r = 1;
2768 goto out;
2769 }
2770
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002771 if (signal_pending(current)) {
2772 local_irq_enable();
2773 preempt_enable();
2774 r = -EINTR;
2775 kvm_run->exit_reason = KVM_EXIT_INTR;
2776 ++vcpu->stat.signal_exits;
2777 goto out;
2778 }
2779
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002780 if (vcpu->arch.exception.pending)
Avi Kivity298101d2007-11-25 13:41:11 +02002781 __queue_exception(vcpu);
2782 else if (irqchip_in_kernel(vcpu->kvm))
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002783 kvm_x86_ops->inject_pending_irq(vcpu);
Avi Kivityeb9774f2007-11-25 17:45:31 +02002784 else
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002785 kvm_x86_ops->inject_pending_vectors(vcpu, kvm_run);
2786
Avi Kivityb93463a2007-10-25 16:52:32 +02002787 kvm_lapic_sync_to_vapic(vcpu);
2788
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002789 vcpu->guest_mode = 1;
2790 kvm_guest_enter();
2791
2792 if (vcpu->requests)
2793 if (test_and_clear_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests))
2794 kvm_x86_ops->tlb_flush(vcpu);
2795
2796 kvm_x86_ops->run(vcpu, kvm_run);
2797
2798 vcpu->guest_mode = 0;
2799 local_irq_enable();
2800
2801 ++vcpu->stat.exits;
2802
2803 /*
2804 * We must have an instruction between local_irq_enable() and
2805 * kvm_guest_exit(), so the timer interrupt isn't delayed by
2806 * the interrupt shadow. The stat.exits increment will do nicely.
2807 * But we need to prevent reordering, hence this barrier():
2808 */
2809 barrier();
2810
2811 kvm_guest_exit();
2812
2813 preempt_enable();
2814
2815 /*
2816 * Profile KVM exit RIPs:
2817 */
2818 if (unlikely(prof_on == KVM_PROFILING)) {
2819 kvm_x86_ops->cache_regs(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002820 profile_hit(KVM_PROFILING, (void *)vcpu->arch.rip);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002821 }
2822
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002823 if (vcpu->arch.exception.pending && kvm_x86_ops->exception_injected(vcpu))
2824 vcpu->arch.exception.pending = false;
Avi Kivity298101d2007-11-25 13:41:11 +02002825
Avi Kivityb93463a2007-10-25 16:52:32 +02002826 kvm_lapic_sync_from_vapic(vcpu);
2827
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002828 r = kvm_x86_ops->handle_exit(kvm_run, vcpu);
2829
2830 if (r > 0) {
2831 if (dm_request_for_irq_injection(vcpu, kvm_run)) {
2832 r = -EINTR;
2833 kvm_run->exit_reason = KVM_EXIT_INTR;
2834 ++vcpu->stat.request_irq_exits;
2835 goto out;
2836 }
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002837 if (!need_resched())
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002838 goto again;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002839 }
2840
2841out:
2842 if (r > 0) {
2843 kvm_resched(vcpu);
2844 goto preempted;
2845 }
2846
2847 post_kvm_run_save(vcpu, kvm_run);
2848
Avi Kivityb93463a2007-10-25 16:52:32 +02002849 vapic_exit(vcpu);
2850
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002851 return r;
2852}
2853
2854int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2855{
2856 int r;
2857 sigset_t sigsaved;
2858
2859 vcpu_load(vcpu);
2860
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002861 if (unlikely(vcpu->arch.mp_state == VCPU_MP_STATE_UNINITIALIZED)) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002862 kvm_vcpu_block(vcpu);
2863 vcpu_put(vcpu);
2864 return -EAGAIN;
2865 }
2866
2867 if (vcpu->sigset_active)
2868 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
2869
2870 /* re-sync apic's tpr */
2871 if (!irqchip_in_kernel(vcpu->kvm))
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002872 kvm_set_cr8(vcpu, kvm_run->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002873
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002874 if (vcpu->arch.pio.cur_count) {
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002875 r = complete_pio(vcpu);
2876 if (r)
2877 goto out;
2878 }
2879#if CONFIG_HAS_IOMEM
2880 if (vcpu->mmio_needed) {
2881 memcpy(vcpu->mmio_data, kvm_run->mmio.data, 8);
2882 vcpu->mmio_read_completed = 1;
2883 vcpu->mmio_needed = 0;
2884 r = emulate_instruction(vcpu, kvm_run,
Sheng Yang571008d2008-01-02 14:49:22 +08002885 vcpu->arch.mmio_fault_cr2, 0,
2886 EMULTYPE_NO_DECODE);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002887 if (r == EMULATE_DO_MMIO) {
2888 /*
2889 * Read-modify-write. Back to userspace.
2890 */
2891 r = 0;
2892 goto out;
2893 }
2894 }
2895#endif
2896 if (kvm_run->exit_reason == KVM_EXIT_HYPERCALL) {
2897 kvm_x86_ops->cache_regs(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002898 vcpu->arch.regs[VCPU_REGS_RAX] = kvm_run->hypercall.ret;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002899 kvm_x86_ops->decache_regs(vcpu);
2900 }
2901
2902 r = __vcpu_run(vcpu, kvm_run);
2903
2904out:
2905 if (vcpu->sigset_active)
2906 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
2907
2908 vcpu_put(vcpu);
2909 return r;
2910}
2911
2912int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
2913{
2914 vcpu_load(vcpu);
2915
2916 kvm_x86_ops->cache_regs(vcpu);
2917
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002918 regs->rax = vcpu->arch.regs[VCPU_REGS_RAX];
2919 regs->rbx = vcpu->arch.regs[VCPU_REGS_RBX];
2920 regs->rcx = vcpu->arch.regs[VCPU_REGS_RCX];
2921 regs->rdx = vcpu->arch.regs[VCPU_REGS_RDX];
2922 regs->rsi = vcpu->arch.regs[VCPU_REGS_RSI];
2923 regs->rdi = vcpu->arch.regs[VCPU_REGS_RDI];
2924 regs->rsp = vcpu->arch.regs[VCPU_REGS_RSP];
2925 regs->rbp = vcpu->arch.regs[VCPU_REGS_RBP];
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002926#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002927 regs->r8 = vcpu->arch.regs[VCPU_REGS_R8];
2928 regs->r9 = vcpu->arch.regs[VCPU_REGS_R9];
2929 regs->r10 = vcpu->arch.regs[VCPU_REGS_R10];
2930 regs->r11 = vcpu->arch.regs[VCPU_REGS_R11];
2931 regs->r12 = vcpu->arch.regs[VCPU_REGS_R12];
2932 regs->r13 = vcpu->arch.regs[VCPU_REGS_R13];
2933 regs->r14 = vcpu->arch.regs[VCPU_REGS_R14];
2934 regs->r15 = vcpu->arch.regs[VCPU_REGS_R15];
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002935#endif
2936
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002937 regs->rip = vcpu->arch.rip;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002938 regs->rflags = kvm_x86_ops->get_rflags(vcpu);
2939
2940 /*
2941 * Don't leak debug flags in case they were set for guest debugging
2942 */
2943 if (vcpu->guest_debug.enabled && vcpu->guest_debug.singlestep)
2944 regs->rflags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
2945
2946 vcpu_put(vcpu);
2947
2948 return 0;
2949}
2950
2951int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
2952{
2953 vcpu_load(vcpu);
2954
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002955 vcpu->arch.regs[VCPU_REGS_RAX] = regs->rax;
2956 vcpu->arch.regs[VCPU_REGS_RBX] = regs->rbx;
2957 vcpu->arch.regs[VCPU_REGS_RCX] = regs->rcx;
2958 vcpu->arch.regs[VCPU_REGS_RDX] = regs->rdx;
2959 vcpu->arch.regs[VCPU_REGS_RSI] = regs->rsi;
2960 vcpu->arch.regs[VCPU_REGS_RDI] = regs->rdi;
2961 vcpu->arch.regs[VCPU_REGS_RSP] = regs->rsp;
2962 vcpu->arch.regs[VCPU_REGS_RBP] = regs->rbp;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002963#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002964 vcpu->arch.regs[VCPU_REGS_R8] = regs->r8;
2965 vcpu->arch.regs[VCPU_REGS_R9] = regs->r9;
2966 vcpu->arch.regs[VCPU_REGS_R10] = regs->r10;
2967 vcpu->arch.regs[VCPU_REGS_R11] = regs->r11;
2968 vcpu->arch.regs[VCPU_REGS_R12] = regs->r12;
2969 vcpu->arch.regs[VCPU_REGS_R13] = regs->r13;
2970 vcpu->arch.regs[VCPU_REGS_R14] = regs->r14;
2971 vcpu->arch.regs[VCPU_REGS_R15] = regs->r15;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002972#endif
2973
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002974 vcpu->arch.rip = regs->rip;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002975 kvm_x86_ops->set_rflags(vcpu, regs->rflags);
2976
2977 kvm_x86_ops->decache_regs(vcpu);
2978
2979 vcpu_put(vcpu);
2980
2981 return 0;
2982}
2983
2984static void get_segment(struct kvm_vcpu *vcpu,
2985 struct kvm_segment *var, int seg)
2986{
Harvey Harrison14af3f32008-02-19 10:25:50 -08002987 kvm_x86_ops->get_segment(vcpu, var, seg);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05002988}
2989
2990void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
2991{
2992 struct kvm_segment cs;
2993
2994 get_segment(vcpu, &cs, VCPU_SREG_CS);
2995 *db = cs.db;
2996 *l = cs.l;
2997}
2998EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
2999
3000int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
3001 struct kvm_sregs *sregs)
3002{
3003 struct descriptor_table dt;
3004 int pending_vec;
3005
3006 vcpu_load(vcpu);
3007
3008 get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
3009 get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
3010 get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
3011 get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
3012 get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
3013 get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
3014
3015 get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
3016 get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
3017
3018 kvm_x86_ops->get_idt(vcpu, &dt);
3019 sregs->idt.limit = dt.limit;
3020 sregs->idt.base = dt.base;
3021 kvm_x86_ops->get_gdt(vcpu, &dt);
3022 sregs->gdt.limit = dt.limit;
3023 sregs->gdt.base = dt.base;
3024
3025 kvm_x86_ops->decache_cr4_guest_bits(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003026 sregs->cr0 = vcpu->arch.cr0;
3027 sregs->cr2 = vcpu->arch.cr2;
3028 sregs->cr3 = vcpu->arch.cr3;
3029 sregs->cr4 = vcpu->arch.cr4;
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02003030 sregs->cr8 = kvm_get_cr8(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003031 sregs->efer = vcpu->arch.shadow_efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05003032 sregs->apic_base = kvm_get_apic_base(vcpu);
3033
3034 if (irqchip_in_kernel(vcpu->kvm)) {
3035 memset(sregs->interrupt_bitmap, 0,
3036 sizeof sregs->interrupt_bitmap);
3037 pending_vec = kvm_x86_ops->get_irq(vcpu);
3038 if (pending_vec >= 0)
3039 set_bit(pending_vec,
3040 (unsigned long *)sregs->interrupt_bitmap);
3041 } else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003042 memcpy(sregs->interrupt_bitmap, vcpu->arch.irq_pending,
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05003043 sizeof sregs->interrupt_bitmap);
3044
3045 vcpu_put(vcpu);
3046
3047 return 0;
3048}
3049
3050static void set_segment(struct kvm_vcpu *vcpu,
3051 struct kvm_segment *var, int seg)
3052{
Harvey Harrison14af3f32008-02-19 10:25:50 -08003053 kvm_x86_ops->set_segment(vcpu, var, seg);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05003054}
3055
3056int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
3057 struct kvm_sregs *sregs)
3058{
3059 int mmu_reset_needed = 0;
3060 int i, pending_vec, max_bits;
3061 struct descriptor_table dt;
3062
3063 vcpu_load(vcpu);
3064
3065 dt.limit = sregs->idt.limit;
3066 dt.base = sregs->idt.base;
3067 kvm_x86_ops->set_idt(vcpu, &dt);
3068 dt.limit = sregs->gdt.limit;
3069 dt.base = sregs->gdt.base;
3070 kvm_x86_ops->set_gdt(vcpu, &dt);
3071
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003072 vcpu->arch.cr2 = sregs->cr2;
3073 mmu_reset_needed |= vcpu->arch.cr3 != sregs->cr3;
3074 vcpu->arch.cr3 = sregs->cr3;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05003075
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02003076 kvm_set_cr8(vcpu, sregs->cr8);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05003077
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003078 mmu_reset_needed |= vcpu->arch.shadow_efer != sregs->efer;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05003079 kvm_x86_ops->set_efer(vcpu, sregs->efer);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05003080 kvm_set_apic_base(vcpu, sregs->apic_base);
3081
3082 kvm_x86_ops->decache_cr4_guest_bits(vcpu);
3083
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003084 mmu_reset_needed |= vcpu->arch.cr0 != sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05003085 kvm_x86_ops->set_cr0(vcpu, sregs->cr0);
Paul Knowlesd7306162008-02-06 11:02:35 +00003086 vcpu->arch.cr0 = sregs->cr0;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05003087
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003088 mmu_reset_needed |= vcpu->arch.cr4 != sregs->cr4;
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05003089 kvm_x86_ops->set_cr4(vcpu, sregs->cr4);
3090 if (!is_long_mode(vcpu) && is_pae(vcpu))
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003091 load_pdptrs(vcpu, vcpu->arch.cr3);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05003092
3093 if (mmu_reset_needed)
3094 kvm_mmu_reset_context(vcpu);
3095
3096 if (!irqchip_in_kernel(vcpu->kvm)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003097 memcpy(vcpu->arch.irq_pending, sregs->interrupt_bitmap,
3098 sizeof vcpu->arch.irq_pending);
3099 vcpu->arch.irq_summary = 0;
3100 for (i = 0; i < ARRAY_SIZE(vcpu->arch.irq_pending); ++i)
3101 if (vcpu->arch.irq_pending[i])
3102 __set_bit(i, &vcpu->arch.irq_summary);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -05003103 } else {
3104 max_bits = (sizeof sregs->interrupt_bitmap) << 3;
3105 pending_vec = find_first_bit(
3106 (const unsigned long *)sregs->interrupt_bitmap,
3107 max_bits);
3108 /* Only pending external irq is handled here */
3109 if (pending_vec < max_bits) {
3110 kvm_x86_ops->set_irq(vcpu, pending_vec);
3111 pr_debug("Set back pending irq %d\n",
3112 pending_vec);
3113 }
3114 }
3115
3116 set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
3117 set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
3118 set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
3119 set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
3120 set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
3121 set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
3122
3123 set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
3124 set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
3125
3126 vcpu_put(vcpu);
3127
3128 return 0;
3129}
3130
3131int kvm_arch_vcpu_ioctl_debug_guest(struct kvm_vcpu *vcpu,
3132 struct kvm_debug_guest *dbg)
3133{
3134 int r;
3135
3136 vcpu_load(vcpu);
3137
3138 r = kvm_x86_ops->set_guest_debug(vcpu, dbg);
3139
3140 vcpu_put(vcpu);
3141
3142 return r;
3143}
3144
3145/*
Hollis Blanchardd0752062007-10-31 17:24:25 -05003146 * fxsave fpu state. Taken from x86_64/processor.h. To be killed when
3147 * we have asm/x86/processor.h
3148 */
3149struct fxsave {
3150 u16 cwd;
3151 u16 swd;
3152 u16 twd;
3153 u16 fop;
3154 u64 rip;
3155 u64 rdp;
3156 u32 mxcsr;
3157 u32 mxcsr_mask;
3158 u32 st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
3159#ifdef CONFIG_X86_64
3160 u32 xmm_space[64]; /* 16*16 bytes for each XMM-reg = 256 bytes */
3161#else
3162 u32 xmm_space[32]; /* 8*16 bytes for each XMM-reg = 128 bytes */
3163#endif
3164};
3165
Zhang Xiantao8b006792007-11-16 13:05:55 +08003166/*
3167 * Translate a guest virtual address to a guest physical address.
3168 */
3169int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
3170 struct kvm_translation *tr)
3171{
3172 unsigned long vaddr = tr->linear_address;
3173 gpa_t gpa;
3174
3175 vcpu_load(vcpu);
Izik Eidus72dc67a2008-02-10 18:04:15 +02003176 down_read(&vcpu->kvm->slots_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003177 gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, vaddr);
Izik Eidus72dc67a2008-02-10 18:04:15 +02003178 up_read(&vcpu->kvm->slots_lock);
Zhang Xiantao8b006792007-11-16 13:05:55 +08003179 tr->physical_address = gpa;
3180 tr->valid = gpa != UNMAPPED_GVA;
3181 tr->writeable = 1;
3182 tr->usermode = 0;
Zhang Xiantao8b006792007-11-16 13:05:55 +08003183 vcpu_put(vcpu);
3184
3185 return 0;
3186}
3187
Hollis Blanchardd0752062007-10-31 17:24:25 -05003188int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
3189{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003190 struct fxsave *fxsave = (struct fxsave *)&vcpu->arch.guest_fx_image;
Hollis Blanchardd0752062007-10-31 17:24:25 -05003191
3192 vcpu_load(vcpu);
3193
3194 memcpy(fpu->fpr, fxsave->st_space, 128);
3195 fpu->fcw = fxsave->cwd;
3196 fpu->fsw = fxsave->swd;
3197 fpu->ftwx = fxsave->twd;
3198 fpu->last_opcode = fxsave->fop;
3199 fpu->last_ip = fxsave->rip;
3200 fpu->last_dp = fxsave->rdp;
3201 memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
3202
3203 vcpu_put(vcpu);
3204
3205 return 0;
3206}
3207
3208int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
3209{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003210 struct fxsave *fxsave = (struct fxsave *)&vcpu->arch.guest_fx_image;
Hollis Blanchardd0752062007-10-31 17:24:25 -05003211
3212 vcpu_load(vcpu);
3213
3214 memcpy(fxsave->st_space, fpu->fpr, 128);
3215 fxsave->cwd = fpu->fcw;
3216 fxsave->swd = fpu->fsw;
3217 fxsave->twd = fpu->ftwx;
3218 fxsave->fop = fpu->last_opcode;
3219 fxsave->rip = fpu->last_ip;
3220 fxsave->rdp = fpu->last_dp;
3221 memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
3222
3223 vcpu_put(vcpu);
3224
3225 return 0;
3226}
3227
3228void fx_init(struct kvm_vcpu *vcpu)
3229{
3230 unsigned after_mxcsr_mask;
3231
3232 /* Initialize guest FPU by resetting ours and saving into guest's */
3233 preempt_disable();
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003234 fx_save(&vcpu->arch.host_fx_image);
Hollis Blanchardd0752062007-10-31 17:24:25 -05003235 fpu_init();
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003236 fx_save(&vcpu->arch.guest_fx_image);
3237 fx_restore(&vcpu->arch.host_fx_image);
Hollis Blanchardd0752062007-10-31 17:24:25 -05003238 preempt_enable();
3239
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003240 vcpu->arch.cr0 |= X86_CR0_ET;
Hollis Blanchardd0752062007-10-31 17:24:25 -05003241 after_mxcsr_mask = offsetof(struct i387_fxsave_struct, st_space);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003242 vcpu->arch.guest_fx_image.mxcsr = 0x1f80;
3243 memset((void *)&vcpu->arch.guest_fx_image + after_mxcsr_mask,
Hollis Blanchardd0752062007-10-31 17:24:25 -05003244 0, sizeof(struct i387_fxsave_struct) - after_mxcsr_mask);
3245}
3246EXPORT_SYMBOL_GPL(fx_init);
3247
3248void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
3249{
3250 if (!vcpu->fpu_active || vcpu->guest_fpu_loaded)
3251 return;
3252
3253 vcpu->guest_fpu_loaded = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003254 fx_save(&vcpu->arch.host_fx_image);
3255 fx_restore(&vcpu->arch.guest_fx_image);
Hollis Blanchardd0752062007-10-31 17:24:25 -05003256}
3257EXPORT_SYMBOL_GPL(kvm_load_guest_fpu);
3258
3259void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
3260{
3261 if (!vcpu->guest_fpu_loaded)
3262 return;
3263
3264 vcpu->guest_fpu_loaded = 0;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003265 fx_save(&vcpu->arch.guest_fx_image);
3266 fx_restore(&vcpu->arch.host_fx_image);
Avi Kivityf096ed82007-11-18 13:54:33 +02003267 ++vcpu->stat.fpu_reload;
Hollis Blanchardd0752062007-10-31 17:24:25 -05003268}
3269EXPORT_SYMBOL_GPL(kvm_put_guest_fpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003270
3271void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
3272{
3273 kvm_x86_ops->vcpu_free(vcpu);
3274}
3275
3276struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
3277 unsigned int id)
3278{
Avi Kivity26e52152007-11-20 15:30:24 +02003279 return kvm_x86_ops->vcpu_create(kvm, id);
3280}
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003281
Avi Kivity26e52152007-11-20 15:30:24 +02003282int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
3283{
3284 int r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003285
3286 /* We do fxsave: this must be aligned. */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003287 BUG_ON((unsigned long)&vcpu->arch.host_fx_image & 0xF);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003288
3289 vcpu_load(vcpu);
3290 r = kvm_arch_vcpu_reset(vcpu);
3291 if (r == 0)
3292 r = kvm_mmu_setup(vcpu);
3293 vcpu_put(vcpu);
3294 if (r < 0)
3295 goto free_vcpu;
3296
Avi Kivity26e52152007-11-20 15:30:24 +02003297 return 0;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003298free_vcpu:
3299 kvm_x86_ops->vcpu_free(vcpu);
Avi Kivity26e52152007-11-20 15:30:24 +02003300 return r;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003301}
3302
Hollis Blanchardd40ccc62007-11-19 14:04:43 -06003303void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003304{
3305 vcpu_load(vcpu);
3306 kvm_mmu_unload(vcpu);
3307 vcpu_put(vcpu);
3308
3309 kvm_x86_ops->vcpu_free(vcpu);
3310}
3311
3312int kvm_arch_vcpu_reset(struct kvm_vcpu *vcpu)
3313{
3314 return kvm_x86_ops->vcpu_reset(vcpu);
3315}
3316
3317void kvm_arch_hardware_enable(void *garbage)
3318{
3319 kvm_x86_ops->hardware_enable(garbage);
3320}
3321
3322void kvm_arch_hardware_disable(void *garbage)
3323{
3324 kvm_x86_ops->hardware_disable(garbage);
3325}
3326
3327int kvm_arch_hardware_setup(void)
3328{
3329 return kvm_x86_ops->hardware_setup();
3330}
3331
3332void kvm_arch_hardware_unsetup(void)
3333{
3334 kvm_x86_ops->hardware_unsetup();
3335}
3336
3337void kvm_arch_check_processor_compat(void *rtn)
3338{
3339 kvm_x86_ops->check_processor_compatibility(rtn);
3340}
3341
3342int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
3343{
3344 struct page *page;
3345 struct kvm *kvm;
3346 int r;
3347
3348 BUG_ON(vcpu->kvm == NULL);
3349 kvm = vcpu->kvm;
3350
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003351 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003352 if (!irqchip_in_kernel(kvm) || vcpu->vcpu_id == 0)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003353 vcpu->arch.mp_state = VCPU_MP_STATE_RUNNABLE;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003354 else
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003355 vcpu->arch.mp_state = VCPU_MP_STATE_UNINITIALIZED;
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003356
3357 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
3358 if (!page) {
3359 r = -ENOMEM;
3360 goto fail;
3361 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003362 vcpu->arch.pio_data = page_address(page);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003363
3364 r = kvm_mmu_create(vcpu);
3365 if (r < 0)
3366 goto fail_free_pio_data;
3367
3368 if (irqchip_in_kernel(kvm)) {
3369 r = kvm_create_lapic(vcpu);
3370 if (r < 0)
3371 goto fail_mmu_destroy;
3372 }
3373
3374 return 0;
3375
3376fail_mmu_destroy:
3377 kvm_mmu_destroy(vcpu);
3378fail_free_pio_data:
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003379 free_page((unsigned long)vcpu->arch.pio_data);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003380fail:
3381 return r;
3382}
3383
3384void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
3385{
3386 kvm_free_lapic(vcpu);
3387 kvm_mmu_destroy(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003388 free_page((unsigned long)vcpu->arch.pio_data);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +08003389}
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08003390
3391struct kvm *kvm_arch_create_vm(void)
3392{
3393 struct kvm *kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL);
3394
3395 if (!kvm)
3396 return ERR_PTR(-ENOMEM);
3397
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003398 INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08003399
3400 return kvm;
3401}
3402
3403static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
3404{
3405 vcpu_load(vcpu);
3406 kvm_mmu_unload(vcpu);
3407 vcpu_put(vcpu);
3408}
3409
3410static void kvm_free_vcpus(struct kvm *kvm)
3411{
3412 unsigned int i;
3413
3414 /*
3415 * Unpin any mmu pages first.
3416 */
3417 for (i = 0; i < KVM_MAX_VCPUS; ++i)
3418 if (kvm->vcpus[i])
3419 kvm_unload_vcpu_mmu(kvm->vcpus[i]);
3420 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
3421 if (kvm->vcpus[i]) {
3422 kvm_arch_vcpu_free(kvm->vcpus[i]);
3423 kvm->vcpus[i] = NULL;
3424 }
3425 }
3426
3427}
3428
3429void kvm_arch_destroy_vm(struct kvm *kvm)
3430{
Sheng Yang78376992008-01-28 05:10:22 +08003431 kvm_free_pit(kvm);
Zhang Xiantaod7deeeb02007-12-14 10:17:34 +08003432 kfree(kvm->arch.vpic);
3433 kfree(kvm->arch.vioapic);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +08003434 kvm_free_vcpus(kvm);
3435 kvm_free_physmem(kvm);
3436 kfree(kvm);
3437}
Zhang Xiantao0de10342007-11-20 16:25:04 +08003438
3439int kvm_arch_set_memory_region(struct kvm *kvm,
3440 struct kvm_userspace_memory_region *mem,
3441 struct kvm_memory_slot old,
3442 int user_alloc)
3443{
3444 int npages = mem->memory_size >> PAGE_SHIFT;
3445 struct kvm_memory_slot *memslot = &kvm->memslots[mem->slot];
3446
3447 /*To keep backward compatibility with older userspace,
3448 *x86 needs to hanlde !user_alloc case.
3449 */
3450 if (!user_alloc) {
3451 if (npages && !old.rmap) {
Izik Eidus72dc67a2008-02-10 18:04:15 +02003452 down_write(&current->mm->mmap_sem);
Zhang Xiantao0de10342007-11-20 16:25:04 +08003453 memslot->userspace_addr = do_mmap(NULL, 0,
3454 npages * PAGE_SIZE,
3455 PROT_READ | PROT_WRITE,
3456 MAP_SHARED | MAP_ANONYMOUS,
3457 0);
Izik Eidus72dc67a2008-02-10 18:04:15 +02003458 up_write(&current->mm->mmap_sem);
Zhang Xiantao0de10342007-11-20 16:25:04 +08003459
3460 if (IS_ERR((void *)memslot->userspace_addr))
3461 return PTR_ERR((void *)memslot->userspace_addr);
3462 } else {
3463 if (!old.user_alloc && old.rmap) {
3464 int ret;
3465
Izik Eidus72dc67a2008-02-10 18:04:15 +02003466 down_write(&current->mm->mmap_sem);
Zhang Xiantao0de10342007-11-20 16:25:04 +08003467 ret = do_munmap(current->mm, old.userspace_addr,
3468 old.npages * PAGE_SIZE);
Izik Eidus72dc67a2008-02-10 18:04:15 +02003469 up_write(&current->mm->mmap_sem);
Zhang Xiantao0de10342007-11-20 16:25:04 +08003470 if (ret < 0)
3471 printk(KERN_WARNING
3472 "kvm_vm_ioctl_set_memory_region: "
3473 "failed to munmap memory\n");
3474 }
3475 }
3476 }
3477
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003478 if (!kvm->arch.n_requested_mmu_pages) {
Zhang Xiantao0de10342007-11-20 16:25:04 +08003479 unsigned int nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm);
3480 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
3481 }
3482
3483 kvm_mmu_slot_remove_write_access(kvm, mem->slot);
3484 kvm_flush_remote_tlbs(kvm);
3485
3486 return 0;
3487}
Zhang Xiantao1d737c82007-12-14 09:35:10 +08003488
3489int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
3490{
3491 return vcpu->arch.mp_state == VCPU_MP_STATE_RUNNABLE
3492 || vcpu->arch.mp_state == VCPU_MP_STATE_SIPI_RECEIVED;
3493}
Zhang Xiantao57361992007-12-17 14:21:40 +08003494
3495static void vcpu_kick_intr(void *info)
3496{
3497#ifdef DEBUG
3498 struct kvm_vcpu *vcpu = (struct kvm_vcpu *)info;
3499 printk(KERN_DEBUG "vcpu_kick_intr %p \n", vcpu);
3500#endif
3501}
3502
3503void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
3504{
3505 int ipi_pcpu = vcpu->cpu;
3506
3507 if (waitqueue_active(&vcpu->wq)) {
3508 wake_up_interruptible(&vcpu->wq);
3509 ++vcpu->stat.halt_wakeup;
3510 }
3511 if (vcpu->guest_mode)
3512 smp_call_function_single(ipi_pcpu, vcpu_kick_intr, vcpu, 0, 0);
3513}