blob: 4f115a8e45ef803ae1b1f1d494690bd98b9488c4 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
8 *
9 * Authors:
10 * Avi Kivity <avi@qumranet.com>
11 * Yaniv Kamay <yaniv@qumranet.com>
12 *
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
15 *
16 */
17
18#include "kvm.h"
Laurent Viviere7d5d762007-07-30 13:41:19 +030019#include "x86_emulate.h"
Eddie Dong85f455f2007-07-06 12:20:49 +030020#include "irq.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080021#include "vmx.h"
Avi Kivitye4956062007-06-28 14:15:57 -040022#include "segment_descriptor.h"
23
Avi Kivity6aa8b732006-12-10 02:21:36 -080024#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020025#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080026#include <linux/mm.h>
27#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040028#include <linux/sched.h>
Avi Kivitye4956062007-06-28 14:15:57 -040029
Avi Kivity6aa8b732006-12-10 02:21:36 -080030#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080031#include <asm/desc.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080032
Avi Kivity6aa8b732006-12-10 02:21:36 -080033MODULE_AUTHOR("Qumranet");
34MODULE_LICENSE("GPL");
35
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040036struct vmcs {
37 u32 revision_id;
38 u32 abort;
39 char data[0];
40};
41
42struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100043 struct kvm_vcpu vcpu;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040044 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +030045 u8 fail;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040046 struct kvm_msr_entry *guest_msrs;
47 struct kvm_msr_entry *host_msrs;
48 int nmsrs;
49 int save_nmsrs;
50 int msr_offset_efer;
51#ifdef CONFIG_X86_64
52 int msr_offset_kernel_gs_base;
53#endif
54 struct vmcs *vmcs;
55 struct {
56 int loaded;
57 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +020058 int gs_ldt_reload_needed;
59 int fs_reload_needed;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040060 }host_state;
61
62};
63
64static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
65{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100066 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040067}
68
Avi Kivity75880a02007-06-20 11:20:04 +030069static int init_rmode_tss(struct kvm *kvm);
70
Avi Kivity6aa8b732006-12-10 02:21:36 -080071static DEFINE_PER_CPU(struct vmcs *, vmxarea);
72static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
73
He, Qingfdef3ad2007-04-30 09:45:24 +030074static struct page *vmx_io_bitmap_a;
75static struct page *vmx_io_bitmap_b;
76
Eddie Dong2cc51562007-05-21 07:28:09 +030077#define EFER_SAVE_RESTORE_BITS ((u64)EFER_SCE)
Avi Kivity6aa8b732006-12-10 02:21:36 -080078
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +030079static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -080080 int size;
81 int order;
82 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +030083 u32 pin_based_exec_ctrl;
84 u32 cpu_based_exec_ctrl;
85 u32 vmexit_ctrl;
86 u32 vmentry_ctrl;
87} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -080088
89#define VMX_SEGMENT_FIELD(seg) \
90 [VCPU_SREG_##seg] = { \
91 .selector = GUEST_##seg##_SELECTOR, \
92 .base = GUEST_##seg##_BASE, \
93 .limit = GUEST_##seg##_LIMIT, \
94 .ar_bytes = GUEST_##seg##_AR_BYTES, \
95 }
96
97static struct kvm_vmx_segment_field {
98 unsigned selector;
99 unsigned base;
100 unsigned limit;
101 unsigned ar_bytes;
102} kvm_vmx_segment_fields[] = {
103 VMX_SEGMENT_FIELD(CS),
104 VMX_SEGMENT_FIELD(DS),
105 VMX_SEGMENT_FIELD(ES),
106 VMX_SEGMENT_FIELD(FS),
107 VMX_SEGMENT_FIELD(GS),
108 VMX_SEGMENT_FIELD(SS),
109 VMX_SEGMENT_FIELD(TR),
110 VMX_SEGMENT_FIELD(LDTR),
111};
112
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300113/*
114 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
115 * away by decrementing the array size.
116 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800117static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800118#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800119 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, MSR_KERNEL_GS_BASE,
120#endif
121 MSR_EFER, MSR_K6_STAR,
122};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200123#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800124
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400125static void load_msrs(struct kvm_msr_entry *e, int n)
126{
127 int i;
128
129 for (i = 0; i < n; ++i)
130 wrmsrl(e[i].index, e[i].data);
131}
132
133static void save_msrs(struct kvm_msr_entry *e, int n)
134{
135 int i;
136
137 for (i = 0; i < n; ++i)
138 rdmsrl(e[i].index, e[i].data);
139}
140
141static inline u64 msr_efer_save_restore_bits(struct kvm_msr_entry msr)
Eddie Dong2cc51562007-05-21 07:28:09 +0300142{
143 return (u64)msr.data & EFER_SAVE_RESTORE_BITS;
144}
145
Rusty Russell8b9cf982007-07-30 16:31:43 +1000146static inline int msr_efer_need_save_restore(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300147{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400148 int efer_offset = vmx->msr_offset_efer;
149 return msr_efer_save_restore_bits(vmx->host_msrs[efer_offset]) !=
150 msr_efer_save_restore_bits(vmx->guest_msrs[efer_offset]);
Eddie Dong2cc51562007-05-21 07:28:09 +0300151}
152
Avi Kivity6aa8b732006-12-10 02:21:36 -0800153static inline int is_page_fault(u32 intr_info)
154{
155 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
156 INTR_INFO_VALID_MASK)) ==
157 (INTR_TYPE_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
158}
159
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300160static inline int is_no_device(u32 intr_info)
161{
162 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
163 INTR_INFO_VALID_MASK)) ==
164 (INTR_TYPE_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
165}
166
Avi Kivity6aa8b732006-12-10 02:21:36 -0800167static inline int is_external_interrupt(u32 intr_info)
168{
169 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
170 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
171}
172
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800173static inline int cpu_has_vmx_tpr_shadow(void)
174{
175 return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW);
176}
177
178static inline int vm_need_tpr_shadow(struct kvm *kvm)
179{
180 return ((cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm)));
181}
182
Rusty Russell8b9cf982007-07-30 16:31:43 +1000183static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800184{
185 int i;
186
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400187 for (i = 0; i < vmx->nmsrs; ++i)
188 if (vmx->guest_msrs[i].index == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300189 return i;
190 return -1;
191}
192
Rusty Russell8b9cf982007-07-30 16:31:43 +1000193static struct kvm_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300194{
195 int i;
196
Rusty Russell8b9cf982007-07-30 16:31:43 +1000197 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300198 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400199 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000200 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800201}
202
Avi Kivity6aa8b732006-12-10 02:21:36 -0800203static void vmcs_clear(struct vmcs *vmcs)
204{
205 u64 phys_addr = __pa(vmcs);
206 u8 error;
207
208 asm volatile (ASM_VMX_VMCLEAR_RAX "; setna %0"
209 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
210 : "cc", "memory");
211 if (error)
212 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
213 vmcs, phys_addr);
214}
215
216static void __vcpu_clear(void *arg)
217{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000218 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800219 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800220
Rusty Russell8b9cf982007-07-30 16:31:43 +1000221 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400222 vmcs_clear(vmx->vmcs);
223 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800224 per_cpu(current_vmcs, cpu) = NULL;
Rusty Russell8b9cf982007-07-30 16:31:43 +1000225 rdtscll(vmx->vcpu.host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800226}
227
Rusty Russell8b9cf982007-07-30 16:31:43 +1000228static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800229{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000230 if (vmx->vcpu.cpu != raw_smp_processor_id() && vmx->vcpu.cpu != -1)
231 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear,
232 vmx, 0, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800233 else
Rusty Russell8b9cf982007-07-30 16:31:43 +1000234 __vcpu_clear(vmx);
235 vmx->launched = 0;
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800236}
237
Avi Kivity6aa8b732006-12-10 02:21:36 -0800238static unsigned long vmcs_readl(unsigned long field)
239{
240 unsigned long value;
241
242 asm volatile (ASM_VMX_VMREAD_RDX_RAX
243 : "=a"(value) : "d"(field) : "cc");
244 return value;
245}
246
247static u16 vmcs_read16(unsigned long field)
248{
249 return vmcs_readl(field);
250}
251
252static u32 vmcs_read32(unsigned long field)
253{
254 return vmcs_readl(field);
255}
256
257static u64 vmcs_read64(unsigned long field)
258{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800259#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800260 return vmcs_readl(field);
261#else
262 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
263#endif
264}
265
Avi Kivitye52de1b2007-01-05 16:36:56 -0800266static noinline void vmwrite_error(unsigned long field, unsigned long value)
267{
268 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
269 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
270 dump_stack();
271}
272
Avi Kivity6aa8b732006-12-10 02:21:36 -0800273static void vmcs_writel(unsigned long field, unsigned long value)
274{
275 u8 error;
276
277 asm volatile (ASM_VMX_VMWRITE_RAX_RDX "; setna %0"
278 : "=q"(error) : "a"(value), "d"(field) : "cc" );
Avi Kivitye52de1b2007-01-05 16:36:56 -0800279 if (unlikely(error))
280 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800281}
282
283static void vmcs_write16(unsigned long field, u16 value)
284{
285 vmcs_writel(field, value);
286}
287
288static void vmcs_write32(unsigned long field, u32 value)
289{
290 vmcs_writel(field, value);
291}
292
293static void vmcs_write64(unsigned long field, u64 value)
294{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800295#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800296 vmcs_writel(field, value);
297#else
298 vmcs_writel(field, value);
299 asm volatile ("");
300 vmcs_writel(field+1, value >> 32);
301#endif
302}
303
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300304static void vmcs_clear_bits(unsigned long field, u32 mask)
305{
306 vmcs_writel(field, vmcs_readl(field) & ~mask);
307}
308
309static void vmcs_set_bits(unsigned long field, u32 mask)
310{
311 vmcs_writel(field, vmcs_readl(field) | mask);
312}
313
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300314static void update_exception_bitmap(struct kvm_vcpu *vcpu)
315{
316 u32 eb;
317
318 eb = 1u << PF_VECTOR;
319 if (!vcpu->fpu_active)
320 eb |= 1u << NM_VECTOR;
321 if (vcpu->guest_debug.enabled)
322 eb |= 1u << 1;
323 if (vcpu->rmode.active)
324 eb = ~0;
325 vmcs_write32(EXCEPTION_BITMAP, eb);
326}
327
Avi Kivity33ed6322007-05-02 16:54:03 +0300328static void reload_tss(void)
329{
330#ifndef CONFIG_X86_64
331
332 /*
333 * VT restores TR but not its size. Useless.
334 */
335 struct descriptor_table gdt;
336 struct segment_descriptor *descs;
337
338 get_gdt(&gdt);
339 descs = (void *)gdt.base;
340 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
341 load_TR_desc();
342#endif
343}
344
Rusty Russell8b9cf982007-07-30 16:31:43 +1000345static void load_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300346{
347 u64 trans_efer;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400348 int efer_offset = vmx->msr_offset_efer;
Eddie Dong2cc51562007-05-21 07:28:09 +0300349
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400350 trans_efer = vmx->host_msrs[efer_offset].data;
Eddie Dong2cc51562007-05-21 07:28:09 +0300351 trans_efer &= ~EFER_SAVE_RESTORE_BITS;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400352 trans_efer |= msr_efer_save_restore_bits(vmx->guest_msrs[efer_offset]);
Eddie Dong2cc51562007-05-21 07:28:09 +0300353 wrmsrl(MSR_EFER, trans_efer);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000354 vmx->vcpu.stat.efer_reload++;
Eddie Dong2cc51562007-05-21 07:28:09 +0300355}
356
Avi Kivity04d2cc72007-09-10 18:10:54 +0300357static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300358{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300359 struct vcpu_vmx *vmx = to_vmx(vcpu);
360
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400361 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300362 return;
363
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400364 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300365 /*
366 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
367 * allow segment selectors with cpl > 0 or ti == 1.
368 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400369 vmx->host_state.ldt_sel = read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200370 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400371 vmx->host_state.fs_sel = read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200372 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400373 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200374 vmx->host_state.fs_reload_needed = 0;
375 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300376 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200377 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300378 }
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400379 vmx->host_state.gs_sel = read_gs();
380 if (!(vmx->host_state.gs_sel & 7))
381 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300382 else {
383 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200384 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300385 }
386
387#ifdef CONFIG_X86_64
388 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
389 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
390#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400391 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
392 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300393#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300394
395#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000396 if (is_long_mode(&vmx->vcpu)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400397 save_msrs(vmx->host_msrs +
398 vmx->msr_offset_kernel_gs_base, 1);
Avi Kivity707c0872007-05-02 17:33:43 +0300399 }
400#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400401 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000402 if (msr_efer_need_save_restore(vmx))
403 load_transition_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300404}
405
Rusty Russell8b9cf982007-07-30 16:31:43 +1000406static void vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300407{
Avi Kivity15ad7142007-07-11 18:17:21 +0300408 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300409
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400410 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300411 return;
412
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400413 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200414 if (vmx->host_state.fs_reload_needed)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400415 load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200416 if (vmx->host_state.gs_ldt_reload_needed) {
417 load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300418 /*
419 * If we have to reload gs, we must take care to
420 * preserve our gs base.
421 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300422 local_irq_save(flags);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400423 load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300424#ifdef CONFIG_X86_64
425 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
426#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300427 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300428 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200429 reload_tss();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400430 save_msrs(vmx->guest_msrs, vmx->save_nmsrs);
431 load_msrs(vmx->host_msrs, vmx->save_nmsrs);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000432 if (msr_efer_need_save_restore(vmx))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400433 load_msrs(vmx->host_msrs + vmx->msr_offset_efer, 1);
Avi Kivity33ed6322007-05-02 16:54:03 +0300434}
435
Avi Kivity6aa8b732006-12-10 02:21:36 -0800436/*
437 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
438 * vcpu mutex is already taken.
439 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300440static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800441{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400442 struct vcpu_vmx *vmx = to_vmx(vcpu);
443 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity77002702007-06-13 19:55:28 +0300444 u64 tsc_this, delta;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800445
Eddie Donga3d7f852007-09-03 16:15:12 +0300446 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000447 vcpu_clear(vmx);
Eddie Donga3d7f852007-09-03 16:15:12 +0300448 kvm_migrate_apic_timer(vcpu);
449 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800450
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400451 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800452 u8 error;
453
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400454 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800455 asm volatile (ASM_VMX_VMPTRLD_RAX "; setna %0"
456 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
457 : "cc");
458 if (error)
459 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400460 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800461 }
462
463 if (vcpu->cpu != cpu) {
464 struct descriptor_table dt;
465 unsigned long sysenter_esp;
466
467 vcpu->cpu = cpu;
468 /*
469 * Linux uses per-cpu TSS and GDT, so set these when switching
470 * processors.
471 */
472 vmcs_writel(HOST_TR_BASE, read_tr_base()); /* 22.2.4 */
473 get_gdt(&dt);
474 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
475
476 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
477 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300478
479 /*
480 * Make sure the time stamp counter is monotonous.
481 */
482 rdtscll(tsc_this);
483 delta = vcpu->host_tsc - tsc_this;
484 vmcs_write64(TSC_OFFSET, vmcs_read64(TSC_OFFSET) + delta);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800485 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800486}
487
488static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
489{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000490 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity7702fd12007-06-14 16:27:40 +0300491 kvm_put_guest_fpu(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800492}
493
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300494static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
495{
496 if (vcpu->fpu_active)
497 return;
498 vcpu->fpu_active = 1;
Rusty Russell707d92fa2007-07-17 23:19:08 +1000499 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
500 if (vcpu->cr0 & X86_CR0_TS)
501 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300502 update_exception_bitmap(vcpu);
503}
504
505static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
506{
507 if (!vcpu->fpu_active)
508 return;
509 vcpu->fpu_active = 0;
Rusty Russell707d92fa2007-07-17 23:19:08 +1000510 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300511 update_exception_bitmap(vcpu);
512}
513
Avi Kivity774c47f2007-02-12 00:54:47 -0800514static void vmx_vcpu_decache(struct kvm_vcpu *vcpu)
515{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000516 vcpu_clear(to_vmx(vcpu));
Avi Kivity774c47f2007-02-12 00:54:47 -0800517}
518
Avi Kivity6aa8b732006-12-10 02:21:36 -0800519static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
520{
521 return vmcs_readl(GUEST_RFLAGS);
522}
523
524static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
525{
526 vmcs_writel(GUEST_RFLAGS, rflags);
527}
528
529static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
530{
531 unsigned long rip;
532 u32 interruptibility;
533
534 rip = vmcs_readl(GUEST_RIP);
535 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
536 vmcs_writel(GUEST_RIP, rip);
537
538 /*
539 * We emulated an instruction, so temporary interrupt blocking
540 * should be removed, if set.
541 */
542 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
543 if (interruptibility & 3)
544 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
545 interruptibility & ~3);
Dor Laorc1150d82007-01-05 16:36:24 -0800546 vcpu->interrupt_window_open = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800547}
548
549static void vmx_inject_gp(struct kvm_vcpu *vcpu, unsigned error_code)
550{
551 printk(KERN_DEBUG "inject_general_protection: rip 0x%lx\n",
552 vmcs_readl(GUEST_RIP));
553 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
554 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
555 GP_VECTOR |
556 INTR_TYPE_EXCEPTION |
557 INTR_INFO_DELIEVER_CODE_MASK |
558 INTR_INFO_VALID_MASK);
559}
560
561/*
Eddie Donga75beee2007-05-17 18:55:15 +0300562 * Swap MSR entry in host/guest MSR entry array.
563 */
Gabriel C54e11fa2007-08-01 16:23:10 +0200564#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000565static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300566{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400567 struct kvm_msr_entry tmp;
568
569 tmp = vmx->guest_msrs[to];
570 vmx->guest_msrs[to] = vmx->guest_msrs[from];
571 vmx->guest_msrs[from] = tmp;
572 tmp = vmx->host_msrs[to];
573 vmx->host_msrs[to] = vmx->host_msrs[from];
574 vmx->host_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300575}
Gabriel C54e11fa2007-08-01 16:23:10 +0200576#endif
Eddie Donga75beee2007-05-17 18:55:15 +0300577
578/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300579 * Set up the vmcs to automatically save and restore system
580 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
581 * mode, as fiddling with msrs is very expensive.
582 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000583static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300584{
Eddie Dong2cc51562007-05-21 07:28:09 +0300585 int save_nmsrs;
Avi Kivitye38aea32007-04-19 13:22:48 +0300586
Eddie Donga75beee2007-05-17 18:55:15 +0300587 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300588#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000589 if (is_long_mode(&vmx->vcpu)) {
Eddie Dong2cc51562007-05-21 07:28:09 +0300590 int index;
591
Rusty Russell8b9cf982007-07-30 16:31:43 +1000592 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300593 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000594 move_msr_up(vmx, index, save_nmsrs++);
595 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300596 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000597 move_msr_up(vmx, index, save_nmsrs++);
598 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300599 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000600 move_msr_up(vmx, index, save_nmsrs++);
601 index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300602 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000603 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300604 /*
605 * MSR_K6_STAR is only needed on long mode guests, and only
606 * if efer.sce is enabled.
607 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000608 index = __find_msr_index(vmx, MSR_K6_STAR);
609 if ((index >= 0) && (vmx->vcpu.shadow_efer & EFER_SCE))
610 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300611 }
Eddie Donga75beee2007-05-17 18:55:15 +0300612#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400613 vmx->save_nmsrs = save_nmsrs;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300614
Eddie Donga75beee2007-05-17 18:55:15 +0300615#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400616 vmx->msr_offset_kernel_gs_base =
Rusty Russell8b9cf982007-07-30 16:31:43 +1000617 __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300618#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +1000619 vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
Avi Kivitye38aea32007-04-19 13:22:48 +0300620}
621
622/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800623 * reads and returns guest's timestamp counter "register"
624 * guest_tsc = host_tsc + tsc_offset -- 21.3
625 */
626static u64 guest_read_tsc(void)
627{
628 u64 host_tsc, tsc_offset;
629
630 rdtscll(host_tsc);
631 tsc_offset = vmcs_read64(TSC_OFFSET);
632 return host_tsc + tsc_offset;
633}
634
635/*
636 * writes 'guest_tsc' into guest's timestamp counter "register"
637 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
638 */
639static void guest_write_tsc(u64 guest_tsc)
640{
641 u64 host_tsc;
642
643 rdtscll(host_tsc);
644 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
645}
646
Avi Kivity6aa8b732006-12-10 02:21:36 -0800647/*
648 * Reads an msr value (of 'msr_index') into 'pdata'.
649 * Returns 0 on success, non-0 otherwise.
650 * Assumes vcpu_load() was already called.
651 */
652static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
653{
654 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400655 struct kvm_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800656
657 if (!pdata) {
658 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
659 return -EINVAL;
660 }
661
662 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800663#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800664 case MSR_FS_BASE:
665 data = vmcs_readl(GUEST_FS_BASE);
666 break;
667 case MSR_GS_BASE:
668 data = vmcs_readl(GUEST_GS_BASE);
669 break;
670 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800671 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800672#endif
673 case MSR_IA32_TIME_STAMP_COUNTER:
674 data = guest_read_tsc();
675 break;
676 case MSR_IA32_SYSENTER_CS:
677 data = vmcs_read32(GUEST_SYSENTER_CS);
678 break;
679 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200680 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800681 break;
682 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200683 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800685 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +1000686 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800687 if (msr) {
688 data = msr->data;
689 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800690 }
Avi Kivity3bab1f52006-12-29 16:49:48 -0800691 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800692 }
693
694 *pdata = data;
695 return 0;
696}
697
698/*
699 * Writes msr value into into the appropriate "register".
700 * Returns 0 on success, non-0 otherwise.
701 * Assumes vcpu_load() was already called.
702 */
703static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
704{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400705 struct vcpu_vmx *vmx = to_vmx(vcpu);
706 struct kvm_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +0300707 int ret = 0;
708
Avi Kivity6aa8b732006-12-10 02:21:36 -0800709 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800710#ifdef CONFIG_X86_64
Avi Kivity3bab1f52006-12-29 16:49:48 -0800711 case MSR_EFER:
Eddie Dong2cc51562007-05-21 07:28:09 +0300712 ret = kvm_set_msr_common(vcpu, msr_index, data);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400713 if (vmx->host_state.loaded)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000714 load_transition_efer(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +0300715 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800716 case MSR_FS_BASE:
717 vmcs_writel(GUEST_FS_BASE, data);
718 break;
719 case MSR_GS_BASE:
720 vmcs_writel(GUEST_GS_BASE, data);
721 break;
722#endif
723 case MSR_IA32_SYSENTER_CS:
724 vmcs_write32(GUEST_SYSENTER_CS, data);
725 break;
726 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200727 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800728 break;
729 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200730 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800731 break;
Avi Kivityd27d4ac2007-02-19 14:37:46 +0200732 case MSR_IA32_TIME_STAMP_COUNTER:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800733 guest_write_tsc(data);
734 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800735 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +1000736 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800737 if (msr) {
738 msr->data = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400739 if (vmx->host_state.loaded)
740 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800741 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800742 }
Eddie Dong2cc51562007-05-21 07:28:09 +0300743 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800744 }
745
Eddie Dong2cc51562007-05-21 07:28:09 +0300746 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800747}
748
749/*
750 * Sync the rsp and rip registers into the vcpu structure. This allows
751 * registers to be accessed by indexing vcpu->regs.
752 */
753static void vcpu_load_rsp_rip(struct kvm_vcpu *vcpu)
754{
755 vcpu->regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
756 vcpu->rip = vmcs_readl(GUEST_RIP);
757}
758
759/*
760 * Syncs rsp and rip back into the vmcs. Should be called after possible
761 * modification.
762 */
763static void vcpu_put_rsp_rip(struct kvm_vcpu *vcpu)
764{
765 vmcs_writel(GUEST_RSP, vcpu->regs[VCPU_REGS_RSP]);
766 vmcs_writel(GUEST_RIP, vcpu->rip);
767}
768
769static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
770{
771 unsigned long dr7 = 0x400;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800772 int old_singlestep;
773
Avi Kivity6aa8b732006-12-10 02:21:36 -0800774 old_singlestep = vcpu->guest_debug.singlestep;
775
776 vcpu->guest_debug.enabled = dbg->enabled;
777 if (vcpu->guest_debug.enabled) {
778 int i;
779
780 dr7 |= 0x200; /* exact */
781 for (i = 0; i < 4; ++i) {
782 if (!dbg->breakpoints[i].enabled)
783 continue;
784 vcpu->guest_debug.bp[i] = dbg->breakpoints[i].address;
785 dr7 |= 2 << (i*2); /* global enable */
786 dr7 |= 0 << (i*4+16); /* execution breakpoint */
787 }
788
Avi Kivity6aa8b732006-12-10 02:21:36 -0800789 vcpu->guest_debug.singlestep = dbg->singlestep;
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300790 } else
Avi Kivity6aa8b732006-12-10 02:21:36 -0800791 vcpu->guest_debug.singlestep = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800792
793 if (old_singlestep && !vcpu->guest_debug.singlestep) {
794 unsigned long flags;
795
796 flags = vmcs_readl(GUEST_RFLAGS);
797 flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
798 vmcs_writel(GUEST_RFLAGS, flags);
799 }
800
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300801 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800802 vmcs_writel(GUEST_DR7, dr7);
803
804 return 0;
805}
806
Eddie Dong2a8067f2007-08-06 16:29:07 +0300807static int vmx_get_irq(struct kvm_vcpu *vcpu)
808{
809 u32 idtv_info_field;
810
811 idtv_info_field = vmcs_read32(IDT_VECTORING_INFO_FIELD);
812 if (idtv_info_field & INTR_INFO_VALID_MASK) {
813 if (is_external_interrupt(idtv_info_field))
814 return idtv_info_field & VECTORING_INFO_VECTOR_MASK;
815 else
816 printk("pending exception: not handled yet\n");
817 }
818 return -1;
819}
820
Avi Kivity6aa8b732006-12-10 02:21:36 -0800821static __init int cpu_has_kvm_support(void)
822{
823 unsigned long ecx = cpuid_ecx(1);
824 return test_bit(5, &ecx); /* CPUID.1:ECX.VMX[bit 5] -> VT */
825}
826
827static __init int vmx_disabled_by_bios(void)
828{
829 u64 msr;
830
831 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Yang, Sheng62b3ffb2007-07-25 12:17:06 +0300832 return (msr & (MSR_IA32_FEATURE_CONTROL_LOCKED |
833 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
834 == MSR_IA32_FEATURE_CONTROL_LOCKED;
835 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800836}
837
Avi Kivity774c47f2007-02-12 00:54:47 -0800838static void hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800839{
840 int cpu = raw_smp_processor_id();
841 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
842 u64 old;
843
844 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Yang, Sheng62b3ffb2007-07-25 12:17:06 +0300845 if ((old & (MSR_IA32_FEATURE_CONTROL_LOCKED |
846 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
847 != (MSR_IA32_FEATURE_CONTROL_LOCKED |
848 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800849 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +0300850 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
851 MSR_IA32_FEATURE_CONTROL_LOCKED |
852 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +1000853 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800854 asm volatile (ASM_VMX_VMXON_RAX : : "a"(&phys_addr), "m"(phys_addr)
855 : "memory", "cc");
856}
857
858static void hardware_disable(void *garbage)
859{
860 asm volatile (ASM_VMX_VMXOFF : : : "cc");
861}
862
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300863static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
864 u32 msr, u32* result)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800865{
866 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300867 u32 ctl = ctl_min | ctl_opt;
868
869 rdmsr(msr, vmx_msr_low, vmx_msr_high);
870
871 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
872 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
873
874 /* Ensure minimum (required) set of control bits are supported. */
875 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300876 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300877
878 *result = ctl;
879 return 0;
880}
881
Yang, Sheng002c7f72007-07-31 14:23:01 +0300882static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300883{
884 u32 vmx_msr_low, vmx_msr_high;
885 u32 min, opt;
886 u32 _pin_based_exec_control = 0;
887 u32 _cpu_based_exec_control = 0;
888 u32 _vmexit_control = 0;
889 u32 _vmentry_control = 0;
890
891 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
892 opt = 0;
893 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
894 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300895 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300896
897 min = CPU_BASED_HLT_EXITING |
898#ifdef CONFIG_X86_64
899 CPU_BASED_CR8_LOAD_EXITING |
900 CPU_BASED_CR8_STORE_EXITING |
901#endif
902 CPU_BASED_USE_IO_BITMAPS |
903 CPU_BASED_MOV_DR_EXITING |
904 CPU_BASED_USE_TSC_OFFSETING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800905#ifdef CONFIG_X86_64
906 opt = CPU_BASED_TPR_SHADOW;
907#else
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300908 opt = 0;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800909#endif
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300910 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
911 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300912 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800913#ifdef CONFIG_X86_64
914 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
915 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
916 ~CPU_BASED_CR8_STORE_EXITING;
917#endif
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300918
919 min = 0;
920#ifdef CONFIG_X86_64
921 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
922#endif
923 opt = 0;
924 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
925 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300926 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300927
928 min = opt = 0;
929 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
930 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300931 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800932
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -0800933 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300934
935 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
936 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300937 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300938
939#ifdef CONFIG_X86_64
940 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
941 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +0300942 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300943#endif
944
945 /* Require Write-Back (WB) memory type for VMCS accesses. */
946 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300947 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300948
Yang, Sheng002c7f72007-07-31 14:23:01 +0300949 vmcs_conf->size = vmx_msr_high & 0x1fff;
950 vmcs_conf->order = get_order(vmcs_config.size);
951 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300952
Yang, Sheng002c7f72007-07-31 14:23:01 +0300953 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
954 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
955 vmcs_conf->vmexit_ctrl = _vmexit_control;
956 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300957
958 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -0800959}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800960
961static struct vmcs *alloc_vmcs_cpu(int cpu)
962{
963 int node = cpu_to_node(cpu);
964 struct page *pages;
965 struct vmcs *vmcs;
966
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300967 pages = alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800968 if (!pages)
969 return NULL;
970 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300971 memset(vmcs, 0, vmcs_config.size);
972 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800973 return vmcs;
974}
975
976static struct vmcs *alloc_vmcs(void)
977{
Ingo Molnard3b2c332007-01-05 16:36:23 -0800978 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -0800979}
980
981static void free_vmcs(struct vmcs *vmcs)
982{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300983 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800984}
985
Sam Ravnborg39959582007-06-01 00:47:13 -0700986static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800987{
988 int cpu;
989
990 for_each_online_cpu(cpu)
991 free_vmcs(per_cpu(vmxarea, cpu));
992}
993
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994static __init int alloc_kvm_area(void)
995{
996 int cpu;
997
998 for_each_online_cpu(cpu) {
999 struct vmcs *vmcs;
1000
1001 vmcs = alloc_vmcs_cpu(cpu);
1002 if (!vmcs) {
1003 free_kvm_area();
1004 return -ENOMEM;
1005 }
1006
1007 per_cpu(vmxarea, cpu) = vmcs;
1008 }
1009 return 0;
1010}
1011
1012static __init int hardware_setup(void)
1013{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001014 if (setup_vmcs_config(&vmcs_config) < 0)
1015 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001016 return alloc_kvm_area();
1017}
1018
1019static __exit void hardware_unsetup(void)
1020{
1021 free_kvm_area();
1022}
1023
Avi Kivity6aa8b732006-12-10 02:21:36 -08001024static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1025{
1026 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1027
Avi Kivity6af11b92007-03-19 13:18:10 +02001028 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001029 vmcs_write16(sf->selector, save->selector);
1030 vmcs_writel(sf->base, save->base);
1031 vmcs_write32(sf->limit, save->limit);
1032 vmcs_write32(sf->ar_bytes, save->ar);
1033 } else {
1034 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1035 << AR_DPL_SHIFT;
1036 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1037 }
1038}
1039
1040static void enter_pmode(struct kvm_vcpu *vcpu)
1041{
1042 unsigned long flags;
1043
1044 vcpu->rmode.active = 0;
1045
1046 vmcs_writel(GUEST_TR_BASE, vcpu->rmode.tr.base);
1047 vmcs_write32(GUEST_TR_LIMIT, vcpu->rmode.tr.limit);
1048 vmcs_write32(GUEST_TR_AR_BYTES, vcpu->rmode.tr.ar);
1049
1050 flags = vmcs_readl(GUEST_RFLAGS);
1051 flags &= ~(IOPL_MASK | X86_EFLAGS_VM);
1052 flags |= (vcpu->rmode.save_iopl << IOPL_SHIFT);
1053 vmcs_writel(GUEST_RFLAGS, flags);
1054
Rusty Russell66aee912007-07-17 23:34:16 +10001055 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1056 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001057
1058 update_exception_bitmap(vcpu);
1059
1060 fix_pmode_dataseg(VCPU_SREG_ES, &vcpu->rmode.es);
1061 fix_pmode_dataseg(VCPU_SREG_DS, &vcpu->rmode.ds);
1062 fix_pmode_dataseg(VCPU_SREG_GS, &vcpu->rmode.gs);
1063 fix_pmode_dataseg(VCPU_SREG_FS, &vcpu->rmode.fs);
1064
1065 vmcs_write16(GUEST_SS_SELECTOR, 0);
1066 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1067
1068 vmcs_write16(GUEST_CS_SELECTOR,
1069 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1070 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1071}
1072
Izik Eidus33f5fa12007-08-19 22:24:58 +03001073static gva_t rmode_tss_base(struct kvm* kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001074{
1075 gfn_t base_gfn = kvm->memslots[0].base_gfn + kvm->memslots[0].npages - 3;
1076 return base_gfn << PAGE_SHIFT;
1077}
1078
1079static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1080{
1081 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1082
1083 save->selector = vmcs_read16(sf->selector);
1084 save->base = vmcs_readl(sf->base);
1085 save->limit = vmcs_read32(sf->limit);
1086 save->ar = vmcs_read32(sf->ar_bytes);
1087 vmcs_write16(sf->selector, vmcs_readl(sf->base) >> 4);
1088 vmcs_write32(sf->limit, 0xffff);
1089 vmcs_write32(sf->ar_bytes, 0xf3);
1090}
1091
1092static void enter_rmode(struct kvm_vcpu *vcpu)
1093{
1094 unsigned long flags;
1095
1096 vcpu->rmode.active = 1;
1097
1098 vcpu->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
1099 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1100
1101 vcpu->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
1102 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1103
1104 vcpu->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
1105 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1106
1107 flags = vmcs_readl(GUEST_RFLAGS);
1108 vcpu->rmode.save_iopl = (flags & IOPL_MASK) >> IOPL_SHIFT;
1109
1110 flags |= IOPL_MASK | X86_EFLAGS_VM;
1111
1112 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001113 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001114 update_exception_bitmap(vcpu);
1115
1116 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1117 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1118 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1119
1120 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001121 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001122 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1123 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001124 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1125
1126 fix_rmode_seg(VCPU_SREG_ES, &vcpu->rmode.es);
1127 fix_rmode_seg(VCPU_SREG_DS, &vcpu->rmode.ds);
1128 fix_rmode_seg(VCPU_SREG_GS, &vcpu->rmode.gs);
1129 fix_rmode_seg(VCPU_SREG_FS, &vcpu->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001130
1131 init_rmode_tss(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001132}
1133
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001134#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001135
1136static void enter_lmode(struct kvm_vcpu *vcpu)
1137{
1138 u32 guest_tr_ar;
1139
1140 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1141 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1142 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
1143 __FUNCTION__);
1144 vmcs_write32(GUEST_TR_AR_BYTES,
1145 (guest_tr_ar & ~AR_TYPE_MASK)
1146 | AR_TYPE_BUSY_64_TSS);
1147 }
1148
1149 vcpu->shadow_efer |= EFER_LMA;
1150
Rusty Russell8b9cf982007-07-30 16:31:43 +10001151 find_msr_entry(to_vmx(vcpu), MSR_EFER)->data |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001152 vmcs_write32(VM_ENTRY_CONTROLS,
1153 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001154 | VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001155}
1156
1157static void exit_lmode(struct kvm_vcpu *vcpu)
1158{
1159 vcpu->shadow_efer &= ~EFER_LMA;
1160
1161 vmcs_write32(VM_ENTRY_CONTROLS,
1162 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001163 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001164}
1165
1166#endif
1167
Anthony Liguori25c4c272007-04-27 09:29:21 +03001168static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001169{
Avi Kivity399badf2007-01-05 16:36:38 -08001170 vcpu->cr4 &= KVM_GUEST_CR4_MASK;
1171 vcpu->cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
1172}
1173
Avi Kivity6aa8b732006-12-10 02:21:36 -08001174static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1175{
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001176 vmx_fpu_deactivate(vcpu);
1177
Rusty Russell707d92fa2007-07-17 23:19:08 +10001178 if (vcpu->rmode.active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001179 enter_pmode(vcpu);
1180
Rusty Russell707d92fa2007-07-17 23:19:08 +10001181 if (!vcpu->rmode.active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001182 enter_rmode(vcpu);
1183
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001184#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001185 if (vcpu->shadow_efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001186 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001187 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10001188 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001189 exit_lmode(vcpu);
1190 }
1191#endif
1192
1193 vmcs_writel(CR0_READ_SHADOW, cr0);
1194 vmcs_writel(GUEST_CR0,
1195 (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON);
1196 vcpu->cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001197
Rusty Russell707d92fa2007-07-17 23:19:08 +10001198 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001199 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001200}
1201
Avi Kivity6aa8b732006-12-10 02:21:36 -08001202static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1203{
1204 vmcs_writel(GUEST_CR3, cr3);
Rusty Russell707d92fa2007-07-17 23:19:08 +10001205 if (vcpu->cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001206 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001207}
1208
1209static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1210{
1211 vmcs_writel(CR4_READ_SHADOW, cr4);
1212 vmcs_writel(GUEST_CR4, cr4 | (vcpu->rmode.active ?
1213 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON));
1214 vcpu->cr4 = cr4;
1215}
1216
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001217#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001218
1219static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1220{
Rusty Russell8b9cf982007-07-30 16:31:43 +10001221 struct vcpu_vmx *vmx = to_vmx(vcpu);
1222 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001223
1224 vcpu->shadow_efer = efer;
1225 if (efer & EFER_LMA) {
1226 vmcs_write32(VM_ENTRY_CONTROLS,
1227 vmcs_read32(VM_ENTRY_CONTROLS) |
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001228 VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001229 msr->data = efer;
1230
1231 } else {
1232 vmcs_write32(VM_ENTRY_CONTROLS,
1233 vmcs_read32(VM_ENTRY_CONTROLS) &
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001234 ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001235
1236 msr->data = efer & ~EFER_LME;
1237 }
Rusty Russell8b9cf982007-07-30 16:31:43 +10001238 setup_msrs(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001239}
1240
1241#endif
1242
1243static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1244{
1245 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1246
1247 return vmcs_readl(sf->base);
1248}
1249
1250static void vmx_get_segment(struct kvm_vcpu *vcpu,
1251 struct kvm_segment *var, int seg)
1252{
1253 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1254 u32 ar;
1255
1256 var->base = vmcs_readl(sf->base);
1257 var->limit = vmcs_read32(sf->limit);
1258 var->selector = vmcs_read16(sf->selector);
1259 ar = vmcs_read32(sf->ar_bytes);
1260 if (ar & AR_UNUSABLE_MASK)
1261 ar = 0;
1262 var->type = ar & 15;
1263 var->s = (ar >> 4) & 1;
1264 var->dpl = (ar >> 5) & 3;
1265 var->present = (ar >> 7) & 1;
1266 var->avl = (ar >> 12) & 1;
1267 var->l = (ar >> 13) & 1;
1268 var->db = (ar >> 14) & 1;
1269 var->g = (ar >> 15) & 1;
1270 var->unusable = (ar >> 16) & 1;
1271}
1272
Avi Kivity653e3102007-05-07 10:55:37 +03001273static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001274{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001275 u32 ar;
1276
Avi Kivity653e3102007-05-07 10:55:37 +03001277 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001278 ar = 1 << 16;
1279 else {
1280 ar = var->type & 15;
1281 ar |= (var->s & 1) << 4;
1282 ar |= (var->dpl & 3) << 5;
1283 ar |= (var->present & 1) << 7;
1284 ar |= (var->avl & 1) << 12;
1285 ar |= (var->l & 1) << 13;
1286 ar |= (var->db & 1) << 14;
1287 ar |= (var->g & 1) << 15;
1288 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001289 if (ar == 0) /* a 0 value means unusable */
1290 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001291
1292 return ar;
1293}
1294
1295static void vmx_set_segment(struct kvm_vcpu *vcpu,
1296 struct kvm_segment *var, int seg)
1297{
1298 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1299 u32 ar;
1300
1301 if (vcpu->rmode.active && seg == VCPU_SREG_TR) {
1302 vcpu->rmode.tr.selector = var->selector;
1303 vcpu->rmode.tr.base = var->base;
1304 vcpu->rmode.tr.limit = var->limit;
1305 vcpu->rmode.tr.ar = vmx_segment_access_rights(var);
1306 return;
1307 }
1308 vmcs_writel(sf->base, var->base);
1309 vmcs_write32(sf->limit, var->limit);
1310 vmcs_write16(sf->selector, var->selector);
1311 if (vcpu->rmode.active && var->s) {
1312 /*
1313 * Hack real-mode segments into vm86 compatibility.
1314 */
1315 if (var->base == 0xffff0000 && var->selector == 0xf000)
1316 vmcs_writel(sf->base, 0xf0000);
1317 ar = 0xf3;
1318 } else
1319 ar = vmx_segment_access_rights(var);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001320 vmcs_write32(sf->ar_bytes, ar);
1321}
1322
Avi Kivity6aa8b732006-12-10 02:21:36 -08001323static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1324{
1325 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1326
1327 *db = (ar >> 14) & 1;
1328 *l = (ar >> 13) & 1;
1329}
1330
1331static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1332{
1333 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1334 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1335}
1336
1337static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1338{
1339 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1340 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1341}
1342
1343static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1344{
1345 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1346 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1347}
1348
1349static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1350{
1351 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1352 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1353}
1354
1355static int init_rmode_tss(struct kvm* kvm)
1356{
1357 struct page *p1, *p2, *p3;
1358 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
1359 char *page;
1360
Avi Kivity954bbbc2007-03-30 14:02:32 +03001361 p1 = gfn_to_page(kvm, fn++);
1362 p2 = gfn_to_page(kvm, fn++);
1363 p3 = gfn_to_page(kvm, fn);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001364
1365 if (!p1 || !p2 || !p3) {
1366 kvm_printf(kvm,"%s: gfn_to_page failed\n", __FUNCTION__);
1367 return 0;
1368 }
1369
1370 page = kmap_atomic(p1, KM_USER0);
Shani Moideena3870c42007-06-11 09:31:33 +05301371 clear_page(page);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001372 *(u16*)(page + 0x66) = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
1373 kunmap_atomic(page, KM_USER0);
1374
1375 page = kmap_atomic(p2, KM_USER0);
Shani Moideena3870c42007-06-11 09:31:33 +05301376 clear_page(page);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001377 kunmap_atomic(page, KM_USER0);
1378
1379 page = kmap_atomic(p3, KM_USER0);
Shani Moideena3870c42007-06-11 09:31:33 +05301380 clear_page(page);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001381 *(page + RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1) = ~0;
1382 kunmap_atomic(page, KM_USER0);
1383
1384 return 1;
1385}
1386
Avi Kivity6aa8b732006-12-10 02:21:36 -08001387static void seg_setup(int seg)
1388{
1389 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1390
1391 vmcs_write16(sf->selector, 0);
1392 vmcs_writel(sf->base, 0);
1393 vmcs_write32(sf->limit, 0xffff);
1394 vmcs_write32(sf->ar_bytes, 0x93);
1395}
1396
1397/*
1398 * Sets up the vmcs for emulated real mode.
1399 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001400static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001401{
1402 u32 host_sysenter_cs;
1403 u32 junk;
1404 unsigned long a;
1405 struct descriptor_table dt;
1406 int i;
1407 int ret = 0;
Avi Kivitycd2276a2007-05-14 20:41:13 +03001408 unsigned long kvm_vmx_return;
Eddie Dong7017fc32007-07-18 11:34:57 +03001409 u64 msr;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001410 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001411
Rusty Russell8b9cf982007-07-30 16:31:43 +10001412 if (!init_rmode_tss(vmx->vcpu.kvm)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001413 ret = -ENOMEM;
1414 goto out;
1415 }
1416
He, Qingc5ec1532007-09-03 17:07:41 +03001417 vmx->vcpu.rmode.active = 0;
1418
Rusty Russell8b9cf982007-07-30 16:31:43 +10001419 vmx->vcpu.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Eddie Dong7017fc32007-07-18 11:34:57 +03001420 set_cr8(&vmx->vcpu, 0);
1421 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Rusty Russell8b9cf982007-07-30 16:31:43 +10001422 if (vmx->vcpu.vcpu_id == 0)
Eddie Dong7017fc32007-07-18 11:34:57 +03001423 msr |= MSR_IA32_APICBASE_BSP;
1424 kvm_set_apic_base(&vmx->vcpu, msr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001425
Rusty Russell8b9cf982007-07-30 16:31:43 +10001426 fx_init(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001427
1428 /*
1429 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
1430 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
1431 */
He, Qingc5ec1532007-09-03 17:07:41 +03001432 if (vmx->vcpu.vcpu_id == 0) {
1433 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
1434 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
1435 } else {
1436 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.sipi_vector << 8);
1437 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.sipi_vector << 12);
1438 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001439 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
1440 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1441
1442 seg_setup(VCPU_SREG_DS);
1443 seg_setup(VCPU_SREG_ES);
1444 seg_setup(VCPU_SREG_FS);
1445 seg_setup(VCPU_SREG_GS);
1446 seg_setup(VCPU_SREG_SS);
1447
1448 vmcs_write16(GUEST_TR_SELECTOR, 0);
1449 vmcs_writel(GUEST_TR_BASE, 0);
1450 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
1451 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1452
1453 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
1454 vmcs_writel(GUEST_LDTR_BASE, 0);
1455 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
1456 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
1457
1458 vmcs_write32(GUEST_SYSENTER_CS, 0);
1459 vmcs_writel(GUEST_SYSENTER_ESP, 0);
1460 vmcs_writel(GUEST_SYSENTER_EIP, 0);
1461
1462 vmcs_writel(GUEST_RFLAGS, 0x02);
He, Qingc5ec1532007-09-03 17:07:41 +03001463 if (vmx->vcpu.vcpu_id == 0)
1464 vmcs_writel(GUEST_RIP, 0xfff0);
1465 else
1466 vmcs_writel(GUEST_RIP, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001467 vmcs_writel(GUEST_RSP, 0);
1468
Avi Kivity6aa8b732006-12-10 02:21:36 -08001469 //todo: dr0 = dr1 = dr2 = dr3 = 0; dr6 = 0xffff0ff0
1470 vmcs_writel(GUEST_DR7, 0x400);
1471
1472 vmcs_writel(GUEST_GDTR_BASE, 0);
1473 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
1474
1475 vmcs_writel(GUEST_IDTR_BASE, 0);
1476 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
1477
1478 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
1479 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
1480 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
1481
1482 /* I/O */
He, Qingfdef3ad2007-04-30 09:45:24 +03001483 vmcs_write64(IO_BITMAP_A, page_to_phys(vmx_io_bitmap_a));
1484 vmcs_write64(IO_BITMAP_B, page_to_phys(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001485
1486 guest_write_tsc(0);
1487
1488 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
1489
1490 /* Special registers */
1491 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
1492
1493 /* Control */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001494 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
1495 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001496
1497 exec_control = vmcs_config.cpu_based_exec_ctrl;
1498 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
1499 exec_control &= ~CPU_BASED_TPR_SHADOW;
1500#ifdef CONFIG_X86_64
1501 exec_control |= CPU_BASED_CR8_STORE_EXITING |
1502 CPU_BASED_CR8_LOAD_EXITING;
1503#endif
1504 }
1505 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001506
Avi Kivity6aa8b732006-12-10 02:21:36 -08001507 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
1508 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
1509 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
1510
1511 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
1512 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
1513 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
1514
1515 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
1516 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
1517 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
1518 vmcs_write16(HOST_FS_SELECTOR, read_fs()); /* 22.2.4 */
1519 vmcs_write16(HOST_GS_SELECTOR, read_gs()); /* 22.2.4 */
1520 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001521#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001522 rdmsrl(MSR_FS_BASE, a);
1523 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
1524 rdmsrl(MSR_GS_BASE, a);
1525 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
1526#else
1527 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
1528 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
1529#endif
1530
1531 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
1532
1533 get_idt(&dt);
1534 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
1535
Avi Kivitycd2276a2007-05-14 20:41:13 +03001536 asm ("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
1537 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03001538 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
1539 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
1540 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001541
1542 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
1543 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
1544 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
1545 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
1546 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
1547 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
1548
Avi Kivity6aa8b732006-12-10 02:21:36 -08001549 for (i = 0; i < NR_VMX_MSR; ++i) {
1550 u32 index = vmx_msr_index[i];
1551 u32 data_low, data_high;
1552 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001553 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001554
1555 if (rdmsr_safe(index, &data_low, &data_high) < 0)
1556 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08001557 if (wrmsr_safe(index, data_low, data_high) < 0)
1558 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001559 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001560 vmx->host_msrs[j].index = index;
1561 vmx->host_msrs[j].reserved = 0;
1562 vmx->host_msrs[j].data = data;
1563 vmx->guest_msrs[j] = vmx->host_msrs[j];
1564 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001565 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001566
Rusty Russell8b9cf982007-07-30 16:31:43 +10001567 setup_msrs(vmx);
Avi Kivitye38aea32007-04-19 13:22:48 +03001568
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001569 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570
1571 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001572 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
1573
Avi Kivity6aa8b732006-12-10 02:21:36 -08001574 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
1575
Michael Riepe3b99ab22006-12-13 00:34:15 -08001576#ifdef CONFIG_X86_64
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001577 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
1578 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
1579 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
1580 page_to_phys(vmx->vcpu.apic->regs_page));
1581 vmcs_write32(TPR_THRESHOLD, 0);
Michael Riepe3b99ab22006-12-13 00:34:15 -08001582#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001583
Anthony Liguori25c4c272007-04-27 09:29:21 +03001584 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001585 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
1586
Rusty Russell8b9cf982007-07-30 16:31:43 +10001587 vmx->vcpu.cr0 = 0x60000010;
1588 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.cr0); // enter rmode
1589 vmx_set_cr4(&vmx->vcpu, 0);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001590#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10001591 vmx_set_efer(&vmx->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001592#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +10001593 vmx_fpu_activate(&vmx->vcpu);
1594 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001595
1596 return 0;
1597
Avi Kivity6aa8b732006-12-10 02:21:36 -08001598out:
1599 return ret;
1600}
1601
Avi Kivity04d2cc72007-09-10 18:10:54 +03001602static void vmx_vcpu_reset(struct kvm_vcpu *vcpu)
1603{
1604 struct vcpu_vmx *vmx = to_vmx(vcpu);
1605
1606 vmx_vcpu_setup(vmx);
1607}
1608
Avi Kivity6aa8b732006-12-10 02:21:36 -08001609static void inject_rmode_irq(struct kvm_vcpu *vcpu, int irq)
1610{
1611 u16 ent[2];
1612 u16 cs;
1613 u16 ip;
1614 unsigned long flags;
1615 unsigned long ss_base = vmcs_readl(GUEST_SS_BASE);
1616 u16 sp = vmcs_readl(GUEST_RSP);
1617 u32 ss_limit = vmcs_read32(GUEST_SS_LIMIT);
1618
Eric Sesterhenn / Snakebyte39649942007-04-09 16:15:05 +02001619 if (sp > ss_limit || sp < 6 ) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001620 vcpu_printf(vcpu, "%s: #SS, rsp 0x%lx ss 0x%lx limit 0x%x\n",
1621 __FUNCTION__,
1622 vmcs_readl(GUEST_RSP),
1623 vmcs_readl(GUEST_SS_BASE),
1624 vmcs_read32(GUEST_SS_LIMIT));
1625 return;
1626 }
1627
Laurent Viviere7d5d762007-07-30 13:41:19 +03001628 if (emulator_read_std(irq * sizeof(ent), &ent, sizeof(ent), vcpu) !=
1629 X86EMUL_CONTINUE) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001630 vcpu_printf(vcpu, "%s: read guest err\n", __FUNCTION__);
1631 return;
1632 }
1633
1634 flags = vmcs_readl(GUEST_RFLAGS);
1635 cs = vmcs_readl(GUEST_CS_BASE) >> 4;
1636 ip = vmcs_readl(GUEST_RIP);
1637
1638
Laurent Viviere7d5d762007-07-30 13:41:19 +03001639 if (emulator_write_emulated(ss_base + sp - 2, &flags, 2, vcpu) != X86EMUL_CONTINUE ||
1640 emulator_write_emulated(ss_base + sp - 4, &cs, 2, vcpu) != X86EMUL_CONTINUE ||
1641 emulator_write_emulated(ss_base + sp - 6, &ip, 2, vcpu) != X86EMUL_CONTINUE) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001642 vcpu_printf(vcpu, "%s: write guest err\n", __FUNCTION__);
1643 return;
1644 }
1645
1646 vmcs_writel(GUEST_RFLAGS, flags &
1647 ~( X86_EFLAGS_IF | X86_EFLAGS_AC | X86_EFLAGS_TF));
1648 vmcs_write16(GUEST_CS_SELECTOR, ent[1]) ;
1649 vmcs_writel(GUEST_CS_BASE, ent[1] << 4);
1650 vmcs_writel(GUEST_RIP, ent[0]);
1651 vmcs_writel(GUEST_RSP, (vmcs_readl(GUEST_RSP) & ~0xffff) | (sp - 6));
1652}
1653
Eddie Dong85f455f2007-07-06 12:20:49 +03001654static void vmx_inject_irq(struct kvm_vcpu *vcpu, int irq)
1655{
1656 if (vcpu->rmode.active) {
1657 inject_rmode_irq(vcpu, irq);
1658 return;
1659 }
1660 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
1661 irq | INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1662}
1663
Avi Kivity6aa8b732006-12-10 02:21:36 -08001664static void kvm_do_inject_irq(struct kvm_vcpu *vcpu)
1665{
1666 int word_index = __ffs(vcpu->irq_summary);
1667 int bit_index = __ffs(vcpu->irq_pending[word_index]);
1668 int irq = word_index * BITS_PER_LONG + bit_index;
1669
1670 clear_bit(bit_index, &vcpu->irq_pending[word_index]);
1671 if (!vcpu->irq_pending[word_index])
1672 clear_bit(word_index, &vcpu->irq_summary);
Eddie Dong85f455f2007-07-06 12:20:49 +03001673 vmx_inject_irq(vcpu, irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001674}
1675
Dor Laorc1150d82007-01-05 16:36:24 -08001676
1677static void do_interrupt_requests(struct kvm_vcpu *vcpu,
1678 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001679{
Dor Laorc1150d82007-01-05 16:36:24 -08001680 u32 cpu_based_vm_exec_control;
1681
1682 vcpu->interrupt_window_open =
1683 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
1684 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);
1685
1686 if (vcpu->interrupt_window_open &&
1687 vcpu->irq_summary &&
1688 !(vmcs_read32(VM_ENTRY_INTR_INFO_FIELD) & INTR_INFO_VALID_MASK))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001689 /*
Dor Laorc1150d82007-01-05 16:36:24 -08001690 * If interrupts enabled, and not blocked by sti or mov ss. Good.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001691 */
1692 kvm_do_inject_irq(vcpu);
Dor Laorc1150d82007-01-05 16:36:24 -08001693
1694 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
1695 if (!vcpu->interrupt_window_open &&
1696 (vcpu->irq_summary || kvm_run->request_interrupt_window))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001697 /*
1698 * Interrupts blocked. Wait for unblock.
1699 */
Dor Laorc1150d82007-01-05 16:36:24 -08001700 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
1701 else
1702 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
1703 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001704}
1705
1706static void kvm_guest_debug_pre(struct kvm_vcpu *vcpu)
1707{
1708 struct kvm_guest_debug *dbg = &vcpu->guest_debug;
1709
1710 set_debugreg(dbg->bp[0], 0);
1711 set_debugreg(dbg->bp[1], 1);
1712 set_debugreg(dbg->bp[2], 2);
1713 set_debugreg(dbg->bp[3], 3);
1714
1715 if (dbg->singlestep) {
1716 unsigned long flags;
1717
1718 flags = vmcs_readl(GUEST_RFLAGS);
1719 flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
1720 vmcs_writel(GUEST_RFLAGS, flags);
1721 }
1722}
1723
1724static int handle_rmode_exception(struct kvm_vcpu *vcpu,
1725 int vec, u32 err_code)
1726{
1727 if (!vcpu->rmode.active)
1728 return 0;
1729
Nitin A Kambleb3f37702007-05-17 15:50:34 +03001730 /*
1731 * Instruction with address size override prefix opcode 0x67
1732 * Cause the #SS fault with 0 error code in VM86 mode.
1733 */
1734 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001735 if (emulate_instruction(vcpu, NULL, 0, 0) == EMULATE_DONE)
1736 return 1;
1737 return 0;
1738}
1739
1740static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1741{
1742 u32 intr_info, error_code;
1743 unsigned long cr2, rip;
1744 u32 vect_info;
1745 enum emulation_result er;
Avi Kivitye2dec932007-01-05 16:36:54 -08001746 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001747
1748 vect_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
1749 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
1750
1751 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
1752 !is_page_fault(intr_info)) {
1753 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
1754 "intr info 0x%x\n", __FUNCTION__, vect_info, intr_info);
1755 }
1756
Eddie Dong85f455f2007-07-06 12:20:49 +03001757 if (!irqchip_in_kernel(vcpu->kvm) && is_external_interrupt(vect_info)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001758 int irq = vect_info & VECTORING_INFO_VECTOR_MASK;
1759 set_bit(irq, vcpu->irq_pending);
1760 set_bit(irq / BITS_PER_LONG, &vcpu->irq_summary);
1761 }
1762
1763 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) { /* nmi */
1764 asm ("int $2");
1765 return 1;
1766 }
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001767
1768 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001769 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001770 return 1;
1771 }
1772
Avi Kivity6aa8b732006-12-10 02:21:36 -08001773 error_code = 0;
1774 rip = vmcs_readl(GUEST_RIP);
1775 if (intr_info & INTR_INFO_DELIEVER_CODE_MASK)
1776 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
1777 if (is_page_fault(intr_info)) {
1778 cr2 = vmcs_readl(EXIT_QUALIFICATION);
1779
Shaohua Li11ec2802007-07-23 14:51:37 +08001780 mutex_lock(&vcpu->kvm->lock);
Avi Kivitye2dec932007-01-05 16:36:54 -08001781 r = kvm_mmu_page_fault(vcpu, cr2, error_code);
1782 if (r < 0) {
Shaohua Li11ec2802007-07-23 14:51:37 +08001783 mutex_unlock(&vcpu->kvm->lock);
Avi Kivitye2dec932007-01-05 16:36:54 -08001784 return r;
1785 }
1786 if (!r) {
Shaohua Li11ec2802007-07-23 14:51:37 +08001787 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001788 return 1;
1789 }
1790
1791 er = emulate_instruction(vcpu, kvm_run, cr2, error_code);
Shaohua Li11ec2802007-07-23 14:51:37 +08001792 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001793
1794 switch (er) {
1795 case EMULATE_DONE:
1796 return 1;
1797 case EMULATE_DO_MMIO:
Avi Kivity1165f5f2007-04-19 17:27:43 +03001798 ++vcpu->stat.mmio_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001799 return 0;
1800 case EMULATE_FAIL:
Avi Kivity054b1362007-09-12 13:21:09 +03001801 kvm_report_emulation_failure(vcpu, "pagetable");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001802 break;
1803 default:
1804 BUG();
1805 }
1806 }
1807
1808 if (vcpu->rmode.active &&
1809 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03001810 error_code)) {
1811 if (vcpu->halt_request) {
1812 vcpu->halt_request = 0;
1813 return kvm_emulate_halt(vcpu);
1814 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001815 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03001816 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001817
1818 if ((intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK)) == (INTR_TYPE_EXCEPTION | 1)) {
1819 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1820 return 0;
1821 }
1822 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
1823 kvm_run->ex.exception = intr_info & INTR_INFO_VECTOR_MASK;
1824 kvm_run->ex.error_code = error_code;
1825 return 0;
1826}
1827
1828static int handle_external_interrupt(struct kvm_vcpu *vcpu,
1829 struct kvm_run *kvm_run)
1830{
Avi Kivity1165f5f2007-04-19 17:27:43 +03001831 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001832 return 1;
1833}
1834
Avi Kivity988ad742007-02-12 00:54:36 -08001835static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1836{
1837 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
1838 return 0;
1839}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001840
Avi Kivity6aa8b732006-12-10 02:21:36 -08001841static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1842{
He, Qingbfdaab02007-09-12 14:18:28 +08001843 unsigned long exit_qualification;
Avi Kivity039576c2007-03-20 12:46:50 +02001844 int size, down, in, string, rep;
1845 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001846
Avi Kivity1165f5f2007-04-19 17:27:43 +03001847 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08001848 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02001849 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03001850
1851 if (string) {
1852 if (emulate_instruction(vcpu, kvm_run, 0, 0) == EMULATE_DO_MMIO)
1853 return 0;
1854 return 1;
1855 }
1856
1857 size = (exit_qualification & 7) + 1;
1858 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02001859 down = (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_DF) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02001860 rep = (exit_qualification & 32) != 0;
1861 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03001862
Laurent Vivier3090dd72007-08-05 10:43:32 +03001863 return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001864}
1865
Ingo Molnar102d8322007-02-19 14:37:47 +02001866static void
1867vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
1868{
1869 /*
1870 * Patch in the VMCALL instruction:
1871 */
1872 hypercall[0] = 0x0f;
1873 hypercall[1] = 0x01;
1874 hypercall[2] = 0xc1;
1875 hypercall[3] = 0xc3;
1876}
1877
Avi Kivity6aa8b732006-12-10 02:21:36 -08001878static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1879{
He, Qingbfdaab02007-09-12 14:18:28 +08001880 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001881 int cr;
1882 int reg;
1883
He, Qingbfdaab02007-09-12 14:18:28 +08001884 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001885 cr = exit_qualification & 15;
1886 reg = (exit_qualification >> 8) & 15;
1887 switch ((exit_qualification >> 4) & 3) {
1888 case 0: /* mov to cr */
1889 switch (cr) {
1890 case 0:
1891 vcpu_load_rsp_rip(vcpu);
1892 set_cr0(vcpu, vcpu->regs[reg]);
1893 skip_emulated_instruction(vcpu);
1894 return 1;
1895 case 3:
1896 vcpu_load_rsp_rip(vcpu);
1897 set_cr3(vcpu, vcpu->regs[reg]);
1898 skip_emulated_instruction(vcpu);
1899 return 1;
1900 case 4:
1901 vcpu_load_rsp_rip(vcpu);
1902 set_cr4(vcpu, vcpu->regs[reg]);
1903 skip_emulated_instruction(vcpu);
1904 return 1;
1905 case 8:
1906 vcpu_load_rsp_rip(vcpu);
1907 set_cr8(vcpu, vcpu->regs[reg]);
1908 skip_emulated_instruction(vcpu);
Yang, Sheng253abde2007-08-16 13:01:00 +03001909 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
1910 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001911 };
1912 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03001913 case 2: /* clts */
1914 vcpu_load_rsp_rip(vcpu);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001915 vmx_fpu_deactivate(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10001916 vcpu->cr0 &= ~X86_CR0_TS;
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001917 vmcs_writel(CR0_READ_SHADOW, vcpu->cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001918 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03001919 skip_emulated_instruction(vcpu);
1920 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001921 case 1: /*mov from cr*/
1922 switch (cr) {
1923 case 3:
1924 vcpu_load_rsp_rip(vcpu);
1925 vcpu->regs[reg] = vcpu->cr3;
1926 vcpu_put_rsp_rip(vcpu);
1927 skip_emulated_instruction(vcpu);
1928 return 1;
1929 case 8:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001930 vcpu_load_rsp_rip(vcpu);
Eddie Dong7017fc32007-07-18 11:34:57 +03001931 vcpu->regs[reg] = get_cr8(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001932 vcpu_put_rsp_rip(vcpu);
1933 skip_emulated_instruction(vcpu);
1934 return 1;
1935 }
1936 break;
1937 case 3: /* lmsw */
1938 lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
1939
1940 skip_emulated_instruction(vcpu);
1941 return 1;
1942 default:
1943 break;
1944 }
1945 kvm_run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10001946 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08001947 (int)(exit_qualification >> 4) & 3, cr);
1948 return 0;
1949}
1950
1951static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1952{
He, Qingbfdaab02007-09-12 14:18:28 +08001953 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001954 unsigned long val;
1955 int dr, reg;
1956
1957 /*
1958 * FIXME: this code assumes the host is debugging the guest.
1959 * need to deal with guest debugging itself too.
1960 */
He, Qingbfdaab02007-09-12 14:18:28 +08001961 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001962 dr = exit_qualification & 7;
1963 reg = (exit_qualification >> 8) & 15;
1964 vcpu_load_rsp_rip(vcpu);
1965 if (exit_qualification & 16) {
1966 /* mov from dr */
1967 switch (dr) {
1968 case 6:
1969 val = 0xffff0ff0;
1970 break;
1971 case 7:
1972 val = 0x400;
1973 break;
1974 default:
1975 val = 0;
1976 }
1977 vcpu->regs[reg] = val;
1978 } else {
1979 /* mov to dr */
1980 }
1981 vcpu_put_rsp_rip(vcpu);
1982 skip_emulated_instruction(vcpu);
1983 return 1;
1984}
1985
1986static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1987{
Avi Kivity06465c52007-02-28 20:46:53 +02001988 kvm_emulate_cpuid(vcpu);
1989 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001990}
1991
1992static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1993{
1994 u32 ecx = vcpu->regs[VCPU_REGS_RCX];
1995 u64 data;
1996
1997 if (vmx_get_msr(vcpu, ecx, &data)) {
1998 vmx_inject_gp(vcpu, 0);
1999 return 1;
2000 }
2001
2002 /* FIXME: handling of bits 32:63 of rax, rdx */
2003 vcpu->regs[VCPU_REGS_RAX] = data & -1u;
2004 vcpu->regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
2005 skip_emulated_instruction(vcpu);
2006 return 1;
2007}
2008
2009static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2010{
2011 u32 ecx = vcpu->regs[VCPU_REGS_RCX];
2012 u64 data = (vcpu->regs[VCPU_REGS_RAX] & -1u)
2013 | ((u64)(vcpu->regs[VCPU_REGS_RDX] & -1u) << 32);
2014
2015 if (vmx_set_msr(vcpu, ecx, data) != 0) {
2016 vmx_inject_gp(vcpu, 0);
2017 return 1;
2018 }
2019
2020 skip_emulated_instruction(vcpu);
2021 return 1;
2022}
2023
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002024static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
2025 struct kvm_run *kvm_run)
2026{
2027 return 1;
2028}
2029
Avi Kivity6aa8b732006-12-10 02:21:36 -08002030static int handle_interrupt_window(struct kvm_vcpu *vcpu,
2031 struct kvm_run *kvm_run)
2032{
Eddie Dong85f455f2007-07-06 12:20:49 +03002033 u32 cpu_based_vm_exec_control;
2034
2035 /* clear pending irq */
2036 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2037 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2038 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Dor Laorc1150d82007-01-05 16:36:24 -08002039 /*
2040 * If the user space waits to inject interrupts, exit as soon as
2041 * possible
2042 */
2043 if (kvm_run->request_interrupt_window &&
Dor Laor022a9302007-01-05 16:37:00 -08002044 !vcpu->irq_summary) {
Dor Laorc1150d82007-01-05 16:36:24 -08002045 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002046 ++vcpu->stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08002047 return 0;
2048 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002049 return 1;
2050}
2051
2052static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2053{
2054 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03002055 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002056}
2057
Ingo Molnarc21415e2007-02-19 14:37:47 +02002058static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2059{
Dor Laor510043d2007-02-19 18:25:43 +02002060 skip_emulated_instruction(vcpu);
Avi Kivity270fd9b2007-02-19 14:37:47 +02002061 return kvm_hypercall(vcpu, kvm_run);
Ingo Molnarc21415e2007-02-19 14:37:47 +02002062}
2063
Avi Kivity6aa8b732006-12-10 02:21:36 -08002064/*
2065 * The exit handlers return 1 if the exit was handled fully and guest execution
2066 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
2067 * to be done to userspace and return 0.
2068 */
2069static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
2070 struct kvm_run *kvm_run) = {
2071 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
2072 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08002073 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002074 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002075 [EXIT_REASON_CR_ACCESS] = handle_cr,
2076 [EXIT_REASON_DR_ACCESS] = handle_dr,
2077 [EXIT_REASON_CPUID] = handle_cpuid,
2078 [EXIT_REASON_MSR_READ] = handle_rdmsr,
2079 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
2080 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
2081 [EXIT_REASON_HLT] = handle_halt,
Ingo Molnarc21415e2007-02-19 14:37:47 +02002082 [EXIT_REASON_VMCALL] = handle_vmcall,
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002083 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold
Avi Kivity6aa8b732006-12-10 02:21:36 -08002084};
2085
2086static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04002087 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002088
2089/*
2090 * The guest has exited. See if we can fix it or if we need userspace
2091 * assistance.
2092 */
2093static int kvm_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
2094{
2095 u32 vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
2096 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity29bd8a72007-09-10 17:27:03 +03002097 struct vcpu_vmx *vmx = to_vmx(vcpu);
2098
2099 if (unlikely(vmx->fail)) {
2100 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
2101 kvm_run->fail_entry.hardware_entry_failure_reason
2102 = vmcs_read32(VM_INSTRUCTION_ERROR);
2103 return 0;
2104 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002105
2106 if ( (vectoring_info & VECTORING_INFO_VALID_MASK) &&
2107 exit_reason != EXIT_REASON_EXCEPTION_NMI )
2108 printk(KERN_WARNING "%s: unexpected, valid vectoring info and "
2109 "exit reason is 0x%x\n", __FUNCTION__, exit_reason);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002110 if (exit_reason < kvm_vmx_max_exit_handlers
2111 && kvm_vmx_exit_handlers[exit_reason])
2112 return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
2113 else {
2114 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
2115 kvm_run->hw.hardware_exit_reason = exit_reason;
2116 }
2117 return 0;
2118}
2119
Avi Kivityd9e368d2007-06-07 19:18:30 +03002120static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
2121{
Avi Kivityd9e368d2007-06-07 19:18:30 +03002122}
2123
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002124static void update_tpr_threshold(struct kvm_vcpu *vcpu)
2125{
2126 int max_irr, tpr;
2127
2128 if (!vm_need_tpr_shadow(vcpu->kvm))
2129 return;
2130
2131 if (!kvm_lapic_enabled(vcpu) ||
2132 ((max_irr = kvm_lapic_find_highest_irr(vcpu)) == -1)) {
2133 vmcs_write32(TPR_THRESHOLD, 0);
2134 return;
2135 }
2136
2137 tpr = (kvm_lapic_get_cr8(vcpu) & 0x0f) << 4;
2138 vmcs_write32(TPR_THRESHOLD, (max_irr > tpr) ? tpr >> 4 : max_irr >> 4);
2139}
2140
Eddie Dong85f455f2007-07-06 12:20:49 +03002141static void enable_irq_window(struct kvm_vcpu *vcpu)
2142{
2143 u32 cpu_based_vm_exec_control;
2144
2145 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2146 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2147 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2148}
2149
2150static void vmx_intr_assist(struct kvm_vcpu *vcpu)
2151{
2152 u32 idtv_info_field, intr_info_field;
2153 int has_ext_irq, interrupt_window_open;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002154 int vector;
Eddie Dong85f455f2007-07-06 12:20:49 +03002155
Eddie Dong1b9778d2007-09-03 16:56:58 +03002156 kvm_inject_pending_timer_irqs(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002157 update_tpr_threshold(vcpu);
2158
Eddie Dong85f455f2007-07-06 12:20:49 +03002159 has_ext_irq = kvm_cpu_has_interrupt(vcpu);
2160 intr_info_field = vmcs_read32(VM_ENTRY_INTR_INFO_FIELD);
2161 idtv_info_field = vmcs_read32(IDT_VECTORING_INFO_FIELD);
2162 if (intr_info_field & INTR_INFO_VALID_MASK) {
2163 if (idtv_info_field & INTR_INFO_VALID_MASK) {
2164 /* TODO: fault when IDT_Vectoring */
2165 printk(KERN_ERR "Fault when IDT_Vectoring\n");
2166 }
2167 if (has_ext_irq)
2168 enable_irq_window(vcpu);
2169 return;
2170 }
2171 if (unlikely(idtv_info_field & INTR_INFO_VALID_MASK)) {
2172 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, idtv_info_field);
2173 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2174 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
2175
2176 if (unlikely(idtv_info_field & INTR_INFO_DELIEVER_CODE_MASK))
2177 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
2178 vmcs_read32(IDT_VECTORING_ERROR_CODE));
2179 if (unlikely(has_ext_irq))
2180 enable_irq_window(vcpu);
2181 return;
2182 }
2183 if (!has_ext_irq)
2184 return;
2185 interrupt_window_open =
2186 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2187 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002188 if (interrupt_window_open) {
2189 vector = kvm_cpu_get_interrupt(vcpu);
2190 vmx_inject_irq(vcpu, vector);
2191 kvm_timer_intr_post(vcpu, vector);
2192 } else
Eddie Dong85f455f2007-07-06 12:20:49 +03002193 enable_irq_window(vcpu);
2194}
2195
Avi Kivity04d2cc72007-09-10 18:10:54 +03002196static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002197{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002198 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03002199
2200 /*
2201 * Loading guest fpu may have cleared host cr0.ts
2202 */
2203 vmcs_writel(HOST_CR0, read_cr0());
2204
Avi Kivity6aa8b732006-12-10 02:21:36 -08002205 asm (
2206 /* Store host registers */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002207#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002208 "push %%rax; push %%rbx; push %%rdx;"
2209 "push %%rsi; push %%rdi; push %%rbp;"
2210 "push %%r8; push %%r9; push %%r10; push %%r11;"
2211 "push %%r12; push %%r13; push %%r14; push %%r15;"
2212 "push %%rcx \n\t"
2213 ASM_VMX_VMWRITE_RSP_RDX "\n\t"
2214#else
2215 "pusha; push %%ecx \n\t"
2216 ASM_VMX_VMWRITE_RSP_RDX "\n\t"
2217#endif
2218 /* Check if vmlaunch of vmresume is needed */
2219 "cmp $0, %1 \n\t"
2220 /* Load guest registers. Don't clobber flags. */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002221#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002222 "mov %c[cr2](%3), %%rax \n\t"
2223 "mov %%rax, %%cr2 \n\t"
2224 "mov %c[rax](%3), %%rax \n\t"
2225 "mov %c[rbx](%3), %%rbx \n\t"
2226 "mov %c[rdx](%3), %%rdx \n\t"
2227 "mov %c[rsi](%3), %%rsi \n\t"
2228 "mov %c[rdi](%3), %%rdi \n\t"
2229 "mov %c[rbp](%3), %%rbp \n\t"
2230 "mov %c[r8](%3), %%r8 \n\t"
2231 "mov %c[r9](%3), %%r9 \n\t"
2232 "mov %c[r10](%3), %%r10 \n\t"
2233 "mov %c[r11](%3), %%r11 \n\t"
2234 "mov %c[r12](%3), %%r12 \n\t"
2235 "mov %c[r13](%3), %%r13 \n\t"
2236 "mov %c[r14](%3), %%r14 \n\t"
2237 "mov %c[r15](%3), %%r15 \n\t"
2238 "mov %c[rcx](%3), %%rcx \n\t" /* kills %3 (rcx) */
2239#else
2240 "mov %c[cr2](%3), %%eax \n\t"
2241 "mov %%eax, %%cr2 \n\t"
2242 "mov %c[rax](%3), %%eax \n\t"
2243 "mov %c[rbx](%3), %%ebx \n\t"
2244 "mov %c[rdx](%3), %%edx \n\t"
2245 "mov %c[rsi](%3), %%esi \n\t"
2246 "mov %c[rdi](%3), %%edi \n\t"
2247 "mov %c[rbp](%3), %%ebp \n\t"
2248 "mov %c[rcx](%3), %%ecx \n\t" /* kills %3 (ecx) */
2249#endif
2250 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03002251 "jne .Llaunched \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002252 ASM_VMX_VMLAUNCH "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03002253 "jmp .Lkvm_vmx_return \n\t"
2254 ".Llaunched: " ASM_VMX_VMRESUME "\n\t"
2255 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08002256 /* Save guest registers, load host registers, keep flags */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002257#ifdef CONFIG_X86_64
Ingo Molnar96958232007-02-12 00:54:33 -08002258 "xchg %3, (%%rsp) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002259 "mov %%rax, %c[rax](%3) \n\t"
2260 "mov %%rbx, %c[rbx](%3) \n\t"
Ingo Molnar96958232007-02-12 00:54:33 -08002261 "pushq (%%rsp); popq %c[rcx](%3) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002262 "mov %%rdx, %c[rdx](%3) \n\t"
2263 "mov %%rsi, %c[rsi](%3) \n\t"
2264 "mov %%rdi, %c[rdi](%3) \n\t"
2265 "mov %%rbp, %c[rbp](%3) \n\t"
2266 "mov %%r8, %c[r8](%3) \n\t"
2267 "mov %%r9, %c[r9](%3) \n\t"
2268 "mov %%r10, %c[r10](%3) \n\t"
2269 "mov %%r11, %c[r11](%3) \n\t"
2270 "mov %%r12, %c[r12](%3) \n\t"
2271 "mov %%r13, %c[r13](%3) \n\t"
2272 "mov %%r14, %c[r14](%3) \n\t"
2273 "mov %%r15, %c[r15](%3) \n\t"
2274 "mov %%cr2, %%rax \n\t"
2275 "mov %%rax, %c[cr2](%3) \n\t"
Ingo Molnar96958232007-02-12 00:54:33 -08002276 "mov (%%rsp), %3 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002277
2278 "pop %%rcx; pop %%r15; pop %%r14; pop %%r13; pop %%r12;"
2279 "pop %%r11; pop %%r10; pop %%r9; pop %%r8;"
2280 "pop %%rbp; pop %%rdi; pop %%rsi;"
2281 "pop %%rdx; pop %%rbx; pop %%rax \n\t"
2282#else
Ingo Molnar96958232007-02-12 00:54:33 -08002283 "xchg %3, (%%esp) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002284 "mov %%eax, %c[rax](%3) \n\t"
2285 "mov %%ebx, %c[rbx](%3) \n\t"
Ingo Molnar96958232007-02-12 00:54:33 -08002286 "pushl (%%esp); popl %c[rcx](%3) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002287 "mov %%edx, %c[rdx](%3) \n\t"
2288 "mov %%esi, %c[rsi](%3) \n\t"
2289 "mov %%edi, %c[rdi](%3) \n\t"
2290 "mov %%ebp, %c[rbp](%3) \n\t"
2291 "mov %%cr2, %%eax \n\t"
2292 "mov %%eax, %c[cr2](%3) \n\t"
Ingo Molnar96958232007-02-12 00:54:33 -08002293 "mov (%%esp), %3 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002294
2295 "pop %%ecx; popa \n\t"
2296#endif
2297 "setbe %0 \n\t"
Avi Kivity29bd8a72007-09-10 17:27:03 +03002298 : "=q" (vmx->fail)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002299 : "r"(vmx->launched), "d"((unsigned long)HOST_RSP),
Avi Kivity6aa8b732006-12-10 02:21:36 -08002300 "c"(vcpu),
2301 [rax]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RAX])),
2302 [rbx]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RBX])),
2303 [rcx]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RCX])),
2304 [rdx]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RDX])),
2305 [rsi]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RSI])),
2306 [rdi]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RDI])),
2307 [rbp]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002308#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002309 [r8 ]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R8 ])),
2310 [r9 ]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R9 ])),
2311 [r10]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R10])),
2312 [r11]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R11])),
2313 [r12]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R12])),
2314 [r13]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R13])),
2315 [r14]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R14])),
2316 [r15]"i"(offsetof(struct kvm_vcpu, regs[VCPU_REGS_R15])),
2317#endif
2318 [cr2]"i"(offsetof(struct kvm_vcpu, cr2))
2319 : "cc", "memory" );
2320
Dor Laorc1150d82007-01-05 16:36:24 -08002321 vcpu->interrupt_window_open = (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002322
Avi Kivity6aa8b732006-12-10 02:21:36 -08002323 asm ("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03002324 vmx->launched = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002325}
2326
Avi Kivity6aa8b732006-12-10 02:21:36 -08002327static void vmx_inject_page_fault(struct kvm_vcpu *vcpu,
2328 unsigned long addr,
2329 u32 err_code)
2330{
2331 u32 vect_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
2332
Avi Kivity1165f5f2007-04-19 17:27:43 +03002333 ++vcpu->stat.pf_guest;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002334
2335 if (is_page_fault(vect_info)) {
2336 printk(KERN_DEBUG "inject_page_fault: "
2337 "double fault 0x%lx @ 0x%lx\n",
2338 addr, vmcs_readl(GUEST_RIP));
2339 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, 0);
2340 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2341 DF_VECTOR |
2342 INTR_TYPE_EXCEPTION |
2343 INTR_INFO_DELIEVER_CODE_MASK |
2344 INTR_INFO_VALID_MASK);
2345 return;
2346 }
2347 vcpu->cr2 = addr;
2348 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, err_code);
2349 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2350 PF_VECTOR |
2351 INTR_TYPE_EXCEPTION |
2352 INTR_INFO_DELIEVER_CODE_MASK |
2353 INTR_INFO_VALID_MASK);
2354
2355}
2356
2357static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
2358{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002359 struct vcpu_vmx *vmx = to_vmx(vcpu);
2360
2361 if (vmx->vmcs) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002362 on_each_cpu(__vcpu_clear, vmx, 0, 1);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002363 free_vmcs(vmx->vmcs);
2364 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002365 }
2366}
2367
2368static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
2369{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002370 struct vcpu_vmx *vmx = to_vmx(vcpu);
2371
Avi Kivity6aa8b732006-12-10 02:21:36 -08002372 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002373 kfree(vmx->host_msrs);
2374 kfree(vmx->guest_msrs);
2375 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10002376 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002377}
2378
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002379static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002380{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002381 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10002382 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03002383 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002384
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002385 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002386 return ERR_PTR(-ENOMEM);
2387
2388 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
2389 if (err)
2390 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002391
Eddie Dong97222cc2007-09-12 10:58:04 +03002392 if (irqchip_in_kernel(kvm)) {
2393 err = kvm_create_lapic(&vmx->vcpu);
2394 if (err < 0)
2395 goto free_vcpu;
2396 }
2397
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002398 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002399 if (!vmx->guest_msrs) {
2400 err = -ENOMEM;
2401 goto uninit_vcpu;
2402 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08002403
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002404 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
2405 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002406 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002407
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002408 vmx->vmcs = alloc_vmcs();
2409 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002410 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002411
2412 vmcs_clear(vmx->vmcs);
2413
Avi Kivity15ad7142007-07-11 18:17:21 +03002414 cpu = get_cpu();
2415 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002416 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002417 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002418 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002419 if (err)
2420 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002421
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002422 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002423
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002424free_vmcs:
2425 free_vmcs(vmx->vmcs);
2426free_msrs:
2427 kfree(vmx->host_msrs);
2428free_guest_msrs:
2429 kfree(vmx->guest_msrs);
2430uninit_vcpu:
2431 kvm_vcpu_uninit(&vmx->vcpu);
2432free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10002433 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002434 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002435}
2436
Yang, Sheng002c7f72007-07-31 14:23:01 +03002437static void __init vmx_check_processor_compat(void *rtn)
2438{
2439 struct vmcs_config vmcs_conf;
2440
2441 *(int *)rtn = 0;
2442 if (setup_vmcs_config(&vmcs_conf) < 0)
2443 *(int *)rtn = -EIO;
2444 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
2445 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
2446 smp_processor_id());
2447 *(int *)rtn = -EIO;
2448 }
2449}
2450
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002451static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002452 .cpu_has_kvm_support = cpu_has_kvm_support,
2453 .disabled_by_bios = vmx_disabled_by_bios,
2454 .hardware_setup = hardware_setup,
2455 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03002456 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002457 .hardware_enable = hardware_enable,
2458 .hardware_disable = hardware_disable,
2459
2460 .vcpu_create = vmx_create_vcpu,
2461 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002462 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002463
Avi Kivity04d2cc72007-09-10 18:10:54 +03002464 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002465 .vcpu_load = vmx_vcpu_load,
2466 .vcpu_put = vmx_vcpu_put,
Avi Kivity774c47f2007-02-12 00:54:47 -08002467 .vcpu_decache = vmx_vcpu_decache,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002468
2469 .set_guest_debug = set_guest_debug,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002470 .guest_debug_pre = kvm_guest_debug_pre,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002471 .get_msr = vmx_get_msr,
2472 .set_msr = vmx_set_msr,
2473 .get_segment_base = vmx_get_segment_base,
2474 .get_segment = vmx_get_segment,
2475 .set_segment = vmx_set_segment,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002476 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03002477 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002478 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002479 .set_cr3 = vmx_set_cr3,
2480 .set_cr4 = vmx_set_cr4,
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002481#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002482 .set_efer = vmx_set_efer,
2483#endif
2484 .get_idt = vmx_get_idt,
2485 .set_idt = vmx_set_idt,
2486 .get_gdt = vmx_get_gdt,
2487 .set_gdt = vmx_set_gdt,
2488 .cache_regs = vcpu_load_rsp_rip,
2489 .decache_regs = vcpu_put_rsp_rip,
2490 .get_rflags = vmx_get_rflags,
2491 .set_rflags = vmx_set_rflags,
2492
2493 .tlb_flush = vmx_flush_tlb,
2494 .inject_page_fault = vmx_inject_page_fault,
2495
2496 .inject_gp = vmx_inject_gp,
2497
2498 .run = vmx_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002499 .handle_exit = kvm_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002500 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02002501 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03002502 .get_irq = vmx_get_irq,
2503 .set_irq = vmx_inject_irq,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002504 .inject_pending_irq = vmx_intr_assist,
2505 .inject_pending_vectors = do_interrupt_requests,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002506};
2507
2508static int __init vmx_init(void)
2509{
He, Qingfdef3ad2007-04-30 09:45:24 +03002510 void *iova;
2511 int r;
2512
2513 vmx_io_bitmap_a = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2514 if (!vmx_io_bitmap_a)
2515 return -ENOMEM;
2516
2517 vmx_io_bitmap_b = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2518 if (!vmx_io_bitmap_b) {
2519 r = -ENOMEM;
2520 goto out;
2521 }
2522
2523 /*
2524 * Allow direct access to the PC debug port (it is often used for I/O
2525 * delays, but the vmexits simply slow things down).
2526 */
2527 iova = kmap(vmx_io_bitmap_a);
2528 memset(iova, 0xff, PAGE_SIZE);
2529 clear_bit(0x80, iova);
Avi Kivitycd0536d2007-05-08 11:34:07 +03002530 kunmap(vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03002531
2532 iova = kmap(vmx_io_bitmap_b);
2533 memset(iova, 0xff, PAGE_SIZE);
Avi Kivitycd0536d2007-05-08 11:34:07 +03002534 kunmap(vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03002535
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002536 r = kvm_init_x86(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03002537 if (r)
2538 goto out1;
2539
2540 return 0;
2541
2542out1:
2543 __free_page(vmx_io_bitmap_b);
2544out:
2545 __free_page(vmx_io_bitmap_a);
2546 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002547}
2548
2549static void __exit vmx_exit(void)
2550{
He, Qingfdef3ad2007-04-30 09:45:24 +03002551 __free_page(vmx_io_bitmap_b);
2552 __free_page(vmx_io_bitmap_a);
2553
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002554 kvm_exit_x86();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002555}
2556
2557module_init(vmx_init)
2558module_exit(vmx_exit)