blob: 7c5f611e1a94a679cc069256628a0b714a175a2c [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
Eddie Dong85f455f2007-07-06 12:20:49 +030018#include "irq.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080019#include "vmx.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040021
Avi Kivityedf88412007-12-16 11:02:48 +020022#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080023#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020024#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/mm.h>
26#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040027#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020028#include <linux/moduleparam.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030029#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030030#include "x86.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 Kivity4ecac3f2008-05-13 13:23:38 +030035#define __ex(x) __kvm_handle_fault_on_reboot(x)
36
Avi Kivity6aa8b732006-12-10 02:21:36 -080037MODULE_AUTHOR("Qumranet");
38MODULE_LICENSE("GPL");
39
Avi Kivityc7addb92007-09-16 18:58:32 +020040static int bypass_guest_pf = 1;
41module_param(bypass_guest_pf, bool, 0);
42
Sheng Yang2384d2b2008-01-17 15:14:33 +080043static int enable_vpid = 1;
44module_param(enable_vpid, bool, 0);
45
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020046static int flexpriority_enabled = 1;
47module_param(flexpriority_enabled, bool, 0);
48
Sheng Yang14394422008-04-28 12:24:45 +080049static int enable_ept = 1;
Sheng Yangd56f5462008-04-25 10:13:16 +080050module_param(enable_ept, bool, 0);
51
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030052static int emulate_invalid_guest_state = 0;
53module_param(emulate_invalid_guest_state, bool, 0);
54
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040055struct vmcs {
56 u32 revision_id;
57 u32 abort;
58 char data[0];
59};
60
61struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100062 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +030063 struct list_head local_vcpus_link;
Avi Kivity313dbd42008-07-17 18:04:30 +030064 unsigned long host_rsp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040065 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +030066 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +020067 u32 idt_vectoring_info;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040068 struct kvm_msr_entry *guest_msrs;
69 struct kvm_msr_entry *host_msrs;
70 int nmsrs;
71 int save_nmsrs;
72 int msr_offset_efer;
73#ifdef CONFIG_X86_64
74 int msr_offset_kernel_gs_base;
75#endif
76 struct vmcs *vmcs;
77 struct {
78 int loaded;
79 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +020080 int gs_ldt_reload_needed;
81 int fs_reload_needed;
Avi Kivity51c6cf62007-08-29 03:48:05 +030082 int guest_efer_loaded;
Mike Dayd77c26f2007-10-08 09:02:08 -040083 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +020084 struct {
85 struct {
86 bool pending;
87 u8 vector;
88 unsigned rip;
89 } irq;
90 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +080091 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030092 bool emulation_required;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040093};
94
95static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
96{
Rusty Russellfb3f0f52007-07-27 17:16:56 +100097 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040098}
99
Sheng Yangb7ebfb02008-04-25 21:44:52 +0800100static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800101static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +0300102
Avi Kivity6aa8b732006-12-10 02:21:36 -0800103static DEFINE_PER_CPU(struct vmcs *, vmxarea);
104static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +0300105static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800106
He, Qingfdef3ad2007-04-30 09:45:24 +0300107static struct page *vmx_io_bitmap_a;
108static struct page *vmx_io_bitmap_b;
Sheng Yang25c5f222008-03-28 13:18:56 +0800109static struct page *vmx_msr_bitmap;
He, Qingfdef3ad2007-04-30 09:45:24 +0300110
Sheng Yang2384d2b2008-01-17 15:14:33 +0800111static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
112static DEFINE_SPINLOCK(vmx_vpid_lock);
113
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300114static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800115 int size;
116 int order;
117 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300118 u32 pin_based_exec_ctrl;
119 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800120 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300121 u32 vmexit_ctrl;
122 u32 vmentry_ctrl;
123} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800124
Sheng Yangd56f5462008-04-25 10:13:16 +0800125struct vmx_capability {
126 u32 ept;
127 u32 vpid;
128} vmx_capability;
129
Avi Kivity6aa8b732006-12-10 02:21:36 -0800130#define VMX_SEGMENT_FIELD(seg) \
131 [VCPU_SREG_##seg] = { \
132 .selector = GUEST_##seg##_SELECTOR, \
133 .base = GUEST_##seg##_BASE, \
134 .limit = GUEST_##seg##_LIMIT, \
135 .ar_bytes = GUEST_##seg##_AR_BYTES, \
136 }
137
138static struct kvm_vmx_segment_field {
139 unsigned selector;
140 unsigned base;
141 unsigned limit;
142 unsigned ar_bytes;
143} kvm_vmx_segment_fields[] = {
144 VMX_SEGMENT_FIELD(CS),
145 VMX_SEGMENT_FIELD(DS),
146 VMX_SEGMENT_FIELD(ES),
147 VMX_SEGMENT_FIELD(FS),
148 VMX_SEGMENT_FIELD(GS),
149 VMX_SEGMENT_FIELD(SS),
150 VMX_SEGMENT_FIELD(TR),
151 VMX_SEGMENT_FIELD(LDTR),
152};
153
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300154/*
155 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
156 * away by decrementing the array size.
157 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800158static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800159#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800160 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, MSR_KERNEL_GS_BASE,
161#endif
162 MSR_EFER, MSR_K6_STAR,
163};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200164#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800165
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400166static void load_msrs(struct kvm_msr_entry *e, int n)
167{
168 int i;
169
170 for (i = 0; i < n; ++i)
171 wrmsrl(e[i].index, e[i].data);
172}
173
174static void save_msrs(struct kvm_msr_entry *e, int n)
175{
176 int i;
177
178 for (i = 0; i < n; ++i)
179 rdmsrl(e[i].index, e[i].data);
180}
181
Avi Kivity6aa8b732006-12-10 02:21:36 -0800182static inline int is_page_fault(u32 intr_info)
183{
184 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
185 INTR_INFO_VALID_MASK)) ==
186 (INTR_TYPE_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
187}
188
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300189static inline int is_no_device(u32 intr_info)
190{
191 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
192 INTR_INFO_VALID_MASK)) ==
193 (INTR_TYPE_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
194}
195
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500196static inline int is_invalid_opcode(u32 intr_info)
197{
198 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
199 INTR_INFO_VALID_MASK)) ==
200 (INTR_TYPE_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
201}
202
Avi Kivity6aa8b732006-12-10 02:21:36 -0800203static inline int is_external_interrupt(u32 intr_info)
204{
205 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
206 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
207}
208
Sheng Yang25c5f222008-03-28 13:18:56 +0800209static inline int cpu_has_vmx_msr_bitmap(void)
210{
211 return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS);
212}
213
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800214static inline int cpu_has_vmx_tpr_shadow(void)
215{
216 return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW);
217}
218
219static inline int vm_need_tpr_shadow(struct kvm *kvm)
220{
221 return ((cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm)));
222}
223
Sheng Yangf78e0e22007-10-29 09:40:42 +0800224static inline int cpu_has_secondary_exec_ctrls(void)
225{
226 return (vmcs_config.cpu_based_exec_ctrl &
227 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS);
228}
229
Avi Kivity774ead32007-12-26 13:57:04 +0200230static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800231{
Avi Kivity4c9fc8e2008-03-24 18:15:14 +0200232 return flexpriority_enabled
233 && (vmcs_config.cpu_based_2nd_exec_ctrl &
234 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800235}
236
Sheng Yangd56f5462008-04-25 10:13:16 +0800237static inline int cpu_has_vmx_invept_individual_addr(void)
238{
239 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT));
240}
241
242static inline int cpu_has_vmx_invept_context(void)
243{
244 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT));
245}
246
247static inline int cpu_has_vmx_invept_global(void)
248{
249 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT));
250}
251
252static inline int cpu_has_vmx_ept(void)
253{
254 return (vmcs_config.cpu_based_2nd_exec_ctrl &
255 SECONDARY_EXEC_ENABLE_EPT);
256}
257
258static inline int vm_need_ept(void)
259{
260 return (cpu_has_vmx_ept() && enable_ept);
261}
262
Sheng Yangf78e0e22007-10-29 09:40:42 +0800263static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
264{
265 return ((cpu_has_vmx_virtualize_apic_accesses()) &&
266 (irqchip_in_kernel(kvm)));
267}
268
Sheng Yang2384d2b2008-01-17 15:14:33 +0800269static inline int cpu_has_vmx_vpid(void)
270{
271 return (vmcs_config.cpu_based_2nd_exec_ctrl &
272 SECONDARY_EXEC_ENABLE_VPID);
273}
274
Sheng Yangf08864b2008-05-15 18:23:25 +0800275static inline int cpu_has_virtual_nmis(void)
276{
277 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
278}
279
Rusty Russell8b9cf982007-07-30 16:31:43 +1000280static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800281{
282 int i;
283
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400284 for (i = 0; i < vmx->nmsrs; ++i)
285 if (vmx->guest_msrs[i].index == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300286 return i;
287 return -1;
288}
289
Sheng Yang2384d2b2008-01-17 15:14:33 +0800290static inline void __invvpid(int ext, u16 vpid, gva_t gva)
291{
292 struct {
293 u64 vpid : 16;
294 u64 rsvd : 48;
295 u64 gva;
296 } operand = { vpid, 0, gva };
297
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300298 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800299 /* CF==1 or ZF==1 --> rc = -1 */
300 "; ja 1f ; ud2 ; 1:"
301 : : "a"(&operand), "c"(ext) : "cc", "memory");
302}
303
Sheng Yang14394422008-04-28 12:24:45 +0800304static inline void __invept(int ext, u64 eptp, gpa_t gpa)
305{
306 struct {
307 u64 eptp, gpa;
308 } operand = {eptp, gpa};
309
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300310 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800311 /* CF==1 or ZF==1 --> rc = -1 */
312 "; ja 1f ; ud2 ; 1:\n"
313 : : "a" (&operand), "c" (ext) : "cc", "memory");
314}
315
Rusty Russell8b9cf982007-07-30 16:31:43 +1000316static struct kvm_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300317{
318 int i;
319
Rusty Russell8b9cf982007-07-30 16:31:43 +1000320 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300321 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400322 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000323 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800324}
325
Avi Kivity6aa8b732006-12-10 02:21:36 -0800326static void vmcs_clear(struct vmcs *vmcs)
327{
328 u64 phys_addr = __pa(vmcs);
329 u8 error;
330
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300331 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800332 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
333 : "cc", "memory");
334 if (error)
335 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
336 vmcs, phys_addr);
337}
338
339static void __vcpu_clear(void *arg)
340{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000341 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800342 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800343
Rusty Russell8b9cf982007-07-30 16:31:43 +1000344 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400345 vmcs_clear(vmx->vmcs);
346 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800347 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800348 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300349 list_del(&vmx->local_vcpus_link);
350 vmx->vcpu.cpu = -1;
351 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800352}
353
Rusty Russell8b9cf982007-07-30 16:31:43 +1000354static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800355{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200356 if (vmx->vcpu.cpu == -1)
357 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200358 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800359}
360
Sheng Yang2384d2b2008-01-17 15:14:33 +0800361static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
362{
363 if (vmx->vpid == 0)
364 return;
365
366 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
367}
368
Sheng Yang14394422008-04-28 12:24:45 +0800369static inline void ept_sync_global(void)
370{
371 if (cpu_has_vmx_invept_global())
372 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
373}
374
375static inline void ept_sync_context(u64 eptp)
376{
377 if (vm_need_ept()) {
378 if (cpu_has_vmx_invept_context())
379 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
380 else
381 ept_sync_global();
382 }
383}
384
385static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
386{
387 if (vm_need_ept()) {
388 if (cpu_has_vmx_invept_individual_addr())
389 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
390 eptp, gpa);
391 else
392 ept_sync_context(eptp);
393 }
394}
395
Avi Kivity6aa8b732006-12-10 02:21:36 -0800396static unsigned long vmcs_readl(unsigned long field)
397{
398 unsigned long value;
399
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300400 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800401 : "=a"(value) : "d"(field) : "cc");
402 return value;
403}
404
405static u16 vmcs_read16(unsigned long field)
406{
407 return vmcs_readl(field);
408}
409
410static u32 vmcs_read32(unsigned long field)
411{
412 return vmcs_readl(field);
413}
414
415static u64 vmcs_read64(unsigned long field)
416{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800417#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800418 return vmcs_readl(field);
419#else
420 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
421#endif
422}
423
Avi Kivitye52de1b2007-01-05 16:36:56 -0800424static noinline void vmwrite_error(unsigned long field, unsigned long value)
425{
426 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
427 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
428 dump_stack();
429}
430
Avi Kivity6aa8b732006-12-10 02:21:36 -0800431static void vmcs_writel(unsigned long field, unsigned long value)
432{
433 u8 error;
434
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300435 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400436 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800437 if (unlikely(error))
438 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800439}
440
441static void vmcs_write16(unsigned long field, u16 value)
442{
443 vmcs_writel(field, value);
444}
445
446static void vmcs_write32(unsigned long field, u32 value)
447{
448 vmcs_writel(field, value);
449}
450
451static void vmcs_write64(unsigned long field, u64 value)
452{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800453 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300454#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800455 asm volatile ("");
456 vmcs_writel(field+1, value >> 32);
457#endif
458}
459
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300460static void vmcs_clear_bits(unsigned long field, u32 mask)
461{
462 vmcs_writel(field, vmcs_readl(field) & ~mask);
463}
464
465static void vmcs_set_bits(unsigned long field, u32 mask)
466{
467 vmcs_writel(field, vmcs_readl(field) | mask);
468}
469
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300470static void update_exception_bitmap(struct kvm_vcpu *vcpu)
471{
472 u32 eb;
473
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500474 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300475 if (!vcpu->fpu_active)
476 eb |= 1u << NM_VECTOR;
477 if (vcpu->guest_debug.enabled)
Jan Kiszka19bd8af2008-07-13 13:40:55 +0200478 eb |= 1u << DB_VECTOR;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800479 if (vcpu->arch.rmode.active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300480 eb = ~0;
Sheng Yang14394422008-04-28 12:24:45 +0800481 if (vm_need_ept())
482 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300483 vmcs_write32(EXCEPTION_BITMAP, eb);
484}
485
Avi Kivity33ed6322007-05-02 16:54:03 +0300486static void reload_tss(void)
487{
Avi Kivity33ed6322007-05-02 16:54:03 +0300488 /*
489 * VT restores TR but not its size. Useless.
490 */
491 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200492 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300493
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300494 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300495 descs = (void *)gdt.base;
496 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
497 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300498}
499
Rusty Russell8b9cf982007-07-30 16:31:43 +1000500static void load_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300501{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400502 int efer_offset = vmx->msr_offset_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300503 u64 host_efer = vmx->host_msrs[efer_offset].data;
504 u64 guest_efer = vmx->guest_msrs[efer_offset].data;
505 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300506
Avi Kivity51c6cf62007-08-29 03:48:05 +0300507 if (efer_offset < 0)
508 return;
509 /*
510 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
511 * outside long mode
512 */
513 ignore_bits = EFER_NX | EFER_SCE;
514#ifdef CONFIG_X86_64
515 ignore_bits |= EFER_LMA | EFER_LME;
516 /* SCE is meaningful only in long mode on Intel */
517 if (guest_efer & EFER_LMA)
518 ignore_bits &= ~(u64)EFER_SCE;
519#endif
520 if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
521 return;
522
523 vmx->host_state.guest_efer_loaded = 1;
524 guest_efer &= ~ignore_bits;
525 guest_efer |= host_efer & ignore_bits;
526 wrmsrl(MSR_EFER, guest_efer);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000527 vmx->vcpu.stat.efer_reload++;
Eddie Dong2cc51562007-05-21 07:28:09 +0300528}
529
Avi Kivity51c6cf62007-08-29 03:48:05 +0300530static void reload_host_efer(struct vcpu_vmx *vmx)
531{
532 if (vmx->host_state.guest_efer_loaded) {
533 vmx->host_state.guest_efer_loaded = 0;
534 load_msrs(vmx->host_msrs + vmx->msr_offset_efer, 1);
535 }
536}
537
Avi Kivity04d2cc72007-09-10 18:10:54 +0300538static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300539{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300540 struct vcpu_vmx *vmx = to_vmx(vcpu);
541
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400542 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300543 return;
544
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400545 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300546 /*
547 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
548 * allow segment selectors with cpl > 0 or ti == 1.
549 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300550 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200551 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300552 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200553 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400554 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200555 vmx->host_state.fs_reload_needed = 0;
556 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300557 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200558 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300559 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300560 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400561 if (!(vmx->host_state.gs_sel & 7))
562 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300563 else {
564 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200565 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300566 }
567
568#ifdef CONFIG_X86_64
569 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
570 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
571#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400572 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
573 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300574#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300575
576#ifdef CONFIG_X86_64
Mike Dayd77c26f2007-10-08 09:02:08 -0400577 if (is_long_mode(&vmx->vcpu))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400578 save_msrs(vmx->host_msrs +
579 vmx->msr_offset_kernel_gs_base, 1);
Mike Dayd77c26f2007-10-08 09:02:08 -0400580
Avi Kivity707c0872007-05-02 17:33:43 +0300581#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400582 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300583 load_transition_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300584}
585
Avi Kivitya9b21b62008-06-24 11:48:49 +0300586static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300587{
Avi Kivity15ad7142007-07-11 18:17:21 +0300588 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300589
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400590 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300591 return;
592
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200593 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400594 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200595 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300596 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200597 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300598 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300599 /*
600 * If we have to reload gs, we must take care to
601 * preserve our gs base.
602 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300603 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300604 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300605#ifdef CONFIG_X86_64
606 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
607#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300608 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300609 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200610 reload_tss();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400611 save_msrs(vmx->guest_msrs, vmx->save_nmsrs);
612 load_msrs(vmx->host_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300613 reload_host_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300614}
615
Avi Kivitya9b21b62008-06-24 11:48:49 +0300616static void vmx_load_host_state(struct vcpu_vmx *vmx)
617{
618 preempt_disable();
619 __vmx_load_host_state(vmx);
620 preempt_enable();
621}
622
Avi Kivity6aa8b732006-12-10 02:21:36 -0800623/*
624 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
625 * vcpu mutex is already taken.
626 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300627static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800628{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400629 struct vcpu_vmx *vmx = to_vmx(vcpu);
630 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200631 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800632
Eddie Donga3d7f852007-09-03 16:15:12 +0300633 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000634 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300635 kvm_migrate_timers(vcpu);
Sheng Yang2384d2b2008-01-17 15:14:33 +0800636 vpid_sync_vcpu_all(vmx);
Avi Kivity543e4242008-05-13 16:22:47 +0300637 local_irq_disable();
638 list_add(&vmx->local_vcpus_link,
639 &per_cpu(vcpus_on_cpu, cpu));
640 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300641 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800642
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400643 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800644 u8 error;
645
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400646 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300647 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800648 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
649 : "cc");
650 if (error)
651 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400652 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800653 }
654
655 if (vcpu->cpu != cpu) {
656 struct descriptor_table dt;
657 unsigned long sysenter_esp;
658
659 vcpu->cpu = cpu;
660 /*
661 * Linux uses per-cpu TSS and GDT, so set these when switching
662 * processors.
663 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300664 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
665 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800666 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
667
668 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
669 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300670
671 /*
672 * Make sure the time stamp counter is monotonous.
673 */
674 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200675 if (tsc_this < vcpu->arch.host_tsc) {
676 delta = vcpu->arch.host_tsc - tsc_this;
677 new_offset = vmcs_read64(TSC_OFFSET) + delta;
678 vmcs_write64(TSC_OFFSET, new_offset);
679 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800680 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800681}
682
683static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
684{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300685 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800686}
687
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300688static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
689{
690 if (vcpu->fpu_active)
691 return;
692 vcpu->fpu_active = 1;
Rusty Russell707d92f2007-07-17 23:19:08 +1000693 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800694 if (vcpu->arch.cr0 & X86_CR0_TS)
Rusty Russell707d92f2007-07-17 23:19:08 +1000695 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300696 update_exception_bitmap(vcpu);
697}
698
699static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
700{
701 if (!vcpu->fpu_active)
702 return;
703 vcpu->fpu_active = 0;
Rusty Russell707d92f2007-07-17 23:19:08 +1000704 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300705 update_exception_bitmap(vcpu);
706}
707
Avi Kivity6aa8b732006-12-10 02:21:36 -0800708static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
709{
710 return vmcs_readl(GUEST_RFLAGS);
711}
712
713static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
714{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800715 if (vcpu->arch.rmode.active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100716 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800717 vmcs_writel(GUEST_RFLAGS, rflags);
718}
719
720static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
721{
722 unsigned long rip;
723 u32 interruptibility;
724
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300725 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800726 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300727 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800728
729 /*
730 * We emulated an instruction, so temporary interrupt blocking
731 * should be removed, if set.
732 */
733 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
734 if (interruptibility & 3)
735 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
736 interruptibility & ~3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800737 vcpu->arch.interrupt_window_open = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800738}
739
Avi Kivity298101d2007-11-25 13:41:11 +0200740static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
741 bool has_error_code, u32 error_code)
742{
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200743 struct vcpu_vmx *vmx = to_vmx(vcpu);
744
745 if (has_error_code)
746 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
747
748 if (vcpu->arch.rmode.active) {
749 vmx->rmode.irq.pending = true;
750 vmx->rmode.irq.vector = nr;
751 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
752 if (nr == BP_VECTOR)
753 vmx->rmode.irq.rip++;
754 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
755 nr | INTR_TYPE_SOFT_INTR
756 | (has_error_code ? INTR_INFO_DELIVER_CODE_MASK : 0)
757 | INTR_INFO_VALID_MASK);
758 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
759 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
760 return;
761 }
762
Avi Kivity298101d2007-11-25 13:41:11 +0200763 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
764 nr | INTR_TYPE_EXCEPTION
Ryan Harper2e113842008-02-11 10:26:38 -0600765 | (has_error_code ? INTR_INFO_DELIVER_CODE_MASK : 0)
Avi Kivity298101d2007-11-25 13:41:11 +0200766 | INTR_INFO_VALID_MASK);
Avi Kivity298101d2007-11-25 13:41:11 +0200767}
768
769static bool vmx_exception_injected(struct kvm_vcpu *vcpu)
770{
Avi Kivity35920a32008-07-03 14:50:12 +0300771 return false;
Avi Kivity298101d2007-11-25 13:41:11 +0200772}
773
Avi Kivity6aa8b732006-12-10 02:21:36 -0800774/*
Eddie Donga75beee2007-05-17 18:55:15 +0300775 * Swap MSR entry in host/guest MSR entry array.
776 */
Gabriel C54e11fa2007-08-01 16:23:10 +0200777#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000778static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300779{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400780 struct kvm_msr_entry tmp;
781
782 tmp = vmx->guest_msrs[to];
783 vmx->guest_msrs[to] = vmx->guest_msrs[from];
784 vmx->guest_msrs[from] = tmp;
785 tmp = vmx->host_msrs[to];
786 vmx->host_msrs[to] = vmx->host_msrs[from];
787 vmx->host_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300788}
Gabriel C54e11fa2007-08-01 16:23:10 +0200789#endif
Eddie Donga75beee2007-05-17 18:55:15 +0300790
791/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300792 * Set up the vmcs to automatically save and restore system
793 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
794 * mode, as fiddling with msrs is very expensive.
795 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000796static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300797{
Eddie Dong2cc51562007-05-21 07:28:09 +0300798 int save_nmsrs;
Avi Kivitye38aea32007-04-19 13:22:48 +0300799
Avi Kivity33f9c502008-02-27 16:06:57 +0200800 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300801 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300802#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000803 if (is_long_mode(&vmx->vcpu)) {
Eddie Dong2cc51562007-05-21 07:28:09 +0300804 int index;
805
Rusty Russell8b9cf982007-07-30 16:31:43 +1000806 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300807 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000808 move_msr_up(vmx, index, save_nmsrs++);
809 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300810 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000811 move_msr_up(vmx, index, save_nmsrs++);
812 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300813 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000814 move_msr_up(vmx, index, save_nmsrs++);
815 index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300816 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000817 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300818 /*
819 * MSR_K6_STAR is only needed on long mode guests, and only
820 * if efer.sce is enabled.
821 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000822 index = __find_msr_index(vmx, MSR_K6_STAR);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800823 if ((index >= 0) && (vmx->vcpu.arch.shadow_efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000824 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300825 }
Eddie Donga75beee2007-05-17 18:55:15 +0300826#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400827 vmx->save_nmsrs = save_nmsrs;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300828
Eddie Donga75beee2007-05-17 18:55:15 +0300829#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400830 vmx->msr_offset_kernel_gs_base =
Rusty Russell8b9cf982007-07-30 16:31:43 +1000831 __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300832#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +1000833 vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
Avi Kivitye38aea32007-04-19 13:22:48 +0300834}
835
836/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800837 * reads and returns guest's timestamp counter "register"
838 * guest_tsc = host_tsc + tsc_offset -- 21.3
839 */
840static u64 guest_read_tsc(void)
841{
842 u64 host_tsc, tsc_offset;
843
844 rdtscll(host_tsc);
845 tsc_offset = vmcs_read64(TSC_OFFSET);
846 return host_tsc + tsc_offset;
847}
848
849/*
850 * writes 'guest_tsc' into guest's timestamp counter "register"
851 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
852 */
853static void guest_write_tsc(u64 guest_tsc)
854{
855 u64 host_tsc;
856
857 rdtscll(host_tsc);
858 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
859}
860
Avi Kivity6aa8b732006-12-10 02:21:36 -0800861/*
862 * Reads an msr value (of 'msr_index') into 'pdata'.
863 * Returns 0 on success, non-0 otherwise.
864 * Assumes vcpu_load() was already called.
865 */
866static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
867{
868 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400869 struct kvm_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800870
871 if (!pdata) {
872 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
873 return -EINVAL;
874 }
875
876 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800877#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800878 case MSR_FS_BASE:
879 data = vmcs_readl(GUEST_FS_BASE);
880 break;
881 case MSR_GS_BASE:
882 data = vmcs_readl(GUEST_GS_BASE);
883 break;
884 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800885 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800886#endif
887 case MSR_IA32_TIME_STAMP_COUNTER:
888 data = guest_read_tsc();
889 break;
890 case MSR_IA32_SYSENTER_CS:
891 data = vmcs_read32(GUEST_SYSENTER_CS);
892 break;
893 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200894 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800895 break;
896 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200897 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800898 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800899 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +1000900 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800901 if (msr) {
902 data = msr->data;
903 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800904 }
Avi Kivity3bab1f52006-12-29 16:49:48 -0800905 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906 }
907
908 *pdata = data;
909 return 0;
910}
911
912/*
913 * Writes msr value into into the appropriate "register".
914 * Returns 0 on success, non-0 otherwise.
915 * Assumes vcpu_load() was already called.
916 */
917static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
918{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400919 struct vcpu_vmx *vmx = to_vmx(vcpu);
920 struct kvm_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +0300921 int ret = 0;
922
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800924#ifdef CONFIG_X86_64
Avi Kivity3bab1f52006-12-29 16:49:48 -0800925 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +0300926 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +0300927 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +0300928 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800929 case MSR_FS_BASE:
930 vmcs_writel(GUEST_FS_BASE, data);
931 break;
932 case MSR_GS_BASE:
933 vmcs_writel(GUEST_GS_BASE, data);
934 break;
935#endif
936 case MSR_IA32_SYSENTER_CS:
937 vmcs_write32(GUEST_SYSENTER_CS, data);
938 break;
939 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200940 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800941 break;
942 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200943 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800944 break;
Avi Kivityd27d4ac2007-02-19 14:37:46 +0200945 case MSR_IA32_TIME_STAMP_COUNTER:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800946 guest_write_tsc(data);
947 break;
Chris Lalancetteefa67e02008-06-20 09:51:30 +0200948 case MSR_P6_PERFCTR0:
949 case MSR_P6_PERFCTR1:
950 case MSR_P6_EVNTSEL0:
951 case MSR_P6_EVNTSEL1:
952 /*
953 * Just discard all writes to the performance counters; this
954 * should keep both older linux and windows 64-bit guests
955 * happy
956 */
957 pr_unimpl(vcpu, "unimplemented perfctr wrmsr: 0x%x data 0x%llx\n", msr_index, data);
958
959 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800960 default:
Avi Kivitya9b21b62008-06-24 11:48:49 +0300961 vmx_load_host_state(vmx);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000962 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800963 if (msr) {
964 msr->data = data;
965 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800966 }
Eddie Dong2cc51562007-05-21 07:28:09 +0300967 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800968 }
969
Eddie Dong2cc51562007-05-21 07:28:09 +0300970 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800971}
972
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300973static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800974{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300975 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
976 switch (reg) {
977 case VCPU_REGS_RSP:
978 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
979 break;
980 case VCPU_REGS_RIP:
981 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
982 break;
983 default:
984 break;
985 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800986}
987
988static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
989{
990 unsigned long dr7 = 0x400;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991 int old_singlestep;
992
Avi Kivity6aa8b732006-12-10 02:21:36 -0800993 old_singlestep = vcpu->guest_debug.singlestep;
994
995 vcpu->guest_debug.enabled = dbg->enabled;
996 if (vcpu->guest_debug.enabled) {
997 int i;
998
999 dr7 |= 0x200; /* exact */
1000 for (i = 0; i < 4; ++i) {
1001 if (!dbg->breakpoints[i].enabled)
1002 continue;
1003 vcpu->guest_debug.bp[i] = dbg->breakpoints[i].address;
1004 dr7 |= 2 << (i*2); /* global enable */
1005 dr7 |= 0 << (i*4+16); /* execution breakpoint */
1006 }
1007
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008 vcpu->guest_debug.singlestep = dbg->singlestep;
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001009 } else
Avi Kivity6aa8b732006-12-10 02:21:36 -08001010 vcpu->guest_debug.singlestep = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001011
1012 if (old_singlestep && !vcpu->guest_debug.singlestep) {
1013 unsigned long flags;
1014
1015 flags = vmcs_readl(GUEST_RFLAGS);
1016 flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
1017 vmcs_writel(GUEST_RFLAGS, flags);
1018 }
1019
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001020 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001021 vmcs_writel(GUEST_DR7, dr7);
1022
1023 return 0;
1024}
1025
Eddie Dong2a8067f2007-08-06 16:29:07 +03001026static int vmx_get_irq(struct kvm_vcpu *vcpu)
1027{
Avi Kivityf7d92382008-07-03 16:14:28 +03001028 if (!vcpu->arch.interrupt.pending)
1029 return -1;
1030 return vcpu->arch.interrupt.nr;
Eddie Dong2a8067f2007-08-06 16:29:07 +03001031}
1032
Avi Kivity6aa8b732006-12-10 02:21:36 -08001033static __init int cpu_has_kvm_support(void)
1034{
1035 unsigned long ecx = cpuid_ecx(1);
1036 return test_bit(5, &ecx); /* CPUID.1:ECX.VMX[bit 5] -> VT */
1037}
1038
1039static __init int vmx_disabled_by_bios(void)
1040{
1041 u64 msr;
1042
1043 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yangca60dfb2008-06-24 17:02:38 +08001044 return (msr & (IA32_FEATURE_CONTROL_LOCKED_BIT |
1045 IA32_FEATURE_CONTROL_VMXON_ENABLED_BIT))
1046 == IA32_FEATURE_CONTROL_LOCKED_BIT;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001047 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001048}
1049
Avi Kivity774c47f2007-02-12 00:54:47 -08001050static void hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001051{
1052 int cpu = raw_smp_processor_id();
1053 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1054 u64 old;
1055
Avi Kivity543e4242008-05-13 16:22:47 +03001056 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001057 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yangca60dfb2008-06-24 17:02:38 +08001058 if ((old & (IA32_FEATURE_CONTROL_LOCKED_BIT |
1059 IA32_FEATURE_CONTROL_VMXON_ENABLED_BIT))
1060 != (IA32_FEATURE_CONTROL_LOCKED_BIT |
1061 IA32_FEATURE_CONTROL_VMXON_ENABLED_BIT))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001062 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001063 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yangca60dfb2008-06-24 17:02:38 +08001064 IA32_FEATURE_CONTROL_LOCKED_BIT |
1065 IA32_FEATURE_CONTROL_VMXON_ENABLED_BIT);
Rusty Russell66aee912007-07-17 23:34:16 +10001066 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001067 asm volatile (ASM_VMX_VMXON_RAX
1068 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001069 : "memory", "cc");
1070}
1071
Avi Kivity543e4242008-05-13 16:22:47 +03001072static void vmclear_local_vcpus(void)
1073{
1074 int cpu = raw_smp_processor_id();
1075 struct vcpu_vmx *vmx, *n;
1076
1077 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1078 local_vcpus_link)
1079 __vcpu_clear(vmx);
1080}
1081
Avi Kivity6aa8b732006-12-10 02:21:36 -08001082static void hardware_disable(void *garbage)
1083{
Avi Kivity543e4242008-05-13 16:22:47 +03001084 vmclear_local_vcpus();
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001085 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eli Collinse693d712008-06-01 20:24:40 -07001086 write_cr4(read_cr4() & ~X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001087}
1088
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001089static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001090 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001091{
1092 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001093 u32 ctl = ctl_min | ctl_opt;
1094
1095 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1096
1097 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1098 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1099
1100 /* Ensure minimum (required) set of control bits are supported. */
1101 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001102 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001103
1104 *result = ctl;
1105 return 0;
1106}
1107
Yang, Sheng002c7f72007-07-31 14:23:01 +03001108static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001109{
1110 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001111 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001112 u32 _pin_based_exec_control = 0;
1113 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001114 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001115 u32 _vmexit_control = 0;
1116 u32 _vmentry_control = 0;
1117
1118 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001119 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001120 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1121 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001122 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001123
1124 min = CPU_BASED_HLT_EXITING |
1125#ifdef CONFIG_X86_64
1126 CPU_BASED_CR8_LOAD_EXITING |
1127 CPU_BASED_CR8_STORE_EXITING |
1128#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001129 CPU_BASED_CR3_LOAD_EXITING |
1130 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001131 CPU_BASED_USE_IO_BITMAPS |
1132 CPU_BASED_MOV_DR_EXITING |
1133 CPU_BASED_USE_TSC_OFFSETING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001134 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001135 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001136 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001137 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1138 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001139 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001140#ifdef CONFIG_X86_64
1141 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1142 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1143 ~CPU_BASED_CR8_STORE_EXITING;
1144#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001145 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001146 min2 = 0;
1147 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001148 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001149 SECONDARY_EXEC_ENABLE_VPID |
1150 SECONDARY_EXEC_ENABLE_EPT;
1151 if (adjust_vmx_controls(min2, opt2,
1152 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001153 &_cpu_based_2nd_exec_control) < 0)
1154 return -EIO;
1155 }
1156#ifndef CONFIG_X86_64
1157 if (!(_cpu_based_2nd_exec_control &
1158 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1159 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1160#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001161 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
1162 /* CR3 accesses don't need to cause VM Exits when EPT enabled */
1163 min &= ~(CPU_BASED_CR3_LOAD_EXITING |
1164 CPU_BASED_CR3_STORE_EXITING);
1165 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1166 &_cpu_based_exec_control) < 0)
1167 return -EIO;
1168 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1169 vmx_capability.ept, vmx_capability.vpid);
1170 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001171
1172 min = 0;
1173#ifdef CONFIG_X86_64
1174 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1175#endif
1176 opt = 0;
1177 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1178 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001179 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001180
1181 min = opt = 0;
1182 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1183 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001184 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001185
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001186 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001187
1188 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1189 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001190 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001191
1192#ifdef CONFIG_X86_64
1193 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1194 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001195 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001196#endif
1197
1198 /* Require Write-Back (WB) memory type for VMCS accesses. */
1199 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001200 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001201
Yang, Sheng002c7f72007-07-31 14:23:01 +03001202 vmcs_conf->size = vmx_msr_high & 0x1fff;
1203 vmcs_conf->order = get_order(vmcs_config.size);
1204 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001205
Yang, Sheng002c7f72007-07-31 14:23:01 +03001206 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1207 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001208 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001209 vmcs_conf->vmexit_ctrl = _vmexit_control;
1210 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001211
1212 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001213}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001214
1215static struct vmcs *alloc_vmcs_cpu(int cpu)
1216{
1217 int node = cpu_to_node(cpu);
1218 struct page *pages;
1219 struct vmcs *vmcs;
1220
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001221 pages = alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001222 if (!pages)
1223 return NULL;
1224 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001225 memset(vmcs, 0, vmcs_config.size);
1226 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001227 return vmcs;
1228}
1229
1230static struct vmcs *alloc_vmcs(void)
1231{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001232 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001233}
1234
1235static void free_vmcs(struct vmcs *vmcs)
1236{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001237 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001238}
1239
Sam Ravnborg39959582007-06-01 00:47:13 -07001240static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001241{
1242 int cpu;
1243
1244 for_each_online_cpu(cpu)
1245 free_vmcs(per_cpu(vmxarea, cpu));
1246}
1247
Avi Kivity6aa8b732006-12-10 02:21:36 -08001248static __init int alloc_kvm_area(void)
1249{
1250 int cpu;
1251
1252 for_each_online_cpu(cpu) {
1253 struct vmcs *vmcs;
1254
1255 vmcs = alloc_vmcs_cpu(cpu);
1256 if (!vmcs) {
1257 free_kvm_area();
1258 return -ENOMEM;
1259 }
1260
1261 per_cpu(vmxarea, cpu) = vmcs;
1262 }
1263 return 0;
1264}
1265
1266static __init int hardware_setup(void)
1267{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001268 if (setup_vmcs_config(&vmcs_config) < 0)
1269 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001270
1271 if (boot_cpu_has(X86_FEATURE_NX))
1272 kvm_enable_efer_bits(EFER_NX);
1273
Avi Kivity6aa8b732006-12-10 02:21:36 -08001274 return alloc_kvm_area();
1275}
1276
1277static __exit void hardware_unsetup(void)
1278{
1279 free_kvm_area();
1280}
1281
Avi Kivity6aa8b732006-12-10 02:21:36 -08001282static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1283{
1284 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1285
Avi Kivity6af11b92007-03-19 13:18:10 +02001286 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001287 vmcs_write16(sf->selector, save->selector);
1288 vmcs_writel(sf->base, save->base);
1289 vmcs_write32(sf->limit, save->limit);
1290 vmcs_write32(sf->ar_bytes, save->ar);
1291 } else {
1292 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1293 << AR_DPL_SHIFT;
1294 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1295 }
1296}
1297
1298static void enter_pmode(struct kvm_vcpu *vcpu)
1299{
1300 unsigned long flags;
1301
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001302 vcpu->arch.rmode.active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001303
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001304 vmcs_writel(GUEST_TR_BASE, vcpu->arch.rmode.tr.base);
1305 vmcs_write32(GUEST_TR_LIMIT, vcpu->arch.rmode.tr.limit);
1306 vmcs_write32(GUEST_TR_AR_BYTES, vcpu->arch.rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001307
1308 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001309 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001310 flags |= (vcpu->arch.rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001311 vmcs_writel(GUEST_RFLAGS, flags);
1312
Rusty Russell66aee912007-07-17 23:34:16 +10001313 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1314 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001315
1316 update_exception_bitmap(vcpu);
1317
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001318 fix_pmode_dataseg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
1319 fix_pmode_dataseg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
1320 fix_pmode_dataseg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
1321 fix_pmode_dataseg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001322
1323 vmcs_write16(GUEST_SS_SELECTOR, 0);
1324 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1325
1326 vmcs_write16(GUEST_CS_SELECTOR,
1327 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1328 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1329}
1330
Mike Dayd77c26f2007-10-08 09:02:08 -04001331static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001332{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001333 if (!kvm->arch.tss_addr) {
Izik Eiduscbc94022007-10-25 00:29:55 +02001334 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1335 kvm->memslots[0].npages - 3;
1336 return base_gfn << PAGE_SHIFT;
1337 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001338 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001339}
1340
1341static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1342{
1343 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1344
1345 save->selector = vmcs_read16(sf->selector);
1346 save->base = vmcs_readl(sf->base);
1347 save->limit = vmcs_read32(sf->limit);
1348 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001349 vmcs_write16(sf->selector, save->base >> 4);
1350 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001351 vmcs_write32(sf->limit, 0xffff);
1352 vmcs_write32(sf->ar_bytes, 0xf3);
1353}
1354
1355static void enter_rmode(struct kvm_vcpu *vcpu)
1356{
1357 unsigned long flags;
1358
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001359 vcpu->arch.rmode.active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001360
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001361 vcpu->arch.rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001362 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1363
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001364 vcpu->arch.rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001365 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1366
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001367 vcpu->arch.rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001368 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1369
1370 flags = vmcs_readl(GUEST_RFLAGS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001371 vcpu->arch.rmode.save_iopl
1372 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001373
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001374 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001375
1376 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001377 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001378 update_exception_bitmap(vcpu);
1379
1380 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1381 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1382 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1383
1384 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001385 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001386 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1387 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001388 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1389
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001390 fix_rmode_seg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
1391 fix_rmode_seg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
1392 fix_rmode_seg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
1393 fix_rmode_seg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001394
Eddie Dong8668a3c2007-10-10 14:26:45 +08001395 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001396 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001397}
1398
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001399#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001400
1401static void enter_lmode(struct kvm_vcpu *vcpu)
1402{
1403 u32 guest_tr_ar;
1404
1405 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1406 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1407 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001408 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001409 vmcs_write32(GUEST_TR_AR_BYTES,
1410 (guest_tr_ar & ~AR_TYPE_MASK)
1411 | AR_TYPE_BUSY_64_TSS);
1412 }
1413
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001414 vcpu->arch.shadow_efer |= EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001415
Rusty Russell8b9cf982007-07-30 16:31:43 +10001416 find_msr_entry(to_vmx(vcpu), MSR_EFER)->data |= EFER_LMA | EFER_LME;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001417 vmcs_write32(VM_ENTRY_CONTROLS,
1418 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001419 | VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001420}
1421
1422static void exit_lmode(struct kvm_vcpu *vcpu)
1423{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001424 vcpu->arch.shadow_efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001425
1426 vmcs_write32(VM_ENTRY_CONTROLS,
1427 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001428 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001429}
1430
1431#endif
1432
Sheng Yang2384d2b2008-01-17 15:14:33 +08001433static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1434{
1435 vpid_sync_vcpu_all(to_vmx(vcpu));
Sheng Yang4e1096d2008-07-06 19:16:51 +08001436 if (vm_need_ept())
1437 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001438}
1439
Anthony Liguori25c4c272007-04-27 09:29:21 +03001440static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001441{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001442 vcpu->arch.cr4 &= KVM_GUEST_CR4_MASK;
1443 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
Avi Kivity399badf2007-01-05 16:36:38 -08001444}
1445
Sheng Yang14394422008-04-28 12:24:45 +08001446static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1447{
1448 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1449 if (!load_pdptrs(vcpu, vcpu->arch.cr3)) {
1450 printk(KERN_ERR "EPT: Fail to load pdptrs!\n");
1451 return;
1452 }
1453 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1454 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1455 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1456 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1457 }
1458}
1459
1460static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1461
1462static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1463 unsigned long cr0,
1464 struct kvm_vcpu *vcpu)
1465{
1466 if (!(cr0 & X86_CR0_PG)) {
1467 /* From paging/starting to nonpaging */
1468 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001469 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001470 (CPU_BASED_CR3_LOAD_EXITING |
1471 CPU_BASED_CR3_STORE_EXITING));
1472 vcpu->arch.cr0 = cr0;
1473 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1474 *hw_cr0 |= X86_CR0_PE | X86_CR0_PG;
1475 *hw_cr0 &= ~X86_CR0_WP;
1476 } else if (!is_paging(vcpu)) {
1477 /* From nonpaging to paging */
1478 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001479 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001480 ~(CPU_BASED_CR3_LOAD_EXITING |
1481 CPU_BASED_CR3_STORE_EXITING));
1482 vcpu->arch.cr0 = cr0;
1483 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1484 if (!(vcpu->arch.cr0 & X86_CR0_WP))
1485 *hw_cr0 &= ~X86_CR0_WP;
1486 }
1487}
1488
1489static void ept_update_paging_mode_cr4(unsigned long *hw_cr4,
1490 struct kvm_vcpu *vcpu)
1491{
1492 if (!is_paging(vcpu)) {
1493 *hw_cr4 &= ~X86_CR4_PAE;
1494 *hw_cr4 |= X86_CR4_PSE;
1495 } else if (!(vcpu->arch.cr4 & X86_CR4_PAE))
1496 *hw_cr4 &= ~X86_CR4_PAE;
1497}
1498
Avi Kivity6aa8b732006-12-10 02:21:36 -08001499static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1500{
Sheng Yang14394422008-04-28 12:24:45 +08001501 unsigned long hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) |
1502 KVM_VM_CR0_ALWAYS_ON;
1503
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001504 vmx_fpu_deactivate(vcpu);
1505
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001506 if (vcpu->arch.rmode.active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001507 enter_pmode(vcpu);
1508
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001509 if (!vcpu->arch.rmode.active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001510 enter_rmode(vcpu);
1511
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001512#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001513 if (vcpu->arch.shadow_efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10001514 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001515 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10001516 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001517 exit_lmode(vcpu);
1518 }
1519#endif
1520
Sheng Yang14394422008-04-28 12:24:45 +08001521 if (vm_need_ept())
1522 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1523
Avi Kivity6aa8b732006-12-10 02:21:36 -08001524 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001525 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001526 vcpu->arch.cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001527
Rusty Russell707d92f2007-07-17 23:19:08 +10001528 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001529 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001530}
1531
Sheng Yang14394422008-04-28 12:24:45 +08001532static u64 construct_eptp(unsigned long root_hpa)
1533{
1534 u64 eptp;
1535
1536 /* TODO write the value reading from MSR */
1537 eptp = VMX_EPT_DEFAULT_MT |
1538 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1539 eptp |= (root_hpa & PAGE_MASK);
1540
1541 return eptp;
1542}
1543
Avi Kivity6aa8b732006-12-10 02:21:36 -08001544static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1545{
Sheng Yang14394422008-04-28 12:24:45 +08001546 unsigned long guest_cr3;
1547 u64 eptp;
1548
1549 guest_cr3 = cr3;
1550 if (vm_need_ept()) {
1551 eptp = construct_eptp(cr3);
1552 vmcs_write64(EPT_POINTER, eptp);
1553 ept_sync_context(eptp);
1554 ept_load_pdptrs(vcpu);
1555 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
1556 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
1557 }
1558
Sheng Yang2384d2b2008-01-17 15:14:33 +08001559 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001560 vmcs_writel(GUEST_CR3, guest_cr3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001561 if (vcpu->arch.cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001562 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001563}
1564
1565static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1566{
Sheng Yang14394422008-04-28 12:24:45 +08001567 unsigned long hw_cr4 = cr4 | (vcpu->arch.rmode.active ?
1568 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1569
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001570 vcpu->arch.cr4 = cr4;
Sheng Yang14394422008-04-28 12:24:45 +08001571 if (vm_need_ept())
1572 ept_update_paging_mode_cr4(&hw_cr4, vcpu);
1573
1574 vmcs_writel(CR4_READ_SHADOW, cr4);
1575 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001576}
1577
Avi Kivity6aa8b732006-12-10 02:21:36 -08001578static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1579{
Rusty Russell8b9cf982007-07-30 16:31:43 +10001580 struct vcpu_vmx *vmx = to_vmx(vcpu);
1581 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001582
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001583 vcpu->arch.shadow_efer = efer;
Joerg Roedel9f62e192008-01-31 14:57:39 +01001584 if (!msr)
1585 return;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001586 if (efer & EFER_LMA) {
1587 vmcs_write32(VM_ENTRY_CONTROLS,
1588 vmcs_read32(VM_ENTRY_CONTROLS) |
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001589 VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001590 msr->data = efer;
1591
1592 } else {
1593 vmcs_write32(VM_ENTRY_CONTROLS,
1594 vmcs_read32(VM_ENTRY_CONTROLS) &
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001595 ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001596
1597 msr->data = efer & ~EFER_LME;
1598 }
Rusty Russell8b9cf982007-07-30 16:31:43 +10001599 setup_msrs(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001600}
1601
Avi Kivity6aa8b732006-12-10 02:21:36 -08001602static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1603{
1604 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1605
1606 return vmcs_readl(sf->base);
1607}
1608
1609static void vmx_get_segment(struct kvm_vcpu *vcpu,
1610 struct kvm_segment *var, int seg)
1611{
1612 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1613 u32 ar;
1614
1615 var->base = vmcs_readl(sf->base);
1616 var->limit = vmcs_read32(sf->limit);
1617 var->selector = vmcs_read16(sf->selector);
1618 ar = vmcs_read32(sf->ar_bytes);
1619 if (ar & AR_UNUSABLE_MASK)
1620 ar = 0;
1621 var->type = ar & 15;
1622 var->s = (ar >> 4) & 1;
1623 var->dpl = (ar >> 5) & 3;
1624 var->present = (ar >> 7) & 1;
1625 var->avl = (ar >> 12) & 1;
1626 var->l = (ar >> 13) & 1;
1627 var->db = (ar >> 14) & 1;
1628 var->g = (ar >> 15) & 1;
1629 var->unusable = (ar >> 16) & 1;
1630}
1631
Izik Eidus2e4d2652008-03-24 19:38:34 +02001632static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1633{
1634 struct kvm_segment kvm_seg;
1635
1636 if (!(vcpu->arch.cr0 & X86_CR0_PE)) /* if real mode */
1637 return 0;
1638
1639 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1640 return 3;
1641
1642 vmx_get_segment(vcpu, &kvm_seg, VCPU_SREG_CS);
1643 return kvm_seg.selector & 3;
1644}
1645
Avi Kivity653e3102007-05-07 10:55:37 +03001646static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001647{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001648 u32 ar;
1649
Avi Kivity653e3102007-05-07 10:55:37 +03001650 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001651 ar = 1 << 16;
1652 else {
1653 ar = var->type & 15;
1654 ar |= (var->s & 1) << 4;
1655 ar |= (var->dpl & 3) << 5;
1656 ar |= (var->present & 1) << 7;
1657 ar |= (var->avl & 1) << 12;
1658 ar |= (var->l & 1) << 13;
1659 ar |= (var->db & 1) << 14;
1660 ar |= (var->g & 1) << 15;
1661 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001662 if (ar == 0) /* a 0 value means unusable */
1663 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001664
1665 return ar;
1666}
1667
1668static void vmx_set_segment(struct kvm_vcpu *vcpu,
1669 struct kvm_segment *var, int seg)
1670{
1671 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1672 u32 ar;
1673
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001674 if (vcpu->arch.rmode.active && seg == VCPU_SREG_TR) {
1675 vcpu->arch.rmode.tr.selector = var->selector;
1676 vcpu->arch.rmode.tr.base = var->base;
1677 vcpu->arch.rmode.tr.limit = var->limit;
1678 vcpu->arch.rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001679 return;
1680 }
1681 vmcs_writel(sf->base, var->base);
1682 vmcs_write32(sf->limit, var->limit);
1683 vmcs_write16(sf->selector, var->selector);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001684 if (vcpu->arch.rmode.active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001685 /*
1686 * Hack real-mode segments into vm86 compatibility.
1687 */
1688 if (var->base == 0xffff0000 && var->selector == 0xf000)
1689 vmcs_writel(sf->base, 0xf0000);
1690 ar = 0xf3;
1691 } else
1692 ar = vmx_segment_access_rights(var);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001693 vmcs_write32(sf->ar_bytes, ar);
1694}
1695
Avi Kivity6aa8b732006-12-10 02:21:36 -08001696static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1697{
1698 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1699
1700 *db = (ar >> 14) & 1;
1701 *l = (ar >> 13) & 1;
1702}
1703
1704static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1705{
1706 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1707 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1708}
1709
1710static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1711{
1712 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1713 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1714}
1715
1716static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1717{
1718 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1719 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1720}
1721
1722static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1723{
1724 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1725 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1726}
1727
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001728static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1729{
1730 struct kvm_segment var;
1731 u32 ar;
1732
1733 vmx_get_segment(vcpu, &var, seg);
1734 ar = vmx_segment_access_rights(&var);
1735
1736 if (var.base != (var.selector << 4))
1737 return false;
1738 if (var.limit != 0xffff)
1739 return false;
1740 if (ar != 0xf3)
1741 return false;
1742
1743 return true;
1744}
1745
1746static bool code_segment_valid(struct kvm_vcpu *vcpu)
1747{
1748 struct kvm_segment cs;
1749 unsigned int cs_rpl;
1750
1751 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1752 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1753
1754 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1755 return false;
1756 if (!cs.s)
1757 return false;
1758 if (!(~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK))) {
1759 if (cs.dpl > cs_rpl)
1760 return false;
1761 } else if (cs.type & AR_TYPE_CODE_MASK) {
1762 if (cs.dpl != cs_rpl)
1763 return false;
1764 }
1765 if (!cs.present)
1766 return false;
1767
1768 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
1769 return true;
1770}
1771
1772static bool stack_segment_valid(struct kvm_vcpu *vcpu)
1773{
1774 struct kvm_segment ss;
1775 unsigned int ss_rpl;
1776
1777 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1778 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
1779
1780 if ((ss.type != 3) || (ss.type != 7))
1781 return false;
1782 if (!ss.s)
1783 return false;
1784 if (ss.dpl != ss_rpl) /* DPL != RPL */
1785 return false;
1786 if (!ss.present)
1787 return false;
1788
1789 return true;
1790}
1791
1792static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
1793{
1794 struct kvm_segment var;
1795 unsigned int rpl;
1796
1797 vmx_get_segment(vcpu, &var, seg);
1798 rpl = var.selector & SELECTOR_RPL_MASK;
1799
1800 if (!var.s)
1801 return false;
1802 if (!var.present)
1803 return false;
1804 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
1805 if (var.dpl < rpl) /* DPL < RPL */
1806 return false;
1807 }
1808
1809 /* TODO: Add other members to kvm_segment_field to allow checking for other access
1810 * rights flags
1811 */
1812 return true;
1813}
1814
1815static bool tr_valid(struct kvm_vcpu *vcpu)
1816{
1817 struct kvm_segment tr;
1818
1819 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
1820
1821 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
1822 return false;
1823 if ((tr.type != 3) || (tr.type != 11)) /* TODO: Check if guest is in IA32e mode */
1824 return false;
1825 if (!tr.present)
1826 return false;
1827
1828 return true;
1829}
1830
1831static bool ldtr_valid(struct kvm_vcpu *vcpu)
1832{
1833 struct kvm_segment ldtr;
1834
1835 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
1836
1837 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
1838 return false;
1839 if (ldtr.type != 2)
1840 return false;
1841 if (!ldtr.present)
1842 return false;
1843
1844 return true;
1845}
1846
1847static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
1848{
1849 struct kvm_segment cs, ss;
1850
1851 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1852 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1853
1854 return ((cs.selector & SELECTOR_RPL_MASK) ==
1855 (ss.selector & SELECTOR_RPL_MASK));
1856}
1857
1858/*
1859 * Check if guest state is valid. Returns true if valid, false if
1860 * not.
1861 * We assume that registers are always usable
1862 */
1863static bool guest_state_valid(struct kvm_vcpu *vcpu)
1864{
1865 /* real mode guest state checks */
1866 if (!(vcpu->arch.cr0 & X86_CR0_PE)) {
1867 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
1868 return false;
1869 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
1870 return false;
1871 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
1872 return false;
1873 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
1874 return false;
1875 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
1876 return false;
1877 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
1878 return false;
1879 } else {
1880 /* protected mode guest state checks */
1881 if (!cs_ss_rpl_check(vcpu))
1882 return false;
1883 if (!code_segment_valid(vcpu))
1884 return false;
1885 if (!stack_segment_valid(vcpu))
1886 return false;
1887 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
1888 return false;
1889 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
1890 return false;
1891 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
1892 return false;
1893 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
1894 return false;
1895 if (!tr_valid(vcpu))
1896 return false;
1897 if (!ldtr_valid(vcpu))
1898 return false;
1899 }
1900 /* TODO:
1901 * - Add checks on RIP
1902 * - Add checks on RFLAGS
1903 */
1904
1905 return true;
1906}
1907
Mike Dayd77c26f2007-10-08 09:02:08 -04001908static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001909{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001910 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001911 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001912 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02001913 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001914
Izik Eidus195aefd2007-10-01 22:14:18 +02001915 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1916 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001917 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001918 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08001919 r = kvm_write_guest_page(kvm, fn++, &data,
1920 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02001921 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001922 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001923 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
1924 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001925 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001926 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1927 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001928 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001929 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001930 r = kvm_write_guest_page(kvm, fn, &data,
1931 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
1932 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02001933 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001934 goto out;
1935
1936 ret = 1;
1937out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001938 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001939}
1940
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001941static int init_rmode_identity_map(struct kvm *kvm)
1942{
1943 int i, r, ret;
1944 pfn_t identity_map_pfn;
1945 u32 tmp;
1946
1947 if (!vm_need_ept())
1948 return 1;
1949 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
1950 printk(KERN_ERR "EPT: identity-mapping pagetable "
1951 "haven't been allocated!\n");
1952 return 0;
1953 }
1954 if (likely(kvm->arch.ept_identity_pagetable_done))
1955 return 1;
1956 ret = 0;
1957 identity_map_pfn = VMX_EPT_IDENTITY_PAGETABLE_ADDR >> PAGE_SHIFT;
1958 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
1959 if (r < 0)
1960 goto out;
1961 /* Set up identity-mapping pagetable for EPT in real mode */
1962 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
1963 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
1964 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
1965 r = kvm_write_guest_page(kvm, identity_map_pfn,
1966 &tmp, i * sizeof(tmp), sizeof(tmp));
1967 if (r < 0)
1968 goto out;
1969 }
1970 kvm->arch.ept_identity_pagetable_done = true;
1971 ret = 1;
1972out:
1973 return ret;
1974}
1975
Avi Kivity6aa8b732006-12-10 02:21:36 -08001976static void seg_setup(int seg)
1977{
1978 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1979
1980 vmcs_write16(sf->selector, 0);
1981 vmcs_writel(sf->base, 0);
1982 vmcs_write32(sf->limit, 0xffff);
1983 vmcs_write32(sf->ar_bytes, 0x93);
1984}
1985
Sheng Yangf78e0e22007-10-29 09:40:42 +08001986static int alloc_apic_access_page(struct kvm *kvm)
1987{
1988 struct kvm_userspace_memory_region kvm_userspace_mem;
1989 int r = 0;
1990
Izik Eidus72dc67a2008-02-10 18:04:15 +02001991 down_write(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001992 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001993 goto out;
1994 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
1995 kvm_userspace_mem.flags = 0;
1996 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
1997 kvm_userspace_mem.memory_size = PAGE_SIZE;
1998 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
1999 if (r)
2000 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002001
2002 down_read(&current->mm->mmap_sem);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002003 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Izik Eidus72dc67a2008-02-10 18:04:15 +02002004 up_read(&current->mm->mmap_sem);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002005out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02002006 up_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002007 return r;
2008}
2009
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002010static int alloc_identity_pagetable(struct kvm *kvm)
2011{
2012 struct kvm_userspace_memory_region kvm_userspace_mem;
2013 int r = 0;
2014
2015 down_write(&kvm->slots_lock);
2016 if (kvm->arch.ept_identity_pagetable)
2017 goto out;
2018 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2019 kvm_userspace_mem.flags = 0;
2020 kvm_userspace_mem.guest_phys_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
2021 kvm_userspace_mem.memory_size = PAGE_SIZE;
2022 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2023 if (r)
2024 goto out;
2025
2026 down_read(&current->mm->mmap_sem);
2027 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
2028 VMX_EPT_IDENTITY_PAGETABLE_ADDR >> PAGE_SHIFT);
2029 up_read(&current->mm->mmap_sem);
2030out:
2031 up_write(&kvm->slots_lock);
2032 return r;
2033}
2034
Sheng Yang2384d2b2008-01-17 15:14:33 +08002035static void allocate_vpid(struct vcpu_vmx *vmx)
2036{
2037 int vpid;
2038
2039 vmx->vpid = 0;
2040 if (!enable_vpid || !cpu_has_vmx_vpid())
2041 return;
2042 spin_lock(&vmx_vpid_lock);
2043 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2044 if (vpid < VMX_NR_VPIDS) {
2045 vmx->vpid = vpid;
2046 __set_bit(vpid, vmx_vpid_bitmap);
2047 }
2048 spin_unlock(&vmx_vpid_lock);
2049}
2050
Harvey Harrison8b2cf732008-04-27 12:14:13 -07002051static void vmx_disable_intercept_for_msr(struct page *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002052{
2053 void *va;
2054
2055 if (!cpu_has_vmx_msr_bitmap())
2056 return;
2057
2058 /*
2059 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2060 * have the write-low and read-high bitmap offsets the wrong way round.
2061 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2062 */
2063 va = kmap(msr_bitmap);
2064 if (msr <= 0x1fff) {
2065 __clear_bit(msr, va + 0x000); /* read-low */
2066 __clear_bit(msr, va + 0x800); /* write-low */
2067 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2068 msr &= 0x1fff;
2069 __clear_bit(msr, va + 0x400); /* read-high */
2070 __clear_bit(msr, va + 0xc00); /* write-high */
2071 }
2072 kunmap(msr_bitmap);
2073}
2074
Avi Kivity6aa8b732006-12-10 02:21:36 -08002075/*
2076 * Sets up the vmcs for emulated real mode.
2077 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002078static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002079{
2080 u32 host_sysenter_cs;
2081 u32 junk;
2082 unsigned long a;
2083 struct descriptor_table dt;
2084 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002085 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002086 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002087
Avi Kivity6aa8b732006-12-10 02:21:36 -08002088 /* I/O */
He, Qingfdef3ad2007-04-30 09:45:24 +03002089 vmcs_write64(IO_BITMAP_A, page_to_phys(vmx_io_bitmap_a));
2090 vmcs_write64(IO_BITMAP_B, page_to_phys(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002091
Sheng Yang25c5f222008-03-28 13:18:56 +08002092 if (cpu_has_vmx_msr_bitmap())
2093 vmcs_write64(MSR_BITMAP, page_to_phys(vmx_msr_bitmap));
2094
Avi Kivity6aa8b732006-12-10 02:21:36 -08002095 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2096
Avi Kivity6aa8b732006-12-10 02:21:36 -08002097 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002098 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2099 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002100
2101 exec_control = vmcs_config.cpu_based_exec_ctrl;
2102 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2103 exec_control &= ~CPU_BASED_TPR_SHADOW;
2104#ifdef CONFIG_X86_64
2105 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2106 CPU_BASED_CR8_LOAD_EXITING;
2107#endif
2108 }
Sheng Yangd56f5462008-04-25 10:13:16 +08002109 if (!vm_need_ept())
2110 exec_control |= CPU_BASED_CR3_STORE_EXITING |
2111 CPU_BASED_CR3_LOAD_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002112 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002113
Sheng Yang83ff3b92007-11-21 14:33:25 +08002114 if (cpu_has_secondary_exec_ctrls()) {
2115 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2116 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2117 exec_control &=
2118 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002119 if (vmx->vpid == 0)
2120 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Sheng Yangd56f5462008-04-25 10:13:16 +08002121 if (!vm_need_ept())
2122 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002123 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2124 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002125
Avi Kivityc7addb92007-09-16 18:58:32 +02002126 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2127 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002128 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2129
2130 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2131 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2132 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2133
2134 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2135 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2136 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002137 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2138 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002139 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002140#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002141 rdmsrl(MSR_FS_BASE, a);
2142 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2143 rdmsrl(MSR_GS_BASE, a);
2144 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2145#else
2146 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2147 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2148#endif
2149
2150 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2151
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002152 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002153 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2154
Mike Dayd77c26f2007-10-08 09:02:08 -04002155 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002156 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002157 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2158 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2159 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002160
2161 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2162 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2163 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2164 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2165 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2166 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2167
Avi Kivity6aa8b732006-12-10 02:21:36 -08002168 for (i = 0; i < NR_VMX_MSR; ++i) {
2169 u32 index = vmx_msr_index[i];
2170 u32 data_low, data_high;
2171 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002172 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002173
2174 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2175 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002176 if (wrmsr_safe(index, data_low, data_high) < 0)
2177 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002178 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002179 vmx->host_msrs[j].index = index;
2180 vmx->host_msrs[j].reserved = 0;
2181 vmx->host_msrs[j].data = data;
2182 vmx->guest_msrs[j] = vmx->host_msrs[j];
2183 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002184 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002185
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002186 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002187
2188 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002189 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2190
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002191 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
2192 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
2193
Sheng Yangf78e0e22007-10-29 09:40:42 +08002194
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002195 return 0;
2196}
2197
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002198static int init_rmode(struct kvm *kvm)
2199{
2200 if (!init_rmode_tss(kvm))
2201 return 0;
2202 if (!init_rmode_identity_map(kvm))
2203 return 0;
2204 return 1;
2205}
2206
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002207static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2208{
2209 struct vcpu_vmx *vmx = to_vmx(vcpu);
2210 u64 msr;
2211 int ret;
2212
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002213 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002214 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002215 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002216 ret = -ENOMEM;
2217 goto out;
2218 }
2219
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002220 vmx->vcpu.arch.rmode.active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002221
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002222 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002223 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002224 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
2225 if (vmx->vcpu.vcpu_id == 0)
2226 msr |= MSR_IA32_APICBASE_BSP;
2227 kvm_set_apic_base(&vmx->vcpu, msr);
2228
2229 fx_init(&vmx->vcpu);
2230
2231 /*
2232 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2233 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2234 */
2235 if (vmx->vcpu.vcpu_id == 0) {
2236 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2237 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2238 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002239 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2240 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002241 }
2242 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
2243 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
2244
2245 seg_setup(VCPU_SREG_DS);
2246 seg_setup(VCPU_SREG_ES);
2247 seg_setup(VCPU_SREG_FS);
2248 seg_setup(VCPU_SREG_GS);
2249 seg_setup(VCPU_SREG_SS);
2250
2251 vmcs_write16(GUEST_TR_SELECTOR, 0);
2252 vmcs_writel(GUEST_TR_BASE, 0);
2253 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2254 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2255
2256 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2257 vmcs_writel(GUEST_LDTR_BASE, 0);
2258 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2259 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2260
2261 vmcs_write32(GUEST_SYSENTER_CS, 0);
2262 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2263 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2264
2265 vmcs_writel(GUEST_RFLAGS, 0x02);
2266 if (vmx->vcpu.vcpu_id == 0)
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002267 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002268 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002269 kvm_rip_write(vcpu, 0);
2270 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002271
2272 /* todo: dr0 = dr1 = dr2 = dr3 = 0; dr6 = 0xffff0ff0 */
2273 vmcs_writel(GUEST_DR7, 0x400);
2274
2275 vmcs_writel(GUEST_GDTR_BASE, 0);
2276 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2277
2278 vmcs_writel(GUEST_IDTR_BASE, 0);
2279 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2280
2281 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2282 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2283 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2284
2285 guest_write_tsc(0);
2286
2287 /* Special registers */
2288 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2289
2290 setup_msrs(vmx);
2291
Avi Kivity6aa8b732006-12-10 02:21:36 -08002292 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2293
Sheng Yangf78e0e22007-10-29 09:40:42 +08002294 if (cpu_has_vmx_tpr_shadow()) {
2295 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2296 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2297 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002298 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002299 vmcs_write32(TPR_THRESHOLD, 0);
2300 }
2301
2302 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2303 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002304 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002305
Sheng Yang2384d2b2008-01-17 15:14:33 +08002306 if (vmx->vpid != 0)
2307 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2308
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002309 vmx->vcpu.arch.cr0 = 0x60000010;
2310 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002311 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002312 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002313 vmx_fpu_activate(&vmx->vcpu);
2314 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002315
Sheng Yang2384d2b2008-01-17 15:14:33 +08002316 vpid_sync_vcpu_all(vmx);
2317
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002318 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002319
Avi Kivity6aa8b732006-12-10 02:21:36 -08002320out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002321 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002322 return ret;
2323}
2324
Eddie Dong85f455f2007-07-06 12:20:49 +03002325static void vmx_inject_irq(struct kvm_vcpu *vcpu, int irq)
2326{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002327 struct vcpu_vmx *vmx = to_vmx(vcpu);
2328
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002329 KVMTRACE_1D(INJ_VIRQ, vcpu, (u32)irq, handler);
2330
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002331 if (vcpu->arch.rmode.active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002332 vmx->rmode.irq.pending = true;
2333 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002334 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Avi Kivity9c5623e2007-11-08 18:19:20 +02002335 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2336 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2337 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002338 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002339 return;
2340 }
2341 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2342 irq | INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
2343}
2344
Sheng Yangf08864b2008-05-15 18:23:25 +08002345static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2346{
2347 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2348 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002349}
2350
Avi Kivity6aa8b732006-12-10 02:21:36 -08002351static void kvm_do_inject_irq(struct kvm_vcpu *vcpu)
2352{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002353 int word_index = __ffs(vcpu->arch.irq_summary);
2354 int bit_index = __ffs(vcpu->arch.irq_pending[word_index]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002355 int irq = word_index * BITS_PER_LONG + bit_index;
2356
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002357 clear_bit(bit_index, &vcpu->arch.irq_pending[word_index]);
2358 if (!vcpu->arch.irq_pending[word_index])
2359 clear_bit(word_index, &vcpu->arch.irq_summary);
Avi Kivityecfc79c2008-08-14 11:13:16 +03002360 kvm_queue_interrupt(vcpu, irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002361}
2362
Dor Laorc1150d82007-01-05 16:36:24 -08002363
2364static void do_interrupt_requests(struct kvm_vcpu *vcpu,
2365 struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002366{
Dor Laorc1150d82007-01-05 16:36:24 -08002367 u32 cpu_based_vm_exec_control;
2368
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002369 vcpu->arch.interrupt_window_open =
Dor Laorc1150d82007-01-05 16:36:24 -08002370 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2371 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);
2372
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002373 if (vcpu->arch.interrupt_window_open &&
Avi Kivityecfc79c2008-08-14 11:13:16 +03002374 vcpu->arch.irq_summary && !vcpu->arch.interrupt.pending)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002375 kvm_do_inject_irq(vcpu);
Dor Laorc1150d82007-01-05 16:36:24 -08002376
Avi Kivityecfc79c2008-08-14 11:13:16 +03002377 if (vcpu->arch.interrupt_window_open && vcpu->arch.interrupt.pending)
2378 vmx_inject_irq(vcpu, vcpu->arch.interrupt.nr);
2379
Dor Laorc1150d82007-01-05 16:36:24 -08002380 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002381 if (!vcpu->arch.interrupt_window_open &&
2382 (vcpu->arch.irq_summary || kvm_run->request_interrupt_window))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002383 /*
2384 * Interrupts blocked. Wait for unblock.
2385 */
Dor Laorc1150d82007-01-05 16:36:24 -08002386 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2387 else
2388 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2389 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002390}
2391
Izik Eiduscbc94022007-10-25 00:29:55 +02002392static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2393{
2394 int ret;
2395 struct kvm_userspace_memory_region tss_mem = {
2396 .slot = 8,
2397 .guest_phys_addr = addr,
2398 .memory_size = PAGE_SIZE * 3,
2399 .flags = 0,
2400 };
2401
2402 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2403 if (ret)
2404 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002405 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002406 return 0;
2407}
2408
Avi Kivity6aa8b732006-12-10 02:21:36 -08002409static void kvm_guest_debug_pre(struct kvm_vcpu *vcpu)
2410{
2411 struct kvm_guest_debug *dbg = &vcpu->guest_debug;
2412
2413 set_debugreg(dbg->bp[0], 0);
2414 set_debugreg(dbg->bp[1], 1);
2415 set_debugreg(dbg->bp[2], 2);
2416 set_debugreg(dbg->bp[3], 3);
2417
2418 if (dbg->singlestep) {
2419 unsigned long flags;
2420
2421 flags = vmcs_readl(GUEST_RFLAGS);
2422 flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
2423 vmcs_writel(GUEST_RFLAGS, flags);
2424 }
2425}
2426
2427static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2428 int vec, u32 err_code)
2429{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002430 /*
2431 * Instruction with address size override prefix opcode 0x67
2432 * Cause the #SS fault with 0 error code in VM86 mode.
2433 */
2434 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Laurent Vivier34273182007-09-18 11:27:37 +02002435 if (emulate_instruction(vcpu, NULL, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002436 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002437 /*
2438 * Forward all other exceptions that are valid in real mode.
2439 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2440 * the required debugging infrastructure rework.
2441 */
2442 switch (vec) {
2443 case DE_VECTOR:
2444 case DB_VECTOR:
2445 case BP_VECTOR:
2446 case OF_VECTOR:
2447 case BR_VECTOR:
2448 case UD_VECTOR:
2449 case DF_VECTOR:
2450 case SS_VECTOR:
2451 case GP_VECTOR:
2452 case MF_VECTOR:
2453 kvm_queue_exception(vcpu, vec);
2454 return 1;
2455 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002456 return 0;
2457}
2458
2459static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2460{
Avi Kivity1155f762007-11-22 11:30:47 +02002461 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002462 u32 intr_info, error_code;
2463 unsigned long cr2, rip;
2464 u32 vect_info;
2465 enum emulation_result er;
2466
Avi Kivity1155f762007-11-22 11:30:47 +02002467 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002468 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2469
2470 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04002471 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002472 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002473 "intr info 0x%x\n", __func__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002474
Eddie Dong85f455f2007-07-06 12:20:49 +03002475 if (!irqchip_in_kernel(vcpu->kvm) && is_external_interrupt(vect_info)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002476 int irq = vect_info & VECTORING_INFO_VECTOR_MASK;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002477 set_bit(irq, vcpu->arch.irq_pending);
2478 set_bit(irq / BITS_PER_LONG, &vcpu->arch.irq_summary);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002479 }
2480
Avi Kivity1b6269d2007-10-09 12:12:19 +02002481 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
2482 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002483
2484 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002485 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002486 return 1;
2487 }
2488
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002489 if (is_invalid_opcode(intr_info)) {
Sheng Yang571008d2008-01-02 14:49:22 +08002490 er = emulate_instruction(vcpu, kvm_run, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002491 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002492 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002493 return 1;
2494 }
2495
Avi Kivity6aa8b732006-12-10 02:21:36 -08002496 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002497 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002498 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002499 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2500 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002501 /* EPT won't cause page fault directly */
2502 if (vm_need_ept())
2503 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002504 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002505 KVMTRACE_3D(PAGE_FAULT, vcpu, error_code, (u32)cr2,
2506 (u32)((u64)cr2 >> 32), handler);
Avi Kivityf7d92382008-07-03 16:14:28 +03002507 if (vcpu->arch.interrupt.pending || vcpu->arch.exception.pending)
Avi Kivity577bdc42008-07-19 08:57:05 +03002508 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002509 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002510 }
2511
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002512 if (vcpu->arch.rmode.active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002513 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002514 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002515 if (vcpu->arch.halt_request) {
2516 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002517 return kvm_emulate_halt(vcpu);
2518 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002519 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002520 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002521
Mike Dayd77c26f2007-10-08 09:02:08 -04002522 if ((intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK)) ==
2523 (INTR_TYPE_EXCEPTION | 1)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002524 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2525 return 0;
2526 }
2527 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2528 kvm_run->ex.exception = intr_info & INTR_INFO_VECTOR_MASK;
2529 kvm_run->ex.error_code = error_code;
2530 return 0;
2531}
2532
2533static int handle_external_interrupt(struct kvm_vcpu *vcpu,
2534 struct kvm_run *kvm_run)
2535{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002536 ++vcpu->stat.irq_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002537 KVMTRACE_1D(INTR, vcpu, vmcs_read32(VM_EXIT_INTR_INFO), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002538 return 1;
2539}
2540
Avi Kivity988ad742007-02-12 00:54:36 -08002541static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2542{
2543 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2544 return 0;
2545}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002546
Avi Kivity6aa8b732006-12-10 02:21:36 -08002547static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2548{
He, Qingbfdaab02007-09-12 14:18:28 +08002549 unsigned long exit_qualification;
Avi Kivity039576c2007-03-20 12:46:50 +02002550 int size, down, in, string, rep;
2551 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002552
Avi Kivity1165f5f2007-04-19 17:27:43 +03002553 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002554 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002555 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002556
2557 if (string) {
Laurent Vivier34273182007-09-18 11:27:37 +02002558 if (emulate_instruction(vcpu,
2559 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002560 return 0;
2561 return 1;
2562 }
2563
2564 size = (exit_qualification & 7) + 1;
2565 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002566 down = (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_DF) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002567 rep = (exit_qualification & 32) != 0;
2568 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002569
Laurent Vivier3090dd72007-08-05 10:43:32 +03002570 return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002571}
2572
Ingo Molnar102d8322007-02-19 14:37:47 +02002573static void
2574vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2575{
2576 /*
2577 * Patch in the VMCALL instruction:
2578 */
2579 hypercall[0] = 0x0f;
2580 hypercall[1] = 0x01;
2581 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002582}
2583
Avi Kivity6aa8b732006-12-10 02:21:36 -08002584static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2585{
He, Qingbfdaab02007-09-12 14:18:28 +08002586 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002587 int cr;
2588 int reg;
2589
He, Qingbfdaab02007-09-12 14:18:28 +08002590 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002591 cr = exit_qualification & 15;
2592 reg = (exit_qualification >> 8) & 15;
2593 switch ((exit_qualification >> 4) & 3) {
2594 case 0: /* mov to cr */
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002595 KVMTRACE_3D(CR_WRITE, vcpu, (u32)cr,
2596 (u32)kvm_register_read(vcpu, reg),
2597 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
2598 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002599 switch (cr) {
2600 case 0:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002601 kvm_set_cr0(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002602 skip_emulated_instruction(vcpu);
2603 return 1;
2604 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002605 kvm_set_cr3(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002606 skip_emulated_instruction(vcpu);
2607 return 1;
2608 case 4:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002609 kvm_set_cr4(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002610 skip_emulated_instruction(vcpu);
2611 return 1;
2612 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002613 kvm_set_cr8(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002614 skip_emulated_instruction(vcpu);
Avi Kivitye5314062007-12-06 16:32:45 +02002615 if (irqchip_in_kernel(vcpu->kvm))
2616 return 1;
Yang, Sheng253abde2007-08-16 13:01:00 +03002617 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
2618 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002619 };
2620 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002621 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002622 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002623 vcpu->arch.cr0 &= ~X86_CR0_TS;
2624 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002625 vmx_fpu_activate(vcpu);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002626 KVMTRACE_0D(CLTS, vcpu, handler);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002627 skip_emulated_instruction(vcpu);
2628 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002629 case 1: /*mov from cr*/
2630 switch (cr) {
2631 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002632 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002633 KVMTRACE_3D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002634 (u32)kvm_register_read(vcpu, reg),
2635 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002636 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002637 skip_emulated_instruction(vcpu);
2638 return 1;
2639 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002640 kvm_register_write(vcpu, reg, kvm_get_cr8(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002641 KVMTRACE_2D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002642 (u32)kvm_register_read(vcpu, reg), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002643 skip_emulated_instruction(vcpu);
2644 return 1;
2645 }
2646 break;
2647 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002648 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002649
2650 skip_emulated_instruction(vcpu);
2651 return 1;
2652 default:
2653 break;
2654 }
2655 kvm_run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002656 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002657 (int)(exit_qualification >> 4) & 3, cr);
2658 return 0;
2659}
2660
2661static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2662{
He, Qingbfdaab02007-09-12 14:18:28 +08002663 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002664 unsigned long val;
2665 int dr, reg;
2666
2667 /*
2668 * FIXME: this code assumes the host is debugging the guest.
2669 * need to deal with guest debugging itself too.
2670 */
He, Qingbfdaab02007-09-12 14:18:28 +08002671 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002672 dr = exit_qualification & 7;
2673 reg = (exit_qualification >> 8) & 15;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002674 if (exit_qualification & 16) {
2675 /* mov from dr */
2676 switch (dr) {
2677 case 6:
2678 val = 0xffff0ff0;
2679 break;
2680 case 7:
2681 val = 0x400;
2682 break;
2683 default:
2684 val = 0;
2685 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002686 kvm_register_write(vcpu, reg, val);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002687 KVMTRACE_2D(DR_READ, vcpu, (u32)dr, (u32)val, handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002688 } else {
2689 /* mov to dr */
2690 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002691 skip_emulated_instruction(vcpu);
2692 return 1;
2693}
2694
2695static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2696{
Avi Kivity06465c52007-02-28 20:46:53 +02002697 kvm_emulate_cpuid(vcpu);
2698 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002699}
2700
2701static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2702{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002703 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08002704 u64 data;
2705
2706 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002707 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002708 return 1;
2709 }
2710
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002711 KVMTRACE_3D(MSR_READ, vcpu, ecx, (u32)data, (u32)(data >> 32),
2712 handler);
2713
Avi Kivity6aa8b732006-12-10 02:21:36 -08002714 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002715 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
2716 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002717 skip_emulated_instruction(vcpu);
2718 return 1;
2719}
2720
2721static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2722{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002723 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
2724 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
2725 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002726
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002727 KVMTRACE_3D(MSR_WRITE, vcpu, ecx, (u32)data, (u32)(data >> 32),
2728 handler);
2729
Avi Kivity6aa8b732006-12-10 02:21:36 -08002730 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002731 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002732 return 1;
2733 }
2734
2735 skip_emulated_instruction(vcpu);
2736 return 1;
2737}
2738
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002739static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
2740 struct kvm_run *kvm_run)
2741{
2742 return 1;
2743}
2744
Avi Kivity6aa8b732006-12-10 02:21:36 -08002745static int handle_interrupt_window(struct kvm_vcpu *vcpu,
2746 struct kvm_run *kvm_run)
2747{
Eddie Dong85f455f2007-07-06 12:20:49 +03002748 u32 cpu_based_vm_exec_control;
2749
2750 /* clear pending irq */
2751 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2752 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2753 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002754
2755 KVMTRACE_0D(PEND_INTR, vcpu, handler);
2756
Dor Laorc1150d82007-01-05 16:36:24 -08002757 /*
2758 * If the user space waits to inject interrupts, exit as soon as
2759 * possible
2760 */
2761 if (kvm_run->request_interrupt_window &&
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002762 !vcpu->arch.irq_summary) {
Dor Laorc1150d82007-01-05 16:36:24 -08002763 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Avi Kivity1165f5f2007-04-19 17:27:43 +03002764 ++vcpu->stat.irq_window_exits;
Dor Laorc1150d82007-01-05 16:36:24 -08002765 return 0;
2766 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002767 return 1;
2768}
2769
2770static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2771{
2772 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03002773 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002774}
2775
Ingo Molnarc21415e2007-02-19 14:37:47 +02002776static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2777{
Dor Laor510043d2007-02-19 18:25:43 +02002778 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002779 kvm_emulate_hypercall(vcpu);
2780 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02002781}
2782
Eddie Donge5edaa02007-11-11 12:28:35 +02002783static int handle_wbinvd(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2784{
2785 skip_emulated_instruction(vcpu);
2786 /* TODO: Add support for VT-d/pass-through device */
2787 return 1;
2788}
2789
Sheng Yangf78e0e22007-10-29 09:40:42 +08002790static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2791{
2792 u64 exit_qualification;
2793 enum emulation_result er;
2794 unsigned long offset;
2795
2796 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
2797 offset = exit_qualification & 0xffful;
2798
2799 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
2800
2801 if (er != EMULATE_DONE) {
2802 printk(KERN_ERR
2803 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
2804 offset);
2805 return -ENOTSUPP;
2806 }
2807 return 1;
2808}
2809
Izik Eidus37817f22008-03-24 23:14:53 +02002810static int handle_task_switch(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2811{
2812 unsigned long exit_qualification;
2813 u16 tss_selector;
2814 int reason;
2815
2816 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
2817
2818 reason = (u32)exit_qualification >> 30;
2819 tss_selector = exit_qualification;
2820
2821 return kvm_task_switch(vcpu, tss_selector, reason);
2822}
2823
Sheng Yang14394422008-04-28 12:24:45 +08002824static int handle_ept_violation(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2825{
2826 u64 exit_qualification;
2827 enum emulation_result er;
2828 gpa_t gpa;
2829 unsigned long hva;
2830 int gla_validity;
2831 int r;
2832
2833 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
2834
2835 if (exit_qualification & (1 << 6)) {
2836 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
2837 return -ENOTSUPP;
2838 }
2839
2840 gla_validity = (exit_qualification >> 7) & 0x3;
2841 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
2842 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
2843 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
2844 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
2845 (long unsigned int)vmcs_read64(GUEST_LINEAR_ADDRESS));
2846 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
2847 (long unsigned int)exit_qualification);
2848 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
2849 kvm_run->hw.hardware_exit_reason = 0;
2850 return -ENOTSUPP;
2851 }
2852
2853 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
2854 hva = gfn_to_hva(vcpu->kvm, gpa >> PAGE_SHIFT);
2855 if (!kvm_is_error_hva(hva)) {
2856 r = kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
2857 if (r < 0) {
2858 printk(KERN_ERR "EPT: Not enough memory!\n");
2859 return -ENOMEM;
2860 }
2861 return 1;
2862 } else {
2863 /* must be MMIO */
2864 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
2865
2866 if (er == EMULATE_FAIL) {
2867 printk(KERN_ERR
2868 "EPT: Fail to handle EPT violation vmexit!er is %d\n",
2869 er);
2870 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
2871 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
2872 (long unsigned int)vmcs_read64(GUEST_LINEAR_ADDRESS));
2873 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
2874 (long unsigned int)exit_qualification);
2875 return -ENOTSUPP;
2876 } else if (er == EMULATE_DO_MMIO)
2877 return 0;
2878 }
2879 return 1;
2880}
2881
Sheng Yangf08864b2008-05-15 18:23:25 +08002882static int handle_nmi_window(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2883{
2884 u32 cpu_based_vm_exec_control;
2885
2886 /* clear pending NMI */
2887 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2888 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
2889 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2890 ++vcpu->stat.nmi_window_exits;
2891
2892 return 1;
2893}
2894
Avi Kivity6aa8b732006-12-10 02:21:36 -08002895/*
2896 * The exit handlers return 1 if the exit was handled fully and guest execution
2897 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
2898 * to be done to userspace and return 0.
2899 */
2900static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
2901 struct kvm_run *kvm_run) = {
2902 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
2903 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08002904 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08002905 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002906 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002907 [EXIT_REASON_CR_ACCESS] = handle_cr,
2908 [EXIT_REASON_DR_ACCESS] = handle_dr,
2909 [EXIT_REASON_CPUID] = handle_cpuid,
2910 [EXIT_REASON_MSR_READ] = handle_rdmsr,
2911 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
2912 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
2913 [EXIT_REASON_HLT] = handle_halt,
Ingo Molnarc21415e2007-02-19 14:37:47 +02002914 [EXIT_REASON_VMCALL] = handle_vmcall,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002915 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
2916 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02002917 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02002918 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Sheng Yang14394422008-04-28 12:24:45 +08002919 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
Avi Kivity6aa8b732006-12-10 02:21:36 -08002920};
2921
2922static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04002923 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002924
2925/*
2926 * The guest has exited. See if we can fix it or if we need userspace
2927 * assistance.
2928 */
2929static int kvm_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
2930{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002931 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity29bd8a72007-09-10 17:27:03 +03002932 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1155f762007-11-22 11:30:47 +02002933 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03002934
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002935 KVMTRACE_3D(VMEXIT, vcpu, exit_reason, (u32)kvm_rip_read(vcpu),
2936 (u32)((u64)kvm_rip_read(vcpu) >> 32), entryexit);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002937
Sheng Yang14394422008-04-28 12:24:45 +08002938 /* Access CR3 don't cause VMExit in paging mode, so we need
2939 * to sync with guest real CR3. */
2940 if (vm_need_ept() && is_paging(vcpu)) {
2941 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2942 ept_load_pdptrs(vcpu);
2943 }
2944
Avi Kivity29bd8a72007-09-10 17:27:03 +03002945 if (unlikely(vmx->fail)) {
2946 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
2947 kvm_run->fail_entry.hardware_entry_failure_reason
2948 = vmcs_read32(VM_INSTRUCTION_ERROR);
2949 return 0;
2950 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002951
Mike Dayd77c26f2007-10-08 09:02:08 -04002952 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08002953 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
2954 exit_reason != EXIT_REASON_EPT_VIOLATION))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002955 printk(KERN_WARNING "%s: unexpected, valid vectoring info and "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002956 "exit reason is 0x%x\n", __func__, exit_reason);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002957 if (exit_reason < kvm_vmx_max_exit_handlers
2958 && kvm_vmx_exit_handlers[exit_reason])
2959 return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
2960 else {
2961 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
2962 kvm_run->hw.hardware_exit_reason = exit_reason;
2963 }
2964 return 0;
2965}
2966
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002967static void update_tpr_threshold(struct kvm_vcpu *vcpu)
2968{
2969 int max_irr, tpr;
2970
2971 if (!vm_need_tpr_shadow(vcpu->kvm))
2972 return;
2973
2974 if (!kvm_lapic_enabled(vcpu) ||
2975 ((max_irr = kvm_lapic_find_highest_irr(vcpu)) == -1)) {
2976 vmcs_write32(TPR_THRESHOLD, 0);
2977 return;
2978 }
2979
2980 tpr = (kvm_lapic_get_cr8(vcpu) & 0x0f) << 4;
2981 vmcs_write32(TPR_THRESHOLD, (max_irr > tpr) ? tpr >> 4 : max_irr >> 4);
2982}
2983
Eddie Dong85f455f2007-07-06 12:20:49 +03002984static void enable_irq_window(struct kvm_vcpu *vcpu)
2985{
2986 u32 cpu_based_vm_exec_control;
2987
2988 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2989 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2990 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2991}
2992
Sheng Yangf08864b2008-05-15 18:23:25 +08002993static void enable_nmi_window(struct kvm_vcpu *vcpu)
2994{
2995 u32 cpu_based_vm_exec_control;
2996
2997 if (!cpu_has_virtual_nmis())
2998 return;
2999
3000 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3001 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
3002 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3003}
3004
3005static int vmx_nmi_enabled(struct kvm_vcpu *vcpu)
3006{
3007 u32 guest_intr = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
3008 return !(guest_intr & (GUEST_INTR_STATE_NMI |
3009 GUEST_INTR_STATE_MOV_SS |
3010 GUEST_INTR_STATE_STI));
3011}
3012
3013static int vmx_irq_enabled(struct kvm_vcpu *vcpu)
3014{
3015 u32 guest_intr = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
3016 return (!(guest_intr & (GUEST_INTR_STATE_MOV_SS |
3017 GUEST_INTR_STATE_STI)) &&
3018 (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF));
3019}
3020
3021static void enable_intr_window(struct kvm_vcpu *vcpu)
3022{
3023 if (vcpu->arch.nmi_pending)
3024 enable_nmi_window(vcpu);
3025 else if (kvm_cpu_has_interrupt(vcpu))
3026 enable_irq_window(vcpu);
3027}
3028
Avi Kivitycf393f72008-07-01 16:20:21 +03003029static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3030{
3031 u32 exit_intr_info;
Avi Kivity668f6122008-07-02 09:28:55 +03003032 u32 idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003033 bool unblock_nmi;
3034 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003035 int type;
3036 bool idtv_info_valid;
Avi Kivity35920a32008-07-03 14:50:12 +03003037 u32 error;
Avi Kivitycf393f72008-07-01 16:20:21 +03003038
3039 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
3040 if (cpu_has_virtual_nmis()) {
3041 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3042 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3043 /*
3044 * SDM 3: 25.7.1.2
3045 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3046 * a guest IRET fault.
3047 */
3048 if (unblock_nmi && vector != DF_VECTOR)
3049 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3050 GUEST_INTR_STATE_NMI);
3051 }
Avi Kivity668f6122008-07-02 09:28:55 +03003052
3053 idt_vectoring_info = vmx->idt_vectoring_info;
3054 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3055 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3056 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
3057 if (vmx->vcpu.arch.nmi_injected) {
3058 /*
3059 * SDM 3: 25.7.1.2
3060 * Clear bit "block by NMI" before VM entry if a NMI delivery
3061 * faulted.
3062 */
3063 if (idtv_info_valid && type == INTR_TYPE_NMI_INTR)
3064 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3065 GUEST_INTR_STATE_NMI);
3066 else
3067 vmx->vcpu.arch.nmi_injected = false;
3068 }
Avi Kivity35920a32008-07-03 14:50:12 +03003069 kvm_clear_exception_queue(&vmx->vcpu);
3070 if (idtv_info_valid && type == INTR_TYPE_EXCEPTION) {
3071 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
3072 error = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3073 kvm_queue_exception_e(&vmx->vcpu, vector, error);
3074 } else
3075 kvm_queue_exception(&vmx->vcpu, vector);
3076 vmx->idt_vectoring_info = 0;
3077 }
Avi Kivityf7d92382008-07-03 16:14:28 +03003078 kvm_clear_interrupt_queue(&vmx->vcpu);
3079 if (idtv_info_valid && type == INTR_TYPE_EXT_INTR) {
3080 kvm_queue_interrupt(&vmx->vcpu, vector);
3081 vmx->idt_vectoring_info = 0;
3082 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003083}
3084
Eddie Dong85f455f2007-07-06 12:20:49 +03003085static void vmx_intr_assist(struct kvm_vcpu *vcpu)
3086{
Avi Kivityf7d92382008-07-03 16:14:28 +03003087 u32 intr_info_field;
Eddie Dong85f455f2007-07-06 12:20:49 +03003088
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003089 update_tpr_threshold(vcpu);
3090
Eddie Dong85f455f2007-07-06 12:20:49 +03003091 intr_info_field = vmcs_read32(VM_ENTRY_INTR_INFO_FIELD);
Sheng Yangf08864b2008-05-15 18:23:25 +08003092 if (cpu_has_virtual_nmis()) {
Avi Kivity668f6122008-07-02 09:28:55 +03003093 if (vcpu->arch.nmi_pending && !vcpu->arch.nmi_injected) {
3094 if (vmx_nmi_enabled(vcpu)) {
3095 vcpu->arch.nmi_pending = false;
3096 vcpu->arch.nmi_injected = true;
3097 } else {
3098 enable_intr_window(vcpu);
3099 return;
3100 }
3101 }
3102 if (vcpu->arch.nmi_injected) {
3103 vmx_inject_nmi(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08003104 enable_intr_window(vcpu);
3105 return;
3106 }
Sheng Yangf08864b2008-05-15 18:23:25 +08003107 }
Avi Kivityf7d92382008-07-03 16:14:28 +03003108 if (!vcpu->arch.interrupt.pending && kvm_cpu_has_interrupt(vcpu)) {
3109 if (vmx_irq_enabled(vcpu))
3110 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu));
3111 else
3112 enable_irq_window(vcpu);
3113 }
3114 if (vcpu->arch.interrupt.pending) {
3115 vmx_inject_irq(vcpu, vcpu->arch.interrupt.nr);
3116 kvm_timer_intr_post(vcpu, vcpu->arch.interrupt.nr);
3117 }
Eddie Dong85f455f2007-07-06 12:20:49 +03003118}
3119
Avi Kivity9c8cba32007-11-22 11:42:59 +02003120/*
3121 * Failure to inject an interrupt should give us the information
3122 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3123 * when fetching the interrupt redirection bitmap in the real-mode
3124 * tss, this doesn't happen. So we do it ourselves.
3125 */
3126static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3127{
3128 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003129 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003130 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003131 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003132 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3133 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3134 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3135 return;
3136 }
3137 vmx->idt_vectoring_info =
3138 VECTORING_INFO_VALID_MASK
3139 | INTR_TYPE_EXT_INTR
3140 | vmx->rmode.irq.vector;
3141}
3142
Avi Kivityc8019492008-07-14 14:44:59 +03003143#ifdef CONFIG_X86_64
3144#define R "r"
3145#define Q "q"
3146#else
3147#define R "e"
3148#define Q "l"
3149#endif
3150
Avi Kivity04d2cc72007-09-10 18:10:54 +03003151static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003152{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003153 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1b6269d2007-10-09 12:12:19 +02003154 u32 intr_info;
Avi Kivitye6adf282007-04-30 16:07:54 +03003155
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003156 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3157 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3158 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3159 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3160
Avi Kivitye6adf282007-04-30 16:07:54 +03003161 /*
3162 * Loading guest fpu may have cleared host cr0.ts
3163 */
3164 vmcs_writel(HOST_CR0, read_cr0());
3165
Mike Dayd77c26f2007-10-08 09:02:08 -04003166 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003167 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003168 "push %%"R"dx; push %%"R"bp;"
3169 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003170 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3171 "je 1f \n\t"
3172 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003173 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003174 "1: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003175 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003176 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003177 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003178 "mov %c[cr2](%0), %%"R"ax \n\t"
3179 "mov %%"R"ax, %%cr2 \n\t"
3180 "mov %c[rax](%0), %%"R"ax \n\t"
3181 "mov %c[rbx](%0), %%"R"bx \n\t"
3182 "mov %c[rdx](%0), %%"R"dx \n\t"
3183 "mov %c[rsi](%0), %%"R"si \n\t"
3184 "mov %c[rdi](%0), %%"R"di \n\t"
3185 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003186#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003187 "mov %c[r8](%0), %%r8 \n\t"
3188 "mov %c[r9](%0), %%r9 \n\t"
3189 "mov %c[r10](%0), %%r10 \n\t"
3190 "mov %c[r11](%0), %%r11 \n\t"
3191 "mov %c[r12](%0), %%r12 \n\t"
3192 "mov %c[r13](%0), %%r13 \n\t"
3193 "mov %c[r14](%0), %%r14 \n\t"
3194 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003195#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003196 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3197
Avi Kivity6aa8b732006-12-10 02:21:36 -08003198 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003199 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003200 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003201 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003202 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003203 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003204 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003205 "xchg %0, (%%"R"sp) \n\t"
3206 "mov %%"R"ax, %c[rax](%0) \n\t"
3207 "mov %%"R"bx, %c[rbx](%0) \n\t"
3208 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3209 "mov %%"R"dx, %c[rdx](%0) \n\t"
3210 "mov %%"R"si, %c[rsi](%0) \n\t"
3211 "mov %%"R"di, %c[rdi](%0) \n\t"
3212 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003213#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003214 "mov %%r8, %c[r8](%0) \n\t"
3215 "mov %%r9, %c[r9](%0) \n\t"
3216 "mov %%r10, %c[r10](%0) \n\t"
3217 "mov %%r11, %c[r11](%0) \n\t"
3218 "mov %%r12, %c[r12](%0) \n\t"
3219 "mov %%r13, %c[r13](%0) \n\t"
3220 "mov %%r14, %c[r14](%0) \n\t"
3221 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003222#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003223 "mov %%cr2, %%"R"ax \n\t"
3224 "mov %%"R"ax, %c[cr2](%0) \n\t"
3225
3226 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003227 "setbe %c[fail](%0) \n\t"
3228 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3229 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3230 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003231 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003232 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3233 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3234 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3235 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3236 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3237 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3238 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003239#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003240 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3241 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3242 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3243 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3244 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3245 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3246 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3247 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003248#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003249 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003250 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003251 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003252#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003253 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3254#endif
3255 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003256
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003257 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
3258 vcpu->arch.regs_dirty = 0;
3259
Avi Kivity1155f762007-11-22 11:30:47 +02003260 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003261 if (vmx->rmode.irq.pending)
3262 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003263
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003264 vcpu->arch.interrupt_window_open =
Sheng Yangf08864b2008-05-15 18:23:25 +08003265 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
3266 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS)) == 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003267
Mike Dayd77c26f2007-10-08 09:02:08 -04003268 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003269 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003270
3271 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
3272
3273 /* We need to handle NMIs before interrupts are enabled */
Sheng Yangf08864b2008-05-15 18:23:25 +08003274 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200 &&
3275 (intr_info & INTR_INFO_VALID_MASK)) {
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003276 KVMTRACE_0D(NMI, vcpu, handler);
Avi Kivity1b6269d2007-10-09 12:12:19 +02003277 asm("int $2");
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003278 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003279
3280 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003281}
3282
Avi Kivityc8019492008-07-14 14:44:59 +03003283#undef R
3284#undef Q
3285
Avi Kivity6aa8b732006-12-10 02:21:36 -08003286static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3287{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003288 struct vcpu_vmx *vmx = to_vmx(vcpu);
3289
3290 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003291 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003292 free_vmcs(vmx->vmcs);
3293 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003294 }
3295}
3296
3297static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3298{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003299 struct vcpu_vmx *vmx = to_vmx(vcpu);
3300
Sheng Yang2384d2b2008-01-17 15:14:33 +08003301 spin_lock(&vmx_vpid_lock);
3302 if (vmx->vpid != 0)
3303 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3304 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003305 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003306 kfree(vmx->host_msrs);
3307 kfree(vmx->guest_msrs);
3308 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003309 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003310}
3311
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003312static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003313{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003314 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003315 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003316 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003317
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003318 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003319 return ERR_PTR(-ENOMEM);
3320
Sheng Yang2384d2b2008-01-17 15:14:33 +08003321 allocate_vpid(vmx);
3322
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003323 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3324 if (err)
3325 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003326
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003327 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003328 if (!vmx->guest_msrs) {
3329 err = -ENOMEM;
3330 goto uninit_vcpu;
3331 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003332
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003333 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
3334 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003335 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003336
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003337 vmx->vmcs = alloc_vmcs();
3338 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003339 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003340
3341 vmcs_clear(vmx->vmcs);
3342
Avi Kivity15ad7142007-07-11 18:17:21 +03003343 cpu = get_cpu();
3344 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003345 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003346 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003347 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003348 if (err)
3349 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003350 if (vm_need_virtualize_apic_accesses(kvm))
3351 if (alloc_apic_access_page(kvm) != 0)
3352 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003353
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003354 if (vm_need_ept())
3355 if (alloc_identity_pagetable(kvm) != 0)
3356 goto free_vmcs;
3357
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003358 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003359
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003360free_vmcs:
3361 free_vmcs(vmx->vmcs);
3362free_msrs:
3363 kfree(vmx->host_msrs);
3364free_guest_msrs:
3365 kfree(vmx->guest_msrs);
3366uninit_vcpu:
3367 kvm_vcpu_uninit(&vmx->vcpu);
3368free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003369 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003370 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003371}
3372
Yang, Sheng002c7f72007-07-31 14:23:01 +03003373static void __init vmx_check_processor_compat(void *rtn)
3374{
3375 struct vmcs_config vmcs_conf;
3376
3377 *(int *)rtn = 0;
3378 if (setup_vmcs_config(&vmcs_conf) < 0)
3379 *(int *)rtn = -EIO;
3380 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3381 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3382 smp_processor_id());
3383 *(int *)rtn = -EIO;
3384 }
3385}
3386
Sheng Yang67253af2008-04-25 10:20:22 +08003387static int get_ept_level(void)
3388{
3389 return VMX_EPT_DEFAULT_GAW + 1;
3390}
3391
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003392static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003393 .cpu_has_kvm_support = cpu_has_kvm_support,
3394 .disabled_by_bios = vmx_disabled_by_bios,
3395 .hardware_setup = hardware_setup,
3396 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003397 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003398 .hardware_enable = hardware_enable,
3399 .hardware_disable = hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02003400 .cpu_has_accelerated_tpr = cpu_has_vmx_virtualize_apic_accesses,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003401
3402 .vcpu_create = vmx_create_vcpu,
3403 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003404 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003405
Avi Kivity04d2cc72007-09-10 18:10:54 +03003406 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003407 .vcpu_load = vmx_vcpu_load,
3408 .vcpu_put = vmx_vcpu_put,
3409
3410 .set_guest_debug = set_guest_debug,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003411 .guest_debug_pre = kvm_guest_debug_pre,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003412 .get_msr = vmx_get_msr,
3413 .set_msr = vmx_set_msr,
3414 .get_segment_base = vmx_get_segment_base,
3415 .get_segment = vmx_get_segment,
3416 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003417 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003418 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003419 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003420 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003421 .set_cr3 = vmx_set_cr3,
3422 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003423 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003424 .get_idt = vmx_get_idt,
3425 .set_idt = vmx_set_idt,
3426 .get_gdt = vmx_get_gdt,
3427 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003428 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003429 .get_rflags = vmx_get_rflags,
3430 .set_rflags = vmx_set_rflags,
3431
3432 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003433
Avi Kivity6aa8b732006-12-10 02:21:36 -08003434 .run = vmx_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003435 .handle_exit = kvm_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003436 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02003437 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03003438 .get_irq = vmx_get_irq,
3439 .set_irq = vmx_inject_irq,
Avi Kivity298101d2007-11-25 13:41:11 +02003440 .queue_exception = vmx_queue_exception,
3441 .exception_injected = vmx_exception_injected,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003442 .inject_pending_irq = vmx_intr_assist,
3443 .inject_pending_vectors = do_interrupt_requests,
Izik Eiduscbc94022007-10-25 00:29:55 +02003444
3445 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08003446 .get_tdp_level = get_ept_level,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003447};
3448
3449static int __init vmx_init(void)
3450{
Sheng Yang25c5f222008-03-28 13:18:56 +08003451 void *va;
He, Qingfdef3ad2007-04-30 09:45:24 +03003452 int r;
3453
3454 vmx_io_bitmap_a = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
3455 if (!vmx_io_bitmap_a)
3456 return -ENOMEM;
3457
3458 vmx_io_bitmap_b = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
3459 if (!vmx_io_bitmap_b) {
3460 r = -ENOMEM;
3461 goto out;
3462 }
3463
Sheng Yang25c5f222008-03-28 13:18:56 +08003464 vmx_msr_bitmap = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
3465 if (!vmx_msr_bitmap) {
3466 r = -ENOMEM;
3467 goto out1;
3468 }
3469
He, Qingfdef3ad2007-04-30 09:45:24 +03003470 /*
3471 * Allow direct access to the PC debug port (it is often used for I/O
3472 * delays, but the vmexits simply slow things down).
3473 */
Sheng Yang25c5f222008-03-28 13:18:56 +08003474 va = kmap(vmx_io_bitmap_a);
3475 memset(va, 0xff, PAGE_SIZE);
3476 clear_bit(0x80, va);
Avi Kivitycd0536d2007-05-08 11:34:07 +03003477 kunmap(vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003478
Sheng Yang25c5f222008-03-28 13:18:56 +08003479 va = kmap(vmx_io_bitmap_b);
3480 memset(va, 0xff, PAGE_SIZE);
Avi Kivitycd0536d2007-05-08 11:34:07 +03003481 kunmap(vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03003482
Sheng Yang25c5f222008-03-28 13:18:56 +08003483 va = kmap(vmx_msr_bitmap);
3484 memset(va, 0xff, PAGE_SIZE);
3485 kunmap(vmx_msr_bitmap);
3486
Sheng Yang2384d2b2008-01-17 15:14:33 +08003487 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
3488
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003489 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03003490 if (r)
Sheng Yang25c5f222008-03-28 13:18:56 +08003491 goto out2;
3492
3493 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_FS_BASE);
3494 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_GS_BASE);
3495 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_IA32_SYSENTER_CS);
3496 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_IA32_SYSENTER_ESP);
3497 vmx_disable_intercept_for_msr(vmx_msr_bitmap, MSR_IA32_SYSENTER_EIP);
He, Qingfdef3ad2007-04-30 09:45:24 +03003498
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003499 if (vm_need_ept()) {
Sheng Yang14394422008-04-28 12:24:45 +08003500 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003501 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
3502 VMX_EPT_WRITABLE_MASK |
3503 VMX_EPT_DEFAULT_MT << VMX_EPT_MT_EPTE_SHIFT);
Sheng Yang534e38b2008-09-08 15:12:30 +08003504 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003505 VMX_EPT_EXECUTABLE_MASK);
3506 kvm_enable_tdp();
3507 } else
3508 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08003509
Avi Kivityc7addb92007-09-16 18:58:32 +02003510 if (bypass_guest_pf)
3511 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
3512
Sheng Yang14394422008-04-28 12:24:45 +08003513 ept_sync_global();
3514
He, Qingfdef3ad2007-04-30 09:45:24 +03003515 return 0;
3516
Sheng Yang25c5f222008-03-28 13:18:56 +08003517out2:
3518 __free_page(vmx_msr_bitmap);
He, Qingfdef3ad2007-04-30 09:45:24 +03003519out1:
3520 __free_page(vmx_io_bitmap_b);
3521out:
3522 __free_page(vmx_io_bitmap_a);
3523 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003524}
3525
3526static void __exit vmx_exit(void)
3527{
Sheng Yang25c5f222008-03-28 13:18:56 +08003528 __free_page(vmx_msr_bitmap);
He, Qingfdef3ad2007-04-30 09:45:24 +03003529 __free_page(vmx_io_bitmap_b);
3530 __free_page(vmx_io_bitmap_a);
3531
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003532 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003533}
3534
3535module_init(vmx_init)
3536module_exit(vmx_exit)