blob: f382956f176a149cd7b56ee06f8b52fa764de745 [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
Avi Kivity298101d2007-11-25 13:41:11 +0200598static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
599 bool has_error_code, u32 error_code)
600{
601 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
602 nr | INTR_TYPE_EXCEPTION
603 | (has_error_code ? INTR_INFO_DELIEVER_CODE_MASK : 0)
604 | INTR_INFO_VALID_MASK);
605 if (has_error_code)
606 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
607}
608
609static bool vmx_exception_injected(struct kvm_vcpu *vcpu)
610{
611 struct vcpu_vmx *vmx = to_vmx(vcpu);
612
613 return !(vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
614}
615
Avi Kivity6aa8b732006-12-10 02:21:36 -0800616static void vmx_inject_gp(struct kvm_vcpu *vcpu, unsigned error_code)
617{
618 printk(KERN_DEBUG "inject_general_protection: rip 0x%lx\n",
619 vmcs_readl(GUEST_RIP));
620 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
621 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
622 GP_VECTOR |
623 INTR_TYPE_EXCEPTION |
624 INTR_INFO_DELIEVER_CODE_MASK |
625 INTR_INFO_VALID_MASK);
626}
627
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500628static void vmx_inject_ud(struct kvm_vcpu *vcpu)
629{
630 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
631 UD_VECTOR |
632 INTR_TYPE_EXCEPTION |
633 INTR_INFO_VALID_MASK);
634}
635
Avi Kivity6aa8b732006-12-10 02:21:36 -0800636/*
Eddie Donga75beee2007-05-17 18:55:15 +0300637 * Swap MSR entry in host/guest MSR entry array.
638 */
Gabriel C54e11fa2007-08-01 16:23:10 +0200639#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000640static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300641{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400642 struct kvm_msr_entry tmp;
643
644 tmp = vmx->guest_msrs[to];
645 vmx->guest_msrs[to] = vmx->guest_msrs[from];
646 vmx->guest_msrs[from] = tmp;
647 tmp = vmx->host_msrs[to];
648 vmx->host_msrs[to] = vmx->host_msrs[from];
649 vmx->host_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300650}
Gabriel C54e11fa2007-08-01 16:23:10 +0200651#endif
Eddie Donga75beee2007-05-17 18:55:15 +0300652
653/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300654 * Set up the vmcs to automatically save and restore system
655 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
656 * mode, as fiddling with msrs is very expensive.
657 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000658static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300659{
Eddie Dong2cc51562007-05-21 07:28:09 +0300660 int save_nmsrs;
Avi Kivitye38aea32007-04-19 13:22:48 +0300661
Eddie Donga75beee2007-05-17 18:55:15 +0300662 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300663#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000664 if (is_long_mode(&vmx->vcpu)) {
Eddie Dong2cc51562007-05-21 07:28:09 +0300665 int index;
666
Rusty Russell8b9cf982007-07-30 16:31:43 +1000667 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300668 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000669 move_msr_up(vmx, index, save_nmsrs++);
670 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300671 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000672 move_msr_up(vmx, index, save_nmsrs++);
673 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300674 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000675 move_msr_up(vmx, index, save_nmsrs++);
676 index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300677 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000678 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300679 /*
680 * MSR_K6_STAR is only needed on long mode guests, and only
681 * if efer.sce is enabled.
682 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000683 index = __find_msr_index(vmx, MSR_K6_STAR);
684 if ((index >= 0) && (vmx->vcpu.shadow_efer & EFER_SCE))
685 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300686 }
Eddie Donga75beee2007-05-17 18:55:15 +0300687#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400688 vmx->save_nmsrs = save_nmsrs;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300689
Eddie Donga75beee2007-05-17 18:55:15 +0300690#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400691 vmx->msr_offset_kernel_gs_base =
Rusty Russell8b9cf982007-07-30 16:31:43 +1000692 __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300693#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +1000694 vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
Avi Kivitye38aea32007-04-19 13:22:48 +0300695}
696
697/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800698 * reads and returns guest's timestamp counter "register"
699 * guest_tsc = host_tsc + tsc_offset -- 21.3
700 */
701static u64 guest_read_tsc(void)
702{
703 u64 host_tsc, tsc_offset;
704
705 rdtscll(host_tsc);
706 tsc_offset = vmcs_read64(TSC_OFFSET);
707 return host_tsc + tsc_offset;
708}
709
710/*
711 * writes 'guest_tsc' into guest's timestamp counter "register"
712 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
713 */
714static void guest_write_tsc(u64 guest_tsc)
715{
716 u64 host_tsc;
717
718 rdtscll(host_tsc);
719 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
720}
721
Avi Kivity6aa8b732006-12-10 02:21:36 -0800722/*
723 * Reads an msr value (of 'msr_index') into 'pdata'.
724 * Returns 0 on success, non-0 otherwise.
725 * Assumes vcpu_load() was already called.
726 */
727static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
728{
729 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400730 struct kvm_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800731
732 if (!pdata) {
733 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
734 return -EINVAL;
735 }
736
737 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800738#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800739 case MSR_FS_BASE:
740 data = vmcs_readl(GUEST_FS_BASE);
741 break;
742 case MSR_GS_BASE:
743 data = vmcs_readl(GUEST_GS_BASE);
744 break;
745 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800746 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800747#endif
748 case MSR_IA32_TIME_STAMP_COUNTER:
749 data = guest_read_tsc();
750 break;
751 case MSR_IA32_SYSENTER_CS:
752 data = vmcs_read32(GUEST_SYSENTER_CS);
753 break;
754 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200755 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800756 break;
757 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200758 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800759 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800760 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +1000761 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800762 if (msr) {
763 data = msr->data;
764 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800765 }
Avi Kivity3bab1f52006-12-29 16:49:48 -0800766 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800767 }
768
769 *pdata = data;
770 return 0;
771}
772
773/*
774 * Writes msr value into into the appropriate "register".
775 * Returns 0 on success, non-0 otherwise.
776 * Assumes vcpu_load() was already called.
777 */
778static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
779{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400780 struct vcpu_vmx *vmx = to_vmx(vcpu);
781 struct kvm_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +0300782 int ret = 0;
783
Avi Kivity6aa8b732006-12-10 02:21:36 -0800784 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800785#ifdef CONFIG_X86_64
Avi Kivity3bab1f52006-12-29 16:49:48 -0800786 case MSR_EFER:
Eddie Dong2cc51562007-05-21 07:28:09 +0300787 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300788 if (vmx->host_state.loaded) {
789 reload_host_efer(vmx);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000790 load_transition_efer(vmx);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300791 }
Eddie Dong2cc51562007-05-21 07:28:09 +0300792 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800793 case MSR_FS_BASE:
794 vmcs_writel(GUEST_FS_BASE, data);
795 break;
796 case MSR_GS_BASE:
797 vmcs_writel(GUEST_GS_BASE, data);
798 break;
799#endif
800 case MSR_IA32_SYSENTER_CS:
801 vmcs_write32(GUEST_SYSENTER_CS, data);
802 break;
803 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200804 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800805 break;
806 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200807 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800808 break;
Avi Kivityd27d4ac2007-02-19 14:37:46 +0200809 case MSR_IA32_TIME_STAMP_COUNTER:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800810 guest_write_tsc(data);
811 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800812 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +1000813 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800814 if (msr) {
815 msr->data = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400816 if (vmx->host_state.loaded)
817 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800818 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800819 }
Eddie Dong2cc51562007-05-21 07:28:09 +0300820 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800821 }
822
Eddie Dong2cc51562007-05-21 07:28:09 +0300823 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800824}
825
826/*
827 * Sync the rsp and rip registers into the vcpu structure. This allows
828 * registers to be accessed by indexing vcpu->regs.
829 */
830static void vcpu_load_rsp_rip(struct kvm_vcpu *vcpu)
831{
832 vcpu->regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
833 vcpu->rip = vmcs_readl(GUEST_RIP);
834}
835
836/*
837 * Syncs rsp and rip back into the vmcs. Should be called after possible
838 * modification.
839 */
840static void vcpu_put_rsp_rip(struct kvm_vcpu *vcpu)
841{
842 vmcs_writel(GUEST_RSP, vcpu->regs[VCPU_REGS_RSP]);
843 vmcs_writel(GUEST_RIP, vcpu->rip);
844}
845
846static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
847{
848 unsigned long dr7 = 0x400;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800849 int old_singlestep;
850
Avi Kivity6aa8b732006-12-10 02:21:36 -0800851 old_singlestep = vcpu->guest_debug.singlestep;
852
853 vcpu->guest_debug.enabled = dbg->enabled;
854 if (vcpu->guest_debug.enabled) {
855 int i;
856
857 dr7 |= 0x200; /* exact */
858 for (i = 0; i < 4; ++i) {
859 if (!dbg->breakpoints[i].enabled)
860 continue;
861 vcpu->guest_debug.bp[i] = dbg->breakpoints[i].address;
862 dr7 |= 2 << (i*2); /* global enable */
863 dr7 |= 0 << (i*4+16); /* execution breakpoint */
864 }
865
Avi Kivity6aa8b732006-12-10 02:21:36 -0800866 vcpu->guest_debug.singlestep = dbg->singlestep;
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300867 } else
Avi Kivity6aa8b732006-12-10 02:21:36 -0800868 vcpu->guest_debug.singlestep = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800869
870 if (old_singlestep && !vcpu->guest_debug.singlestep) {
871 unsigned long flags;
872
873 flags = vmcs_readl(GUEST_RFLAGS);
874 flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
875 vmcs_writel(GUEST_RFLAGS, flags);
876 }
877
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300878 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800879 vmcs_writel(GUEST_DR7, dr7);
880
881 return 0;
882}
883
Eddie Dong2a8067f2007-08-06 16:29:07 +0300884static int vmx_get_irq(struct kvm_vcpu *vcpu)
885{
Avi Kivity1155f762007-11-22 11:30:47 +0200886 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eddie Dong2a8067f2007-08-06 16:29:07 +0300887 u32 idtv_info_field;
888
Avi Kivity1155f762007-11-22 11:30:47 +0200889 idtv_info_field = vmx->idt_vectoring_info;
Eddie Dong2a8067f2007-08-06 16:29:07 +0300890 if (idtv_info_field & INTR_INFO_VALID_MASK) {
891 if (is_external_interrupt(idtv_info_field))
892 return idtv_info_field & VECTORING_INFO_VECTOR_MASK;
893 else
Mike Dayd77c26f2007-10-08 09:02:08 -0400894 printk(KERN_DEBUG "pending exception: not handled yet\n");
Eddie Dong2a8067f2007-08-06 16:29:07 +0300895 }
896 return -1;
897}
898
Avi Kivity6aa8b732006-12-10 02:21:36 -0800899static __init int cpu_has_kvm_support(void)
900{
901 unsigned long ecx = cpuid_ecx(1);
902 return test_bit(5, &ecx); /* CPUID.1:ECX.VMX[bit 5] -> VT */
903}
904
905static __init int vmx_disabled_by_bios(void)
906{
907 u64 msr;
908
909 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Yang, Sheng62b3ffb2007-07-25 12:17:06 +0300910 return (msr & (MSR_IA32_FEATURE_CONTROL_LOCKED |
911 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
912 == MSR_IA32_FEATURE_CONTROL_LOCKED;
913 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914}
915
Avi Kivity774c47f2007-02-12 00:54:47 -0800916static void hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800917{
918 int cpu = raw_smp_processor_id();
919 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
920 u64 old;
921
922 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Yang, Sheng62b3ffb2007-07-25 12:17:06 +0300923 if ((old & (MSR_IA32_FEATURE_CONTROL_LOCKED |
924 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
925 != (MSR_IA32_FEATURE_CONTROL_LOCKED |
926 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800927 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +0300928 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
929 MSR_IA32_FEATURE_CONTROL_LOCKED |
930 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +1000931 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800932 asm volatile (ASM_VMX_VMXON_RAX : : "a"(&phys_addr), "m"(phys_addr)
933 : "memory", "cc");
934}
935
936static void hardware_disable(void *garbage)
937{
938 asm volatile (ASM_VMX_VMXOFF : : : "cc");
939}
940
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300941static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -0400942 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800943{
944 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300945 u32 ctl = ctl_min | ctl_opt;
946
947 rdmsr(msr, vmx_msr_low, vmx_msr_high);
948
949 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
950 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
951
952 /* Ensure minimum (required) set of control bits are supported. */
953 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300954 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300955
956 *result = ctl;
957 return 0;
958}
959
Yang, Sheng002c7f72007-07-31 14:23:01 +0300960static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300961{
962 u32 vmx_msr_low, vmx_msr_high;
963 u32 min, opt;
964 u32 _pin_based_exec_control = 0;
965 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800966 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300967 u32 _vmexit_control = 0;
968 u32 _vmentry_control = 0;
969
970 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
971 opt = 0;
972 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
973 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300974 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300975
976 min = CPU_BASED_HLT_EXITING |
977#ifdef CONFIG_X86_64
978 CPU_BASED_CR8_LOAD_EXITING |
979 CPU_BASED_CR8_STORE_EXITING |
980#endif
981 CPU_BASED_USE_IO_BITMAPS |
982 CPU_BASED_MOV_DR_EXITING |
983 CPU_BASED_USE_TSC_OFFSETING;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800984 opt = CPU_BASED_TPR_SHADOW |
985 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300986 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
987 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300988 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800989#ifdef CONFIG_X86_64
990 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
991 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
992 ~CPU_BASED_CR8_STORE_EXITING;
993#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +0800994 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
995 min = 0;
Eddie Donge5edaa02007-11-11 12:28:35 +0200996 opt = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
997 SECONDARY_EXEC_WBINVD_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800998 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS2,
999 &_cpu_based_2nd_exec_control) < 0)
1000 return -EIO;
1001 }
1002#ifndef CONFIG_X86_64
1003 if (!(_cpu_based_2nd_exec_control &
1004 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1005 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1006#endif
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001007
1008 min = 0;
1009#ifdef CONFIG_X86_64
1010 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1011#endif
1012 opt = 0;
1013 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1014 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001015 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001016
1017 min = opt = 0;
1018 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1019 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001020 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001021
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001022 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001023
1024 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1025 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001026 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001027
1028#ifdef CONFIG_X86_64
1029 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1030 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001031 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001032#endif
1033
1034 /* Require Write-Back (WB) memory type for VMCS accesses. */
1035 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001036 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001037
Yang, Sheng002c7f72007-07-31 14:23:01 +03001038 vmcs_conf->size = vmx_msr_high & 0x1fff;
1039 vmcs_conf->order = get_order(vmcs_config.size);
1040 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001041
Yang, Sheng002c7f72007-07-31 14:23:01 +03001042 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1043 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001044 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001045 vmcs_conf->vmexit_ctrl = _vmexit_control;
1046 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001047
1048 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001049}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001050
1051static struct vmcs *alloc_vmcs_cpu(int cpu)
1052{
1053 int node = cpu_to_node(cpu);
1054 struct page *pages;
1055 struct vmcs *vmcs;
1056
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001057 pages = alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058 if (!pages)
1059 return NULL;
1060 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001061 memset(vmcs, 0, vmcs_config.size);
1062 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001063 return vmcs;
1064}
1065
1066static struct vmcs *alloc_vmcs(void)
1067{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001068 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001069}
1070
1071static void free_vmcs(struct vmcs *vmcs)
1072{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001073 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001074}
1075
Sam Ravnborg39959582007-06-01 00:47:13 -07001076static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001077{
1078 int cpu;
1079
1080 for_each_online_cpu(cpu)
1081 free_vmcs(per_cpu(vmxarea, cpu));
1082}
1083
Avi Kivity6aa8b732006-12-10 02:21:36 -08001084static __init int alloc_kvm_area(void)
1085{
1086 int cpu;
1087
1088 for_each_online_cpu(cpu) {
1089 struct vmcs *vmcs;
1090
1091 vmcs = alloc_vmcs_cpu(cpu);
1092 if (!vmcs) {
1093 free_kvm_area();
1094 return -ENOMEM;
1095 }
1096
1097 per_cpu(vmxarea, cpu) = vmcs;
1098 }
1099 return 0;
1100}
1101
1102static __init int hardware_setup(void)
1103{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001104 if (setup_vmcs_config(&vmcs_config) < 0)
1105 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001106 return alloc_kvm_area();
1107}
1108
1109static __exit void hardware_unsetup(void)
1110{
1111 free_kvm_area();
1112}
1113
Avi Kivity6aa8b732006-12-10 02:21:36 -08001114static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1115{
1116 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1117
Avi Kivity6af11b92007-03-19 13:18:10 +02001118 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001119 vmcs_write16(sf->selector, save->selector);
1120 vmcs_writel(sf->base, save->base);
1121 vmcs_write32(sf->limit, save->limit);
1122 vmcs_write32(sf->ar_bytes, save->ar);
1123 } else {
1124 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1125 << AR_DPL_SHIFT;
1126 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1127 }
1128}
1129
1130static void enter_pmode(struct kvm_vcpu *vcpu)
1131{
1132 unsigned long flags;
1133
1134 vcpu->rmode.active = 0;
1135
1136 vmcs_writel(GUEST_TR_BASE, vcpu->rmode.tr.base);
1137 vmcs_write32(GUEST_TR_LIMIT, vcpu->rmode.tr.limit);
1138 vmcs_write32(GUEST_TR_AR_BYTES, vcpu->rmode.tr.ar);
1139
1140 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001141 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001142 flags |= (vcpu->rmode.save_iopl << IOPL_SHIFT);
1143 vmcs_writel(GUEST_RFLAGS, flags);
1144
Rusty Russell66aee912007-07-17 23:34:16 +10001145 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1146 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001147
1148 update_exception_bitmap(vcpu);
1149
1150 fix_pmode_dataseg(VCPU_SREG_ES, &vcpu->rmode.es);
1151 fix_pmode_dataseg(VCPU_SREG_DS, &vcpu->rmode.ds);
1152 fix_pmode_dataseg(VCPU_SREG_GS, &vcpu->rmode.gs);
1153 fix_pmode_dataseg(VCPU_SREG_FS, &vcpu->rmode.fs);
1154
1155 vmcs_write16(GUEST_SS_SELECTOR, 0);
1156 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1157
1158 vmcs_write16(GUEST_CS_SELECTOR,
1159 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1160 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1161}
1162
Mike Dayd77c26f2007-10-08 09:02:08 -04001163static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001164{
Izik Eiduscbc94022007-10-25 00:29:55 +02001165 if (!kvm->tss_addr) {
1166 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1167 kvm->memslots[0].npages - 3;
1168 return base_gfn << PAGE_SHIFT;
1169 }
1170 return kvm->tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001171}
1172
1173static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1174{
1175 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1176
1177 save->selector = vmcs_read16(sf->selector);
1178 save->base = vmcs_readl(sf->base);
1179 save->limit = vmcs_read32(sf->limit);
1180 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001181 vmcs_write16(sf->selector, save->base >> 4);
1182 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001183 vmcs_write32(sf->limit, 0xffff);
1184 vmcs_write32(sf->ar_bytes, 0xf3);
1185}
1186
1187static void enter_rmode(struct kvm_vcpu *vcpu)
1188{
1189 unsigned long flags;
1190
1191 vcpu->rmode.active = 1;
1192
1193 vcpu->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
1194 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1195
1196 vcpu->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
1197 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1198
1199 vcpu->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
1200 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1201
1202 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001203 vcpu->rmode.save_iopl = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001204
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001205 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001206
1207 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001208 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001209 update_exception_bitmap(vcpu);
1210
1211 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1212 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1213 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1214
1215 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001216 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001217 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1218 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001219 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1220
1221 fix_rmode_seg(VCPU_SREG_ES, &vcpu->rmode.es);
1222 fix_rmode_seg(VCPU_SREG_DS, &vcpu->rmode.ds);
1223 fix_rmode_seg(VCPU_SREG_GS, &vcpu->rmode.gs);
1224 fix_rmode_seg(VCPU_SREG_FS, &vcpu->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001225
Eddie Dong8668a3c2007-10-10 14:26:45 +08001226 kvm_mmu_reset_context(vcpu);
Avi Kivity75880a02007-06-20 11:20:04 +03001227 init_rmode_tss(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001228}
1229
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001230#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001231
1232static void enter_lmode(struct kvm_vcpu *vcpu)
1233{
1234 u32 guest_tr_ar;
1235
1236 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1237 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1238 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
1239 __FUNCTION__);
1240 vmcs_write32(GUEST_TR_AR_BYTES,
1241 (guest_tr_ar & ~AR_TYPE_MASK)
1242 | AR_TYPE_BUSY_64_TSS);
1243 }
1244
1245 vcpu->shadow_efer |= EFER_LMA;
1246
Rusty Russell8b9cf982007-07-30 16:31:43 +10001247 find_msr_entry(to_vmx(vcpu), MSR_EFER)->data |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001248 vmcs_write32(VM_ENTRY_CONTROLS,
1249 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001250 | VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001251}
1252
1253static void exit_lmode(struct kvm_vcpu *vcpu)
1254{
1255 vcpu->shadow_efer &= ~EFER_LMA;
1256
1257 vmcs_write32(VM_ENTRY_CONTROLS,
1258 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001259 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001260}
1261
1262#endif
1263
Anthony Liguori25c4c272007-04-27 09:29:21 +03001264static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001265{
Avi Kivity399badf2007-01-05 16:36:38 -08001266 vcpu->cr4 &= KVM_GUEST_CR4_MASK;
1267 vcpu->cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
1268}
1269
Avi Kivity6aa8b732006-12-10 02:21:36 -08001270static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1271{
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001272 vmx_fpu_deactivate(vcpu);
1273
Rusty Russell707d92f2007-07-17 23:19:08 +10001274 if (vcpu->rmode.active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001275 enter_pmode(vcpu);
1276
Rusty Russell707d92f2007-07-17 23:19:08 +10001277 if (!vcpu->rmode.active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001278 enter_rmode(vcpu);
1279
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001280#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001281 if (vcpu->shadow_efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10001282 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001283 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10001284 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001285 exit_lmode(vcpu);
1286 }
1287#endif
1288
1289 vmcs_writel(CR0_READ_SHADOW, cr0);
1290 vmcs_writel(GUEST_CR0,
1291 (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON);
1292 vcpu->cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001293
Rusty Russell707d92f2007-07-17 23:19:08 +10001294 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001295 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001296}
1297
Avi Kivity6aa8b732006-12-10 02:21:36 -08001298static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1299{
1300 vmcs_writel(GUEST_CR3, cr3);
Rusty Russell707d92f2007-07-17 23:19:08 +10001301 if (vcpu->cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001302 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001303}
1304
1305static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1306{
1307 vmcs_writel(CR4_READ_SHADOW, cr4);
1308 vmcs_writel(GUEST_CR4, cr4 | (vcpu->rmode.active ?
1309 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON));
1310 vcpu->cr4 = cr4;
1311}
1312
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001313#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001314
1315static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1316{
Rusty Russell8b9cf982007-07-30 16:31:43 +10001317 struct vcpu_vmx *vmx = to_vmx(vcpu);
1318 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001319
1320 vcpu->shadow_efer = efer;
1321 if (efer & EFER_LMA) {
1322 vmcs_write32(VM_ENTRY_CONTROLS,
1323 vmcs_read32(VM_ENTRY_CONTROLS) |
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001324 VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001325 msr->data = efer;
1326
1327 } else {
1328 vmcs_write32(VM_ENTRY_CONTROLS,
1329 vmcs_read32(VM_ENTRY_CONTROLS) &
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001330 ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001331
1332 msr->data = efer & ~EFER_LME;
1333 }
Rusty Russell8b9cf982007-07-30 16:31:43 +10001334 setup_msrs(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001335}
1336
1337#endif
1338
1339static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1340{
1341 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1342
1343 return vmcs_readl(sf->base);
1344}
1345
1346static void vmx_get_segment(struct kvm_vcpu *vcpu,
1347 struct kvm_segment *var, int seg)
1348{
1349 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1350 u32 ar;
1351
1352 var->base = vmcs_readl(sf->base);
1353 var->limit = vmcs_read32(sf->limit);
1354 var->selector = vmcs_read16(sf->selector);
1355 ar = vmcs_read32(sf->ar_bytes);
1356 if (ar & AR_UNUSABLE_MASK)
1357 ar = 0;
1358 var->type = ar & 15;
1359 var->s = (ar >> 4) & 1;
1360 var->dpl = (ar >> 5) & 3;
1361 var->present = (ar >> 7) & 1;
1362 var->avl = (ar >> 12) & 1;
1363 var->l = (ar >> 13) & 1;
1364 var->db = (ar >> 14) & 1;
1365 var->g = (ar >> 15) & 1;
1366 var->unusable = (ar >> 16) & 1;
1367}
1368
Avi Kivity653e3102007-05-07 10:55:37 +03001369static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001370{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001371 u32 ar;
1372
Avi Kivity653e3102007-05-07 10:55:37 +03001373 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001374 ar = 1 << 16;
1375 else {
1376 ar = var->type & 15;
1377 ar |= (var->s & 1) << 4;
1378 ar |= (var->dpl & 3) << 5;
1379 ar |= (var->present & 1) << 7;
1380 ar |= (var->avl & 1) << 12;
1381 ar |= (var->l & 1) << 13;
1382 ar |= (var->db & 1) << 14;
1383 ar |= (var->g & 1) << 15;
1384 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001385 if (ar == 0) /* a 0 value means unusable */
1386 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001387
1388 return ar;
1389}
1390
1391static void vmx_set_segment(struct kvm_vcpu *vcpu,
1392 struct kvm_segment *var, int seg)
1393{
1394 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1395 u32 ar;
1396
1397 if (vcpu->rmode.active && seg == VCPU_SREG_TR) {
1398 vcpu->rmode.tr.selector = var->selector;
1399 vcpu->rmode.tr.base = var->base;
1400 vcpu->rmode.tr.limit = var->limit;
1401 vcpu->rmode.tr.ar = vmx_segment_access_rights(var);
1402 return;
1403 }
1404 vmcs_writel(sf->base, var->base);
1405 vmcs_write32(sf->limit, var->limit);
1406 vmcs_write16(sf->selector, var->selector);
1407 if (vcpu->rmode.active && var->s) {
1408 /*
1409 * Hack real-mode segments into vm86 compatibility.
1410 */
1411 if (var->base == 0xffff0000 && var->selector == 0xf000)
1412 vmcs_writel(sf->base, 0xf0000);
1413 ar = 0xf3;
1414 } else
1415 ar = vmx_segment_access_rights(var);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001416 vmcs_write32(sf->ar_bytes, ar);
1417}
1418
Avi Kivity6aa8b732006-12-10 02:21:36 -08001419static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1420{
1421 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1422
1423 *db = (ar >> 14) & 1;
1424 *l = (ar >> 13) & 1;
1425}
1426
1427static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1428{
1429 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1430 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1431}
1432
1433static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1434{
1435 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1436 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1437}
1438
1439static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1440{
1441 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1442 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1443}
1444
1445static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1446{
1447 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1448 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1449}
1450
Mike Dayd77c26f2007-10-08 09:02:08 -04001451static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001452{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001453 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001454 u16 data = 0;
1455 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001456
Izik Eidus195aefd2007-10-01 22:14:18 +02001457 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1458 if (r < 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001459 return 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02001460 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
1461 r = kvm_write_guest_page(kvm, fn++, &data, 0x66, sizeof(u16));
1462 if (r < 0)
1463 return 0;
1464 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
1465 if (r < 0)
1466 return 0;
1467 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1468 if (r < 0)
1469 return 0;
1470 data = ~0;
1471 r = kvm_write_guest_page(kvm, fn, &data, RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
1472 sizeof(u8));
1473 if (r < 0)
1474 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001475 return 1;
1476}
1477
Avi Kivity6aa8b732006-12-10 02:21:36 -08001478static void seg_setup(int seg)
1479{
1480 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1481
1482 vmcs_write16(sf->selector, 0);
1483 vmcs_writel(sf->base, 0);
1484 vmcs_write32(sf->limit, 0xffff);
1485 vmcs_write32(sf->ar_bytes, 0x93);
1486}
1487
Sheng Yangf78e0e22007-10-29 09:40:42 +08001488static int alloc_apic_access_page(struct kvm *kvm)
1489{
1490 struct kvm_userspace_memory_region kvm_userspace_mem;
1491 int r = 0;
1492
1493 mutex_lock(&kvm->lock);
1494 if (kvm->apic_access_page)
1495 goto out;
1496 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
1497 kvm_userspace_mem.flags = 0;
1498 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
1499 kvm_userspace_mem.memory_size = PAGE_SIZE;
1500 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
1501 if (r)
1502 goto out;
1503 kvm->apic_access_page = gfn_to_page(kvm, 0xfee00);
1504out:
1505 mutex_unlock(&kvm->lock);
1506 return r;
1507}
1508
Avi Kivity6aa8b732006-12-10 02:21:36 -08001509/*
1510 * Sets up the vmcs for emulated real mode.
1511 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001512static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001513{
1514 u32 host_sysenter_cs;
1515 u32 junk;
1516 unsigned long a;
1517 struct descriptor_table dt;
1518 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03001519 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001520 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001521
Avi Kivity6aa8b732006-12-10 02:21:36 -08001522 /* I/O */
He, Qingfdef3ad2007-04-30 09:45:24 +03001523 vmcs_write64(IO_BITMAP_A, page_to_phys(vmx_io_bitmap_a));
1524 vmcs_write64(IO_BITMAP_B, page_to_phys(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001525
Avi Kivity6aa8b732006-12-10 02:21:36 -08001526 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
1527
Avi Kivity6aa8b732006-12-10 02:21:36 -08001528 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001529 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
1530 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001531
1532 exec_control = vmcs_config.cpu_based_exec_ctrl;
1533 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
1534 exec_control &= ~CPU_BASED_TPR_SHADOW;
1535#ifdef CONFIG_X86_64
1536 exec_control |= CPU_BASED_CR8_STORE_EXITING |
1537 CPU_BASED_CR8_LOAD_EXITING;
1538#endif
1539 }
1540 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001541
Sheng Yang83ff3b92007-11-21 14:33:25 +08001542 if (cpu_has_secondary_exec_ctrls()) {
1543 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
1544 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
1545 exec_control &=
1546 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1547 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
1548 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08001549
Avi Kivityc7addb92007-09-16 18:58:32 +02001550 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
1551 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001552 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
1553
1554 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
1555 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
1556 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
1557
1558 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
1559 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
1560 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
1561 vmcs_write16(HOST_FS_SELECTOR, read_fs()); /* 22.2.4 */
1562 vmcs_write16(HOST_GS_SELECTOR, read_gs()); /* 22.2.4 */
1563 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001564#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001565 rdmsrl(MSR_FS_BASE, a);
1566 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
1567 rdmsrl(MSR_GS_BASE, a);
1568 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
1569#else
1570 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
1571 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
1572#endif
1573
1574 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
1575
1576 get_idt(&dt);
1577 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
1578
Mike Dayd77c26f2007-10-08 09:02:08 -04001579 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03001580 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03001581 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
1582 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
1583 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001584
1585 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
1586 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
1587 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
1588 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
1589 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
1590 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
1591
Avi Kivity6aa8b732006-12-10 02:21:36 -08001592 for (i = 0; i < NR_VMX_MSR; ++i) {
1593 u32 index = vmx_msr_index[i];
1594 u32 data_low, data_high;
1595 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001596 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001597
1598 if (rdmsr_safe(index, &data_low, &data_high) < 0)
1599 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08001600 if (wrmsr_safe(index, data_low, data_high) < 0)
1601 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001602 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001603 vmx->host_msrs[j].index = index;
1604 vmx->host_msrs[j].reserved = 0;
1605 vmx->host_msrs[j].data = data;
1606 vmx->guest_msrs[j] = vmx->host_msrs[j];
1607 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001608 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001609
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001610 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001611
1612 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001613 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
1614
Avi Kivitye00c8cf2007-10-21 11:00:39 +02001615 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
1616 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
1617
Sheng Yangf78e0e22007-10-29 09:40:42 +08001618 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
1619 if (alloc_apic_access_page(vmx->vcpu.kvm) != 0)
1620 return -ENOMEM;
1621
Avi Kivitye00c8cf2007-10-21 11:00:39 +02001622 return 0;
1623}
1624
1625static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
1626{
1627 struct vcpu_vmx *vmx = to_vmx(vcpu);
1628 u64 msr;
1629 int ret;
1630
1631 if (!init_rmode_tss(vmx->vcpu.kvm)) {
1632 ret = -ENOMEM;
1633 goto out;
1634 }
1635
1636 vmx->vcpu.rmode.active = 0;
1637
1638 vmx->vcpu.regs[VCPU_REGS_RDX] = get_rdx_init_val();
1639 set_cr8(&vmx->vcpu, 0);
1640 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
1641 if (vmx->vcpu.vcpu_id == 0)
1642 msr |= MSR_IA32_APICBASE_BSP;
1643 kvm_set_apic_base(&vmx->vcpu, msr);
1644
1645 fx_init(&vmx->vcpu);
1646
1647 /*
1648 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
1649 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
1650 */
1651 if (vmx->vcpu.vcpu_id == 0) {
1652 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
1653 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
1654 } else {
1655 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.sipi_vector << 8);
1656 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.sipi_vector << 12);
1657 }
1658 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
1659 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1660
1661 seg_setup(VCPU_SREG_DS);
1662 seg_setup(VCPU_SREG_ES);
1663 seg_setup(VCPU_SREG_FS);
1664 seg_setup(VCPU_SREG_GS);
1665 seg_setup(VCPU_SREG_SS);
1666
1667 vmcs_write16(GUEST_TR_SELECTOR, 0);
1668 vmcs_writel(GUEST_TR_BASE, 0);
1669 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
1670 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1671
1672 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
1673 vmcs_writel(GUEST_LDTR_BASE, 0);
1674 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
1675 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
1676
1677 vmcs_write32(GUEST_SYSENTER_CS, 0);
1678 vmcs_writel(GUEST_SYSENTER_ESP, 0);
1679 vmcs_writel(GUEST_SYSENTER_EIP, 0);
1680
1681 vmcs_writel(GUEST_RFLAGS, 0x02);
1682 if (vmx->vcpu.vcpu_id == 0)
1683 vmcs_writel(GUEST_RIP, 0xfff0);
1684 else
1685 vmcs_writel(GUEST_RIP, 0);
1686 vmcs_writel(GUEST_RSP, 0);
1687
1688 /* todo: dr0 = dr1 = dr2 = dr3 = 0; dr6 = 0xffff0ff0 */
1689 vmcs_writel(GUEST_DR7, 0x400);
1690
1691 vmcs_writel(GUEST_GDTR_BASE, 0);
1692 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
1693
1694 vmcs_writel(GUEST_IDTR_BASE, 0);
1695 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
1696
1697 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
1698 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
1699 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
1700
1701 guest_write_tsc(0);
1702
1703 /* Special registers */
1704 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
1705
1706 setup_msrs(vmx);
1707
Avi Kivity6aa8b732006-12-10 02:21:36 -08001708 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
1709
Sheng Yangf78e0e22007-10-29 09:40:42 +08001710 if (cpu_has_vmx_tpr_shadow()) {
1711 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
1712 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
1713 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
1714 page_to_phys(vmx->vcpu.apic->regs_page));
1715 vmcs_write32(TPR_THRESHOLD, 0);
1716 }
1717
1718 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
1719 vmcs_write64(APIC_ACCESS_ADDR,
1720 page_to_phys(vmx->vcpu.kvm->apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001721
Rusty Russell8b9cf982007-07-30 16:31:43 +10001722 vmx->vcpu.cr0 = 0x60000010;
Mike Dayd77c26f2007-10-08 09:02:08 -04001723 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001724 vmx_set_cr4(&vmx->vcpu, 0);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001725#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10001726 vmx_set_efer(&vmx->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001727#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +10001728 vmx_fpu_activate(&vmx->vcpu);
1729 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001730
1731 return 0;
1732
Avi Kivity6aa8b732006-12-10 02:21:36 -08001733out:
1734 return ret;
1735}
1736
Eddie Dong85f455f2007-07-06 12:20:49 +03001737static void vmx_inject_irq(struct kvm_vcpu *vcpu, int irq)
1738{
Avi Kivity9c8cba32007-11-22 11:42:59 +02001739 struct vcpu_vmx *vmx = to_vmx(vcpu);
1740
Eddie Dong85f455f2007-07-06 12:20:49 +03001741 if (vcpu->rmode.active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02001742 vmx->rmode.irq.pending = true;
1743 vmx->rmode.irq.vector = irq;
1744 vmx->rmode.irq.rip = vmcs_readl(GUEST_RIP);
Avi Kivity9c5623e2007-11-08 18:19:20 +02001745 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
1746 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
1747 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Avi Kivity9c8cba32007-11-22 11:42:59 +02001748 vmcs_writel(GUEST_RIP, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03001749 return;
1750 }
1751 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
1752 irq | INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1753}
1754
Avi Kivity6aa8b732006-12-10 02:21:36 -08001755static void kvm_do_inject_irq(struct kvm_vcpu *vcpu)
1756{
1757 int word_index = __ffs(vcpu->irq_summary);
1758 int bit_index = __ffs(vcpu->irq_pending[word_index]);
1759 int irq = word_index * BITS_PER_LONG + bit_index;
1760
1761 clear_bit(bit_index, &vcpu->irq_pending[word_index]);
1762 if (!vcpu->irq_pending[word_index])
1763 clear_bit(word_index, &vcpu->irq_summary);
Eddie Dong85f455f2007-07-06 12:20:49 +03001764 vmx_inject_irq(vcpu, irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001765}
1766
Dor Laorc1150d82007-01-05 16:36:24 -08001767
1768static void do_interrupt_requests(struct kvm_vcpu *vcpu,
1769 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001770{
Dor Laorc1150d82007-01-05 16:36:24 -08001771 u32 cpu_based_vm_exec_control;
1772
1773 vcpu->interrupt_window_open =
1774 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
1775 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);
1776
1777 if (vcpu->interrupt_window_open &&
1778 vcpu->irq_summary &&
1779 !(vmcs_read32(VM_ENTRY_INTR_INFO_FIELD) & INTR_INFO_VALID_MASK))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001780 /*
Dor Laorc1150d82007-01-05 16:36:24 -08001781 * If interrupts enabled, and not blocked by sti or mov ss. Good.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001782 */
1783 kvm_do_inject_irq(vcpu);
Dor Laorc1150d82007-01-05 16:36:24 -08001784
1785 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
1786 if (!vcpu->interrupt_window_open &&
1787 (vcpu->irq_summary || kvm_run->request_interrupt_window))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001788 /*
1789 * Interrupts blocked. Wait for unblock.
1790 */
Dor Laorc1150d82007-01-05 16:36:24 -08001791 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
1792 else
1793 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
1794 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001795}
1796
Izik Eiduscbc94022007-10-25 00:29:55 +02001797static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
1798{
1799 int ret;
1800 struct kvm_userspace_memory_region tss_mem = {
1801 .slot = 8,
1802 .guest_phys_addr = addr,
1803 .memory_size = PAGE_SIZE * 3,
1804 .flags = 0,
1805 };
1806
1807 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
1808 if (ret)
1809 return ret;
1810 kvm->tss_addr = addr;
1811 return 0;
1812}
1813
Avi Kivity6aa8b732006-12-10 02:21:36 -08001814static void kvm_guest_debug_pre(struct kvm_vcpu *vcpu)
1815{
1816 struct kvm_guest_debug *dbg = &vcpu->guest_debug;
1817
1818 set_debugreg(dbg->bp[0], 0);
1819 set_debugreg(dbg->bp[1], 1);
1820 set_debugreg(dbg->bp[2], 2);
1821 set_debugreg(dbg->bp[3], 3);
1822
1823 if (dbg->singlestep) {
1824 unsigned long flags;
1825
1826 flags = vmcs_readl(GUEST_RFLAGS);
1827 flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
1828 vmcs_writel(GUEST_RFLAGS, flags);
1829 }
1830}
1831
1832static int handle_rmode_exception(struct kvm_vcpu *vcpu,
1833 int vec, u32 err_code)
1834{
1835 if (!vcpu->rmode.active)
1836 return 0;
1837
Nitin A Kambleb3f37702007-05-17 15:50:34 +03001838 /*
1839 * Instruction with address size override prefix opcode 0x67
1840 * Cause the #SS fault with 0 error code in VM86 mode.
1841 */
1842 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Laurent Vivier34273182007-09-18 11:27:37 +02001843 if (emulate_instruction(vcpu, NULL, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001844 return 1;
1845 return 0;
1846}
1847
1848static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1849{
Avi Kivity1155f762007-11-22 11:30:47 +02001850 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001851 u32 intr_info, error_code;
1852 unsigned long cr2, rip;
1853 u32 vect_info;
1854 enum emulation_result er;
1855
Avi Kivity1155f762007-11-22 11:30:47 +02001856 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001857 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
1858
1859 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04001860 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001861 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
1862 "intr info 0x%x\n", __FUNCTION__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001863
Eddie Dong85f455f2007-07-06 12:20:49 +03001864 if (!irqchip_in_kernel(vcpu->kvm) && is_external_interrupt(vect_info)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001865 int irq = vect_info & VECTORING_INFO_VECTOR_MASK;
1866 set_bit(irq, vcpu->irq_pending);
1867 set_bit(irq / BITS_PER_LONG, &vcpu->irq_summary);
1868 }
1869
Avi Kivity1b6269d2007-10-09 12:12:19 +02001870 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
1871 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001872
1873 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001874 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001875 return 1;
1876 }
1877
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001878 if (is_invalid_opcode(intr_info)) {
Laurent Vivier34273182007-09-18 11:27:37 +02001879 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001880 if (er != EMULATE_DONE)
1881 vmx_inject_ud(vcpu);
1882
1883 return 1;
1884 }
1885
Avi Kivity6aa8b732006-12-10 02:21:36 -08001886 error_code = 0;
1887 rip = vmcs_readl(GUEST_RIP);
1888 if (intr_info & INTR_INFO_DELIEVER_CODE_MASK)
1889 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
1890 if (is_page_fault(intr_info)) {
1891 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity30677142007-10-28 18:48:59 +02001892 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001893 }
1894
1895 if (vcpu->rmode.active &&
1896 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03001897 error_code)) {
1898 if (vcpu->halt_request) {
1899 vcpu->halt_request = 0;
1900 return kvm_emulate_halt(vcpu);
1901 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001902 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03001903 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001904
Mike Dayd77c26f2007-10-08 09:02:08 -04001905 if ((intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK)) ==
1906 (INTR_TYPE_EXCEPTION | 1)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001907 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1908 return 0;
1909 }
1910 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
1911 kvm_run->ex.exception = intr_info & INTR_INFO_VECTOR_MASK;
1912 kvm_run->ex.error_code = error_code;
1913 return 0;
1914}
1915
1916static int handle_external_interrupt(struct kvm_vcpu *vcpu,
1917 struct kvm_run *kvm_run)
1918{
Avi Kivity1165f5f2007-04-19 17:27:43 +03001919 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001920 return 1;
1921}
1922
Avi Kivity988ad742007-02-12 00:54:36 -08001923static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1924{
1925 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
1926 return 0;
1927}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001928
Avi Kivity6aa8b732006-12-10 02:21:36 -08001929static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1930{
He, Qingbfdaab02007-09-12 14:18:28 +08001931 unsigned long exit_qualification;
Avi Kivity039576c2007-03-20 12:46:50 +02001932 int size, down, in, string, rep;
1933 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001934
Avi Kivity1165f5f2007-04-19 17:27:43 +03001935 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08001936 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02001937 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03001938
1939 if (string) {
Laurent Vivier34273182007-09-18 11:27:37 +02001940 if (emulate_instruction(vcpu,
1941 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03001942 return 0;
1943 return 1;
1944 }
1945
1946 size = (exit_qualification & 7) + 1;
1947 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02001948 down = (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_DF) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02001949 rep = (exit_qualification & 32) != 0;
1950 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03001951
Laurent Vivier3090dd72007-08-05 10:43:32 +03001952 return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001953}
1954
Ingo Molnar102d8322007-02-19 14:37:47 +02001955static void
1956vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
1957{
1958 /*
1959 * Patch in the VMCALL instruction:
1960 */
1961 hypercall[0] = 0x0f;
1962 hypercall[1] = 0x01;
1963 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02001964}
1965
Avi Kivity6aa8b732006-12-10 02:21:36 -08001966static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1967{
He, Qingbfdaab02007-09-12 14:18:28 +08001968 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001969 int cr;
1970 int reg;
1971
He, Qingbfdaab02007-09-12 14:18:28 +08001972 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001973 cr = exit_qualification & 15;
1974 reg = (exit_qualification >> 8) & 15;
1975 switch ((exit_qualification >> 4) & 3) {
1976 case 0: /* mov to cr */
1977 switch (cr) {
1978 case 0:
1979 vcpu_load_rsp_rip(vcpu);
1980 set_cr0(vcpu, vcpu->regs[reg]);
1981 skip_emulated_instruction(vcpu);
1982 return 1;
1983 case 3:
1984 vcpu_load_rsp_rip(vcpu);
1985 set_cr3(vcpu, vcpu->regs[reg]);
1986 skip_emulated_instruction(vcpu);
1987 return 1;
1988 case 4:
1989 vcpu_load_rsp_rip(vcpu);
1990 set_cr4(vcpu, vcpu->regs[reg]);
1991 skip_emulated_instruction(vcpu);
1992 return 1;
1993 case 8:
1994 vcpu_load_rsp_rip(vcpu);
1995 set_cr8(vcpu, vcpu->regs[reg]);
1996 skip_emulated_instruction(vcpu);
Yang, Sheng253abde2007-08-16 13:01:00 +03001997 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
1998 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001999 };
2000 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002001 case 2: /* clts */
2002 vcpu_load_rsp_rip(vcpu);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002003 vmx_fpu_deactivate(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10002004 vcpu->cr0 &= ~X86_CR0_TS;
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002005 vmcs_writel(CR0_READ_SHADOW, vcpu->cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002006 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002007 skip_emulated_instruction(vcpu);
2008 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002009 case 1: /*mov from cr*/
2010 switch (cr) {
2011 case 3:
2012 vcpu_load_rsp_rip(vcpu);
2013 vcpu->regs[reg] = vcpu->cr3;
2014 vcpu_put_rsp_rip(vcpu);
2015 skip_emulated_instruction(vcpu);
2016 return 1;
2017 case 8:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002018 vcpu_load_rsp_rip(vcpu);
Eddie Dong7017fc32007-07-18 11:34:57 +03002019 vcpu->regs[reg] = get_cr8(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002020 vcpu_put_rsp_rip(vcpu);
2021 skip_emulated_instruction(vcpu);
2022 return 1;
2023 }
2024 break;
2025 case 3: /* lmsw */
2026 lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
2027
2028 skip_emulated_instruction(vcpu);
2029 return 1;
2030 default:
2031 break;
2032 }
2033 kvm_run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002034 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002035 (int)(exit_qualification >> 4) & 3, cr);
2036 return 0;
2037}
2038
2039static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2040{
He, Qingbfdaab02007-09-12 14:18:28 +08002041 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002042 unsigned long val;
2043 int dr, reg;
2044
2045 /*
2046 * FIXME: this code assumes the host is debugging the guest.
2047 * need to deal with guest debugging itself too.
2048 */
He, Qingbfdaab02007-09-12 14:18:28 +08002049 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002050 dr = exit_qualification & 7;
2051 reg = (exit_qualification >> 8) & 15;
2052 vcpu_load_rsp_rip(vcpu);
2053 if (exit_qualification & 16) {
2054 /* mov from dr */
2055 switch (dr) {
2056 case 6:
2057 val = 0xffff0ff0;
2058 break;
2059 case 7:
2060 val = 0x400;
2061 break;
2062 default:
2063 val = 0;
2064 }
2065 vcpu->regs[reg] = val;
2066 } else {
2067 /* mov to dr */
2068 }
2069 vcpu_put_rsp_rip(vcpu);
2070 skip_emulated_instruction(vcpu);
2071 return 1;
2072}
2073
2074static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2075{
Avi Kivity06465c52007-02-28 20:46:53 +02002076 kvm_emulate_cpuid(vcpu);
2077 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002078}
2079
2080static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2081{
2082 u32 ecx = vcpu->regs[VCPU_REGS_RCX];
2083 u64 data;
2084
2085 if (vmx_get_msr(vcpu, ecx, &data)) {
2086 vmx_inject_gp(vcpu, 0);
2087 return 1;
2088 }
2089
2090 /* FIXME: handling of bits 32:63 of rax, rdx */
2091 vcpu->regs[VCPU_REGS_RAX] = data & -1u;
2092 vcpu->regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
2093 skip_emulated_instruction(vcpu);
2094 return 1;
2095}
2096
2097static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2098{
2099 u32 ecx = vcpu->regs[VCPU_REGS_RCX];
2100 u64 data = (vcpu->regs[VCPU_REGS_RAX] & -1u)
2101 | ((u64)(vcpu->regs[VCPU_REGS_RDX] & -1u) << 32);
2102
2103 if (vmx_set_msr(vcpu, ecx, data) != 0) {
2104 vmx_inject_gp(vcpu, 0);
2105 return 1;
2106 }
2107
2108 skip_emulated_instruction(vcpu);
2109 return 1;
2110}
2111
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002112static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
2113 struct kvm_run *kvm_run)
2114{
2115 return 1;
2116}
2117
Avi Kivity6aa8b732006-12-10 02:21:36 -08002118static int handle_interrupt_window(struct kvm_vcpu *vcpu,
2119 struct kvm_run *kvm_run)
2120{
Eddie Dong85f455f2007-07-06 12:20:49 +03002121 u32 cpu_based_vm_exec_control;
2122
2123 /* clear pending irq */
2124 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2125 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2126 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Dor Laorc1150d82007-01-05 16:36:24 -08002127 /*
2128 * If the user space waits to inject interrupts, exit as soon as
2129 * possible
2130 */
2131 if (kvm_run->request_interrupt_window &&
Dor Laor022a9302007-01-05 16:37:00 -08002132 !vcpu->irq_summary) {
Dor Laorc1150d82007-01-05 16:36:24 -08002133 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002134 ++vcpu->stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08002135 return 0;
2136 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002137 return 1;
2138}
2139
2140static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2141{
2142 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03002143 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002144}
2145
Ingo Molnarc21415e2007-02-19 14:37:47 +02002146static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2147{
Dor Laor510043d2007-02-19 18:25:43 +02002148 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002149 kvm_emulate_hypercall(vcpu);
2150 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02002151}
2152
Eddie Donge5edaa02007-11-11 12:28:35 +02002153static int handle_wbinvd(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2154{
2155 skip_emulated_instruction(vcpu);
2156 /* TODO: Add support for VT-d/pass-through device */
2157 return 1;
2158}
2159
Sheng Yangf78e0e22007-10-29 09:40:42 +08002160static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2161{
2162 u64 exit_qualification;
2163 enum emulation_result er;
2164 unsigned long offset;
2165
2166 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
2167 offset = exit_qualification & 0xffful;
2168
2169 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
2170
2171 if (er != EMULATE_DONE) {
2172 printk(KERN_ERR
2173 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
2174 offset);
2175 return -ENOTSUPP;
2176 }
2177 return 1;
2178}
2179
Avi Kivity6aa8b732006-12-10 02:21:36 -08002180/*
2181 * The exit handlers return 1 if the exit was handled fully and guest execution
2182 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
2183 * to be done to userspace and return 0.
2184 */
2185static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
2186 struct kvm_run *kvm_run) = {
2187 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
2188 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08002189 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002190 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002191 [EXIT_REASON_CR_ACCESS] = handle_cr,
2192 [EXIT_REASON_DR_ACCESS] = handle_dr,
2193 [EXIT_REASON_CPUID] = handle_cpuid,
2194 [EXIT_REASON_MSR_READ] = handle_rdmsr,
2195 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
2196 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
2197 [EXIT_REASON_HLT] = handle_halt,
Ingo Molnarc21415e2007-02-19 14:37:47 +02002198 [EXIT_REASON_VMCALL] = handle_vmcall,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002199 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
2200 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02002201 [EXIT_REASON_WBINVD] = handle_wbinvd,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002202};
2203
2204static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04002205 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002206
2207/*
2208 * The guest has exited. See if we can fix it or if we need userspace
2209 * assistance.
2210 */
2211static int kvm_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
2212{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002213 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity29bd8a72007-09-10 17:27:03 +03002214 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1155f762007-11-22 11:30:47 +02002215 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03002216
2217 if (unlikely(vmx->fail)) {
2218 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
2219 kvm_run->fail_entry.hardware_entry_failure_reason
2220 = vmcs_read32(VM_INSTRUCTION_ERROR);
2221 return 0;
2222 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002223
Mike Dayd77c26f2007-10-08 09:02:08 -04002224 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
2225 exit_reason != EXIT_REASON_EXCEPTION_NMI)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002226 printk(KERN_WARNING "%s: unexpected, valid vectoring info and "
2227 "exit reason is 0x%x\n", __FUNCTION__, exit_reason);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002228 if (exit_reason < kvm_vmx_max_exit_handlers
2229 && kvm_vmx_exit_handlers[exit_reason])
2230 return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
2231 else {
2232 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
2233 kvm_run->hw.hardware_exit_reason = exit_reason;
2234 }
2235 return 0;
2236}
2237
Avi Kivityd9e368d2007-06-07 19:18:30 +03002238static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
2239{
Avi Kivityd9e368d2007-06-07 19:18:30 +03002240}
2241
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002242static void update_tpr_threshold(struct kvm_vcpu *vcpu)
2243{
2244 int max_irr, tpr;
2245
2246 if (!vm_need_tpr_shadow(vcpu->kvm))
2247 return;
2248
2249 if (!kvm_lapic_enabled(vcpu) ||
2250 ((max_irr = kvm_lapic_find_highest_irr(vcpu)) == -1)) {
2251 vmcs_write32(TPR_THRESHOLD, 0);
2252 return;
2253 }
2254
2255 tpr = (kvm_lapic_get_cr8(vcpu) & 0x0f) << 4;
2256 vmcs_write32(TPR_THRESHOLD, (max_irr > tpr) ? tpr >> 4 : max_irr >> 4);
2257}
2258
Eddie Dong85f455f2007-07-06 12:20:49 +03002259static void enable_irq_window(struct kvm_vcpu *vcpu)
2260{
2261 u32 cpu_based_vm_exec_control;
2262
2263 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2264 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2265 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2266}
2267
2268static void vmx_intr_assist(struct kvm_vcpu *vcpu)
2269{
Avi Kivity1155f762007-11-22 11:30:47 +02002270 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03002271 u32 idtv_info_field, intr_info_field;
2272 int has_ext_irq, interrupt_window_open;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002273 int vector;
Eddie Dong85f455f2007-07-06 12:20:49 +03002274
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002275 update_tpr_threshold(vcpu);
2276
Eddie Dong85f455f2007-07-06 12:20:49 +03002277 has_ext_irq = kvm_cpu_has_interrupt(vcpu);
2278 intr_info_field = vmcs_read32(VM_ENTRY_INTR_INFO_FIELD);
Avi Kivity1155f762007-11-22 11:30:47 +02002279 idtv_info_field = vmx->idt_vectoring_info;
Eddie Dong85f455f2007-07-06 12:20:49 +03002280 if (intr_info_field & INTR_INFO_VALID_MASK) {
2281 if (idtv_info_field & INTR_INFO_VALID_MASK) {
2282 /* TODO: fault when IDT_Vectoring */
2283 printk(KERN_ERR "Fault when IDT_Vectoring\n");
2284 }
2285 if (has_ext_irq)
2286 enable_irq_window(vcpu);
2287 return;
2288 }
2289 if (unlikely(idtv_info_field & INTR_INFO_VALID_MASK)) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002290 if ((idtv_info_field & VECTORING_INFO_TYPE_MASK)
2291 == INTR_TYPE_EXT_INTR
2292 && vcpu->rmode.active) {
2293 u8 vect = idtv_info_field & VECTORING_INFO_VECTOR_MASK;
2294
2295 vmx_inject_irq(vcpu, vect);
2296 if (unlikely(has_ext_irq))
2297 enable_irq_window(vcpu);
2298 return;
2299 }
2300
Eddie Dong85f455f2007-07-06 12:20:49 +03002301 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, idtv_info_field);
2302 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2303 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
2304
2305 if (unlikely(idtv_info_field & INTR_INFO_DELIEVER_CODE_MASK))
2306 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
2307 vmcs_read32(IDT_VECTORING_ERROR_CODE));
2308 if (unlikely(has_ext_irq))
2309 enable_irq_window(vcpu);
2310 return;
2311 }
2312 if (!has_ext_irq)
2313 return;
2314 interrupt_window_open =
2315 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2316 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002317 if (interrupt_window_open) {
2318 vector = kvm_cpu_get_interrupt(vcpu);
2319 vmx_inject_irq(vcpu, vector);
2320 kvm_timer_intr_post(vcpu, vector);
2321 } else
Eddie Dong85f455f2007-07-06 12:20:49 +03002322 enable_irq_window(vcpu);
2323}
2324
Avi Kivity9c8cba32007-11-22 11:42:59 +02002325/*
2326 * Failure to inject an interrupt should give us the information
2327 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
2328 * when fetching the interrupt redirection bitmap in the real-mode
2329 * tss, this doesn't happen. So we do it ourselves.
2330 */
2331static void fixup_rmode_irq(struct vcpu_vmx *vmx)
2332{
2333 vmx->rmode.irq.pending = 0;
2334 if (vmcs_readl(GUEST_RIP) + 1 != vmx->rmode.irq.rip)
2335 return;
2336 vmcs_writel(GUEST_RIP, vmx->rmode.irq.rip);
2337 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
2338 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
2339 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
2340 return;
2341 }
2342 vmx->idt_vectoring_info =
2343 VECTORING_INFO_VALID_MASK
2344 | INTR_TYPE_EXT_INTR
2345 | vmx->rmode.irq.vector;
2346}
2347
Avi Kivity04d2cc72007-09-10 18:10:54 +03002348static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002349{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002350 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1b6269d2007-10-09 12:12:19 +02002351 u32 intr_info;
Avi Kivitye6adf282007-04-30 16:07:54 +03002352
2353 /*
2354 * Loading guest fpu may have cleared host cr0.ts
2355 */
2356 vmcs_writel(HOST_CR0, read_cr0());
2357
Mike Dayd77c26f2007-10-08 09:02:08 -04002358 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08002359 /* Store host registers */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002360#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02002361 "push %%rdx; push %%rbp;"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002362 "push %%rcx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002363#else
Laurent Vivierff593e52007-10-25 14:18:55 +02002364 "push %%edx; push %%ebp;"
2365 "push %%ecx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002366#endif
Laurent Vivierc2036302007-10-25 14:18:52 +02002367 ASM_VMX_VMWRITE_RSP_RDX "\n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002368 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02002369 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002370 /* Load guest registers. Don't clobber flags. */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002371#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02002372 "mov %c[cr2](%0), %%rax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002373 "mov %%rax, %%cr2 \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002374 "mov %c[rax](%0), %%rax \n\t"
2375 "mov %c[rbx](%0), %%rbx \n\t"
2376 "mov %c[rdx](%0), %%rdx \n\t"
2377 "mov %c[rsi](%0), %%rsi \n\t"
2378 "mov %c[rdi](%0), %%rdi \n\t"
2379 "mov %c[rbp](%0), %%rbp \n\t"
2380 "mov %c[r8](%0), %%r8 \n\t"
2381 "mov %c[r9](%0), %%r9 \n\t"
2382 "mov %c[r10](%0), %%r10 \n\t"
2383 "mov %c[r11](%0), %%r11 \n\t"
2384 "mov %c[r12](%0), %%r12 \n\t"
2385 "mov %c[r13](%0), %%r13 \n\t"
2386 "mov %c[r14](%0), %%r14 \n\t"
2387 "mov %c[r15](%0), %%r15 \n\t"
2388 "mov %c[rcx](%0), %%rcx \n\t" /* kills %0 (rcx) */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002389#else
Avi Kivitye08aa782007-11-15 18:06:18 +02002390 "mov %c[cr2](%0), %%eax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002391 "mov %%eax, %%cr2 \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002392 "mov %c[rax](%0), %%eax \n\t"
2393 "mov %c[rbx](%0), %%ebx \n\t"
2394 "mov %c[rdx](%0), %%edx \n\t"
2395 "mov %c[rsi](%0), %%esi \n\t"
2396 "mov %c[rdi](%0), %%edi \n\t"
2397 "mov %c[rbp](%0), %%ebp \n\t"
2398 "mov %c[rcx](%0), %%ecx \n\t" /* kills %0 (ecx) */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002399#endif
2400 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03002401 "jne .Llaunched \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002402 ASM_VMX_VMLAUNCH "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03002403 "jmp .Lkvm_vmx_return \n\t"
2404 ".Llaunched: " ASM_VMX_VMRESUME "\n\t"
2405 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08002406 /* Save guest registers, load host registers, keep flags */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002407#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02002408 "xchg %0, (%%rsp) \n\t"
2409 "mov %%rax, %c[rax](%0) \n\t"
2410 "mov %%rbx, %c[rbx](%0) \n\t"
2411 "pushq (%%rsp); popq %c[rcx](%0) \n\t"
2412 "mov %%rdx, %c[rdx](%0) \n\t"
2413 "mov %%rsi, %c[rsi](%0) \n\t"
2414 "mov %%rdi, %c[rdi](%0) \n\t"
2415 "mov %%rbp, %c[rbp](%0) \n\t"
2416 "mov %%r8, %c[r8](%0) \n\t"
2417 "mov %%r9, %c[r9](%0) \n\t"
2418 "mov %%r10, %c[r10](%0) \n\t"
2419 "mov %%r11, %c[r11](%0) \n\t"
2420 "mov %%r12, %c[r12](%0) \n\t"
2421 "mov %%r13, %c[r13](%0) \n\t"
2422 "mov %%r14, %c[r14](%0) \n\t"
2423 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002424 "mov %%cr2, %%rax \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002425 "mov %%rax, %c[cr2](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002426
Avi Kivitye08aa782007-11-15 18:06:18 +02002427 "pop %%rbp; pop %%rbp; pop %%rdx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002428#else
Avi Kivitye08aa782007-11-15 18:06:18 +02002429 "xchg %0, (%%esp) \n\t"
2430 "mov %%eax, %c[rax](%0) \n\t"
2431 "mov %%ebx, %c[rbx](%0) \n\t"
2432 "pushl (%%esp); popl %c[rcx](%0) \n\t"
2433 "mov %%edx, %c[rdx](%0) \n\t"
2434 "mov %%esi, %c[rsi](%0) \n\t"
2435 "mov %%edi, %c[rdi](%0) \n\t"
2436 "mov %%ebp, %c[rbp](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002437 "mov %%cr2, %%eax \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002438 "mov %%eax, %c[cr2](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002439
Avi Kivitye08aa782007-11-15 18:06:18 +02002440 "pop %%ebp; pop %%ebp; pop %%edx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002441#endif
Avi Kivitye08aa782007-11-15 18:06:18 +02002442 "setbe %c[fail](%0) \n\t"
2443 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
2444 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
2445 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
2446 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RAX])),
2447 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RBX])),
2448 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RCX])),
2449 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RDX])),
2450 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RSI])),
2451 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RDI])),
2452 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002453#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02002454 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R8])),
2455 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R9])),
2456 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R10])),
2457 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R11])),
2458 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R12])),
2459 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R13])),
2460 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R14])),
2461 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08002462#endif
Avi Kivitye08aa782007-11-15 18:06:18 +02002463 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02002464 : "cc", "memory"
2465#ifdef CONFIG_X86_64
2466 , "rbx", "rdi", "rsi"
2467 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Laurent Vivierff593e52007-10-25 14:18:55 +02002468#else
2469 , "ebx", "edi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02002470#endif
2471 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08002472
Avi Kivity1155f762007-11-22 11:30:47 +02002473 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02002474 if (vmx->rmode.irq.pending)
2475 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02002476
Mike Dayd77c26f2007-10-08 09:02:08 -04002477 vcpu->interrupt_window_open =
2478 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002479
Mike Dayd77c26f2007-10-08 09:02:08 -04002480 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03002481 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02002482
2483 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2484
2485 /* We need to handle NMIs before interrupts are enabled */
2486 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
2487 asm("int $2");
Avi Kivity6aa8b732006-12-10 02:21:36 -08002488}
2489
Avi Kivity6aa8b732006-12-10 02:21:36 -08002490static void vmx_inject_page_fault(struct kvm_vcpu *vcpu,
2491 unsigned long addr,
2492 u32 err_code)
2493{
Avi Kivity1155f762007-11-22 11:30:47 +02002494 struct vcpu_vmx *vmx = to_vmx(vcpu);
2495 u32 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002496
Avi Kivity1165f5f2007-04-19 17:27:43 +03002497 ++vcpu->stat.pf_guest;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002498
2499 if (is_page_fault(vect_info)) {
2500 printk(KERN_DEBUG "inject_page_fault: "
2501 "double fault 0x%lx @ 0x%lx\n",
2502 addr, vmcs_readl(GUEST_RIP));
2503 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, 0);
2504 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2505 DF_VECTOR |
2506 INTR_TYPE_EXCEPTION |
2507 INTR_INFO_DELIEVER_CODE_MASK |
2508 INTR_INFO_VALID_MASK);
2509 return;
2510 }
2511 vcpu->cr2 = addr;
2512 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, err_code);
2513 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2514 PF_VECTOR |
2515 INTR_TYPE_EXCEPTION |
2516 INTR_INFO_DELIEVER_CODE_MASK |
2517 INTR_INFO_VALID_MASK);
2518
2519}
2520
2521static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
2522{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002523 struct vcpu_vmx *vmx = to_vmx(vcpu);
2524
2525 if (vmx->vmcs) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002526 on_each_cpu(__vcpu_clear, vmx, 0, 1);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002527 free_vmcs(vmx->vmcs);
2528 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002529 }
2530}
2531
2532static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
2533{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002534 struct vcpu_vmx *vmx = to_vmx(vcpu);
2535
Avi Kivity6aa8b732006-12-10 02:21:36 -08002536 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002537 kfree(vmx->host_msrs);
2538 kfree(vmx->guest_msrs);
2539 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10002540 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002541}
2542
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002543static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002544{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002545 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10002546 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03002547 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002548
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002549 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002550 return ERR_PTR(-ENOMEM);
2551
2552 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
2553 if (err)
2554 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002555
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002556 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002557 if (!vmx->guest_msrs) {
2558 err = -ENOMEM;
2559 goto uninit_vcpu;
2560 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08002561
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002562 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
2563 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002564 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002565
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002566 vmx->vmcs = alloc_vmcs();
2567 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002568 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002569
2570 vmcs_clear(vmx->vmcs);
2571
Avi Kivity15ad7142007-07-11 18:17:21 +03002572 cpu = get_cpu();
2573 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002574 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002575 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002576 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002577 if (err)
2578 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002579
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002580 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002581
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002582free_vmcs:
2583 free_vmcs(vmx->vmcs);
2584free_msrs:
2585 kfree(vmx->host_msrs);
2586free_guest_msrs:
2587 kfree(vmx->guest_msrs);
2588uninit_vcpu:
2589 kvm_vcpu_uninit(&vmx->vcpu);
2590free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10002591 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002592 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002593}
2594
Yang, Sheng002c7f72007-07-31 14:23:01 +03002595static void __init vmx_check_processor_compat(void *rtn)
2596{
2597 struct vmcs_config vmcs_conf;
2598
2599 *(int *)rtn = 0;
2600 if (setup_vmcs_config(&vmcs_conf) < 0)
2601 *(int *)rtn = -EIO;
2602 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
2603 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
2604 smp_processor_id());
2605 *(int *)rtn = -EIO;
2606 }
2607}
2608
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002609static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002610 .cpu_has_kvm_support = cpu_has_kvm_support,
2611 .disabled_by_bios = vmx_disabled_by_bios,
2612 .hardware_setup = hardware_setup,
2613 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03002614 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002615 .hardware_enable = hardware_enable,
2616 .hardware_disable = hardware_disable,
2617
2618 .vcpu_create = vmx_create_vcpu,
2619 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002620 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002621
Avi Kivity04d2cc72007-09-10 18:10:54 +03002622 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002623 .vcpu_load = vmx_vcpu_load,
2624 .vcpu_put = vmx_vcpu_put,
Avi Kivity774c47f2007-02-12 00:54:47 -08002625 .vcpu_decache = vmx_vcpu_decache,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002626
2627 .set_guest_debug = set_guest_debug,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002628 .guest_debug_pre = kvm_guest_debug_pre,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002629 .get_msr = vmx_get_msr,
2630 .set_msr = vmx_set_msr,
2631 .get_segment_base = vmx_get_segment_base,
2632 .get_segment = vmx_get_segment,
2633 .set_segment = vmx_set_segment,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002634 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03002635 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002636 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002637 .set_cr3 = vmx_set_cr3,
2638 .set_cr4 = vmx_set_cr4,
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002639#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002640 .set_efer = vmx_set_efer,
2641#endif
2642 .get_idt = vmx_get_idt,
2643 .set_idt = vmx_set_idt,
2644 .get_gdt = vmx_get_gdt,
2645 .set_gdt = vmx_set_gdt,
2646 .cache_regs = vcpu_load_rsp_rip,
2647 .decache_regs = vcpu_put_rsp_rip,
2648 .get_rflags = vmx_get_rflags,
2649 .set_rflags = vmx_set_rflags,
2650
2651 .tlb_flush = vmx_flush_tlb,
2652 .inject_page_fault = vmx_inject_page_fault,
2653
2654 .inject_gp = vmx_inject_gp,
2655
2656 .run = vmx_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002657 .handle_exit = kvm_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002658 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02002659 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03002660 .get_irq = vmx_get_irq,
2661 .set_irq = vmx_inject_irq,
Avi Kivity298101d2007-11-25 13:41:11 +02002662 .queue_exception = vmx_queue_exception,
2663 .exception_injected = vmx_exception_injected,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002664 .inject_pending_irq = vmx_intr_assist,
2665 .inject_pending_vectors = do_interrupt_requests,
Izik Eiduscbc94022007-10-25 00:29:55 +02002666
2667 .set_tss_addr = vmx_set_tss_addr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002668};
2669
2670static int __init vmx_init(void)
2671{
He, Qingfdef3ad2007-04-30 09:45:24 +03002672 void *iova;
2673 int r;
2674
2675 vmx_io_bitmap_a = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2676 if (!vmx_io_bitmap_a)
2677 return -ENOMEM;
2678
2679 vmx_io_bitmap_b = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2680 if (!vmx_io_bitmap_b) {
2681 r = -ENOMEM;
2682 goto out;
2683 }
2684
2685 /*
2686 * Allow direct access to the PC debug port (it is often used for I/O
2687 * delays, but the vmexits simply slow things down).
2688 */
2689 iova = kmap(vmx_io_bitmap_a);
2690 memset(iova, 0xff, PAGE_SIZE);
2691 clear_bit(0x80, iova);
Avi Kivitycd0536d2007-05-08 11:34:07 +03002692 kunmap(vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03002693
2694 iova = kmap(vmx_io_bitmap_b);
2695 memset(iova, 0xff, PAGE_SIZE);
Avi Kivitycd0536d2007-05-08 11:34:07 +03002696 kunmap(vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03002697
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002698 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03002699 if (r)
2700 goto out1;
2701
Avi Kivityc7addb92007-09-16 18:58:32 +02002702 if (bypass_guest_pf)
2703 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
2704
He, Qingfdef3ad2007-04-30 09:45:24 +03002705 return 0;
2706
2707out1:
2708 __free_page(vmx_io_bitmap_b);
2709out:
2710 __free_page(vmx_io_bitmap_a);
2711 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002712}
2713
2714static void __exit vmx_exit(void)
2715{
He, Qingfdef3ad2007-04-30 09:45:24 +03002716 __free_page(vmx_io_bitmap_b);
2717 __free_page(vmx_io_bitmap_a);
2718
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002719 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002720}
2721
2722module_init(vmx_init)
2723module_exit(vmx_exit)