blob: b4c0bdce7b34acf0fa33c74b0789dadd049f58b1 [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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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
196static inline int vm_need_secondary_exec_ctrls(struct kvm *kvm)
197{
198 return ((cpu_has_secondary_exec_ctrls()) && (irqchip_in_kernel(kvm)));
199}
200
201static inline int cpu_has_vmx_virtualize_apic_accesses(void)
202{
203 return (vmcs_config.cpu_based_2nd_exec_ctrl &
204 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
205}
206
207static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
208{
209 return ((cpu_has_vmx_virtualize_apic_accesses()) &&
210 (irqchip_in_kernel(kvm)));
211}
212
Rusty Russell8b9cf982007-07-30 16:31:43 +1000213static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800214{
215 int i;
216
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400217 for (i = 0; i < vmx->nmsrs; ++i)
218 if (vmx->guest_msrs[i].index == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300219 return i;
220 return -1;
221}
222
Rusty Russell8b9cf982007-07-30 16:31:43 +1000223static struct kvm_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300224{
225 int i;
226
Rusty Russell8b9cf982007-07-30 16:31:43 +1000227 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300228 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400229 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000230 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800231}
232
Avi Kivity6aa8b732006-12-10 02:21:36 -0800233static void vmcs_clear(struct vmcs *vmcs)
234{
235 u64 phys_addr = __pa(vmcs);
236 u8 error;
237
238 asm volatile (ASM_VMX_VMCLEAR_RAX "; setna %0"
239 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
240 : "cc", "memory");
241 if (error)
242 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
243 vmcs, phys_addr);
244}
245
246static void __vcpu_clear(void *arg)
247{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000248 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800249 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800250
Rusty Russell8b9cf982007-07-30 16:31:43 +1000251 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400252 vmcs_clear(vmx->vmcs);
253 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800254 per_cpu(current_vmcs, cpu) = NULL;
Rusty Russell8b9cf982007-07-30 16:31:43 +1000255 rdtscll(vmx->vcpu.host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800256}
257
Rusty Russell8b9cf982007-07-30 16:31:43 +1000258static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800259{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200260 if (vmx->vcpu.cpu == -1)
261 return;
Avi Kivityf566e092007-09-30 11:02:53 +0200262 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 0, 1);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000263 vmx->launched = 0;
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800264}
265
Avi Kivity6aa8b732006-12-10 02:21:36 -0800266static unsigned long vmcs_readl(unsigned long field)
267{
268 unsigned long value;
269
270 asm volatile (ASM_VMX_VMREAD_RDX_RAX
271 : "=a"(value) : "d"(field) : "cc");
272 return value;
273}
274
275static u16 vmcs_read16(unsigned long field)
276{
277 return vmcs_readl(field);
278}
279
280static u32 vmcs_read32(unsigned long field)
281{
282 return vmcs_readl(field);
283}
284
285static u64 vmcs_read64(unsigned long field)
286{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800287#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800288 return vmcs_readl(field);
289#else
290 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
291#endif
292}
293
Avi Kivitye52de1b2007-01-05 16:36:56 -0800294static noinline void vmwrite_error(unsigned long field, unsigned long value)
295{
296 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
297 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
298 dump_stack();
299}
300
Avi Kivity6aa8b732006-12-10 02:21:36 -0800301static void vmcs_writel(unsigned long field, unsigned long value)
302{
303 u8 error;
304
305 asm volatile (ASM_VMX_VMWRITE_RAX_RDX "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400306 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800307 if (unlikely(error))
308 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800309}
310
311static void vmcs_write16(unsigned long field, u16 value)
312{
313 vmcs_writel(field, value);
314}
315
316static void vmcs_write32(unsigned long field, u32 value)
317{
318 vmcs_writel(field, value);
319}
320
321static void vmcs_write64(unsigned long field, u64 value)
322{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800323#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800324 vmcs_writel(field, value);
325#else
326 vmcs_writel(field, value);
327 asm volatile ("");
328 vmcs_writel(field+1, value >> 32);
329#endif
330}
331
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300332static void vmcs_clear_bits(unsigned long field, u32 mask)
333{
334 vmcs_writel(field, vmcs_readl(field) & ~mask);
335}
336
337static void vmcs_set_bits(unsigned long field, u32 mask)
338{
339 vmcs_writel(field, vmcs_readl(field) | mask);
340}
341
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300342static void update_exception_bitmap(struct kvm_vcpu *vcpu)
343{
344 u32 eb;
345
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500346 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300347 if (!vcpu->fpu_active)
348 eb |= 1u << NM_VECTOR;
349 if (vcpu->guest_debug.enabled)
350 eb |= 1u << 1;
351 if (vcpu->rmode.active)
352 eb = ~0;
353 vmcs_write32(EXCEPTION_BITMAP, eb);
354}
355
Avi Kivity33ed6322007-05-02 16:54:03 +0300356static void reload_tss(void)
357{
358#ifndef CONFIG_X86_64
359
360 /*
361 * VT restores TR but not its size. Useless.
362 */
363 struct descriptor_table gdt;
364 struct segment_descriptor *descs;
365
366 get_gdt(&gdt);
367 descs = (void *)gdt.base;
368 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
369 load_TR_desc();
370#endif
371}
372
Rusty Russell8b9cf982007-07-30 16:31:43 +1000373static void load_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300374{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400375 int efer_offset = vmx->msr_offset_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300376 u64 host_efer = vmx->host_msrs[efer_offset].data;
377 u64 guest_efer = vmx->guest_msrs[efer_offset].data;
378 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300379
Avi Kivity51c6cf62007-08-29 03:48:05 +0300380 if (efer_offset < 0)
381 return;
382 /*
383 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
384 * outside long mode
385 */
386 ignore_bits = EFER_NX | EFER_SCE;
387#ifdef CONFIG_X86_64
388 ignore_bits |= EFER_LMA | EFER_LME;
389 /* SCE is meaningful only in long mode on Intel */
390 if (guest_efer & EFER_LMA)
391 ignore_bits &= ~(u64)EFER_SCE;
392#endif
393 if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
394 return;
395
396 vmx->host_state.guest_efer_loaded = 1;
397 guest_efer &= ~ignore_bits;
398 guest_efer |= host_efer & ignore_bits;
399 wrmsrl(MSR_EFER, guest_efer);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000400 vmx->vcpu.stat.efer_reload++;
Eddie Dong2cc51562007-05-21 07:28:09 +0300401}
402
Avi Kivity51c6cf62007-08-29 03:48:05 +0300403static void reload_host_efer(struct vcpu_vmx *vmx)
404{
405 if (vmx->host_state.guest_efer_loaded) {
406 vmx->host_state.guest_efer_loaded = 0;
407 load_msrs(vmx->host_msrs + vmx->msr_offset_efer, 1);
408 }
409}
410
Avi Kivity04d2cc72007-09-10 18:10:54 +0300411static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300412{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300413 struct vcpu_vmx *vmx = to_vmx(vcpu);
414
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400415 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300416 return;
417
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400418 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300419 /*
420 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
421 * allow segment selectors with cpl > 0 or ti == 1.
422 */
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400423 vmx->host_state.ldt_sel = read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200424 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400425 vmx->host_state.fs_sel = read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200426 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400427 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200428 vmx->host_state.fs_reload_needed = 0;
429 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300430 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200431 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300432 }
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400433 vmx->host_state.gs_sel = read_gs();
434 if (!(vmx->host_state.gs_sel & 7))
435 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300436 else {
437 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200438 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300439 }
440
441#ifdef CONFIG_X86_64
442 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
443 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
444#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400445 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
446 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300447#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300448
449#ifdef CONFIG_X86_64
Mike Dayd77c26f2007-10-08 09:02:08 -0400450 if (is_long_mode(&vmx->vcpu))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400451 save_msrs(vmx->host_msrs +
452 vmx->msr_offset_kernel_gs_base, 1);
Mike Dayd77c26f2007-10-08 09:02:08 -0400453
Avi Kivity707c0872007-05-02 17:33:43 +0300454#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400455 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300456 load_transition_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300457}
458
Rusty Russell8b9cf982007-07-30 16:31:43 +1000459static void vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300460{
Avi Kivity15ad7142007-07-11 18:17:21 +0300461 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300462
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400463 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300464 return;
465
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200466 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400467 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200468 if (vmx->host_state.fs_reload_needed)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400469 load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200470 if (vmx->host_state.gs_ldt_reload_needed) {
471 load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300472 /*
473 * If we have to reload gs, we must take care to
474 * preserve our gs base.
475 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300476 local_irq_save(flags);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400477 load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300478#ifdef CONFIG_X86_64
479 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
480#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300481 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300482 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200483 reload_tss();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400484 save_msrs(vmx->guest_msrs, vmx->save_nmsrs);
485 load_msrs(vmx->host_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300486 reload_host_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300487}
488
Avi Kivity6aa8b732006-12-10 02:21:36 -0800489/*
490 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
491 * vcpu mutex is already taken.
492 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300493static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800494{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400495 struct vcpu_vmx *vmx = to_vmx(vcpu);
496 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity77002702007-06-13 19:55:28 +0300497 u64 tsc_this, delta;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800498
Eddie Donga3d7f852007-09-03 16:15:12 +0300499 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000500 vcpu_clear(vmx);
Eddie Donga3d7f852007-09-03 16:15:12 +0300501 kvm_migrate_apic_timer(vcpu);
502 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800503
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400504 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800505 u8 error;
506
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400507 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800508 asm volatile (ASM_VMX_VMPTRLD_RAX "; setna %0"
509 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
510 : "cc");
511 if (error)
512 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400513 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800514 }
515
516 if (vcpu->cpu != cpu) {
517 struct descriptor_table dt;
518 unsigned long sysenter_esp;
519
520 vcpu->cpu = cpu;
521 /*
522 * Linux uses per-cpu TSS and GDT, so set these when switching
523 * processors.
524 */
525 vmcs_writel(HOST_TR_BASE, read_tr_base()); /* 22.2.4 */
526 get_gdt(&dt);
527 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
528
529 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
530 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300531
532 /*
533 * Make sure the time stamp counter is monotonous.
534 */
535 rdtscll(tsc_this);
536 delta = vcpu->host_tsc - tsc_this;
537 vmcs_write64(TSC_OFFSET, vmcs_read64(TSC_OFFSET) + delta);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800538 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800539}
540
541static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
542{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000543 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800544}
545
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300546static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
547{
548 if (vcpu->fpu_active)
549 return;
550 vcpu->fpu_active = 1;
Rusty Russell707d92fa2007-07-17 23:19:08 +1000551 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
552 if (vcpu->cr0 & X86_CR0_TS)
553 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300554 update_exception_bitmap(vcpu);
555}
556
557static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
558{
559 if (!vcpu->fpu_active)
560 return;
561 vcpu->fpu_active = 0;
Rusty Russell707d92fa2007-07-17 23:19:08 +1000562 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300563 update_exception_bitmap(vcpu);
564}
565
Avi Kivity774c47f2007-02-12 00:54:47 -0800566static void vmx_vcpu_decache(struct kvm_vcpu *vcpu)
567{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000568 vcpu_clear(to_vmx(vcpu));
Avi Kivity774c47f2007-02-12 00:54:47 -0800569}
570
Avi Kivity6aa8b732006-12-10 02:21:36 -0800571static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
572{
573 return vmcs_readl(GUEST_RFLAGS);
574}
575
576static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
577{
Avi Kivity78f78268682007-10-16 19:06:15 +0200578 if (vcpu->rmode.active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100579 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800580 vmcs_writel(GUEST_RFLAGS, rflags);
581}
582
583static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
584{
585 unsigned long rip;
586 u32 interruptibility;
587
588 rip = vmcs_readl(GUEST_RIP);
589 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
590 vmcs_writel(GUEST_RIP, rip);
591
592 /*
593 * We emulated an instruction, so temporary interrupt blocking
594 * should be removed, if set.
595 */
596 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
597 if (interruptibility & 3)
598 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
599 interruptibility & ~3);
Dor Laorc1150d82007-01-05 16:36:24 -0800600 vcpu->interrupt_window_open = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800601}
602
603static void vmx_inject_gp(struct kvm_vcpu *vcpu, unsigned error_code)
604{
605 printk(KERN_DEBUG "inject_general_protection: rip 0x%lx\n",
606 vmcs_readl(GUEST_RIP));
607 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
608 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
609 GP_VECTOR |
610 INTR_TYPE_EXCEPTION |
611 INTR_INFO_DELIEVER_CODE_MASK |
612 INTR_INFO_VALID_MASK);
613}
614
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500615static void vmx_inject_ud(struct kvm_vcpu *vcpu)
616{
617 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
618 UD_VECTOR |
619 INTR_TYPE_EXCEPTION |
620 INTR_INFO_VALID_MASK);
621}
622
Avi Kivity6aa8b732006-12-10 02:21:36 -0800623/*
Eddie Donga75beee2007-05-17 18:55:15 +0300624 * Swap MSR entry in host/guest MSR entry array.
625 */
Gabriel C54e11fa2007-08-01 16:23:10 +0200626#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000627static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300628{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400629 struct kvm_msr_entry tmp;
630
631 tmp = vmx->guest_msrs[to];
632 vmx->guest_msrs[to] = vmx->guest_msrs[from];
633 vmx->guest_msrs[from] = tmp;
634 tmp = vmx->host_msrs[to];
635 vmx->host_msrs[to] = vmx->host_msrs[from];
636 vmx->host_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300637}
Gabriel C54e11fa2007-08-01 16:23:10 +0200638#endif
Eddie Donga75beee2007-05-17 18:55:15 +0300639
640/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300641 * Set up the vmcs to automatically save and restore system
642 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
643 * mode, as fiddling with msrs is very expensive.
644 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000645static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300646{
Eddie Dong2cc51562007-05-21 07:28:09 +0300647 int save_nmsrs;
Avi Kivitye38aea32007-04-19 13:22:48 +0300648
Eddie Donga75beee2007-05-17 18:55:15 +0300649 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300650#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000651 if (is_long_mode(&vmx->vcpu)) {
Eddie Dong2cc51562007-05-21 07:28:09 +0300652 int index;
653
Rusty Russell8b9cf982007-07-30 16:31:43 +1000654 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300655 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000656 move_msr_up(vmx, index, save_nmsrs++);
657 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300658 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000659 move_msr_up(vmx, index, save_nmsrs++);
660 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300661 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000662 move_msr_up(vmx, index, save_nmsrs++);
663 index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300664 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000665 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300666 /*
667 * MSR_K6_STAR is only needed on long mode guests, and only
668 * if efer.sce is enabled.
669 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000670 index = __find_msr_index(vmx, MSR_K6_STAR);
671 if ((index >= 0) && (vmx->vcpu.shadow_efer & EFER_SCE))
672 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300673 }
Eddie Donga75beee2007-05-17 18:55:15 +0300674#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400675 vmx->save_nmsrs = save_nmsrs;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300676
Eddie Donga75beee2007-05-17 18:55:15 +0300677#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400678 vmx->msr_offset_kernel_gs_base =
Rusty Russell8b9cf982007-07-30 16:31:43 +1000679 __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300680#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +1000681 vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
Avi Kivitye38aea32007-04-19 13:22:48 +0300682}
683
684/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800685 * reads and returns guest's timestamp counter "register"
686 * guest_tsc = host_tsc + tsc_offset -- 21.3
687 */
688static u64 guest_read_tsc(void)
689{
690 u64 host_tsc, tsc_offset;
691
692 rdtscll(host_tsc);
693 tsc_offset = vmcs_read64(TSC_OFFSET);
694 return host_tsc + tsc_offset;
695}
696
697/*
698 * writes 'guest_tsc' into guest's timestamp counter "register"
699 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
700 */
701static void guest_write_tsc(u64 guest_tsc)
702{
703 u64 host_tsc;
704
705 rdtscll(host_tsc);
706 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
707}
708
Avi Kivity6aa8b732006-12-10 02:21:36 -0800709/*
710 * Reads an msr value (of 'msr_index') into 'pdata'.
711 * Returns 0 on success, non-0 otherwise.
712 * Assumes vcpu_load() was already called.
713 */
714static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
715{
716 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400717 struct kvm_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800718
719 if (!pdata) {
720 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
721 return -EINVAL;
722 }
723
724 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800725#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800726 case MSR_FS_BASE:
727 data = vmcs_readl(GUEST_FS_BASE);
728 break;
729 case MSR_GS_BASE:
730 data = vmcs_readl(GUEST_GS_BASE);
731 break;
732 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800733 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800734#endif
735 case MSR_IA32_TIME_STAMP_COUNTER:
736 data = guest_read_tsc();
737 break;
738 case MSR_IA32_SYSENTER_CS:
739 data = vmcs_read32(GUEST_SYSENTER_CS);
740 break;
741 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200742 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800743 break;
744 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200745 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800746 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800747 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +1000748 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800749 if (msr) {
750 data = msr->data;
751 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800752 }
Avi Kivity3bab1f52006-12-29 16:49:48 -0800753 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800754 }
755
756 *pdata = data;
757 return 0;
758}
759
760/*
761 * Writes msr value into into the appropriate "register".
762 * Returns 0 on success, non-0 otherwise.
763 * Assumes vcpu_load() was already called.
764 */
765static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
766{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400767 struct vcpu_vmx *vmx = to_vmx(vcpu);
768 struct kvm_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +0300769 int ret = 0;
770
Avi Kivity6aa8b732006-12-10 02:21:36 -0800771 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800772#ifdef CONFIG_X86_64
Avi Kivity3bab1f52006-12-29 16:49:48 -0800773 case MSR_EFER:
Eddie Dong2cc51562007-05-21 07:28:09 +0300774 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300775 if (vmx->host_state.loaded) {
776 reload_host_efer(vmx);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000777 load_transition_efer(vmx);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300778 }
Eddie Dong2cc51562007-05-21 07:28:09 +0300779 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800780 case MSR_FS_BASE:
781 vmcs_writel(GUEST_FS_BASE, data);
782 break;
783 case MSR_GS_BASE:
784 vmcs_writel(GUEST_GS_BASE, data);
785 break;
786#endif
787 case MSR_IA32_SYSENTER_CS:
788 vmcs_write32(GUEST_SYSENTER_CS, data);
789 break;
790 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200791 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800792 break;
793 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200794 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800795 break;
Avi Kivityd27d4ac2007-02-19 14:37:46 +0200796 case MSR_IA32_TIME_STAMP_COUNTER:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800797 guest_write_tsc(data);
798 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800799 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +1000800 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800801 if (msr) {
802 msr->data = data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400803 if (vmx->host_state.loaded)
804 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800805 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800806 }
Eddie Dong2cc51562007-05-21 07:28:09 +0300807 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800808 }
809
Eddie Dong2cc51562007-05-21 07:28:09 +0300810 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800811}
812
813/*
814 * Sync the rsp and rip registers into the vcpu structure. This allows
815 * registers to be accessed by indexing vcpu->regs.
816 */
817static void vcpu_load_rsp_rip(struct kvm_vcpu *vcpu)
818{
819 vcpu->regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
820 vcpu->rip = vmcs_readl(GUEST_RIP);
821}
822
823/*
824 * Syncs rsp and rip back into the vmcs. Should be called after possible
825 * modification.
826 */
827static void vcpu_put_rsp_rip(struct kvm_vcpu *vcpu)
828{
829 vmcs_writel(GUEST_RSP, vcpu->regs[VCPU_REGS_RSP]);
830 vmcs_writel(GUEST_RIP, vcpu->rip);
831}
832
833static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
834{
835 unsigned long dr7 = 0x400;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800836 int old_singlestep;
837
Avi Kivity6aa8b732006-12-10 02:21:36 -0800838 old_singlestep = vcpu->guest_debug.singlestep;
839
840 vcpu->guest_debug.enabled = dbg->enabled;
841 if (vcpu->guest_debug.enabled) {
842 int i;
843
844 dr7 |= 0x200; /* exact */
845 for (i = 0; i < 4; ++i) {
846 if (!dbg->breakpoints[i].enabled)
847 continue;
848 vcpu->guest_debug.bp[i] = dbg->breakpoints[i].address;
849 dr7 |= 2 << (i*2); /* global enable */
850 dr7 |= 0 << (i*4+16); /* execution breakpoint */
851 }
852
Avi Kivity6aa8b732006-12-10 02:21:36 -0800853 vcpu->guest_debug.singlestep = dbg->singlestep;
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300854 } else
Avi Kivity6aa8b732006-12-10 02:21:36 -0800855 vcpu->guest_debug.singlestep = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800856
857 if (old_singlestep && !vcpu->guest_debug.singlestep) {
858 unsigned long flags;
859
860 flags = vmcs_readl(GUEST_RFLAGS);
861 flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
862 vmcs_writel(GUEST_RFLAGS, flags);
863 }
864
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300865 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800866 vmcs_writel(GUEST_DR7, dr7);
867
868 return 0;
869}
870
Eddie Dong2a8067f2007-08-06 16:29:07 +0300871static int vmx_get_irq(struct kvm_vcpu *vcpu)
872{
Avi Kivity1155f762007-11-22 11:30:47 +0200873 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eddie Dong2a8067f2007-08-06 16:29:07 +0300874 u32 idtv_info_field;
875
Avi Kivity1155f762007-11-22 11:30:47 +0200876 idtv_info_field = vmx->idt_vectoring_info;
Eddie Dong2a8067f2007-08-06 16:29:07 +0300877 if (idtv_info_field & INTR_INFO_VALID_MASK) {
878 if (is_external_interrupt(idtv_info_field))
879 return idtv_info_field & VECTORING_INFO_VECTOR_MASK;
880 else
Mike Dayd77c26f2007-10-08 09:02:08 -0400881 printk(KERN_DEBUG "pending exception: not handled yet\n");
Eddie Dong2a8067f2007-08-06 16:29:07 +0300882 }
883 return -1;
884}
885
Avi Kivity6aa8b732006-12-10 02:21:36 -0800886static __init int cpu_has_kvm_support(void)
887{
888 unsigned long ecx = cpuid_ecx(1);
889 return test_bit(5, &ecx); /* CPUID.1:ECX.VMX[bit 5] -> VT */
890}
891
892static __init int vmx_disabled_by_bios(void)
893{
894 u64 msr;
895
896 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Yang, Sheng62b3ffb2007-07-25 12:17:06 +0300897 return (msr & (MSR_IA32_FEATURE_CONTROL_LOCKED |
898 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
899 == MSR_IA32_FEATURE_CONTROL_LOCKED;
900 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800901}
902
Avi Kivity774c47f2007-02-12 00:54:47 -0800903static void hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800904{
905 int cpu = raw_smp_processor_id();
906 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
907 u64 old;
908
909 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Yang, Sheng62b3ffb2007-07-25 12:17:06 +0300910 if ((old & (MSR_IA32_FEATURE_CONTROL_LOCKED |
911 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
912 != (MSR_IA32_FEATURE_CONTROL_LOCKED |
913 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +0300915 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
916 MSR_IA32_FEATURE_CONTROL_LOCKED |
917 MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +1000918 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800919 asm volatile (ASM_VMX_VMXON_RAX : : "a"(&phys_addr), "m"(phys_addr)
920 : "memory", "cc");
921}
922
923static void hardware_disable(void *garbage)
924{
925 asm volatile (ASM_VMX_VMXOFF : : : "cc");
926}
927
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300928static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -0400929 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800930{
931 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300932 u32 ctl = ctl_min | ctl_opt;
933
934 rdmsr(msr, vmx_msr_low, vmx_msr_high);
935
936 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
937 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
938
939 /* Ensure minimum (required) set of control bits are supported. */
940 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300941 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300942
943 *result = ctl;
944 return 0;
945}
946
Yang, Sheng002c7f72007-07-31 14:23:01 +0300947static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300948{
949 u32 vmx_msr_low, vmx_msr_high;
950 u32 min, opt;
951 u32 _pin_based_exec_control = 0;
952 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800953 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300954 u32 _vmexit_control = 0;
955 u32 _vmentry_control = 0;
956
957 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
958 opt = 0;
959 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
960 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300961 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300962
963 min = CPU_BASED_HLT_EXITING |
964#ifdef CONFIG_X86_64
965 CPU_BASED_CR8_LOAD_EXITING |
966 CPU_BASED_CR8_STORE_EXITING |
967#endif
968 CPU_BASED_USE_IO_BITMAPS |
969 CPU_BASED_MOV_DR_EXITING |
970 CPU_BASED_USE_TSC_OFFSETING;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800971 opt = CPU_BASED_TPR_SHADOW |
972 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300973 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
974 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +0300975 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800976#ifdef CONFIG_X86_64
977 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
978 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
979 ~CPU_BASED_CR8_STORE_EXITING;
980#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +0800981 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
982 min = 0;
Eddie Donge5edaa02007-11-11 12:28:35 +0200983 opt = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
984 SECONDARY_EXEC_WBINVD_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800985 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS2,
986 &_cpu_based_2nd_exec_control) < 0)
987 return -EIO;
988 }
989#ifndef CONFIG_X86_64
990 if (!(_cpu_based_2nd_exec_control &
991 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
992 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
993#endif
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300994
995 min = 0;
996#ifdef CONFIG_X86_64
997 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
998#endif
999 opt = 0;
1000 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1001 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001002 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001003
1004 min = opt = 0;
1005 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1006 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001007 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001009 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001010
1011 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1012 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001013 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001014
1015#ifdef CONFIG_X86_64
1016 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1017 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001018 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001019#endif
1020
1021 /* Require Write-Back (WB) memory type for VMCS accesses. */
1022 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001023 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001024
Yang, Sheng002c7f72007-07-31 14:23:01 +03001025 vmcs_conf->size = vmx_msr_high & 0x1fff;
1026 vmcs_conf->order = get_order(vmcs_config.size);
1027 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001028
Yang, Sheng002c7f72007-07-31 14:23:01 +03001029 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1030 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001031 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001032 vmcs_conf->vmexit_ctrl = _vmexit_control;
1033 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001034
1035 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001036}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037
1038static struct vmcs *alloc_vmcs_cpu(int cpu)
1039{
1040 int node = cpu_to_node(cpu);
1041 struct page *pages;
1042 struct vmcs *vmcs;
1043
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001044 pages = alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001045 if (!pages)
1046 return NULL;
1047 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001048 memset(vmcs, 0, vmcs_config.size);
1049 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001050 return vmcs;
1051}
1052
1053static struct vmcs *alloc_vmcs(void)
1054{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001055 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001056}
1057
1058static void free_vmcs(struct vmcs *vmcs)
1059{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001060 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061}
1062
Sam Ravnborg39959582007-06-01 00:47:13 -07001063static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001064{
1065 int cpu;
1066
1067 for_each_online_cpu(cpu)
1068 free_vmcs(per_cpu(vmxarea, cpu));
1069}
1070
Avi Kivity6aa8b732006-12-10 02:21:36 -08001071static __init int alloc_kvm_area(void)
1072{
1073 int cpu;
1074
1075 for_each_online_cpu(cpu) {
1076 struct vmcs *vmcs;
1077
1078 vmcs = alloc_vmcs_cpu(cpu);
1079 if (!vmcs) {
1080 free_kvm_area();
1081 return -ENOMEM;
1082 }
1083
1084 per_cpu(vmxarea, cpu) = vmcs;
1085 }
1086 return 0;
1087}
1088
1089static __init int hardware_setup(void)
1090{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001091 if (setup_vmcs_config(&vmcs_config) < 0)
1092 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001093 return alloc_kvm_area();
1094}
1095
1096static __exit void hardware_unsetup(void)
1097{
1098 free_kvm_area();
1099}
1100
Avi Kivity6aa8b732006-12-10 02:21:36 -08001101static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1102{
1103 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1104
Avi Kivity6af11b92007-03-19 13:18:10 +02001105 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001106 vmcs_write16(sf->selector, save->selector);
1107 vmcs_writel(sf->base, save->base);
1108 vmcs_write32(sf->limit, save->limit);
1109 vmcs_write32(sf->ar_bytes, save->ar);
1110 } else {
1111 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1112 << AR_DPL_SHIFT;
1113 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1114 }
1115}
1116
1117static void enter_pmode(struct kvm_vcpu *vcpu)
1118{
1119 unsigned long flags;
1120
1121 vcpu->rmode.active = 0;
1122
1123 vmcs_writel(GUEST_TR_BASE, vcpu->rmode.tr.base);
1124 vmcs_write32(GUEST_TR_LIMIT, vcpu->rmode.tr.limit);
1125 vmcs_write32(GUEST_TR_AR_BYTES, vcpu->rmode.tr.ar);
1126
1127 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001128 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001129 flags |= (vcpu->rmode.save_iopl << IOPL_SHIFT);
1130 vmcs_writel(GUEST_RFLAGS, flags);
1131
Rusty Russell66aee912007-07-17 23:34:16 +10001132 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1133 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001134
1135 update_exception_bitmap(vcpu);
1136
1137 fix_pmode_dataseg(VCPU_SREG_ES, &vcpu->rmode.es);
1138 fix_pmode_dataseg(VCPU_SREG_DS, &vcpu->rmode.ds);
1139 fix_pmode_dataseg(VCPU_SREG_GS, &vcpu->rmode.gs);
1140 fix_pmode_dataseg(VCPU_SREG_FS, &vcpu->rmode.fs);
1141
1142 vmcs_write16(GUEST_SS_SELECTOR, 0);
1143 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1144
1145 vmcs_write16(GUEST_CS_SELECTOR,
1146 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1147 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1148}
1149
Mike Dayd77c26f2007-10-08 09:02:08 -04001150static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001151{
Izik Eiduscbc94022007-10-25 00:29:55 +02001152 if (!kvm->tss_addr) {
1153 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1154 kvm->memslots[0].npages - 3;
1155 return base_gfn << PAGE_SHIFT;
1156 }
1157 return kvm->tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001158}
1159
1160static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1161{
1162 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1163
1164 save->selector = vmcs_read16(sf->selector);
1165 save->base = vmcs_readl(sf->base);
1166 save->limit = vmcs_read32(sf->limit);
1167 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001168 vmcs_write16(sf->selector, save->base >> 4);
1169 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001170 vmcs_write32(sf->limit, 0xffff);
1171 vmcs_write32(sf->ar_bytes, 0xf3);
1172}
1173
1174static void enter_rmode(struct kvm_vcpu *vcpu)
1175{
1176 unsigned long flags;
1177
1178 vcpu->rmode.active = 1;
1179
1180 vcpu->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
1181 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1182
1183 vcpu->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
1184 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1185
1186 vcpu->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
1187 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1188
1189 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001190 vcpu->rmode.save_iopl = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001191
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001192 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001193
1194 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001195 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001196 update_exception_bitmap(vcpu);
1197
1198 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1199 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1200 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1201
1202 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001203 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001204 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1205 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001206 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1207
1208 fix_rmode_seg(VCPU_SREG_ES, &vcpu->rmode.es);
1209 fix_rmode_seg(VCPU_SREG_DS, &vcpu->rmode.ds);
1210 fix_rmode_seg(VCPU_SREG_GS, &vcpu->rmode.gs);
1211 fix_rmode_seg(VCPU_SREG_FS, &vcpu->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001212
Eddie Dong8668a3c2007-10-10 14:26:45 +08001213 kvm_mmu_reset_context(vcpu);
Avi Kivity75880a02007-06-20 11:20:04 +03001214 init_rmode_tss(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001215}
1216
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001217#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001218
1219static void enter_lmode(struct kvm_vcpu *vcpu)
1220{
1221 u32 guest_tr_ar;
1222
1223 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1224 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1225 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
1226 __FUNCTION__);
1227 vmcs_write32(GUEST_TR_AR_BYTES,
1228 (guest_tr_ar & ~AR_TYPE_MASK)
1229 | AR_TYPE_BUSY_64_TSS);
1230 }
1231
1232 vcpu->shadow_efer |= EFER_LMA;
1233
Rusty Russell8b9cf982007-07-30 16:31:43 +10001234 find_msr_entry(to_vmx(vcpu), MSR_EFER)->data |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001235 vmcs_write32(VM_ENTRY_CONTROLS,
1236 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001237 | VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001238}
1239
1240static void exit_lmode(struct kvm_vcpu *vcpu)
1241{
1242 vcpu->shadow_efer &= ~EFER_LMA;
1243
1244 vmcs_write32(VM_ENTRY_CONTROLS,
1245 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001246 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001247}
1248
1249#endif
1250
Anthony Liguori25c4c272007-04-27 09:29:21 +03001251static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001252{
Avi Kivity399badf2007-01-05 16:36:38 -08001253 vcpu->cr4 &= KVM_GUEST_CR4_MASK;
1254 vcpu->cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
1255}
1256
Avi Kivity6aa8b732006-12-10 02:21:36 -08001257static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1258{
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001259 vmx_fpu_deactivate(vcpu);
1260
Rusty Russell707d92fa2007-07-17 23:19:08 +10001261 if (vcpu->rmode.active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001262 enter_pmode(vcpu);
1263
Rusty Russell707d92fa2007-07-17 23:19:08 +10001264 if (!vcpu->rmode.active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001265 enter_rmode(vcpu);
1266
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001267#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001268 if (vcpu->shadow_efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001269 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001270 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10001271 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001272 exit_lmode(vcpu);
1273 }
1274#endif
1275
1276 vmcs_writel(CR0_READ_SHADOW, cr0);
1277 vmcs_writel(GUEST_CR0,
1278 (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON);
1279 vcpu->cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001280
Rusty Russell707d92fa2007-07-17 23:19:08 +10001281 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001282 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001283}
1284
Avi Kivity6aa8b732006-12-10 02:21:36 -08001285static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1286{
1287 vmcs_writel(GUEST_CR3, cr3);
Rusty Russell707d92fa2007-07-17 23:19:08 +10001288 if (vcpu->cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001289 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001290}
1291
1292static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1293{
1294 vmcs_writel(CR4_READ_SHADOW, cr4);
1295 vmcs_writel(GUEST_CR4, cr4 | (vcpu->rmode.active ?
1296 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON));
1297 vcpu->cr4 = cr4;
1298}
1299
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001300#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001301
1302static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1303{
Rusty Russell8b9cf982007-07-30 16:31:43 +10001304 struct vcpu_vmx *vmx = to_vmx(vcpu);
1305 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001306
1307 vcpu->shadow_efer = efer;
1308 if (efer & EFER_LMA) {
1309 vmcs_write32(VM_ENTRY_CONTROLS,
1310 vmcs_read32(VM_ENTRY_CONTROLS) |
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001311 VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001312 msr->data = efer;
1313
1314 } else {
1315 vmcs_write32(VM_ENTRY_CONTROLS,
1316 vmcs_read32(VM_ENTRY_CONTROLS) &
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001317 ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001318
1319 msr->data = efer & ~EFER_LME;
1320 }
Rusty Russell8b9cf982007-07-30 16:31:43 +10001321 setup_msrs(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001322}
1323
1324#endif
1325
1326static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1327{
1328 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1329
1330 return vmcs_readl(sf->base);
1331}
1332
1333static void vmx_get_segment(struct kvm_vcpu *vcpu,
1334 struct kvm_segment *var, int seg)
1335{
1336 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1337 u32 ar;
1338
1339 var->base = vmcs_readl(sf->base);
1340 var->limit = vmcs_read32(sf->limit);
1341 var->selector = vmcs_read16(sf->selector);
1342 ar = vmcs_read32(sf->ar_bytes);
1343 if (ar & AR_UNUSABLE_MASK)
1344 ar = 0;
1345 var->type = ar & 15;
1346 var->s = (ar >> 4) & 1;
1347 var->dpl = (ar >> 5) & 3;
1348 var->present = (ar >> 7) & 1;
1349 var->avl = (ar >> 12) & 1;
1350 var->l = (ar >> 13) & 1;
1351 var->db = (ar >> 14) & 1;
1352 var->g = (ar >> 15) & 1;
1353 var->unusable = (ar >> 16) & 1;
1354}
1355
Avi Kivity653e3102007-05-07 10:55:37 +03001356static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001357{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001358 u32 ar;
1359
Avi Kivity653e3102007-05-07 10:55:37 +03001360 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001361 ar = 1 << 16;
1362 else {
1363 ar = var->type & 15;
1364 ar |= (var->s & 1) << 4;
1365 ar |= (var->dpl & 3) << 5;
1366 ar |= (var->present & 1) << 7;
1367 ar |= (var->avl & 1) << 12;
1368 ar |= (var->l & 1) << 13;
1369 ar |= (var->db & 1) << 14;
1370 ar |= (var->g & 1) << 15;
1371 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001372 if (ar == 0) /* a 0 value means unusable */
1373 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001374
1375 return ar;
1376}
1377
1378static void vmx_set_segment(struct kvm_vcpu *vcpu,
1379 struct kvm_segment *var, int seg)
1380{
1381 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1382 u32 ar;
1383
1384 if (vcpu->rmode.active && seg == VCPU_SREG_TR) {
1385 vcpu->rmode.tr.selector = var->selector;
1386 vcpu->rmode.tr.base = var->base;
1387 vcpu->rmode.tr.limit = var->limit;
1388 vcpu->rmode.tr.ar = vmx_segment_access_rights(var);
1389 return;
1390 }
1391 vmcs_writel(sf->base, var->base);
1392 vmcs_write32(sf->limit, var->limit);
1393 vmcs_write16(sf->selector, var->selector);
1394 if (vcpu->rmode.active && var->s) {
1395 /*
1396 * Hack real-mode segments into vm86 compatibility.
1397 */
1398 if (var->base == 0xffff0000 && var->selector == 0xf000)
1399 vmcs_writel(sf->base, 0xf0000);
1400 ar = 0xf3;
1401 } else
1402 ar = vmx_segment_access_rights(var);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001403 vmcs_write32(sf->ar_bytes, ar);
1404}
1405
Avi Kivity6aa8b732006-12-10 02:21:36 -08001406static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1407{
1408 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1409
1410 *db = (ar >> 14) & 1;
1411 *l = (ar >> 13) & 1;
1412}
1413
1414static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1415{
1416 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1417 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1418}
1419
1420static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1421{
1422 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1423 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1424}
1425
1426static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1427{
1428 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1429 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1430}
1431
1432static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1433{
1434 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1435 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1436}
1437
Mike Dayd77c26f2007-10-08 09:02:08 -04001438static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001439{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001440 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001441 u16 data = 0;
1442 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001443
Izik Eidus195aefd2007-10-01 22:14:18 +02001444 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1445 if (r < 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001446 return 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02001447 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
1448 r = kvm_write_guest_page(kvm, fn++, &data, 0x66, sizeof(u16));
1449 if (r < 0)
1450 return 0;
1451 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
1452 if (r < 0)
1453 return 0;
1454 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1455 if (r < 0)
1456 return 0;
1457 data = ~0;
1458 r = kvm_write_guest_page(kvm, fn, &data, RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
1459 sizeof(u8));
1460 if (r < 0)
1461 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001462 return 1;
1463}
1464
Avi Kivity6aa8b732006-12-10 02:21:36 -08001465static void seg_setup(int seg)
1466{
1467 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1468
1469 vmcs_write16(sf->selector, 0);
1470 vmcs_writel(sf->base, 0);
1471 vmcs_write32(sf->limit, 0xffff);
1472 vmcs_write32(sf->ar_bytes, 0x93);
1473}
1474
Sheng Yangf78e0e22007-10-29 09:40:42 +08001475static int alloc_apic_access_page(struct kvm *kvm)
1476{
1477 struct kvm_userspace_memory_region kvm_userspace_mem;
1478 int r = 0;
1479
1480 mutex_lock(&kvm->lock);
1481 if (kvm->apic_access_page)
1482 goto out;
1483 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
1484 kvm_userspace_mem.flags = 0;
1485 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
1486 kvm_userspace_mem.memory_size = PAGE_SIZE;
1487 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
1488 if (r)
1489 goto out;
1490 kvm->apic_access_page = gfn_to_page(kvm, 0xfee00);
1491out:
1492 mutex_unlock(&kvm->lock);
1493 return r;
1494}
1495
Avi Kivity6aa8b732006-12-10 02:21:36 -08001496/*
1497 * Sets up the vmcs for emulated real mode.
1498 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001499static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001500{
1501 u32 host_sysenter_cs;
1502 u32 junk;
1503 unsigned long a;
1504 struct descriptor_table dt;
1505 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03001506 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001507 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001508
Avi Kivity6aa8b732006-12-10 02:21:36 -08001509 /* I/O */
He, Qingfdef3ad2007-04-30 09:45:24 +03001510 vmcs_write64(IO_BITMAP_A, page_to_phys(vmx_io_bitmap_a));
1511 vmcs_write64(IO_BITMAP_B, page_to_phys(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001512
Avi Kivity6aa8b732006-12-10 02:21:36 -08001513 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
1514
Avi Kivity6aa8b732006-12-10 02:21:36 -08001515 /* Control */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001516 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
1517 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001518
1519 exec_control = vmcs_config.cpu_based_exec_ctrl;
1520 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
1521 exec_control &= ~CPU_BASED_TPR_SHADOW;
1522#ifdef CONFIG_X86_64
1523 exec_control |= CPU_BASED_CR8_STORE_EXITING |
1524 CPU_BASED_CR8_LOAD_EXITING;
1525#endif
1526 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08001527 if (!vm_need_secondary_exec_ctrls(vmx->vcpu.kvm))
1528 exec_control &= ~CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001529 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001530
Sheng Yangf78e0e22007-10-29 09:40:42 +08001531 if (vm_need_secondary_exec_ctrls(vmx->vcpu.kvm))
1532 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
1533 vmcs_config.cpu_based_2nd_exec_ctrl);
1534
Avi Kivityc7addb92007-09-16 18:58:32 +02001535 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
1536 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001537 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
1538
1539 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
1540 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
1541 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
1542
1543 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
1544 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
1545 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
1546 vmcs_write16(HOST_FS_SELECTOR, read_fs()); /* 22.2.4 */
1547 vmcs_write16(HOST_GS_SELECTOR, read_gs()); /* 22.2.4 */
1548 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001549#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001550 rdmsrl(MSR_FS_BASE, a);
1551 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
1552 rdmsrl(MSR_GS_BASE, a);
1553 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
1554#else
1555 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
1556 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
1557#endif
1558
1559 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
1560
1561 get_idt(&dt);
1562 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
1563
Mike Dayd77c26f2007-10-08 09:02:08 -04001564 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03001565 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03001566 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
1567 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
1568 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001569
1570 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
1571 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
1572 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
1573 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
1574 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
1575 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
1576
Avi Kivity6aa8b732006-12-10 02:21:36 -08001577 for (i = 0; i < NR_VMX_MSR; ++i) {
1578 u32 index = vmx_msr_index[i];
1579 u32 data_low, data_high;
1580 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001581 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001582
1583 if (rdmsr_safe(index, &data_low, &data_high) < 0)
1584 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08001585 if (wrmsr_safe(index, data_low, data_high) < 0)
1586 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001587 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001588 vmx->host_msrs[j].index = index;
1589 vmx->host_msrs[j].reserved = 0;
1590 vmx->host_msrs[j].data = data;
1591 vmx->guest_msrs[j] = vmx->host_msrs[j];
1592 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001593 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001594
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001595 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001596
1597 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001598 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
1599
Avi Kivitye00c8cf2007-10-21 11:00:39 +02001600 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
1601 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
1602
Sheng Yangf78e0e22007-10-29 09:40:42 +08001603 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
1604 if (alloc_apic_access_page(vmx->vcpu.kvm) != 0)
1605 return -ENOMEM;
1606
Avi Kivitye00c8cf2007-10-21 11:00:39 +02001607 return 0;
1608}
1609
1610static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
1611{
1612 struct vcpu_vmx *vmx = to_vmx(vcpu);
1613 u64 msr;
1614 int ret;
1615
1616 if (!init_rmode_tss(vmx->vcpu.kvm)) {
1617 ret = -ENOMEM;
1618 goto out;
1619 }
1620
1621 vmx->vcpu.rmode.active = 0;
1622
1623 vmx->vcpu.regs[VCPU_REGS_RDX] = get_rdx_init_val();
1624 set_cr8(&vmx->vcpu, 0);
1625 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
1626 if (vmx->vcpu.vcpu_id == 0)
1627 msr |= MSR_IA32_APICBASE_BSP;
1628 kvm_set_apic_base(&vmx->vcpu, msr);
1629
1630 fx_init(&vmx->vcpu);
1631
1632 /*
1633 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
1634 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
1635 */
1636 if (vmx->vcpu.vcpu_id == 0) {
1637 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
1638 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
1639 } else {
1640 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.sipi_vector << 8);
1641 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.sipi_vector << 12);
1642 }
1643 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
1644 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1645
1646 seg_setup(VCPU_SREG_DS);
1647 seg_setup(VCPU_SREG_ES);
1648 seg_setup(VCPU_SREG_FS);
1649 seg_setup(VCPU_SREG_GS);
1650 seg_setup(VCPU_SREG_SS);
1651
1652 vmcs_write16(GUEST_TR_SELECTOR, 0);
1653 vmcs_writel(GUEST_TR_BASE, 0);
1654 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
1655 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1656
1657 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
1658 vmcs_writel(GUEST_LDTR_BASE, 0);
1659 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
1660 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
1661
1662 vmcs_write32(GUEST_SYSENTER_CS, 0);
1663 vmcs_writel(GUEST_SYSENTER_ESP, 0);
1664 vmcs_writel(GUEST_SYSENTER_EIP, 0);
1665
1666 vmcs_writel(GUEST_RFLAGS, 0x02);
1667 if (vmx->vcpu.vcpu_id == 0)
1668 vmcs_writel(GUEST_RIP, 0xfff0);
1669 else
1670 vmcs_writel(GUEST_RIP, 0);
1671 vmcs_writel(GUEST_RSP, 0);
1672
1673 /* todo: dr0 = dr1 = dr2 = dr3 = 0; dr6 = 0xffff0ff0 */
1674 vmcs_writel(GUEST_DR7, 0x400);
1675
1676 vmcs_writel(GUEST_GDTR_BASE, 0);
1677 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
1678
1679 vmcs_writel(GUEST_IDTR_BASE, 0);
1680 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
1681
1682 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
1683 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
1684 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
1685
1686 guest_write_tsc(0);
1687
1688 /* Special registers */
1689 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
1690
1691 setup_msrs(vmx);
1692
Avi Kivity6aa8b732006-12-10 02:21:36 -08001693 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
1694
Sheng Yangf78e0e22007-10-29 09:40:42 +08001695 if (cpu_has_vmx_tpr_shadow()) {
1696 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
1697 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
1698 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
1699 page_to_phys(vmx->vcpu.apic->regs_page));
1700 vmcs_write32(TPR_THRESHOLD, 0);
1701 }
1702
1703 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
1704 vmcs_write64(APIC_ACCESS_ADDR,
1705 page_to_phys(vmx->vcpu.kvm->apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001706
Rusty Russell8b9cf982007-07-30 16:31:43 +10001707 vmx->vcpu.cr0 = 0x60000010;
Mike Dayd77c26f2007-10-08 09:02:08 -04001708 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001709 vmx_set_cr4(&vmx->vcpu, 0);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001710#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10001711 vmx_set_efer(&vmx->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001712#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +10001713 vmx_fpu_activate(&vmx->vcpu);
1714 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001715
1716 return 0;
1717
Avi Kivity6aa8b732006-12-10 02:21:36 -08001718out:
1719 return ret;
1720}
1721
Eddie Dong85f455f2007-07-06 12:20:49 +03001722static void vmx_inject_irq(struct kvm_vcpu *vcpu, int irq)
1723{
Avi Kivity9c8cba32007-11-22 11:42:59 +02001724 struct vcpu_vmx *vmx = to_vmx(vcpu);
1725
Eddie Dong85f455f2007-07-06 12:20:49 +03001726 if (vcpu->rmode.active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02001727 vmx->rmode.irq.pending = true;
1728 vmx->rmode.irq.vector = irq;
1729 vmx->rmode.irq.rip = vmcs_readl(GUEST_RIP);
Avi Kivity9c5623e2007-11-08 18:19:20 +02001730 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
1731 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
1732 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Avi Kivity9c8cba32007-11-22 11:42:59 +02001733 vmcs_writel(GUEST_RIP, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03001734 return;
1735 }
1736 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
1737 irq | INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1738}
1739
Avi Kivity6aa8b732006-12-10 02:21:36 -08001740static void kvm_do_inject_irq(struct kvm_vcpu *vcpu)
1741{
1742 int word_index = __ffs(vcpu->irq_summary);
1743 int bit_index = __ffs(vcpu->irq_pending[word_index]);
1744 int irq = word_index * BITS_PER_LONG + bit_index;
1745
1746 clear_bit(bit_index, &vcpu->irq_pending[word_index]);
1747 if (!vcpu->irq_pending[word_index])
1748 clear_bit(word_index, &vcpu->irq_summary);
Eddie Dong85f455f2007-07-06 12:20:49 +03001749 vmx_inject_irq(vcpu, irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001750}
1751
Dor Laorc1150d82007-01-05 16:36:24 -08001752
1753static void do_interrupt_requests(struct kvm_vcpu *vcpu,
1754 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001755{
Dor Laorc1150d82007-01-05 16:36:24 -08001756 u32 cpu_based_vm_exec_control;
1757
1758 vcpu->interrupt_window_open =
1759 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
1760 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);
1761
1762 if (vcpu->interrupt_window_open &&
1763 vcpu->irq_summary &&
1764 !(vmcs_read32(VM_ENTRY_INTR_INFO_FIELD) & INTR_INFO_VALID_MASK))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001765 /*
Dor Laorc1150d82007-01-05 16:36:24 -08001766 * If interrupts enabled, and not blocked by sti or mov ss. Good.
Avi Kivity6aa8b732006-12-10 02:21:36 -08001767 */
1768 kvm_do_inject_irq(vcpu);
Dor Laorc1150d82007-01-05 16:36:24 -08001769
1770 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
1771 if (!vcpu->interrupt_window_open &&
1772 (vcpu->irq_summary || kvm_run->request_interrupt_window))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001773 /*
1774 * Interrupts blocked. Wait for unblock.
1775 */
Dor Laorc1150d82007-01-05 16:36:24 -08001776 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
1777 else
1778 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
1779 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001780}
1781
Izik Eiduscbc94022007-10-25 00:29:55 +02001782static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
1783{
1784 int ret;
1785 struct kvm_userspace_memory_region tss_mem = {
1786 .slot = 8,
1787 .guest_phys_addr = addr,
1788 .memory_size = PAGE_SIZE * 3,
1789 .flags = 0,
1790 };
1791
1792 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
1793 if (ret)
1794 return ret;
1795 kvm->tss_addr = addr;
1796 return 0;
1797}
1798
Avi Kivity6aa8b732006-12-10 02:21:36 -08001799static void kvm_guest_debug_pre(struct kvm_vcpu *vcpu)
1800{
1801 struct kvm_guest_debug *dbg = &vcpu->guest_debug;
1802
1803 set_debugreg(dbg->bp[0], 0);
1804 set_debugreg(dbg->bp[1], 1);
1805 set_debugreg(dbg->bp[2], 2);
1806 set_debugreg(dbg->bp[3], 3);
1807
1808 if (dbg->singlestep) {
1809 unsigned long flags;
1810
1811 flags = vmcs_readl(GUEST_RFLAGS);
1812 flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
1813 vmcs_writel(GUEST_RFLAGS, flags);
1814 }
1815}
1816
1817static int handle_rmode_exception(struct kvm_vcpu *vcpu,
1818 int vec, u32 err_code)
1819{
1820 if (!vcpu->rmode.active)
1821 return 0;
1822
Nitin A Kambleb3f37702007-05-17 15:50:34 +03001823 /*
1824 * Instruction with address size override prefix opcode 0x67
1825 * Cause the #SS fault with 0 error code in VM86 mode.
1826 */
1827 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Laurent Vivier34273182007-09-18 11:27:37 +02001828 if (emulate_instruction(vcpu, NULL, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001829 return 1;
1830 return 0;
1831}
1832
1833static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1834{
Avi Kivity1155f762007-11-22 11:30:47 +02001835 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001836 u32 intr_info, error_code;
1837 unsigned long cr2, rip;
1838 u32 vect_info;
1839 enum emulation_result er;
1840
Avi Kivity1155f762007-11-22 11:30:47 +02001841 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001842 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
1843
1844 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04001845 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001846 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
1847 "intr info 0x%x\n", __FUNCTION__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001848
Eddie Dong85f455f2007-07-06 12:20:49 +03001849 if (!irqchip_in_kernel(vcpu->kvm) && is_external_interrupt(vect_info)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001850 int irq = vect_info & VECTORING_INFO_VECTOR_MASK;
1851 set_bit(irq, vcpu->irq_pending);
1852 set_bit(irq / BITS_PER_LONG, &vcpu->irq_summary);
1853 }
1854
Avi Kivity1b6269d2007-10-09 12:12:19 +02001855 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
1856 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001857
1858 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001859 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001860 return 1;
1861 }
1862
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001863 if (is_invalid_opcode(intr_info)) {
Laurent Vivier34273182007-09-18 11:27:37 +02001864 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001865 if (er != EMULATE_DONE)
1866 vmx_inject_ud(vcpu);
1867
1868 return 1;
1869 }
1870
Avi Kivity6aa8b732006-12-10 02:21:36 -08001871 error_code = 0;
1872 rip = vmcs_readl(GUEST_RIP);
1873 if (intr_info & INTR_INFO_DELIEVER_CODE_MASK)
1874 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
1875 if (is_page_fault(intr_info)) {
1876 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity30677142007-10-28 18:48:59 +02001877 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001878 }
1879
1880 if (vcpu->rmode.active &&
1881 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03001882 error_code)) {
1883 if (vcpu->halt_request) {
1884 vcpu->halt_request = 0;
1885 return kvm_emulate_halt(vcpu);
1886 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001887 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03001888 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001889
Mike Dayd77c26f2007-10-08 09:02:08 -04001890 if ((intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK)) ==
1891 (INTR_TYPE_EXCEPTION | 1)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001892 kvm_run->exit_reason = KVM_EXIT_DEBUG;
1893 return 0;
1894 }
1895 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
1896 kvm_run->ex.exception = intr_info & INTR_INFO_VECTOR_MASK;
1897 kvm_run->ex.error_code = error_code;
1898 return 0;
1899}
1900
1901static int handle_external_interrupt(struct kvm_vcpu *vcpu,
1902 struct kvm_run *kvm_run)
1903{
Avi Kivity1165f5f2007-04-19 17:27:43 +03001904 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001905 return 1;
1906}
1907
Avi Kivity988ad742007-02-12 00:54:36 -08001908static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1909{
1910 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
1911 return 0;
1912}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001913
Avi Kivity6aa8b732006-12-10 02:21:36 -08001914static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1915{
He, Qingbfdaab02007-09-12 14:18:28 +08001916 unsigned long exit_qualification;
Avi Kivity039576c2007-03-20 12:46:50 +02001917 int size, down, in, string, rep;
1918 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001919
Avi Kivity1165f5f2007-04-19 17:27:43 +03001920 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08001921 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02001922 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03001923
1924 if (string) {
Laurent Vivier34273182007-09-18 11:27:37 +02001925 if (emulate_instruction(vcpu,
1926 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03001927 return 0;
1928 return 1;
1929 }
1930
1931 size = (exit_qualification & 7) + 1;
1932 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02001933 down = (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_DF) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02001934 rep = (exit_qualification & 32) != 0;
1935 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03001936
Laurent Vivier3090dd72007-08-05 10:43:32 +03001937 return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001938}
1939
Ingo Molnar102d8322007-02-19 14:37:47 +02001940static void
1941vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
1942{
1943 /*
1944 * Patch in the VMCALL instruction:
1945 */
1946 hypercall[0] = 0x0f;
1947 hypercall[1] = 0x01;
1948 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02001949}
1950
Avi Kivity6aa8b732006-12-10 02:21:36 -08001951static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1952{
He, Qingbfdaab02007-09-12 14:18:28 +08001953 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001954 int cr;
1955 int reg;
1956
He, Qingbfdaab02007-09-12 14:18:28 +08001957 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001958 cr = exit_qualification & 15;
1959 reg = (exit_qualification >> 8) & 15;
1960 switch ((exit_qualification >> 4) & 3) {
1961 case 0: /* mov to cr */
1962 switch (cr) {
1963 case 0:
1964 vcpu_load_rsp_rip(vcpu);
1965 set_cr0(vcpu, vcpu->regs[reg]);
1966 skip_emulated_instruction(vcpu);
1967 return 1;
1968 case 3:
1969 vcpu_load_rsp_rip(vcpu);
1970 set_cr3(vcpu, vcpu->regs[reg]);
1971 skip_emulated_instruction(vcpu);
1972 return 1;
1973 case 4:
1974 vcpu_load_rsp_rip(vcpu);
1975 set_cr4(vcpu, vcpu->regs[reg]);
1976 skip_emulated_instruction(vcpu);
1977 return 1;
1978 case 8:
1979 vcpu_load_rsp_rip(vcpu);
1980 set_cr8(vcpu, vcpu->regs[reg]);
1981 skip_emulated_instruction(vcpu);
Yang, Sheng253abde2007-08-16 13:01:00 +03001982 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
1983 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001984 };
1985 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03001986 case 2: /* clts */
1987 vcpu_load_rsp_rip(vcpu);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001988 vmx_fpu_deactivate(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10001989 vcpu->cr0 &= ~X86_CR0_TS;
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001990 vmcs_writel(CR0_READ_SHADOW, vcpu->cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001991 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03001992 skip_emulated_instruction(vcpu);
1993 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001994 case 1: /*mov from cr*/
1995 switch (cr) {
1996 case 3:
1997 vcpu_load_rsp_rip(vcpu);
1998 vcpu->regs[reg] = vcpu->cr3;
1999 vcpu_put_rsp_rip(vcpu);
2000 skip_emulated_instruction(vcpu);
2001 return 1;
2002 case 8:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002003 vcpu_load_rsp_rip(vcpu);
Eddie Dong7017fc32007-07-18 11:34:57 +03002004 vcpu->regs[reg] = get_cr8(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002005 vcpu_put_rsp_rip(vcpu);
2006 skip_emulated_instruction(vcpu);
2007 return 1;
2008 }
2009 break;
2010 case 3: /* lmsw */
2011 lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
2012
2013 skip_emulated_instruction(vcpu);
2014 return 1;
2015 default:
2016 break;
2017 }
2018 kvm_run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002019 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002020 (int)(exit_qualification >> 4) & 3, cr);
2021 return 0;
2022}
2023
2024static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2025{
He, Qingbfdaab02007-09-12 14:18:28 +08002026 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002027 unsigned long val;
2028 int dr, reg;
2029
2030 /*
2031 * FIXME: this code assumes the host is debugging the guest.
2032 * need to deal with guest debugging itself too.
2033 */
He, Qingbfdaab02007-09-12 14:18:28 +08002034 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002035 dr = exit_qualification & 7;
2036 reg = (exit_qualification >> 8) & 15;
2037 vcpu_load_rsp_rip(vcpu);
2038 if (exit_qualification & 16) {
2039 /* mov from dr */
2040 switch (dr) {
2041 case 6:
2042 val = 0xffff0ff0;
2043 break;
2044 case 7:
2045 val = 0x400;
2046 break;
2047 default:
2048 val = 0;
2049 }
2050 vcpu->regs[reg] = val;
2051 } else {
2052 /* mov to dr */
2053 }
2054 vcpu_put_rsp_rip(vcpu);
2055 skip_emulated_instruction(vcpu);
2056 return 1;
2057}
2058
2059static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2060{
Avi Kivity06465c52007-02-28 20:46:53 +02002061 kvm_emulate_cpuid(vcpu);
2062 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002063}
2064
2065static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2066{
2067 u32 ecx = vcpu->regs[VCPU_REGS_RCX];
2068 u64 data;
2069
2070 if (vmx_get_msr(vcpu, ecx, &data)) {
2071 vmx_inject_gp(vcpu, 0);
2072 return 1;
2073 }
2074
2075 /* FIXME: handling of bits 32:63 of rax, rdx */
2076 vcpu->regs[VCPU_REGS_RAX] = data & -1u;
2077 vcpu->regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
2078 skip_emulated_instruction(vcpu);
2079 return 1;
2080}
2081
2082static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2083{
2084 u32 ecx = vcpu->regs[VCPU_REGS_RCX];
2085 u64 data = (vcpu->regs[VCPU_REGS_RAX] & -1u)
2086 | ((u64)(vcpu->regs[VCPU_REGS_RDX] & -1u) << 32);
2087
2088 if (vmx_set_msr(vcpu, ecx, data) != 0) {
2089 vmx_inject_gp(vcpu, 0);
2090 return 1;
2091 }
2092
2093 skip_emulated_instruction(vcpu);
2094 return 1;
2095}
2096
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002097static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
2098 struct kvm_run *kvm_run)
2099{
2100 return 1;
2101}
2102
Avi Kivity6aa8b732006-12-10 02:21:36 -08002103static int handle_interrupt_window(struct kvm_vcpu *vcpu,
2104 struct kvm_run *kvm_run)
2105{
Eddie Dong85f455f2007-07-06 12:20:49 +03002106 u32 cpu_based_vm_exec_control;
2107
2108 /* clear pending irq */
2109 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2110 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2111 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Dor Laorc1150d82007-01-05 16:36:24 -08002112 /*
2113 * If the user space waits to inject interrupts, exit as soon as
2114 * possible
2115 */
2116 if (kvm_run->request_interrupt_window &&
Dor Laor022a9302007-01-05 16:37:00 -08002117 !vcpu->irq_summary) {
Dor Laorc1150d82007-01-05 16:36:24 -08002118 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002119 ++vcpu->stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08002120 return 0;
2121 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002122 return 1;
2123}
2124
2125static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2126{
2127 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03002128 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002129}
2130
Ingo Molnarc21415e2007-02-19 14:37:47 +02002131static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2132{
Dor Laor510043d2007-02-19 18:25:43 +02002133 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002134 kvm_emulate_hypercall(vcpu);
2135 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02002136}
2137
Eddie Donge5edaa02007-11-11 12:28:35 +02002138static int handle_wbinvd(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2139{
2140 skip_emulated_instruction(vcpu);
2141 /* TODO: Add support for VT-d/pass-through device */
2142 return 1;
2143}
2144
Sheng Yangf78e0e22007-10-29 09:40:42 +08002145static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2146{
2147 u64 exit_qualification;
2148 enum emulation_result er;
2149 unsigned long offset;
2150
2151 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
2152 offset = exit_qualification & 0xffful;
2153
2154 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
2155
2156 if (er != EMULATE_DONE) {
2157 printk(KERN_ERR
2158 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
2159 offset);
2160 return -ENOTSUPP;
2161 }
2162 return 1;
2163}
2164
Avi Kivity6aa8b732006-12-10 02:21:36 -08002165/*
2166 * The exit handlers return 1 if the exit was handled fully and guest execution
2167 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
2168 * to be done to userspace and return 0.
2169 */
2170static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
2171 struct kvm_run *kvm_run) = {
2172 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
2173 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08002174 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002175 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002176 [EXIT_REASON_CR_ACCESS] = handle_cr,
2177 [EXIT_REASON_DR_ACCESS] = handle_dr,
2178 [EXIT_REASON_CPUID] = handle_cpuid,
2179 [EXIT_REASON_MSR_READ] = handle_rdmsr,
2180 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
2181 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
2182 [EXIT_REASON_HLT] = handle_halt,
Ingo Molnarc21415e2007-02-19 14:37:47 +02002183 [EXIT_REASON_VMCALL] = handle_vmcall,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002184 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
2185 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02002186 [EXIT_REASON_WBINVD] = handle_wbinvd,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002187};
2188
2189static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04002190 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002191
2192/*
2193 * The guest has exited. See if we can fix it or if we need userspace
2194 * assistance.
2195 */
2196static int kvm_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
2197{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002198 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity29bd8a72007-09-10 17:27:03 +03002199 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1155f762007-11-22 11:30:47 +02002200 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03002201
2202 if (unlikely(vmx->fail)) {
2203 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
2204 kvm_run->fail_entry.hardware_entry_failure_reason
2205 = vmcs_read32(VM_INSTRUCTION_ERROR);
2206 return 0;
2207 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002208
Mike Dayd77c26f2007-10-08 09:02:08 -04002209 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
2210 exit_reason != EXIT_REASON_EXCEPTION_NMI)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002211 printk(KERN_WARNING "%s: unexpected, valid vectoring info and "
2212 "exit reason is 0x%x\n", __FUNCTION__, exit_reason);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002213 if (exit_reason < kvm_vmx_max_exit_handlers
2214 && kvm_vmx_exit_handlers[exit_reason])
2215 return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
2216 else {
2217 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
2218 kvm_run->hw.hardware_exit_reason = exit_reason;
2219 }
2220 return 0;
2221}
2222
Avi Kivityd9e368d2007-06-07 19:18:30 +03002223static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
2224{
Avi Kivityd9e368d2007-06-07 19:18:30 +03002225}
2226
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002227static void update_tpr_threshold(struct kvm_vcpu *vcpu)
2228{
2229 int max_irr, tpr;
2230
2231 if (!vm_need_tpr_shadow(vcpu->kvm))
2232 return;
2233
2234 if (!kvm_lapic_enabled(vcpu) ||
2235 ((max_irr = kvm_lapic_find_highest_irr(vcpu)) == -1)) {
2236 vmcs_write32(TPR_THRESHOLD, 0);
2237 return;
2238 }
2239
2240 tpr = (kvm_lapic_get_cr8(vcpu) & 0x0f) << 4;
2241 vmcs_write32(TPR_THRESHOLD, (max_irr > tpr) ? tpr >> 4 : max_irr >> 4);
2242}
2243
Eddie Dong85f455f2007-07-06 12:20:49 +03002244static void enable_irq_window(struct kvm_vcpu *vcpu)
2245{
2246 u32 cpu_based_vm_exec_control;
2247
2248 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2249 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2250 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2251}
2252
2253static void vmx_intr_assist(struct kvm_vcpu *vcpu)
2254{
Avi Kivity1155f762007-11-22 11:30:47 +02002255 struct vcpu_vmx *vmx = to_vmx(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03002256 u32 idtv_info_field, intr_info_field;
2257 int has_ext_irq, interrupt_window_open;
Eddie Dong1b9778d2007-09-03 16:56:58 +03002258 int vector;
Eddie Dong85f455f2007-07-06 12:20:49 +03002259
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002260 update_tpr_threshold(vcpu);
2261
Eddie Dong85f455f2007-07-06 12:20:49 +03002262 has_ext_irq = kvm_cpu_has_interrupt(vcpu);
2263 intr_info_field = vmcs_read32(VM_ENTRY_INTR_INFO_FIELD);
Avi Kivity1155f762007-11-22 11:30:47 +02002264 idtv_info_field = vmx->idt_vectoring_info;
Eddie Dong85f455f2007-07-06 12:20:49 +03002265 if (intr_info_field & INTR_INFO_VALID_MASK) {
2266 if (idtv_info_field & INTR_INFO_VALID_MASK) {
2267 /* TODO: fault when IDT_Vectoring */
2268 printk(KERN_ERR "Fault when IDT_Vectoring\n");
2269 }
2270 if (has_ext_irq)
2271 enable_irq_window(vcpu);
2272 return;
2273 }
2274 if (unlikely(idtv_info_field & INTR_INFO_VALID_MASK)) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002275 if ((idtv_info_field & VECTORING_INFO_TYPE_MASK)
2276 == INTR_TYPE_EXT_INTR
2277 && vcpu->rmode.active) {
2278 u8 vect = idtv_info_field & VECTORING_INFO_VECTOR_MASK;
2279
2280 vmx_inject_irq(vcpu, vect);
2281 if (unlikely(has_ext_irq))
2282 enable_irq_window(vcpu);
2283 return;
2284 }
2285
Eddie Dong85f455f2007-07-06 12:20:49 +03002286 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, idtv_info_field);
2287 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2288 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
2289
2290 if (unlikely(idtv_info_field & INTR_INFO_DELIEVER_CODE_MASK))
2291 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
2292 vmcs_read32(IDT_VECTORING_ERROR_CODE));
2293 if (unlikely(has_ext_irq))
2294 enable_irq_window(vcpu);
2295 return;
2296 }
2297 if (!has_ext_irq)
2298 return;
2299 interrupt_window_open =
2300 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2301 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);
Eddie Dong1b9778d2007-09-03 16:56:58 +03002302 if (interrupt_window_open) {
2303 vector = kvm_cpu_get_interrupt(vcpu);
2304 vmx_inject_irq(vcpu, vector);
2305 kvm_timer_intr_post(vcpu, vector);
2306 } else
Eddie Dong85f455f2007-07-06 12:20:49 +03002307 enable_irq_window(vcpu);
2308}
2309
Avi Kivity9c8cba32007-11-22 11:42:59 +02002310/*
2311 * Failure to inject an interrupt should give us the information
2312 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
2313 * when fetching the interrupt redirection bitmap in the real-mode
2314 * tss, this doesn't happen. So we do it ourselves.
2315 */
2316static void fixup_rmode_irq(struct vcpu_vmx *vmx)
2317{
2318 vmx->rmode.irq.pending = 0;
2319 if (vmcs_readl(GUEST_RIP) + 1 != vmx->rmode.irq.rip)
2320 return;
2321 vmcs_writel(GUEST_RIP, vmx->rmode.irq.rip);
2322 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
2323 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
2324 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
2325 return;
2326 }
2327 vmx->idt_vectoring_info =
2328 VECTORING_INFO_VALID_MASK
2329 | INTR_TYPE_EXT_INTR
2330 | vmx->rmode.irq.vector;
2331}
2332
Avi Kivity04d2cc72007-09-10 18:10:54 +03002333static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002334{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002335 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1b6269d2007-10-09 12:12:19 +02002336 u32 intr_info;
Avi Kivitye6adf282007-04-30 16:07:54 +03002337
2338 /*
2339 * Loading guest fpu may have cleared host cr0.ts
2340 */
2341 vmcs_writel(HOST_CR0, read_cr0());
2342
Mike Dayd77c26f2007-10-08 09:02:08 -04002343 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08002344 /* Store host registers */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002345#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02002346 "push %%rdx; push %%rbp;"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002347 "push %%rcx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002348#else
Laurent Vivierff593e52007-10-25 14:18:55 +02002349 "push %%edx; push %%ebp;"
2350 "push %%ecx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002351#endif
Laurent Vivierc2036302007-10-25 14:18:52 +02002352 ASM_VMX_VMWRITE_RSP_RDX "\n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002353 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02002354 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002355 /* Load guest registers. Don't clobber flags. */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002356#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02002357 "mov %c[cr2](%0), %%rax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002358 "mov %%rax, %%cr2 \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002359 "mov %c[rax](%0), %%rax \n\t"
2360 "mov %c[rbx](%0), %%rbx \n\t"
2361 "mov %c[rdx](%0), %%rdx \n\t"
2362 "mov %c[rsi](%0), %%rsi \n\t"
2363 "mov %c[rdi](%0), %%rdi \n\t"
2364 "mov %c[rbp](%0), %%rbp \n\t"
2365 "mov %c[r8](%0), %%r8 \n\t"
2366 "mov %c[r9](%0), %%r9 \n\t"
2367 "mov %c[r10](%0), %%r10 \n\t"
2368 "mov %c[r11](%0), %%r11 \n\t"
2369 "mov %c[r12](%0), %%r12 \n\t"
2370 "mov %c[r13](%0), %%r13 \n\t"
2371 "mov %c[r14](%0), %%r14 \n\t"
2372 "mov %c[r15](%0), %%r15 \n\t"
2373 "mov %c[rcx](%0), %%rcx \n\t" /* kills %0 (rcx) */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002374#else
Avi Kivitye08aa782007-11-15 18:06:18 +02002375 "mov %c[cr2](%0), %%eax \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002376 "mov %%eax, %%cr2 \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002377 "mov %c[rax](%0), %%eax \n\t"
2378 "mov %c[rbx](%0), %%ebx \n\t"
2379 "mov %c[rdx](%0), %%edx \n\t"
2380 "mov %c[rsi](%0), %%esi \n\t"
2381 "mov %c[rdi](%0), %%edi \n\t"
2382 "mov %c[rbp](%0), %%ebp \n\t"
2383 "mov %c[rcx](%0), %%ecx \n\t" /* kills %0 (ecx) */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002384#endif
2385 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03002386 "jne .Llaunched \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002387 ASM_VMX_VMLAUNCH "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03002388 "jmp .Lkvm_vmx_return \n\t"
2389 ".Llaunched: " ASM_VMX_VMRESUME "\n\t"
2390 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08002391 /* Save guest registers, load host registers, keep flags */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002392#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02002393 "xchg %0, (%%rsp) \n\t"
2394 "mov %%rax, %c[rax](%0) \n\t"
2395 "mov %%rbx, %c[rbx](%0) \n\t"
2396 "pushq (%%rsp); popq %c[rcx](%0) \n\t"
2397 "mov %%rdx, %c[rdx](%0) \n\t"
2398 "mov %%rsi, %c[rsi](%0) \n\t"
2399 "mov %%rdi, %c[rdi](%0) \n\t"
2400 "mov %%rbp, %c[rbp](%0) \n\t"
2401 "mov %%r8, %c[r8](%0) \n\t"
2402 "mov %%r9, %c[r9](%0) \n\t"
2403 "mov %%r10, %c[r10](%0) \n\t"
2404 "mov %%r11, %c[r11](%0) \n\t"
2405 "mov %%r12, %c[r12](%0) \n\t"
2406 "mov %%r13, %c[r13](%0) \n\t"
2407 "mov %%r14, %c[r14](%0) \n\t"
2408 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002409 "mov %%cr2, %%rax \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002410 "mov %%rax, %c[cr2](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002411
Avi Kivitye08aa782007-11-15 18:06:18 +02002412 "pop %%rbp; pop %%rbp; pop %%rdx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002413#else
Avi Kivitye08aa782007-11-15 18:06:18 +02002414 "xchg %0, (%%esp) \n\t"
2415 "mov %%eax, %c[rax](%0) \n\t"
2416 "mov %%ebx, %c[rbx](%0) \n\t"
2417 "pushl (%%esp); popl %c[rcx](%0) \n\t"
2418 "mov %%edx, %c[rdx](%0) \n\t"
2419 "mov %%esi, %c[rsi](%0) \n\t"
2420 "mov %%edi, %c[rdi](%0) \n\t"
2421 "mov %%ebp, %c[rbp](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002422 "mov %%cr2, %%eax \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02002423 "mov %%eax, %c[cr2](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002424
Avi Kivitye08aa782007-11-15 18:06:18 +02002425 "pop %%ebp; pop %%ebp; pop %%edx \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08002426#endif
Avi Kivitye08aa782007-11-15 18:06:18 +02002427 "setbe %c[fail](%0) \n\t"
2428 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
2429 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
2430 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
2431 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RAX])),
2432 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RBX])),
2433 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RCX])),
2434 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RDX])),
2435 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RSI])),
2436 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RDI])),
2437 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002438#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02002439 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R8])),
2440 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R9])),
2441 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R10])),
2442 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R11])),
2443 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R12])),
2444 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R13])),
2445 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R14])),
2446 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08002447#endif
Avi Kivitye08aa782007-11-15 18:06:18 +02002448 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02002449 : "cc", "memory"
2450#ifdef CONFIG_X86_64
2451 , "rbx", "rdi", "rsi"
2452 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Laurent Vivierff593e52007-10-25 14:18:55 +02002453#else
2454 , "ebx", "edi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02002455#endif
2456 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08002457
Avi Kivity1155f762007-11-22 11:30:47 +02002458 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02002459 if (vmx->rmode.irq.pending)
2460 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02002461
Mike Dayd77c26f2007-10-08 09:02:08 -04002462 vcpu->interrupt_window_open =
2463 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002464
Mike Dayd77c26f2007-10-08 09:02:08 -04002465 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03002466 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02002467
2468 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2469
2470 /* We need to handle NMIs before interrupts are enabled */
2471 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
2472 asm("int $2");
Avi Kivity6aa8b732006-12-10 02:21:36 -08002473}
2474
Avi Kivity6aa8b732006-12-10 02:21:36 -08002475static void vmx_inject_page_fault(struct kvm_vcpu *vcpu,
2476 unsigned long addr,
2477 u32 err_code)
2478{
Avi Kivity1155f762007-11-22 11:30:47 +02002479 struct vcpu_vmx *vmx = to_vmx(vcpu);
2480 u32 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002481
Avi Kivity1165f5f2007-04-19 17:27:43 +03002482 ++vcpu->stat.pf_guest;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002483
2484 if (is_page_fault(vect_info)) {
2485 printk(KERN_DEBUG "inject_page_fault: "
2486 "double fault 0x%lx @ 0x%lx\n",
2487 addr, vmcs_readl(GUEST_RIP));
2488 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, 0);
2489 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2490 DF_VECTOR |
2491 INTR_TYPE_EXCEPTION |
2492 INTR_INFO_DELIEVER_CODE_MASK |
2493 INTR_INFO_VALID_MASK);
2494 return;
2495 }
2496 vcpu->cr2 = addr;
2497 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, err_code);
2498 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2499 PF_VECTOR |
2500 INTR_TYPE_EXCEPTION |
2501 INTR_INFO_DELIEVER_CODE_MASK |
2502 INTR_INFO_VALID_MASK);
2503
2504}
2505
2506static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
2507{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002508 struct vcpu_vmx *vmx = to_vmx(vcpu);
2509
2510 if (vmx->vmcs) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002511 on_each_cpu(__vcpu_clear, vmx, 0, 1);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002512 free_vmcs(vmx->vmcs);
2513 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002514 }
2515}
2516
2517static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
2518{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002519 struct vcpu_vmx *vmx = to_vmx(vcpu);
2520
Avi Kivity6aa8b732006-12-10 02:21:36 -08002521 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002522 kfree(vmx->host_msrs);
2523 kfree(vmx->guest_msrs);
2524 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10002525 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002526}
2527
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002528static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002529{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002530 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10002531 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03002532 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002533
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002534 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002535 return ERR_PTR(-ENOMEM);
2536
2537 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
2538 if (err)
2539 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002540
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002541 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002542 if (!vmx->guest_msrs) {
2543 err = -ENOMEM;
2544 goto uninit_vcpu;
2545 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08002546
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002547 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
2548 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002549 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002550
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002551 vmx->vmcs = alloc_vmcs();
2552 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002553 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002554
2555 vmcs_clear(vmx->vmcs);
2556
Avi Kivity15ad7142007-07-11 18:17:21 +03002557 cpu = get_cpu();
2558 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002559 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002560 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03002561 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002562 if (err)
2563 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002564
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002565 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08002566
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002567free_vmcs:
2568 free_vmcs(vmx->vmcs);
2569free_msrs:
2570 kfree(vmx->host_msrs);
2571free_guest_msrs:
2572 kfree(vmx->guest_msrs);
2573uninit_vcpu:
2574 kvm_vcpu_uninit(&vmx->vcpu);
2575free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10002576 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10002577 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002578}
2579
Yang, Sheng002c7f72007-07-31 14:23:01 +03002580static void __init vmx_check_processor_compat(void *rtn)
2581{
2582 struct vmcs_config vmcs_conf;
2583
2584 *(int *)rtn = 0;
2585 if (setup_vmcs_config(&vmcs_conf) < 0)
2586 *(int *)rtn = -EIO;
2587 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
2588 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
2589 smp_processor_id());
2590 *(int *)rtn = -EIO;
2591 }
2592}
2593
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002594static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002595 .cpu_has_kvm_support = cpu_has_kvm_support,
2596 .disabled_by_bios = vmx_disabled_by_bios,
2597 .hardware_setup = hardware_setup,
2598 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03002599 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002600 .hardware_enable = hardware_enable,
2601 .hardware_disable = hardware_disable,
2602
2603 .vcpu_create = vmx_create_vcpu,
2604 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002605 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002606
Avi Kivity04d2cc72007-09-10 18:10:54 +03002607 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002608 .vcpu_load = vmx_vcpu_load,
2609 .vcpu_put = vmx_vcpu_put,
Avi Kivity774c47f2007-02-12 00:54:47 -08002610 .vcpu_decache = vmx_vcpu_decache,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002611
2612 .set_guest_debug = set_guest_debug,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002613 .guest_debug_pre = kvm_guest_debug_pre,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002614 .get_msr = vmx_get_msr,
2615 .set_msr = vmx_set_msr,
2616 .get_segment_base = vmx_get_segment_base,
2617 .get_segment = vmx_get_segment,
2618 .set_segment = vmx_set_segment,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002619 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03002620 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002621 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002622 .set_cr3 = vmx_set_cr3,
2623 .set_cr4 = vmx_set_cr4,
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002624#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002625 .set_efer = vmx_set_efer,
2626#endif
2627 .get_idt = vmx_get_idt,
2628 .set_idt = vmx_set_idt,
2629 .get_gdt = vmx_get_gdt,
2630 .set_gdt = vmx_set_gdt,
2631 .cache_regs = vcpu_load_rsp_rip,
2632 .decache_regs = vcpu_put_rsp_rip,
2633 .get_rflags = vmx_get_rflags,
2634 .set_rflags = vmx_set_rflags,
2635
2636 .tlb_flush = vmx_flush_tlb,
2637 .inject_page_fault = vmx_inject_page_fault,
2638
2639 .inject_gp = vmx_inject_gp,
2640
2641 .run = vmx_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002642 .handle_exit = kvm_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002643 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02002644 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03002645 .get_irq = vmx_get_irq,
2646 .set_irq = vmx_inject_irq,
Avi Kivity04d2cc72007-09-10 18:10:54 +03002647 .inject_pending_irq = vmx_intr_assist,
2648 .inject_pending_vectors = do_interrupt_requests,
Izik Eiduscbc94022007-10-25 00:29:55 +02002649
2650 .set_tss_addr = vmx_set_tss_addr,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002651};
2652
2653static int __init vmx_init(void)
2654{
He, Qingfdef3ad2007-04-30 09:45:24 +03002655 void *iova;
2656 int r;
2657
2658 vmx_io_bitmap_a = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2659 if (!vmx_io_bitmap_a)
2660 return -ENOMEM;
2661
2662 vmx_io_bitmap_b = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2663 if (!vmx_io_bitmap_b) {
2664 r = -ENOMEM;
2665 goto out;
2666 }
2667
2668 /*
2669 * Allow direct access to the PC debug port (it is often used for I/O
2670 * delays, but the vmexits simply slow things down).
2671 */
2672 iova = kmap(vmx_io_bitmap_a);
2673 memset(iova, 0xff, PAGE_SIZE);
2674 clear_bit(0x80, iova);
Avi Kivitycd0536d2007-05-08 11:34:07 +03002675 kunmap(vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03002676
2677 iova = kmap(vmx_io_bitmap_b);
2678 memset(iova, 0xff, PAGE_SIZE);
Avi Kivitycd0536d2007-05-08 11:34:07 +03002679 kunmap(vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03002680
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002681 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03002682 if (r)
2683 goto out1;
2684
Avi Kivityc7addb92007-09-16 18:58:32 +02002685 if (bypass_guest_pf)
2686 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
2687
He, Qingfdef3ad2007-04-30 09:45:24 +03002688 return 0;
2689
2690out1:
2691 __free_page(vmx_io_bitmap_b);
2692out:
2693 __free_page(vmx_io_bitmap_a);
2694 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002695}
2696
2697static void __exit vmx_exit(void)
2698{
He, Qingfdef3ad2007-04-30 09:45:24 +03002699 __free_page(vmx_io_bitmap_b);
2700 __free_page(vmx_io_bitmap_a);
2701
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08002702 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002703}
2704
2705module_init(vmx_init)
2706module_exit(vmx_exit)