blob: 85f4fd54175644cea264a582d7354c8cbb8bf64a [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"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080019#include "mmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040020
Avi Kivityedf88412007-12-16 11:02:48 +020021#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080022#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020023#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080024#include <linux/mm.h>
25#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040026#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020027#include <linux/moduleparam.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030028#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030029#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040030
Avi Kivity6aa8b732006-12-10 02:21:36 -080031#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080032#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020033#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020034#include <asm/virtext.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080035
Avi Kivity4ecac3f2008-05-13 13:23:38 +030036#define __ex(x) __kvm_handle_fault_on_reboot(x)
37
Avi Kivity6aa8b732006-12-10 02:21:36 -080038MODULE_AUTHOR("Qumranet");
39MODULE_LICENSE("GPL");
40
Avi Kivityc7addb92007-09-16 18:58:32 +020041static int bypass_guest_pf = 1;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020042module_param(bypass_guest_pf, bool, S_IRUGO);
Avi Kivityc7addb92007-09-16 18:58:32 +020043
Sheng Yang2384d2b2008-01-17 15:14:33 +080044static int enable_vpid = 1;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020045module_param(enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080046
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020047static int flexpriority_enabled = 1;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020048module_param(flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020049
Sheng Yang14394422008-04-28 12:24:45 +080050static int enable_ept = 1;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020051module_param(enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080052
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030053static int emulate_invalid_guest_state = 0;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020054module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030055
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040056struct vmcs {
57 u32 revision_id;
58 u32 abort;
59 char data[0];
60};
61
62struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100063 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +030064 struct list_head local_vcpus_link;
Avi Kivity313dbd42008-07-17 18:04:30 +030065 unsigned long host_rsp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040066 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +030067 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +020068 u32 idt_vectoring_info;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040069 struct kvm_msr_entry *guest_msrs;
70 struct kvm_msr_entry *host_msrs;
71 int nmsrs;
72 int save_nmsrs;
73 int msr_offset_efer;
74#ifdef CONFIG_X86_64
75 int msr_offset_kernel_gs_base;
76#endif
77 struct vmcs *vmcs;
78 struct {
79 int loaded;
80 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +020081 int gs_ldt_reload_needed;
82 int fs_reload_needed;
Avi Kivity51c6cf62007-08-29 03:48:05 +030083 int guest_efer_loaded;
Mike Dayd77c26f2007-10-08 09:02:08 -040084 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +020085 struct {
86 struct {
87 bool pending;
88 u8 vector;
89 unsigned rip;
90 } irq;
91 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +080092 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030093 bool emulation_required;
Avi Kivity8b3079a2009-01-05 12:10:54 +020094 enum emulation_result invalid_state_emulation_result;
Jan Kiszka3b86cd92008-09-26 09:30:57 +020095
96 /* Support for vnmi-less CPUs */
97 int soft_vnmi_blocked;
98 ktime_t entry_time;
99 s64 vnmi_blocked_time;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400100};
101
102static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
103{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000104 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400105}
106
Sheng Yangb7ebfb02008-04-25 21:44:52 +0800107static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800108static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +0300109
Avi Kivity6aa8b732006-12-10 02:21:36 -0800110static DEFINE_PER_CPU(struct vmcs *, vmxarea);
111static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +0300112static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800113
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200114static unsigned long *vmx_io_bitmap_a;
115static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200116static unsigned long *vmx_msr_bitmap_legacy;
117static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300118
Sheng Yang2384d2b2008-01-17 15:14:33 +0800119static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
120static DEFINE_SPINLOCK(vmx_vpid_lock);
121
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300122static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800123 int size;
124 int order;
125 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300126 u32 pin_based_exec_ctrl;
127 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800128 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300129 u32 vmexit_ctrl;
130 u32 vmentry_ctrl;
131} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800132
Hannes Ederefff9e52008-11-28 17:02:06 +0100133static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800134 u32 ept;
135 u32 vpid;
136} vmx_capability;
137
Avi Kivity6aa8b732006-12-10 02:21:36 -0800138#define VMX_SEGMENT_FIELD(seg) \
139 [VCPU_SREG_##seg] = { \
140 .selector = GUEST_##seg##_SELECTOR, \
141 .base = GUEST_##seg##_BASE, \
142 .limit = GUEST_##seg##_LIMIT, \
143 .ar_bytes = GUEST_##seg##_AR_BYTES, \
144 }
145
146static struct kvm_vmx_segment_field {
147 unsigned selector;
148 unsigned base;
149 unsigned limit;
150 unsigned ar_bytes;
151} kvm_vmx_segment_fields[] = {
152 VMX_SEGMENT_FIELD(CS),
153 VMX_SEGMENT_FIELD(DS),
154 VMX_SEGMENT_FIELD(ES),
155 VMX_SEGMENT_FIELD(FS),
156 VMX_SEGMENT_FIELD(GS),
157 VMX_SEGMENT_FIELD(SS),
158 VMX_SEGMENT_FIELD(TR),
159 VMX_SEGMENT_FIELD(LDTR),
160};
161
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300162/*
163 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
164 * away by decrementing the array size.
165 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800166static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800167#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800168 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, MSR_KERNEL_GS_BASE,
169#endif
170 MSR_EFER, MSR_K6_STAR,
171};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200172#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800173
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400174static void load_msrs(struct kvm_msr_entry *e, int n)
175{
176 int i;
177
178 for (i = 0; i < n; ++i)
179 wrmsrl(e[i].index, e[i].data);
180}
181
182static void save_msrs(struct kvm_msr_entry *e, int n)
183{
184 int i;
185
186 for (i = 0; i < n; ++i)
187 rdmsrl(e[i].index, e[i].data);
188}
189
Avi Kivity6aa8b732006-12-10 02:21:36 -0800190static inline int is_page_fault(u32 intr_info)
191{
192 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
193 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100194 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800195}
196
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300197static inline int is_no_device(u32 intr_info)
198{
199 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
200 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100201 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300202}
203
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500204static inline int is_invalid_opcode(u32 intr_info)
205{
206 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
207 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100208 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500209}
210
Avi Kivity6aa8b732006-12-10 02:21:36 -0800211static inline int is_external_interrupt(u32 intr_info)
212{
213 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
214 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
215}
216
Sheng Yang25c5f222008-03-28 13:18:56 +0800217static inline int cpu_has_vmx_msr_bitmap(void)
218{
219 return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS);
220}
221
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800222static inline int cpu_has_vmx_tpr_shadow(void)
223{
224 return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW);
225}
226
227static inline int vm_need_tpr_shadow(struct kvm *kvm)
228{
229 return ((cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm)));
230}
231
Sheng Yangf78e0e22007-10-29 09:40:42 +0800232static inline int cpu_has_secondary_exec_ctrls(void)
233{
234 return (vmcs_config.cpu_based_exec_ctrl &
235 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS);
236}
237
Avi Kivity774ead32007-12-26 13:57:04 +0200238static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800239{
Avi Kivity4c9fc8e2008-03-24 18:15:14 +0200240 return flexpriority_enabled
241 && (vmcs_config.cpu_based_2nd_exec_ctrl &
242 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800243}
244
Sheng Yangd56f5462008-04-25 10:13:16 +0800245static inline int cpu_has_vmx_invept_individual_addr(void)
246{
247 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT));
248}
249
250static inline int cpu_has_vmx_invept_context(void)
251{
252 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT));
253}
254
255static inline int cpu_has_vmx_invept_global(void)
256{
257 return (!!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT));
258}
259
260static inline int cpu_has_vmx_ept(void)
261{
262 return (vmcs_config.cpu_based_2nd_exec_ctrl &
263 SECONDARY_EXEC_ENABLE_EPT);
264}
265
266static inline int vm_need_ept(void)
267{
268 return (cpu_has_vmx_ept() && enable_ept);
269}
270
Sheng Yangf78e0e22007-10-29 09:40:42 +0800271static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
272{
273 return ((cpu_has_vmx_virtualize_apic_accesses()) &&
274 (irqchip_in_kernel(kvm)));
275}
276
Sheng Yang2384d2b2008-01-17 15:14:33 +0800277static inline int cpu_has_vmx_vpid(void)
278{
279 return (vmcs_config.cpu_based_2nd_exec_ctrl &
280 SECONDARY_EXEC_ENABLE_VPID);
281}
282
Sheng Yangf08864b2008-05-15 18:23:25 +0800283static inline int cpu_has_virtual_nmis(void)
284{
285 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
286}
287
Rusty Russell8b9cf982007-07-30 16:31:43 +1000288static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800289{
290 int i;
291
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400292 for (i = 0; i < vmx->nmsrs; ++i)
293 if (vmx->guest_msrs[i].index == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300294 return i;
295 return -1;
296}
297
Sheng Yang2384d2b2008-01-17 15:14:33 +0800298static inline void __invvpid(int ext, u16 vpid, gva_t gva)
299{
300 struct {
301 u64 vpid : 16;
302 u64 rsvd : 48;
303 u64 gva;
304 } operand = { vpid, 0, gva };
305
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300306 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800307 /* CF==1 or ZF==1 --> rc = -1 */
308 "; ja 1f ; ud2 ; 1:"
309 : : "a"(&operand), "c"(ext) : "cc", "memory");
310}
311
Sheng Yang14394422008-04-28 12:24:45 +0800312static inline void __invept(int ext, u64 eptp, gpa_t gpa)
313{
314 struct {
315 u64 eptp, gpa;
316 } operand = {eptp, gpa};
317
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300318 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800319 /* CF==1 or ZF==1 --> rc = -1 */
320 "; ja 1f ; ud2 ; 1:\n"
321 : : "a" (&operand), "c" (ext) : "cc", "memory");
322}
323
Rusty Russell8b9cf982007-07-30 16:31:43 +1000324static struct kvm_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300325{
326 int i;
327
Rusty Russell8b9cf982007-07-30 16:31:43 +1000328 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300329 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400330 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000331 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800332}
333
Avi Kivity6aa8b732006-12-10 02:21:36 -0800334static void vmcs_clear(struct vmcs *vmcs)
335{
336 u64 phys_addr = __pa(vmcs);
337 u8 error;
338
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300339 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800340 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
341 : "cc", "memory");
342 if (error)
343 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
344 vmcs, phys_addr);
345}
346
347static void __vcpu_clear(void *arg)
348{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000349 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800350 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800351
Rusty Russell8b9cf982007-07-30 16:31:43 +1000352 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400353 vmcs_clear(vmx->vmcs);
354 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800355 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800356 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300357 list_del(&vmx->local_vcpus_link);
358 vmx->vcpu.cpu = -1;
359 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800360}
361
Rusty Russell8b9cf982007-07-30 16:31:43 +1000362static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800363{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200364 if (vmx->vcpu.cpu == -1)
365 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200366 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800367}
368
Sheng Yang2384d2b2008-01-17 15:14:33 +0800369static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
370{
371 if (vmx->vpid == 0)
372 return;
373
374 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
375}
376
Sheng Yang14394422008-04-28 12:24:45 +0800377static inline void ept_sync_global(void)
378{
379 if (cpu_has_vmx_invept_global())
380 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
381}
382
383static inline void ept_sync_context(u64 eptp)
384{
385 if (vm_need_ept()) {
386 if (cpu_has_vmx_invept_context())
387 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
388 else
389 ept_sync_global();
390 }
391}
392
393static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
394{
395 if (vm_need_ept()) {
396 if (cpu_has_vmx_invept_individual_addr())
397 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
398 eptp, gpa);
399 else
400 ept_sync_context(eptp);
401 }
402}
403
Avi Kivity6aa8b732006-12-10 02:21:36 -0800404static unsigned long vmcs_readl(unsigned long field)
405{
406 unsigned long value;
407
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300408 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800409 : "=a"(value) : "d"(field) : "cc");
410 return value;
411}
412
413static u16 vmcs_read16(unsigned long field)
414{
415 return vmcs_readl(field);
416}
417
418static u32 vmcs_read32(unsigned long field)
419{
420 return vmcs_readl(field);
421}
422
423static u64 vmcs_read64(unsigned long field)
424{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800425#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800426 return vmcs_readl(field);
427#else
428 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
429#endif
430}
431
Avi Kivitye52de1b2007-01-05 16:36:56 -0800432static noinline void vmwrite_error(unsigned long field, unsigned long value)
433{
434 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
435 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
436 dump_stack();
437}
438
Avi Kivity6aa8b732006-12-10 02:21:36 -0800439static void vmcs_writel(unsigned long field, unsigned long value)
440{
441 u8 error;
442
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300443 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400444 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800445 if (unlikely(error))
446 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800447}
448
449static void vmcs_write16(unsigned long field, u16 value)
450{
451 vmcs_writel(field, value);
452}
453
454static void vmcs_write32(unsigned long field, u32 value)
455{
456 vmcs_writel(field, value);
457}
458
459static void vmcs_write64(unsigned long field, u64 value)
460{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800461 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300462#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800463 asm volatile ("");
464 vmcs_writel(field+1, value >> 32);
465#endif
466}
467
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300468static void vmcs_clear_bits(unsigned long field, u32 mask)
469{
470 vmcs_writel(field, vmcs_readl(field) & ~mask);
471}
472
473static void vmcs_set_bits(unsigned long field, u32 mask)
474{
475 vmcs_writel(field, vmcs_readl(field) | mask);
476}
477
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300478static void update_exception_bitmap(struct kvm_vcpu *vcpu)
479{
480 u32 eb;
481
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500482 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300483 if (!vcpu->fpu_active)
484 eb |= 1u << NM_VECTOR;
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100485 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
486 if (vcpu->guest_debug &
487 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
488 eb |= 1u << DB_VECTOR;
489 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
490 eb |= 1u << BP_VECTOR;
491 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800492 if (vcpu->arch.rmode.active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300493 eb = ~0;
Sheng Yang14394422008-04-28 12:24:45 +0800494 if (vm_need_ept())
495 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300496 vmcs_write32(EXCEPTION_BITMAP, eb);
497}
498
Avi Kivity33ed6322007-05-02 16:54:03 +0300499static void reload_tss(void)
500{
Avi Kivity33ed6322007-05-02 16:54:03 +0300501 /*
502 * VT restores TR but not its size. Useless.
503 */
504 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200505 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300506
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300507 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300508 descs = (void *)gdt.base;
509 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
510 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300511}
512
Rusty Russell8b9cf982007-07-30 16:31:43 +1000513static void load_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300514{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400515 int efer_offset = vmx->msr_offset_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300516 u64 host_efer = vmx->host_msrs[efer_offset].data;
517 u64 guest_efer = vmx->guest_msrs[efer_offset].data;
518 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300519
Avi Kivity51c6cf62007-08-29 03:48:05 +0300520 if (efer_offset < 0)
521 return;
522 /*
523 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
524 * outside long mode
525 */
526 ignore_bits = EFER_NX | EFER_SCE;
527#ifdef CONFIG_X86_64
528 ignore_bits |= EFER_LMA | EFER_LME;
529 /* SCE is meaningful only in long mode on Intel */
530 if (guest_efer & EFER_LMA)
531 ignore_bits &= ~(u64)EFER_SCE;
532#endif
533 if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
534 return;
535
536 vmx->host_state.guest_efer_loaded = 1;
537 guest_efer &= ~ignore_bits;
538 guest_efer |= host_efer & ignore_bits;
539 wrmsrl(MSR_EFER, guest_efer);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000540 vmx->vcpu.stat.efer_reload++;
Eddie Dong2cc51562007-05-21 07:28:09 +0300541}
542
Avi Kivity51c6cf62007-08-29 03:48:05 +0300543static void reload_host_efer(struct vcpu_vmx *vmx)
544{
545 if (vmx->host_state.guest_efer_loaded) {
546 vmx->host_state.guest_efer_loaded = 0;
547 load_msrs(vmx->host_msrs + vmx->msr_offset_efer, 1);
548 }
549}
550
Avi Kivity04d2cc72007-09-10 18:10:54 +0300551static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300552{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300553 struct vcpu_vmx *vmx = to_vmx(vcpu);
554
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400555 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300556 return;
557
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400558 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300559 /*
560 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
561 * allow segment selectors with cpl > 0 or ti == 1.
562 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300563 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200564 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300565 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200566 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400567 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200568 vmx->host_state.fs_reload_needed = 0;
569 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300570 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200571 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300572 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300573 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400574 if (!(vmx->host_state.gs_sel & 7))
575 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300576 else {
577 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200578 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300579 }
580
581#ifdef CONFIG_X86_64
582 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
583 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
584#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400585 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
586 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300587#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300588
589#ifdef CONFIG_X86_64
Mike Dayd77c26f2007-10-08 09:02:08 -0400590 if (is_long_mode(&vmx->vcpu))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400591 save_msrs(vmx->host_msrs +
592 vmx->msr_offset_kernel_gs_base, 1);
Mike Dayd77c26f2007-10-08 09:02:08 -0400593
Avi Kivity707c0872007-05-02 17:33:43 +0300594#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400595 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300596 load_transition_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300597}
598
Avi Kivitya9b21b62008-06-24 11:48:49 +0300599static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300600{
Avi Kivity15ad7142007-07-11 18:17:21 +0300601 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300602
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400603 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300604 return;
605
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200606 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400607 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200608 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300609 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200610 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300611 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300612 /*
613 * If we have to reload gs, we must take care to
614 * preserve our gs base.
615 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300616 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300617 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300618#ifdef CONFIG_X86_64
619 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
620#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300621 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300622 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200623 reload_tss();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400624 save_msrs(vmx->guest_msrs, vmx->save_nmsrs);
625 load_msrs(vmx->host_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300626 reload_host_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300627}
628
Avi Kivitya9b21b62008-06-24 11:48:49 +0300629static void vmx_load_host_state(struct vcpu_vmx *vmx)
630{
631 preempt_disable();
632 __vmx_load_host_state(vmx);
633 preempt_enable();
634}
635
Avi Kivity6aa8b732006-12-10 02:21:36 -0800636/*
637 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
638 * vcpu mutex is already taken.
639 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300640static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800641{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400642 struct vcpu_vmx *vmx = to_vmx(vcpu);
643 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200644 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800645
Eddie Donga3d7f852007-09-03 16:15:12 +0300646 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000647 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300648 kvm_migrate_timers(vcpu);
Sheng Yang2384d2b2008-01-17 15:14:33 +0800649 vpid_sync_vcpu_all(vmx);
Avi Kivity543e4242008-05-13 16:22:47 +0300650 local_irq_disable();
651 list_add(&vmx->local_vcpus_link,
652 &per_cpu(vcpus_on_cpu, cpu));
653 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300654 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800655
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400656 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800657 u8 error;
658
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400659 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300660 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800661 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
662 : "cc");
663 if (error)
664 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400665 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800666 }
667
668 if (vcpu->cpu != cpu) {
669 struct descriptor_table dt;
670 unsigned long sysenter_esp;
671
672 vcpu->cpu = cpu;
673 /*
674 * Linux uses per-cpu TSS and GDT, so set these when switching
675 * processors.
676 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300677 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
678 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800679 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
680
681 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
682 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300683
684 /*
685 * Make sure the time stamp counter is monotonous.
686 */
687 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200688 if (tsc_this < vcpu->arch.host_tsc) {
689 delta = vcpu->arch.host_tsc - tsc_this;
690 new_offset = vmcs_read64(TSC_OFFSET) + delta;
691 vmcs_write64(TSC_OFFSET, new_offset);
692 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800693 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800694}
695
696static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
697{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300698 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800699}
700
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300701static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
702{
703 if (vcpu->fpu_active)
704 return;
705 vcpu->fpu_active = 1;
Rusty Russell707d92f2007-07-17 23:19:08 +1000706 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800707 if (vcpu->arch.cr0 & X86_CR0_TS)
Rusty Russell707d92f2007-07-17 23:19:08 +1000708 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300709 update_exception_bitmap(vcpu);
710}
711
712static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
713{
714 if (!vcpu->fpu_active)
715 return;
716 vcpu->fpu_active = 0;
Rusty Russell707d92f2007-07-17 23:19:08 +1000717 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300718 update_exception_bitmap(vcpu);
719}
720
Avi Kivity6aa8b732006-12-10 02:21:36 -0800721static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
722{
723 return vmcs_readl(GUEST_RFLAGS);
724}
725
726static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
727{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800728 if (vcpu->arch.rmode.active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100729 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800730 vmcs_writel(GUEST_RFLAGS, rflags);
731}
732
733static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
734{
735 unsigned long rip;
736 u32 interruptibility;
737
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300738 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800739 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300740 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800741
742 /*
743 * We emulated an instruction, so temporary interrupt blocking
744 * should be removed, if set.
745 */
746 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
747 if (interruptibility & 3)
748 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
749 interruptibility & ~3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800750 vcpu->arch.interrupt_window_open = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800751}
752
Avi Kivity298101d2007-11-25 13:41:11 +0200753static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
754 bool has_error_code, u32 error_code)
755{
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200756 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100757 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200758
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100759 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200760 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100761 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
762 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200763
764 if (vcpu->arch.rmode.active) {
765 vmx->rmode.irq.pending = true;
766 vmx->rmode.irq.vector = nr;
767 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100768 if (nr == BP_VECTOR || nr == OF_VECTOR)
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200769 vmx->rmode.irq.rip++;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100770 intr_info |= INTR_TYPE_SOFT_INTR;
771 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200772 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
773 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
774 return;
775 }
776
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100777 if (nr == BP_VECTOR || nr == OF_VECTOR) {
778 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
779 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
780 } else
781 intr_info |= INTR_TYPE_HARD_EXCEPTION;
782
783 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +0200784}
785
786static bool vmx_exception_injected(struct kvm_vcpu *vcpu)
787{
Avi Kivity35920a32008-07-03 14:50:12 +0300788 return false;
Avi Kivity298101d2007-11-25 13:41:11 +0200789}
790
Avi Kivity6aa8b732006-12-10 02:21:36 -0800791/*
Eddie Donga75beee2007-05-17 18:55:15 +0300792 * Swap MSR entry in host/guest MSR entry array.
793 */
Gabriel C54e11fa2007-08-01 16:23:10 +0200794#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000795static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300796{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400797 struct kvm_msr_entry tmp;
798
799 tmp = vmx->guest_msrs[to];
800 vmx->guest_msrs[to] = vmx->guest_msrs[from];
801 vmx->guest_msrs[from] = tmp;
802 tmp = vmx->host_msrs[to];
803 vmx->host_msrs[to] = vmx->host_msrs[from];
804 vmx->host_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300805}
Gabriel C54e11fa2007-08-01 16:23:10 +0200806#endif
Eddie Donga75beee2007-05-17 18:55:15 +0300807
808/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300809 * Set up the vmcs to automatically save and restore system
810 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
811 * mode, as fiddling with msrs is very expensive.
812 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000813static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300814{
Eddie Dong2cc51562007-05-21 07:28:09 +0300815 int save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +0200816 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +0300817
Avi Kivity33f9c502008-02-27 16:06:57 +0200818 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300819 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300820#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000821 if (is_long_mode(&vmx->vcpu)) {
Eddie Dong2cc51562007-05-21 07:28:09 +0300822 int index;
823
Rusty Russell8b9cf982007-07-30 16:31:43 +1000824 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300825 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000826 move_msr_up(vmx, index, save_nmsrs++);
827 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300828 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000829 move_msr_up(vmx, index, save_nmsrs++);
830 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300831 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000832 move_msr_up(vmx, index, save_nmsrs++);
833 index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300834 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000835 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300836 /*
837 * MSR_K6_STAR is only needed on long mode guests, and only
838 * if efer.sce is enabled.
839 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000840 index = __find_msr_index(vmx, MSR_K6_STAR);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800841 if ((index >= 0) && (vmx->vcpu.arch.shadow_efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000842 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300843 }
Eddie Donga75beee2007-05-17 18:55:15 +0300844#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400845 vmx->save_nmsrs = save_nmsrs;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300846
Eddie Donga75beee2007-05-17 18:55:15 +0300847#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400848 vmx->msr_offset_kernel_gs_base =
Rusty Russell8b9cf982007-07-30 16:31:43 +1000849 __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300850#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +1000851 vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
Avi Kivity58972972009-02-24 22:26:47 +0200852
853 if (cpu_has_vmx_msr_bitmap()) {
854 if (is_long_mode(&vmx->vcpu))
855 msr_bitmap = vmx_msr_bitmap_longmode;
856 else
857 msr_bitmap = vmx_msr_bitmap_legacy;
858
859 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
860 }
Avi Kivitye38aea32007-04-19 13:22:48 +0300861}
862
863/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800864 * reads and returns guest's timestamp counter "register"
865 * guest_tsc = host_tsc + tsc_offset -- 21.3
866 */
867static u64 guest_read_tsc(void)
868{
869 u64 host_tsc, tsc_offset;
870
871 rdtscll(host_tsc);
872 tsc_offset = vmcs_read64(TSC_OFFSET);
873 return host_tsc + tsc_offset;
874}
875
876/*
877 * writes 'guest_tsc' into guest's timestamp counter "register"
878 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
879 */
Marcelo Tosatti53f658b2008-12-11 20:45:05 +0100880static void guest_write_tsc(u64 guest_tsc, u64 host_tsc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800881{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800882 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
883}
884
Avi Kivity6aa8b732006-12-10 02:21:36 -0800885/*
886 * Reads an msr value (of 'msr_index') into 'pdata'.
887 * Returns 0 on success, non-0 otherwise.
888 * Assumes vcpu_load() was already called.
889 */
890static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
891{
892 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400893 struct kvm_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800894
895 if (!pdata) {
896 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
897 return -EINVAL;
898 }
899
900 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800901#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800902 case MSR_FS_BASE:
903 data = vmcs_readl(GUEST_FS_BASE);
904 break;
905 case MSR_GS_BASE:
906 data = vmcs_readl(GUEST_GS_BASE);
907 break;
908 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800909 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800910#endif
911 case MSR_IA32_TIME_STAMP_COUNTER:
912 data = guest_read_tsc();
913 break;
914 case MSR_IA32_SYSENTER_CS:
915 data = vmcs_read32(GUEST_SYSENTER_CS);
916 break;
917 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200918 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800919 break;
920 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200921 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800922 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800923 default:
Avi Kivity516a1a72009-02-15 02:32:07 +0200924 vmx_load_host_state(to_vmx(vcpu));
Rusty Russell8b9cf982007-07-30 16:31:43 +1000925 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800926 if (msr) {
927 data = msr->data;
928 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800929 }
Avi Kivity3bab1f52006-12-29 16:49:48 -0800930 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800931 }
932
933 *pdata = data;
934 return 0;
935}
936
937/*
938 * Writes msr value into into the appropriate "register".
939 * Returns 0 on success, non-0 otherwise.
940 * Assumes vcpu_load() was already called.
941 */
942static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
943{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400944 struct vcpu_vmx *vmx = to_vmx(vcpu);
945 struct kvm_msr_entry *msr;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +0100946 u64 host_tsc;
Eddie Dong2cc51562007-05-21 07:28:09 +0300947 int ret = 0;
948
Avi Kivity6aa8b732006-12-10 02:21:36 -0800949 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -0800950 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +0300951 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +0300952 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +0300953 break;
Avi Kivity16175a72009-03-23 22:13:44 +0200954#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800955 case MSR_FS_BASE:
956 vmcs_writel(GUEST_FS_BASE, data);
957 break;
958 case MSR_GS_BASE:
959 vmcs_writel(GUEST_GS_BASE, data);
960 break;
961#endif
962 case MSR_IA32_SYSENTER_CS:
963 vmcs_write32(GUEST_SYSENTER_CS, data);
964 break;
965 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200966 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800967 break;
968 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +0200969 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970 break;
Avi Kivityd27d4ac2007-02-19 14:37:46 +0200971 case MSR_IA32_TIME_STAMP_COUNTER:
Marcelo Tosatti53f658b2008-12-11 20:45:05 +0100972 rdtscll(host_tsc);
973 guest_write_tsc(data, host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800974 break;
Chris Lalancetteefa67e02008-06-20 09:51:30 +0200975 case MSR_P6_PERFCTR0:
976 case MSR_P6_PERFCTR1:
977 case MSR_P6_EVNTSEL0:
978 case MSR_P6_EVNTSEL1:
979 /*
980 * Just discard all writes to the performance counters; this
981 * should keep both older linux and windows 64-bit guests
982 * happy
983 */
984 pr_unimpl(vcpu, "unimplemented perfctr wrmsr: 0x%x data 0x%llx\n", msr_index, data);
985
986 break;
Sheng Yang468d4722008-10-09 16:01:55 +0800987 case MSR_IA32_CR_PAT:
988 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
989 vmcs_write64(GUEST_IA32_PAT, data);
990 vcpu->arch.pat = data;
991 break;
992 }
993 /* Otherwise falls through to kvm_set_msr_common */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994 default:
Avi Kivitya9b21b62008-06-24 11:48:49 +0300995 vmx_load_host_state(vmx);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000996 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -0800997 if (msr) {
998 msr->data = data;
999 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001000 }
Eddie Dong2cc51562007-05-21 07:28:09 +03001001 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001002 }
1003
Eddie Dong2cc51562007-05-21 07:28:09 +03001004 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005}
1006
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001007static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001009 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
1010 switch (reg) {
1011 case VCPU_REGS_RSP:
1012 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
1013 break;
1014 case VCPU_REGS_RIP:
1015 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
1016 break;
1017 default:
1018 break;
1019 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001020}
1021
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001022static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001023{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001024 int old_debug = vcpu->guest_debug;
1025 unsigned long flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001027 vcpu->guest_debug = dbg->control;
1028 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
1029 vcpu->guest_debug = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001030
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001031 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1032 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1033 else
1034 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1035
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001036 flags = vmcs_readl(GUEST_RFLAGS);
1037 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
1038 flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
1039 else if (old_debug & KVM_GUESTDBG_SINGLESTEP)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001040 flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001041 vmcs_writel(GUEST_RFLAGS, flags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001042
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001043 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001044
1045 return 0;
1046}
1047
Eddie Dong2a8067f2007-08-06 16:29:07 +03001048static int vmx_get_irq(struct kvm_vcpu *vcpu)
1049{
Avi Kivityf7d92382008-07-03 16:14:28 +03001050 if (!vcpu->arch.interrupt.pending)
1051 return -1;
1052 return vcpu->arch.interrupt.nr;
Eddie Dong2a8067f2007-08-06 16:29:07 +03001053}
1054
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055static __init int cpu_has_kvm_support(void)
1056{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001057 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058}
1059
1060static __init int vmx_disabled_by_bios(void)
1061{
1062 u64 msr;
1063
1064 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001065 return (msr & (FEATURE_CONTROL_LOCKED |
1066 FEATURE_CONTROL_VMXON_ENABLED))
1067 == FEATURE_CONTROL_LOCKED;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001068 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001069}
1070
Avi Kivity774c47f2007-02-12 00:54:47 -08001071static void hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001072{
1073 int cpu = raw_smp_processor_id();
1074 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1075 u64 old;
1076
Avi Kivity543e4242008-05-13 16:22:47 +03001077 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001078 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001079 if ((old & (FEATURE_CONTROL_LOCKED |
1080 FEATURE_CONTROL_VMXON_ENABLED))
1081 != (FEATURE_CONTROL_LOCKED |
1082 FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001083 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001084 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yang9ea542f2008-09-11 15:27:49 +08001085 FEATURE_CONTROL_LOCKED |
1086 FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +10001087 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001088 asm volatile (ASM_VMX_VMXON_RAX
1089 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001090 : "memory", "cc");
1091}
1092
Avi Kivity543e4242008-05-13 16:22:47 +03001093static void vmclear_local_vcpus(void)
1094{
1095 int cpu = raw_smp_processor_id();
1096 struct vcpu_vmx *vmx, *n;
1097
1098 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1099 local_vcpus_link)
1100 __vcpu_clear(vmx);
1101}
1102
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001103
1104/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1105 * tricks.
1106 */
1107static void kvm_cpu_vmxoff(void)
1108{
1109 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
1110 write_cr4(read_cr4() & ~X86_CR4_VMXE);
1111}
1112
Avi Kivity6aa8b732006-12-10 02:21:36 -08001113static void hardware_disable(void *garbage)
1114{
Avi Kivity543e4242008-05-13 16:22:47 +03001115 vmclear_local_vcpus();
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001116 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001117}
1118
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001119static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001120 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001121{
1122 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001123 u32 ctl = ctl_min | ctl_opt;
1124
1125 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1126
1127 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1128 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1129
1130 /* Ensure minimum (required) set of control bits are supported. */
1131 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001132 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001133
1134 *result = ctl;
1135 return 0;
1136}
1137
Yang, Sheng002c7f72007-07-31 14:23:01 +03001138static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001139{
1140 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001141 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001142 u32 _pin_based_exec_control = 0;
1143 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001144 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001145 u32 _vmexit_control = 0;
1146 u32 _vmentry_control = 0;
1147
1148 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001149 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001150 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1151 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001152 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001153
1154 min = CPU_BASED_HLT_EXITING |
1155#ifdef CONFIG_X86_64
1156 CPU_BASED_CR8_LOAD_EXITING |
1157 CPU_BASED_CR8_STORE_EXITING |
1158#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001159 CPU_BASED_CR3_LOAD_EXITING |
1160 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001161 CPU_BASED_USE_IO_BITMAPS |
1162 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001163 CPU_BASED_USE_TSC_OFFSETING |
1164 CPU_BASED_INVLPG_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001165 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001166 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001167 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001168 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1169 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001170 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001171#ifdef CONFIG_X86_64
1172 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1173 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1174 ~CPU_BASED_CR8_STORE_EXITING;
1175#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001176 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001177 min2 = 0;
1178 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001179 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001180 SECONDARY_EXEC_ENABLE_VPID |
1181 SECONDARY_EXEC_ENABLE_EPT;
1182 if (adjust_vmx_controls(min2, opt2,
1183 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001184 &_cpu_based_2nd_exec_control) < 0)
1185 return -EIO;
1186 }
1187#ifndef CONFIG_X86_64
1188 if (!(_cpu_based_2nd_exec_control &
1189 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1190 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1191#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001192 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03001193 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
1194 enabled */
Sheng Yangd56f5462008-04-25 10:13:16 +08001195 min &= ~(CPU_BASED_CR3_LOAD_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001196 CPU_BASED_CR3_STORE_EXITING |
1197 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001198 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1199 &_cpu_based_exec_control) < 0)
1200 return -EIO;
1201 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1202 vmx_capability.ept, vmx_capability.vpid);
1203 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001204
1205 min = 0;
1206#ifdef CONFIG_X86_64
1207 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1208#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001209 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001210 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1211 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001212 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001213
Sheng Yang468d4722008-10-09 16:01:55 +08001214 min = 0;
1215 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001216 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1217 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001218 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001219
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001220 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001221
1222 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1223 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001224 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001225
1226#ifdef CONFIG_X86_64
1227 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1228 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001229 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001230#endif
1231
1232 /* Require Write-Back (WB) memory type for VMCS accesses. */
1233 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001234 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001235
Yang, Sheng002c7f72007-07-31 14:23:01 +03001236 vmcs_conf->size = vmx_msr_high & 0x1fff;
1237 vmcs_conf->order = get_order(vmcs_config.size);
1238 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001239
Yang, Sheng002c7f72007-07-31 14:23:01 +03001240 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1241 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001242 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001243 vmcs_conf->vmexit_ctrl = _vmexit_control;
1244 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001245
1246 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001247}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001248
1249static struct vmcs *alloc_vmcs_cpu(int cpu)
1250{
1251 int node = cpu_to_node(cpu);
1252 struct page *pages;
1253 struct vmcs *vmcs;
1254
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001255 pages = alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001256 if (!pages)
1257 return NULL;
1258 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001259 memset(vmcs, 0, vmcs_config.size);
1260 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001261 return vmcs;
1262}
1263
1264static struct vmcs *alloc_vmcs(void)
1265{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001266 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001267}
1268
1269static void free_vmcs(struct vmcs *vmcs)
1270{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001271 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001272}
1273
Sam Ravnborg39959582007-06-01 00:47:13 -07001274static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001275{
1276 int cpu;
1277
1278 for_each_online_cpu(cpu)
1279 free_vmcs(per_cpu(vmxarea, cpu));
1280}
1281
Avi Kivity6aa8b732006-12-10 02:21:36 -08001282static __init int alloc_kvm_area(void)
1283{
1284 int cpu;
1285
1286 for_each_online_cpu(cpu) {
1287 struct vmcs *vmcs;
1288
1289 vmcs = alloc_vmcs_cpu(cpu);
1290 if (!vmcs) {
1291 free_kvm_area();
1292 return -ENOMEM;
1293 }
1294
1295 per_cpu(vmxarea, cpu) = vmcs;
1296 }
1297 return 0;
1298}
1299
1300static __init int hardware_setup(void)
1301{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001302 if (setup_vmcs_config(&vmcs_config) < 0)
1303 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001304
1305 if (boot_cpu_has(X86_FEATURE_NX))
1306 kvm_enable_efer_bits(EFER_NX);
1307
Avi Kivity6aa8b732006-12-10 02:21:36 -08001308 return alloc_kvm_area();
1309}
1310
1311static __exit void hardware_unsetup(void)
1312{
1313 free_kvm_area();
1314}
1315
Avi Kivity6aa8b732006-12-10 02:21:36 -08001316static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1317{
1318 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1319
Avi Kivity6af11b92007-03-19 13:18:10 +02001320 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001321 vmcs_write16(sf->selector, save->selector);
1322 vmcs_writel(sf->base, save->base);
1323 vmcs_write32(sf->limit, save->limit);
1324 vmcs_write32(sf->ar_bytes, save->ar);
1325 } else {
1326 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1327 << AR_DPL_SHIFT;
1328 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1329 }
1330}
1331
1332static void enter_pmode(struct kvm_vcpu *vcpu)
1333{
1334 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001335 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001336
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001337 vmx->emulation_required = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001338 vcpu->arch.rmode.active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001339
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001340 vmcs_writel(GUEST_TR_BASE, vcpu->arch.rmode.tr.base);
1341 vmcs_write32(GUEST_TR_LIMIT, vcpu->arch.rmode.tr.limit);
1342 vmcs_write32(GUEST_TR_AR_BYTES, vcpu->arch.rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001343
1344 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001345 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001346 flags |= (vcpu->arch.rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001347 vmcs_writel(GUEST_RFLAGS, flags);
1348
Rusty Russell66aee912007-07-17 23:34:16 +10001349 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1350 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001351
1352 update_exception_bitmap(vcpu);
1353
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001354 if (emulate_invalid_guest_state)
1355 return;
1356
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001357 fix_pmode_dataseg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
1358 fix_pmode_dataseg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
1359 fix_pmode_dataseg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
1360 fix_pmode_dataseg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001361
1362 vmcs_write16(GUEST_SS_SELECTOR, 0);
1363 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1364
1365 vmcs_write16(GUEST_CS_SELECTOR,
1366 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1367 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1368}
1369
Mike Dayd77c26f2007-10-08 09:02:08 -04001370static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001371{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001372 if (!kvm->arch.tss_addr) {
Izik Eiduscbc94022007-10-25 00:29:55 +02001373 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1374 kvm->memslots[0].npages - 3;
1375 return base_gfn << PAGE_SHIFT;
1376 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001377 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001378}
1379
1380static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1381{
1382 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1383
1384 save->selector = vmcs_read16(sf->selector);
1385 save->base = vmcs_readl(sf->base);
1386 save->limit = vmcs_read32(sf->limit);
1387 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001388 vmcs_write16(sf->selector, save->base >> 4);
1389 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001390 vmcs_write32(sf->limit, 0xffff);
1391 vmcs_write32(sf->ar_bytes, 0xf3);
1392}
1393
1394static void enter_rmode(struct kvm_vcpu *vcpu)
1395{
1396 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001397 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001399 vmx->emulation_required = 1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001400 vcpu->arch.rmode.active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001401
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001402 vcpu->arch.rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001403 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1404
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001405 vcpu->arch.rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001406 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1407
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001408 vcpu->arch.rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001409 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1410
1411 flags = vmcs_readl(GUEST_RFLAGS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001412 vcpu->arch.rmode.save_iopl
1413 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001414
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001415 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001416
1417 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001418 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001419 update_exception_bitmap(vcpu);
1420
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001421 if (emulate_invalid_guest_state)
1422 goto continue_rmode;
1423
Avi Kivity6aa8b732006-12-10 02:21:36 -08001424 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1425 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1426 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1427
1428 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001429 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001430 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1431 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001432 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1433
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001434 fix_rmode_seg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
1435 fix_rmode_seg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
1436 fix_rmode_seg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
1437 fix_rmode_seg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001438
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001439continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08001440 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001441 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001442}
1443
Amit Shah401d10d2009-02-20 22:53:37 +05301444static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1445{
1446 struct vcpu_vmx *vmx = to_vmx(vcpu);
1447 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
1448
1449 vcpu->arch.shadow_efer = efer;
1450 if (!msr)
1451 return;
1452 if (efer & EFER_LMA) {
1453 vmcs_write32(VM_ENTRY_CONTROLS,
1454 vmcs_read32(VM_ENTRY_CONTROLS) |
1455 VM_ENTRY_IA32E_MODE);
1456 msr->data = efer;
1457 } else {
1458 vmcs_write32(VM_ENTRY_CONTROLS,
1459 vmcs_read32(VM_ENTRY_CONTROLS) &
1460 ~VM_ENTRY_IA32E_MODE);
1461
1462 msr->data = efer & ~EFER_LME;
1463 }
1464 setup_msrs(vmx);
1465}
1466
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001467#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001468
1469static void enter_lmode(struct kvm_vcpu *vcpu)
1470{
1471 u32 guest_tr_ar;
1472
1473 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1474 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1475 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001476 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001477 vmcs_write32(GUEST_TR_AR_BYTES,
1478 (guest_tr_ar & ~AR_TYPE_MASK)
1479 | AR_TYPE_BUSY_64_TSS);
1480 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001481 vcpu->arch.shadow_efer |= EFER_LMA;
Amit Shah401d10d2009-02-20 22:53:37 +05301482 vmx_set_efer(vcpu, vcpu->arch.shadow_efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001483}
1484
1485static void exit_lmode(struct kvm_vcpu *vcpu)
1486{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001487 vcpu->arch.shadow_efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001488
1489 vmcs_write32(VM_ENTRY_CONTROLS,
1490 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001491 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001492}
1493
1494#endif
1495
Sheng Yang2384d2b2008-01-17 15:14:33 +08001496static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1497{
1498 vpid_sync_vcpu_all(to_vmx(vcpu));
Sheng Yang4e1096d2008-07-06 19:16:51 +08001499 if (vm_need_ept())
1500 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001501}
1502
Anthony Liguori25c4c272007-04-27 09:29:21 +03001503static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001504{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001505 vcpu->arch.cr4 &= KVM_GUEST_CR4_MASK;
1506 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
Avi Kivity399badf2007-01-05 16:36:38 -08001507}
1508
Sheng Yang14394422008-04-28 12:24:45 +08001509static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1510{
1511 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1512 if (!load_pdptrs(vcpu, vcpu->arch.cr3)) {
1513 printk(KERN_ERR "EPT: Fail to load pdptrs!\n");
1514 return;
1515 }
1516 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1517 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1518 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1519 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1520 }
1521}
1522
1523static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1524
1525static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1526 unsigned long cr0,
1527 struct kvm_vcpu *vcpu)
1528{
1529 if (!(cr0 & X86_CR0_PG)) {
1530 /* From paging/starting to nonpaging */
1531 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001532 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001533 (CPU_BASED_CR3_LOAD_EXITING |
1534 CPU_BASED_CR3_STORE_EXITING));
1535 vcpu->arch.cr0 = cr0;
1536 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1537 *hw_cr0 |= X86_CR0_PE | X86_CR0_PG;
1538 *hw_cr0 &= ~X86_CR0_WP;
1539 } else if (!is_paging(vcpu)) {
1540 /* From nonpaging to paging */
1541 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001542 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001543 ~(CPU_BASED_CR3_LOAD_EXITING |
1544 CPU_BASED_CR3_STORE_EXITING));
1545 vcpu->arch.cr0 = cr0;
1546 vmx_set_cr4(vcpu, vcpu->arch.cr4);
1547 if (!(vcpu->arch.cr0 & X86_CR0_WP))
1548 *hw_cr0 &= ~X86_CR0_WP;
1549 }
1550}
1551
1552static void ept_update_paging_mode_cr4(unsigned long *hw_cr4,
1553 struct kvm_vcpu *vcpu)
1554{
1555 if (!is_paging(vcpu)) {
1556 *hw_cr4 &= ~X86_CR4_PAE;
1557 *hw_cr4 |= X86_CR4_PSE;
1558 } else if (!(vcpu->arch.cr4 & X86_CR4_PAE))
1559 *hw_cr4 &= ~X86_CR4_PAE;
1560}
1561
Avi Kivity6aa8b732006-12-10 02:21:36 -08001562static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1563{
Sheng Yang14394422008-04-28 12:24:45 +08001564 unsigned long hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) |
1565 KVM_VM_CR0_ALWAYS_ON;
1566
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001567 vmx_fpu_deactivate(vcpu);
1568
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001569 if (vcpu->arch.rmode.active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570 enter_pmode(vcpu);
1571
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001572 if (!vcpu->arch.rmode.active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001573 enter_rmode(vcpu);
1574
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001575#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001576 if (vcpu->arch.shadow_efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10001577 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001578 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10001579 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001580 exit_lmode(vcpu);
1581 }
1582#endif
1583
Sheng Yang14394422008-04-28 12:24:45 +08001584 if (vm_need_ept())
1585 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1586
Avi Kivity6aa8b732006-12-10 02:21:36 -08001587 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001588 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001589 vcpu->arch.cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001590
Rusty Russell707d92f2007-07-17 23:19:08 +10001591 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001592 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001593}
1594
Sheng Yang14394422008-04-28 12:24:45 +08001595static u64 construct_eptp(unsigned long root_hpa)
1596{
1597 u64 eptp;
1598
1599 /* TODO write the value reading from MSR */
1600 eptp = VMX_EPT_DEFAULT_MT |
1601 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1602 eptp |= (root_hpa & PAGE_MASK);
1603
1604 return eptp;
1605}
1606
Avi Kivity6aa8b732006-12-10 02:21:36 -08001607static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1608{
Sheng Yang14394422008-04-28 12:24:45 +08001609 unsigned long guest_cr3;
1610 u64 eptp;
1611
1612 guest_cr3 = cr3;
1613 if (vm_need_ept()) {
1614 eptp = construct_eptp(cr3);
1615 vmcs_write64(EPT_POINTER, eptp);
1616 ept_sync_context(eptp);
1617 ept_load_pdptrs(vcpu);
1618 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
1619 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
1620 }
1621
Sheng Yang2384d2b2008-01-17 15:14:33 +08001622 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001623 vmcs_writel(GUEST_CR3, guest_cr3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001624 if (vcpu->arch.cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001625 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001626}
1627
1628static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1629{
Sheng Yang14394422008-04-28 12:24:45 +08001630 unsigned long hw_cr4 = cr4 | (vcpu->arch.rmode.active ?
1631 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1632
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001633 vcpu->arch.cr4 = cr4;
Sheng Yang14394422008-04-28 12:24:45 +08001634 if (vm_need_ept())
1635 ept_update_paging_mode_cr4(&hw_cr4, vcpu);
1636
1637 vmcs_writel(CR4_READ_SHADOW, cr4);
1638 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001639}
1640
Avi Kivity6aa8b732006-12-10 02:21:36 -08001641static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1642{
1643 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1644
1645 return vmcs_readl(sf->base);
1646}
1647
1648static void vmx_get_segment(struct kvm_vcpu *vcpu,
1649 struct kvm_segment *var, int seg)
1650{
1651 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1652 u32 ar;
1653
1654 var->base = vmcs_readl(sf->base);
1655 var->limit = vmcs_read32(sf->limit);
1656 var->selector = vmcs_read16(sf->selector);
1657 ar = vmcs_read32(sf->ar_bytes);
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02001658 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001659 ar = 0;
1660 var->type = ar & 15;
1661 var->s = (ar >> 4) & 1;
1662 var->dpl = (ar >> 5) & 3;
1663 var->present = (ar >> 7) & 1;
1664 var->avl = (ar >> 12) & 1;
1665 var->l = (ar >> 13) & 1;
1666 var->db = (ar >> 14) & 1;
1667 var->g = (ar >> 15) & 1;
1668 var->unusable = (ar >> 16) & 1;
1669}
1670
Izik Eidus2e4d2652008-03-24 19:38:34 +02001671static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1672{
1673 struct kvm_segment kvm_seg;
1674
1675 if (!(vcpu->arch.cr0 & X86_CR0_PE)) /* if real mode */
1676 return 0;
1677
1678 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1679 return 3;
1680
1681 vmx_get_segment(vcpu, &kvm_seg, VCPU_SREG_CS);
1682 return kvm_seg.selector & 3;
1683}
1684
Avi Kivity653e3102007-05-07 10:55:37 +03001685static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001686{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001687 u32 ar;
1688
Avi Kivity653e3102007-05-07 10:55:37 +03001689 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001690 ar = 1 << 16;
1691 else {
1692 ar = var->type & 15;
1693 ar |= (var->s & 1) << 4;
1694 ar |= (var->dpl & 3) << 5;
1695 ar |= (var->present & 1) << 7;
1696 ar |= (var->avl & 1) << 12;
1697 ar |= (var->l & 1) << 13;
1698 ar |= (var->db & 1) << 14;
1699 ar |= (var->g & 1) << 15;
1700 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001701 if (ar == 0) /* a 0 value means unusable */
1702 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001703
1704 return ar;
1705}
1706
1707static void vmx_set_segment(struct kvm_vcpu *vcpu,
1708 struct kvm_segment *var, int seg)
1709{
1710 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1711 u32 ar;
1712
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001713 if (vcpu->arch.rmode.active && seg == VCPU_SREG_TR) {
1714 vcpu->arch.rmode.tr.selector = var->selector;
1715 vcpu->arch.rmode.tr.base = var->base;
1716 vcpu->arch.rmode.tr.limit = var->limit;
1717 vcpu->arch.rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001718 return;
1719 }
1720 vmcs_writel(sf->base, var->base);
1721 vmcs_write32(sf->limit, var->limit);
1722 vmcs_write16(sf->selector, var->selector);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001723 if (vcpu->arch.rmode.active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001724 /*
1725 * Hack real-mode segments into vm86 compatibility.
1726 */
1727 if (var->base == 0xffff0000 && var->selector == 0xf000)
1728 vmcs_writel(sf->base, 0xf0000);
1729 ar = 0xf3;
1730 } else
1731 ar = vmx_segment_access_rights(var);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001732 vmcs_write32(sf->ar_bytes, ar);
1733}
1734
Avi Kivity6aa8b732006-12-10 02:21:36 -08001735static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1736{
1737 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1738
1739 *db = (ar >> 14) & 1;
1740 *l = (ar >> 13) & 1;
1741}
1742
1743static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1744{
1745 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1746 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1747}
1748
1749static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1750{
1751 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1752 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1753}
1754
1755static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1756{
1757 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1758 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1759}
1760
1761static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1762{
1763 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1764 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1765}
1766
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001767static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1768{
1769 struct kvm_segment var;
1770 u32 ar;
1771
1772 vmx_get_segment(vcpu, &var, seg);
1773 ar = vmx_segment_access_rights(&var);
1774
1775 if (var.base != (var.selector << 4))
1776 return false;
1777 if (var.limit != 0xffff)
1778 return false;
1779 if (ar != 0xf3)
1780 return false;
1781
1782 return true;
1783}
1784
1785static bool code_segment_valid(struct kvm_vcpu *vcpu)
1786{
1787 struct kvm_segment cs;
1788 unsigned int cs_rpl;
1789
1790 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1791 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1792
Avi Kivity1872a3f2009-01-04 23:26:52 +02001793 if (cs.unusable)
1794 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001795 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1796 return false;
1797 if (!cs.s)
1798 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001799 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001800 if (cs.dpl > cs_rpl)
1801 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001802 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001803 if (cs.dpl != cs_rpl)
1804 return false;
1805 }
1806 if (!cs.present)
1807 return false;
1808
1809 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
1810 return true;
1811}
1812
1813static bool stack_segment_valid(struct kvm_vcpu *vcpu)
1814{
1815 struct kvm_segment ss;
1816 unsigned int ss_rpl;
1817
1818 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1819 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
1820
Avi Kivity1872a3f2009-01-04 23:26:52 +02001821 if (ss.unusable)
1822 return true;
1823 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001824 return false;
1825 if (!ss.s)
1826 return false;
1827 if (ss.dpl != ss_rpl) /* DPL != RPL */
1828 return false;
1829 if (!ss.present)
1830 return false;
1831
1832 return true;
1833}
1834
1835static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
1836{
1837 struct kvm_segment var;
1838 unsigned int rpl;
1839
1840 vmx_get_segment(vcpu, &var, seg);
1841 rpl = var.selector & SELECTOR_RPL_MASK;
1842
Avi Kivity1872a3f2009-01-04 23:26:52 +02001843 if (var.unusable)
1844 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001845 if (!var.s)
1846 return false;
1847 if (!var.present)
1848 return false;
1849 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
1850 if (var.dpl < rpl) /* DPL < RPL */
1851 return false;
1852 }
1853
1854 /* TODO: Add other members to kvm_segment_field to allow checking for other access
1855 * rights flags
1856 */
1857 return true;
1858}
1859
1860static bool tr_valid(struct kvm_vcpu *vcpu)
1861{
1862 struct kvm_segment tr;
1863
1864 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
1865
Avi Kivity1872a3f2009-01-04 23:26:52 +02001866 if (tr.unusable)
1867 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001868 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
1869 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001870 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001871 return false;
1872 if (!tr.present)
1873 return false;
1874
1875 return true;
1876}
1877
1878static bool ldtr_valid(struct kvm_vcpu *vcpu)
1879{
1880 struct kvm_segment ldtr;
1881
1882 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
1883
Avi Kivity1872a3f2009-01-04 23:26:52 +02001884 if (ldtr.unusable)
1885 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001886 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
1887 return false;
1888 if (ldtr.type != 2)
1889 return false;
1890 if (!ldtr.present)
1891 return false;
1892
1893 return true;
1894}
1895
1896static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
1897{
1898 struct kvm_segment cs, ss;
1899
1900 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1901 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1902
1903 return ((cs.selector & SELECTOR_RPL_MASK) ==
1904 (ss.selector & SELECTOR_RPL_MASK));
1905}
1906
1907/*
1908 * Check if guest state is valid. Returns true if valid, false if
1909 * not.
1910 * We assume that registers are always usable
1911 */
1912static bool guest_state_valid(struct kvm_vcpu *vcpu)
1913{
1914 /* real mode guest state checks */
1915 if (!(vcpu->arch.cr0 & X86_CR0_PE)) {
1916 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
1917 return false;
1918 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
1919 return false;
1920 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
1921 return false;
1922 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
1923 return false;
1924 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
1925 return false;
1926 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
1927 return false;
1928 } else {
1929 /* protected mode guest state checks */
1930 if (!cs_ss_rpl_check(vcpu))
1931 return false;
1932 if (!code_segment_valid(vcpu))
1933 return false;
1934 if (!stack_segment_valid(vcpu))
1935 return false;
1936 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
1937 return false;
1938 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
1939 return false;
1940 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
1941 return false;
1942 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
1943 return false;
1944 if (!tr_valid(vcpu))
1945 return false;
1946 if (!ldtr_valid(vcpu))
1947 return false;
1948 }
1949 /* TODO:
1950 * - Add checks on RIP
1951 * - Add checks on RFLAGS
1952 */
1953
1954 return true;
1955}
1956
Mike Dayd77c26f2007-10-08 09:02:08 -04001957static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001958{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001959 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02001960 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001961 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02001962 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001963
Izik Eidus195aefd2007-10-01 22:14:18 +02001964 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1965 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001966 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001967 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08001968 r = kvm_write_guest_page(kvm, fn++, &data,
1969 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02001970 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001971 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001972 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
1973 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001974 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001975 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
1976 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001977 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02001978 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001979 r = kvm_write_guest_page(kvm, fn, &data,
1980 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
1981 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02001982 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001983 goto out;
1984
1985 ret = 1;
1986out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001987 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001988}
1989
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001990static int init_rmode_identity_map(struct kvm *kvm)
1991{
1992 int i, r, ret;
1993 pfn_t identity_map_pfn;
1994 u32 tmp;
1995
1996 if (!vm_need_ept())
1997 return 1;
1998 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
1999 printk(KERN_ERR "EPT: identity-mapping pagetable "
2000 "haven't been allocated!\n");
2001 return 0;
2002 }
2003 if (likely(kvm->arch.ept_identity_pagetable_done))
2004 return 1;
2005 ret = 0;
2006 identity_map_pfn = VMX_EPT_IDENTITY_PAGETABLE_ADDR >> PAGE_SHIFT;
2007 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
2008 if (r < 0)
2009 goto out;
2010 /* Set up identity-mapping pagetable for EPT in real mode */
2011 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2012 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2013 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2014 r = kvm_write_guest_page(kvm, identity_map_pfn,
2015 &tmp, i * sizeof(tmp), sizeof(tmp));
2016 if (r < 0)
2017 goto out;
2018 }
2019 kvm->arch.ept_identity_pagetable_done = true;
2020 ret = 1;
2021out:
2022 return ret;
2023}
2024
Avi Kivity6aa8b732006-12-10 02:21:36 -08002025static void seg_setup(int seg)
2026{
2027 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2028
2029 vmcs_write16(sf->selector, 0);
2030 vmcs_writel(sf->base, 0);
2031 vmcs_write32(sf->limit, 0xffff);
Avi Kivitya16b20d2008-08-20 15:48:27 +03002032 vmcs_write32(sf->ar_bytes, 0xf3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002033}
2034
Sheng Yangf78e0e22007-10-29 09:40:42 +08002035static int alloc_apic_access_page(struct kvm *kvm)
2036{
2037 struct kvm_userspace_memory_region kvm_userspace_mem;
2038 int r = 0;
2039
Izik Eidus72dc67a2008-02-10 18:04:15 +02002040 down_write(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002041 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08002042 goto out;
2043 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
2044 kvm_userspace_mem.flags = 0;
2045 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
2046 kvm_userspace_mem.memory_size = PAGE_SIZE;
2047 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2048 if (r)
2049 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002050
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002051 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002052out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02002053 up_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002054 return r;
2055}
2056
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002057static int alloc_identity_pagetable(struct kvm *kvm)
2058{
2059 struct kvm_userspace_memory_region kvm_userspace_mem;
2060 int r = 0;
2061
2062 down_write(&kvm->slots_lock);
2063 if (kvm->arch.ept_identity_pagetable)
2064 goto out;
2065 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2066 kvm_userspace_mem.flags = 0;
2067 kvm_userspace_mem.guest_phys_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR;
2068 kvm_userspace_mem.memory_size = PAGE_SIZE;
2069 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2070 if (r)
2071 goto out;
2072
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002073 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
2074 VMX_EPT_IDENTITY_PAGETABLE_ADDR >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002075out:
2076 up_write(&kvm->slots_lock);
2077 return r;
2078}
2079
Sheng Yang2384d2b2008-01-17 15:14:33 +08002080static void allocate_vpid(struct vcpu_vmx *vmx)
2081{
2082 int vpid;
2083
2084 vmx->vpid = 0;
2085 if (!enable_vpid || !cpu_has_vmx_vpid())
2086 return;
2087 spin_lock(&vmx_vpid_lock);
2088 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2089 if (vpid < VMX_NR_VPIDS) {
2090 vmx->vpid = vpid;
2091 __set_bit(vpid, vmx_vpid_bitmap);
2092 }
2093 spin_unlock(&vmx_vpid_lock);
2094}
2095
Avi Kivity58972972009-02-24 22:26:47 +02002096static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002097{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002098 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08002099
2100 if (!cpu_has_vmx_msr_bitmap())
2101 return;
2102
2103 /*
2104 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2105 * have the write-low and read-high bitmap offsets the wrong way round.
2106 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2107 */
Sheng Yang25c5f222008-03-28 13:18:56 +08002108 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002109 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
2110 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08002111 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2112 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002113 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
2114 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08002115 }
Sheng Yang25c5f222008-03-28 13:18:56 +08002116}
2117
Avi Kivity58972972009-02-24 22:26:47 +02002118static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
2119{
2120 if (!longmode_only)
2121 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
2122 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
2123}
2124
Avi Kivity6aa8b732006-12-10 02:21:36 -08002125/*
2126 * Sets up the vmcs for emulated real mode.
2127 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002128static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002129{
Sheng Yang468d4722008-10-09 16:01:55 +08002130 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002131 u32 junk;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002132 u64 host_pat, tsc_this, tsc_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002133 unsigned long a;
2134 struct descriptor_table dt;
2135 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002136 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002137 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002138
Avi Kivity6aa8b732006-12-10 02:21:36 -08002139 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002140 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
2141 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002142
Sheng Yang25c5f222008-03-28 13:18:56 +08002143 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02002144 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08002145
Avi Kivity6aa8b732006-12-10 02:21:36 -08002146 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2147
Avi Kivity6aa8b732006-12-10 02:21:36 -08002148 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002149 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2150 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002151
2152 exec_control = vmcs_config.cpu_based_exec_ctrl;
2153 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2154 exec_control &= ~CPU_BASED_TPR_SHADOW;
2155#ifdef CONFIG_X86_64
2156 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2157 CPU_BASED_CR8_LOAD_EXITING;
2158#endif
2159 }
Sheng Yangd56f5462008-04-25 10:13:16 +08002160 if (!vm_need_ept())
2161 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03002162 CPU_BASED_CR3_LOAD_EXITING |
2163 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002164 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002165
Sheng Yang83ff3b92007-11-21 14:33:25 +08002166 if (cpu_has_secondary_exec_ctrls()) {
2167 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2168 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2169 exec_control &=
2170 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002171 if (vmx->vpid == 0)
2172 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Sheng Yangd56f5462008-04-25 10:13:16 +08002173 if (!vm_need_ept())
2174 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002175 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2176 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002177
Avi Kivityc7addb92007-09-16 18:58:32 +02002178 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2179 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002180 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2181
2182 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2183 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2184 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2185
2186 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2187 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2188 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002189 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2190 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002191 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002192#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002193 rdmsrl(MSR_FS_BASE, a);
2194 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2195 rdmsrl(MSR_GS_BASE, a);
2196 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2197#else
2198 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2199 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2200#endif
2201
2202 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2203
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002204 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002205 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2206
Mike Dayd77c26f2007-10-08 09:02:08 -04002207 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002208 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002209 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2210 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2211 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002212
2213 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2214 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2215 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2216 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2217 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2218 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2219
Sheng Yang468d4722008-10-09 16:01:55 +08002220 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2221 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2222 host_pat = msr_low | ((u64) msr_high << 32);
2223 vmcs_write64(HOST_IA32_PAT, host_pat);
2224 }
2225 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2226 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2227 host_pat = msr_low | ((u64) msr_high << 32);
2228 /* Write the default value follow host pat */
2229 vmcs_write64(GUEST_IA32_PAT, host_pat);
2230 /* Keep arch.pat sync with GUEST_IA32_PAT */
2231 vmx->vcpu.arch.pat = host_pat;
2232 }
2233
Avi Kivity6aa8b732006-12-10 02:21:36 -08002234 for (i = 0; i < NR_VMX_MSR; ++i) {
2235 u32 index = vmx_msr_index[i];
2236 u32 data_low, data_high;
2237 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002238 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002239
2240 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2241 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002242 if (wrmsr_safe(index, data_low, data_high) < 0)
2243 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002244 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002245 vmx->host_msrs[j].index = index;
2246 vmx->host_msrs[j].reserved = 0;
2247 vmx->host_msrs[j].data = data;
2248 vmx->guest_msrs[j] = vmx->host_msrs[j];
2249 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002250 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002251
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002252 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002253
2254 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002255 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2256
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002257 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
2258 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
2259
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002260 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2261 rdtscll(tsc_this);
2262 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2263 tsc_base = tsc_this;
2264
2265 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002266
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002267 return 0;
2268}
2269
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002270static int init_rmode(struct kvm *kvm)
2271{
2272 if (!init_rmode_tss(kvm))
2273 return 0;
2274 if (!init_rmode_identity_map(kvm))
2275 return 0;
2276 return 1;
2277}
2278
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002279static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2280{
2281 struct vcpu_vmx *vmx = to_vmx(vcpu);
2282 u64 msr;
2283 int ret;
2284
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002285 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002286 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002287 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002288 ret = -ENOMEM;
2289 goto out;
2290 }
2291
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002292 vmx->vcpu.arch.rmode.active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002293
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002294 vmx->soft_vnmi_blocked = 0;
2295
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002296 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002297 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002298 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
2299 if (vmx->vcpu.vcpu_id == 0)
2300 msr |= MSR_IA32_APICBASE_BSP;
2301 kvm_set_apic_base(&vmx->vcpu, msr);
2302
2303 fx_init(&vmx->vcpu);
2304
Avi Kivity5706be02008-08-20 15:07:31 +03002305 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002306 /*
2307 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2308 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2309 */
2310 if (vmx->vcpu.vcpu_id == 0) {
2311 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2312 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2313 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002314 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2315 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002316 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002317
2318 seg_setup(VCPU_SREG_DS);
2319 seg_setup(VCPU_SREG_ES);
2320 seg_setup(VCPU_SREG_FS);
2321 seg_setup(VCPU_SREG_GS);
2322 seg_setup(VCPU_SREG_SS);
2323
2324 vmcs_write16(GUEST_TR_SELECTOR, 0);
2325 vmcs_writel(GUEST_TR_BASE, 0);
2326 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2327 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2328
2329 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2330 vmcs_writel(GUEST_LDTR_BASE, 0);
2331 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2332 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2333
2334 vmcs_write32(GUEST_SYSENTER_CS, 0);
2335 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2336 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2337
2338 vmcs_writel(GUEST_RFLAGS, 0x02);
2339 if (vmx->vcpu.vcpu_id == 0)
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002340 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002341 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002342 kvm_rip_write(vcpu, 0);
2343 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002344
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002345 vmcs_writel(GUEST_DR7, 0x400);
2346
2347 vmcs_writel(GUEST_GDTR_BASE, 0);
2348 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2349
2350 vmcs_writel(GUEST_IDTR_BASE, 0);
2351 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2352
2353 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2354 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2355 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2356
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002357 /* Special registers */
2358 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2359
2360 setup_msrs(vmx);
2361
Avi Kivity6aa8b732006-12-10 02:21:36 -08002362 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2363
Sheng Yangf78e0e22007-10-29 09:40:42 +08002364 if (cpu_has_vmx_tpr_shadow()) {
2365 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2366 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2367 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002368 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002369 vmcs_write32(TPR_THRESHOLD, 0);
2370 }
2371
2372 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2373 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002374 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002375
Sheng Yang2384d2b2008-01-17 15:14:33 +08002376 if (vmx->vpid != 0)
2377 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2378
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002379 vmx->vcpu.arch.cr0 = 0x60000010;
2380 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002381 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002382 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002383 vmx_fpu_activate(&vmx->vcpu);
2384 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002385
Sheng Yang2384d2b2008-01-17 15:14:33 +08002386 vpid_sync_vcpu_all(vmx);
2387
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002388 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002389
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002390 /* HACK: Don't enable emulation on guest boot/reset */
2391 vmx->emulation_required = 0;
2392
Avi Kivity6aa8b732006-12-10 02:21:36 -08002393out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002394 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002395 return ret;
2396}
2397
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002398static void enable_irq_window(struct kvm_vcpu *vcpu)
2399{
2400 u32 cpu_based_vm_exec_control;
2401
2402 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2403 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2404 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2405}
2406
2407static void enable_nmi_window(struct kvm_vcpu *vcpu)
2408{
2409 u32 cpu_based_vm_exec_control;
2410
2411 if (!cpu_has_virtual_nmis()) {
2412 enable_irq_window(vcpu);
2413 return;
2414 }
2415
2416 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2417 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2418 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2419}
2420
Eddie Dong85f455f2007-07-06 12:20:49 +03002421static void vmx_inject_irq(struct kvm_vcpu *vcpu, int irq)
2422{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002423 struct vcpu_vmx *vmx = to_vmx(vcpu);
2424
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002425 KVMTRACE_1D(INJ_VIRQ, vcpu, (u32)irq, handler);
2426
Avi Kivityfa89a812008-09-01 15:57:51 +03002427 ++vcpu->stat.irq_injections;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002428 if (vcpu->arch.rmode.active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002429 vmx->rmode.irq.pending = true;
2430 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002431 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Avi Kivity9c5623e2007-11-08 18:19:20 +02002432 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2433 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2434 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002435 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002436 return;
2437 }
2438 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2439 irq | INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
2440}
2441
Sheng Yangf08864b2008-05-15 18:23:25 +08002442static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2443{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002444 struct vcpu_vmx *vmx = to_vmx(vcpu);
2445
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002446 if (!cpu_has_virtual_nmis()) {
2447 /*
2448 * Tracking the NMI-blocked state in software is built upon
2449 * finding the next open IRQ window. This, in turn, depends on
2450 * well-behaving guests: They have to keep IRQs disabled at
2451 * least as long as the NMI handler runs. Otherwise we may
2452 * cause NMI nesting, maybe breaking the guest. But as this is
2453 * highly unlikely, we can live with the residual risk.
2454 */
2455 vmx->soft_vnmi_blocked = 1;
2456 vmx->vnmi_blocked_time = 0;
2457 }
2458
Jan Kiszka487b3912008-09-26 09:30:56 +02002459 ++vcpu->stat.nmi_injections;
Jan Kiszka66a5a342008-09-26 09:30:51 +02002460 if (vcpu->arch.rmode.active) {
2461 vmx->rmode.irq.pending = true;
2462 vmx->rmode.irq.vector = NMI_VECTOR;
2463 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2464 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2465 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2466 INTR_INFO_VALID_MASK);
2467 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2468 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2469 return;
2470 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002471 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2472 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002473}
2474
Jan Kiszka33f089c2008-09-26 09:30:49 +02002475static void vmx_update_window_states(struct kvm_vcpu *vcpu)
2476{
2477 u32 guest_intr = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2478
2479 vcpu->arch.nmi_window_open =
2480 !(guest_intr & (GUEST_INTR_STATE_STI |
2481 GUEST_INTR_STATE_MOV_SS |
2482 GUEST_INTR_STATE_NMI));
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002483 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
2484 vcpu->arch.nmi_window_open = 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002485
2486 vcpu->arch.interrupt_window_open =
2487 ((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2488 !(guest_intr & (GUEST_INTR_STATE_STI |
2489 GUEST_INTR_STATE_MOV_SS)));
2490}
2491
Jan Kiszkaf460ee42008-09-26 09:30:50 +02002492static void do_interrupt_requests(struct kvm_vcpu *vcpu,
2493 struct kvm_run *kvm_run)
2494{
2495 vmx_update_window_states(vcpu);
2496
Jan Kiszka55934c02008-12-15 13:52:10 +01002497 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
2498 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
2499 GUEST_INTR_STATE_STI |
2500 GUEST_INTR_STATE_MOV_SS);
2501
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002502 if (vcpu->arch.nmi_pending && !vcpu->arch.nmi_injected) {
Jan Kiszka264ff012008-11-24 12:26:19 +01002503 if (vcpu->arch.interrupt.pending) {
2504 enable_nmi_window(vcpu);
2505 } else if (vcpu->arch.nmi_window_open) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002506 vcpu->arch.nmi_pending = false;
2507 vcpu->arch.nmi_injected = true;
2508 } else {
2509 enable_nmi_window(vcpu);
Jan Kiszka487b3912008-09-26 09:30:56 +02002510 return;
2511 }
Jan Kiszka487b3912008-09-26 09:30:56 +02002512 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002513 if (vcpu->arch.nmi_injected) {
2514 vmx_inject_nmi(vcpu);
Jan Kiszka45312202008-12-11 16:54:54 +01002515 if (vcpu->arch.nmi_pending)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002516 enable_nmi_window(vcpu);
2517 else if (vcpu->arch.irq_summary
2518 || kvm_run->request_interrupt_window)
2519 enable_irq_window(vcpu);
2520 return;
2521 }
Jan Kiszka487b3912008-09-26 09:30:56 +02002522
Jan Kiszkaf460ee42008-09-26 09:30:50 +02002523 if (vcpu->arch.interrupt_window_open) {
2524 if (vcpu->arch.irq_summary && !vcpu->arch.interrupt.pending)
Gleb Natapovfe4c7b12009-03-23 11:23:18 +02002525 kvm_queue_interrupt(vcpu, kvm_pop_irq(vcpu));
Jan Kiszkaf460ee42008-09-26 09:30:50 +02002526
2527 if (vcpu->arch.interrupt.pending)
2528 vmx_inject_irq(vcpu, vcpu->arch.interrupt.nr);
2529 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002530 if (!vcpu->arch.interrupt_window_open &&
2531 (vcpu->arch.irq_summary || kvm_run->request_interrupt_window))
Jan Kiszkaf460ee42008-09-26 09:30:50 +02002532 enable_irq_window(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002533}
2534
Izik Eiduscbc94022007-10-25 00:29:55 +02002535static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2536{
2537 int ret;
2538 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002539 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002540 .guest_phys_addr = addr,
2541 .memory_size = PAGE_SIZE * 3,
2542 .flags = 0,
2543 };
2544
2545 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2546 if (ret)
2547 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002548 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002549 return 0;
2550}
2551
Avi Kivity6aa8b732006-12-10 02:21:36 -08002552static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2553 int vec, u32 err_code)
2554{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002555 /*
2556 * Instruction with address size override prefix opcode 0x67
2557 * Cause the #SS fault with 0 error code in VM86 mode.
2558 */
2559 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Laurent Vivier34273182007-09-18 11:27:37 +02002560 if (emulate_instruction(vcpu, NULL, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002561 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002562 /*
2563 * Forward all other exceptions that are valid in real mode.
2564 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2565 * the required debugging infrastructure rework.
2566 */
2567 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002568 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002569 if (vcpu->guest_debug &
2570 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2571 return 0;
2572 kvm_queue_exception(vcpu, vec);
2573 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002574 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002575 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2576 return 0;
2577 /* fall through */
2578 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002579 case OF_VECTOR:
2580 case BR_VECTOR:
2581 case UD_VECTOR:
2582 case DF_VECTOR:
2583 case SS_VECTOR:
2584 case GP_VECTOR:
2585 case MF_VECTOR:
2586 kvm_queue_exception(vcpu, vec);
2587 return 1;
2588 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002589 return 0;
2590}
2591
2592static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2593{
Avi Kivity1155f762007-11-22 11:30:47 +02002594 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002595 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002596 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002597 u32 vect_info;
2598 enum emulation_result er;
2599
Avi Kivity1155f762007-11-22 11:30:47 +02002600 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002601 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2602
2603 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04002604 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002605 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002606 "intr info 0x%x\n", __func__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002607
Eddie Dong85f455f2007-07-06 12:20:49 +03002608 if (!irqchip_in_kernel(vcpu->kvm) && is_external_interrupt(vect_info)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002609 int irq = vect_info & VECTORING_INFO_VECTOR_MASK;
Gleb Natapovfe4c7b12009-03-23 11:23:18 +02002610 kvm_push_irq(vcpu, irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002611 }
2612
Jan Kiszkae4a41882008-09-26 09:30:46 +02002613 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002614 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002615
2616 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002617 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002618 return 1;
2619 }
2620
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002621 if (is_invalid_opcode(intr_info)) {
Sheng Yang571008d2008-01-02 14:49:22 +08002622 er = emulate_instruction(vcpu, kvm_run, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002623 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002624 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002625 return 1;
2626 }
2627
Avi Kivity6aa8b732006-12-10 02:21:36 -08002628 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002629 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002630 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002631 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2632 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002633 /* EPT won't cause page fault directly */
2634 if (vm_need_ept())
2635 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002636 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002637 KVMTRACE_3D(PAGE_FAULT, vcpu, error_code, (u32)cr2,
2638 (u32)((u64)cr2 >> 32), handler);
Avi Kivityf7d92382008-07-03 16:14:28 +03002639 if (vcpu->arch.interrupt.pending || vcpu->arch.exception.pending)
Avi Kivity577bdc42008-07-19 08:57:05 +03002640 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002641 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002642 }
2643
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002644 if (vcpu->arch.rmode.active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002645 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002646 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002647 if (vcpu->arch.halt_request) {
2648 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002649 return kvm_emulate_halt(vcpu);
2650 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002651 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002652 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002653
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002654 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002655 switch (ex_no) {
2656 case DB_VECTOR:
2657 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2658 if (!(vcpu->guest_debug &
2659 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2660 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2661 kvm_queue_exception(vcpu, DB_VECTOR);
2662 return 1;
2663 }
2664 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2665 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2666 /* fall through */
2667 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002668 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002669 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2670 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002671 break;
2672 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002673 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2674 kvm_run->ex.exception = ex_no;
2675 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002676 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002677 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002678 return 0;
2679}
2680
2681static int handle_external_interrupt(struct kvm_vcpu *vcpu,
2682 struct kvm_run *kvm_run)
2683{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002684 ++vcpu->stat.irq_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002685 KVMTRACE_1D(INTR, vcpu, vmcs_read32(VM_EXIT_INTR_INFO), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002686 return 1;
2687}
2688
Avi Kivity988ad742007-02-12 00:54:36 -08002689static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2690{
2691 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2692 return 0;
2693}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002694
Avi Kivity6aa8b732006-12-10 02:21:36 -08002695static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2696{
He, Qingbfdaab02007-09-12 14:18:28 +08002697 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002698 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002699 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002700
Avi Kivity1165f5f2007-04-19 17:27:43 +03002701 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002702 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002703 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002704
2705 if (string) {
Laurent Vivier34273182007-09-18 11:27:37 +02002706 if (emulate_instruction(vcpu,
2707 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002708 return 0;
2709 return 1;
2710 }
2711
2712 size = (exit_qualification & 7) + 1;
2713 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002714 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002715
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002716 skip_emulated_instruction(vcpu);
Laurent Vivier3090dd72007-08-05 10:43:32 +03002717 return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002718}
2719
Ingo Molnar102d8322007-02-19 14:37:47 +02002720static void
2721vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2722{
2723 /*
2724 * Patch in the VMCALL instruction:
2725 */
2726 hypercall[0] = 0x0f;
2727 hypercall[1] = 0x01;
2728 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002729}
2730
Avi Kivity6aa8b732006-12-10 02:21:36 -08002731static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2732{
He, Qingbfdaab02007-09-12 14:18:28 +08002733 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002734 int cr;
2735 int reg;
2736
He, Qingbfdaab02007-09-12 14:18:28 +08002737 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002738 cr = exit_qualification & 15;
2739 reg = (exit_qualification >> 8) & 15;
2740 switch ((exit_qualification >> 4) & 3) {
2741 case 0: /* mov to cr */
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002742 KVMTRACE_3D(CR_WRITE, vcpu, (u32)cr,
2743 (u32)kvm_register_read(vcpu, reg),
2744 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
2745 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002746 switch (cr) {
2747 case 0:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002748 kvm_set_cr0(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002749 skip_emulated_instruction(vcpu);
2750 return 1;
2751 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002752 kvm_set_cr3(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002753 skip_emulated_instruction(vcpu);
2754 return 1;
2755 case 4:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002756 kvm_set_cr4(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002757 skip_emulated_instruction(vcpu);
2758 return 1;
2759 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002760 kvm_set_cr8(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002761 skip_emulated_instruction(vcpu);
Avi Kivitye5314062007-12-06 16:32:45 +02002762 if (irqchip_in_kernel(vcpu->kvm))
2763 return 1;
Yang, Sheng253abde2007-08-16 13:01:00 +03002764 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
2765 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002766 };
2767 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002768 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002769 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002770 vcpu->arch.cr0 &= ~X86_CR0_TS;
2771 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002772 vmx_fpu_activate(vcpu);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002773 KVMTRACE_0D(CLTS, vcpu, handler);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002774 skip_emulated_instruction(vcpu);
2775 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002776 case 1: /*mov from cr*/
2777 switch (cr) {
2778 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002779 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002780 KVMTRACE_3D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002781 (u32)kvm_register_read(vcpu, reg),
2782 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002783 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002784 skip_emulated_instruction(vcpu);
2785 return 1;
2786 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002787 kvm_register_write(vcpu, reg, kvm_get_cr8(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002788 KVMTRACE_2D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002789 (u32)kvm_register_read(vcpu, reg), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002790 skip_emulated_instruction(vcpu);
2791 return 1;
2792 }
2793 break;
2794 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002795 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002796
2797 skip_emulated_instruction(vcpu);
2798 return 1;
2799 default:
2800 break;
2801 }
2802 kvm_run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002803 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002804 (int)(exit_qualification >> 4) & 3, cr);
2805 return 0;
2806}
2807
2808static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2809{
He, Qingbfdaab02007-09-12 14:18:28 +08002810 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002811 unsigned long val;
2812 int dr, reg;
2813
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002814 dr = vmcs_readl(GUEST_DR7);
2815 if (dr & DR7_GD) {
2816 /*
2817 * As the vm-exit takes precedence over the debug trap, we
2818 * need to emulate the latter, either for the host or the
2819 * guest debugging itself.
2820 */
2821 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
2822 kvm_run->debug.arch.dr6 = vcpu->arch.dr6;
2823 kvm_run->debug.arch.dr7 = dr;
2824 kvm_run->debug.arch.pc =
2825 vmcs_readl(GUEST_CS_BASE) +
2826 vmcs_readl(GUEST_RIP);
2827 kvm_run->debug.arch.exception = DB_VECTOR;
2828 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2829 return 0;
2830 } else {
2831 vcpu->arch.dr7 &= ~DR7_GD;
2832 vcpu->arch.dr6 |= DR6_BD;
2833 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2834 kvm_queue_exception(vcpu, DB_VECTOR);
2835 return 1;
2836 }
2837 }
2838
He, Qingbfdaab02007-09-12 14:18:28 +08002839 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002840 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
2841 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
2842 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002843 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002844 case 0 ... 3:
2845 val = vcpu->arch.db[dr];
2846 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002847 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002848 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002849 break;
2850 case 7:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002851 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002852 break;
2853 default:
2854 val = 0;
2855 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002856 kvm_register_write(vcpu, reg, val);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002857 KVMTRACE_2D(DR_READ, vcpu, (u32)dr, (u32)val, handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002858 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002859 val = vcpu->arch.regs[reg];
2860 switch (dr) {
2861 case 0 ... 3:
2862 vcpu->arch.db[dr] = val;
2863 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
2864 vcpu->arch.eff_db[dr] = val;
2865 break;
2866 case 4 ... 5:
2867 if (vcpu->arch.cr4 & X86_CR4_DE)
2868 kvm_queue_exception(vcpu, UD_VECTOR);
2869 break;
2870 case 6:
2871 if (val & 0xffffffff00000000ULL) {
2872 kvm_queue_exception(vcpu, GP_VECTOR);
2873 break;
2874 }
2875 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
2876 break;
2877 case 7:
2878 if (val & 0xffffffff00000000ULL) {
2879 kvm_queue_exception(vcpu, GP_VECTOR);
2880 break;
2881 }
2882 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
2883 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
2884 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2885 vcpu->arch.switch_db_regs =
2886 (val & DR7_BP_EN_MASK);
2887 }
2888 break;
2889 }
2890 KVMTRACE_2D(DR_WRITE, vcpu, (u32)dr, (u32)val, handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002891 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002892 skip_emulated_instruction(vcpu);
2893 return 1;
2894}
2895
2896static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2897{
Avi Kivity06465c52007-02-28 20:46:53 +02002898 kvm_emulate_cpuid(vcpu);
2899 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002900}
2901
2902static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2903{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002904 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08002905 u64 data;
2906
2907 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002908 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002909 return 1;
2910 }
2911
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002912 KVMTRACE_3D(MSR_READ, vcpu, ecx, (u32)data, (u32)(data >> 32),
2913 handler);
2914
Avi Kivity6aa8b732006-12-10 02:21:36 -08002915 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002916 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
2917 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002918 skip_emulated_instruction(vcpu);
2919 return 1;
2920}
2921
2922static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2923{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002924 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
2925 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
2926 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002927
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002928 KVMTRACE_3D(MSR_WRITE, vcpu, ecx, (u32)data, (u32)(data >> 32),
2929 handler);
2930
Avi Kivity6aa8b732006-12-10 02:21:36 -08002931 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002932 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002933 return 1;
2934 }
2935
2936 skip_emulated_instruction(vcpu);
2937 return 1;
2938}
2939
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002940static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
2941 struct kvm_run *kvm_run)
2942{
2943 return 1;
2944}
2945
Avi Kivity6aa8b732006-12-10 02:21:36 -08002946static int handle_interrupt_window(struct kvm_vcpu *vcpu,
2947 struct kvm_run *kvm_run)
2948{
Eddie Dong85f455f2007-07-06 12:20:49 +03002949 u32 cpu_based_vm_exec_control;
2950
2951 /* clear pending irq */
2952 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2953 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2954 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002955
2956 KVMTRACE_0D(PEND_INTR, vcpu, handler);
Jan Kiszkaa26bf122008-09-26 09:30:45 +02002957 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002958
Dor Laorc1150d82007-01-05 16:36:24 -08002959 /*
2960 * If the user space waits to inject interrupts, exit as soon as
2961 * possible
2962 */
2963 if (kvm_run->request_interrupt_window &&
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002964 !vcpu->arch.irq_summary) {
Dor Laorc1150d82007-01-05 16:36:24 -08002965 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08002966 return 0;
2967 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002968 return 1;
2969}
2970
2971static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2972{
2973 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03002974 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002975}
2976
Ingo Molnarc21415e2007-02-19 14:37:47 +02002977static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2978{
Dor Laor510043d2007-02-19 18:25:43 +02002979 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002980 kvm_emulate_hypercall(vcpu);
2981 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02002982}
2983
Marcelo Tosattia7052892008-09-23 13:18:35 -03002984static int handle_invlpg(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2985{
2986 u64 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
2987
2988 kvm_mmu_invlpg(vcpu, exit_qualification);
2989 skip_emulated_instruction(vcpu);
2990 return 1;
2991}
2992
Eddie Donge5edaa02007-11-11 12:28:35 +02002993static int handle_wbinvd(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2994{
2995 skip_emulated_instruction(vcpu);
2996 /* TODO: Add support for VT-d/pass-through device */
2997 return 1;
2998}
2999
Sheng Yangf78e0e22007-10-29 09:40:42 +08003000static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3001{
3002 u64 exit_qualification;
3003 enum emulation_result er;
3004 unsigned long offset;
3005
3006 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
3007 offset = exit_qualification & 0xffful;
3008
3009 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
3010
3011 if (er != EMULATE_DONE) {
3012 printk(KERN_ERR
3013 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3014 offset);
3015 return -ENOTSUPP;
3016 }
3017 return 1;
3018}
3019
Izik Eidus37817f22008-03-24 23:14:53 +02003020static int handle_task_switch(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3021{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003022 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003023 unsigned long exit_qualification;
3024 u16 tss_selector;
3025 int reason;
3026
3027 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3028
3029 reason = (u32)exit_qualification >> 30;
Jan Kiszka60637aa2008-09-26 09:30:47 +02003030 if (reason == TASK_SWITCH_GATE && vmx->vcpu.arch.nmi_injected &&
3031 (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
3032 (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK)
3033 == INTR_TYPE_NMI_INTR) {
3034 vcpu->arch.nmi_injected = false;
3035 if (cpu_has_virtual_nmis())
3036 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3037 GUEST_INTR_STATE_NMI);
3038 }
Izik Eidus37817f22008-03-24 23:14:53 +02003039 tss_selector = exit_qualification;
3040
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003041 if (!kvm_task_switch(vcpu, tss_selector, reason))
3042 return 0;
3043
3044 /* clear all local breakpoint enable flags */
3045 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3046
3047 /*
3048 * TODO: What about debug traps on tss switch?
3049 * Are we supposed to inject them and update dr6?
3050 */
3051
3052 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003053}
3054
Sheng Yang14394422008-04-28 12:24:45 +08003055static int handle_ept_violation(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3056{
3057 u64 exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003058 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003059 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003060
3061 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
3062
3063 if (exit_qualification & (1 << 6)) {
3064 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
3065 return -ENOTSUPP;
3066 }
3067
3068 gla_validity = (exit_qualification >> 7) & 0x3;
3069 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3070 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3071 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3072 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
3073 (long unsigned int)vmcs_read64(GUEST_LINEAR_ADDRESS));
3074 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3075 (long unsigned int)exit_qualification);
3076 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
3077 kvm_run->hw.hardware_exit_reason = 0;
3078 return -ENOTSUPP;
3079 }
3080
3081 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003082 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003083}
3084
Sheng Yangf08864b2008-05-15 18:23:25 +08003085static int handle_nmi_window(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3086{
3087 u32 cpu_based_vm_exec_control;
3088
3089 /* clear pending NMI */
3090 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3091 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3092 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3093 ++vcpu->stat.nmi_window_exits;
3094
3095 return 1;
3096}
3097
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003098static void handle_invalid_guest_state(struct kvm_vcpu *vcpu,
3099 struct kvm_run *kvm_run)
3100{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003101 struct vcpu_vmx *vmx = to_vmx(vcpu);
3102 enum emulation_result err = EMULATE_DONE;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003103
3104 preempt_enable();
3105 local_irq_enable();
3106
3107 while (!guest_state_valid(vcpu)) {
3108 err = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
3109
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003110 if (err == EMULATE_DO_MMIO)
3111 break;
3112
3113 if (err != EMULATE_DONE) {
3114 kvm_report_emulation_failure(vcpu, "emulation failure");
3115 return;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003116 }
3117
3118 if (signal_pending(current))
3119 break;
3120 if (need_resched())
3121 schedule();
3122 }
3123
3124 local_irq_disable();
3125 preempt_disable();
Avi Kivity8b3079a2009-01-05 12:10:54 +02003126
3127 vmx->invalid_state_emulation_result = err;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003128}
3129
Avi Kivity6aa8b732006-12-10 02:21:36 -08003130/*
3131 * The exit handlers return 1 if the exit was handled fully and guest execution
3132 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3133 * to be done to userspace and return 0.
3134 */
3135static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
3136 struct kvm_run *kvm_run) = {
3137 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3138 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003139 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003140 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003141 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003142 [EXIT_REASON_CR_ACCESS] = handle_cr,
3143 [EXIT_REASON_DR_ACCESS] = handle_dr,
3144 [EXIT_REASON_CPUID] = handle_cpuid,
3145 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3146 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3147 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3148 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003149 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003150 [EXIT_REASON_VMCALL] = handle_vmcall,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003151 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3152 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003153 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003154 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Sheng Yang14394422008-04-28 12:24:45 +08003155 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003156};
3157
3158static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003159 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003160
3161/*
3162 * The guest has exited. See if we can fix it or if we need userspace
3163 * assistance.
3164 */
Avi Kivity6062d012009-03-23 17:35:17 +02003165static int vmx_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003166{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003167 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity29bd8a72007-09-10 17:27:03 +03003168 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1155f762007-11-22 11:30:47 +02003169 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003170
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003171 KVMTRACE_3D(VMEXIT, vcpu, exit_reason, (u32)kvm_rip_read(vcpu),
3172 (u32)((u64)kvm_rip_read(vcpu) >> 32), entryexit);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003173
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003174 /* If we need to emulate an MMIO from handle_invalid_guest_state
3175 * we just return 0 */
Avi Kivity10f32d82009-01-05 00:53:19 +02003176 if (vmx->emulation_required && emulate_invalid_guest_state) {
3177 if (guest_state_valid(vcpu))
3178 vmx->emulation_required = 0;
Avi Kivity8b3079a2009-01-05 12:10:54 +02003179 return vmx->invalid_state_emulation_result != EMULATE_DO_MMIO;
Avi Kivity10f32d82009-01-05 00:53:19 +02003180 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003181
Sheng Yang14394422008-04-28 12:24:45 +08003182 /* Access CR3 don't cause VMExit in paging mode, so we need
3183 * to sync with guest real CR3. */
3184 if (vm_need_ept() && is_paging(vcpu)) {
3185 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
3186 ept_load_pdptrs(vcpu);
3187 }
3188
Avi Kivity29bd8a72007-09-10 17:27:03 +03003189 if (unlikely(vmx->fail)) {
3190 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3191 kvm_run->fail_entry.hardware_entry_failure_reason
3192 = vmcs_read32(VM_INSTRUCTION_ERROR);
3193 return 0;
3194 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003195
Mike Dayd77c26f2007-10-08 09:02:08 -04003196 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003197 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003198 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3199 exit_reason != EXIT_REASON_TASK_SWITCH))
3200 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3201 "(0x%x) and exit reason is 0x%x\n",
3202 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003203
3204 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
3205 if (vcpu->arch.interrupt_window_open) {
3206 vmx->soft_vnmi_blocked = 0;
3207 vcpu->arch.nmi_window_open = 1;
3208 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003209 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003210 /*
3211 * This CPU don't support us in finding the end of an
3212 * NMI-blocked window if the guest runs with IRQs
3213 * disabled. So we pull the trigger after 1 s of
3214 * futile waiting, but inform the user about this.
3215 */
3216 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3217 "state on VCPU %d after 1 s timeout\n",
3218 __func__, vcpu->vcpu_id);
3219 vmx->soft_vnmi_blocked = 0;
3220 vmx->vcpu.arch.nmi_window_open = 1;
3221 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003222 }
3223
Avi Kivity6aa8b732006-12-10 02:21:36 -08003224 if (exit_reason < kvm_vmx_max_exit_handlers
3225 && kvm_vmx_exit_handlers[exit_reason])
3226 return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
3227 else {
3228 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
3229 kvm_run->hw.hardware_exit_reason = exit_reason;
3230 }
3231 return 0;
3232}
3233
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003234static void update_tpr_threshold(struct kvm_vcpu *vcpu)
3235{
3236 int max_irr, tpr;
3237
3238 if (!vm_need_tpr_shadow(vcpu->kvm))
3239 return;
3240
3241 if (!kvm_lapic_enabled(vcpu) ||
3242 ((max_irr = kvm_lapic_find_highest_irr(vcpu)) == -1)) {
3243 vmcs_write32(TPR_THRESHOLD, 0);
3244 return;
3245 }
3246
3247 tpr = (kvm_lapic_get_cr8(vcpu) & 0x0f) << 4;
3248 vmcs_write32(TPR_THRESHOLD, (max_irr > tpr) ? tpr >> 4 : max_irr >> 4);
3249}
3250
Avi Kivitycf393f72008-07-01 16:20:21 +03003251static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3252{
3253 u32 exit_intr_info;
Avi Kivity668f6122008-07-02 09:28:55 +03003254 u32 idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003255 bool unblock_nmi;
3256 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003257 int type;
3258 bool idtv_info_valid;
Avi Kivity35920a32008-07-03 14:50:12 +03003259 u32 error;
Avi Kivitycf393f72008-07-01 16:20:21 +03003260
3261 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
3262 if (cpu_has_virtual_nmis()) {
3263 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3264 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3265 /*
3266 * SDM 3: 25.7.1.2
3267 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3268 * a guest IRET fault.
3269 */
3270 if (unblock_nmi && vector != DF_VECTOR)
3271 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3272 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003273 } else if (unlikely(vmx->soft_vnmi_blocked))
3274 vmx->vnmi_blocked_time +=
3275 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003276
3277 idt_vectoring_info = vmx->idt_vectoring_info;
3278 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3279 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3280 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
3281 if (vmx->vcpu.arch.nmi_injected) {
3282 /*
3283 * SDM 3: 25.7.1.2
3284 * Clear bit "block by NMI" before VM entry if a NMI delivery
3285 * faulted.
3286 */
3287 if (idtv_info_valid && type == INTR_TYPE_NMI_INTR)
3288 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3289 GUEST_INTR_STATE_NMI);
3290 else
3291 vmx->vcpu.arch.nmi_injected = false;
3292 }
Avi Kivity35920a32008-07-03 14:50:12 +03003293 kvm_clear_exception_queue(&vmx->vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003294 if (idtv_info_valid && (type == INTR_TYPE_HARD_EXCEPTION ||
3295 type == INTR_TYPE_SOFT_EXCEPTION)) {
Avi Kivity35920a32008-07-03 14:50:12 +03003296 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
3297 error = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3298 kvm_queue_exception_e(&vmx->vcpu, vector, error);
3299 } else
3300 kvm_queue_exception(&vmx->vcpu, vector);
3301 vmx->idt_vectoring_info = 0;
3302 }
Avi Kivityf7d92382008-07-03 16:14:28 +03003303 kvm_clear_interrupt_queue(&vmx->vcpu);
3304 if (idtv_info_valid && type == INTR_TYPE_EXT_INTR) {
3305 kvm_queue_interrupt(&vmx->vcpu, vector);
3306 vmx->idt_vectoring_info = 0;
3307 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003308}
3309
Eddie Dong85f455f2007-07-06 12:20:49 +03003310static void vmx_intr_assist(struct kvm_vcpu *vcpu)
3311{
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003312 update_tpr_threshold(vcpu);
3313
Jan Kiszka33f089c2008-09-26 09:30:49 +02003314 vmx_update_window_states(vcpu);
3315
Jan Kiszka55934c02008-12-15 13:52:10 +01003316 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3317 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3318 GUEST_INTR_STATE_STI |
3319 GUEST_INTR_STATE_MOV_SS);
3320
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003321 if (vcpu->arch.nmi_pending && !vcpu->arch.nmi_injected) {
3322 if (vcpu->arch.interrupt.pending) {
3323 enable_nmi_window(vcpu);
3324 } else if (vcpu->arch.nmi_window_open) {
3325 vcpu->arch.nmi_pending = false;
3326 vcpu->arch.nmi_injected = true;
3327 } else {
3328 enable_nmi_window(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08003329 return;
3330 }
Sheng Yangf08864b2008-05-15 18:23:25 +08003331 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003332 if (vcpu->arch.nmi_injected) {
3333 vmx_inject_nmi(vcpu);
3334 if (vcpu->arch.nmi_pending)
3335 enable_nmi_window(vcpu);
3336 else if (kvm_cpu_has_interrupt(vcpu))
3337 enable_irq_window(vcpu);
3338 return;
3339 }
Avi Kivityf7d92382008-07-03 16:14:28 +03003340 if (!vcpu->arch.interrupt.pending && kvm_cpu_has_interrupt(vcpu)) {
Jan Kiszka33f089c2008-09-26 09:30:49 +02003341 if (vcpu->arch.interrupt_window_open)
Avi Kivityf7d92382008-07-03 16:14:28 +03003342 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu));
3343 else
3344 enable_irq_window(vcpu);
3345 }
3346 if (vcpu->arch.interrupt.pending) {
3347 vmx_inject_irq(vcpu, vcpu->arch.interrupt.nr);
Avi Kivitydf203ec2008-11-23 18:08:57 +02003348 if (kvm_cpu_has_interrupt(vcpu))
3349 enable_irq_window(vcpu);
Avi Kivityf7d92382008-07-03 16:14:28 +03003350 }
Eddie Dong85f455f2007-07-06 12:20:49 +03003351}
3352
Avi Kivity9c8cba32007-11-22 11:42:59 +02003353/*
3354 * Failure to inject an interrupt should give us the information
3355 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3356 * when fetching the interrupt redirection bitmap in the real-mode
3357 * tss, this doesn't happen. So we do it ourselves.
3358 */
3359static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3360{
3361 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003362 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003363 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003364 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003365 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3366 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3367 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3368 return;
3369 }
3370 vmx->idt_vectoring_info =
3371 VECTORING_INFO_VALID_MASK
3372 | INTR_TYPE_EXT_INTR
3373 | vmx->rmode.irq.vector;
3374}
3375
Avi Kivityc8019492008-07-14 14:44:59 +03003376#ifdef CONFIG_X86_64
3377#define R "r"
3378#define Q "q"
3379#else
3380#define R "e"
3381#define Q "l"
3382#endif
3383
Avi Kivity04d2cc72007-09-10 18:10:54 +03003384static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003385{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003386 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1b6269d2007-10-09 12:12:19 +02003387 u32 intr_info;
Avi Kivitye6adf282007-04-30 16:07:54 +03003388
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003389 /* Record the guest's net vcpu time for enforced NMI injections. */
3390 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3391 vmx->entry_time = ktime_get();
3392
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003393 /* Handle invalid guest state instead of entering VMX */
3394 if (vmx->emulation_required && emulate_invalid_guest_state) {
3395 handle_invalid_guest_state(vcpu, kvm_run);
3396 return;
3397 }
3398
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003399 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3400 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3401 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3402 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3403
Avi Kivitye6adf282007-04-30 16:07:54 +03003404 /*
3405 * Loading guest fpu may have cleared host cr0.ts
3406 */
3407 vmcs_writel(HOST_CR0, read_cr0());
3408
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003409 set_debugreg(vcpu->arch.dr6, 6);
3410
Mike Dayd77c26f2007-10-08 09:02:08 -04003411 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003412 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003413 "push %%"R"dx; push %%"R"bp;"
3414 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003415 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3416 "je 1f \n\t"
3417 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003418 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003419 "1: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003420 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003421 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003422 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003423 "mov %c[cr2](%0), %%"R"ax \n\t"
3424 "mov %%"R"ax, %%cr2 \n\t"
3425 "mov %c[rax](%0), %%"R"ax \n\t"
3426 "mov %c[rbx](%0), %%"R"bx \n\t"
3427 "mov %c[rdx](%0), %%"R"dx \n\t"
3428 "mov %c[rsi](%0), %%"R"si \n\t"
3429 "mov %c[rdi](%0), %%"R"di \n\t"
3430 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003431#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003432 "mov %c[r8](%0), %%r8 \n\t"
3433 "mov %c[r9](%0), %%r9 \n\t"
3434 "mov %c[r10](%0), %%r10 \n\t"
3435 "mov %c[r11](%0), %%r11 \n\t"
3436 "mov %c[r12](%0), %%r12 \n\t"
3437 "mov %c[r13](%0), %%r13 \n\t"
3438 "mov %c[r14](%0), %%r14 \n\t"
3439 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003440#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003441 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3442
Avi Kivity6aa8b732006-12-10 02:21:36 -08003443 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003444 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003445 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003446 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003447 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003448 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003449 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003450 "xchg %0, (%%"R"sp) \n\t"
3451 "mov %%"R"ax, %c[rax](%0) \n\t"
3452 "mov %%"R"bx, %c[rbx](%0) \n\t"
3453 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3454 "mov %%"R"dx, %c[rdx](%0) \n\t"
3455 "mov %%"R"si, %c[rsi](%0) \n\t"
3456 "mov %%"R"di, %c[rdi](%0) \n\t"
3457 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003458#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003459 "mov %%r8, %c[r8](%0) \n\t"
3460 "mov %%r9, %c[r9](%0) \n\t"
3461 "mov %%r10, %c[r10](%0) \n\t"
3462 "mov %%r11, %c[r11](%0) \n\t"
3463 "mov %%r12, %c[r12](%0) \n\t"
3464 "mov %%r13, %c[r13](%0) \n\t"
3465 "mov %%r14, %c[r14](%0) \n\t"
3466 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003467#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003468 "mov %%cr2, %%"R"ax \n\t"
3469 "mov %%"R"ax, %c[cr2](%0) \n\t"
3470
3471 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003472 "setbe %c[fail](%0) \n\t"
3473 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3474 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3475 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003476 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003477 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3478 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3479 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3480 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3481 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3482 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3483 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003484#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003485 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3486 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3487 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3488 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3489 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3490 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3491 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3492 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003493#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003494 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003495 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003496 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003497#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003498 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3499#endif
3500 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003501
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003502 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
3503 vcpu->arch.regs_dirty = 0;
3504
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003505 get_debugreg(vcpu->arch.dr6, 6);
3506
Avi Kivity1155f762007-11-22 11:30:47 +02003507 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003508 if (vmx->rmode.irq.pending)
3509 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003510
Jan Kiszka33f089c2008-09-26 09:30:49 +02003511 vmx_update_window_states(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003512
Mike Dayd77c26f2007-10-08 09:02:08 -04003513 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003514 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003515
3516 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
3517
3518 /* We need to handle NMIs before interrupts are enabled */
Jan Kiszkae4a41882008-09-26 09:30:46 +02003519 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Sheng Yangf08864b2008-05-15 18:23:25 +08003520 (intr_info & INTR_INFO_VALID_MASK)) {
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003521 KVMTRACE_0D(NMI, vcpu, handler);
Avi Kivity1b6269d2007-10-09 12:12:19 +02003522 asm("int $2");
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003523 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003524
3525 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003526}
3527
Avi Kivityc8019492008-07-14 14:44:59 +03003528#undef R
3529#undef Q
3530
Avi Kivity6aa8b732006-12-10 02:21:36 -08003531static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3532{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003533 struct vcpu_vmx *vmx = to_vmx(vcpu);
3534
3535 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003536 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003537 free_vmcs(vmx->vmcs);
3538 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003539 }
3540}
3541
3542static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3543{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003544 struct vcpu_vmx *vmx = to_vmx(vcpu);
3545
Sheng Yang2384d2b2008-01-17 15:14:33 +08003546 spin_lock(&vmx_vpid_lock);
3547 if (vmx->vpid != 0)
3548 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3549 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003550 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003551 kfree(vmx->host_msrs);
3552 kfree(vmx->guest_msrs);
3553 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003554 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003555}
3556
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003557static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003558{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003559 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003560 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003561 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003562
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003563 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003564 return ERR_PTR(-ENOMEM);
3565
Sheng Yang2384d2b2008-01-17 15:14:33 +08003566 allocate_vpid(vmx);
3567
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003568 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3569 if (err)
3570 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003571
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003572 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003573 if (!vmx->guest_msrs) {
3574 err = -ENOMEM;
3575 goto uninit_vcpu;
3576 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003577
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003578 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
3579 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003580 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003581
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003582 vmx->vmcs = alloc_vmcs();
3583 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003584 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003585
3586 vmcs_clear(vmx->vmcs);
3587
Avi Kivity15ad7142007-07-11 18:17:21 +03003588 cpu = get_cpu();
3589 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003590 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003591 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003592 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003593 if (err)
3594 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003595 if (vm_need_virtualize_apic_accesses(kvm))
3596 if (alloc_apic_access_page(kvm) != 0)
3597 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003598
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003599 if (vm_need_ept())
3600 if (alloc_identity_pagetable(kvm) != 0)
3601 goto free_vmcs;
3602
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003603 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003604
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003605free_vmcs:
3606 free_vmcs(vmx->vmcs);
3607free_msrs:
3608 kfree(vmx->host_msrs);
3609free_guest_msrs:
3610 kfree(vmx->guest_msrs);
3611uninit_vcpu:
3612 kvm_vcpu_uninit(&vmx->vcpu);
3613free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003614 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003615 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003616}
3617
Yang, Sheng002c7f72007-07-31 14:23:01 +03003618static void __init vmx_check_processor_compat(void *rtn)
3619{
3620 struct vmcs_config vmcs_conf;
3621
3622 *(int *)rtn = 0;
3623 if (setup_vmcs_config(&vmcs_conf) < 0)
3624 *(int *)rtn = -EIO;
3625 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3626 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3627 smp_processor_id());
3628 *(int *)rtn = -EIO;
3629 }
3630}
3631
Sheng Yang67253af2008-04-25 10:20:22 +08003632static int get_ept_level(void)
3633{
3634 return VMX_EPT_DEFAULT_GAW + 1;
3635}
3636
Sheng Yang64d4d522008-10-09 16:01:57 +08003637static int vmx_get_mt_mask_shift(void)
3638{
3639 return VMX_EPT_MT_EPTE_SHIFT;
3640}
3641
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003642static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003643 .cpu_has_kvm_support = cpu_has_kvm_support,
3644 .disabled_by_bios = vmx_disabled_by_bios,
3645 .hardware_setup = hardware_setup,
3646 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003647 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003648 .hardware_enable = hardware_enable,
3649 .hardware_disable = hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02003650 .cpu_has_accelerated_tpr = cpu_has_vmx_virtualize_apic_accesses,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003651
3652 .vcpu_create = vmx_create_vcpu,
3653 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003654 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003655
Avi Kivity04d2cc72007-09-10 18:10:54 +03003656 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003657 .vcpu_load = vmx_vcpu_load,
3658 .vcpu_put = vmx_vcpu_put,
3659
3660 .set_guest_debug = set_guest_debug,
3661 .get_msr = vmx_get_msr,
3662 .set_msr = vmx_set_msr,
3663 .get_segment_base = vmx_get_segment_base,
3664 .get_segment = vmx_get_segment,
3665 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003666 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003667 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003668 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003669 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003670 .set_cr3 = vmx_set_cr3,
3671 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003672 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003673 .get_idt = vmx_get_idt,
3674 .set_idt = vmx_set_idt,
3675 .get_gdt = vmx_get_gdt,
3676 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003677 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003678 .get_rflags = vmx_get_rflags,
3679 .set_rflags = vmx_set_rflags,
3680
3681 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003682
Avi Kivity6aa8b732006-12-10 02:21:36 -08003683 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02003684 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003685 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02003686 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03003687 .get_irq = vmx_get_irq,
3688 .set_irq = vmx_inject_irq,
Avi Kivity298101d2007-11-25 13:41:11 +02003689 .queue_exception = vmx_queue_exception,
3690 .exception_injected = vmx_exception_injected,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003691 .inject_pending_irq = vmx_intr_assist,
3692 .inject_pending_vectors = do_interrupt_requests,
Izik Eiduscbc94022007-10-25 00:29:55 +02003693
3694 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08003695 .get_tdp_level = get_ept_level,
Sheng Yang64d4d522008-10-09 16:01:57 +08003696 .get_mt_mask_shift = vmx_get_mt_mask_shift,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003697};
3698
3699static int __init vmx_init(void)
3700{
He, Qingfdef3ad2007-04-30 09:45:24 +03003701 int r;
3702
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003703 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03003704 if (!vmx_io_bitmap_a)
3705 return -ENOMEM;
3706
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003707 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03003708 if (!vmx_io_bitmap_b) {
3709 r = -ENOMEM;
3710 goto out;
3711 }
3712
Avi Kivity58972972009-02-24 22:26:47 +02003713 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
3714 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08003715 r = -ENOMEM;
3716 goto out1;
3717 }
3718
Avi Kivity58972972009-02-24 22:26:47 +02003719 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
3720 if (!vmx_msr_bitmap_longmode) {
3721 r = -ENOMEM;
3722 goto out2;
3723 }
3724
He, Qingfdef3ad2007-04-30 09:45:24 +03003725 /*
3726 * Allow direct access to the PC debug port (it is often used for I/O
3727 * delays, but the vmexits simply slow things down).
3728 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003729 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
3730 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003731
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003732 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03003733
Avi Kivity58972972009-02-24 22:26:47 +02003734 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
3735 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08003736
Sheng Yang2384d2b2008-01-17 15:14:33 +08003737 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
3738
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003739 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03003740 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02003741 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08003742
Avi Kivity58972972009-02-24 22:26:47 +02003743 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
3744 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
3745 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
3746 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
3747 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
3748 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03003749
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003750 if (vm_need_ept()) {
Sheng Yang14394422008-04-28 12:24:45 +08003751 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003752 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08003753 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08003754 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang64d4d522008-10-09 16:01:57 +08003755 VMX_EPT_EXECUTABLE_MASK,
3756 VMX_EPT_DEFAULT_MT << VMX_EPT_MT_EPTE_SHIFT);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003757 kvm_enable_tdp();
3758 } else
3759 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08003760
Avi Kivityc7addb92007-09-16 18:58:32 +02003761 if (bypass_guest_pf)
3762 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
3763
Sheng Yang14394422008-04-28 12:24:45 +08003764 ept_sync_global();
3765
He, Qingfdef3ad2007-04-30 09:45:24 +03003766 return 0;
3767
Avi Kivity58972972009-02-24 22:26:47 +02003768out3:
3769 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08003770out2:
Avi Kivity58972972009-02-24 22:26:47 +02003771 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03003772out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003773 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03003774out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003775 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003776 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003777}
3778
3779static void __exit vmx_exit(void)
3780{
Avi Kivity58972972009-02-24 22:26:47 +02003781 free_page((unsigned long)vmx_msr_bitmap_legacy);
3782 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003783 free_page((unsigned long)vmx_io_bitmap_b);
3784 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003785
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003786 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003787}
3788
3789module_init(vmx_init)
3790module_exit(vmx_exit)