blob: 73cb5dd960cf5073ea1c56dd803cd544c8ca5ca4 [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 Tosatti229456f2009-06-17 09:22:14 -030028#include <linux/ftrace_event.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030029#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030030#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040031
Avi Kivity6aa8b732006-12-10 02:21:36 -080032#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080033#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020034#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020035#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080036#include <asm/mce.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080037
Marcelo Tosatti229456f2009-06-17 09:22:14 -030038#include "trace.h"
39
Avi Kivity4ecac3f2008-05-13 13:23:38 +030040#define __ex(x) __kvm_handle_fault_on_reboot(x)
41
Avi Kivity6aa8b732006-12-10 02:21:36 -080042MODULE_AUTHOR("Qumranet");
43MODULE_LICENSE("GPL");
44
Avi Kivity4462d212009-03-23 17:53:37 +020045static int __read_mostly bypass_guest_pf = 1;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020046module_param(bypass_guest_pf, bool, S_IRUGO);
Avi Kivityc7addb92007-09-16 18:58:32 +020047
Avi Kivity4462d212009-03-23 17:53:37 +020048static int __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020049module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080050
Avi Kivity4462d212009-03-23 17:53:37 +020051static int __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020052module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020053
Avi Kivity4462d212009-03-23 17:53:37 +020054static int __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020055module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080056
Nitin A Kamble3a624e22009-06-08 11:34:16 -070057static int __read_mostly enable_unrestricted_guest = 1;
58module_param_named(unrestricted_guest,
59 enable_unrestricted_guest, bool, S_IRUGO);
60
Avi Kivity4462d212009-03-23 17:53:37 +020061static int __read_mostly emulate_invalid_guest_state = 0;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020062module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030063
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040064struct vmcs {
65 u32 revision_id;
66 u32 abort;
67 char data[0];
68};
69
70struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100071 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +030072 struct list_head local_vcpus_link;
Avi Kivity313dbd42008-07-17 18:04:30 +030073 unsigned long host_rsp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040074 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +030075 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +020076 u32 idt_vectoring_info;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040077 struct kvm_msr_entry *guest_msrs;
78 struct kvm_msr_entry *host_msrs;
79 int nmsrs;
80 int save_nmsrs;
81 int msr_offset_efer;
82#ifdef CONFIG_X86_64
83 int msr_offset_kernel_gs_base;
84#endif
85 struct vmcs *vmcs;
86 struct {
87 int loaded;
88 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +020089 int gs_ldt_reload_needed;
90 int fs_reload_needed;
Avi Kivity51c6cf62007-08-29 03:48:05 +030091 int guest_efer_loaded;
Mike Dayd77c26f2007-10-08 09:02:08 -040092 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +020093 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +030094 int vm86_active;
95 u8 save_iopl;
96 struct kvm_save_segment {
97 u16 selector;
98 unsigned long base;
99 u32 limit;
100 u32 ar;
101 } tr, es, ds, fs, gs;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200102 struct {
103 bool pending;
104 u8 vector;
105 unsigned rip;
106 } irq;
107 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800108 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300109 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200110
111 /* Support for vnmi-less CPUs */
112 int soft_vnmi_blocked;
113 ktime_t entry_time;
114 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800115 u32 exit_reason;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400116};
117
118static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
119{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000120 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400121}
122
Sheng Yangb7ebfb02008-04-25 21:44:52 +0800123static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800124static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +0300125
Avi Kivity6aa8b732006-12-10 02:21:36 -0800126static DEFINE_PER_CPU(struct vmcs *, vmxarea);
127static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +0300128static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800129
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200130static unsigned long *vmx_io_bitmap_a;
131static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200132static unsigned long *vmx_msr_bitmap_legacy;
133static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300134
Sheng Yang2384d2b2008-01-17 15:14:33 +0800135static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
136static DEFINE_SPINLOCK(vmx_vpid_lock);
137
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300138static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800139 int size;
140 int order;
141 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300142 u32 pin_based_exec_ctrl;
143 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800144 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300145 u32 vmexit_ctrl;
146 u32 vmentry_ctrl;
147} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800148
Hannes Ederefff9e52008-11-28 17:02:06 +0100149static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800150 u32 ept;
151 u32 vpid;
152} vmx_capability;
153
Avi Kivity6aa8b732006-12-10 02:21:36 -0800154#define VMX_SEGMENT_FIELD(seg) \
155 [VCPU_SREG_##seg] = { \
156 .selector = GUEST_##seg##_SELECTOR, \
157 .base = GUEST_##seg##_BASE, \
158 .limit = GUEST_##seg##_LIMIT, \
159 .ar_bytes = GUEST_##seg##_AR_BYTES, \
160 }
161
162static struct kvm_vmx_segment_field {
163 unsigned selector;
164 unsigned base;
165 unsigned limit;
166 unsigned ar_bytes;
167} kvm_vmx_segment_fields[] = {
168 VMX_SEGMENT_FIELD(CS),
169 VMX_SEGMENT_FIELD(DS),
170 VMX_SEGMENT_FIELD(ES),
171 VMX_SEGMENT_FIELD(FS),
172 VMX_SEGMENT_FIELD(GS),
173 VMX_SEGMENT_FIELD(SS),
174 VMX_SEGMENT_FIELD(TR),
175 VMX_SEGMENT_FIELD(LDTR),
176};
177
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300178static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
179
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300180/*
181 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
182 * away by decrementing the array size.
183 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800184static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800185#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800186 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, MSR_KERNEL_GS_BASE,
187#endif
188 MSR_EFER, MSR_K6_STAR,
189};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200190#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800191
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400192static void load_msrs(struct kvm_msr_entry *e, int n)
193{
194 int i;
195
196 for (i = 0; i < n; ++i)
197 wrmsrl(e[i].index, e[i].data);
198}
199
200static void save_msrs(struct kvm_msr_entry *e, int n)
201{
202 int i;
203
204 for (i = 0; i < n; ++i)
205 rdmsrl(e[i].index, e[i].data);
206}
207
Avi Kivity6aa8b732006-12-10 02:21:36 -0800208static inline int is_page_fault(u32 intr_info)
209{
210 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
211 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100212 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800213}
214
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300215static inline int is_no_device(u32 intr_info)
216{
217 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
218 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100219 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300220}
221
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500222static inline int is_invalid_opcode(u32 intr_info)
223{
224 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
225 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100226 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500227}
228
Avi Kivity6aa8b732006-12-10 02:21:36 -0800229static inline int is_external_interrupt(u32 intr_info)
230{
231 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
232 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
233}
234
Andi Kleena0861c02009-06-08 17:37:09 +0800235static inline int is_machine_check(u32 intr_info)
236{
237 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
238 INTR_INFO_VALID_MASK)) ==
239 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
240}
241
Sheng Yang25c5f222008-03-28 13:18:56 +0800242static inline int cpu_has_vmx_msr_bitmap(void)
243{
Sheng Yang04547152009-04-01 15:52:31 +0800244 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800245}
246
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800247static inline int cpu_has_vmx_tpr_shadow(void)
248{
Sheng Yang04547152009-04-01 15:52:31 +0800249 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800250}
251
252static inline int vm_need_tpr_shadow(struct kvm *kvm)
253{
Sheng Yang04547152009-04-01 15:52:31 +0800254 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800255}
256
Sheng Yangf78e0e22007-10-29 09:40:42 +0800257static inline int cpu_has_secondary_exec_ctrls(void)
258{
Sheng Yang04547152009-04-01 15:52:31 +0800259 return vmcs_config.cpu_based_exec_ctrl &
260 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800261}
262
Avi Kivity774ead32007-12-26 13:57:04 +0200263static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800264{
Sheng Yang04547152009-04-01 15:52:31 +0800265 return vmcs_config.cpu_based_2nd_exec_ctrl &
266 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
267}
268
269static inline bool cpu_has_vmx_flexpriority(void)
270{
271 return cpu_has_vmx_tpr_shadow() &&
272 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800273}
274
Marcelo Tosattie7997942009-06-11 12:07:40 -0300275static inline bool cpu_has_vmx_ept_execute_only(void)
276{
277 return !!(vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT);
278}
279
280static inline bool cpu_has_vmx_eptp_uncacheable(void)
281{
282 return !!(vmx_capability.ept & VMX_EPTP_UC_BIT);
283}
284
285static inline bool cpu_has_vmx_eptp_writeback(void)
286{
287 return !!(vmx_capability.ept & VMX_EPTP_WB_BIT);
288}
289
290static inline bool cpu_has_vmx_ept_2m_page(void)
291{
292 return !!(vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT);
293}
294
Sheng Yangd56f5462008-04-25 10:13:16 +0800295static inline int cpu_has_vmx_invept_individual_addr(void)
296{
Sheng Yang04547152009-04-01 15:52:31 +0800297 return !!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800298}
299
300static inline int cpu_has_vmx_invept_context(void)
301{
Sheng Yang04547152009-04-01 15:52:31 +0800302 return !!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800303}
304
305static inline int cpu_has_vmx_invept_global(void)
306{
Sheng Yang04547152009-04-01 15:52:31 +0800307 return !!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800308}
309
310static inline int cpu_has_vmx_ept(void)
311{
Sheng Yang04547152009-04-01 15:52:31 +0800312 return vmcs_config.cpu_based_2nd_exec_ctrl &
313 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800314}
315
Nitin A Kamble3a624e22009-06-08 11:34:16 -0700316static inline int cpu_has_vmx_unrestricted_guest(void)
317{
318 return vmcs_config.cpu_based_2nd_exec_ctrl &
319 SECONDARY_EXEC_UNRESTRICTED_GUEST;
320}
321
Sheng Yangf78e0e22007-10-29 09:40:42 +0800322static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
323{
Sheng Yang04547152009-04-01 15:52:31 +0800324 return flexpriority_enabled &&
325 (cpu_has_vmx_virtualize_apic_accesses()) &&
326 (irqchip_in_kernel(kvm));
Sheng Yangf78e0e22007-10-29 09:40:42 +0800327}
328
Sheng Yang2384d2b2008-01-17 15:14:33 +0800329static inline int cpu_has_vmx_vpid(void)
330{
Sheng Yang04547152009-04-01 15:52:31 +0800331 return vmcs_config.cpu_based_2nd_exec_ctrl &
332 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800333}
334
Sheng Yangf08864b2008-05-15 18:23:25 +0800335static inline int cpu_has_virtual_nmis(void)
336{
337 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
338}
339
Sheng Yang04547152009-04-01 15:52:31 +0800340static inline bool report_flexpriority(void)
341{
342 return flexpriority_enabled;
343}
344
Rusty Russell8b9cf982007-07-30 16:31:43 +1000345static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800346{
347 int i;
348
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400349 for (i = 0; i < vmx->nmsrs; ++i)
350 if (vmx->guest_msrs[i].index == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300351 return i;
352 return -1;
353}
354
Sheng Yang2384d2b2008-01-17 15:14:33 +0800355static inline void __invvpid(int ext, u16 vpid, gva_t gva)
356{
357 struct {
358 u64 vpid : 16;
359 u64 rsvd : 48;
360 u64 gva;
361 } operand = { vpid, 0, gva };
362
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300363 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800364 /* CF==1 or ZF==1 --> rc = -1 */
365 "; ja 1f ; ud2 ; 1:"
366 : : "a"(&operand), "c"(ext) : "cc", "memory");
367}
368
Sheng Yang14394422008-04-28 12:24:45 +0800369static inline void __invept(int ext, u64 eptp, gpa_t gpa)
370{
371 struct {
372 u64 eptp, gpa;
373 } operand = {eptp, gpa};
374
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300375 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800376 /* CF==1 or ZF==1 --> rc = -1 */
377 "; ja 1f ; ud2 ; 1:\n"
378 : : "a" (&operand), "c" (ext) : "cc", "memory");
379}
380
Rusty Russell8b9cf982007-07-30 16:31:43 +1000381static struct kvm_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300382{
383 int i;
384
Rusty Russell8b9cf982007-07-30 16:31:43 +1000385 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300386 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400387 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000388 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800389}
390
Avi Kivity6aa8b732006-12-10 02:21:36 -0800391static void vmcs_clear(struct vmcs *vmcs)
392{
393 u64 phys_addr = __pa(vmcs);
394 u8 error;
395
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300396 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800397 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
398 : "cc", "memory");
399 if (error)
400 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
401 vmcs, phys_addr);
402}
403
404static void __vcpu_clear(void *arg)
405{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000406 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800407 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800408
Rusty Russell8b9cf982007-07-30 16:31:43 +1000409 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400410 vmcs_clear(vmx->vmcs);
411 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800412 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800413 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300414 list_del(&vmx->local_vcpus_link);
415 vmx->vcpu.cpu = -1;
416 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800417}
418
Rusty Russell8b9cf982007-07-30 16:31:43 +1000419static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800420{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200421 if (vmx->vcpu.cpu == -1)
422 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200423 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800424}
425
Sheng Yang2384d2b2008-01-17 15:14:33 +0800426static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
427{
428 if (vmx->vpid == 0)
429 return;
430
431 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
432}
433
Sheng Yang14394422008-04-28 12:24:45 +0800434static inline void ept_sync_global(void)
435{
436 if (cpu_has_vmx_invept_global())
437 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
438}
439
440static inline void ept_sync_context(u64 eptp)
441{
Avi Kivity089d0342009-03-23 18:26:32 +0200442 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800443 if (cpu_has_vmx_invept_context())
444 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
445 else
446 ept_sync_global();
447 }
448}
449
450static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
451{
Avi Kivity089d0342009-03-23 18:26:32 +0200452 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800453 if (cpu_has_vmx_invept_individual_addr())
454 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
455 eptp, gpa);
456 else
457 ept_sync_context(eptp);
458 }
459}
460
Avi Kivity6aa8b732006-12-10 02:21:36 -0800461static unsigned long vmcs_readl(unsigned long field)
462{
463 unsigned long value;
464
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300465 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800466 : "=a"(value) : "d"(field) : "cc");
467 return value;
468}
469
470static u16 vmcs_read16(unsigned long field)
471{
472 return vmcs_readl(field);
473}
474
475static u32 vmcs_read32(unsigned long field)
476{
477 return vmcs_readl(field);
478}
479
480static u64 vmcs_read64(unsigned long field)
481{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800482#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800483 return vmcs_readl(field);
484#else
485 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
486#endif
487}
488
Avi Kivitye52de1b2007-01-05 16:36:56 -0800489static noinline void vmwrite_error(unsigned long field, unsigned long value)
490{
491 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
492 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
493 dump_stack();
494}
495
Avi Kivity6aa8b732006-12-10 02:21:36 -0800496static void vmcs_writel(unsigned long field, unsigned long value)
497{
498 u8 error;
499
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300500 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400501 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800502 if (unlikely(error))
503 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800504}
505
506static void vmcs_write16(unsigned long field, u16 value)
507{
508 vmcs_writel(field, value);
509}
510
511static void vmcs_write32(unsigned long field, u32 value)
512{
513 vmcs_writel(field, value);
514}
515
516static void vmcs_write64(unsigned long field, u64 value)
517{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800518 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300519#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800520 asm volatile ("");
521 vmcs_writel(field+1, value >> 32);
522#endif
523}
524
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300525static void vmcs_clear_bits(unsigned long field, u32 mask)
526{
527 vmcs_writel(field, vmcs_readl(field) & ~mask);
528}
529
530static void vmcs_set_bits(unsigned long field, u32 mask)
531{
532 vmcs_writel(field, vmcs_readl(field) | mask);
533}
534
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300535static void update_exception_bitmap(struct kvm_vcpu *vcpu)
536{
537 u32 eb;
538
Andi Kleena0861c02009-06-08 17:37:09 +0800539 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300540 if (!vcpu->fpu_active)
541 eb |= 1u << NM_VECTOR;
Avi Kivitye8a48342009-09-01 16:06:25 +0300542 /*
543 * Unconditionally intercept #DB so we can maintain dr6 without
544 * reading it every exit.
545 */
546 eb |= 1u << DB_VECTOR;
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100547 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100548 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
549 eb |= 1u << BP_VECTOR;
550 }
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300551 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300552 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +0200553 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +0800554 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300555 vmcs_write32(EXCEPTION_BITMAP, eb);
556}
557
Avi Kivity33ed6322007-05-02 16:54:03 +0300558static void reload_tss(void)
559{
Avi Kivity33ed6322007-05-02 16:54:03 +0300560 /*
561 * VT restores TR but not its size. Useless.
562 */
563 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200564 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300565
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300566 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300567 descs = (void *)gdt.base;
568 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
569 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300570}
571
Rusty Russell8b9cf982007-07-30 16:31:43 +1000572static void load_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300573{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400574 int efer_offset = vmx->msr_offset_efer;
Roel Kluin3a34a882009-08-04 02:08:45 -0700575 u64 host_efer;
576 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300577 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300578
Avi Kivity51c6cf62007-08-29 03:48:05 +0300579 if (efer_offset < 0)
580 return;
Roel Kluin3a34a882009-08-04 02:08:45 -0700581 host_efer = vmx->host_msrs[efer_offset].data;
582 guest_efer = vmx->guest_msrs[efer_offset].data;
583
Avi Kivity51c6cf62007-08-29 03:48:05 +0300584 /*
585 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
586 * outside long mode
587 */
588 ignore_bits = EFER_NX | EFER_SCE;
589#ifdef CONFIG_X86_64
590 ignore_bits |= EFER_LMA | EFER_LME;
591 /* SCE is meaningful only in long mode on Intel */
592 if (guest_efer & EFER_LMA)
593 ignore_bits &= ~(u64)EFER_SCE;
594#endif
595 if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
596 return;
597
598 vmx->host_state.guest_efer_loaded = 1;
599 guest_efer &= ~ignore_bits;
600 guest_efer |= host_efer & ignore_bits;
601 wrmsrl(MSR_EFER, guest_efer);
Rusty Russell8b9cf982007-07-30 16:31:43 +1000602 vmx->vcpu.stat.efer_reload++;
Eddie Dong2cc51562007-05-21 07:28:09 +0300603}
604
Avi Kivity51c6cf62007-08-29 03:48:05 +0300605static void reload_host_efer(struct vcpu_vmx *vmx)
606{
607 if (vmx->host_state.guest_efer_loaded) {
608 vmx->host_state.guest_efer_loaded = 0;
609 load_msrs(vmx->host_msrs + vmx->msr_offset_efer, 1);
610 }
611}
612
Avi Kivity04d2cc72007-09-10 18:10:54 +0300613static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300614{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300615 struct vcpu_vmx *vmx = to_vmx(vcpu);
616
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400617 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300618 return;
619
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400620 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300621 /*
622 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
623 * allow segment selectors with cpl > 0 or ti == 1.
624 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300625 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200626 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300627 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200628 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400629 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200630 vmx->host_state.fs_reload_needed = 0;
631 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300632 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200633 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300634 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300635 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400636 if (!(vmx->host_state.gs_sel & 7))
637 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300638 else {
639 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200640 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300641 }
642
643#ifdef CONFIG_X86_64
644 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
645 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
646#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400647 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
648 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300649#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300650
651#ifdef CONFIG_X86_64
Mike Dayd77c26f2007-10-08 09:02:08 -0400652 if (is_long_mode(&vmx->vcpu))
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400653 save_msrs(vmx->host_msrs +
654 vmx->msr_offset_kernel_gs_base, 1);
Mike Dayd77c26f2007-10-08 09:02:08 -0400655
Avi Kivity707c0872007-05-02 17:33:43 +0300656#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400657 load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300658 load_transition_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300659}
660
Avi Kivitya9b21b62008-06-24 11:48:49 +0300661static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300662{
Avi Kivity15ad7142007-07-11 18:17:21 +0300663 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300664
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400665 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300666 return;
667
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200668 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400669 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200670 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300671 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200672 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300673 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300674 /*
675 * If we have to reload gs, we must take care to
676 * preserve our gs base.
677 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300678 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300679 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300680#ifdef CONFIG_X86_64
681 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
682#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300683 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300684 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200685 reload_tss();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400686 save_msrs(vmx->guest_msrs, vmx->save_nmsrs);
687 load_msrs(vmx->host_msrs, vmx->save_nmsrs);
Avi Kivity51c6cf62007-08-29 03:48:05 +0300688 reload_host_efer(vmx);
Avi Kivity33ed6322007-05-02 16:54:03 +0300689}
690
Avi Kivitya9b21b62008-06-24 11:48:49 +0300691static void vmx_load_host_state(struct vcpu_vmx *vmx)
692{
693 preempt_disable();
694 __vmx_load_host_state(vmx);
695 preempt_enable();
696}
697
Avi Kivity6aa8b732006-12-10 02:21:36 -0800698/*
699 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
700 * vcpu mutex is already taken.
701 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300702static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800703{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400704 struct vcpu_vmx *vmx = to_vmx(vcpu);
705 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200706 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800707
Eddie Donga3d7f852007-09-03 16:15:12 +0300708 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000709 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300710 kvm_migrate_timers(vcpu);
Marcelo Tosattieb5109e2009-10-01 19:16:58 -0300711 set_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests);
Avi Kivity543e4242008-05-13 16:22:47 +0300712 local_irq_disable();
713 list_add(&vmx->local_vcpus_link,
714 &per_cpu(vcpus_on_cpu, cpu));
715 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300716 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800717
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400718 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800719 u8 error;
720
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400721 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300722 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800723 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
724 : "cc");
725 if (error)
726 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400727 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800728 }
729
730 if (vcpu->cpu != cpu) {
731 struct descriptor_table dt;
732 unsigned long sysenter_esp;
733
734 vcpu->cpu = cpu;
735 /*
736 * Linux uses per-cpu TSS and GDT, so set these when switching
737 * processors.
738 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300739 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
740 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800741 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
742
743 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
744 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300745
746 /*
747 * Make sure the time stamp counter is monotonous.
748 */
749 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200750 if (tsc_this < vcpu->arch.host_tsc) {
751 delta = vcpu->arch.host_tsc - tsc_this;
752 new_offset = vmcs_read64(TSC_OFFSET) + delta;
753 vmcs_write64(TSC_OFFSET, new_offset);
754 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800755 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800756}
757
758static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
759{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300760 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800761}
762
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300763static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
764{
765 if (vcpu->fpu_active)
766 return;
767 vcpu->fpu_active = 1;
Rusty Russell707d92f2007-07-17 23:19:08 +1000768 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800769 if (vcpu->arch.cr0 & X86_CR0_TS)
Rusty Russell707d92f2007-07-17 23:19:08 +1000770 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300771 update_exception_bitmap(vcpu);
772}
773
774static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
775{
776 if (!vcpu->fpu_active)
777 return;
778 vcpu->fpu_active = 0;
Rusty Russell707d92f2007-07-17 23:19:08 +1000779 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300780 update_exception_bitmap(vcpu);
781}
782
Avi Kivity6aa8b732006-12-10 02:21:36 -0800783static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
784{
Avi Kivity345dcaa2009-08-12 15:29:37 +0300785 unsigned long rflags;
786
787 rflags = vmcs_readl(GUEST_RFLAGS);
788 if (to_vmx(vcpu)->rmode.vm86_active)
789 rflags &= ~(unsigned long)(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
790 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800791}
792
793static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
794{
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300795 if (to_vmx(vcpu)->rmode.vm86_active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100796 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800797 vmcs_writel(GUEST_RFLAGS, rflags);
798}
799
Glauber Costa2809f5d2009-05-12 16:21:05 -0400800static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
801{
802 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
803 int ret = 0;
804
805 if (interruptibility & GUEST_INTR_STATE_STI)
806 ret |= X86_SHADOW_INT_STI;
807 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
808 ret |= X86_SHADOW_INT_MOV_SS;
809
810 return ret & mask;
811}
812
813static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
814{
815 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
816 u32 interruptibility = interruptibility_old;
817
818 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
819
820 if (mask & X86_SHADOW_INT_MOV_SS)
821 interruptibility |= GUEST_INTR_STATE_MOV_SS;
822 if (mask & X86_SHADOW_INT_STI)
823 interruptibility |= GUEST_INTR_STATE_STI;
824
825 if ((interruptibility != interruptibility_old))
826 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
827}
828
Avi Kivity6aa8b732006-12-10 02:21:36 -0800829static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
830{
831 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800832
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300833 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800834 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300835 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800836
Glauber Costa2809f5d2009-05-12 16:21:05 -0400837 /* skipping an emulated instruction also counts */
838 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800839}
840
Avi Kivity298101d2007-11-25 13:41:11 +0200841static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
842 bool has_error_code, u32 error_code)
843{
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200844 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100845 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200846
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100847 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200848 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100849 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
850 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200851
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300852 if (vmx->rmode.vm86_active) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200853 vmx->rmode.irq.pending = true;
854 vmx->rmode.irq.vector = nr;
855 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +0300856 if (kvm_exception_is_soft(nr))
857 vmx->rmode.irq.rip +=
858 vmx->vcpu.arch.event_exit_inst_len;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100859 intr_info |= INTR_TYPE_SOFT_INTR;
860 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200861 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
862 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
863 return;
864 }
865
Gleb Natapov66fd3f72009-05-11 13:35:50 +0300866 if (kvm_exception_is_soft(nr)) {
867 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
868 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100869 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
870 } else
871 intr_info |= INTR_TYPE_HARD_EXCEPTION;
872
873 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +0200874}
875
Avi Kivity6aa8b732006-12-10 02:21:36 -0800876/*
Eddie Donga75beee2007-05-17 18:55:15 +0300877 * Swap MSR entry in host/guest MSR entry array.
878 */
Gabriel C54e11fa2007-08-01 16:23:10 +0200879#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000880static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300881{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400882 struct kvm_msr_entry tmp;
883
884 tmp = vmx->guest_msrs[to];
885 vmx->guest_msrs[to] = vmx->guest_msrs[from];
886 vmx->guest_msrs[from] = tmp;
887 tmp = vmx->host_msrs[to];
888 vmx->host_msrs[to] = vmx->host_msrs[from];
889 vmx->host_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300890}
Gabriel C54e11fa2007-08-01 16:23:10 +0200891#endif
Eddie Donga75beee2007-05-17 18:55:15 +0300892
893/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300894 * Set up the vmcs to automatically save and restore system
895 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
896 * mode, as fiddling with msrs is very expensive.
897 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000898static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300899{
Eddie Dong2cc51562007-05-21 07:28:09 +0300900 int save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +0200901 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +0300902
Avi Kivity33f9c502008-02-27 16:06:57 +0200903 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300904 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300905#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000906 if (is_long_mode(&vmx->vcpu)) {
Eddie Dong2cc51562007-05-21 07:28:09 +0300907 int index;
908
Rusty Russell8b9cf982007-07-30 16:31:43 +1000909 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300910 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000911 move_msr_up(vmx, index, save_nmsrs++);
912 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300913 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000914 move_msr_up(vmx, index, save_nmsrs++);
915 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300916 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000917 move_msr_up(vmx, index, save_nmsrs++);
918 index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300919 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000920 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300921 /*
922 * MSR_K6_STAR is only needed on long mode guests, and only
923 * if efer.sce is enabled.
924 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000925 index = __find_msr_index(vmx, MSR_K6_STAR);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800926 if ((index >= 0) && (vmx->vcpu.arch.shadow_efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000927 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300928 }
Eddie Donga75beee2007-05-17 18:55:15 +0300929#endif
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400930 vmx->save_nmsrs = save_nmsrs;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300931
Eddie Donga75beee2007-05-17 18:55:15 +0300932#ifdef CONFIG_X86_64
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400933 vmx->msr_offset_kernel_gs_base =
Rusty Russell8b9cf982007-07-30 16:31:43 +1000934 __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
Eddie Donga75beee2007-05-17 18:55:15 +0300935#endif
Rusty Russell8b9cf982007-07-30 16:31:43 +1000936 vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
Avi Kivity58972972009-02-24 22:26:47 +0200937
938 if (cpu_has_vmx_msr_bitmap()) {
939 if (is_long_mode(&vmx->vcpu))
940 msr_bitmap = vmx_msr_bitmap_longmode;
941 else
942 msr_bitmap = vmx_msr_bitmap_legacy;
943
944 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
945 }
Avi Kivitye38aea32007-04-19 13:22:48 +0300946}
947
948/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800949 * reads and returns guest's timestamp counter "register"
950 * guest_tsc = host_tsc + tsc_offset -- 21.3
951 */
952static u64 guest_read_tsc(void)
953{
954 u64 host_tsc, tsc_offset;
955
956 rdtscll(host_tsc);
957 tsc_offset = vmcs_read64(TSC_OFFSET);
958 return host_tsc + tsc_offset;
959}
960
961/*
962 * writes 'guest_tsc' into guest's timestamp counter "register"
963 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
964 */
Marcelo Tosatti53f658b2008-12-11 20:45:05 +0100965static void guest_write_tsc(u64 guest_tsc, u64 host_tsc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800966{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800967 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
968}
969
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970/*
971 * Reads an msr value (of 'msr_index') into 'pdata'.
972 * Returns 0 on success, non-0 otherwise.
973 * Assumes vcpu_load() was already called.
974 */
975static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
976{
977 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400978 struct kvm_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800979
980 if (!pdata) {
981 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
982 return -EINVAL;
983 }
984
985 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800986#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800987 case MSR_FS_BASE:
988 data = vmcs_readl(GUEST_FS_BASE);
989 break;
990 case MSR_GS_BASE:
991 data = vmcs_readl(GUEST_GS_BASE);
992 break;
993 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800994 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800995#endif
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +0530996 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997 data = guest_read_tsc();
998 break;
999 case MSR_IA32_SYSENTER_CS:
1000 data = vmcs_read32(GUEST_SYSENTER_CS);
1001 break;
1002 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001003 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001004 break;
1005 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001006 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001007 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10001009 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001010 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001011 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity3bab1f52006-12-29 16:49:48 -08001012 data = msr->data;
1013 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001014 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08001015 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001016 }
1017
1018 *pdata = data;
1019 return 0;
1020}
1021
1022/*
1023 * Writes msr value into into the appropriate "register".
1024 * Returns 0 on success, non-0 otherwise.
1025 * Assumes vcpu_load() was already called.
1026 */
1027static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1028{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001029 struct vcpu_vmx *vmx = to_vmx(vcpu);
1030 struct kvm_msr_entry *msr;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01001031 u64 host_tsc;
Eddie Dong2cc51562007-05-21 07:28:09 +03001032 int ret = 0;
1033
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001035 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +03001036 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +03001037 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03001038 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001039#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001040 case MSR_FS_BASE:
1041 vmcs_writel(GUEST_FS_BASE, data);
1042 break;
1043 case MSR_GS_BASE:
1044 vmcs_writel(GUEST_GS_BASE, data);
1045 break;
1046#endif
1047 case MSR_IA32_SYSENTER_CS:
1048 vmcs_write32(GUEST_SYSENTER_CS, data);
1049 break;
1050 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001051 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001052 break;
1053 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001054 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301056 case MSR_IA32_TSC:
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01001057 rdtscll(host_tsc);
1058 guest_write_tsc(data, host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001059 break;
Sheng Yang468d4722008-10-09 16:01:55 +08001060 case MSR_IA32_CR_PAT:
1061 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
1062 vmcs_write64(GUEST_IA32_PAT, data);
1063 vcpu->arch.pat = data;
1064 break;
1065 }
1066 /* Otherwise falls through to kvm_set_msr_common */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001067 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10001068 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001069 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001070 vmx_load_host_state(vmx);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001071 msr->data = data;
1072 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001073 }
Eddie Dong2cc51562007-05-21 07:28:09 +03001074 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001075 }
1076
Eddie Dong2cc51562007-05-21 07:28:09 +03001077 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001078}
1079
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001080static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001081{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001082 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
1083 switch (reg) {
1084 case VCPU_REGS_RSP:
1085 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
1086 break;
1087 case VCPU_REGS_RIP:
1088 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
1089 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001090 case VCPU_EXREG_PDPTR:
1091 if (enable_ept)
1092 ept_save_pdptrs(vcpu);
1093 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001094 default:
1095 break;
1096 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001097}
1098
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001099static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001100{
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001101 int old_debug = vcpu->guest_debug;
1102 unsigned long flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001103
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001104 vcpu->guest_debug = dbg->control;
1105 if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE))
1106 vcpu->guest_debug = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001107
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001108 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1109 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1110 else
1111 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1112
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001113 flags = vmcs_readl(GUEST_RFLAGS);
1114 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
1115 flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
1116 else if (old_debug & KVM_GUESTDBG_SINGLESTEP)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001117 flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01001118 vmcs_writel(GUEST_RFLAGS, flags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001119
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001120 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001121
1122 return 0;
1123}
1124
1125static __init int cpu_has_kvm_support(void)
1126{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001127 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001128}
1129
1130static __init int vmx_disabled_by_bios(void)
1131{
1132 u64 msr;
1133
1134 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001135 return (msr & (FEATURE_CONTROL_LOCKED |
1136 FEATURE_CONTROL_VMXON_ENABLED))
1137 == FEATURE_CONTROL_LOCKED;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001138 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001139}
1140
Avi Kivity774c47f2007-02-12 00:54:47 -08001141static void hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001142{
1143 int cpu = raw_smp_processor_id();
1144 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1145 u64 old;
1146
Avi Kivity543e4242008-05-13 16:22:47 +03001147 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001148 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001149 if ((old & (FEATURE_CONTROL_LOCKED |
1150 FEATURE_CONTROL_VMXON_ENABLED))
1151 != (FEATURE_CONTROL_LOCKED |
1152 FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001153 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001154 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yang9ea542f2008-09-11 15:27:49 +08001155 FEATURE_CONTROL_LOCKED |
1156 FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +10001157 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001158 asm volatile (ASM_VMX_VMXON_RAX
1159 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001160 : "memory", "cc");
1161}
1162
Avi Kivity543e4242008-05-13 16:22:47 +03001163static void vmclear_local_vcpus(void)
1164{
1165 int cpu = raw_smp_processor_id();
1166 struct vcpu_vmx *vmx, *n;
1167
1168 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1169 local_vcpus_link)
1170 __vcpu_clear(vmx);
1171}
1172
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001173
1174/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1175 * tricks.
1176 */
1177static void kvm_cpu_vmxoff(void)
1178{
1179 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
1180 write_cr4(read_cr4() & ~X86_CR4_VMXE);
1181}
1182
Avi Kivity6aa8b732006-12-10 02:21:36 -08001183static void hardware_disable(void *garbage)
1184{
Avi Kivity543e4242008-05-13 16:22:47 +03001185 vmclear_local_vcpus();
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001186 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001187}
1188
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001189static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001190 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001191{
1192 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001193 u32 ctl = ctl_min | ctl_opt;
1194
1195 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1196
1197 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1198 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1199
1200 /* Ensure minimum (required) set of control bits are supported. */
1201 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001202 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001203
1204 *result = ctl;
1205 return 0;
1206}
1207
Yang, Sheng002c7f72007-07-31 14:23:01 +03001208static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001209{
1210 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001211 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001212 u32 _pin_based_exec_control = 0;
1213 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001214 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001215 u32 _vmexit_control = 0;
1216 u32 _vmentry_control = 0;
1217
1218 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001219 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001220 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1221 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001222 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001223
1224 min = CPU_BASED_HLT_EXITING |
1225#ifdef CONFIG_X86_64
1226 CPU_BASED_CR8_LOAD_EXITING |
1227 CPU_BASED_CR8_STORE_EXITING |
1228#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001229 CPU_BASED_CR3_LOAD_EXITING |
1230 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001231 CPU_BASED_USE_IO_BITMAPS |
1232 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001233 CPU_BASED_USE_TSC_OFFSETING |
1234 CPU_BASED_INVLPG_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001235 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001236 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001237 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001238 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1239 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001240 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001241#ifdef CONFIG_X86_64
1242 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1243 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1244 ~CPU_BASED_CR8_STORE_EXITING;
1245#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001246 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001247 min2 = 0;
1248 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001249 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001250 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001251 SECONDARY_EXEC_ENABLE_EPT |
1252 SECONDARY_EXEC_UNRESTRICTED_GUEST;
Sheng Yangd56f5462008-04-25 10:13:16 +08001253 if (adjust_vmx_controls(min2, opt2,
1254 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001255 &_cpu_based_2nd_exec_control) < 0)
1256 return -EIO;
1257 }
1258#ifndef CONFIG_X86_64
1259 if (!(_cpu_based_2nd_exec_control &
1260 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1261 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1262#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001263 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03001264 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
1265 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03001266 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
1267 CPU_BASED_CR3_STORE_EXITING |
1268 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001269 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1270 vmx_capability.ept, vmx_capability.vpid);
1271 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001272
1273 min = 0;
1274#ifdef CONFIG_X86_64
1275 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1276#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001277 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001278 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1279 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001280 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001281
Sheng Yang468d4722008-10-09 16:01:55 +08001282 min = 0;
1283 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001284 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1285 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001286 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001287
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001288 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001289
1290 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1291 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001292 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001293
1294#ifdef CONFIG_X86_64
1295 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1296 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001297 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001298#endif
1299
1300 /* Require Write-Back (WB) memory type for VMCS accesses. */
1301 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001302 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001303
Yang, Sheng002c7f72007-07-31 14:23:01 +03001304 vmcs_conf->size = vmx_msr_high & 0x1fff;
1305 vmcs_conf->order = get_order(vmcs_config.size);
1306 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001307
Yang, Sheng002c7f72007-07-31 14:23:01 +03001308 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1309 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001310 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001311 vmcs_conf->vmexit_ctrl = _vmexit_control;
1312 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001313
1314 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001315}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001316
1317static struct vmcs *alloc_vmcs_cpu(int cpu)
1318{
1319 int node = cpu_to_node(cpu);
1320 struct page *pages;
1321 struct vmcs *vmcs;
1322
Mel Gorman6484eb32009-06-16 15:31:54 -07001323 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001324 if (!pages)
1325 return NULL;
1326 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001327 memset(vmcs, 0, vmcs_config.size);
1328 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001329 return vmcs;
1330}
1331
1332static struct vmcs *alloc_vmcs(void)
1333{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001334 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001335}
1336
1337static void free_vmcs(struct vmcs *vmcs)
1338{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001339 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001340}
1341
Sam Ravnborg39959582007-06-01 00:47:13 -07001342static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001343{
1344 int cpu;
1345
1346 for_each_online_cpu(cpu)
1347 free_vmcs(per_cpu(vmxarea, cpu));
1348}
1349
Avi Kivity6aa8b732006-12-10 02:21:36 -08001350static __init int alloc_kvm_area(void)
1351{
1352 int cpu;
1353
1354 for_each_online_cpu(cpu) {
1355 struct vmcs *vmcs;
1356
1357 vmcs = alloc_vmcs_cpu(cpu);
1358 if (!vmcs) {
1359 free_kvm_area();
1360 return -ENOMEM;
1361 }
1362
1363 per_cpu(vmxarea, cpu) = vmcs;
1364 }
1365 return 0;
1366}
1367
1368static __init int hardware_setup(void)
1369{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001370 if (setup_vmcs_config(&vmcs_config) < 0)
1371 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001372
1373 if (boot_cpu_has(X86_FEATURE_NX))
1374 kvm_enable_efer_bits(EFER_NX);
1375
Sheng Yang93ba03c2009-04-01 15:52:32 +08001376 if (!cpu_has_vmx_vpid())
1377 enable_vpid = 0;
1378
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001379 if (!cpu_has_vmx_ept()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08001380 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001381 enable_unrestricted_guest = 0;
1382 }
1383
1384 if (!cpu_has_vmx_unrestricted_guest())
1385 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08001386
1387 if (!cpu_has_vmx_flexpriority())
1388 flexpriority_enabled = 0;
1389
Gleb Natapov95ba8273132009-04-21 17:45:08 +03001390 if (!cpu_has_vmx_tpr_shadow())
1391 kvm_x86_ops->update_cr8_intercept = NULL;
1392
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001393 if (enable_ept && !cpu_has_vmx_ept_2m_page())
1394 kvm_disable_largepages();
1395
Avi Kivity6aa8b732006-12-10 02:21:36 -08001396 return alloc_kvm_area();
1397}
1398
1399static __exit void hardware_unsetup(void)
1400{
1401 free_kvm_area();
1402}
1403
Avi Kivity6aa8b732006-12-10 02:21:36 -08001404static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1405{
1406 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1407
Avi Kivity6af11b92007-03-19 13:18:10 +02001408 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001409 vmcs_write16(sf->selector, save->selector);
1410 vmcs_writel(sf->base, save->base);
1411 vmcs_write32(sf->limit, save->limit);
1412 vmcs_write32(sf->ar_bytes, save->ar);
1413 } else {
1414 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1415 << AR_DPL_SHIFT;
1416 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1417 }
1418}
1419
1420static void enter_pmode(struct kvm_vcpu *vcpu)
1421{
1422 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001423 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001424
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001425 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001426 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001427
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001428 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
1429 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
1430 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001431
1432 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001433 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001434 flags |= (vmx->rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001435 vmcs_writel(GUEST_RFLAGS, flags);
1436
Rusty Russell66aee912007-07-17 23:34:16 +10001437 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1438 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001439
1440 update_exception_bitmap(vcpu);
1441
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001442 if (emulate_invalid_guest_state)
1443 return;
1444
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001445 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
1446 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
1447 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
1448 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001449
1450 vmcs_write16(GUEST_SS_SELECTOR, 0);
1451 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1452
1453 vmcs_write16(GUEST_CS_SELECTOR,
1454 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1455 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1456}
1457
Mike Dayd77c26f2007-10-08 09:02:08 -04001458static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001459{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001460 if (!kvm->arch.tss_addr) {
Izik Eiduscbc94022007-10-25 00:29:55 +02001461 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1462 kvm->memslots[0].npages - 3;
1463 return base_gfn << PAGE_SHIFT;
1464 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001465 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001466}
1467
1468static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1469{
1470 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1471
1472 save->selector = vmcs_read16(sf->selector);
1473 save->base = vmcs_readl(sf->base);
1474 save->limit = vmcs_read32(sf->limit);
1475 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001476 vmcs_write16(sf->selector, save->base >> 4);
1477 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001478 vmcs_write32(sf->limit, 0xffff);
1479 vmcs_write32(sf->ar_bytes, 0xf3);
1480}
1481
1482static void enter_rmode(struct kvm_vcpu *vcpu)
1483{
1484 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001485 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001486
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001487 if (enable_unrestricted_guest)
1488 return;
1489
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001490 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001491 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001492
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001493 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001494 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1495
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001496 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001497 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1498
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001499 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001500 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1501
1502 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001503 vmx->rmode.save_iopl
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001504 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001505
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001506 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001507
1508 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001509 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001510 update_exception_bitmap(vcpu);
1511
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001512 if (emulate_invalid_guest_state)
1513 goto continue_rmode;
1514
Avi Kivity6aa8b732006-12-10 02:21:36 -08001515 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1516 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1517 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1518
1519 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001520 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001521 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1522 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001523 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1524
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001525 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
1526 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
1527 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
1528 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001529
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001530continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08001531 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001532 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001533}
1534
Amit Shah401d10d2009-02-20 22:53:37 +05301535static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1536{
1537 struct vcpu_vmx *vmx = to_vmx(vcpu);
1538 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
1539
1540 vcpu->arch.shadow_efer = efer;
1541 if (!msr)
1542 return;
1543 if (efer & EFER_LMA) {
1544 vmcs_write32(VM_ENTRY_CONTROLS,
1545 vmcs_read32(VM_ENTRY_CONTROLS) |
1546 VM_ENTRY_IA32E_MODE);
1547 msr->data = efer;
1548 } else {
1549 vmcs_write32(VM_ENTRY_CONTROLS,
1550 vmcs_read32(VM_ENTRY_CONTROLS) &
1551 ~VM_ENTRY_IA32E_MODE);
1552
1553 msr->data = efer & ~EFER_LME;
1554 }
1555 setup_msrs(vmx);
1556}
1557
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001558#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001559
1560static void enter_lmode(struct kvm_vcpu *vcpu)
1561{
1562 u32 guest_tr_ar;
1563
1564 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1565 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1566 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001567 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001568 vmcs_write32(GUEST_TR_AR_BYTES,
1569 (guest_tr_ar & ~AR_TYPE_MASK)
1570 | AR_TYPE_BUSY_64_TSS);
1571 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001572 vcpu->arch.shadow_efer |= EFER_LMA;
Amit Shah401d10d2009-02-20 22:53:37 +05301573 vmx_set_efer(vcpu, vcpu->arch.shadow_efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001574}
1575
1576static void exit_lmode(struct kvm_vcpu *vcpu)
1577{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001578 vcpu->arch.shadow_efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001579
1580 vmcs_write32(VM_ENTRY_CONTROLS,
1581 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001582 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001583}
1584
1585#endif
1586
Sheng Yang2384d2b2008-01-17 15:14:33 +08001587static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1588{
1589 vpid_sync_vcpu_all(to_vmx(vcpu));
Avi Kivity089d0342009-03-23 18:26:32 +02001590 if (enable_ept)
Sheng Yang4e1096d2008-07-06 19:16:51 +08001591 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001592}
1593
Anthony Liguori25c4c272007-04-27 09:29:21 +03001594static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001595{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001596 vcpu->arch.cr4 &= KVM_GUEST_CR4_MASK;
1597 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
Avi Kivity399badf2007-01-05 16:36:38 -08001598}
1599
Sheng Yang14394422008-04-28 12:24:45 +08001600static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1601{
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001602 if (!test_bit(VCPU_EXREG_PDPTR,
1603 (unsigned long *)&vcpu->arch.regs_dirty))
1604 return;
1605
Sheng Yang14394422008-04-28 12:24:45 +08001606 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Sheng Yang14394422008-04-28 12:24:45 +08001607 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1608 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1609 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1610 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1611 }
1612}
1613
Avi Kivity8f5d5492009-05-31 18:41:29 +03001614static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
1615{
1616 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1617 vcpu->arch.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
1618 vcpu->arch.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
1619 vcpu->arch.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
1620 vcpu->arch.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
1621 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001622
1623 __set_bit(VCPU_EXREG_PDPTR,
1624 (unsigned long *)&vcpu->arch.regs_avail);
1625 __set_bit(VCPU_EXREG_PDPTR,
1626 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03001627}
1628
Sheng Yang14394422008-04-28 12:24:45 +08001629static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1630
1631static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1632 unsigned long cr0,
1633 struct kvm_vcpu *vcpu)
1634{
1635 if (!(cr0 & X86_CR0_PG)) {
1636 /* From paging/starting to nonpaging */
1637 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001638 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001639 (CPU_BASED_CR3_LOAD_EXITING |
1640 CPU_BASED_CR3_STORE_EXITING));
1641 vcpu->arch.cr0 = cr0;
1642 vmx_set_cr4(vcpu, vcpu->arch.cr4);
Sheng Yang14394422008-04-28 12:24:45 +08001643 } else if (!is_paging(vcpu)) {
1644 /* From nonpaging to paging */
1645 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001646 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001647 ~(CPU_BASED_CR3_LOAD_EXITING |
1648 CPU_BASED_CR3_STORE_EXITING));
1649 vcpu->arch.cr0 = cr0;
1650 vmx_set_cr4(vcpu, vcpu->arch.cr4);
Sheng Yang14394422008-04-28 12:24:45 +08001651 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08001652
1653 if (!(cr0 & X86_CR0_WP))
1654 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08001655}
1656
1657static void ept_update_paging_mode_cr4(unsigned long *hw_cr4,
1658 struct kvm_vcpu *vcpu)
1659{
1660 if (!is_paging(vcpu)) {
1661 *hw_cr4 &= ~X86_CR4_PAE;
1662 *hw_cr4 |= X86_CR4_PSE;
1663 } else if (!(vcpu->arch.cr4 & X86_CR4_PAE))
1664 *hw_cr4 &= ~X86_CR4_PAE;
1665}
1666
Avi Kivity6aa8b732006-12-10 02:21:36 -08001667static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1668{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001669 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001670 unsigned long hw_cr0;
1671
1672 if (enable_unrestricted_guest)
1673 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
1674 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
1675 else
1676 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08001677
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001678 vmx_fpu_deactivate(vcpu);
1679
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001680 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001681 enter_pmode(vcpu);
1682
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001683 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001684 enter_rmode(vcpu);
1685
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001686#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001687 if (vcpu->arch.shadow_efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10001688 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001689 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10001690 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001691 exit_lmode(vcpu);
1692 }
1693#endif
1694
Avi Kivity089d0342009-03-23 18:26:32 +02001695 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001696 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1697
Avi Kivity6aa8b732006-12-10 02:21:36 -08001698 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001699 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001700 vcpu->arch.cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001701
Rusty Russell707d92f2007-07-17 23:19:08 +10001702 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001703 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001704}
1705
Sheng Yang14394422008-04-28 12:24:45 +08001706static u64 construct_eptp(unsigned long root_hpa)
1707{
1708 u64 eptp;
1709
1710 /* TODO write the value reading from MSR */
1711 eptp = VMX_EPT_DEFAULT_MT |
1712 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1713 eptp |= (root_hpa & PAGE_MASK);
1714
1715 return eptp;
1716}
1717
Avi Kivity6aa8b732006-12-10 02:21:36 -08001718static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1719{
Sheng Yang14394422008-04-28 12:24:45 +08001720 unsigned long guest_cr3;
1721 u64 eptp;
1722
1723 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02001724 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001725 eptp = construct_eptp(cr3);
1726 vmcs_write64(EPT_POINTER, eptp);
Sheng Yang14394422008-04-28 12:24:45 +08001727 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
Sheng Yangb927a3c2009-07-21 10:42:48 +08001728 vcpu->kvm->arch.ept_identity_map_addr;
Sheng Yang14394422008-04-28 12:24:45 +08001729 }
1730
Sheng Yang2384d2b2008-01-17 15:14:33 +08001731 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001732 vmcs_writel(GUEST_CR3, guest_cr3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001733 if (vcpu->arch.cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001734 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001735}
1736
1737static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1738{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001739 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08001740 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1741
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001742 vcpu->arch.cr4 = cr4;
Avi Kivity089d0342009-03-23 18:26:32 +02001743 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001744 ept_update_paging_mode_cr4(&hw_cr4, vcpu);
1745
1746 vmcs_writel(CR4_READ_SHADOW, cr4);
1747 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001748}
1749
Avi Kivity6aa8b732006-12-10 02:21:36 -08001750static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1751{
1752 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1753
1754 return vmcs_readl(sf->base);
1755}
1756
1757static void vmx_get_segment(struct kvm_vcpu *vcpu,
1758 struct kvm_segment *var, int seg)
1759{
1760 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1761 u32 ar;
1762
1763 var->base = vmcs_readl(sf->base);
1764 var->limit = vmcs_read32(sf->limit);
1765 var->selector = vmcs_read16(sf->selector);
1766 ar = vmcs_read32(sf->ar_bytes);
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02001767 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001768 ar = 0;
1769 var->type = ar & 15;
1770 var->s = (ar >> 4) & 1;
1771 var->dpl = (ar >> 5) & 3;
1772 var->present = (ar >> 7) & 1;
1773 var->avl = (ar >> 12) & 1;
1774 var->l = (ar >> 13) & 1;
1775 var->db = (ar >> 14) & 1;
1776 var->g = (ar >> 15) & 1;
1777 var->unusable = (ar >> 16) & 1;
1778}
1779
Izik Eidus2e4d2652008-03-24 19:38:34 +02001780static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1781{
Izik Eidus2e4d2652008-03-24 19:38:34 +02001782 if (!(vcpu->arch.cr0 & X86_CR0_PE)) /* if real mode */
1783 return 0;
1784
1785 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1786 return 3;
1787
Avi Kivityeab4b8a2009-08-04 15:02:54 +03001788 return vmcs_read16(GUEST_CS_SELECTOR) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02001789}
1790
Avi Kivity653e3102007-05-07 10:55:37 +03001791static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001792{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001793 u32 ar;
1794
Avi Kivity653e3102007-05-07 10:55:37 +03001795 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001796 ar = 1 << 16;
1797 else {
1798 ar = var->type & 15;
1799 ar |= (var->s & 1) << 4;
1800 ar |= (var->dpl & 3) << 5;
1801 ar |= (var->present & 1) << 7;
1802 ar |= (var->avl & 1) << 12;
1803 ar |= (var->l & 1) << 13;
1804 ar |= (var->db & 1) << 14;
1805 ar |= (var->g & 1) << 15;
1806 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001807 if (ar == 0) /* a 0 value means unusable */
1808 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001809
1810 return ar;
1811}
1812
1813static void vmx_set_segment(struct kvm_vcpu *vcpu,
1814 struct kvm_segment *var, int seg)
1815{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001816 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03001817 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1818 u32 ar;
1819
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001820 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
1821 vmx->rmode.tr.selector = var->selector;
1822 vmx->rmode.tr.base = var->base;
1823 vmx->rmode.tr.limit = var->limit;
1824 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001825 return;
1826 }
1827 vmcs_writel(sf->base, var->base);
1828 vmcs_write32(sf->limit, var->limit);
1829 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001830 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001831 /*
1832 * Hack real-mode segments into vm86 compatibility.
1833 */
1834 if (var->base == 0xffff0000 && var->selector == 0xf000)
1835 vmcs_writel(sf->base, 0xf0000);
1836 ar = 0xf3;
1837 } else
1838 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001839
1840 /*
1841 * Fix the "Accessed" bit in AR field of segment registers for older
1842 * qemu binaries.
1843 * IA32 arch specifies that at the time of processor reset the
1844 * "Accessed" bit in the AR field of segment registers is 1. And qemu
1845 * is setting it to 0 in the usedland code. This causes invalid guest
1846 * state vmexit when "unrestricted guest" mode is turned on.
1847 * Fix for this setup issue in cpu_reset is being pushed in the qemu
1848 * tree. Newer qemu binaries with that qemu fix would not need this
1849 * kvm hack.
1850 */
1851 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
1852 ar |= 0x1; /* Accessed */
1853
Avi Kivity6aa8b732006-12-10 02:21:36 -08001854 vmcs_write32(sf->ar_bytes, ar);
1855}
1856
Avi Kivity6aa8b732006-12-10 02:21:36 -08001857static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1858{
1859 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1860
1861 *db = (ar >> 14) & 1;
1862 *l = (ar >> 13) & 1;
1863}
1864
1865static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1866{
1867 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1868 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1869}
1870
1871static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1872{
1873 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1874 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1875}
1876
1877static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1878{
1879 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1880 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1881}
1882
1883static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1884{
1885 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1886 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1887}
1888
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001889static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1890{
1891 struct kvm_segment var;
1892 u32 ar;
1893
1894 vmx_get_segment(vcpu, &var, seg);
1895 ar = vmx_segment_access_rights(&var);
1896
1897 if (var.base != (var.selector << 4))
1898 return false;
1899 if (var.limit != 0xffff)
1900 return false;
1901 if (ar != 0xf3)
1902 return false;
1903
1904 return true;
1905}
1906
1907static bool code_segment_valid(struct kvm_vcpu *vcpu)
1908{
1909 struct kvm_segment cs;
1910 unsigned int cs_rpl;
1911
1912 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1913 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1914
Avi Kivity1872a3f2009-01-04 23:26:52 +02001915 if (cs.unusable)
1916 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001917 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1918 return false;
1919 if (!cs.s)
1920 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001921 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001922 if (cs.dpl > cs_rpl)
1923 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001924 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001925 if (cs.dpl != cs_rpl)
1926 return false;
1927 }
1928 if (!cs.present)
1929 return false;
1930
1931 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
1932 return true;
1933}
1934
1935static bool stack_segment_valid(struct kvm_vcpu *vcpu)
1936{
1937 struct kvm_segment ss;
1938 unsigned int ss_rpl;
1939
1940 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1941 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
1942
Avi Kivity1872a3f2009-01-04 23:26:52 +02001943 if (ss.unusable)
1944 return true;
1945 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001946 return false;
1947 if (!ss.s)
1948 return false;
1949 if (ss.dpl != ss_rpl) /* DPL != RPL */
1950 return false;
1951 if (!ss.present)
1952 return false;
1953
1954 return true;
1955}
1956
1957static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
1958{
1959 struct kvm_segment var;
1960 unsigned int rpl;
1961
1962 vmx_get_segment(vcpu, &var, seg);
1963 rpl = var.selector & SELECTOR_RPL_MASK;
1964
Avi Kivity1872a3f2009-01-04 23:26:52 +02001965 if (var.unusable)
1966 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001967 if (!var.s)
1968 return false;
1969 if (!var.present)
1970 return false;
1971 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
1972 if (var.dpl < rpl) /* DPL < RPL */
1973 return false;
1974 }
1975
1976 /* TODO: Add other members to kvm_segment_field to allow checking for other access
1977 * rights flags
1978 */
1979 return true;
1980}
1981
1982static bool tr_valid(struct kvm_vcpu *vcpu)
1983{
1984 struct kvm_segment tr;
1985
1986 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
1987
Avi Kivity1872a3f2009-01-04 23:26:52 +02001988 if (tr.unusable)
1989 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001990 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
1991 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001992 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001993 return false;
1994 if (!tr.present)
1995 return false;
1996
1997 return true;
1998}
1999
2000static bool ldtr_valid(struct kvm_vcpu *vcpu)
2001{
2002 struct kvm_segment ldtr;
2003
2004 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
2005
Avi Kivity1872a3f2009-01-04 23:26:52 +02002006 if (ldtr.unusable)
2007 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002008 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2009 return false;
2010 if (ldtr.type != 2)
2011 return false;
2012 if (!ldtr.present)
2013 return false;
2014
2015 return true;
2016}
2017
2018static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
2019{
2020 struct kvm_segment cs, ss;
2021
2022 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
2023 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2024
2025 return ((cs.selector & SELECTOR_RPL_MASK) ==
2026 (ss.selector & SELECTOR_RPL_MASK));
2027}
2028
2029/*
2030 * Check if guest state is valid. Returns true if valid, false if
2031 * not.
2032 * We assume that registers are always usable
2033 */
2034static bool guest_state_valid(struct kvm_vcpu *vcpu)
2035{
2036 /* real mode guest state checks */
2037 if (!(vcpu->arch.cr0 & X86_CR0_PE)) {
2038 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
2039 return false;
2040 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
2041 return false;
2042 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
2043 return false;
2044 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
2045 return false;
2046 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
2047 return false;
2048 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
2049 return false;
2050 } else {
2051 /* protected mode guest state checks */
2052 if (!cs_ss_rpl_check(vcpu))
2053 return false;
2054 if (!code_segment_valid(vcpu))
2055 return false;
2056 if (!stack_segment_valid(vcpu))
2057 return false;
2058 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
2059 return false;
2060 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
2061 return false;
2062 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
2063 return false;
2064 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
2065 return false;
2066 if (!tr_valid(vcpu))
2067 return false;
2068 if (!ldtr_valid(vcpu))
2069 return false;
2070 }
2071 /* TODO:
2072 * - Add checks on RIP
2073 * - Add checks on RFLAGS
2074 */
2075
2076 return true;
2077}
2078
Mike Dayd77c26f2007-10-08 09:02:08 -04002079static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002080{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002081 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02002082 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002083 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02002084 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002085
Izik Eidus195aefd2007-10-01 22:14:18 +02002086 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2087 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002088 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002089 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08002090 r = kvm_write_guest_page(kvm, fn++, &data,
2091 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02002092 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002093 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002094 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
2095 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002096 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002097 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2098 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002099 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002100 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002101 r = kvm_write_guest_page(kvm, fn, &data,
2102 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
2103 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02002104 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002105 goto out;
2106
2107 ret = 1;
2108out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002109 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002110}
2111
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002112static int init_rmode_identity_map(struct kvm *kvm)
2113{
2114 int i, r, ret;
2115 pfn_t identity_map_pfn;
2116 u32 tmp;
2117
Avi Kivity089d0342009-03-23 18:26:32 +02002118 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002119 return 1;
2120 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
2121 printk(KERN_ERR "EPT: identity-mapping pagetable "
2122 "haven't been allocated!\n");
2123 return 0;
2124 }
2125 if (likely(kvm->arch.ept_identity_pagetable_done))
2126 return 1;
2127 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002128 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002129 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
2130 if (r < 0)
2131 goto out;
2132 /* Set up identity-mapping pagetable for EPT in real mode */
2133 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2134 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2135 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2136 r = kvm_write_guest_page(kvm, identity_map_pfn,
2137 &tmp, i * sizeof(tmp), sizeof(tmp));
2138 if (r < 0)
2139 goto out;
2140 }
2141 kvm->arch.ept_identity_pagetable_done = true;
2142 ret = 1;
2143out:
2144 return ret;
2145}
2146
Avi Kivity6aa8b732006-12-10 02:21:36 -08002147static void seg_setup(int seg)
2148{
2149 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002150 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002151
2152 vmcs_write16(sf->selector, 0);
2153 vmcs_writel(sf->base, 0);
2154 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002155 if (enable_unrestricted_guest) {
2156 ar = 0x93;
2157 if (seg == VCPU_SREG_CS)
2158 ar |= 0x08; /* code segment */
2159 } else
2160 ar = 0xf3;
2161
2162 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002163}
2164
Sheng Yangf78e0e22007-10-29 09:40:42 +08002165static int alloc_apic_access_page(struct kvm *kvm)
2166{
2167 struct kvm_userspace_memory_region kvm_userspace_mem;
2168 int r = 0;
2169
Izik Eidus72dc67a2008-02-10 18:04:15 +02002170 down_write(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002171 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08002172 goto out;
2173 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
2174 kvm_userspace_mem.flags = 0;
2175 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
2176 kvm_userspace_mem.memory_size = PAGE_SIZE;
2177 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2178 if (r)
2179 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002180
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002181 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002182out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02002183 up_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002184 return r;
2185}
2186
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002187static int alloc_identity_pagetable(struct kvm *kvm)
2188{
2189 struct kvm_userspace_memory_region kvm_userspace_mem;
2190 int r = 0;
2191
2192 down_write(&kvm->slots_lock);
2193 if (kvm->arch.ept_identity_pagetable)
2194 goto out;
2195 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2196 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002197 kvm_userspace_mem.guest_phys_addr =
2198 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002199 kvm_userspace_mem.memory_size = PAGE_SIZE;
2200 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2201 if (r)
2202 goto out;
2203
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002204 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08002205 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002206out:
2207 up_write(&kvm->slots_lock);
2208 return r;
2209}
2210
Sheng Yang2384d2b2008-01-17 15:14:33 +08002211static void allocate_vpid(struct vcpu_vmx *vmx)
2212{
2213 int vpid;
2214
2215 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02002216 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002217 return;
2218 spin_lock(&vmx_vpid_lock);
2219 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2220 if (vpid < VMX_NR_VPIDS) {
2221 vmx->vpid = vpid;
2222 __set_bit(vpid, vmx_vpid_bitmap);
2223 }
2224 spin_unlock(&vmx_vpid_lock);
2225}
2226
Avi Kivity58972972009-02-24 22:26:47 +02002227static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002228{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002229 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08002230
2231 if (!cpu_has_vmx_msr_bitmap())
2232 return;
2233
2234 /*
2235 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2236 * have the write-low and read-high bitmap offsets the wrong way round.
2237 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2238 */
Sheng Yang25c5f222008-03-28 13:18:56 +08002239 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002240 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
2241 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08002242 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2243 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002244 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
2245 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08002246 }
Sheng Yang25c5f222008-03-28 13:18:56 +08002247}
2248
Avi Kivity58972972009-02-24 22:26:47 +02002249static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
2250{
2251 if (!longmode_only)
2252 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
2253 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
2254}
2255
Avi Kivity6aa8b732006-12-10 02:21:36 -08002256/*
2257 * Sets up the vmcs for emulated real mode.
2258 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002259static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002260{
Sheng Yang468d4722008-10-09 16:01:55 +08002261 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002262 u32 junk;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002263 u64 host_pat, tsc_this, tsc_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002264 unsigned long a;
2265 struct descriptor_table dt;
2266 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002267 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002268 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002269
Avi Kivity6aa8b732006-12-10 02:21:36 -08002270 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002271 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
2272 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002273
Sheng Yang25c5f222008-03-28 13:18:56 +08002274 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02002275 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08002276
Avi Kivity6aa8b732006-12-10 02:21:36 -08002277 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2278
Avi Kivity6aa8b732006-12-10 02:21:36 -08002279 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002280 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2281 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002282
2283 exec_control = vmcs_config.cpu_based_exec_ctrl;
2284 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2285 exec_control &= ~CPU_BASED_TPR_SHADOW;
2286#ifdef CONFIG_X86_64
2287 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2288 CPU_BASED_CR8_LOAD_EXITING;
2289#endif
2290 }
Avi Kivity089d0342009-03-23 18:26:32 +02002291 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002292 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03002293 CPU_BASED_CR3_LOAD_EXITING |
2294 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002295 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002296
Sheng Yang83ff3b92007-11-21 14:33:25 +08002297 if (cpu_has_secondary_exec_ctrls()) {
2298 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2299 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2300 exec_control &=
2301 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002302 if (vmx->vpid == 0)
2303 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Avi Kivity089d0342009-03-23 18:26:32 +02002304 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002305 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002306 if (!enable_unrestricted_guest)
2307 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002308 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2309 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002310
Avi Kivityc7addb92007-09-16 18:58:32 +02002311 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2312 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002313 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2314
2315 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2316 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2317 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2318
2319 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2320 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2321 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002322 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2323 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002324 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002325#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002326 rdmsrl(MSR_FS_BASE, a);
2327 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2328 rdmsrl(MSR_GS_BASE, a);
2329 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2330#else
2331 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2332 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2333#endif
2334
2335 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2336
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002337 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002338 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2339
Mike Dayd77c26f2007-10-08 09:02:08 -04002340 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002341 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002342 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2343 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2344 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002345
2346 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2347 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2348 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2349 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2350 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2351 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2352
Sheng Yang468d4722008-10-09 16:01:55 +08002353 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2354 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2355 host_pat = msr_low | ((u64) msr_high << 32);
2356 vmcs_write64(HOST_IA32_PAT, host_pat);
2357 }
2358 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2359 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2360 host_pat = msr_low | ((u64) msr_high << 32);
2361 /* Write the default value follow host pat */
2362 vmcs_write64(GUEST_IA32_PAT, host_pat);
2363 /* Keep arch.pat sync with GUEST_IA32_PAT */
2364 vmx->vcpu.arch.pat = host_pat;
2365 }
2366
Avi Kivity6aa8b732006-12-10 02:21:36 -08002367 for (i = 0; i < NR_VMX_MSR; ++i) {
2368 u32 index = vmx_msr_index[i];
2369 u32 data_low, data_high;
2370 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002371 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002372
2373 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2374 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002375 if (wrmsr_safe(index, data_low, data_high) < 0)
2376 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002377 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002378 vmx->host_msrs[j].index = index;
2379 vmx->host_msrs[j].reserved = 0;
2380 vmx->host_msrs[j].data = data;
2381 vmx->guest_msrs[j] = vmx->host_msrs[j];
2382 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002383 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002384
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002385 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002386
2387 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002388 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2389
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002390 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
2391 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
2392
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002393 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2394 rdtscll(tsc_this);
2395 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2396 tsc_base = tsc_this;
2397
2398 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002399
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002400 return 0;
2401}
2402
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002403static int init_rmode(struct kvm *kvm)
2404{
2405 if (!init_rmode_tss(kvm))
2406 return 0;
2407 if (!init_rmode_identity_map(kvm))
2408 return 0;
2409 return 1;
2410}
2411
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002412static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2413{
2414 struct vcpu_vmx *vmx = to_vmx(vcpu);
2415 u64 msr;
2416 int ret;
2417
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002418 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002419 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002420 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002421 ret = -ENOMEM;
2422 goto out;
2423 }
2424
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002425 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002426
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002427 vmx->soft_vnmi_blocked = 0;
2428
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002429 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002430 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002431 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002432 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002433 msr |= MSR_IA32_APICBASE_BSP;
2434 kvm_set_apic_base(&vmx->vcpu, msr);
2435
2436 fx_init(&vmx->vcpu);
2437
Avi Kivity5706be02008-08-20 15:07:31 +03002438 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002439 /*
2440 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2441 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2442 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002443 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002444 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2445 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2446 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002447 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2448 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002449 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002450
2451 seg_setup(VCPU_SREG_DS);
2452 seg_setup(VCPU_SREG_ES);
2453 seg_setup(VCPU_SREG_FS);
2454 seg_setup(VCPU_SREG_GS);
2455 seg_setup(VCPU_SREG_SS);
2456
2457 vmcs_write16(GUEST_TR_SELECTOR, 0);
2458 vmcs_writel(GUEST_TR_BASE, 0);
2459 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2460 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2461
2462 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2463 vmcs_writel(GUEST_LDTR_BASE, 0);
2464 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2465 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2466
2467 vmcs_write32(GUEST_SYSENTER_CS, 0);
2468 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2469 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2470
2471 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002472 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002473 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002474 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002475 kvm_rip_write(vcpu, 0);
2476 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002477
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002478 vmcs_writel(GUEST_DR7, 0x400);
2479
2480 vmcs_writel(GUEST_GDTR_BASE, 0);
2481 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2482
2483 vmcs_writel(GUEST_IDTR_BASE, 0);
2484 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2485
2486 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2487 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2488 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2489
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002490 /* Special registers */
2491 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2492
2493 setup_msrs(vmx);
2494
Avi Kivity6aa8b732006-12-10 02:21:36 -08002495 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2496
Sheng Yangf78e0e22007-10-29 09:40:42 +08002497 if (cpu_has_vmx_tpr_shadow()) {
2498 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2499 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2500 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002501 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002502 vmcs_write32(TPR_THRESHOLD, 0);
2503 }
2504
2505 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2506 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002507 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002508
Sheng Yang2384d2b2008-01-17 15:14:33 +08002509 if (vmx->vpid != 0)
2510 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2511
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002512 vmx->vcpu.arch.cr0 = 0x60000010;
2513 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002514 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002515 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002516 vmx_fpu_activate(&vmx->vcpu);
2517 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002518
Sheng Yang2384d2b2008-01-17 15:14:33 +08002519 vpid_sync_vcpu_all(vmx);
2520
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002521 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002522
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002523 /* HACK: Don't enable emulation on guest boot/reset */
2524 vmx->emulation_required = 0;
2525
Avi Kivity6aa8b732006-12-10 02:21:36 -08002526out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002527 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002528 return ret;
2529}
2530
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002531static void enable_irq_window(struct kvm_vcpu *vcpu)
2532{
2533 u32 cpu_based_vm_exec_control;
2534
2535 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2536 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2537 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2538}
2539
2540static void enable_nmi_window(struct kvm_vcpu *vcpu)
2541{
2542 u32 cpu_based_vm_exec_control;
2543
2544 if (!cpu_has_virtual_nmis()) {
2545 enable_irq_window(vcpu);
2546 return;
2547 }
2548
2549 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2550 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2551 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2552}
2553
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002554static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03002555{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002556 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002557 uint32_t intr;
2558 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02002559
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002560 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002561
Avi Kivityfa89a812008-09-01 15:57:51 +03002562 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002563 if (vmx->rmode.vm86_active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002564 vmx->rmode.irq.pending = true;
2565 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002566 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +03002567 if (vcpu->arch.interrupt.soft)
2568 vmx->rmode.irq.rip +=
2569 vmx->vcpu.arch.event_exit_inst_len;
Avi Kivity9c5623e2007-11-08 18:19:20 +02002570 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2571 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2572 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002573 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002574 return;
2575 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002576 intr = irq | INTR_INFO_VALID_MASK;
2577 if (vcpu->arch.interrupt.soft) {
2578 intr |= INTR_TYPE_SOFT_INTR;
2579 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2580 vmx->vcpu.arch.event_exit_inst_len);
2581 } else
2582 intr |= INTR_TYPE_EXT_INTR;
2583 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03002584}
2585
Sheng Yangf08864b2008-05-15 18:23:25 +08002586static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2587{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002588 struct vcpu_vmx *vmx = to_vmx(vcpu);
2589
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002590 if (!cpu_has_virtual_nmis()) {
2591 /*
2592 * Tracking the NMI-blocked state in software is built upon
2593 * finding the next open IRQ window. This, in turn, depends on
2594 * well-behaving guests: They have to keep IRQs disabled at
2595 * least as long as the NMI handler runs. Otherwise we may
2596 * cause NMI nesting, maybe breaking the guest. But as this is
2597 * highly unlikely, we can live with the residual risk.
2598 */
2599 vmx->soft_vnmi_blocked = 1;
2600 vmx->vnmi_blocked_time = 0;
2601 }
2602
Jan Kiszka487b3912008-09-26 09:30:56 +02002603 ++vcpu->stat.nmi_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002604 if (vmx->rmode.vm86_active) {
Jan Kiszka66a5a342008-09-26 09:30:51 +02002605 vmx->rmode.irq.pending = true;
2606 vmx->rmode.irq.vector = NMI_VECTOR;
2607 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2608 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2609 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2610 INTR_INFO_VALID_MASK);
2611 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2612 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2613 return;
2614 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002615 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2616 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002617}
2618
Gleb Natapovc4282df2009-04-21 17:45:07 +03002619static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02002620{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002621 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03002622 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002623
Gleb Natapovc4282df2009-04-21 17:45:07 +03002624 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2625 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS |
2626 GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02002627}
2628
Gleb Natapov78646122009-03-23 12:12:11 +02002629static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2630{
Gleb Natapovc4282df2009-04-21 17:45:07 +03002631 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2632 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2633 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02002634}
2635
Izik Eiduscbc94022007-10-25 00:29:55 +02002636static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2637{
2638 int ret;
2639 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002640 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002641 .guest_phys_addr = addr,
2642 .memory_size = PAGE_SIZE * 3,
2643 .flags = 0,
2644 };
2645
2646 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2647 if (ret)
2648 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002649 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002650 return 0;
2651}
2652
Avi Kivity6aa8b732006-12-10 02:21:36 -08002653static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2654 int vec, u32 err_code)
2655{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002656 /*
2657 * Instruction with address size override prefix opcode 0x67
2658 * Cause the #SS fault with 0 error code in VM86 mode.
2659 */
2660 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Avi Kivity851ba692009-08-24 11:10:17 +03002661 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002662 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002663 /*
2664 * Forward all other exceptions that are valid in real mode.
2665 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2666 * the required debugging infrastructure rework.
2667 */
2668 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002669 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002670 if (vcpu->guest_debug &
2671 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2672 return 0;
2673 kvm_queue_exception(vcpu, vec);
2674 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002675 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002676 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2677 return 0;
2678 /* fall through */
2679 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002680 case OF_VECTOR:
2681 case BR_VECTOR:
2682 case UD_VECTOR:
2683 case DF_VECTOR:
2684 case SS_VECTOR:
2685 case GP_VECTOR:
2686 case MF_VECTOR:
2687 kvm_queue_exception(vcpu, vec);
2688 return 1;
2689 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002690 return 0;
2691}
2692
Andi Kleena0861c02009-06-08 17:37:09 +08002693/*
2694 * Trigger machine check on the host. We assume all the MSRs are already set up
2695 * by the CPU and that we still run on the same CPU as the MCE occurred on.
2696 * We pass a fake environment to the machine check handler because we want
2697 * the guest to be always treated like user space, no matter what context
2698 * it used internally.
2699 */
2700static void kvm_machine_check(void)
2701{
2702#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
2703 struct pt_regs regs = {
2704 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
2705 .flags = X86_EFLAGS_IF,
2706 };
2707
2708 do_machine_check(&regs, 0);
2709#endif
2710}
2711
Avi Kivity851ba692009-08-24 11:10:17 +03002712static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08002713{
2714 /* already handled by vcpu_run */
2715 return 1;
2716}
2717
Avi Kivity851ba692009-08-24 11:10:17 +03002718static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002719{
Avi Kivity1155f762007-11-22 11:30:47 +02002720 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002721 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002722 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002723 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002724 u32 vect_info;
2725 enum emulation_result er;
2726
Avi Kivity1155f762007-11-22 11:30:47 +02002727 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002728 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2729
Andi Kleena0861c02009-06-08 17:37:09 +08002730 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03002731 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08002732
Avi Kivity6aa8b732006-12-10 02:21:36 -08002733 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04002734 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002735 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002736 "intr info 0x%x\n", __func__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002737
Jan Kiszkae4a41882008-09-26 09:30:46 +02002738 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002739 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002740
2741 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002742 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002743 return 1;
2744 }
2745
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002746 if (is_invalid_opcode(intr_info)) {
Avi Kivity851ba692009-08-24 11:10:17 +03002747 er = emulate_instruction(vcpu, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002748 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002749 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002750 return 1;
2751 }
2752
Avi Kivity6aa8b732006-12-10 02:21:36 -08002753 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002754 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002755 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002756 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2757 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002758 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02002759 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002760 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002761 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002762 trace_kvm_page_fault(cr2, error_code);
2763
Gleb Natapov3298b752009-05-11 13:35:46 +03002764 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03002765 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002766 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002767 }
2768
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002769 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002770 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002771 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002772 if (vcpu->arch.halt_request) {
2773 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002774 return kvm_emulate_halt(vcpu);
2775 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002776 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002777 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002778
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002779 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002780 switch (ex_no) {
2781 case DB_VECTOR:
2782 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2783 if (!(vcpu->guest_debug &
2784 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2785 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2786 kvm_queue_exception(vcpu, DB_VECTOR);
2787 return 1;
2788 }
2789 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2790 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2791 /* fall through */
2792 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002793 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002794 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2795 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002796 break;
2797 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002798 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2799 kvm_run->ex.exception = ex_no;
2800 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002801 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002802 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002803 return 0;
2804}
2805
Avi Kivity851ba692009-08-24 11:10:17 +03002806static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002807{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002808 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002809 return 1;
2810}
2811
Avi Kivity851ba692009-08-24 11:10:17 +03002812static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08002813{
Avi Kivity851ba692009-08-24 11:10:17 +03002814 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08002815 return 0;
2816}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002817
Avi Kivity851ba692009-08-24 11:10:17 +03002818static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002819{
He, Qingbfdaab02007-09-12 14:18:28 +08002820 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002821 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002822 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002823
Avi Kivity1165f5f2007-04-19 17:27:43 +03002824 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002825 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002826 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002827
2828 if (string) {
Avi Kivity851ba692009-08-24 11:10:17 +03002829 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002830 return 0;
2831 return 1;
2832 }
2833
2834 size = (exit_qualification & 7) + 1;
2835 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002836 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002837
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002838 skip_emulated_instruction(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002839 return kvm_emulate_pio(vcpu, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002840}
2841
Ingo Molnar102d8322007-02-19 14:37:47 +02002842static void
2843vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2844{
2845 /*
2846 * Patch in the VMCALL instruction:
2847 */
2848 hypercall[0] = 0x0f;
2849 hypercall[1] = 0x01;
2850 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002851}
2852
Avi Kivity851ba692009-08-24 11:10:17 +03002853static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002854{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002855 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002856 int cr;
2857 int reg;
2858
He, Qingbfdaab02007-09-12 14:18:28 +08002859 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002860 cr = exit_qualification & 15;
2861 reg = (exit_qualification >> 8) & 15;
2862 switch ((exit_qualification >> 4) & 3) {
2863 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002864 val = kvm_register_read(vcpu, reg);
2865 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002866 switch (cr) {
2867 case 0:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002868 kvm_set_cr0(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002869 skip_emulated_instruction(vcpu);
2870 return 1;
2871 case 3:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002872 kvm_set_cr3(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002873 skip_emulated_instruction(vcpu);
2874 return 1;
2875 case 4:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002876 kvm_set_cr4(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002877 skip_emulated_instruction(vcpu);
2878 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002879 case 8: {
2880 u8 cr8_prev = kvm_get_cr8(vcpu);
2881 u8 cr8 = kvm_register_read(vcpu, reg);
2882 kvm_set_cr8(vcpu, cr8);
2883 skip_emulated_instruction(vcpu);
2884 if (irqchip_in_kernel(vcpu->kvm))
2885 return 1;
2886 if (cr8_prev <= cr8)
2887 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03002888 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002889 return 0;
2890 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002891 };
2892 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002893 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002894 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002895 vcpu->arch.cr0 &= ~X86_CR0_TS;
2896 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002897 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002898 skip_emulated_instruction(vcpu);
2899 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002900 case 1: /*mov from cr*/
2901 switch (cr) {
2902 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002903 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002904 trace_kvm_cr_read(cr, vcpu->arch.cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002905 skip_emulated_instruction(vcpu);
2906 return 1;
2907 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002908 val = kvm_get_cr8(vcpu);
2909 kvm_register_write(vcpu, reg, val);
2910 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002911 skip_emulated_instruction(vcpu);
2912 return 1;
2913 }
2914 break;
2915 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002916 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002917
2918 skip_emulated_instruction(vcpu);
2919 return 1;
2920 default:
2921 break;
2922 }
Avi Kivity851ba692009-08-24 11:10:17 +03002923 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002924 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002925 (int)(exit_qualification >> 4) & 3, cr);
2926 return 0;
2927}
2928
Avi Kivity851ba692009-08-24 11:10:17 +03002929static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002930{
He, Qingbfdaab02007-09-12 14:18:28 +08002931 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002932 unsigned long val;
2933 int dr, reg;
2934
Avi Kivity0a79b002009-09-01 12:03:25 +03002935 if (!kvm_require_cpl(vcpu, 0))
2936 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002937 dr = vmcs_readl(GUEST_DR7);
2938 if (dr & DR7_GD) {
2939 /*
2940 * As the vm-exit takes precedence over the debug trap, we
2941 * need to emulate the latter, either for the host or the
2942 * guest debugging itself.
2943 */
2944 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03002945 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
2946 vcpu->run->debug.arch.dr7 = dr;
2947 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002948 vmcs_readl(GUEST_CS_BASE) +
2949 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03002950 vcpu->run->debug.arch.exception = DB_VECTOR;
2951 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002952 return 0;
2953 } else {
2954 vcpu->arch.dr7 &= ~DR7_GD;
2955 vcpu->arch.dr6 |= DR6_BD;
2956 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2957 kvm_queue_exception(vcpu, DB_VECTOR);
2958 return 1;
2959 }
2960 }
2961
He, Qingbfdaab02007-09-12 14:18:28 +08002962 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002963 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
2964 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
2965 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002966 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002967 case 0 ... 3:
2968 val = vcpu->arch.db[dr];
2969 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002970 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002971 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002972 break;
2973 case 7:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002974 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002975 break;
2976 default:
2977 val = 0;
2978 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002979 kvm_register_write(vcpu, reg, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002980 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002981 val = vcpu->arch.regs[reg];
2982 switch (dr) {
2983 case 0 ... 3:
2984 vcpu->arch.db[dr] = val;
2985 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
2986 vcpu->arch.eff_db[dr] = val;
2987 break;
2988 case 4 ... 5:
2989 if (vcpu->arch.cr4 & X86_CR4_DE)
2990 kvm_queue_exception(vcpu, UD_VECTOR);
2991 break;
2992 case 6:
2993 if (val & 0xffffffff00000000ULL) {
2994 kvm_queue_exception(vcpu, GP_VECTOR);
2995 break;
2996 }
2997 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
2998 break;
2999 case 7:
3000 if (val & 0xffffffff00000000ULL) {
3001 kvm_queue_exception(vcpu, GP_VECTOR);
3002 break;
3003 }
3004 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
3005 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
3006 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3007 vcpu->arch.switch_db_regs =
3008 (val & DR7_BP_EN_MASK);
3009 }
3010 break;
3011 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003012 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003013 skip_emulated_instruction(vcpu);
3014 return 1;
3015}
3016
Avi Kivity851ba692009-08-24 11:10:17 +03003017static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003018{
Avi Kivity06465c52007-02-28 20:46:53 +02003019 kvm_emulate_cpuid(vcpu);
3020 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003021}
3022
Avi Kivity851ba692009-08-24 11:10:17 +03003023static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003024{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003025 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08003026 u64 data;
3027
3028 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003029 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003030 return 1;
3031 }
3032
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003033 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003034
Avi Kivity6aa8b732006-12-10 02:21:36 -08003035 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003036 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
3037 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003038 skip_emulated_instruction(vcpu);
3039 return 1;
3040}
3041
Avi Kivity851ba692009-08-24 11:10:17 +03003042static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003043{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003044 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
3045 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
3046 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003047
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003048 trace_kvm_msr_write(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003049
Avi Kivity6aa8b732006-12-10 02:21:36 -08003050 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003051 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003052 return 1;
3053 }
3054
3055 skip_emulated_instruction(vcpu);
3056 return 1;
3057}
3058
Avi Kivity851ba692009-08-24 11:10:17 +03003059static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003060{
3061 return 1;
3062}
3063
Avi Kivity851ba692009-08-24 11:10:17 +03003064static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003065{
Eddie Dong85f455f2007-07-06 12:20:49 +03003066 u32 cpu_based_vm_exec_control;
3067
3068 /* clear pending irq */
3069 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3070 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
3071 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003072
Jan Kiszkaa26bf122008-09-26 09:30:45 +02003073 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003074
Dor Laorc1150d82007-01-05 16:36:24 -08003075 /*
3076 * If the user space waits to inject interrupts, exit as soon as
3077 * possible
3078 */
Gleb Natapov80618232009-04-21 17:44:56 +03003079 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03003080 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03003081 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003082 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08003083 return 0;
3084 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003085 return 1;
3086}
3087
Avi Kivity851ba692009-08-24 11:10:17 +03003088static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003089{
3090 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003091 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003092}
3093
Avi Kivity851ba692009-08-24 11:10:17 +03003094static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02003095{
Dor Laor510043d2007-02-19 18:25:43 +02003096 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003097 kvm_emulate_hypercall(vcpu);
3098 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003099}
3100
Avi Kivity851ba692009-08-24 11:10:17 +03003101static int handle_vmx_insn(struct kvm_vcpu *vcpu)
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003102{
3103 kvm_queue_exception(vcpu, UD_VECTOR);
3104 return 1;
3105}
3106
Avi Kivity851ba692009-08-24 11:10:17 +03003107static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003108{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003109 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003110
3111 kvm_mmu_invlpg(vcpu, exit_qualification);
3112 skip_emulated_instruction(vcpu);
3113 return 1;
3114}
3115
Avi Kivity851ba692009-08-24 11:10:17 +03003116static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02003117{
3118 skip_emulated_instruction(vcpu);
3119 /* TODO: Add support for VT-d/pass-through device */
3120 return 1;
3121}
3122
Avi Kivity851ba692009-08-24 11:10:17 +03003123static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003124{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003125 unsigned long exit_qualification;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003126 enum emulation_result er;
3127 unsigned long offset;
3128
Sheng Yangf9c617f2009-03-25 10:08:52 +08003129 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003130 offset = exit_qualification & 0xffful;
3131
Avi Kivity851ba692009-08-24 11:10:17 +03003132 er = emulate_instruction(vcpu, 0, 0, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003133
3134 if (er != EMULATE_DONE) {
3135 printk(KERN_ERR
3136 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3137 offset);
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003138 return -ENOEXEC;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003139 }
3140 return 1;
3141}
3142
Avi Kivity851ba692009-08-24 11:10:17 +03003143static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02003144{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003145 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003146 unsigned long exit_qualification;
3147 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003148 int reason, type, idt_v;
3149
3150 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
3151 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02003152
3153 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3154
3155 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003156 if (reason == TASK_SWITCH_GATE && idt_v) {
3157 switch (type) {
3158 case INTR_TYPE_NMI_INTR:
3159 vcpu->arch.nmi_injected = false;
3160 if (cpu_has_virtual_nmis())
3161 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3162 GUEST_INTR_STATE_NMI);
3163 break;
3164 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003165 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003166 kvm_clear_interrupt_queue(vcpu);
3167 break;
3168 case INTR_TYPE_HARD_EXCEPTION:
3169 case INTR_TYPE_SOFT_EXCEPTION:
3170 kvm_clear_exception_queue(vcpu);
3171 break;
3172 default:
3173 break;
3174 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02003175 }
Izik Eidus37817f22008-03-24 23:14:53 +02003176 tss_selector = exit_qualification;
3177
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003178 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
3179 type != INTR_TYPE_EXT_INTR &&
3180 type != INTR_TYPE_NMI_INTR))
3181 skip_emulated_instruction(vcpu);
3182
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003183 if (!kvm_task_switch(vcpu, tss_selector, reason))
3184 return 0;
3185
3186 /* clear all local breakpoint enable flags */
3187 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3188
3189 /*
3190 * TODO: What about debug traps on tss switch?
3191 * Are we supposed to inject them and update dr6?
3192 */
3193
3194 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003195}
3196
Avi Kivity851ba692009-08-24 11:10:17 +03003197static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08003198{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003199 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003200 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003201 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003202
Sheng Yangf9c617f2009-03-25 10:08:52 +08003203 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08003204
3205 if (exit_qualification & (1 << 6)) {
3206 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003207 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08003208 }
3209
3210 gla_validity = (exit_qualification >> 7) & 0x3;
3211 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3212 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3213 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3214 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08003215 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08003216 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3217 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03003218 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3219 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03003220 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08003221 }
3222
3223 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003224 trace_kvm_page_fault(gpa, exit_qualification);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003225 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003226}
3227
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003228static u64 ept_rsvd_mask(u64 spte, int level)
3229{
3230 int i;
3231 u64 mask = 0;
3232
3233 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
3234 mask |= (1ULL << i);
3235
3236 if (level > 2)
3237 /* bits 7:3 reserved */
3238 mask |= 0xf8;
3239 else if (level == 2) {
3240 if (spte & (1ULL << 7))
3241 /* 2MB ref, bits 20:12 reserved */
3242 mask |= 0x1ff000;
3243 else
3244 /* bits 6:3 reserved */
3245 mask |= 0x78;
3246 }
3247
3248 return mask;
3249}
3250
3251static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
3252 int level)
3253{
3254 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
3255
3256 /* 010b (write-only) */
3257 WARN_ON((spte & 0x7) == 0x2);
3258
3259 /* 110b (write/execute) */
3260 WARN_ON((spte & 0x7) == 0x6);
3261
3262 /* 100b (execute-only) and value not supported by logical processor */
3263 if (!cpu_has_vmx_ept_execute_only())
3264 WARN_ON((spte & 0x7) == 0x4);
3265
3266 /* not 000b */
3267 if ((spte & 0x7)) {
3268 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
3269
3270 if (rsvd_bits != 0) {
3271 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
3272 __func__, rsvd_bits);
3273 WARN_ON(1);
3274 }
3275
3276 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
3277 u64 ept_mem_type = (spte & 0x38) >> 3;
3278
3279 if (ept_mem_type == 2 || ept_mem_type == 3 ||
3280 ept_mem_type == 7) {
3281 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
3282 __func__, ept_mem_type);
3283 WARN_ON(1);
3284 }
3285 }
3286 }
3287}
3288
Avi Kivity851ba692009-08-24 11:10:17 +03003289static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003290{
3291 u64 sptes[4];
3292 int nr_sptes, i;
3293 gpa_t gpa;
3294
3295 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
3296
3297 printk(KERN_ERR "EPT: Misconfiguration.\n");
3298 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
3299
3300 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
3301
3302 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
3303 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
3304
Avi Kivity851ba692009-08-24 11:10:17 +03003305 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3306 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003307
3308 return 0;
3309}
3310
Avi Kivity851ba692009-08-24 11:10:17 +03003311static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08003312{
3313 u32 cpu_based_vm_exec_control;
3314
3315 /* clear pending NMI */
3316 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3317 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3318 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3319 ++vcpu->stat.nmi_window_exits;
3320
3321 return 1;
3322}
3323
Mohammed Gamal80ced182009-09-01 12:48:18 +02003324static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003325{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003326 struct vcpu_vmx *vmx = to_vmx(vcpu);
3327 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003328 int ret = 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003329
3330 while (!guest_state_valid(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003331 err = emulate_instruction(vcpu, 0, 0, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003332
Mohammed Gamal80ced182009-09-01 12:48:18 +02003333 if (err == EMULATE_DO_MMIO) {
3334 ret = 0;
3335 goto out;
3336 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003337
3338 if (err != EMULATE_DONE) {
3339 kvm_report_emulation_failure(vcpu, "emulation failure");
Mohammed Gamal80ced182009-09-01 12:48:18 +02003340 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3341 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3342 ret = 0;
3343 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003344 }
3345
3346 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02003347 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003348 if (need_resched())
3349 schedule();
3350 }
3351
Mohammed Gamal80ced182009-09-01 12:48:18 +02003352 vmx->emulation_required = 0;
3353out:
3354 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003355}
3356
Avi Kivity6aa8b732006-12-10 02:21:36 -08003357/*
3358 * The exit handlers return 1 if the exit was handled fully and guest execution
3359 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3360 * to be done to userspace and return 0.
3361 */
Avi Kivity851ba692009-08-24 11:10:17 +03003362static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003363 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3364 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003365 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003366 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003367 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003368 [EXIT_REASON_CR_ACCESS] = handle_cr,
3369 [EXIT_REASON_DR_ACCESS] = handle_dr,
3370 [EXIT_REASON_CPUID] = handle_cpuid,
3371 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3372 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3373 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3374 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003375 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003376 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003377 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
3378 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
3379 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
3380 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
3381 [EXIT_REASON_VMREAD] = handle_vmx_insn,
3382 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
3383 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
3384 [EXIT_REASON_VMOFF] = handle_vmx_insn,
3385 [EXIT_REASON_VMON] = handle_vmx_insn,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003386 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3387 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003388 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003389 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08003390 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003391 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
3392 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003393};
3394
3395static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003396 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003397
3398/*
3399 * The guest has exited. See if we can fix it or if we need userspace
3400 * assistance.
3401 */
Avi Kivity851ba692009-08-24 11:10:17 +03003402static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003403{
Avi Kivity29bd8a72007-09-10 17:27:03 +03003404 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003405 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02003406 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003407
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003408 trace_kvm_exit(exit_reason, kvm_rip_read(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003409
Mohammed Gamal80ced182009-09-01 12:48:18 +02003410 /* If guest state is invalid, start emulating */
3411 if (vmx->emulation_required && emulate_invalid_guest_state)
3412 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003413
Sheng Yang14394422008-04-28 12:24:45 +08003414 /* Access CR3 don't cause VMExit in paging mode, so we need
3415 * to sync with guest real CR3. */
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003416 if (enable_ept && is_paging(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003417 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003418
Avi Kivity29bd8a72007-09-10 17:27:03 +03003419 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003420 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3421 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03003422 = vmcs_read32(VM_INSTRUCTION_ERROR);
3423 return 0;
3424 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003425
Mike Dayd77c26f2007-10-08 09:02:08 -04003426 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003427 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003428 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3429 exit_reason != EXIT_REASON_TASK_SWITCH))
3430 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3431 "(0x%x) and exit reason is 0x%x\n",
3432 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003433
3434 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03003435 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003436 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003437 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003438 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003439 /*
3440 * This CPU don't support us in finding the end of an
3441 * NMI-blocked window if the guest runs with IRQs
3442 * disabled. So we pull the trigger after 1 s of
3443 * futile waiting, but inform the user about this.
3444 */
3445 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3446 "state on VCPU %d after 1 s timeout\n",
3447 __func__, vcpu->vcpu_id);
3448 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003449 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003450 }
3451
Avi Kivity6aa8b732006-12-10 02:21:36 -08003452 if (exit_reason < kvm_vmx_max_exit_handlers
3453 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03003454 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003455 else {
Avi Kivity851ba692009-08-24 11:10:17 +03003456 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3457 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003458 }
3459 return 0;
3460}
3461
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003462static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003463{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003464 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003465 vmcs_write32(TPR_THRESHOLD, 0);
3466 return;
3467 }
3468
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003469 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003470}
3471
Avi Kivitycf393f72008-07-01 16:20:21 +03003472static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3473{
3474 u32 exit_intr_info;
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003475 u32 idt_vectoring_info = vmx->idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003476 bool unblock_nmi;
3477 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003478 int type;
3479 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03003480
3481 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Gleb Natapov20f65982009-05-11 13:35:55 +03003482
Andi Kleena0861c02009-06-08 17:37:09 +08003483 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
3484
3485 /* Handle machine checks before interrupts are enabled */
3486 if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
3487 || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
3488 && is_machine_check(exit_intr_info)))
3489 kvm_machine_check();
3490
Gleb Natapov20f65982009-05-11 13:35:55 +03003491 /* We need to handle NMIs before interrupts are enabled */
3492 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003493 (exit_intr_info & INTR_INFO_VALID_MASK))
Gleb Natapov20f65982009-05-11 13:35:55 +03003494 asm("int $2");
Gleb Natapov20f65982009-05-11 13:35:55 +03003495
3496 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3497
Avi Kivitycf393f72008-07-01 16:20:21 +03003498 if (cpu_has_virtual_nmis()) {
3499 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3500 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3501 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003502 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03003503 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3504 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003505 * SDM 3: 23.2.2 (September 2008)
3506 * Bit 12 is undefined in any of the following cases:
3507 * If the VM exit sets the valid bit in the IDT-vectoring
3508 * information field.
3509 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03003510 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003511 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
3512 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03003513 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3514 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003515 } else if (unlikely(vmx->soft_vnmi_blocked))
3516 vmx->vnmi_blocked_time +=
3517 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003518
Gleb Natapov37b96e92009-03-30 16:03:13 +03003519 vmx->vcpu.arch.nmi_injected = false;
3520 kvm_clear_exception_queue(&vmx->vcpu);
3521 kvm_clear_interrupt_queue(&vmx->vcpu);
3522
3523 if (!idtv_info_valid)
3524 return;
3525
Avi Kivity668f6122008-07-02 09:28:55 +03003526 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3527 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003528
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003529 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003530 case INTR_TYPE_NMI_INTR:
3531 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03003532 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003533 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03003534 * Clear bit "block by NMI" before VM entry if a NMI
3535 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03003536 */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003537 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3538 GUEST_INTR_STATE_NMI);
3539 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003540 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003541 vmx->vcpu.arch.event_exit_inst_len =
3542 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3543 /* fall through */
3544 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03003545 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003546 u32 err = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3547 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03003548 } else
3549 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003550 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003551 case INTR_TYPE_SOFT_INTR:
3552 vmx->vcpu.arch.event_exit_inst_len =
3553 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3554 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003555 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003556 kvm_queue_interrupt(&vmx->vcpu, vector,
3557 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003558 break;
3559 default:
3560 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03003561 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003562}
3563
Avi Kivity9c8cba32007-11-22 11:42:59 +02003564/*
3565 * Failure to inject an interrupt should give us the information
3566 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3567 * when fetching the interrupt redirection bitmap in the real-mode
3568 * tss, this doesn't happen. So we do it ourselves.
3569 */
3570static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3571{
3572 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003573 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003574 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003575 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003576 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3577 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3578 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3579 return;
3580 }
3581 vmx->idt_vectoring_info =
3582 VECTORING_INFO_VALID_MASK
3583 | INTR_TYPE_EXT_INTR
3584 | vmx->rmode.irq.vector;
3585}
3586
Avi Kivityc8019492008-07-14 14:44:59 +03003587#ifdef CONFIG_X86_64
3588#define R "r"
3589#define Q "q"
3590#else
3591#define R "e"
3592#define Q "l"
3593#endif
3594
Avi Kivity851ba692009-08-24 11:10:17 +03003595static void vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003596{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003597 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03003598
Avi Kivity8f5d5492009-05-31 18:41:29 +03003599 if (enable_ept && is_paging(vcpu)) {
3600 vmcs_writel(GUEST_CR3, vcpu->arch.cr3);
3601 ept_load_pdptrs(vcpu);
3602 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003603 /* Record the guest's net vcpu time for enforced NMI injections. */
3604 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3605 vmx->entry_time = ktime_get();
3606
Mohammed Gamal80ced182009-09-01 12:48:18 +02003607 /* Don't enter VMX if guest state is invalid, let the exit handler
3608 start emulation until we arrive back to a valid state */
3609 if (vmx->emulation_required && emulate_invalid_guest_state)
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003610 return;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003611
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003612 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3613 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3614 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3615 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3616
Gleb Natapov787ff732009-05-18 11:44:06 +03003617 /* When single-stepping over STI and MOV SS, we must clear the
3618 * corresponding interruptibility bits in the guest state. Otherwise
3619 * vmentry fails as it then expects bit 14 (BS) in pending debug
3620 * exceptions being set, but that's not correct for the guest debugging
3621 * case. */
3622 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3623 vmx_set_interrupt_shadow(vcpu, 0);
3624
Avi Kivitye6adf282007-04-30 16:07:54 +03003625 /*
3626 * Loading guest fpu may have cleared host cr0.ts
3627 */
3628 vmcs_writel(HOST_CR0, read_cr0());
3629
Avi Kivitye8a48342009-09-01 16:06:25 +03003630 if (vcpu->arch.switch_db_regs)
3631 set_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003632
Mike Dayd77c26f2007-10-08 09:02:08 -04003633 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003634 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003635 "push %%"R"dx; push %%"R"bp;"
3636 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003637 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3638 "je 1f \n\t"
3639 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003640 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003641 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03003642 /* Reload cr2 if changed */
3643 "mov %c[cr2](%0), %%"R"ax \n\t"
3644 "mov %%cr2, %%"R"dx \n\t"
3645 "cmp %%"R"ax, %%"R"dx \n\t"
3646 "je 2f \n\t"
3647 "mov %%"R"ax, %%cr2 \n\t"
3648 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003649 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003650 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003651 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003652 "mov %c[rax](%0), %%"R"ax \n\t"
3653 "mov %c[rbx](%0), %%"R"bx \n\t"
3654 "mov %c[rdx](%0), %%"R"dx \n\t"
3655 "mov %c[rsi](%0), %%"R"si \n\t"
3656 "mov %c[rdi](%0), %%"R"di \n\t"
3657 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003658#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003659 "mov %c[r8](%0), %%r8 \n\t"
3660 "mov %c[r9](%0), %%r9 \n\t"
3661 "mov %c[r10](%0), %%r10 \n\t"
3662 "mov %c[r11](%0), %%r11 \n\t"
3663 "mov %c[r12](%0), %%r12 \n\t"
3664 "mov %c[r13](%0), %%r13 \n\t"
3665 "mov %c[r14](%0), %%r14 \n\t"
3666 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003667#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003668 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3669
Avi Kivity6aa8b732006-12-10 02:21:36 -08003670 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003671 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003672 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003673 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003674 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003675 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003676 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003677 "xchg %0, (%%"R"sp) \n\t"
3678 "mov %%"R"ax, %c[rax](%0) \n\t"
3679 "mov %%"R"bx, %c[rbx](%0) \n\t"
3680 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3681 "mov %%"R"dx, %c[rdx](%0) \n\t"
3682 "mov %%"R"si, %c[rsi](%0) \n\t"
3683 "mov %%"R"di, %c[rdi](%0) \n\t"
3684 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003685#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003686 "mov %%r8, %c[r8](%0) \n\t"
3687 "mov %%r9, %c[r9](%0) \n\t"
3688 "mov %%r10, %c[r10](%0) \n\t"
3689 "mov %%r11, %c[r11](%0) \n\t"
3690 "mov %%r12, %c[r12](%0) \n\t"
3691 "mov %%r13, %c[r13](%0) \n\t"
3692 "mov %%r14, %c[r14](%0) \n\t"
3693 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003694#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003695 "mov %%cr2, %%"R"ax \n\t"
3696 "mov %%"R"ax, %c[cr2](%0) \n\t"
3697
3698 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003699 "setbe %c[fail](%0) \n\t"
3700 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3701 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3702 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003703 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003704 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3705 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3706 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3707 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3708 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3709 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3710 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003711#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003712 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3713 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3714 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3715 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3716 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3717 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3718 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3719 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003720#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003721 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003722 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003723 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003724#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003725 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3726#endif
3727 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003728
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003729 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
3730 | (1 << VCPU_EXREG_PDPTR));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003731 vcpu->arch.regs_dirty = 0;
3732
Avi Kivitye8a48342009-09-01 16:06:25 +03003733 if (vcpu->arch.switch_db_regs)
3734 get_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003735
Avi Kivity1155f762007-11-22 11:30:47 +02003736 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003737 if (vmx->rmode.irq.pending)
3738 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003739
Mike Dayd77c26f2007-10-08 09:02:08 -04003740 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003741 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003742
Avi Kivitycf393f72008-07-01 16:20:21 +03003743 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003744}
3745
Avi Kivityc8019492008-07-14 14:44:59 +03003746#undef R
3747#undef Q
3748
Avi Kivity6aa8b732006-12-10 02:21:36 -08003749static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3750{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003751 struct vcpu_vmx *vmx = to_vmx(vcpu);
3752
3753 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003754 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003755 free_vmcs(vmx->vmcs);
3756 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003757 }
3758}
3759
3760static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3761{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003762 struct vcpu_vmx *vmx = to_vmx(vcpu);
3763
Sheng Yang2384d2b2008-01-17 15:14:33 +08003764 spin_lock(&vmx_vpid_lock);
3765 if (vmx->vpid != 0)
3766 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3767 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003768 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003769 kfree(vmx->host_msrs);
3770 kfree(vmx->guest_msrs);
3771 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003772 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003773}
3774
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003775static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003776{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003777 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003778 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003779 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003780
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003781 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003782 return ERR_PTR(-ENOMEM);
3783
Sheng Yang2384d2b2008-01-17 15:14:33 +08003784 allocate_vpid(vmx);
3785
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003786 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3787 if (err)
3788 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003789
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003790 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003791 if (!vmx->guest_msrs) {
3792 err = -ENOMEM;
3793 goto uninit_vcpu;
3794 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003795
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003796 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
3797 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003798 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003799
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003800 vmx->vmcs = alloc_vmcs();
3801 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003802 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003803
3804 vmcs_clear(vmx->vmcs);
3805
Avi Kivity15ad7142007-07-11 18:17:21 +03003806 cpu = get_cpu();
3807 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003808 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003809 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003810 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003811 if (err)
3812 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003813 if (vm_need_virtualize_apic_accesses(kvm))
3814 if (alloc_apic_access_page(kvm) != 0)
3815 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003816
Sheng Yangb927a3c2009-07-21 10:42:48 +08003817 if (enable_ept) {
3818 if (!kvm->arch.ept_identity_map_addr)
3819 kvm->arch.ept_identity_map_addr =
3820 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003821 if (alloc_identity_pagetable(kvm) != 0)
3822 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003823 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003824
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003825 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003826
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003827free_vmcs:
3828 free_vmcs(vmx->vmcs);
3829free_msrs:
3830 kfree(vmx->host_msrs);
3831free_guest_msrs:
3832 kfree(vmx->guest_msrs);
3833uninit_vcpu:
3834 kvm_vcpu_uninit(&vmx->vcpu);
3835free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003836 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003837 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003838}
3839
Yang, Sheng002c7f72007-07-31 14:23:01 +03003840static void __init vmx_check_processor_compat(void *rtn)
3841{
3842 struct vmcs_config vmcs_conf;
3843
3844 *(int *)rtn = 0;
3845 if (setup_vmcs_config(&vmcs_conf) < 0)
3846 *(int *)rtn = -EIO;
3847 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3848 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3849 smp_processor_id());
3850 *(int *)rtn = -EIO;
3851 }
3852}
3853
Sheng Yang67253af2008-04-25 10:20:22 +08003854static int get_ept_level(void)
3855{
3856 return VMX_EPT_DEFAULT_GAW + 1;
3857}
3858
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003859static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08003860{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003861 u64 ret;
3862
Sheng Yang522c68c2009-04-27 20:35:43 +08003863 /* For VT-d and EPT combination
3864 * 1. MMIO: always map as UC
3865 * 2. EPT with VT-d:
3866 * a. VT-d without snooping control feature: can't guarantee the
3867 * result, try to trust guest.
3868 * b. VT-d with snooping control feature: snooping control feature of
3869 * VT-d engine can guarantee the cache correctness. Just set it
3870 * to WB to keep consistent with host. So the same as item 3.
3871 * 3. EPT without VT-d: always map as WB and set IGMT=1 to keep
3872 * consistent with host MTRR
3873 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003874 if (is_mmio)
3875 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08003876 else if (vcpu->kvm->arch.iommu_domain &&
3877 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
3878 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
3879 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003880 else
Sheng Yang522c68c2009-04-27 20:35:43 +08003881 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
3882 | VMX_EPT_IGMT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003883
3884 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08003885}
3886
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003887static const struct trace_print_flags vmx_exit_reasons_str[] = {
3888 { EXIT_REASON_EXCEPTION_NMI, "exception" },
3889 { EXIT_REASON_EXTERNAL_INTERRUPT, "ext_irq" },
3890 { EXIT_REASON_TRIPLE_FAULT, "triple_fault" },
3891 { EXIT_REASON_NMI_WINDOW, "nmi_window" },
3892 { EXIT_REASON_IO_INSTRUCTION, "io_instruction" },
3893 { EXIT_REASON_CR_ACCESS, "cr_access" },
3894 { EXIT_REASON_DR_ACCESS, "dr_access" },
3895 { EXIT_REASON_CPUID, "cpuid" },
3896 { EXIT_REASON_MSR_READ, "rdmsr" },
3897 { EXIT_REASON_MSR_WRITE, "wrmsr" },
3898 { EXIT_REASON_PENDING_INTERRUPT, "interrupt_window" },
3899 { EXIT_REASON_HLT, "halt" },
3900 { EXIT_REASON_INVLPG, "invlpg" },
3901 { EXIT_REASON_VMCALL, "hypercall" },
3902 { EXIT_REASON_TPR_BELOW_THRESHOLD, "tpr_below_thres" },
3903 { EXIT_REASON_APIC_ACCESS, "apic_access" },
3904 { EXIT_REASON_WBINVD, "wbinvd" },
3905 { EXIT_REASON_TASK_SWITCH, "task_switch" },
3906 { EXIT_REASON_EPT_VIOLATION, "ept_violation" },
3907 { -1, NULL }
3908};
3909
Joerg Roedel344f4142009-07-27 16:30:48 +02003910static bool vmx_gb_page_enable(void)
3911{
3912 return false;
3913}
3914
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003915static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003916 .cpu_has_kvm_support = cpu_has_kvm_support,
3917 .disabled_by_bios = vmx_disabled_by_bios,
3918 .hardware_setup = hardware_setup,
3919 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003920 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003921 .hardware_enable = hardware_enable,
3922 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08003923 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003924
3925 .vcpu_create = vmx_create_vcpu,
3926 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003927 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003928
Avi Kivity04d2cc72007-09-10 18:10:54 +03003929 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003930 .vcpu_load = vmx_vcpu_load,
3931 .vcpu_put = vmx_vcpu_put,
3932
3933 .set_guest_debug = set_guest_debug,
3934 .get_msr = vmx_get_msr,
3935 .set_msr = vmx_set_msr,
3936 .get_segment_base = vmx_get_segment_base,
3937 .get_segment = vmx_get_segment,
3938 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003939 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003940 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003941 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003942 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003943 .set_cr3 = vmx_set_cr3,
3944 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003945 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003946 .get_idt = vmx_get_idt,
3947 .set_idt = vmx_set_idt,
3948 .get_gdt = vmx_get_gdt,
3949 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003950 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003951 .get_rflags = vmx_get_rflags,
3952 .set_rflags = vmx_set_rflags,
3953
3954 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003955
Avi Kivity6aa8b732006-12-10 02:21:36 -08003956 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02003957 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003958 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04003959 .set_interrupt_shadow = vmx_set_interrupt_shadow,
3960 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02003961 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03003962 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003963 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02003964 .queue_exception = vmx_queue_exception,
Gleb Natapov78646122009-03-23 12:12:11 +02003965 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003966 .nmi_allowed = vmx_nmi_allowed,
3967 .enable_nmi_window = enable_nmi_window,
3968 .enable_irq_window = enable_irq_window,
3969 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003970
Izik Eiduscbc94022007-10-25 00:29:55 +02003971 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08003972 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003973 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003974
3975 .exit_reasons_str = vmx_exit_reasons_str,
Joerg Roedel344f4142009-07-27 16:30:48 +02003976 .gb_page_enable = vmx_gb_page_enable,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003977};
3978
3979static int __init vmx_init(void)
3980{
He, Qingfdef3ad2007-04-30 09:45:24 +03003981 int r;
3982
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003983 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03003984 if (!vmx_io_bitmap_a)
3985 return -ENOMEM;
3986
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003987 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03003988 if (!vmx_io_bitmap_b) {
3989 r = -ENOMEM;
3990 goto out;
3991 }
3992
Avi Kivity58972972009-02-24 22:26:47 +02003993 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
3994 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08003995 r = -ENOMEM;
3996 goto out1;
3997 }
3998
Avi Kivity58972972009-02-24 22:26:47 +02003999 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
4000 if (!vmx_msr_bitmap_longmode) {
4001 r = -ENOMEM;
4002 goto out2;
4003 }
4004
He, Qingfdef3ad2007-04-30 09:45:24 +03004005 /*
4006 * Allow direct access to the PC debug port (it is often used for I/O
4007 * delays, but the vmexits simply slow things down).
4008 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004009 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
4010 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004011
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004012 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004013
Avi Kivity58972972009-02-24 22:26:47 +02004014 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
4015 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08004016
Sheng Yang2384d2b2008-01-17 15:14:33 +08004017 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
4018
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004019 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004020 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02004021 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08004022
Avi Kivity58972972009-02-24 22:26:47 +02004023 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
4024 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
4025 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
4026 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
4027 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
4028 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03004029
Avi Kivity089d0342009-03-23 18:26:32 +02004030 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004031 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004032 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08004033 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08004034 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004035 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004036 kvm_enable_tdp();
4037 } else
4038 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08004039
Avi Kivityc7addb92007-09-16 18:58:32 +02004040 if (bypass_guest_pf)
4041 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
4042
Sheng Yang14394422008-04-28 12:24:45 +08004043 ept_sync_global();
4044
He, Qingfdef3ad2007-04-30 09:45:24 +03004045 return 0;
4046
Avi Kivity58972972009-02-24 22:26:47 +02004047out3:
4048 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08004049out2:
Avi Kivity58972972009-02-24 22:26:47 +02004050 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03004051out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004052 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03004053out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004054 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004055 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004056}
4057
4058static void __exit vmx_exit(void)
4059{
Avi Kivity58972972009-02-24 22:26:47 +02004060 free_page((unsigned long)vmx_msr_bitmap_legacy);
4061 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004062 free_page((unsigned long)vmx_io_bitmap_b);
4063 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004064
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004065 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004066}
4067
4068module_init(vmx_init)
4069module_exit(vmx_exit)