blob: b5eae7a00aad475511533dfe6d0b920fac888bfc [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;
42module_param(bypass_guest_pf, bool, 0);
43
Sheng Yang2384d2b2008-01-17 15:14:33 +080044static int enable_vpid = 1;
45module_param(enable_vpid, bool, 0);
46
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020047static int flexpriority_enabled = 1;
48module_param(flexpriority_enabled, bool, 0);
49
Sheng Yang14394422008-04-28 12:24:45 +080050static int enable_ept = 1;
Sheng Yangd56f5462008-04-25 10:13:16 +080051module_param(enable_ept, bool, 0);
52
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030053static int emulate_invalid_guest_state = 0;
54module_param(emulate_invalid_guest_state, bool, 0);
55
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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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 Russell707d92fa2007-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 Russell707d92fa2007-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 Russell707d92fa2007-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 Tosatti53f658b32008-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 Tosatti53f658b32008-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 Tosatti53f658b32008-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-07-29 11:07:42 +03001213
Sheng Yang468d4722008-10-09 16:01:55 +08001214 min = 0;
1215 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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 Russell707d92fa2007-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 Russell707d92fa2007-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 Russell707d92fa2007-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 Tosatti53f658b32008-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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 Tosatti53f658b32008-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
Avi Kivity6aa8b732006-12-10 02:21:36 -08002492static void kvm_do_inject_irq(struct kvm_vcpu *vcpu)
2493{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002494 int word_index = __ffs(vcpu->arch.irq_summary);
2495 int bit_index = __ffs(vcpu->arch.irq_pending[word_index]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002496 int irq = word_index * BITS_PER_LONG + bit_index;
2497
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002498 clear_bit(bit_index, &vcpu->arch.irq_pending[word_index]);
2499 if (!vcpu->arch.irq_pending[word_index])
2500 clear_bit(word_index, &vcpu->arch.irq_summary);
Avi Kivityecfc79c2008-08-14 11:13:16 +03002501 kvm_queue_interrupt(vcpu, irq);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002502}
2503
Jan Kiszkaf460ee42008-09-26 09:30:50 +02002504static void do_interrupt_requests(struct kvm_vcpu *vcpu,
2505 struct kvm_run *kvm_run)
2506{
2507 vmx_update_window_states(vcpu);
2508
Jan Kiszka55934c02008-12-15 13:52:10 +01002509 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
2510 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
2511 GUEST_INTR_STATE_STI |
2512 GUEST_INTR_STATE_MOV_SS);
2513
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002514 if (vcpu->arch.nmi_pending && !vcpu->arch.nmi_injected) {
Jan Kiszka264ff012008-11-24 12:26:19 +01002515 if (vcpu->arch.interrupt.pending) {
2516 enable_nmi_window(vcpu);
2517 } else if (vcpu->arch.nmi_window_open) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002518 vcpu->arch.nmi_pending = false;
2519 vcpu->arch.nmi_injected = true;
2520 } else {
2521 enable_nmi_window(vcpu);
Jan Kiszka487b3912008-09-26 09:30:56 +02002522 return;
2523 }
Jan Kiszka487b3912008-09-26 09:30:56 +02002524 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002525 if (vcpu->arch.nmi_injected) {
2526 vmx_inject_nmi(vcpu);
Jan Kiszka45312202008-12-11 16:54:54 +01002527 if (vcpu->arch.nmi_pending)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002528 enable_nmi_window(vcpu);
2529 else if (vcpu->arch.irq_summary
2530 || kvm_run->request_interrupt_window)
2531 enable_irq_window(vcpu);
2532 return;
2533 }
Jan Kiszka487b3912008-09-26 09:30:56 +02002534
Jan Kiszkaf460ee42008-09-26 09:30:50 +02002535 if (vcpu->arch.interrupt_window_open) {
2536 if (vcpu->arch.irq_summary && !vcpu->arch.interrupt.pending)
2537 kvm_do_inject_irq(vcpu);
2538
2539 if (vcpu->arch.interrupt.pending)
2540 vmx_inject_irq(vcpu, vcpu->arch.interrupt.nr);
2541 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002542 if (!vcpu->arch.interrupt_window_open &&
2543 (vcpu->arch.irq_summary || kvm_run->request_interrupt_window))
Jan Kiszkaf460ee42008-09-26 09:30:50 +02002544 enable_irq_window(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002545}
2546
Izik Eiduscbc94022007-10-25 00:29:55 +02002547static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2548{
2549 int ret;
2550 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002551 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002552 .guest_phys_addr = addr,
2553 .memory_size = PAGE_SIZE * 3,
2554 .flags = 0,
2555 };
2556
2557 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2558 if (ret)
2559 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002560 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002561 return 0;
2562}
2563
Avi Kivity6aa8b732006-12-10 02:21:36 -08002564static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2565 int vec, u32 err_code)
2566{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002567 /*
2568 * Instruction with address size override prefix opcode 0x67
2569 * Cause the #SS fault with 0 error code in VM86 mode.
2570 */
2571 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Laurent Vivier34273182007-09-18 11:27:37 +02002572 if (emulate_instruction(vcpu, NULL, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002573 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002574 /*
2575 * Forward all other exceptions that are valid in real mode.
2576 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2577 * the required debugging infrastructure rework.
2578 */
2579 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002580 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002581 if (vcpu->guest_debug &
2582 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2583 return 0;
2584 kvm_queue_exception(vcpu, vec);
2585 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002586 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002587 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2588 return 0;
2589 /* fall through */
2590 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002591 case OF_VECTOR:
2592 case BR_VECTOR:
2593 case UD_VECTOR:
2594 case DF_VECTOR:
2595 case SS_VECTOR:
2596 case GP_VECTOR:
2597 case MF_VECTOR:
2598 kvm_queue_exception(vcpu, vec);
2599 return 1;
2600 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002601 return 0;
2602}
2603
2604static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2605{
Avi Kivity1155f762007-11-22 11:30:47 +02002606 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002607 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002608 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002609 u32 vect_info;
2610 enum emulation_result er;
2611
Avi Kivity1155f762007-11-22 11:30:47 +02002612 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002613 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2614
2615 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04002616 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002617 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002618 "intr info 0x%x\n", __func__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002619
Eddie Dong85f455f2007-07-06 12:20:49 +03002620 if (!irqchip_in_kernel(vcpu->kvm) && is_external_interrupt(vect_info)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002621 int irq = vect_info & VECTORING_INFO_VECTOR_MASK;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002622 set_bit(irq, vcpu->arch.irq_pending);
2623 set_bit(irq / BITS_PER_LONG, &vcpu->arch.irq_summary);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002624 }
2625
Jan Kiszkae4a41882008-09-26 09:30:46 +02002626 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002627 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002628
2629 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002630 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002631 return 1;
2632 }
2633
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002634 if (is_invalid_opcode(intr_info)) {
Sheng Yang571008d2008-01-02 14:49:22 +08002635 er = emulate_instruction(vcpu, kvm_run, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002636 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002637 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002638 return 1;
2639 }
2640
Avi Kivity6aa8b732006-12-10 02:21:36 -08002641 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002642 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002643 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002644 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2645 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002646 /* EPT won't cause page fault directly */
2647 if (vm_need_ept())
2648 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002649 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002650 KVMTRACE_3D(PAGE_FAULT, vcpu, error_code, (u32)cr2,
2651 (u32)((u64)cr2 >> 32), handler);
Avi Kivityf7d92382008-07-03 16:14:28 +03002652 if (vcpu->arch.interrupt.pending || vcpu->arch.exception.pending)
Avi Kivity577bdc42008-07-19 08:57:05 +03002653 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002654 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002655 }
2656
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002657 if (vcpu->arch.rmode.active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002658 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002659 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002660 if (vcpu->arch.halt_request) {
2661 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002662 return kvm_emulate_halt(vcpu);
2663 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002664 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002665 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002666
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002667 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002668 switch (ex_no) {
2669 case DB_VECTOR:
2670 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2671 if (!(vcpu->guest_debug &
2672 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2673 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2674 kvm_queue_exception(vcpu, DB_VECTOR);
2675 return 1;
2676 }
2677 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2678 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2679 /* fall through */
2680 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002681 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002682 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2683 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002684 break;
2685 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002686 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2687 kvm_run->ex.exception = ex_no;
2688 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002689 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002690 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002691 return 0;
2692}
2693
2694static int handle_external_interrupt(struct kvm_vcpu *vcpu,
2695 struct kvm_run *kvm_run)
2696{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002697 ++vcpu->stat.irq_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002698 KVMTRACE_1D(INTR, vcpu, vmcs_read32(VM_EXIT_INTR_INFO), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002699 return 1;
2700}
2701
Avi Kivity988ad742007-02-12 00:54:36 -08002702static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2703{
2704 kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2705 return 0;
2706}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002707
Avi Kivity6aa8b732006-12-10 02:21:36 -08002708static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2709{
He, Qingbfdaab02007-09-12 14:18:28 +08002710 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002711 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002712 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002713
Avi Kivity1165f5f2007-04-19 17:27:43 +03002714 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002715 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002716 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002717
2718 if (string) {
Laurent Vivier34273182007-09-18 11:27:37 +02002719 if (emulate_instruction(vcpu,
2720 kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002721 return 0;
2722 return 1;
2723 }
2724
2725 size = (exit_qualification & 7) + 1;
2726 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002727 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002728
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002729 skip_emulated_instruction(vcpu);
Laurent Vivier3090dd72007-08-05 10:43:32 +03002730 return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002731}
2732
Ingo Molnar102d8322007-02-19 14:37:47 +02002733static void
2734vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2735{
2736 /*
2737 * Patch in the VMCALL instruction:
2738 */
2739 hypercall[0] = 0x0f;
2740 hypercall[1] = 0x01;
2741 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002742}
2743
Avi Kivity6aa8b732006-12-10 02:21:36 -08002744static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2745{
He, Qingbfdaab02007-09-12 14:18:28 +08002746 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002747 int cr;
2748 int reg;
2749
He, Qingbfdaab02007-09-12 14:18:28 +08002750 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002751 cr = exit_qualification & 15;
2752 reg = (exit_qualification >> 8) & 15;
2753 switch ((exit_qualification >> 4) & 3) {
2754 case 0: /* mov to cr */
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002755 KVMTRACE_3D(CR_WRITE, vcpu, (u32)cr,
2756 (u32)kvm_register_read(vcpu, reg),
2757 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
2758 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002759 switch (cr) {
2760 case 0:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002761 kvm_set_cr0(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002762 skip_emulated_instruction(vcpu);
2763 return 1;
2764 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002765 kvm_set_cr3(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002766 skip_emulated_instruction(vcpu);
2767 return 1;
2768 case 4:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002769 kvm_set_cr4(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002770 skip_emulated_instruction(vcpu);
2771 return 1;
2772 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002773 kvm_set_cr8(vcpu, kvm_register_read(vcpu, reg));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002774 skip_emulated_instruction(vcpu);
Avi Kivitye5314062007-12-06 16:32:45 +02002775 if (irqchip_in_kernel(vcpu->kvm))
2776 return 1;
Yang, Sheng253abde2007-08-16 13:01:00 +03002777 kvm_run->exit_reason = KVM_EXIT_SET_TPR;
2778 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002779 };
2780 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002781 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002782 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002783 vcpu->arch.cr0 &= ~X86_CR0_TS;
2784 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002785 vmx_fpu_activate(vcpu);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002786 KVMTRACE_0D(CLTS, vcpu, handler);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002787 skip_emulated_instruction(vcpu);
2788 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002789 case 1: /*mov from cr*/
2790 switch (cr) {
2791 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002792 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002793 KVMTRACE_3D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002794 (u32)kvm_register_read(vcpu, reg),
2795 (u32)((u64)kvm_register_read(vcpu, reg) >> 32),
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002796 handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002797 skip_emulated_instruction(vcpu);
2798 return 1;
2799 case 8:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002800 kvm_register_write(vcpu, reg, kvm_get_cr8(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002801 KVMTRACE_2D(CR_READ, vcpu, (u32)cr,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002802 (u32)kvm_register_read(vcpu, reg), handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002803 skip_emulated_instruction(vcpu);
2804 return 1;
2805 }
2806 break;
2807 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002808 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002809
2810 skip_emulated_instruction(vcpu);
2811 return 1;
2812 default:
2813 break;
2814 }
2815 kvm_run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002816 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002817 (int)(exit_qualification >> 4) & 3, cr);
2818 return 0;
2819}
2820
2821static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2822{
He, Qingbfdaab02007-09-12 14:18:28 +08002823 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002824 unsigned long val;
2825 int dr, reg;
2826
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002827 dr = vmcs_readl(GUEST_DR7);
2828 if (dr & DR7_GD) {
2829 /*
2830 * As the vm-exit takes precedence over the debug trap, we
2831 * need to emulate the latter, either for the host or the
2832 * guest debugging itself.
2833 */
2834 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
2835 kvm_run->debug.arch.dr6 = vcpu->arch.dr6;
2836 kvm_run->debug.arch.dr7 = dr;
2837 kvm_run->debug.arch.pc =
2838 vmcs_readl(GUEST_CS_BASE) +
2839 vmcs_readl(GUEST_RIP);
2840 kvm_run->debug.arch.exception = DB_VECTOR;
2841 kvm_run->exit_reason = KVM_EXIT_DEBUG;
2842 return 0;
2843 } else {
2844 vcpu->arch.dr7 &= ~DR7_GD;
2845 vcpu->arch.dr6 |= DR6_BD;
2846 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2847 kvm_queue_exception(vcpu, DB_VECTOR);
2848 return 1;
2849 }
2850 }
2851
He, Qingbfdaab02007-09-12 14:18:28 +08002852 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002853 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
2854 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
2855 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002856 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002857 case 0 ... 3:
2858 val = vcpu->arch.db[dr];
2859 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002860 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002861 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002862 break;
2863 case 7:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002864 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002865 break;
2866 default:
2867 val = 0;
2868 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002869 kvm_register_write(vcpu, reg, val);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002870 KVMTRACE_2D(DR_READ, vcpu, (u32)dr, (u32)val, handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002871 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002872 val = vcpu->arch.regs[reg];
2873 switch (dr) {
2874 case 0 ... 3:
2875 vcpu->arch.db[dr] = val;
2876 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
2877 vcpu->arch.eff_db[dr] = val;
2878 break;
2879 case 4 ... 5:
2880 if (vcpu->arch.cr4 & X86_CR4_DE)
2881 kvm_queue_exception(vcpu, UD_VECTOR);
2882 break;
2883 case 6:
2884 if (val & 0xffffffff00000000ULL) {
2885 kvm_queue_exception(vcpu, GP_VECTOR);
2886 break;
2887 }
2888 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
2889 break;
2890 case 7:
2891 if (val & 0xffffffff00000000ULL) {
2892 kvm_queue_exception(vcpu, GP_VECTOR);
2893 break;
2894 }
2895 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
2896 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
2897 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2898 vcpu->arch.switch_db_regs =
2899 (val & DR7_BP_EN_MASK);
2900 }
2901 break;
2902 }
2903 KVMTRACE_2D(DR_WRITE, vcpu, (u32)dr, (u32)val, handler);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002904 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002905 skip_emulated_instruction(vcpu);
2906 return 1;
2907}
2908
2909static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2910{
Avi Kivity06465c52007-02-28 20:46:53 +02002911 kvm_emulate_cpuid(vcpu);
2912 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002913}
2914
2915static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2916{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002917 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08002918 u64 data;
2919
2920 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002921 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002922 return 1;
2923 }
2924
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002925 KVMTRACE_3D(MSR_READ, vcpu, ecx, (u32)data, (u32)(data >> 32),
2926 handler);
2927
Avi Kivity6aa8b732006-12-10 02:21:36 -08002928 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002929 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
2930 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002931 skip_emulated_instruction(vcpu);
2932 return 1;
2933}
2934
2935static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2936{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002937 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
2938 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
2939 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002940
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002941 KVMTRACE_3D(MSR_WRITE, vcpu, ecx, (u32)data, (u32)(data >> 32),
2942 handler);
2943
Avi Kivity6aa8b732006-12-10 02:21:36 -08002944 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02002945 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002946 return 1;
2947 }
2948
2949 skip_emulated_instruction(vcpu);
2950 return 1;
2951}
2952
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002953static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
2954 struct kvm_run *kvm_run)
2955{
2956 return 1;
2957}
2958
Avi Kivity6aa8b732006-12-10 02:21:36 -08002959static int handle_interrupt_window(struct kvm_vcpu *vcpu,
2960 struct kvm_run *kvm_run)
2961{
Eddie Dong85f455f2007-07-06 12:20:49 +03002962 u32 cpu_based_vm_exec_control;
2963
2964 /* clear pending irq */
2965 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2966 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
2967 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002968
2969 KVMTRACE_0D(PEND_INTR, vcpu, handler);
Jan Kiszkaa26bf122008-09-26 09:30:45 +02002970 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002971
Dor Laorc1150d82007-01-05 16:36:24 -08002972 /*
2973 * If the user space waits to inject interrupts, exit as soon as
2974 * possible
2975 */
2976 if (kvm_run->request_interrupt_window &&
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002977 !vcpu->arch.irq_summary) {
Dor Laorc1150d82007-01-05 16:36:24 -08002978 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08002979 return 0;
2980 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002981 return 1;
2982}
2983
2984static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2985{
2986 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03002987 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002988}
2989
Ingo Molnarc21415e2007-02-19 14:37:47 +02002990static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2991{
Dor Laor510043d2007-02-19 18:25:43 +02002992 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002993 kvm_emulate_hypercall(vcpu);
2994 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02002995}
2996
Marcelo Tosattia7052892008-09-23 13:18:35 -03002997static int handle_invlpg(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2998{
2999 u64 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
3000
3001 kvm_mmu_invlpg(vcpu, exit_qualification);
3002 skip_emulated_instruction(vcpu);
3003 return 1;
3004}
3005
Eddie Donge5edaa02007-11-11 12:28:35 +02003006static int handle_wbinvd(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3007{
3008 skip_emulated_instruction(vcpu);
3009 /* TODO: Add support for VT-d/pass-through device */
3010 return 1;
3011}
3012
Sheng Yangf78e0e22007-10-29 09:40:42 +08003013static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3014{
3015 u64 exit_qualification;
3016 enum emulation_result er;
3017 unsigned long offset;
3018
3019 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
3020 offset = exit_qualification & 0xffful;
3021
3022 er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
3023
3024 if (er != EMULATE_DONE) {
3025 printk(KERN_ERR
3026 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3027 offset);
3028 return -ENOTSUPP;
3029 }
3030 return 1;
3031}
3032
Izik Eidus37817f22008-03-24 23:14:53 +02003033static int handle_task_switch(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3034{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003035 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003036 unsigned long exit_qualification;
3037 u16 tss_selector;
3038 int reason;
3039
3040 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3041
3042 reason = (u32)exit_qualification >> 30;
Jan Kiszka60637aa2008-09-26 09:30:47 +02003043 if (reason == TASK_SWITCH_GATE && vmx->vcpu.arch.nmi_injected &&
3044 (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
3045 (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK)
3046 == INTR_TYPE_NMI_INTR) {
3047 vcpu->arch.nmi_injected = false;
3048 if (cpu_has_virtual_nmis())
3049 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3050 GUEST_INTR_STATE_NMI);
3051 }
Izik Eidus37817f22008-03-24 23:14:53 +02003052 tss_selector = exit_qualification;
3053
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003054 if (!kvm_task_switch(vcpu, tss_selector, reason))
3055 return 0;
3056
3057 /* clear all local breakpoint enable flags */
3058 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3059
3060 /*
3061 * TODO: What about debug traps on tss switch?
3062 * Are we supposed to inject them and update dr6?
3063 */
3064
3065 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003066}
3067
Sheng Yang14394422008-04-28 12:24:45 +08003068static int handle_ept_violation(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3069{
3070 u64 exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003071 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003072 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003073
3074 exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
3075
3076 if (exit_qualification & (1 << 6)) {
3077 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
3078 return -ENOTSUPP;
3079 }
3080
3081 gla_validity = (exit_qualification >> 7) & 0x3;
3082 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3083 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3084 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3085 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
3086 (long unsigned int)vmcs_read64(GUEST_LINEAR_ADDRESS));
3087 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3088 (long unsigned int)exit_qualification);
3089 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
3090 kvm_run->hw.hardware_exit_reason = 0;
3091 return -ENOTSUPP;
3092 }
3093
3094 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003095 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003096}
3097
Sheng Yangf08864b2008-05-15 18:23:25 +08003098static int handle_nmi_window(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3099{
3100 u32 cpu_based_vm_exec_control;
3101
3102 /* clear pending NMI */
3103 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3104 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3105 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3106 ++vcpu->stat.nmi_window_exits;
3107
3108 return 1;
3109}
3110
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003111static void handle_invalid_guest_state(struct kvm_vcpu *vcpu,
3112 struct kvm_run *kvm_run)
3113{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003114 struct vcpu_vmx *vmx = to_vmx(vcpu);
3115 enum emulation_result err = EMULATE_DONE;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003116
3117 preempt_enable();
3118 local_irq_enable();
3119
3120 while (!guest_state_valid(vcpu)) {
3121 err = emulate_instruction(vcpu, kvm_run, 0, 0, 0);
3122
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003123 if (err == EMULATE_DO_MMIO)
3124 break;
3125
3126 if (err != EMULATE_DONE) {
3127 kvm_report_emulation_failure(vcpu, "emulation failure");
3128 return;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003129 }
3130
3131 if (signal_pending(current))
3132 break;
3133 if (need_resched())
3134 schedule();
3135 }
3136
3137 local_irq_disable();
3138 preempt_disable();
Avi Kivity8b3079a2009-01-05 12:10:54 +02003139
3140 vmx->invalid_state_emulation_result = err;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003141}
3142
Avi Kivity6aa8b732006-12-10 02:21:36 -08003143/*
3144 * The exit handlers return 1 if the exit was handled fully and guest execution
3145 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3146 * to be done to userspace and return 0.
3147 */
3148static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
3149 struct kvm_run *kvm_run) = {
3150 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3151 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003152 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003153 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003154 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003155 [EXIT_REASON_CR_ACCESS] = handle_cr,
3156 [EXIT_REASON_DR_ACCESS] = handle_dr,
3157 [EXIT_REASON_CPUID] = handle_cpuid,
3158 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3159 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3160 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3161 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003162 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003163 [EXIT_REASON_VMCALL] = handle_vmcall,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003164 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3165 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003166 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003167 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Sheng Yang14394422008-04-28 12:24:45 +08003168 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003169};
3170
3171static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003172 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003173
3174/*
3175 * The guest has exited. See if we can fix it or if we need userspace
3176 * assistance.
3177 */
3178static int kvm_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
3179{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003180 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity29bd8a72007-09-10 17:27:03 +03003181 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1155f762007-11-22 11:30:47 +02003182 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003183
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003184 KVMTRACE_3D(VMEXIT, vcpu, exit_reason, (u32)kvm_rip_read(vcpu),
3185 (u32)((u64)kvm_rip_read(vcpu) >> 32), entryexit);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003186
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003187 /* If we need to emulate an MMIO from handle_invalid_guest_state
3188 * we just return 0 */
Avi Kivity10f32d82009-01-05 00:53:19 +02003189 if (vmx->emulation_required && emulate_invalid_guest_state) {
3190 if (guest_state_valid(vcpu))
3191 vmx->emulation_required = 0;
Avi Kivity8b3079a2009-01-05 12:10:54 +02003192 return vmx->invalid_state_emulation_result != EMULATE_DO_MMIO;
Avi Kivity10f32d82009-01-05 00:53:19 +02003193 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003194
Sheng Yang14394422008-04-28 12:24:45 +08003195 /* Access CR3 don't cause VMExit in paging mode, so we need
3196 * to sync with guest real CR3. */
3197 if (vm_need_ept() && is_paging(vcpu)) {
3198 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
3199 ept_load_pdptrs(vcpu);
3200 }
3201
Avi Kivity29bd8a72007-09-10 17:27:03 +03003202 if (unlikely(vmx->fail)) {
3203 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3204 kvm_run->fail_entry.hardware_entry_failure_reason
3205 = vmcs_read32(VM_INSTRUCTION_ERROR);
3206 return 0;
3207 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003208
Mike Dayd77c26f2007-10-08 09:02:08 -04003209 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003210 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003211 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3212 exit_reason != EXIT_REASON_TASK_SWITCH))
3213 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3214 "(0x%x) and exit reason is 0x%x\n",
3215 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003216
3217 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
3218 if (vcpu->arch.interrupt_window_open) {
3219 vmx->soft_vnmi_blocked = 0;
3220 vcpu->arch.nmi_window_open = 1;
3221 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003222 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003223 /*
3224 * This CPU don't support us in finding the end of an
3225 * NMI-blocked window if the guest runs with IRQs
3226 * disabled. So we pull the trigger after 1 s of
3227 * futile waiting, but inform the user about this.
3228 */
3229 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3230 "state on VCPU %d after 1 s timeout\n",
3231 __func__, vcpu->vcpu_id);
3232 vmx->soft_vnmi_blocked = 0;
3233 vmx->vcpu.arch.nmi_window_open = 1;
3234 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003235 }
3236
Avi Kivity6aa8b732006-12-10 02:21:36 -08003237 if (exit_reason < kvm_vmx_max_exit_handlers
3238 && kvm_vmx_exit_handlers[exit_reason])
3239 return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
3240 else {
3241 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
3242 kvm_run->hw.hardware_exit_reason = exit_reason;
3243 }
3244 return 0;
3245}
3246
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003247static void update_tpr_threshold(struct kvm_vcpu *vcpu)
3248{
3249 int max_irr, tpr;
3250
3251 if (!vm_need_tpr_shadow(vcpu->kvm))
3252 return;
3253
3254 if (!kvm_lapic_enabled(vcpu) ||
3255 ((max_irr = kvm_lapic_find_highest_irr(vcpu)) == -1)) {
3256 vmcs_write32(TPR_THRESHOLD, 0);
3257 return;
3258 }
3259
3260 tpr = (kvm_lapic_get_cr8(vcpu) & 0x0f) << 4;
3261 vmcs_write32(TPR_THRESHOLD, (max_irr > tpr) ? tpr >> 4 : max_irr >> 4);
3262}
3263
Avi Kivitycf393f72008-07-01 16:20:21 +03003264static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3265{
3266 u32 exit_intr_info;
Avi Kivity668f6122008-07-02 09:28:55 +03003267 u32 idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003268 bool unblock_nmi;
3269 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003270 int type;
3271 bool idtv_info_valid;
Avi Kivity35920a32008-07-03 14:50:12 +03003272 u32 error;
Avi Kivitycf393f72008-07-01 16:20:21 +03003273
3274 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
3275 if (cpu_has_virtual_nmis()) {
3276 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3277 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3278 /*
3279 * SDM 3: 25.7.1.2
3280 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3281 * a guest IRET fault.
3282 */
3283 if (unblock_nmi && vector != DF_VECTOR)
3284 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3285 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003286 } else if (unlikely(vmx->soft_vnmi_blocked))
3287 vmx->vnmi_blocked_time +=
3288 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003289
3290 idt_vectoring_info = vmx->idt_vectoring_info;
3291 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3292 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3293 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
3294 if (vmx->vcpu.arch.nmi_injected) {
3295 /*
3296 * SDM 3: 25.7.1.2
3297 * Clear bit "block by NMI" before VM entry if a NMI delivery
3298 * faulted.
3299 */
3300 if (idtv_info_valid && type == INTR_TYPE_NMI_INTR)
3301 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3302 GUEST_INTR_STATE_NMI);
3303 else
3304 vmx->vcpu.arch.nmi_injected = false;
3305 }
Avi Kivity35920a32008-07-03 14:50:12 +03003306 kvm_clear_exception_queue(&vmx->vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01003307 if (idtv_info_valid && (type == INTR_TYPE_HARD_EXCEPTION ||
3308 type == INTR_TYPE_SOFT_EXCEPTION)) {
Avi Kivity35920a32008-07-03 14:50:12 +03003309 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
3310 error = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3311 kvm_queue_exception_e(&vmx->vcpu, vector, error);
3312 } else
3313 kvm_queue_exception(&vmx->vcpu, vector);
3314 vmx->idt_vectoring_info = 0;
3315 }
Avi Kivityf7d92382008-07-03 16:14:28 +03003316 kvm_clear_interrupt_queue(&vmx->vcpu);
3317 if (idtv_info_valid && type == INTR_TYPE_EXT_INTR) {
3318 kvm_queue_interrupt(&vmx->vcpu, vector);
3319 vmx->idt_vectoring_info = 0;
3320 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003321}
3322
Eddie Dong85f455f2007-07-06 12:20:49 +03003323static void vmx_intr_assist(struct kvm_vcpu *vcpu)
3324{
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003325 update_tpr_threshold(vcpu);
3326
Jan Kiszka33f089c2008-09-26 09:30:49 +02003327 vmx_update_window_states(vcpu);
3328
Jan Kiszka55934c02008-12-15 13:52:10 +01003329 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3330 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3331 GUEST_INTR_STATE_STI |
3332 GUEST_INTR_STATE_MOV_SS);
3333
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003334 if (vcpu->arch.nmi_pending && !vcpu->arch.nmi_injected) {
3335 if (vcpu->arch.interrupt.pending) {
3336 enable_nmi_window(vcpu);
3337 } else if (vcpu->arch.nmi_window_open) {
3338 vcpu->arch.nmi_pending = false;
3339 vcpu->arch.nmi_injected = true;
3340 } else {
3341 enable_nmi_window(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08003342 return;
3343 }
Sheng Yangf08864b2008-05-15 18:23:25 +08003344 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003345 if (vcpu->arch.nmi_injected) {
3346 vmx_inject_nmi(vcpu);
3347 if (vcpu->arch.nmi_pending)
3348 enable_nmi_window(vcpu);
3349 else if (kvm_cpu_has_interrupt(vcpu))
3350 enable_irq_window(vcpu);
3351 return;
3352 }
Avi Kivityf7d92382008-07-03 16:14:28 +03003353 if (!vcpu->arch.interrupt.pending && kvm_cpu_has_interrupt(vcpu)) {
Jan Kiszka33f089c2008-09-26 09:30:49 +02003354 if (vcpu->arch.interrupt_window_open)
Avi Kivityf7d92382008-07-03 16:14:28 +03003355 kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu));
3356 else
3357 enable_irq_window(vcpu);
3358 }
3359 if (vcpu->arch.interrupt.pending) {
3360 vmx_inject_irq(vcpu, vcpu->arch.interrupt.nr);
Avi Kivitydf203ec2008-11-23 18:08:57 +02003361 if (kvm_cpu_has_interrupt(vcpu))
3362 enable_irq_window(vcpu);
Avi Kivityf7d92382008-07-03 16:14:28 +03003363 }
Eddie Dong85f455f2007-07-06 12:20:49 +03003364}
3365
Avi Kivity9c8cba32007-11-22 11:42:59 +02003366/*
3367 * Failure to inject an interrupt should give us the information
3368 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3369 * when fetching the interrupt redirection bitmap in the real-mode
3370 * tss, this doesn't happen. So we do it ourselves.
3371 */
3372static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3373{
3374 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003375 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003376 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003377 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003378 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3379 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3380 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3381 return;
3382 }
3383 vmx->idt_vectoring_info =
3384 VECTORING_INFO_VALID_MASK
3385 | INTR_TYPE_EXT_INTR
3386 | vmx->rmode.irq.vector;
3387}
3388
Avi Kivityc8019492008-07-14 14:44:59 +03003389#ifdef CONFIG_X86_64
3390#define R "r"
3391#define Q "q"
3392#else
3393#define R "e"
3394#define Q "l"
3395#endif
3396
Avi Kivity04d2cc72007-09-10 18:10:54 +03003397static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003398{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003399 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity1b6269d2007-10-09 12:12:19 +02003400 u32 intr_info;
Avi Kivitye6adf282007-04-30 16:07:54 +03003401
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003402 /* Record the guest's net vcpu time for enforced NMI injections. */
3403 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3404 vmx->entry_time = ktime_get();
3405
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003406 /* Handle invalid guest state instead of entering VMX */
3407 if (vmx->emulation_required && emulate_invalid_guest_state) {
3408 handle_invalid_guest_state(vcpu, kvm_run);
3409 return;
3410 }
3411
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003412 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3413 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3414 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3415 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3416
Avi Kivitye6adf282007-04-30 16:07:54 +03003417 /*
3418 * Loading guest fpu may have cleared host cr0.ts
3419 */
3420 vmcs_writel(HOST_CR0, read_cr0());
3421
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003422 set_debugreg(vcpu->arch.dr6, 6);
3423
Mike Dayd77c26f2007-10-08 09:02:08 -04003424 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003425 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003426 "push %%"R"dx; push %%"R"bp;"
3427 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003428 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3429 "je 1f \n\t"
3430 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003431 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003432 "1: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003433 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003434 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003435 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003436 "mov %c[cr2](%0), %%"R"ax \n\t"
3437 "mov %%"R"ax, %%cr2 \n\t"
3438 "mov %c[rax](%0), %%"R"ax \n\t"
3439 "mov %c[rbx](%0), %%"R"bx \n\t"
3440 "mov %c[rdx](%0), %%"R"dx \n\t"
3441 "mov %c[rsi](%0), %%"R"si \n\t"
3442 "mov %c[rdi](%0), %%"R"di \n\t"
3443 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003444#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003445 "mov %c[r8](%0), %%r8 \n\t"
3446 "mov %c[r9](%0), %%r9 \n\t"
3447 "mov %c[r10](%0), %%r10 \n\t"
3448 "mov %c[r11](%0), %%r11 \n\t"
3449 "mov %c[r12](%0), %%r12 \n\t"
3450 "mov %c[r13](%0), %%r13 \n\t"
3451 "mov %c[r14](%0), %%r14 \n\t"
3452 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003453#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003454 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3455
Avi Kivity6aa8b732006-12-10 02:21:36 -08003456 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003457 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003458 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003459 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003460 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003461 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003462 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003463 "xchg %0, (%%"R"sp) \n\t"
3464 "mov %%"R"ax, %c[rax](%0) \n\t"
3465 "mov %%"R"bx, %c[rbx](%0) \n\t"
3466 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3467 "mov %%"R"dx, %c[rdx](%0) \n\t"
3468 "mov %%"R"si, %c[rsi](%0) \n\t"
3469 "mov %%"R"di, %c[rdi](%0) \n\t"
3470 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003471#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003472 "mov %%r8, %c[r8](%0) \n\t"
3473 "mov %%r9, %c[r9](%0) \n\t"
3474 "mov %%r10, %c[r10](%0) \n\t"
3475 "mov %%r11, %c[r11](%0) \n\t"
3476 "mov %%r12, %c[r12](%0) \n\t"
3477 "mov %%r13, %c[r13](%0) \n\t"
3478 "mov %%r14, %c[r14](%0) \n\t"
3479 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003480#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003481 "mov %%cr2, %%"R"ax \n\t"
3482 "mov %%"R"ax, %c[cr2](%0) \n\t"
3483
3484 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003485 "setbe %c[fail](%0) \n\t"
3486 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3487 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3488 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003489 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003490 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3491 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3492 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3493 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3494 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3495 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3496 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003497#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003498 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3499 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3500 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3501 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3502 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3503 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3504 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3505 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003506#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003507 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003508 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003509 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003510#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003511 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3512#endif
3513 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003514
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003515 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
3516 vcpu->arch.regs_dirty = 0;
3517
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003518 get_debugreg(vcpu->arch.dr6, 6);
3519
Avi Kivity1155f762007-11-22 11:30:47 +02003520 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003521 if (vmx->rmode.irq.pending)
3522 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003523
Jan Kiszka33f089c2008-09-26 09:30:49 +02003524 vmx_update_window_states(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003525
Mike Dayd77c26f2007-10-08 09:02:08 -04003526 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003527 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003528
3529 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
3530
3531 /* We need to handle NMIs before interrupts are enabled */
Jan Kiszkae4a41882008-09-26 09:30:46 +02003532 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Sheng Yangf08864b2008-05-15 18:23:25 +08003533 (intr_info & INTR_INFO_VALID_MASK)) {
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003534 KVMTRACE_0D(NMI, vcpu, handler);
Avi Kivity1b6269d2007-10-09 12:12:19 +02003535 asm("int $2");
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003536 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003537
3538 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003539}
3540
Avi Kivityc8019492008-07-14 14:44:59 +03003541#undef R
3542#undef Q
3543
Avi Kivity6aa8b732006-12-10 02:21:36 -08003544static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3545{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003546 struct vcpu_vmx *vmx = to_vmx(vcpu);
3547
3548 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003549 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003550 free_vmcs(vmx->vmcs);
3551 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003552 }
3553}
3554
3555static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3556{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003557 struct vcpu_vmx *vmx = to_vmx(vcpu);
3558
Sheng Yang2384d2b2008-01-17 15:14:33 +08003559 spin_lock(&vmx_vpid_lock);
3560 if (vmx->vpid != 0)
3561 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3562 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003563 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003564 kfree(vmx->host_msrs);
3565 kfree(vmx->guest_msrs);
3566 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003567 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003568}
3569
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003570static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003571{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003572 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003573 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003574 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003575
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003576 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003577 return ERR_PTR(-ENOMEM);
3578
Sheng Yang2384d2b2008-01-17 15:14:33 +08003579 allocate_vpid(vmx);
3580
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003581 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3582 if (err)
3583 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003584
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003585 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003586 if (!vmx->guest_msrs) {
3587 err = -ENOMEM;
3588 goto uninit_vcpu;
3589 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003590
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003591 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
3592 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003593 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003594
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003595 vmx->vmcs = alloc_vmcs();
3596 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003597 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003598
3599 vmcs_clear(vmx->vmcs);
3600
Avi Kivity15ad7142007-07-11 18:17:21 +03003601 cpu = get_cpu();
3602 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003603 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003604 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003605 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003606 if (err)
3607 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003608 if (vm_need_virtualize_apic_accesses(kvm))
3609 if (alloc_apic_access_page(kvm) != 0)
3610 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003611
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003612 if (vm_need_ept())
3613 if (alloc_identity_pagetable(kvm) != 0)
3614 goto free_vmcs;
3615
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003616 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003617
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003618free_vmcs:
3619 free_vmcs(vmx->vmcs);
3620free_msrs:
3621 kfree(vmx->host_msrs);
3622free_guest_msrs:
3623 kfree(vmx->guest_msrs);
3624uninit_vcpu:
3625 kvm_vcpu_uninit(&vmx->vcpu);
3626free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003627 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003628 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003629}
3630
Yang, Sheng002c7f72007-07-31 14:23:01 +03003631static void __init vmx_check_processor_compat(void *rtn)
3632{
3633 struct vmcs_config vmcs_conf;
3634
3635 *(int *)rtn = 0;
3636 if (setup_vmcs_config(&vmcs_conf) < 0)
3637 *(int *)rtn = -EIO;
3638 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3639 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3640 smp_processor_id());
3641 *(int *)rtn = -EIO;
3642 }
3643}
3644
Sheng Yang67253af2008-04-25 10:20:22 +08003645static int get_ept_level(void)
3646{
3647 return VMX_EPT_DEFAULT_GAW + 1;
3648}
3649
Sheng Yang64d4d522008-10-09 16:01:57 +08003650static int vmx_get_mt_mask_shift(void)
3651{
3652 return VMX_EPT_MT_EPTE_SHIFT;
3653}
3654
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003655static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003656 .cpu_has_kvm_support = cpu_has_kvm_support,
3657 .disabled_by_bios = vmx_disabled_by_bios,
3658 .hardware_setup = hardware_setup,
3659 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003660 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003661 .hardware_enable = hardware_enable,
3662 .hardware_disable = hardware_disable,
Avi Kivity774ead32007-12-26 13:57:04 +02003663 .cpu_has_accelerated_tpr = cpu_has_vmx_virtualize_apic_accesses,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003664
3665 .vcpu_create = vmx_create_vcpu,
3666 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003667 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003668
Avi Kivity04d2cc72007-09-10 18:10:54 +03003669 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003670 .vcpu_load = vmx_vcpu_load,
3671 .vcpu_put = vmx_vcpu_put,
3672
3673 .set_guest_debug = set_guest_debug,
3674 .get_msr = vmx_get_msr,
3675 .set_msr = vmx_set_msr,
3676 .get_segment_base = vmx_get_segment_base,
3677 .get_segment = vmx_get_segment,
3678 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003679 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003680 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003681 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003682 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003683 .set_cr3 = vmx_set_cr3,
3684 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003685 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003686 .get_idt = vmx_get_idt,
3687 .set_idt = vmx_set_idt,
3688 .get_gdt = vmx_get_gdt,
3689 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003690 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003691 .get_rflags = vmx_get_rflags,
3692 .set_rflags = vmx_set_rflags,
3693
3694 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003695
Avi Kivity6aa8b732006-12-10 02:21:36 -08003696 .run = vmx_vcpu_run,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003697 .handle_exit = kvm_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003698 .skip_emulated_instruction = skip_emulated_instruction,
Ingo Molnar102d8322007-02-19 14:37:47 +02003699 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03003700 .get_irq = vmx_get_irq,
3701 .set_irq = vmx_inject_irq,
Avi Kivity298101d2007-11-25 13:41:11 +02003702 .queue_exception = vmx_queue_exception,
3703 .exception_injected = vmx_exception_injected,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003704 .inject_pending_irq = vmx_intr_assist,
3705 .inject_pending_vectors = do_interrupt_requests,
Izik Eiduscbc94022007-10-25 00:29:55 +02003706
3707 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08003708 .get_tdp_level = get_ept_level,
Sheng Yang64d4d522008-10-09 16:01:57 +08003709 .get_mt_mask_shift = vmx_get_mt_mask_shift,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003710};
3711
3712static int __init vmx_init(void)
3713{
He, Qingfdef3ad2007-04-30 09:45:24 +03003714 int r;
3715
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003716 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03003717 if (!vmx_io_bitmap_a)
3718 return -ENOMEM;
3719
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003720 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03003721 if (!vmx_io_bitmap_b) {
3722 r = -ENOMEM;
3723 goto out;
3724 }
3725
Avi Kivity58972972009-02-24 22:26:47 +02003726 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
3727 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08003728 r = -ENOMEM;
3729 goto out1;
3730 }
3731
Avi Kivity58972972009-02-24 22:26:47 +02003732 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
3733 if (!vmx_msr_bitmap_longmode) {
3734 r = -ENOMEM;
3735 goto out2;
3736 }
3737
He, Qingfdef3ad2007-04-30 09:45:24 +03003738 /*
3739 * Allow direct access to the PC debug port (it is often used for I/O
3740 * delays, but the vmexits simply slow things down).
3741 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003742 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
3743 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003744
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003745 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03003746
Avi Kivity58972972009-02-24 22:26:47 +02003747 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
3748 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08003749
Sheng Yang2384d2b2008-01-17 15:14:33 +08003750 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
3751
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003752 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03003753 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02003754 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08003755
Avi Kivity58972972009-02-24 22:26:47 +02003756 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
3757 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
3758 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
3759 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
3760 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
3761 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03003762
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003763 if (vm_need_ept()) {
Sheng Yang14394422008-04-28 12:24:45 +08003764 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003765 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08003766 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08003767 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang64d4d522008-10-09 16:01:57 +08003768 VMX_EPT_EXECUTABLE_MASK,
3769 VMX_EPT_DEFAULT_MT << VMX_EPT_MT_EPTE_SHIFT);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08003770 kvm_enable_tdp();
3771 } else
3772 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08003773
Avi Kivityc7addb92007-09-16 18:58:32 +02003774 if (bypass_guest_pf)
3775 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
3776
Sheng Yang14394422008-04-28 12:24:45 +08003777 ept_sync_global();
3778
He, Qingfdef3ad2007-04-30 09:45:24 +03003779 return 0;
3780
Avi Kivity58972972009-02-24 22:26:47 +02003781out3:
3782 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08003783out2:
Avi Kivity58972972009-02-24 22:26:47 +02003784 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03003785out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003786 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03003787out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003788 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003789 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003790}
3791
3792static void __exit vmx_exit(void)
3793{
Avi Kivity58972972009-02-24 22:26:47 +02003794 free_page((unsigned long)vmx_msr_bitmap_legacy);
3795 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003796 free_page((unsigned long)vmx_io_bitmap_b);
3797 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03003798
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08003799 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003800}
3801
3802module_init(vmx_init)
3803module_exit(vmx_exit)