blob: fc5e7c8381ce02f5d5129ae6feb0db7ae5d0ce16 [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"
Zhang Xiantao34c16ee2007-10-20 15:34:38 +080019#include "x86.h"
Laurent Viviere7d5d762007-07-30 13:41:19 +030020#include "x86_emulate.h"
Eddie Dong85f455f2007-07-06 12:20:49 +030021#include "irq.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080022#include "vmx.h"
Avi Kivitye4956062007-06-28 14:15:57 -040023#include "segment_descriptor.h"
24
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020026#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/mm.h>
28#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020030#include <linux/moduleparam.h>
Avi Kivitye4956062007-06-28 14:15:57 -040031
Avi Kivity6aa8b732006-12-10 02:21:36 -080032#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080033#include <asm/desc.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080034
Avi Kivity6aa8b732006-12-10 02:21:36 -080035MODULE_AUTHOR("Qumranet");
36MODULE_LICENSE("GPL");
37
Avi Kivityc7addb92007-09-16 18:58:32 +020038static int bypass_guest_pf = 1;
39module_param(bypass_guest_pf, bool, 0);
40
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040041struct vmcs {
42 u32 revision_id;
43 u32 abort;
44 char data[0];
45};
46
47struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100048 struct kvm_vcpu vcpu;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040049 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +030050 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +020051 u32 idt_vectoring_info;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040052 struct kvm_msr_entry *guest_msrs;
53 struct kvm_msr_entry *host_msrs;
54 int nmsrs;
55 int save_nmsrs;
56 int msr_offset_efer;
57#ifdef CONFIG_X86_64
58 int msr_offset_kernel_gs_base;
59#endif
60 struct vmcs *vmcs;
61 struct {
62 int loaded;
63 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +020064 int gs_ldt_reload_needed;
65 int fs_reload_needed;
Avi Kivity51c6cf62007-08-29 03:48:05 +030066 int guest_efer_loaded;
Mike Dayd77c26f2007-10-08 09:02:08 -040067 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +020068 struct {
69 struct {
70 bool pending;
71 u8 vector;
72 unsigned rip;
73 } irq;
74 } rmode;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040075};
76
77static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
78{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100079 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040080}
81
Avi Kivity75880a02007-06-20 11:20:04 +030082static int init_rmode_tss(struct kvm *kvm);
83
Avi Kivity6aa8b732006-12-10 02:21:36 -080084static DEFINE_PER_CPU(struct vmcs *, vmxarea);
85static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
86
He, Qingfdef3ad2007-04-30 09:45:24 +030087static struct page *vmx_io_bitmap_a;
88static struct page *vmx_io_bitmap_b;
89
Yang, Sheng1c3d14f2007-07-29 11:07:42 +030090static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -080091 int size;
92 int order;
93 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +030094 u32 pin_based_exec_ctrl;
95 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +080096 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +030097 u32 vmexit_ctrl;
98 u32 vmentry_ctrl;
99} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800100
101#define VMX_SEGMENT_FIELD(seg) \
102 [VCPU_SREG_##seg] = { \
103 .selector = GUEST_##seg##_SELECTOR, \
104 .base = GUEST_##seg##_BASE, \
105 .limit = GUEST_##seg##_LIMIT, \
106 .ar_bytes = GUEST_##seg##_AR_BYTES, \
107 }
108
109static struct kvm_vmx_segment_field {
110 unsigned selector;
111 unsigned base;
112 unsigned limit;
113 unsigned ar_bytes;
114} kvm_vmx_segment_fields[] = {
115 VMX_SEGMENT_FIELD(CS),
116 VMX_SEGMENT_FIELD(DS),
117 VMX_SEGMENT_FIELD(ES),
118 VMX_SEGMENT_FIELD(FS),
119 VMX_SEGMENT_FIELD(GS),
120 VMX_SEGMENT_FIELD(SS),
121 VMX_SEGMENT_FIELD(TR),
122 VMX_SEGMENT_FIELD(LDTR),
123};
124
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300125/*
126 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
127 * away by decrementing the array size.
128 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800129static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800130#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800131 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, MSR_KERNEL_GS_BASE,
132#endif
133 MSR_EFER, MSR_K6_STAR,
134};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200135#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800136
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400137static void load_msrs(struct kvm_msr_entry *e, int n)
138{
139 int i;
140
141 for (i = 0; i < n; ++i)
142 wrmsrl(e[i].index, e[i].data);
143}
144
145static void save_msrs(struct kvm_msr_entry *e, int n)
146{
147 int i;
148
149 for (i = 0; i < n; ++i)
150 rdmsrl(e[i].index, e[i].data);
151}
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
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500167static inline int is_invalid_opcode(u32 intr_info)
168{
169 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
170 INTR_INFO_VALID_MASK)) ==
171 (INTR_TYPE_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
172}
173
Avi Kivity6aa8b732006-12-10 02:21:36 -0800174static inline int is_external_interrupt(u32 intr_info)
175{
176 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
177 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
178}
179
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800180static inline int cpu_has_vmx_tpr_shadow(void)
181{
182 return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW);
183}
184
185static inline int vm_need_tpr_shadow(struct kvm *kvm)
186{
187 return ((cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm)));
188}
189
Sheng Yangf78e0e22007-10-29 09:40:42 +0800190static inline int cpu_has_secondary_exec_ctrls(void)
191{
192 return (vmcs_config.cpu_based_exec_ctrl &
193 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS);
194}
195
Sheng Yangf78e0e22007-10-29 09:40:42 +0800196static inline int cpu_has_vmx_virtualize_apic_accesses(void)
197{
198 return (vmcs_config.cpu_based_2nd_exec_ctrl &
199 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
200}
201
202static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
203{
204 return ((cpu_has_vmx_virtualize_apic_accesses()) &&
205 (irqchip_in_kernel(kvm)));
206}
207
Rusty Russell8b9cf982007-07-30 16:31:43 +1000208static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800209{
210 int i;
211
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400212 for (i = 0; i < vmx->nmsrs; ++i)
213 if (vmx->guest_msrs[i].index == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300214 return i;
215 return -1;
216}
217
Rusty Russell8b9cf982007-07-30 16:31:43 +1000218static struct kvm_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300219{
220 int i;
221
Rusty Russell8b9cf982007-07-30 16:31:43 +1000222 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300223 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400224 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000225 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800226}
227
Avi Kivity6aa8b732006-12-10 02:21:36 -0800228static void vmcs_clear(struct vmcs *vmcs)
229{
230 u64 phys_addr = __pa(vmcs);
231 u8 error;
232
233 asm volatile (ASM_VMX_VMCLEAR_RAX "; setna %0"
234 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
235 : "cc", "memory");
236 if (error)
237 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
238 vmcs, phys_addr);
239}
240
241static void __vcpu_clear(void *arg)
242{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000243 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800244 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800245
Rusty Russell8b9cf982007-07-30 16:31:43 +1000246 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400247 vmcs_clear(vmx->vmcs);
248 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800249 per_cpu(current_vmcs, cpu) = NULL;
Rusty Russell8b9cf982007-07-30 16:31:43 +1000250 rdtscll(vmx->vcpu.host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800251}
252
Rusty Russell8b9cf982007-07-30 16:31:43 +1000253static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800254{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200255 if (vmx->vcpu.cpu == -1)
256 return;
Avi Kivityf566e092007-09-30 11:02:53 +0200257 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 0, 1);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000258 vmx->launched = 0;
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800259}
260
Avi Kivity6aa8b732006-12-10 02:21:36 -0800261static unsigned long vmcs_readl(unsigned long field)
262{
263 unsigned long value;
264
265 asm volatile (ASM_VMX_VMREAD_RDX_RAX
266 : "=a"(value) : "d"(field) : "cc");
267 return value;
268}
269
270static u16 vmcs_read16(unsigned long field)
271{
272 return vmcs_readl(field);
273}
274
275static u32 vmcs_read32(unsigned long field)
276{
277 return vmcs_readl(field);
278}
279
280static u64 vmcs_read64(unsigned long field)
281{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800282#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800283 return vmcs_readl(field);
284#else
285 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
286#endif
287}
288
Avi Kivitye52de1b2007-01-05 16:36:56 -0800289static noinline void vmwrite_error(unsigned long field, unsigned long value)
290{
291 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
292 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
293 dump_stack();
294}
295
Avi Kivity6aa8b732006-12-10 02:21:36 -0800296static void vmcs_writel(unsigned long field, unsigned long value)
297{
298 u8 error;
299
300 asm volatile (ASM_VMX_VMWRITE_RAX_RDX "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400301 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800302 if (unlikely(error))
303 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800304}
305
306static void vmcs_write16(unsigned long field, u16 value)
307{
308 vmcs_writel(field, value);
309}
310
311static void vmcs_write32(unsigned long field, u32 value)
312{
313 vmcs_writel(field, value);
314}
315
316static void vmcs_write64(unsigned long field, u64 value)
317{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800318#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800319 vmcs_writel(field, value);
320#else
321 vmcs_writel(field, value);
322 asm volatile ("");
323 vmcs_writel(field+1, value >> 32);
324#endif
325}
326
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300327static void vmcs_clear_bits(unsigned long field, u32 mask)
328{
329 vmcs_writel(field, vmcs_readl(field) & ~mask);
330}
331
332static void vmcs_set_bits(unsigned long field, u32 mask)
333{
334 vmcs_writel(field, vmcs_readl(field) | mask);
335}
336
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300337static void update_exception_bitmap(struct kvm_vcpu *vcpu)
338{
339 u32 eb;
340
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500341 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300342 if (!vcpu->fpu_active)
343 eb |= 1u << NM_VECTOR;
344 if (vcpu->guest_debug.enabled)
345 eb |= 1u << 1;
346 if (vcpu->rmode.active)
347 eb = ~0;
348 vmcs_write32(EXCEPTION_BITMAP, eb);
349}
350
Avi Kivity33ed6322007-05-02 16:54:03 +0300351static void reload_tss(void)
352{
353#ifndef CONFIG_X86_64
354
355 /*
356 * VT restores TR but not its size. Useless.
357 */
358 struct descriptor_table gdt;
359 struct segment_descriptor *descs;
360
361 get_gdt(&gdt);
362 descs = (void *)gdt.base;
363 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
364 load_TR_desc();
365#endif
366}
367
Rusty Russell8b9cf982007-07-30 16:31:43 +1000368static void load_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300369{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400370 int efer_offset = vmx->msr_offset_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300371 u64 host_efer = vmx->host_msrs[efer_offset].data;
372 u64 guest_efer = vmx->guest_msrs[efer_offset].data;
373 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300374
Avi Kivity51c6cf62007-08-29 03:48:05 +0300375 if (efer_offset < 0)
376 return;
377 /*
378 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
379 * outside long mode
380 */
381 ignore_bits = EFER_NX | EFER_SCE;
382#ifdef CONFIG_X86_64
383 ignore_bits |= EFER_LMA | EFER_LME;
384 /* SCE is meaningful only in long mode on Intel */
385 if (guest_efer & EFER_LMA)
386 ignore_bits &= ~(u64)EFER_SCE;
387#endif
388 if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
389 return;
390
391 vmx->host_state.guest_efer_loaded = 1;
392 guest_efer &= ~ignore_bits;
393 guest_efer |= host_efer & ignore_bits;
394 wrmsrl(MSR_EFER, guest_efer);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000395 vmx->vcpu.stat.efer_reload++;
Eddie Dong2cc51562007-05-21 07:28:09 +0300396}
397
Avi Kivity51c6cf62007-08-29 03:48:05 +0300398static void reload_host_efer(struct vcpu_vmx *vmx)
399{
400 if (vmx->host_state.guest_efer_loaded) {
401 vmx->host_state.guest_efer_loaded = 0;
402 load_msrs(vmx->host_msrs + vmx->msr_offset_efer, 1);
403 }
404}
405
Avi Kivity04d2cc72007-09-10 18:10:54 +0300406static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300407{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300408 struct vcpu_vmx *vmx = to_vmx(vcpu);
409
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 = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300414 /*
415 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
416 * allow segment selectors with cpl > 0 or ti == 1.
417 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400418 vmx->host_state.ldt_sel = read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200419 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400420 vmx->host_state.fs_sel = read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200421 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400422 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200423 vmx->host_state.fs_reload_needed = 0;
424 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300425 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200426 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300427 }
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400428 vmx->host_state.gs_sel = read_gs();
429 if (!(vmx->host_state.gs_sel & 7))
430 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300431 else {
432 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200433 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300434 }
435
436#ifdef CONFIG_X86_64
437 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
438 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
439#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400440 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
441 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300442#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300443
444#ifdef CONFIG_X86_64
Mike Dayd77c26f2007-10-08 09:02:08 -0400445 if (is_long_mode(&vmx->vcpu))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400446 save_msrs(vmx->host_msrs +
447 vmx->msr_offset_kernel_gs_base, 1);
Mike Dayd77c26f2007-10-08 09:02:08 -0400448
Avi Kivity707c0872007-05-02 17:33:43 +0300449#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400450 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300451 load_transition_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300452}
453
Rusty Russell8b9cf982007-07-30 16:31:43 +1000454static void vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300455{
Avi Kivity15ad7142007-07-11 18:17:21 +0300456 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300457
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400458 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300459 return;
460
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200461 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400462 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200463 if (vmx->host_state.fs_reload_needed)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400464 load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200465 if (vmx->host_state.gs_ldt_reload_needed) {
466 load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300467 /*
468 * If we have to reload gs, we must take care to
469 * preserve our gs base.
470 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300471 local_irq_save(flags);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400472 load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300473#ifdef CONFIG_X86_64
474 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
475#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300476 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300477 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200478 reload_tss();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400479 save_msrs(vmx->guest_msrs, vmx->save_nmsrs);
480 load_msrs(vmx->host_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300481 reload_host_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300482}
483
Avi Kivity6aa8b732006-12-10 02:21:36 -0800484/*
485 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
486 * vcpu mutex is already taken.
487 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300488static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800489{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400490 struct vcpu_vmx *vmx = to_vmx(vcpu);
491 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity77002702007-06-13 19:55:28 +0300492 u64 tsc_this, delta;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800493
Eddie Donga3d7f852007-09-03 16:15:12 +0300494 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000495 vcpu_clear(vmx);
Eddie Donga3d7f852007-09-03 16:15:12 +0300496 kvm_migrate_apic_timer(vcpu);
497 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800498
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400499 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800500 u8 error;
501
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400502 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800503 asm volatile (ASM_VMX_VMPTRLD_RAX "; setna %0"
504 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
505 : "cc");
506 if (error)
507 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400508 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800509 }
510
511 if (vcpu->cpu != cpu) {
512 struct descriptor_table dt;
513 unsigned long sysenter_esp;
514
515 vcpu->cpu = cpu;
516 /*
517 * Linux uses per-cpu TSS and GDT, so set these when switching
518 * processors.
519 */
520 vmcs_writel(HOST_TR_BASE, read_tr_base()); /* 22.2.4 */
521 get_gdt(&dt);
522 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
523
524 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
525 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300526
527 /*
528 * Make sure the time stamp counter is monotonous.
529 */
530 rdtscll(tsc_this);
531 delta = vcpu->host_tsc - tsc_this;
532 vmcs_write64(TSC_OFFSET, vmcs_read64(TSC_OFFSET) + delta);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800533 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800534}
535
536static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
537{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000538 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800539}
540
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300541static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
542{
543 if (vcpu->fpu_active)
544 return;
545 vcpu->fpu_active = 1;
Rusty Russell707d92f2007-07-17 23:19:08 +1000546 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
547 if (vcpu->cr0 & X86_CR0_TS)
548 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300549 update_exception_bitmap(vcpu);
550}
551
552static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
553{
554 if (!vcpu->fpu_active)
555 return;
556 vcpu->fpu_active = 0;
Rusty Russell707d92f2007-07-17 23:19:08 +1000557 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300558 update_exception_bitmap(vcpu);
559}
560
Avi Kivity774c47f2007-02-12 00:54:47 -0800561static void vmx_vcpu_decache(struct kvm_vcpu *vcpu)
562{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000563 vcpu_clear(to_vmx(vcpu));
Avi Kivity774c47f2007-02-12 00:54:47 -0800564}
565
Avi Kivity6aa8b732006-12-10 02:21:36 -0800566static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
567{
568 return vmcs_readl(GUEST_RFLAGS);
569}
570
571static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
572{
Avi Kivity78f78268682007-10-16 19:06:15 +0200573 if (vcpu->rmode.active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100574 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800575 vmcs_writel(GUEST_RFLAGS, rflags);
576}
577
578static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
579{
580 unsigned long rip;
581 u32 interruptibility;
582
583 rip = vmcs_readl(GUEST_RIP);
584 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
585 vmcs_writel(GUEST_RIP, rip);
586
587 /*
588 * We emulated an instruction, so temporary interrupt blocking
589 * should be removed, if set.
590 */
591 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
592 if (interruptibility & 3)
593 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
594 interruptibility & ~3);
Dor Laorc1150d82007-01-05 16:36:24 -0800595 vcpu->interrupt_window_open = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800596}
597
598static void vmx_inject_gp(struct kvm_vcpu *vcpu, unsigned error_code)
599{
600 printk(KERN_DEBUG "inject_general_protection: rip 0x%lx\n",
601 vmcs_readl(GUEST_RIP));
602 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
603 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
604 GP_VECTOR |
605 INTR_TYPE_EXCEPTION |
606 INTR_INFO_DELIEVER_CODE_MASK |
607 INTR_INFO_VALID_MASK);
608}
609
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500610static void vmx_inject_ud(struct kvm_vcpu *vcpu)
611{
612 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
613 UD_VECTOR |
614 INTR_TYPE_EXCEPTION |
615 INTR_INFO_VALID_MASK);
616}
617
Avi Kivity6aa8b732006-12-10 02:21:36 -0800618/*
Eddie Donga75beee2007-05-17 18:55:15 +0300619 * Swap MSR entry in host/guest MSR entry array.
620 */
Gabriel C54e11fa2007-08-01 16:23:10 +0200621#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000622static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300623{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400624 struct kvm_msr_entry tmp;
625
626 tmp = vmx->guest_msrs[to];
627 vmx->guest_msrs[to] = vmx->guest_msrs[from];
628 vmx->guest_msrs[from] = tmp;
629 tmp = vmx->host_msrs[to];
630 vmx->host_msrs[to] = vmx->host_msrs[from];
631 vmx->host_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300632}
Gabriel C54e11fa2007-08-01 16:23:10 +0200633#endif
Eddie Donga75beee2007-05-17 18:55:15 +0300634
635/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300636 * Set up the vmcs to automatically save and restore system
637 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
638 * mode, as fiddling with msrs is very expensive.
639 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000640static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300641{
Eddie Dong2cc51562007-05-21 07:28:09 +0300642 int save_nmsrs;
Avi Kivitye38aea32007-04-19 13:22:48 +0300643
Eddie Donga75beee2007-05-17 18:55:15 +0300644 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300645#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000646 if (is_long_mode(&vmx->vcpu)) {
Eddie Dong2cc51562007-05-21 07:28:09 +0300647 int index;
648
Rusty Russell8b9cf982007-07-30 16:31:43 +1000649 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300650 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000651 move_msr_up(vmx, index, save_nmsrs++);
652 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300653 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000654 move_msr_up(vmx, index, save_nmsrs++);
655 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300656 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000657 move_msr_up(vmx, index, save_nmsrs++);
658 index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300659 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000660 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300661 /*
662 * MSR_K6_STAR is only needed on long mode guests, and only
663 * if efer.sce is enabled.
664 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000665 index = __find_msr_index(vmx, MSR_K6_STAR);
666 if ((index >= 0) && (vmx->vcpu.shadow_efer & EFER_SCE))
667 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300668 }
Eddie Donga75beee2007-05-17 18:55:15 +0300669#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400670 vmx->save_nmsrs = save_nmsrs;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300671
Eddie Donga75beee2007-05-17 18:55:15 +0300672#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400673 vmx->msr_offset_kernel_gs_base =
Rusty Russell8b9cf982007-07-30 16:31:43 +1000674 __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300675#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +1000676 vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
Avi Kivitye38aea32007-04-19 13:22:48 +0300677}
678
679/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800680 * reads and returns guest's timestamp counter "register"
681 * guest_tsc = host_tsc + tsc_offset -- 21.3
682 */
683static u64 guest_read_tsc(void)
684{
685 u64 host_tsc, tsc_offset;
686
687 rdtscll(host_tsc);
688 tsc_offset = vmcs_read64(TSC_OFFSET);
689 return host_tsc + tsc_offset;
690}
691
692/*
693 * writes 'guest_tsc' into guest's timestamp counter "register"
694 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
695 */
696static void guest_write_tsc(u64 guest_tsc)
697{
698 u64 host_tsc;
699
700 rdtscll(host_tsc);
701 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
702}
703
Avi Kivity6aa8b732006-12-10 02:21:36 -0800704/*
705 * Reads an msr value (of 'msr_index') into 'pdata'.
706 * Returns 0 on success, non-0 otherwise.
707 * Assumes vcpu_load() was already called.
708 */
709static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
710{
711 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400712 struct kvm_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800713
714 if (!pdata) {
715 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
716 return -EINVAL;
717 }
718
719 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800720#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800721 case MSR_FS_BASE:
722 data = vmcs_readl(GUEST_FS_BASE);
723 break;
724 case MSR_GS_BASE:
725 data = vmcs_readl(GUEST_GS_BASE);
726 break;
727 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800728 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800729#endif
730 case MSR_IA32_TIME_STAMP_COUNTER:
731 data = guest_read_tsc();
732 break;
733 case MSR_IA32_SYSENTER_CS:
734 data = vmcs_read32(GUEST_SYSENTER_CS);
735 break;
736 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200737 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800738 break;
739 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200740 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800741 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800742 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +1000743 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800744 if (msr) {
745 data = msr->data;
746 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800747 }
Avi Kivity3bab1f52006-12-29 16:49:48 -0800748 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800749 }
750
751 *pdata = data;
752 return 0;
753}
754
755/*
756 * Writes msr value into into the appropriate "register".
757 * Returns 0 on success, non-0 otherwise.
758 * Assumes vcpu_load() was already called.
759 */
760static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
761{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400762 struct vcpu_vmx *vmx = to_vmx(vcpu);
763 struct kvm_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +0300764 int ret = 0;
765
Avi Kivity6aa8b732006-12-10 02:21:36 -0800766 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800767#ifdef CONFIG_X86_64
Avi Kivity3bab1f52006-12-29 16:49:48 -0800768 case MSR_EFER:
Eddie Dong2cc51562007-05-21 07:28:09 +0300769 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300770 if (vmx->host_state.loaded) {
771 reload_host_efer(vmx);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000772 load_transition_efer(vmx);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300773 }
Eddie Dong2cc51562007-05-21 07:28:09 +0300774 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800775 case MSR_FS_BASE:
776 vmcs_writel(GUEST_FS_BASE, data);
777 break;
778 case MSR_GS_BASE:
779 vmcs_writel(GUEST_GS_BASE, data);
780 break;
781#endif
782 case MSR_IA32_SYSENTER_CS:
783 vmcs_write32(GUEST_SYSENTER_CS, data);
784 break;
785 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200786 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800787 break;
788 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200789 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800790 break;
Avi Kivityd27d4ac2007-02-19 14:37:46 +0200791 case MSR_IA32_TIME_STAMP_COUNTER:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800792 guest_write_tsc(data);
793 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800794 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +1000795 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800796 if (msr) {
797 msr->data = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400798 if (vmx->host_state.loaded)
799 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800800 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800801 }
Eddie Dong2cc51562007-05-21 07:28:09 +0300802 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800803 }
804
Eddie Dong2cc51562007-05-21 07:28:09 +0300805 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800806}
807
808/*
809 * Sync the rsp and rip registers into the vcpu structure. This allows
810 * registers to be accessed by indexing vcpu->regs.
811 */
812static void vcpu_load_rsp_rip(struct kvm_vcpu *vcpu)
813{
814 vcpu->regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
815 vcpu->rip = vmcs_readl(GUEST_RIP);
816}
817
818/*
819 * Syncs rsp and rip back into the vmcs. Should be called after possible
820 * modification.
821 */
822static void vcpu_put_rsp_rip(struct kvm_vcpu *vcpu)
823{
824 vmcs_writel(GUEST_RSP, vcpu->regs[VCPU_REGS_RSP]);
825 vmcs_writel(GUEST_RIP, vcpu->rip);
826}
827
828static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
829{
830 unsigned long dr7 = 0x400;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800831 int old_singlestep;
832
Avi Kivity6aa8b732006-12-10 02:21:36 -0800833 old_singlestep = vcpu->guest_debug.singlestep;
834
835 vcpu->guest_debug.enabled = dbg->enabled;
836 if (vcpu->guest_debug.enabled) {
837 int i;
838
839 dr7 |= 0x200; /* exact */
840 for (i = 0; i < 4; ++i) {
841 if (!dbg->breakpoints[i].enabled)
842 continue;
843 vcpu->guest_debug.bp[i] = dbg->breakpoints[i].address;
844 dr7 |= 2 << (i*2); /* global enable */
845 dr7 |= 0 << (i*4+16); /* execution breakpoint */
846 }
847
Avi Kivity6aa8b732006-12-10 02:21:36 -0800848 vcpu->guest_debug.singlestep = dbg->singlestep;
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300849 } else
Avi Kivity6aa8b732006-12-10 02:21:36 -0800850 vcpu->guest_debug.singlestep = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800851
852 if (old_singlestep && !vcpu->guest_debug.singlestep) {
853 unsigned long flags;
854
855 flags = vmcs_readl(GUEST_RFLAGS);
856 flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
857 vmcs_writel(GUEST_RFLAGS, flags);
858 }
859
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300860 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800861 vmcs_writel(GUEST_DR7, dr7);
862
863 return 0;
864}
865
Eddie Dong2a8067f2007-08-06 16:29:07 +0300866static int vmx_get_irq(struct kvm_vcpu *vcpu)
867{
Avi Kivity1155f762007-11-22 11:30:47 +0200868 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eddie Dong2a8067f2007-08-06 16:29:07 +0300869 u32 idtv_info_field;
870
Avi Kivity1155f762007-11-22 11:30:47 +0200871 idtv_info_field = vmx->idt_vectoring_info;
Eddie Dong2a8067f2007-08-06 16:29:07 +0300872 if (idtv_info_field & INTR_INFO_VALID_MASK) {
873 if (is_external_interrupt(idtv_info_field))
874 return idtv_info_field & VECTORING_INFO_VECTOR_MASK;
875 else
Mike Dayd77c26f2007-10-08 09:02:08 -0400876 printk(KERN_DEBUG "pending exception: not handled yet\n");
Eddie Dong2a8067f2007-08-06 16:29:07 +0300877 }
878 return -1;
879}
880
Avi Kivity6aa8b732006-12-10 02:21:36 -0800881static __init int cpu_has_kvm_support(void)
882{
883 unsigned long ecx = cpuid_ecx(1);
884 return test_bit(5, &ecx); /* CPUID.1:ECX.VMX[bit 5] -> VT */
885}
886
887static __init int vmx_disabled_by_bios(void)
888{
889 u64 msr;
890
891 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Yang, Sheng62b3ffb2007-07-25 12:17:06 +0300892 return (msr & (MSR_IA32_FEATURE_CONTROL_LOCKED |
893 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
894 == MSR_IA32_FEATURE_CONTROL_LOCKED;
895 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800896}
897
Avi Kivity774c47f2007-02-12 00:54:47 -0800898static void hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800899{
900 int cpu = raw_smp_processor_id();
901 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
902 u64 old;
903
904 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Yang, Sheng62b3ffb2007-07-25 12:17:06 +0300905 if ((old & (MSR_IA32_FEATURE_CONTROL_LOCKED |
906 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
907 != (MSR_IA32_FEATURE_CONTROL_LOCKED |
908 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800909 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +0300910 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
911 MSR_IA32_FEATURE_CONTROL_LOCKED |
912 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +1000913 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914 asm volatile (ASM_VMX_VMXON_RAX : : "a"(&phys_addr), "m"(phys_addr)
915 : "memory", "cc");
916}
917
918static void hardware_disable(void *garbage)
919{
920 asm volatile (ASM_VMX_VMXOFF : : : "cc");
921}
922
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300923static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -0400924 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800925{
926 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300927 u32 ctl = ctl_min | ctl_opt;
928
929 rdmsr(msr, vmx_msr_low, vmx_msr_high);
930
931 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
932 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
933
934 /* Ensure minimum (required) set of control bits are supported. */
935 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300936 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300937
938 *result = ctl;
939 return 0;
940}
941
Yang, Sheng002c7f72007-07-31 14:23:01 +0300942static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300943{
944 u32 vmx_msr_low, vmx_msr_high;
945 u32 min, opt;
946 u32 _pin_based_exec_control = 0;
947 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800948 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300949 u32 _vmexit_control = 0;
950 u32 _vmentry_control = 0;
951
952 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
953 opt = 0;
954 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
955 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300956 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300957
958 min = CPU_BASED_HLT_EXITING |
959#ifdef CONFIG_X86_64
960 CPU_BASED_CR8_LOAD_EXITING |
961 CPU_BASED_CR8_STORE_EXITING |
962#endif
963 CPU_BASED_USE_IO_BITMAPS |
964 CPU_BASED_MOV_DR_EXITING |
965 CPU_BASED_USE_TSC_OFFSETING;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800966 opt = CPU_BASED_TPR_SHADOW |
967 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300968 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
969 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300970 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800971#ifdef CONFIG_X86_64
972 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
973 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
974 ~CPU_BASED_CR8_STORE_EXITING;
975#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +0800976 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
977 min = 0;
Eddie Donge5edaa02007-11-11 12:28:35 +0200978 opt = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
979 SECONDARY_EXEC_WBINVD_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800980 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS2,
981 &_cpu_based_2nd_exec_control) < 0)
982 return -EIO;
983 }
984#ifndef CONFIG_X86_64
985 if (!(_cpu_based_2nd_exec_control &
986 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
987 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
988#endif
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300989
990 min = 0;
991#ifdef CONFIG_X86_64
992 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
993#endif
994 opt = 0;
995 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
996 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300997 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300998
999 min = opt = 0;
1000 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1001 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001002 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001003
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001004 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001005
1006 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1007 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001008 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001009
1010#ifdef CONFIG_X86_64
1011 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1012 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001013 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001014#endif
1015
1016 /* Require Write-Back (WB) memory type for VMCS accesses. */
1017 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001018 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001019
Yang, Sheng002c7f72007-07-31 14:23:01 +03001020 vmcs_conf->size = vmx_msr_high & 0x1fff;
1021 vmcs_conf->order = get_order(vmcs_config.size);
1022 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001023
Yang, Sheng002c7f72007-07-31 14:23:01 +03001024 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1025 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001026 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001027 vmcs_conf->vmexit_ctrl = _vmexit_control;
1028 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001029
1030 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001031}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032
1033static struct vmcs *alloc_vmcs_cpu(int cpu)
1034{
1035 int node = cpu_to_node(cpu);
1036 struct page *pages;
1037 struct vmcs *vmcs;
1038
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001039 pages = alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001040 if (!pages)
1041 return NULL;
1042 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001043 memset(vmcs, 0, vmcs_config.size);
1044 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001045 return vmcs;
1046}
1047
1048static struct vmcs *alloc_vmcs(void)
1049{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001050 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001051}
1052
1053static void free_vmcs(struct vmcs *vmcs)
1054{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001055 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001056}
1057
Sam Ravnborg39959582007-06-01 00:47:13 -07001058static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001059{
1060 int cpu;
1061
1062 for_each_online_cpu(cpu)
1063 free_vmcs(per_cpu(vmxarea, cpu));
1064}
1065
Avi Kivity6aa8b732006-12-10 02:21:36 -08001066static __init int alloc_kvm_area(void)
1067{
1068 int cpu;
1069
1070 for_each_online_cpu(cpu) {
1071 struct vmcs *vmcs;
1072
1073 vmcs = alloc_vmcs_cpu(cpu);
1074 if (!vmcs) {
1075 free_kvm_area();
1076 return -ENOMEM;
1077 }
1078
1079 per_cpu(vmxarea, cpu) = vmcs;
1080 }
1081 return 0;
1082}
1083
1084static __init int hardware_setup(void)
1085{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001086 if (setup_vmcs_config(&vmcs_config) < 0)
1087 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001088 return alloc_kvm_area();
1089}
1090
1091static __exit void hardware_unsetup(void)
1092{
1093 free_kvm_area();
1094}
1095
Avi Kivity6aa8b732006-12-10 02:21:36 -08001096static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1097{
1098 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1099
Avi Kivity6af11b92007-03-19 13:18:10 +02001100 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001101 vmcs_write16(sf->selector, save->selector);
1102 vmcs_writel(sf->base, save->base);
1103 vmcs_write32(sf->limit, save->limit);
1104 vmcs_write32(sf->ar_bytes, save->ar);
1105 } else {
1106 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1107 << AR_DPL_SHIFT;
1108 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1109 }
1110}
1111
1112static void enter_pmode(struct kvm_vcpu *vcpu)
1113{
1114 unsigned long flags;
1115
1116 vcpu->rmode.active = 0;
1117
1118 vmcs_writel(GUEST_TR_BASE, vcpu->rmode.tr.base);
1119 vmcs_write32(GUEST_TR_LIMIT, vcpu->rmode.tr.limit);
1120 vmcs_write32(GUEST_TR_AR_BYTES, vcpu->rmode.tr.ar);
1121
1122 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001123 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001124 flags |= (vcpu->rmode.save_iopl << IOPL_SHIFT);
1125 vmcs_writel(GUEST_RFLAGS, flags);
1126
Rusty Russell66aee912007-07-17 23:34:16 +10001127 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1128 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001129
1130 update_exception_bitmap(vcpu);
1131
1132 fix_pmode_dataseg(VCPU_SREG_ES, &vcpu->rmode.es);
1133 fix_pmode_dataseg(VCPU_SREG_DS, &vcpu->rmode.ds);
1134 fix_pmode_dataseg(VCPU_SREG_GS, &vcpu->rmode.gs);
1135 fix_pmode_dataseg(VCPU_SREG_FS, &vcpu->rmode.fs);
1136
1137 vmcs_write16(GUEST_SS_SELECTOR, 0);
1138 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1139
1140 vmcs_write16(GUEST_CS_SELECTOR,
1141 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1142 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1143}
1144
Mike Dayd77c26f2007-10-08 09:02:08 -04001145static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001146{
Izik Eiduscbc94022007-10-25 00:29:55 +02001147 if (!kvm->tss_addr) {
1148 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1149 kvm->memslots[0].npages - 3;
1150 return base_gfn << PAGE_SHIFT;
1151 }
1152 return kvm->tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001153}
1154
1155static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1156{
1157 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1158
1159 save->selector = vmcs_read16(sf->selector);
1160 save->base = vmcs_readl(sf->base);
1161 save->limit = vmcs_read32(sf->limit);
1162 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001163 vmcs_write16(sf->selector, save->base >> 4);
1164 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001165 vmcs_write32(sf->limit, 0xffff);
1166 vmcs_write32(sf->ar_bytes, 0xf3);
1167}
1168
1169static void enter_rmode(struct kvm_vcpu *vcpu)
1170{
1171 unsigned long flags;
1172
1173 vcpu->rmode.active = 1;
1174
1175 vcpu->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
1176 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1177
1178 vcpu->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
1179 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1180
1181 vcpu->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
1182 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1183
1184 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001185 vcpu->rmode.save_iopl = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001186
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001187 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001188
1189 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001190 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001191 update_exception_bitmap(vcpu);
1192
1193 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1194 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1195 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1196
1197 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001198 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001199 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1200 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001201 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1202
1203 fix_rmode_seg(VCPU_SREG_ES, &vcpu->rmode.es);
1204 fix_rmode_seg(VCPU_SREG_DS, &vcpu->rmode.ds);
1205 fix_rmode_seg(VCPU_SREG_GS, &vcpu->rmode.gs);
1206 fix_rmode_seg(VCPU_SREG_FS, &vcpu->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001207
Eddie Dong8668a3c2007-10-10 14:26:45 +08001208 kvm_mmu_reset_context(vcpu);
Avi Kivity75880a02007-06-20 11:20:04 +03001209 init_rmode_tss(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001210}
1211
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001212#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001213
1214static void enter_lmode(struct kvm_vcpu *vcpu)
1215{
1216 u32 guest_tr_ar;
1217
1218 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1219 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1220 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
1221 __FUNCTION__);
1222 vmcs_write32(GUEST_TR_AR_BYTES,
1223 (guest_tr_ar & ~AR_TYPE_MASK)
1224 | AR_TYPE_BUSY_64_TSS);
1225 }
1226
1227 vcpu->shadow_efer |= EFER_LMA;
1228
Rusty Russell8b9cf982007-07-30 16:31:43 +10001229 find_msr_entry(to_vmx(vcpu), MSR_EFER)->data |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001230 vmcs_write32(VM_ENTRY_CONTROLS,
1231 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001232 | VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001233}
1234
1235static void exit_lmode(struct kvm_vcpu *vcpu)
1236{
1237 vcpu->shadow_efer &= ~EFER_LMA;
1238
1239 vmcs_write32(VM_ENTRY_CONTROLS,
1240 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001241 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001242}
1243
1244#endif
1245
Anthony Liguori25c4c272007-04-27 09:29:21 +03001246static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001247{
Avi Kivity399badf2007-01-05 16:36:38 -08001248 vcpu->cr4 &= KVM_GUEST_CR4_MASK;
1249 vcpu->cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
1250}
1251
Avi Kivity6aa8b732006-12-10 02:21:36 -08001252static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1253{
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001254 vmx_fpu_deactivate(vcpu);
1255
Rusty Russell707d92f2007-07-17 23:19:08 +10001256 if (vcpu->rmode.active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001257 enter_pmode(vcpu);
1258
Rusty Russell707d92f2007-07-17 23:19:08 +10001259 if (!vcpu->rmode.active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001260 enter_rmode(vcpu);
1261
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001262#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001263 if (vcpu->shadow_efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10001264 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001265 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10001266 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001267 exit_lmode(vcpu);
1268 }
1269#endif
1270
1271 vmcs_writel(CR0_READ_SHADOW, cr0);
1272 vmcs_writel(GUEST_CR0,
1273 (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON);
1274 vcpu->cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001275
Rusty Russell707d92f2007-07-17 23:19:08 +10001276 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001277 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001278}
1279
Avi Kivity6aa8b732006-12-10 02:21:36 -08001280static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1281{
1282 vmcs_writel(GUEST_CR3, cr3);
Rusty Russell707d92f2007-07-17 23:19:08 +10001283 if (vcpu->cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001284 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001285}
1286
1287static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1288{
1289 vmcs_writel(CR4_READ_SHADOW, cr4);
1290 vmcs_writel(GUEST_CR4, cr4 | (vcpu->rmode.active ?
1291 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON));
1292 vcpu->cr4 = cr4;
1293}
1294
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001295#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001296
1297static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1298{
Rusty Russell8b9cf982007-07-30 16:31:43 +10001299 struct vcpu_vmx *vmx = to_vmx(vcpu);
1300 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001301
1302 vcpu->shadow_efer = efer;
1303 if (efer & EFER_LMA) {
1304 vmcs_write32(VM_ENTRY_CONTROLS,
1305 vmcs_read32(VM_ENTRY_CONTROLS) |
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001306 VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001307 msr->data = efer;
1308
1309 } else {
1310 vmcs_write32(VM_ENTRY_CONTROLS,
1311 vmcs_read32(VM_ENTRY_CONTROLS) &
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001312 ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001313
1314 msr->data = efer & ~EFER_LME;
1315 }
Rusty Russell8b9cf982007-07-30 16:31:43 +10001316 setup_msrs(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001317}
1318
1319#endif
1320
1321static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1322{
1323 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1324
1325 return vmcs_readl(sf->base);
1326}
1327
1328static void vmx_get_segment(struct kvm_vcpu *vcpu,
1329 struct kvm_segment *var, int seg)
1330{
1331 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1332 u32 ar;
1333
1334 var->base = vmcs_readl(sf->base);
1335 var->limit = vmcs_read32(sf->limit);
1336 var->selector = vmcs_read16(sf->selector);
1337 ar = vmcs_read32(sf->ar_bytes);
1338 if (ar & AR_UNUSABLE_MASK)
1339 ar = 0;
1340 var->type = ar & 15;
1341 var->s = (ar >> 4) & 1;
1342 var->dpl = (ar >> 5) & 3;
1343 var->present = (ar >> 7) & 1;
1344 var->avl = (ar >> 12) & 1;
1345 var->l = (ar >> 13) & 1;
1346 var->db = (ar >> 14) & 1;
1347 var->g = (ar >> 15) & 1;
1348 var->unusable = (ar >> 16) & 1;
1349}
1350
Avi Kivity653e3102007-05-07 10:55:37 +03001351static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001352{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001353 u32 ar;
1354
Avi Kivity653e3102007-05-07 10:55:37 +03001355 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001356 ar = 1 << 16;
1357 else {
1358 ar = var->type & 15;
1359 ar |= (var->s & 1) << 4;
1360 ar |= (var->dpl & 3) << 5;
1361 ar |= (var->present & 1) << 7;
1362 ar |= (var->avl & 1) << 12;
1363 ar |= (var->l & 1) << 13;
1364 ar |= (var->db & 1) << 14;
1365 ar |= (var->g & 1) << 15;
1366 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001367 if (ar == 0) /* a 0 value means unusable */
1368 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001369
1370 return ar;
1371}
1372
1373static void vmx_set_segment(struct kvm_vcpu *vcpu,
1374 struct kvm_segment *var, int seg)
1375{
1376 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1377 u32 ar;
1378
1379 if (vcpu->rmode.active && seg == VCPU_SREG_TR) {
1380 vcpu->rmode.tr.selector = var->selector;
1381 vcpu->rmode.tr.base = var->base;
1382 vcpu->rmode.tr.limit = var->limit;
1383 vcpu->rmode.tr.ar = vmx_segment_access_rights(var);
1384 return;
1385 }
1386 vmcs_writel(sf->base, var->base);
1387 vmcs_write32(sf->limit, var->limit);
1388 vmcs_write16(sf->selector, var->selector);
1389 if (vcpu->rmode.active && var->s) {
1390 /*
1391 * Hack real-mode segments into vm86 compatibility.
1392 */
1393 if (var->base == 0xffff0000 && var->selector == 0xf000)
1394 vmcs_writel(sf->base, 0xf0000);
1395 ar = 0xf3;
1396 } else
1397 ar = vmx_segment_access_rights(var);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398 vmcs_write32(sf->ar_bytes, ar);
1399}
1400
Avi Kivity6aa8b732006-12-10 02:21:36 -08001401static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1402{
1403 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1404
1405 *db = (ar >> 14) & 1;
1406 *l = (ar >> 13) & 1;
1407}
1408
1409static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1410{
1411 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1412 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1413}
1414
1415static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1416{
1417 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1418 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1419}
1420
1421static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1422{
1423 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1424 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1425}
1426
1427static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1428{
1429 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1430 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1431}
1432
Mike Dayd77c26f2007-10-08 09:02:08 -04001433static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001434{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001435 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001436 u16 data = 0;
1437 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001438
Izik Eidus195aefd2007-10-01 22:14:18 +02001439 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1440 if (r < 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001441 return 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02001442 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
1443 r = kvm_write_guest_page(kvm, fn++, &data, 0x66, sizeof(u16));
1444 if (r < 0)
1445 return 0;
1446 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
1447 if (r < 0)
1448 return 0;
1449 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1450 if (r < 0)
1451 return 0;
1452 data = ~0;
1453 r = kvm_write_guest_page(kvm, fn, &data, RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
1454 sizeof(u8));
1455 if (r < 0)
1456 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001457 return 1;
1458}
1459
Avi Kivity6aa8b732006-12-10 02:21:36 -08001460static void seg_setup(int seg)
1461{
1462 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1463
1464 vmcs_write16(sf->selector, 0);
1465 vmcs_writel(sf->base, 0);
1466 vmcs_write32(sf->limit, 0xffff);
1467 vmcs_write32(sf->ar_bytes, 0x93);
1468}
1469
Sheng Yangf78e0e22007-10-29 09:40:42 +08001470static int alloc_apic_access_page(struct kvm *kvm)
1471{
1472 struct kvm_userspace_memory_region kvm_userspace_mem;
1473 int r = 0;
1474
1475 mutex_lock(&kvm->lock);
1476 if (kvm->apic_access_page)
1477 goto out;
1478 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
1479 kvm_userspace_mem.flags = 0;
1480 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
1481 kvm_userspace_mem.memory_size = PAGE_SIZE;
1482 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
1483 if (r)
1484 goto out;
1485 kvm->apic_access_page = gfn_to_page(kvm, 0xfee00);
1486out:
1487 mutex_unlock(&kvm->lock);
1488 return r;
1489}
1490
Avi Kivity6aa8b732006-12-10 02:21:36 -08001491/*
1492 * Sets up the vmcs for emulated real mode.
1493 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001494static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001495{
1496 u32 host_sysenter_cs;
1497 u32 junk;
1498 unsigned long a;
1499 struct descriptor_table dt;
1500 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03001501 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001502 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001503
Avi Kivity6aa8b732006-12-10 02:21:36 -08001504 /* I/O */
He, Qingfdef3ad2007-04-30 09:45:24 +03001505 vmcs_write64(IO_BITMAP_A, page_to_phys(vmx_io_bitmap_a));
1506 vmcs_write64(IO_BITMAP_B, page_to_phys(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001507
Avi Kivity6aa8b732006-12-10 02:21:36 -08001508 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
1509
Avi Kivity6aa8b732006-12-10 02:21:36 -08001510 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001511 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
1512 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001513
1514 exec_control = vmcs_config.cpu_based_exec_ctrl;
1515 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
1516 exec_control &= ~CPU_BASED_TPR_SHADOW;
1517#ifdef CONFIG_X86_64
1518 exec_control |= CPU_BASED_CR8_STORE_EXITING |
1519 CPU_BASED_CR8_LOAD_EXITING;
1520#endif
1521 }
1522 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001523
Sheng Yang83ff3b92007-11-21 14:33:25 +08001524 if (cpu_has_secondary_exec_ctrls()) {
1525 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
1526 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
1527 exec_control &=
1528 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1529 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
1530 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08001531
Avi Kivityc7addb92007-09-16 18:58:32 +02001532 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
1533 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001534 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
1535
1536 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
1537 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
1538 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
1539
1540 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
1541 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
1542 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
1543 vmcs_write16(HOST_FS_SELECTOR, read_fs()); /* 22.2.4 */
1544 vmcs_write16(HOST_GS_SELECTOR, read_gs()); /* 22.2.4 */
1545 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001546#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001547 rdmsrl(MSR_FS_BASE, a);
1548 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
1549 rdmsrl(MSR_GS_BASE, a);
1550 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
1551#else
1552 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
1553 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
1554#endif
1555
1556 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
1557
1558 get_idt(&dt);
1559 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
1560
Mike Dayd77c26f2007-10-08 09:02:08 -04001561 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03001562 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03001563 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
1564 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
1565 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001566
1567 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
1568 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
1569 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
1570 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
1571 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
1572 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
1573
Avi Kivity6aa8b732006-12-10 02:21:36 -08001574 for (i = 0; i < NR_VMX_MSR; ++i) {
1575 u32 index = vmx_msr_index[i];
1576 u32 data_low, data_high;
1577 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001578 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001579
1580 if (rdmsr_safe(index, &data_low, &data_high) < 0)
1581 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08001582 if (wrmsr_safe(index, data_low, data_high) < 0)
1583 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001584 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001585 vmx->host_msrs[j].index = index;
1586 vmx->host_msrs[j].reserved = 0;
1587 vmx->host_msrs[j].data = data;
1588 vmx->guest_msrs[j] = vmx->host_msrs[j];
1589 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001590 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001591
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001592 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001593
1594 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001595 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
1596
Avi Kivitye00c8cf2007-10-21 11:00:39 +02001597 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
1598 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
1599
Sheng Yangf78e0e22007-10-29 09:40:42 +08001600 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
1601 if (alloc_apic_access_page(vmx->vcpu.kvm) != 0)
1602 return -ENOMEM;
1603
Avi Kivitye00c8cf2007-10-21 11:00:39 +02001604 return 0;
1605}
1606
1607static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
1608{
1609 struct vcpu_vmx *vmx = to_vmx(vcpu);
1610 u64 msr;
1611 int ret;
1612
1613 if (!init_rmode_tss(vmx->vcpu.kvm)) {
1614 ret = -ENOMEM;
1615 goto out;
1616 }
1617
1618 vmx->vcpu.rmode.active = 0;
1619
1620 vmx->vcpu.regs[VCPU_REGS_RDX] = get_rdx_init_val();
1621 set_cr8(&vmx->vcpu, 0);
1622 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
1623 if (vmx->vcpu.vcpu_id == 0)
1624 msr |= MSR_IA32_APICBASE_BSP;
1625 kvm_set_apic_base(&vmx->vcpu, msr);
1626
1627 fx_init(&vmx->vcpu);
1628
1629 /*
1630 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
1631 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
1632 */
1633 if (vmx->vcpu.vcpu_id == 0) {
1634 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
1635 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
1636 } else {
1637 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.sipi_vector << 8);
1638 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.sipi_vector << 12);
1639 }
1640 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
1641 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1642
1643 seg_setup(VCPU_SREG_DS);
1644 seg_setup(VCPU_SREG_ES);
1645 seg_setup(VCPU_SREG_FS);
1646 seg_setup(VCPU_SREG_GS);
1647 seg_setup(VCPU_SREG_SS);
1648
1649 vmcs_write16(GUEST_TR_SELECTOR, 0);
1650 vmcs_writel(GUEST_TR_BASE, 0);
1651 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
1652 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1653
1654 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
1655 vmcs_writel(GUEST_LDTR_BASE, 0);
1656 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
1657 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
1658
1659 vmcs_write32(GUEST_SYSENTER_CS, 0);
1660 vmcs_writel(GUEST_SYSENTER_ESP, 0);
1661 vmcs_writel(GUEST_SYSENTER_EIP, 0);
1662
1663 vmcs_writel(GUEST_RFLAGS, 0x02);
1664 if (vmx->vcpu.vcpu_id == 0)
1665 vmcs_writel(GUEST_RIP, 0xfff0);
1666 else
1667 vmcs_writel(GUEST_RIP, 0);
1668 vmcs_writel(GUEST_RSP, 0);
1669
1670 /* todo: dr0 = dr1 = dr2 = dr3 = 0; dr6 = 0xffff0ff0 */
1671 vmcs_writel(GUEST_DR7, 0x400);
1672
1673 vmcs_writel(GUEST_GDTR_BASE, 0);
1674 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
1675
1676 vmcs_writel(GUEST_IDTR_BASE, 0);
1677 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
1678
1679 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
1680 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
1681 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
1682
1683 guest_write_tsc(0);
1684
1685 /* Special registers */
1686 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
1687
1688 setup_msrs(vmx);
1689
Avi Kivity6aa8b732006-12-10 02:21:36 -08001690 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
1691
Sheng Yangf78e0e22007-10-29 09:40:42 +08001692 if (cpu_has_vmx_tpr_shadow()) {
1693 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
1694 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
1695 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
1696 page_to_phys(vmx->vcpu.apic->regs_page));
1697 vmcs_write32(TPR_THRESHOLD, 0);
1698 }
1699
1700 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
1701 vmcs_write64(APIC_ACCESS_ADDR,
1702 page_to_phys(vmx->vcpu.kvm->apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001703
Rusty Russell8b9cf982007-07-30 16:31:43 +10001704 vmx->vcpu.cr0 = 0x60000010;
Mike Dayd77c26f2007-10-08 09:02:08 -04001705 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001706 vmx_set_cr4(&vmx->vcpu, 0);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001707#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10001708 vmx_set_efer(&vmx->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001709#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +10001710 vmx_fpu_activate(&vmx->vcpu);
1711 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001712
1713 return 0;
1714
Avi Kivity6aa8b732006-12-10 02:21:36 -08001715out:
1716 return ret;
1717}
1718
Eddie Dong85f455f2007-07-06 12:20:49 +03001719static void vmx_inject_irq(struct kvm_vcpu *vcpu, int irq)
1720{
Avi Kivity9c8cba32007-11-22 11:42:59 +02001721 struct vcpu_vmx *vmx = to_vmx(vcpu);
1722
Eddie Dong85f455f2007-07-06 12:20:49 +03001723 if (vcpu->rmode.active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02001724 vmx->rmode.irq.pending = true;
1725 vmx->rmode.irq.vector = irq;
1726 vmx->rmode.irq.rip = vmcs_readl(GUEST_RIP);
Avi Kivity9c5623e2007-11-08 18:19:20 +02001727 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
1728 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
1729 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Avi Kivity9c8cba32007-11-22 11:42:59 +02001730 vmcs_writel(GUEST_RIP, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03001731 return;
1732 }
1733 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
1734 irq | INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1735}
1736
Avi Kivity6aa8b732006-12-10 02:21:36 -08001737static void kvm_do_inject_irq(struct kvm_vcpu *vcpu)
1738{
1739 int word_index = __ffs(vcpu->irq_summary);
1740 int bit_index = __ffs(vcpu->irq_pending[word_index]);
1741 int irq = word_index * BITS_PER_LONG + bit_index;
1742
1743 clear_bit(bit_index, &vcpu->irq_pending[word_index]);
1744 if (!vcpu->irq_pending[word_index])
1745 clear_bit(word_index, &vcpu->irq_summary);
Eddie Dong85f455f2007-07-06 12:20:49 +03001746 vmx_inject_irq(vcpu, irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001747}
1748
Dor Laorc1150d82007-01-05 16:36:24 -08001749
1750static void do_interrupt_requests(struct kvm_vcpu *vcpu,
1751 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001752{
Dor Laorc1150d82007-01-05 16:36:24 -08001753 u32 cpu_based_vm_exec_control;
1754
1755 vcpu->interrupt_window_open =
1756 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
1757 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);
1758
1759 if (vcpu->interrupt_window_open &&
1760 vcpu->irq_summary &&
1761 !(vmcs_read32(VM_ENTRY_INTR_INFO_FIELD) & INTR_INFO_VALID_MASK))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001762 /*
Dor Laorc1150d82007-01-05 16:36:24 -08001763 * If interrupts enabled, and not blocked by sti or mov ss. Good.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001764 */
1765 kvm_do_inject_irq(vcpu);
Dor Laorc1150d82007-01-05 16:36:24 -08001766
1767 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
1768 if (!vcpu->interrupt_window_open &&
1769 (vcpu->irq_summary || kvm_run->request_interrupt_window))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001770 /*
1771 * Interrupts blocked. Wait for unblock.
1772 */
Dor Laorc1150d82007-01-05 16:36:24 -08001773 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
1774 else
1775 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
1776 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001777}
1778
Izik Eiduscbc94022007-10-25 00:29:55 +02001779static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
1780{
1781 int ret;
1782 struct kvm_userspace_memory_region tss_mem = {
1783 .slot = 8,
1784 .guest_phys_addr = addr,
1785 .memory_size = PAGE_SIZE * 3,
1786 .flags = 0,
1787 };
1788
1789 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
1790 if (ret)
1791 return ret;
1792 kvm->tss_addr = addr;
1793 return 0;
1794}
1795
Avi Kivity6aa8b732006-12-10 02:21:36 -08001796static void kvm_guest_debug_pre(struct kvm_vcpu *vcpu)
1797{
1798 struct kvm_guest_debug *dbg = &vcpu->guest_debug;
1799
1800 set_debugreg(dbg->bp[0], 0);
1801 set_debugreg(dbg->bp[1], 1);
1802 set_debugreg(dbg->bp[2], 2);
1803 set_debugreg(dbg->bp[3], 3);
1804
1805 if (dbg->singlestep) {
1806 unsigned long flags;
1807
1808 flags = vmcs_readl(GUEST_RFLAGS);
1809 flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
1810 vmcs_writel(GUEST_RFLAGS, flags);
1811 }
1812}
1813
1814static int handle_rmode_exception(struct kvm_vcpu *vcpu,
1815 int vec, u32 err_code)
1816{
1817 if (!vcpu->rmode.active)
1818 return 0;
1819
Nitin A Kambleb3f37702007-05-17 15:50:34 +03001820 /*
1821 * Instruction with address size override prefix opcode 0x67
1822 * Cause the #SS fault with 0 error code in VM86 mode.
1823 */
1824 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Laurent Vivier34273182007-09-18 11:27:37 +02001825 if (emulate_instruction(vcpu, NULL, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001826 return 1;
1827 return 0;
1828}
1829
1830static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1831{
Avi Kivity1155f762007-11-22 11:30:47 +02001832 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001833 u32 intr_info, error_code;
1834 unsigned long cr2, rip;
1835 u32 vect_info;
1836 enum emulation_result er;
1837
Avi Kivity1155f762007-11-22 11:30:47 +02001838 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001839 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
1840
1841 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04001842 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001843 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
1844 "intr info 0x%x\n", __FUNCTION__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001845
Eddie Dong85f455f2007-07-06 12:20:49 +03001846 if (!irqchip_in_kernel(vcpu->kvm) && is_external_interrupt(vect_info)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001847 int irq = vect_info & VECTORING_INFO_VECTOR_MASK;
1848 set_bit(irq, vcpu->irq_pending);
1849 set_bit(irq / BITS_PER_LONG, &vcpu->irq_summary);
1850 }
1851
Avi Kivity1b6269d2007-10-09 12:12:19 +02001852 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
1853 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001854
1855 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001856 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001857 return 1;
1858 }
1859
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001860 if (is_invalid_opcode(intr_info)) {
Laurent Vivier34273182007-09-18 11:27:37 +02001861 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001862 if (er != EMULATE_DONE)
1863 vmx_inject_ud(vcpu);
1864
1865 return 1;
1866 }
1867
Avi Kivity6aa8b732006-12-10 02:21:36 -08001868 error_code = 0;
1869 rip = vmcs_readl(GUEST_RIP);
1870 if (intr_info & INTR_INFO_DELIEVER_CODE_MASK)
1871 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
1872 if (is_page_fault(intr_info)) {
1873 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity30677142007-10-28 18:48:59 +02001874 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001875 }
1876
1877 if (vcpu->rmode.active &&
1878 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03001879 error_code)) {
1880 if (vcpu->halt_request) {
1881 vcpu->halt_request = 0;
1882 return kvm_emulate_halt(vcpu);
1883 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001884 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03001885 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001886
Mike Dayd77c26f2007-10-08 09:02:08 -04001887 if ((intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK)) ==
1888 (INTR_TYPE_EXCEPTION | 1)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001889 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1890 return 0;
1891 }
1892 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
1893 kvm_run->ex.exception = intr_info & INTR_INFO_VECTOR_MASK;
1894 kvm_run->ex.error_code = error_code;
1895 return 0;
1896}
1897
1898static int handle_external_interrupt(struct kvm_vcpu *vcpu,
1899 struct kvm_run *kvm_run)
1900{
Avi Kivity1165f5f2007-04-19 17:27:43 +03001901 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001902 return 1;
1903}
1904
Avi Kivity988ad742007-02-12 00:54:36 -08001905static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1906{
1907 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
1908 return 0;
1909}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001910
Avi Kivity6aa8b732006-12-10 02:21:36 -08001911static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1912{
He, Qingbfdaab02007-09-12 14:18:28 +08001913 unsigned long exit_qualification;
Avi Kivity039576c2007-03-20 12:46:50 +02001914 int size, down, in, string, rep;
1915 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001916
Avi Kivity1165f5f2007-04-19 17:27:43 +03001917 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08001918 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02001919 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03001920
1921 if (string) {
Laurent Vivier34273182007-09-18 11:27:37 +02001922 if (emulate_instruction(vcpu,
1923 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03001924 return 0;
1925 return 1;
1926 }
1927
1928 size = (exit_qualification & 7) + 1;
1929 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02001930 down = (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_DF) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02001931 rep = (exit_qualification & 32) != 0;
1932 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03001933
Laurent Vivier3090dd72007-08-05 10:43:32 +03001934 return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001935}
1936
Ingo Molnar102d8322007-02-19 14:37:47 +02001937static void
1938vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
1939{
1940 /*
1941 * Patch in the VMCALL instruction:
1942 */
1943 hypercall[0] = 0x0f;
1944 hypercall[1] = 0x01;
1945 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02001946}
1947
Avi Kivity6aa8b732006-12-10 02:21:36 -08001948static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1949{
He, Qingbfdaab02007-09-12 14:18:28 +08001950 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001951 int cr;
1952 int reg;
1953
He, Qingbfdaab02007-09-12 14:18:28 +08001954 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001955 cr = exit_qualification & 15;
1956 reg = (exit_qualification >> 8) & 15;
1957 switch ((exit_qualification >> 4) & 3) {
1958 case 0: /* mov to cr */
1959 switch (cr) {
1960 case 0:
1961 vcpu_load_rsp_rip(vcpu);
1962 set_cr0(vcpu, vcpu->regs[reg]);
1963 skip_emulated_instruction(vcpu);
1964 return 1;
1965 case 3:
1966 vcpu_load_rsp_rip(vcpu);
1967 set_cr3(vcpu, vcpu->regs[reg]);
1968 skip_emulated_instruction(vcpu);
1969 return 1;
1970 case 4:
1971 vcpu_load_rsp_rip(vcpu);
1972 set_cr4(vcpu, vcpu->regs[reg]);
1973 skip_emulated_instruction(vcpu);
1974 return 1;
1975 case 8:
1976 vcpu_load_rsp_rip(vcpu);
1977 set_cr8(vcpu, vcpu->regs[reg]);
1978 skip_emulated_instruction(vcpu);
Yang, Sheng253abde2007-08-16 13:01:00 +03001979 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
1980 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001981 };
1982 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03001983 case 2: /* clts */
1984 vcpu_load_rsp_rip(vcpu);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001985 vmx_fpu_deactivate(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10001986 vcpu->cr0 &= ~X86_CR0_TS;
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001987 vmcs_writel(CR0_READ_SHADOW, vcpu->cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001988 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03001989 skip_emulated_instruction(vcpu);
1990 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001991 case 1: /*mov from cr*/
1992 switch (cr) {
1993 case 3:
1994 vcpu_load_rsp_rip(vcpu);
1995 vcpu->regs[reg] = vcpu->cr3;
1996 vcpu_put_rsp_rip(vcpu);
1997 skip_emulated_instruction(vcpu);
1998 return 1;
1999 case 8:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002000 vcpu_load_rsp_rip(vcpu);
Eddie Dong7017fc32007-07-18 11:34:57 +03002001 vcpu->regs[reg] = get_cr8(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002002 vcpu_put_rsp_rip(vcpu);
2003 skip_emulated_instruction(vcpu);
2004 return 1;
2005 }
2006 break;
2007 case 3: /* lmsw */
2008 lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
2009
2010 skip_emulated_instruction(vcpu);
2011 return 1;
2012 default:
2013 break;
2014 }
2015 kvm_run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002016 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002017 (int)(exit_qualification >> 4) & 3, cr);
2018 return 0;
2019}
2020
2021static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2022{
He, Qingbfdaab02007-09-12 14:18:28 +08002023 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002024 unsigned long val;
2025 int dr, reg;
2026
2027 /*
2028 * FIXME: this code assumes the host is debugging the guest.
2029 * need to deal with guest debugging itself too.
2030 */
He, Qingbfdaab02007-09-12 14:18:28 +08002031 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002032 dr = exit_qualification & 7;
2033 reg = (exit_qualification >> 8) & 15;
2034 vcpu_load_rsp_rip(vcpu);
2035 if (exit_qualification & 16) {
2036 /* mov from dr */
2037 switch (dr) {
2038 case 6:
2039 val = 0xffff0ff0;
2040 break;
2041 case 7:
2042 val = 0x400;
2043 break;
2044 default:
2045 val = 0;
2046 }
2047 vcpu->regs[reg] = val;
2048 } else {
2049 /* mov to dr */
2050 }
2051 vcpu_put_rsp_rip(vcpu);
2052 skip_emulated_instruction(vcpu);
2053 return 1;
2054}
2055
2056static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2057{
Avi Kivity06465c52007-02-28 20:46:53 +02002058 kvm_emulate_cpuid(vcpu);
2059 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002060}
2061
2062static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2063{
2064 u32 ecx = vcpu->regs[VCPU_REGS_RCX];
2065 u64 data;
2066
2067 if (vmx_get_msr(vcpu, ecx, &data)) {
2068 vmx_inject_gp(vcpu, 0);
2069 return 1;
2070 }
2071
2072 /* FIXME: handling of bits 32:63 of rax, rdx */
2073 vcpu->regs[VCPU_REGS_RAX] = data & -1u;
2074 vcpu->regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
2075 skip_emulated_instruction(vcpu);
2076 return 1;
2077}
2078
2079static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2080{
2081 u32 ecx = vcpu->regs[VCPU_REGS_RCX];
2082 u64 data = (vcpu->regs[VCPU_REGS_RAX] & -1u)
2083 | ((u64)(vcpu->regs[VCPU_REGS_RDX] & -1u) << 32);
2084
2085 if (vmx_set_msr(vcpu, ecx, data) != 0) {
2086 vmx_inject_gp(vcpu, 0);
2087 return 1;
2088 }
2089
2090 skip_emulated_instruction(vcpu);
2091 return 1;
2092}
2093
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002094static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
2095 struct kvm_run *kvm_run)
2096{
2097 return 1;
2098}
2099
Avi Kivity6aa8b732006-12-10 02:21:36 -08002100static int handle_interrupt_window(struct kvm_vcpu *vcpu,
2101 struct kvm_run *kvm_run)
2102{
Eddie Dong85f455f2007-07-06 12:20:49 +03002103 u32 cpu_based_vm_exec_control;
2104
2105 /* clear pending irq */
2106 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2107 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2108 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Dor Laorc1150d82007-01-05 16:36:24 -08002109 /*
2110 * If the user space waits to inject interrupts, exit as soon as
2111 * possible
2112 */
2113 if (kvm_run->request_interrupt_window &&
Dor Laor022a9302007-01-05 16:37:00 -08002114 !vcpu->irq_summary) {
Dor Laorc1150d82007-01-05 16:36:24 -08002115 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002116 ++vcpu->stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08002117 return 0;
2118 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002119 return 1;
2120}
2121
2122static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2123{
2124 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03002125 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002126}
2127
Ingo Molnarc21415e2007-02-19 14:37:47 +02002128static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2129{
Dor Laor510043d2007-02-19 18:25:43 +02002130 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002131 kvm_emulate_hypercall(vcpu);
2132 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02002133}
2134
Eddie Donge5edaa02007-11-11 12:28:35 +02002135static int handle_wbinvd(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2136{
2137 skip_emulated_instruction(vcpu);
2138 /* TODO: Add support for VT-d/pass-through device */
2139 return 1;
2140}
2141
Sheng Yangf78e0e22007-10-29 09:40:42 +08002142static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2143{
2144 u64 exit_qualification;
2145 enum emulation_result er;
2146 unsigned long offset;
2147
2148 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
2149 offset = exit_qualification & 0xffful;
2150
2151 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
2152
2153 if (er != EMULATE_DONE) {
2154 printk(KERN_ERR
2155 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
2156 offset);
2157 return -ENOTSUPP;
2158 }
2159 return 1;
2160}
2161
Avi Kivity6aa8b732006-12-10 02:21:36 -08002162/*
2163 * The exit handlers return 1 if the exit was handled fully and guest execution
2164 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
2165 * to be done to userspace and return 0.
2166 */
2167static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
2168 struct kvm_run *kvm_run) = {
2169 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
2170 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08002171 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002172 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002173 [EXIT_REASON_CR_ACCESS] = handle_cr,
2174 [EXIT_REASON_DR_ACCESS] = handle_dr,
2175 [EXIT_REASON_CPUID] = handle_cpuid,
2176 [EXIT_REASON_MSR_READ] = handle_rdmsr,
2177 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
2178 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
2179 [EXIT_REASON_HLT] = handle_halt,
Ingo Molnarc21415e2007-02-19 14:37:47 +02002180 [EXIT_REASON_VMCALL] = handle_vmcall,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002181 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
2182 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02002183 [EXIT_REASON_WBINVD] = handle_wbinvd,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002184};
2185
2186static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04002187 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002188
2189/*
2190 * The guest has exited. See if we can fix it or if we need userspace
2191 * assistance.
2192 */
2193static int kvm_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
2194{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002195 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity29bd8a72007-09-10 17:27:03 +03002196 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1155f762007-11-22 11:30:47 +02002197 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03002198
2199 if (unlikely(vmx->fail)) {
2200 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
2201 kvm_run->fail_entry.hardware_entry_failure_reason
2202 = vmcs_read32(VM_INSTRUCTION_ERROR);
2203 return 0;
2204 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002205
Mike Dayd77c26f2007-10-08 09:02:08 -04002206 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
2207 exit_reason != EXIT_REASON_EXCEPTION_NMI)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002208 printk(KERN_WARNING "%s: unexpected, valid vectoring info and "
2209 "exit reason is 0x%x\n", __FUNCTION__, exit_reason);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002210 if (exit_reason < kvm_vmx_max_exit_handlers
2211 && kvm_vmx_exit_handlers[exit_reason])
2212 return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
2213 else {
2214 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
2215 kvm_run->hw.hardware_exit_reason = exit_reason;
2216 }
2217 return 0;
2218}
2219
Avi Kivityd9e368d2007-06-07 19:18:30 +03002220static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
2221{
Avi Kivityd9e368d2007-06-07 19:18:30 +03002222}
2223
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002224static void update_tpr_threshold(struct kvm_vcpu *vcpu)
2225{
2226 int max_irr, tpr;
2227
2228 if (!vm_need_tpr_shadow(vcpu->kvm))
2229 return;
2230
2231 if (!kvm_lapic_enabled(vcpu) ||
2232 ((max_irr = kvm_lapic_find_highest_irr(vcpu)) == -1)) {
2233 vmcs_write32(TPR_THRESHOLD, 0);
2234 return;
2235 }
2236
2237 tpr = (kvm_lapic_get_cr8(vcpu) & 0x0f) << 4;
2238 vmcs_write32(TPR_THRESHOLD, (max_irr > tpr) ? tpr >> 4 : max_irr >> 4);
2239}
2240
Eddie Dong85f455f2007-07-06 12:20:49 +03002241static void enable_irq_window(struct kvm_vcpu *vcpu)
2242{
2243 u32 cpu_based_vm_exec_control;
2244
2245 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2246 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2247 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2248}
2249
2250static void vmx_intr_assist(struct kvm_vcpu *vcpu)
2251{
Avi Kivity1155f762007-11-22 11:30:47 +02002252 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03002253 u32 idtv_info_field, intr_info_field;
2254 int has_ext_irq, interrupt_window_open;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002255 int vector;
Eddie Dong85f455f2007-07-06 12:20:49 +03002256
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002257 update_tpr_threshold(vcpu);
2258
Eddie Dong85f455f2007-07-06 12:20:49 +03002259 has_ext_irq = kvm_cpu_has_interrupt(vcpu);
2260 intr_info_field = vmcs_read32(VM_ENTRY_INTR_INFO_FIELD);
Avi Kivity1155f762007-11-22 11:30:47 +02002261 idtv_info_field = vmx->idt_vectoring_info;
Eddie Dong85f455f2007-07-06 12:20:49 +03002262 if (intr_info_field & INTR_INFO_VALID_MASK) {
2263 if (idtv_info_field & INTR_INFO_VALID_MASK) {
2264 /* TODO: fault when IDT_Vectoring */
2265 printk(KERN_ERR "Fault when IDT_Vectoring\n");
2266 }
2267 if (has_ext_irq)
2268 enable_irq_window(vcpu);
2269 return;
2270 }
2271 if (unlikely(idtv_info_field & INTR_INFO_VALID_MASK)) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002272 if ((idtv_info_field & VECTORING_INFO_TYPE_MASK)
2273 == INTR_TYPE_EXT_INTR
2274 && vcpu->rmode.active) {
2275 u8 vect = idtv_info_field & VECTORING_INFO_VECTOR_MASK;
2276
2277 vmx_inject_irq(vcpu, vect);
2278 if (unlikely(has_ext_irq))
2279 enable_irq_window(vcpu);
2280 return;
2281 }
2282
Eddie Dong85f455f2007-07-06 12:20:49 +03002283 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, idtv_info_field);
2284 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2285 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
2286
2287 if (unlikely(idtv_info_field & INTR_INFO_DELIEVER_CODE_MASK))
2288 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
2289 vmcs_read32(IDT_VECTORING_ERROR_CODE));
2290 if (unlikely(has_ext_irq))
2291 enable_irq_window(vcpu);
2292 return;
2293 }
2294 if (!has_ext_irq)
2295 return;
2296 interrupt_window_open =
2297 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2298 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002299 if (interrupt_window_open) {
2300 vector = kvm_cpu_get_interrupt(vcpu);
2301 vmx_inject_irq(vcpu, vector);
2302 kvm_timer_intr_post(vcpu, vector);
2303 } else
Eddie Dong85f455f2007-07-06 12:20:49 +03002304 enable_irq_window(vcpu);
2305}
2306
Avi Kivity9c8cba32007-11-22 11:42:59 +02002307/*
2308 * Failure to inject an interrupt should give us the information
2309 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
2310 * when fetching the interrupt redirection bitmap in the real-mode
2311 * tss, this doesn't happen. So we do it ourselves.
2312 */
2313static void fixup_rmode_irq(struct vcpu_vmx *vmx)
2314{
2315 vmx->rmode.irq.pending = 0;
2316 if (vmcs_readl(GUEST_RIP) + 1 != vmx->rmode.irq.rip)
2317 return;
2318 vmcs_writel(GUEST_RIP, vmx->rmode.irq.rip);
2319 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
2320 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
2321 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
2322 return;
2323 }
2324 vmx->idt_vectoring_info =
2325 VECTORING_INFO_VALID_MASK
2326 | INTR_TYPE_EXT_INTR
2327 | vmx->rmode.irq.vector;
2328}
2329
Avi Kivity04d2cc72007-09-10 18:10:54 +03002330static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002331{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002332 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1b6269d2007-10-09 12:12:19 +02002333 u32 intr_info;
Avi Kivitye6adf282007-04-30 16:07:54 +03002334
2335 /*
2336 * Loading guest fpu may have cleared host cr0.ts
2337 */
2338 vmcs_writel(HOST_CR0, read_cr0());
2339
Mike Dayd77c26f2007-10-08 09:02:08 -04002340 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341 /* Store host registers */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002342#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02002343 "push %%rdx; push %%rbp;"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002344 "push %%rcx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002345#else
Laurent Vivierff593e52007-10-25 14:18:55 +02002346 "push %%edx; push %%ebp;"
2347 "push %%ecx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002348#endif
Laurent Vivierc2036302007-10-25 14:18:52 +02002349 ASM_VMX_VMWRITE_RSP_RDX "\n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002350 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02002351 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002352 /* Load guest registers. Don't clobber flags. */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002353#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02002354 "mov %c[cr2](%0), %%rax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002355 "mov %%rax, %%cr2 \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002356 "mov %c[rax](%0), %%rax \n\t"
2357 "mov %c[rbx](%0), %%rbx \n\t"
2358 "mov %c[rdx](%0), %%rdx \n\t"
2359 "mov %c[rsi](%0), %%rsi \n\t"
2360 "mov %c[rdi](%0), %%rdi \n\t"
2361 "mov %c[rbp](%0), %%rbp \n\t"
2362 "mov %c[r8](%0), %%r8 \n\t"
2363 "mov %c[r9](%0), %%r9 \n\t"
2364 "mov %c[r10](%0), %%r10 \n\t"
2365 "mov %c[r11](%0), %%r11 \n\t"
2366 "mov %c[r12](%0), %%r12 \n\t"
2367 "mov %c[r13](%0), %%r13 \n\t"
2368 "mov %c[r14](%0), %%r14 \n\t"
2369 "mov %c[r15](%0), %%r15 \n\t"
2370 "mov %c[rcx](%0), %%rcx \n\t" /* kills %0 (rcx) */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002371#else
Avi Kivitye08aa782007-11-15 18:06:18 +02002372 "mov %c[cr2](%0), %%eax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002373 "mov %%eax, %%cr2 \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002374 "mov %c[rax](%0), %%eax \n\t"
2375 "mov %c[rbx](%0), %%ebx \n\t"
2376 "mov %c[rdx](%0), %%edx \n\t"
2377 "mov %c[rsi](%0), %%esi \n\t"
2378 "mov %c[rdi](%0), %%edi \n\t"
2379 "mov %c[rbp](%0), %%ebp \n\t"
2380 "mov %c[rcx](%0), %%ecx \n\t" /* kills %0 (ecx) */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002381#endif
2382 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03002383 "jne .Llaunched \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002384 ASM_VMX_VMLAUNCH "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03002385 "jmp .Lkvm_vmx_return \n\t"
2386 ".Llaunched: " ASM_VMX_VMRESUME "\n\t"
2387 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08002388 /* Save guest registers, load host registers, keep flags */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002389#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02002390 "xchg %0, (%%rsp) \n\t"
2391 "mov %%rax, %c[rax](%0) \n\t"
2392 "mov %%rbx, %c[rbx](%0) \n\t"
2393 "pushq (%%rsp); popq %c[rcx](%0) \n\t"
2394 "mov %%rdx, %c[rdx](%0) \n\t"
2395 "mov %%rsi, %c[rsi](%0) \n\t"
2396 "mov %%rdi, %c[rdi](%0) \n\t"
2397 "mov %%rbp, %c[rbp](%0) \n\t"
2398 "mov %%r8, %c[r8](%0) \n\t"
2399 "mov %%r9, %c[r9](%0) \n\t"
2400 "mov %%r10, %c[r10](%0) \n\t"
2401 "mov %%r11, %c[r11](%0) \n\t"
2402 "mov %%r12, %c[r12](%0) \n\t"
2403 "mov %%r13, %c[r13](%0) \n\t"
2404 "mov %%r14, %c[r14](%0) \n\t"
2405 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002406 "mov %%cr2, %%rax \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002407 "mov %%rax, %c[cr2](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002408
Avi Kivitye08aa782007-11-15 18:06:18 +02002409 "pop %%rbp; pop %%rbp; pop %%rdx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002410#else
Avi Kivitye08aa782007-11-15 18:06:18 +02002411 "xchg %0, (%%esp) \n\t"
2412 "mov %%eax, %c[rax](%0) \n\t"
2413 "mov %%ebx, %c[rbx](%0) \n\t"
2414 "pushl (%%esp); popl %c[rcx](%0) \n\t"
2415 "mov %%edx, %c[rdx](%0) \n\t"
2416 "mov %%esi, %c[rsi](%0) \n\t"
2417 "mov %%edi, %c[rdi](%0) \n\t"
2418 "mov %%ebp, %c[rbp](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002419 "mov %%cr2, %%eax \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002420 "mov %%eax, %c[cr2](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002421
Avi Kivitye08aa782007-11-15 18:06:18 +02002422 "pop %%ebp; pop %%ebp; pop %%edx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002423#endif
Avi Kivitye08aa782007-11-15 18:06:18 +02002424 "setbe %c[fail](%0) \n\t"
2425 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
2426 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
2427 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
2428 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RAX])),
2429 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RBX])),
2430 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RCX])),
2431 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RDX])),
2432 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RSI])),
2433 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RDI])),
2434 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002435#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02002436 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R8])),
2437 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R9])),
2438 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R10])),
2439 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R11])),
2440 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R12])),
2441 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R13])),
2442 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R14])),
2443 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08002444#endif
Avi Kivitye08aa782007-11-15 18:06:18 +02002445 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02002446 : "cc", "memory"
2447#ifdef CONFIG_X86_64
2448 , "rbx", "rdi", "rsi"
2449 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Laurent Vivierff593e52007-10-25 14:18:55 +02002450#else
2451 , "ebx", "edi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02002452#endif
2453 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08002454
Avi Kivity1155f762007-11-22 11:30:47 +02002455 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02002456 if (vmx->rmode.irq.pending)
2457 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02002458
Mike Dayd77c26f2007-10-08 09:02:08 -04002459 vcpu->interrupt_window_open =
2460 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002461
Mike Dayd77c26f2007-10-08 09:02:08 -04002462 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03002463 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02002464
2465 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2466
2467 /* We need to handle NMIs before interrupts are enabled */
2468 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
2469 asm("int $2");
Avi Kivity6aa8b732006-12-10 02:21:36 -08002470}
2471
Avi Kivity6aa8b732006-12-10 02:21:36 -08002472static void vmx_inject_page_fault(struct kvm_vcpu *vcpu,
2473 unsigned long addr,
2474 u32 err_code)
2475{
Avi Kivity1155f762007-11-22 11:30:47 +02002476 struct vcpu_vmx *vmx = to_vmx(vcpu);
2477 u32 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002478
Avi Kivity1165f5f2007-04-19 17:27:43 +03002479 ++vcpu->stat.pf_guest;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002480
2481 if (is_page_fault(vect_info)) {
2482 printk(KERN_DEBUG "inject_page_fault: "
2483 "double fault 0x%lx @ 0x%lx\n",
2484 addr, vmcs_readl(GUEST_RIP));
2485 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, 0);
2486 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2487 DF_VECTOR |
2488 INTR_TYPE_EXCEPTION |
2489 INTR_INFO_DELIEVER_CODE_MASK |
2490 INTR_INFO_VALID_MASK);
2491 return;
2492 }
2493 vcpu->cr2 = addr;
2494 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, err_code);
2495 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2496 PF_VECTOR |
2497 INTR_TYPE_EXCEPTION |
2498 INTR_INFO_DELIEVER_CODE_MASK |
2499 INTR_INFO_VALID_MASK);
2500
2501}
2502
2503static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
2504{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002505 struct vcpu_vmx *vmx = to_vmx(vcpu);
2506
2507 if (vmx->vmcs) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002508 on_each_cpu(__vcpu_clear, vmx, 0, 1);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002509 free_vmcs(vmx->vmcs);
2510 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002511 }
2512}
2513
2514static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
2515{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002516 struct vcpu_vmx *vmx = to_vmx(vcpu);
2517
Avi Kivity6aa8b732006-12-10 02:21:36 -08002518 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002519 kfree(vmx->host_msrs);
2520 kfree(vmx->guest_msrs);
2521 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10002522 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002523}
2524
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002525static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002526{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002527 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10002528 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03002529 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002530
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002531 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002532 return ERR_PTR(-ENOMEM);
2533
2534 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
2535 if (err)
2536 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002537
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002538 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002539 if (!vmx->guest_msrs) {
2540 err = -ENOMEM;
2541 goto uninit_vcpu;
2542 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08002543
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002544 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
2545 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002546 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002547
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002548 vmx->vmcs = alloc_vmcs();
2549 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002550 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002551
2552 vmcs_clear(vmx->vmcs);
2553
Avi Kivity15ad7142007-07-11 18:17:21 +03002554 cpu = get_cpu();
2555 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002556 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002557 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002558 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002559 if (err)
2560 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002561
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002562 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002563
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002564free_vmcs:
2565 free_vmcs(vmx->vmcs);
2566free_msrs:
2567 kfree(vmx->host_msrs);
2568free_guest_msrs:
2569 kfree(vmx->guest_msrs);
2570uninit_vcpu:
2571 kvm_vcpu_uninit(&vmx->vcpu);
2572free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10002573 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002574 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002575}
2576
Yang, Sheng002c7f72007-07-31 14:23:01 +03002577static void __init vmx_check_processor_compat(void *rtn)
2578{
2579 struct vmcs_config vmcs_conf;
2580
2581 *(int *)rtn = 0;
2582 if (setup_vmcs_config(&vmcs_conf) < 0)
2583 *(int *)rtn = -EIO;
2584 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
2585 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
2586 smp_processor_id());
2587 *(int *)rtn = -EIO;
2588 }
2589}
2590
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002591static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002592 .cpu_has_kvm_support = cpu_has_kvm_support,
2593 .disabled_by_bios = vmx_disabled_by_bios,
2594 .hardware_setup = hardware_setup,
2595 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03002596 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002597 .hardware_enable = hardware_enable,
2598 .hardware_disable = hardware_disable,
2599
2600 .vcpu_create = vmx_create_vcpu,
2601 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002602 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002603
Avi Kivity04d2cc72007-09-10 18:10:54 +03002604 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002605 .vcpu_load = vmx_vcpu_load,
2606 .vcpu_put = vmx_vcpu_put,
Avi Kivity774c47f2007-02-12 00:54:47 -08002607 .vcpu_decache = vmx_vcpu_decache,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002608
2609 .set_guest_debug = set_guest_debug,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002610 .guest_debug_pre = kvm_guest_debug_pre,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002611 .get_msr = vmx_get_msr,
2612 .set_msr = vmx_set_msr,
2613 .get_segment_base = vmx_get_segment_base,
2614 .get_segment = vmx_get_segment,
2615 .set_segment = vmx_set_segment,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002616 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03002617 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002618 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002619 .set_cr3 = vmx_set_cr3,
2620 .set_cr4 = vmx_set_cr4,
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002621#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002622 .set_efer = vmx_set_efer,
2623#endif
2624 .get_idt = vmx_get_idt,
2625 .set_idt = vmx_set_idt,
2626 .get_gdt = vmx_get_gdt,
2627 .set_gdt = vmx_set_gdt,
2628 .cache_regs = vcpu_load_rsp_rip,
2629 .decache_regs = vcpu_put_rsp_rip,
2630 .get_rflags = vmx_get_rflags,
2631 .set_rflags = vmx_set_rflags,
2632
2633 .tlb_flush = vmx_flush_tlb,
2634 .inject_page_fault = vmx_inject_page_fault,
2635
2636 .inject_gp = vmx_inject_gp,
2637
2638 .run = vmx_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002639 .handle_exit = kvm_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002640 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02002641 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03002642 .get_irq = vmx_get_irq,
2643 .set_irq = vmx_inject_irq,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002644 .inject_pending_irq = vmx_intr_assist,
2645 .inject_pending_vectors = do_interrupt_requests,
Izik Eiduscbc94022007-10-25 00:29:55 +02002646
2647 .set_tss_addr = vmx_set_tss_addr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002648};
2649
2650static int __init vmx_init(void)
2651{
He, Qingfdef3ad2007-04-30 09:45:24 +03002652 void *iova;
2653 int r;
2654
2655 vmx_io_bitmap_a = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2656 if (!vmx_io_bitmap_a)
2657 return -ENOMEM;
2658
2659 vmx_io_bitmap_b = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2660 if (!vmx_io_bitmap_b) {
2661 r = -ENOMEM;
2662 goto out;
2663 }
2664
2665 /*
2666 * Allow direct access to the PC debug port (it is often used for I/O
2667 * delays, but the vmexits simply slow things down).
2668 */
2669 iova = kmap(vmx_io_bitmap_a);
2670 memset(iova, 0xff, PAGE_SIZE);
2671 clear_bit(0x80, iova);
Avi Kivitycd0536d2007-05-08 11:34:07 +03002672 kunmap(vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03002673
2674 iova = kmap(vmx_io_bitmap_b);
2675 memset(iova, 0xff, PAGE_SIZE);
Avi Kivitycd0536d2007-05-08 11:34:07 +03002676 kunmap(vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03002677
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002678 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03002679 if (r)
2680 goto out1;
2681
Avi Kivityc7addb92007-09-16 18:58:32 +02002682 if (bypass_guest_pf)
2683 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
2684
He, Qingfdef3ad2007-04-30 09:45:24 +03002685 return 0;
2686
2687out1:
2688 __free_page(vmx_io_bitmap_b);
2689out:
2690 __free_page(vmx_io_bitmap_a);
2691 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002692}
2693
2694static void __exit vmx_exit(void)
2695{
He, Qingfdef3ad2007-04-30 09:45:24 +03002696 __free_page(vmx_io_bitmap_b);
2697 __free_page(vmx_io_bitmap_a);
2698
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002699 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002700}
2701
2702module_init(vmx_init)
2703module_exit(vmx_exit)