blob: 70020e505c22ee3e2a97f30a1fdbf944819090c8 [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 Kivity313dbd492008-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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, Sheng1c3d14fe2007-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 Russell707d92fa2007-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 Russell707d92fa2007-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 Russell707d92fa2007-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 Tosatti53f658b32008-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 Tosatti53f658b32008-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 Tosatti53f658b32008-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 Kiszka355be0b2009-10-03 00:31:21 +02001099static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001100{
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001101 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1102 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1103 else
1104 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1105
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001106 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001107}
1108
1109static __init int cpu_has_kvm_support(void)
1110{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001111 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001112}
1113
1114static __init int vmx_disabled_by_bios(void)
1115{
1116 u64 msr;
1117
1118 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001119 return (msr & (FEATURE_CONTROL_LOCKED |
1120 FEATURE_CONTROL_VMXON_ENABLED))
1121 == FEATURE_CONTROL_LOCKED;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001122 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001123}
1124
Alexander Graf10474ae2009-09-15 11:37:46 +02001125static int hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001126{
1127 int cpu = raw_smp_processor_id();
1128 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1129 u64 old;
1130
Alexander Graf10474ae2009-09-15 11:37:46 +02001131 if (read_cr4() & X86_CR4_VMXE)
1132 return -EBUSY;
1133
Avi Kivity543e4242008-05-13 16:22:47 +03001134 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001135 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001136 if ((old & (FEATURE_CONTROL_LOCKED |
1137 FEATURE_CONTROL_VMXON_ENABLED))
1138 != (FEATURE_CONTROL_LOCKED |
1139 FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001140 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001141 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yang9ea542f2008-09-11 15:27:49 +08001142 FEATURE_CONTROL_LOCKED |
1143 FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +10001144 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001145 asm volatile (ASM_VMX_VMXON_RAX
1146 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001147 : "memory", "cc");
Alexander Graf10474ae2009-09-15 11:37:46 +02001148
1149 ept_sync_global();
1150
1151 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001152}
1153
Avi Kivity543e4242008-05-13 16:22:47 +03001154static void vmclear_local_vcpus(void)
1155{
1156 int cpu = raw_smp_processor_id();
1157 struct vcpu_vmx *vmx, *n;
1158
1159 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1160 local_vcpus_link)
1161 __vcpu_clear(vmx);
1162}
1163
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001164
1165/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1166 * tricks.
1167 */
1168static void kvm_cpu_vmxoff(void)
1169{
1170 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
1171 write_cr4(read_cr4() & ~X86_CR4_VMXE);
1172}
1173
Avi Kivity6aa8b732006-12-10 02:21:36 -08001174static void hardware_disable(void *garbage)
1175{
Avi Kivity543e4242008-05-13 16:22:47 +03001176 vmclear_local_vcpus();
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001177 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001178}
1179
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001180static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001181 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001182{
1183 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001184 u32 ctl = ctl_min | ctl_opt;
1185
1186 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1187
1188 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1189 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1190
1191 /* Ensure minimum (required) set of control bits are supported. */
1192 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001193 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001194
1195 *result = ctl;
1196 return 0;
1197}
1198
Yang, Sheng002c7f72007-07-31 14:23:01 +03001199static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001200{
1201 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001202 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001203 u32 _pin_based_exec_control = 0;
1204 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001205 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001206 u32 _vmexit_control = 0;
1207 u32 _vmentry_control = 0;
1208
1209 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001210 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001211 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1212 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001213 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001214
1215 min = CPU_BASED_HLT_EXITING |
1216#ifdef CONFIG_X86_64
1217 CPU_BASED_CR8_LOAD_EXITING |
1218 CPU_BASED_CR8_STORE_EXITING |
1219#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001220 CPU_BASED_CR3_LOAD_EXITING |
1221 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001222 CPU_BASED_USE_IO_BITMAPS |
1223 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001224 CPU_BASED_USE_TSC_OFFSETING |
1225 CPU_BASED_INVLPG_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001226 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001227 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001228 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001229 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1230 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001231 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001232#ifdef CONFIG_X86_64
1233 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1234 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1235 ~CPU_BASED_CR8_STORE_EXITING;
1236#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001237 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001238 min2 = 0;
1239 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001240 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001241 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001242 SECONDARY_EXEC_ENABLE_EPT |
1243 SECONDARY_EXEC_UNRESTRICTED_GUEST;
Sheng Yangd56f5462008-04-25 10:13:16 +08001244 if (adjust_vmx_controls(min2, opt2,
1245 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001246 &_cpu_based_2nd_exec_control) < 0)
1247 return -EIO;
1248 }
1249#ifndef CONFIG_X86_64
1250 if (!(_cpu_based_2nd_exec_control &
1251 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1252 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1253#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001254 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03001255 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
1256 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03001257 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
1258 CPU_BASED_CR3_STORE_EXITING |
1259 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001260 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1261 vmx_capability.ept, vmx_capability.vpid);
1262 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001263
1264 min = 0;
1265#ifdef CONFIG_X86_64
1266 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1267#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001268 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001269 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1270 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001271 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001272
Sheng Yang468d4722008-10-09 16:01:55 +08001273 min = 0;
1274 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001275 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1276 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001277 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001278
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001279 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001280
1281 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1282 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001283 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001284
1285#ifdef CONFIG_X86_64
1286 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1287 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001288 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001289#endif
1290
1291 /* Require Write-Back (WB) memory type for VMCS accesses. */
1292 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001293 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001294
Yang, Sheng002c7f72007-07-31 14:23:01 +03001295 vmcs_conf->size = vmx_msr_high & 0x1fff;
1296 vmcs_conf->order = get_order(vmcs_config.size);
1297 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001298
Yang, Sheng002c7f72007-07-31 14:23:01 +03001299 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1300 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001301 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001302 vmcs_conf->vmexit_ctrl = _vmexit_control;
1303 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001304
1305 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001306}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001307
1308static struct vmcs *alloc_vmcs_cpu(int cpu)
1309{
1310 int node = cpu_to_node(cpu);
1311 struct page *pages;
1312 struct vmcs *vmcs;
1313
Mel Gorman6484eb32009-06-16 15:31:54 -07001314 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001315 if (!pages)
1316 return NULL;
1317 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001318 memset(vmcs, 0, vmcs_config.size);
1319 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001320 return vmcs;
1321}
1322
1323static struct vmcs *alloc_vmcs(void)
1324{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001325 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001326}
1327
1328static void free_vmcs(struct vmcs *vmcs)
1329{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001330 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001331}
1332
Sam Ravnborg39959582007-06-01 00:47:13 -07001333static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001334{
1335 int cpu;
1336
Zachary Amsden3230bb42009-09-29 11:38:37 -10001337 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001338 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10001339 per_cpu(vmxarea, cpu) = NULL;
1340 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001341}
1342
Avi Kivity6aa8b732006-12-10 02:21:36 -08001343static __init int alloc_kvm_area(void)
1344{
1345 int cpu;
1346
Zachary Amsden3230bb42009-09-29 11:38:37 -10001347 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001348 struct vmcs *vmcs;
1349
1350 vmcs = alloc_vmcs_cpu(cpu);
1351 if (!vmcs) {
1352 free_kvm_area();
1353 return -ENOMEM;
1354 }
1355
1356 per_cpu(vmxarea, cpu) = vmcs;
1357 }
1358 return 0;
1359}
1360
1361static __init int hardware_setup(void)
1362{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001363 if (setup_vmcs_config(&vmcs_config) < 0)
1364 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001365
1366 if (boot_cpu_has(X86_FEATURE_NX))
1367 kvm_enable_efer_bits(EFER_NX);
1368
Sheng Yang93ba03c2009-04-01 15:52:32 +08001369 if (!cpu_has_vmx_vpid())
1370 enable_vpid = 0;
1371
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001372 if (!cpu_has_vmx_ept()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08001373 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001374 enable_unrestricted_guest = 0;
1375 }
1376
1377 if (!cpu_has_vmx_unrestricted_guest())
1378 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08001379
1380 if (!cpu_has_vmx_flexpriority())
1381 flexpriority_enabled = 0;
1382
Gleb Natapov95ba8273132009-04-21 17:45:08 +03001383 if (!cpu_has_vmx_tpr_shadow())
1384 kvm_x86_ops->update_cr8_intercept = NULL;
1385
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001386 if (enable_ept && !cpu_has_vmx_ept_2m_page())
1387 kvm_disable_largepages();
1388
Avi Kivity6aa8b732006-12-10 02:21:36 -08001389 return alloc_kvm_area();
1390}
1391
1392static __exit void hardware_unsetup(void)
1393{
1394 free_kvm_area();
1395}
1396
Avi Kivity6aa8b732006-12-10 02:21:36 -08001397static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1398{
1399 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1400
Avi Kivity6af11b92007-03-19 13:18:10 +02001401 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001402 vmcs_write16(sf->selector, save->selector);
1403 vmcs_writel(sf->base, save->base);
1404 vmcs_write32(sf->limit, save->limit);
1405 vmcs_write32(sf->ar_bytes, save->ar);
1406 } else {
1407 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1408 << AR_DPL_SHIFT;
1409 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1410 }
1411}
1412
1413static void enter_pmode(struct kvm_vcpu *vcpu)
1414{
1415 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001416 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001417
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001418 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001419 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001420
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001421 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
1422 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
1423 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001424
1425 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001426 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001427 flags |= (vmx->rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001428 vmcs_writel(GUEST_RFLAGS, flags);
1429
Rusty Russell66aee912007-07-17 23:34:16 +10001430 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1431 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001432
1433 update_exception_bitmap(vcpu);
1434
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001435 if (emulate_invalid_guest_state)
1436 return;
1437
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001438 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
1439 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
1440 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
1441 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001442
1443 vmcs_write16(GUEST_SS_SELECTOR, 0);
1444 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1445
1446 vmcs_write16(GUEST_CS_SELECTOR,
1447 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1448 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1449}
1450
Mike Dayd77c26f2007-10-08 09:02:08 -04001451static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001452{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001453 if (!kvm->arch.tss_addr) {
Izik Eiduscbc94022007-10-25 00:29:55 +02001454 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1455 kvm->memslots[0].npages - 3;
1456 return base_gfn << PAGE_SHIFT;
1457 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001458 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001459}
1460
1461static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1462{
1463 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1464
1465 save->selector = vmcs_read16(sf->selector);
1466 save->base = vmcs_readl(sf->base);
1467 save->limit = vmcs_read32(sf->limit);
1468 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001469 vmcs_write16(sf->selector, save->base >> 4);
1470 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001471 vmcs_write32(sf->limit, 0xffff);
1472 vmcs_write32(sf->ar_bytes, 0xf3);
1473}
1474
1475static void enter_rmode(struct kvm_vcpu *vcpu)
1476{
1477 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001478 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001479
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001480 if (enable_unrestricted_guest)
1481 return;
1482
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001483 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001484 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001485
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001486 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001487 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1488
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001489 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001490 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1491
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001492 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001493 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1494
1495 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001496 vmx->rmode.save_iopl
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001497 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001498
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001499 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001500
1501 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001502 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001503 update_exception_bitmap(vcpu);
1504
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001505 if (emulate_invalid_guest_state)
1506 goto continue_rmode;
1507
Avi Kivity6aa8b732006-12-10 02:21:36 -08001508 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1509 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1510 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1511
1512 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001513 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001514 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1515 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001516 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1517
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001518 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
1519 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
1520 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
1521 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001522
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001523continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08001524 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001525 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001526}
1527
Amit Shah401d10d2009-02-20 22:53:37 +05301528static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1529{
1530 struct vcpu_vmx *vmx = to_vmx(vcpu);
1531 struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
1532
1533 vcpu->arch.shadow_efer = efer;
1534 if (!msr)
1535 return;
1536 if (efer & EFER_LMA) {
1537 vmcs_write32(VM_ENTRY_CONTROLS,
1538 vmcs_read32(VM_ENTRY_CONTROLS) |
1539 VM_ENTRY_IA32E_MODE);
1540 msr->data = efer;
1541 } else {
1542 vmcs_write32(VM_ENTRY_CONTROLS,
1543 vmcs_read32(VM_ENTRY_CONTROLS) &
1544 ~VM_ENTRY_IA32E_MODE);
1545
1546 msr->data = efer & ~EFER_LME;
1547 }
1548 setup_msrs(vmx);
1549}
1550
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001551#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001552
1553static void enter_lmode(struct kvm_vcpu *vcpu)
1554{
1555 u32 guest_tr_ar;
1556
1557 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1558 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1559 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001560 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001561 vmcs_write32(GUEST_TR_AR_BYTES,
1562 (guest_tr_ar & ~AR_TYPE_MASK)
1563 | AR_TYPE_BUSY_64_TSS);
1564 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001565 vcpu->arch.shadow_efer |= EFER_LMA;
Amit Shah401d10d2009-02-20 22:53:37 +05301566 vmx_set_efer(vcpu, vcpu->arch.shadow_efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001567}
1568
1569static void exit_lmode(struct kvm_vcpu *vcpu)
1570{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001571 vcpu->arch.shadow_efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001572
1573 vmcs_write32(VM_ENTRY_CONTROLS,
1574 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001575 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001576}
1577
1578#endif
1579
Sheng Yang2384d2b2008-01-17 15:14:33 +08001580static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1581{
1582 vpid_sync_vcpu_all(to_vmx(vcpu));
Avi Kivity089d0342009-03-23 18:26:32 +02001583 if (enable_ept)
Sheng Yang4e1096d2008-07-06 19:16:51 +08001584 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001585}
1586
Anthony Liguori25c4c272007-04-27 09:29:21 +03001587static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001588{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001589 vcpu->arch.cr4 &= KVM_GUEST_CR4_MASK;
1590 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
Avi Kivity399badf2007-01-05 16:36:38 -08001591}
1592
Sheng Yang14394422008-04-28 12:24:45 +08001593static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1594{
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001595 if (!test_bit(VCPU_EXREG_PDPTR,
1596 (unsigned long *)&vcpu->arch.regs_dirty))
1597 return;
1598
Sheng Yang14394422008-04-28 12:24:45 +08001599 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Sheng Yang14394422008-04-28 12:24:45 +08001600 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1601 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1602 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1603 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1604 }
1605}
1606
Avi Kivity8f5d5492009-05-31 18:41:29 +03001607static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
1608{
1609 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1610 vcpu->arch.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
1611 vcpu->arch.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
1612 vcpu->arch.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
1613 vcpu->arch.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
1614 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001615
1616 __set_bit(VCPU_EXREG_PDPTR,
1617 (unsigned long *)&vcpu->arch.regs_avail);
1618 __set_bit(VCPU_EXREG_PDPTR,
1619 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03001620}
1621
Sheng Yang14394422008-04-28 12:24:45 +08001622static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1623
1624static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1625 unsigned long cr0,
1626 struct kvm_vcpu *vcpu)
1627{
1628 if (!(cr0 & X86_CR0_PG)) {
1629 /* From paging/starting to nonpaging */
1630 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001631 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001632 (CPU_BASED_CR3_LOAD_EXITING |
1633 CPU_BASED_CR3_STORE_EXITING));
1634 vcpu->arch.cr0 = cr0;
1635 vmx_set_cr4(vcpu, vcpu->arch.cr4);
Sheng Yang14394422008-04-28 12:24:45 +08001636 } else if (!is_paging(vcpu)) {
1637 /* From nonpaging to paging */
1638 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001639 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001640 ~(CPU_BASED_CR3_LOAD_EXITING |
1641 CPU_BASED_CR3_STORE_EXITING));
1642 vcpu->arch.cr0 = cr0;
1643 vmx_set_cr4(vcpu, vcpu->arch.cr4);
Sheng Yang14394422008-04-28 12:24:45 +08001644 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08001645
1646 if (!(cr0 & X86_CR0_WP))
1647 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08001648}
1649
1650static void ept_update_paging_mode_cr4(unsigned long *hw_cr4,
1651 struct kvm_vcpu *vcpu)
1652{
1653 if (!is_paging(vcpu)) {
1654 *hw_cr4 &= ~X86_CR4_PAE;
1655 *hw_cr4 |= X86_CR4_PSE;
1656 } else if (!(vcpu->arch.cr4 & X86_CR4_PAE))
1657 *hw_cr4 &= ~X86_CR4_PAE;
1658}
1659
Avi Kivity6aa8b732006-12-10 02:21:36 -08001660static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1661{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001662 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001663 unsigned long hw_cr0;
1664
1665 if (enable_unrestricted_guest)
1666 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
1667 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
1668 else
1669 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08001670
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001671 vmx_fpu_deactivate(vcpu);
1672
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001673 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001674 enter_pmode(vcpu);
1675
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001676 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001677 enter_rmode(vcpu);
1678
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001679#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001680 if (vcpu->arch.shadow_efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001681 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001682 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10001683 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001684 exit_lmode(vcpu);
1685 }
1686#endif
1687
Avi Kivity089d0342009-03-23 18:26:32 +02001688 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001689 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1690
Avi Kivity6aa8b732006-12-10 02:21:36 -08001691 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001692 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001693 vcpu->arch.cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001694
Rusty Russell707d92fa2007-07-17 23:19:08 +10001695 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001696 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001697}
1698
Sheng Yang14394422008-04-28 12:24:45 +08001699static u64 construct_eptp(unsigned long root_hpa)
1700{
1701 u64 eptp;
1702
1703 /* TODO write the value reading from MSR */
1704 eptp = VMX_EPT_DEFAULT_MT |
1705 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1706 eptp |= (root_hpa & PAGE_MASK);
1707
1708 return eptp;
1709}
1710
Avi Kivity6aa8b732006-12-10 02:21:36 -08001711static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1712{
Sheng Yang14394422008-04-28 12:24:45 +08001713 unsigned long guest_cr3;
1714 u64 eptp;
1715
1716 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02001717 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001718 eptp = construct_eptp(cr3);
1719 vmcs_write64(EPT_POINTER, eptp);
Sheng Yang14394422008-04-28 12:24:45 +08001720 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
Sheng Yangb927a3c2009-07-21 10:42:48 +08001721 vcpu->kvm->arch.ept_identity_map_addr;
Sheng Yang14394422008-04-28 12:24:45 +08001722 }
1723
Sheng Yang2384d2b2008-01-17 15:14:33 +08001724 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001725 vmcs_writel(GUEST_CR3, guest_cr3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001726 if (vcpu->arch.cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001727 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001728}
1729
1730static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1731{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001732 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08001733 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1734
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001735 vcpu->arch.cr4 = cr4;
Avi Kivity089d0342009-03-23 18:26:32 +02001736 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001737 ept_update_paging_mode_cr4(&hw_cr4, vcpu);
1738
1739 vmcs_writel(CR4_READ_SHADOW, cr4);
1740 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001741}
1742
Avi Kivity6aa8b732006-12-10 02:21:36 -08001743static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1744{
1745 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1746
1747 return vmcs_readl(sf->base);
1748}
1749
1750static void vmx_get_segment(struct kvm_vcpu *vcpu,
1751 struct kvm_segment *var, int seg)
1752{
1753 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1754 u32 ar;
1755
1756 var->base = vmcs_readl(sf->base);
1757 var->limit = vmcs_read32(sf->limit);
1758 var->selector = vmcs_read16(sf->selector);
1759 ar = vmcs_read32(sf->ar_bytes);
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02001760 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001761 ar = 0;
1762 var->type = ar & 15;
1763 var->s = (ar >> 4) & 1;
1764 var->dpl = (ar >> 5) & 3;
1765 var->present = (ar >> 7) & 1;
1766 var->avl = (ar >> 12) & 1;
1767 var->l = (ar >> 13) & 1;
1768 var->db = (ar >> 14) & 1;
1769 var->g = (ar >> 15) & 1;
1770 var->unusable = (ar >> 16) & 1;
1771}
1772
Izik Eidus2e4d2652008-03-24 19:38:34 +02001773static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1774{
Izik Eidus2e4d2652008-03-24 19:38:34 +02001775 if (!(vcpu->arch.cr0 & X86_CR0_PE)) /* if real mode */
1776 return 0;
1777
1778 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1779 return 3;
1780
Avi Kivityeab4b8a2009-08-04 15:02:54 +03001781 return vmcs_read16(GUEST_CS_SELECTOR) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02001782}
1783
Avi Kivity653e3102007-05-07 10:55:37 +03001784static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001785{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001786 u32 ar;
1787
Avi Kivity653e3102007-05-07 10:55:37 +03001788 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001789 ar = 1 << 16;
1790 else {
1791 ar = var->type & 15;
1792 ar |= (var->s & 1) << 4;
1793 ar |= (var->dpl & 3) << 5;
1794 ar |= (var->present & 1) << 7;
1795 ar |= (var->avl & 1) << 12;
1796 ar |= (var->l & 1) << 13;
1797 ar |= (var->db & 1) << 14;
1798 ar |= (var->g & 1) << 15;
1799 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001800 if (ar == 0) /* a 0 value means unusable */
1801 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001802
1803 return ar;
1804}
1805
1806static void vmx_set_segment(struct kvm_vcpu *vcpu,
1807 struct kvm_segment *var, int seg)
1808{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001809 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03001810 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1811 u32 ar;
1812
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001813 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
1814 vmx->rmode.tr.selector = var->selector;
1815 vmx->rmode.tr.base = var->base;
1816 vmx->rmode.tr.limit = var->limit;
1817 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001818 return;
1819 }
1820 vmcs_writel(sf->base, var->base);
1821 vmcs_write32(sf->limit, var->limit);
1822 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001823 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001824 /*
1825 * Hack real-mode segments into vm86 compatibility.
1826 */
1827 if (var->base == 0xffff0000 && var->selector == 0xf000)
1828 vmcs_writel(sf->base, 0xf0000);
1829 ar = 0xf3;
1830 } else
1831 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001832
1833 /*
1834 * Fix the "Accessed" bit in AR field of segment registers for older
1835 * qemu binaries.
1836 * IA32 arch specifies that at the time of processor reset the
1837 * "Accessed" bit in the AR field of segment registers is 1. And qemu
1838 * is setting it to 0 in the usedland code. This causes invalid guest
1839 * state vmexit when "unrestricted guest" mode is turned on.
1840 * Fix for this setup issue in cpu_reset is being pushed in the qemu
1841 * tree. Newer qemu binaries with that qemu fix would not need this
1842 * kvm hack.
1843 */
1844 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
1845 ar |= 0x1; /* Accessed */
1846
Avi Kivity6aa8b732006-12-10 02:21:36 -08001847 vmcs_write32(sf->ar_bytes, ar);
1848}
1849
Avi Kivity6aa8b732006-12-10 02:21:36 -08001850static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1851{
1852 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1853
1854 *db = (ar >> 14) & 1;
1855 *l = (ar >> 13) & 1;
1856}
1857
1858static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1859{
1860 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1861 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1862}
1863
1864static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1865{
1866 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1867 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1868}
1869
1870static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1871{
1872 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1873 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1874}
1875
1876static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1877{
1878 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1879 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1880}
1881
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001882static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1883{
1884 struct kvm_segment var;
1885 u32 ar;
1886
1887 vmx_get_segment(vcpu, &var, seg);
1888 ar = vmx_segment_access_rights(&var);
1889
1890 if (var.base != (var.selector << 4))
1891 return false;
1892 if (var.limit != 0xffff)
1893 return false;
1894 if (ar != 0xf3)
1895 return false;
1896
1897 return true;
1898}
1899
1900static bool code_segment_valid(struct kvm_vcpu *vcpu)
1901{
1902 struct kvm_segment cs;
1903 unsigned int cs_rpl;
1904
1905 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1906 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1907
Avi Kivity1872a3f2009-01-04 23:26:52 +02001908 if (cs.unusable)
1909 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001910 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1911 return false;
1912 if (!cs.s)
1913 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001914 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001915 if (cs.dpl > cs_rpl)
1916 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001917 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001918 if (cs.dpl != cs_rpl)
1919 return false;
1920 }
1921 if (!cs.present)
1922 return false;
1923
1924 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
1925 return true;
1926}
1927
1928static bool stack_segment_valid(struct kvm_vcpu *vcpu)
1929{
1930 struct kvm_segment ss;
1931 unsigned int ss_rpl;
1932
1933 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1934 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
1935
Avi Kivity1872a3f2009-01-04 23:26:52 +02001936 if (ss.unusable)
1937 return true;
1938 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001939 return false;
1940 if (!ss.s)
1941 return false;
1942 if (ss.dpl != ss_rpl) /* DPL != RPL */
1943 return false;
1944 if (!ss.present)
1945 return false;
1946
1947 return true;
1948}
1949
1950static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
1951{
1952 struct kvm_segment var;
1953 unsigned int rpl;
1954
1955 vmx_get_segment(vcpu, &var, seg);
1956 rpl = var.selector & SELECTOR_RPL_MASK;
1957
Avi Kivity1872a3f2009-01-04 23:26:52 +02001958 if (var.unusable)
1959 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001960 if (!var.s)
1961 return false;
1962 if (!var.present)
1963 return false;
1964 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
1965 if (var.dpl < rpl) /* DPL < RPL */
1966 return false;
1967 }
1968
1969 /* TODO: Add other members to kvm_segment_field to allow checking for other access
1970 * rights flags
1971 */
1972 return true;
1973}
1974
1975static bool tr_valid(struct kvm_vcpu *vcpu)
1976{
1977 struct kvm_segment tr;
1978
1979 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
1980
Avi Kivity1872a3f2009-01-04 23:26:52 +02001981 if (tr.unusable)
1982 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001983 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
1984 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001985 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001986 return false;
1987 if (!tr.present)
1988 return false;
1989
1990 return true;
1991}
1992
1993static bool ldtr_valid(struct kvm_vcpu *vcpu)
1994{
1995 struct kvm_segment ldtr;
1996
1997 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
1998
Avi Kivity1872a3f2009-01-04 23:26:52 +02001999 if (ldtr.unusable)
2000 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002001 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2002 return false;
2003 if (ldtr.type != 2)
2004 return false;
2005 if (!ldtr.present)
2006 return false;
2007
2008 return true;
2009}
2010
2011static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
2012{
2013 struct kvm_segment cs, ss;
2014
2015 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
2016 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2017
2018 return ((cs.selector & SELECTOR_RPL_MASK) ==
2019 (ss.selector & SELECTOR_RPL_MASK));
2020}
2021
2022/*
2023 * Check if guest state is valid. Returns true if valid, false if
2024 * not.
2025 * We assume that registers are always usable
2026 */
2027static bool guest_state_valid(struct kvm_vcpu *vcpu)
2028{
2029 /* real mode guest state checks */
2030 if (!(vcpu->arch.cr0 & X86_CR0_PE)) {
2031 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
2032 return false;
2033 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
2034 return false;
2035 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
2036 return false;
2037 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
2038 return false;
2039 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
2040 return false;
2041 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
2042 return false;
2043 } else {
2044 /* protected mode guest state checks */
2045 if (!cs_ss_rpl_check(vcpu))
2046 return false;
2047 if (!code_segment_valid(vcpu))
2048 return false;
2049 if (!stack_segment_valid(vcpu))
2050 return false;
2051 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
2052 return false;
2053 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
2054 return false;
2055 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
2056 return false;
2057 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
2058 return false;
2059 if (!tr_valid(vcpu))
2060 return false;
2061 if (!ldtr_valid(vcpu))
2062 return false;
2063 }
2064 /* TODO:
2065 * - Add checks on RIP
2066 * - Add checks on RFLAGS
2067 */
2068
2069 return true;
2070}
2071
Mike Dayd77c26f2007-10-08 09:02:08 -04002072static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002073{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002074 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02002075 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002076 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02002077 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002078
Izik Eidus195aefd2007-10-01 22:14:18 +02002079 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2080 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002081 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002082 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08002083 r = kvm_write_guest_page(kvm, fn++, &data,
2084 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02002085 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002086 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002087 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
2088 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002089 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002090 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2091 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002092 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002093 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002094 r = kvm_write_guest_page(kvm, fn, &data,
2095 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
2096 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02002097 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002098 goto out;
2099
2100 ret = 1;
2101out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002102 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002103}
2104
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002105static int init_rmode_identity_map(struct kvm *kvm)
2106{
2107 int i, r, ret;
2108 pfn_t identity_map_pfn;
2109 u32 tmp;
2110
Avi Kivity089d0342009-03-23 18:26:32 +02002111 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002112 return 1;
2113 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
2114 printk(KERN_ERR "EPT: identity-mapping pagetable "
2115 "haven't been allocated!\n");
2116 return 0;
2117 }
2118 if (likely(kvm->arch.ept_identity_pagetable_done))
2119 return 1;
2120 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002121 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002122 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
2123 if (r < 0)
2124 goto out;
2125 /* Set up identity-mapping pagetable for EPT in real mode */
2126 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2127 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2128 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2129 r = kvm_write_guest_page(kvm, identity_map_pfn,
2130 &tmp, i * sizeof(tmp), sizeof(tmp));
2131 if (r < 0)
2132 goto out;
2133 }
2134 kvm->arch.ept_identity_pagetable_done = true;
2135 ret = 1;
2136out:
2137 return ret;
2138}
2139
Avi Kivity6aa8b732006-12-10 02:21:36 -08002140static void seg_setup(int seg)
2141{
2142 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002143 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002144
2145 vmcs_write16(sf->selector, 0);
2146 vmcs_writel(sf->base, 0);
2147 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002148 if (enable_unrestricted_guest) {
2149 ar = 0x93;
2150 if (seg == VCPU_SREG_CS)
2151 ar |= 0x08; /* code segment */
2152 } else
2153 ar = 0xf3;
2154
2155 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002156}
2157
Sheng Yangf78e0e22007-10-29 09:40:42 +08002158static int alloc_apic_access_page(struct kvm *kvm)
2159{
2160 struct kvm_userspace_memory_region kvm_userspace_mem;
2161 int r = 0;
2162
Izik Eidus72dc67a2008-02-10 18:04:15 +02002163 down_write(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002164 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08002165 goto out;
2166 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
2167 kvm_userspace_mem.flags = 0;
2168 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
2169 kvm_userspace_mem.memory_size = PAGE_SIZE;
2170 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2171 if (r)
2172 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002173
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002174 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002175out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02002176 up_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002177 return r;
2178}
2179
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002180static int alloc_identity_pagetable(struct kvm *kvm)
2181{
2182 struct kvm_userspace_memory_region kvm_userspace_mem;
2183 int r = 0;
2184
2185 down_write(&kvm->slots_lock);
2186 if (kvm->arch.ept_identity_pagetable)
2187 goto out;
2188 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2189 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002190 kvm_userspace_mem.guest_phys_addr =
2191 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002192 kvm_userspace_mem.memory_size = PAGE_SIZE;
2193 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2194 if (r)
2195 goto out;
2196
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002197 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08002198 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002199out:
2200 up_write(&kvm->slots_lock);
2201 return r;
2202}
2203
Sheng Yang2384d2b2008-01-17 15:14:33 +08002204static void allocate_vpid(struct vcpu_vmx *vmx)
2205{
2206 int vpid;
2207
2208 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02002209 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002210 return;
2211 spin_lock(&vmx_vpid_lock);
2212 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2213 if (vpid < VMX_NR_VPIDS) {
2214 vmx->vpid = vpid;
2215 __set_bit(vpid, vmx_vpid_bitmap);
2216 }
2217 spin_unlock(&vmx_vpid_lock);
2218}
2219
Avi Kivity58972972009-02-24 22:26:47 +02002220static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002221{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002222 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08002223
2224 if (!cpu_has_vmx_msr_bitmap())
2225 return;
2226
2227 /*
2228 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2229 * have the write-low and read-high bitmap offsets the wrong way round.
2230 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2231 */
Sheng Yang25c5f222008-03-28 13:18:56 +08002232 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002233 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
2234 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08002235 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2236 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002237 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
2238 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08002239 }
Sheng Yang25c5f222008-03-28 13:18:56 +08002240}
2241
Avi Kivity58972972009-02-24 22:26:47 +02002242static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
2243{
2244 if (!longmode_only)
2245 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
2246 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
2247}
2248
Avi Kivity6aa8b732006-12-10 02:21:36 -08002249/*
2250 * Sets up the vmcs for emulated real mode.
2251 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002252static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002253{
Sheng Yang468d4722008-10-09 16:01:55 +08002254 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002255 u32 junk;
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01002256 u64 host_pat, tsc_this, tsc_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002257 unsigned long a;
2258 struct descriptor_table dt;
2259 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002260 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002261 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002262
Avi Kivity6aa8b732006-12-10 02:21:36 -08002263 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002264 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
2265 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002266
Sheng Yang25c5f222008-03-28 13:18:56 +08002267 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02002268 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08002269
Avi Kivity6aa8b732006-12-10 02:21:36 -08002270 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2271
Avi Kivity6aa8b732006-12-10 02:21:36 -08002272 /* Control */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002273 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2274 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002275
2276 exec_control = vmcs_config.cpu_based_exec_ctrl;
2277 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2278 exec_control &= ~CPU_BASED_TPR_SHADOW;
2279#ifdef CONFIG_X86_64
2280 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2281 CPU_BASED_CR8_LOAD_EXITING;
2282#endif
2283 }
Avi Kivity089d0342009-03-23 18:26:32 +02002284 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002285 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03002286 CPU_BASED_CR3_LOAD_EXITING |
2287 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002288 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002289
Sheng Yang83ff3b92007-11-21 14:33:25 +08002290 if (cpu_has_secondary_exec_ctrls()) {
2291 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2292 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2293 exec_control &=
2294 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002295 if (vmx->vpid == 0)
2296 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Avi Kivity089d0342009-03-23 18:26:32 +02002297 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002298 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002299 if (!enable_unrestricted_guest)
2300 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002301 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2302 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002303
Avi Kivityc7addb92007-09-16 18:58:32 +02002304 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2305 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002306 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2307
2308 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2309 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2310 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2311
2312 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2313 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2314 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002315 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2316 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002317 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002318#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002319 rdmsrl(MSR_FS_BASE, a);
2320 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2321 rdmsrl(MSR_GS_BASE, a);
2322 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2323#else
2324 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2325 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2326#endif
2327
2328 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2329
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002330 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002331 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2332
Mike Dayd77c26f2007-10-08 09:02:08 -04002333 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002334 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002335 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2336 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2337 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002338
2339 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2340 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2341 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2342 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2343 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2344 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2345
Sheng Yang468d4722008-10-09 16:01:55 +08002346 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2347 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2348 host_pat = msr_low | ((u64) msr_high << 32);
2349 vmcs_write64(HOST_IA32_PAT, host_pat);
2350 }
2351 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2352 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2353 host_pat = msr_low | ((u64) msr_high << 32);
2354 /* Write the default value follow host pat */
2355 vmcs_write64(GUEST_IA32_PAT, host_pat);
2356 /* Keep arch.pat sync with GUEST_IA32_PAT */
2357 vmx->vcpu.arch.pat = host_pat;
2358 }
2359
Avi Kivity6aa8b732006-12-10 02:21:36 -08002360 for (i = 0; i < NR_VMX_MSR; ++i) {
2361 u32 index = vmx_msr_index[i];
2362 u32 data_low, data_high;
2363 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002364 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002365
2366 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2367 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002368 if (wrmsr_safe(index, data_low, data_high) < 0)
2369 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002370 data = data_low | ((u64)data_high << 32);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002371 vmx->host_msrs[j].index = index;
2372 vmx->host_msrs[j].reserved = 0;
2373 vmx->host_msrs[j].data = data;
2374 vmx->guest_msrs[j] = vmx->host_msrs[j];
2375 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002376 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002377
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002378 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002379
2380 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002381 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2382
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002383 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
2384 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
2385
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01002386 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2387 rdtscll(tsc_this);
2388 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2389 tsc_base = tsc_this;
2390
2391 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002392
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002393 return 0;
2394}
2395
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002396static int init_rmode(struct kvm *kvm)
2397{
2398 if (!init_rmode_tss(kvm))
2399 return 0;
2400 if (!init_rmode_identity_map(kvm))
2401 return 0;
2402 return 1;
2403}
2404
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002405static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2406{
2407 struct vcpu_vmx *vmx = to_vmx(vcpu);
2408 u64 msr;
2409 int ret;
2410
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002411 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002412 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002413 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002414 ret = -ENOMEM;
2415 goto out;
2416 }
2417
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002418 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002419
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002420 vmx->soft_vnmi_blocked = 0;
2421
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002422 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002423 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002424 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002425 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002426 msr |= MSR_IA32_APICBASE_BSP;
2427 kvm_set_apic_base(&vmx->vcpu, msr);
2428
2429 fx_init(&vmx->vcpu);
2430
Avi Kivity5706be02008-08-20 15:07:31 +03002431 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002432 /*
2433 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2434 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2435 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002436 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002437 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2438 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2439 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002440 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2441 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002442 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002443
2444 seg_setup(VCPU_SREG_DS);
2445 seg_setup(VCPU_SREG_ES);
2446 seg_setup(VCPU_SREG_FS);
2447 seg_setup(VCPU_SREG_GS);
2448 seg_setup(VCPU_SREG_SS);
2449
2450 vmcs_write16(GUEST_TR_SELECTOR, 0);
2451 vmcs_writel(GUEST_TR_BASE, 0);
2452 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2453 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2454
2455 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2456 vmcs_writel(GUEST_LDTR_BASE, 0);
2457 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2458 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2459
2460 vmcs_write32(GUEST_SYSENTER_CS, 0);
2461 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2462 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2463
2464 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002465 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002466 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002467 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002468 kvm_rip_write(vcpu, 0);
2469 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002470
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002471 vmcs_writel(GUEST_DR7, 0x400);
2472
2473 vmcs_writel(GUEST_GDTR_BASE, 0);
2474 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2475
2476 vmcs_writel(GUEST_IDTR_BASE, 0);
2477 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2478
2479 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2480 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2481 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2482
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002483 /* Special registers */
2484 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2485
2486 setup_msrs(vmx);
2487
Avi Kivity6aa8b732006-12-10 02:21:36 -08002488 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2489
Sheng Yangf78e0e22007-10-29 09:40:42 +08002490 if (cpu_has_vmx_tpr_shadow()) {
2491 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2492 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2493 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002494 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002495 vmcs_write32(TPR_THRESHOLD, 0);
2496 }
2497
2498 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2499 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002500 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002501
Sheng Yang2384d2b2008-01-17 15:14:33 +08002502 if (vmx->vpid != 0)
2503 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2504
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002505 vmx->vcpu.arch.cr0 = 0x60000010;
2506 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002507 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002508 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002509 vmx_fpu_activate(&vmx->vcpu);
2510 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002511
Sheng Yang2384d2b2008-01-17 15:14:33 +08002512 vpid_sync_vcpu_all(vmx);
2513
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002514 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002515
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002516 /* HACK: Don't enable emulation on guest boot/reset */
2517 vmx->emulation_required = 0;
2518
Avi Kivity6aa8b732006-12-10 02:21:36 -08002519out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002520 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002521 return ret;
2522}
2523
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002524static void enable_irq_window(struct kvm_vcpu *vcpu)
2525{
2526 u32 cpu_based_vm_exec_control;
2527
2528 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2529 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2530 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2531}
2532
2533static void enable_nmi_window(struct kvm_vcpu *vcpu)
2534{
2535 u32 cpu_based_vm_exec_control;
2536
2537 if (!cpu_has_virtual_nmis()) {
2538 enable_irq_window(vcpu);
2539 return;
2540 }
2541
2542 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2543 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2544 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2545}
2546
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002547static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03002548{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002549 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002550 uint32_t intr;
2551 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02002552
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002553 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002554
Avi Kivityfa89a812008-09-01 15:57:51 +03002555 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002556 if (vmx->rmode.vm86_active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002557 vmx->rmode.irq.pending = true;
2558 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002559 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +03002560 if (vcpu->arch.interrupt.soft)
2561 vmx->rmode.irq.rip +=
2562 vmx->vcpu.arch.event_exit_inst_len;
Avi Kivity9c5623e2007-11-08 18:19:20 +02002563 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2564 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2565 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002566 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002567 return;
2568 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002569 intr = irq | INTR_INFO_VALID_MASK;
2570 if (vcpu->arch.interrupt.soft) {
2571 intr |= INTR_TYPE_SOFT_INTR;
2572 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2573 vmx->vcpu.arch.event_exit_inst_len);
2574 } else
2575 intr |= INTR_TYPE_EXT_INTR;
2576 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03002577}
2578
Sheng Yangf08864b2008-05-15 18:23:25 +08002579static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2580{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002581 struct vcpu_vmx *vmx = to_vmx(vcpu);
2582
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002583 if (!cpu_has_virtual_nmis()) {
2584 /*
2585 * Tracking the NMI-blocked state in software is built upon
2586 * finding the next open IRQ window. This, in turn, depends on
2587 * well-behaving guests: They have to keep IRQs disabled at
2588 * least as long as the NMI handler runs. Otherwise we may
2589 * cause NMI nesting, maybe breaking the guest. But as this is
2590 * highly unlikely, we can live with the residual risk.
2591 */
2592 vmx->soft_vnmi_blocked = 1;
2593 vmx->vnmi_blocked_time = 0;
2594 }
2595
Jan Kiszka487b3912008-09-26 09:30:56 +02002596 ++vcpu->stat.nmi_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002597 if (vmx->rmode.vm86_active) {
Jan Kiszka66a5a342008-09-26 09:30:51 +02002598 vmx->rmode.irq.pending = true;
2599 vmx->rmode.irq.vector = NMI_VECTOR;
2600 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2601 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2602 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2603 INTR_INFO_VALID_MASK);
2604 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2605 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2606 return;
2607 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002608 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2609 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002610}
2611
Gleb Natapovc4282df2009-04-21 17:45:07 +03002612static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02002613{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002614 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03002615 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002616
Gleb Natapovc4282df2009-04-21 17:45:07 +03002617 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2618 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS |
2619 GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02002620}
2621
Gleb Natapov78646122009-03-23 12:12:11 +02002622static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2623{
Gleb Natapovc4282df2009-04-21 17:45:07 +03002624 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2625 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2626 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02002627}
2628
Izik Eiduscbc94022007-10-25 00:29:55 +02002629static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2630{
2631 int ret;
2632 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002633 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002634 .guest_phys_addr = addr,
2635 .memory_size = PAGE_SIZE * 3,
2636 .flags = 0,
2637 };
2638
2639 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2640 if (ret)
2641 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002642 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002643 return 0;
2644}
2645
Avi Kivity6aa8b732006-12-10 02:21:36 -08002646static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2647 int vec, u32 err_code)
2648{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002649 /*
2650 * Instruction with address size override prefix opcode 0x67
2651 * Cause the #SS fault with 0 error code in VM86 mode.
2652 */
2653 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Avi Kivity851ba692009-08-24 11:10:17 +03002654 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002655 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002656 /*
2657 * Forward all other exceptions that are valid in real mode.
2658 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2659 * the required debugging infrastructure rework.
2660 */
2661 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002662 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002663 if (vcpu->guest_debug &
2664 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2665 return 0;
2666 kvm_queue_exception(vcpu, vec);
2667 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002668 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002669 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2670 return 0;
2671 /* fall through */
2672 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002673 case OF_VECTOR:
2674 case BR_VECTOR:
2675 case UD_VECTOR:
2676 case DF_VECTOR:
2677 case SS_VECTOR:
2678 case GP_VECTOR:
2679 case MF_VECTOR:
2680 kvm_queue_exception(vcpu, vec);
2681 return 1;
2682 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002683 return 0;
2684}
2685
Andi Kleena0861c02009-06-08 17:37:09 +08002686/*
2687 * Trigger machine check on the host. We assume all the MSRs are already set up
2688 * by the CPU and that we still run on the same CPU as the MCE occurred on.
2689 * We pass a fake environment to the machine check handler because we want
2690 * the guest to be always treated like user space, no matter what context
2691 * it used internally.
2692 */
2693static void kvm_machine_check(void)
2694{
2695#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
2696 struct pt_regs regs = {
2697 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
2698 .flags = X86_EFLAGS_IF,
2699 };
2700
2701 do_machine_check(&regs, 0);
2702#endif
2703}
2704
Avi Kivity851ba692009-08-24 11:10:17 +03002705static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08002706{
2707 /* already handled by vcpu_run */
2708 return 1;
2709}
2710
Avi Kivity851ba692009-08-24 11:10:17 +03002711static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002712{
Avi Kivity1155f762007-11-22 11:30:47 +02002713 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002714 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002715 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002716 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002717 u32 vect_info;
2718 enum emulation_result er;
2719
Avi Kivity1155f762007-11-22 11:30:47 +02002720 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002721 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2722
Andi Kleena0861c02009-06-08 17:37:09 +08002723 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03002724 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08002725
Avi Kivity6aa8b732006-12-10 02:21:36 -08002726 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04002727 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002728 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002729 "intr info 0x%x\n", __func__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002730
Jan Kiszkae4a41882008-09-26 09:30:46 +02002731 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002732 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002733
2734 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002735 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002736 return 1;
2737 }
2738
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002739 if (is_invalid_opcode(intr_info)) {
Avi Kivity851ba692009-08-24 11:10:17 +03002740 er = emulate_instruction(vcpu, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002741 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002742 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002743 return 1;
2744 }
2745
Avi Kivity6aa8b732006-12-10 02:21:36 -08002746 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002747 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002748 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002749 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2750 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002751 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02002752 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002753 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002754 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002755 trace_kvm_page_fault(cr2, error_code);
2756
Gleb Natapov3298b752009-05-11 13:35:46 +03002757 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03002758 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002759 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002760 }
2761
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002762 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002763 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002764 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002765 if (vcpu->arch.halt_request) {
2766 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002767 return kvm_emulate_halt(vcpu);
2768 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002769 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002770 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002771
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002772 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002773 switch (ex_no) {
2774 case DB_VECTOR:
2775 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2776 if (!(vcpu->guest_debug &
2777 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2778 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2779 kvm_queue_exception(vcpu, DB_VECTOR);
2780 return 1;
2781 }
2782 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2783 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2784 /* fall through */
2785 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002786 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002787 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2788 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002789 break;
2790 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002791 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2792 kvm_run->ex.exception = ex_no;
2793 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002794 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002795 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002796 return 0;
2797}
2798
Avi Kivity851ba692009-08-24 11:10:17 +03002799static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002800{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002801 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002802 return 1;
2803}
2804
Avi Kivity851ba692009-08-24 11:10:17 +03002805static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08002806{
Avi Kivity851ba692009-08-24 11:10:17 +03002807 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08002808 return 0;
2809}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002810
Avi Kivity851ba692009-08-24 11:10:17 +03002811static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002812{
He, Qingbfdaab02007-09-12 14:18:28 +08002813 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002814 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002815 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002816
Avi Kivity1165f5f2007-04-19 17:27:43 +03002817 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002818 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002819 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002820
2821 if (string) {
Avi Kivity851ba692009-08-24 11:10:17 +03002822 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002823 return 0;
2824 return 1;
2825 }
2826
2827 size = (exit_qualification & 7) + 1;
2828 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002829 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002830
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002831 skip_emulated_instruction(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002832 return kvm_emulate_pio(vcpu, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002833}
2834
Ingo Molnar102d8322007-02-19 14:37:47 +02002835static void
2836vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2837{
2838 /*
2839 * Patch in the VMCALL instruction:
2840 */
2841 hypercall[0] = 0x0f;
2842 hypercall[1] = 0x01;
2843 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002844}
2845
Avi Kivity851ba692009-08-24 11:10:17 +03002846static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002847{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002848 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002849 int cr;
2850 int reg;
2851
He, Qingbfdaab02007-09-12 14:18:28 +08002852 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002853 cr = exit_qualification & 15;
2854 reg = (exit_qualification >> 8) & 15;
2855 switch ((exit_qualification >> 4) & 3) {
2856 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002857 val = kvm_register_read(vcpu, reg);
2858 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002859 switch (cr) {
2860 case 0:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002861 kvm_set_cr0(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002862 skip_emulated_instruction(vcpu);
2863 return 1;
2864 case 3:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002865 kvm_set_cr3(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002866 skip_emulated_instruction(vcpu);
2867 return 1;
2868 case 4:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002869 kvm_set_cr4(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002870 skip_emulated_instruction(vcpu);
2871 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002872 case 8: {
2873 u8 cr8_prev = kvm_get_cr8(vcpu);
2874 u8 cr8 = kvm_register_read(vcpu, reg);
2875 kvm_set_cr8(vcpu, cr8);
2876 skip_emulated_instruction(vcpu);
2877 if (irqchip_in_kernel(vcpu->kvm))
2878 return 1;
2879 if (cr8_prev <= cr8)
2880 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03002881 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002882 return 0;
2883 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002884 };
2885 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002886 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002887 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002888 vcpu->arch.cr0 &= ~X86_CR0_TS;
2889 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002890 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002891 skip_emulated_instruction(vcpu);
2892 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002893 case 1: /*mov from cr*/
2894 switch (cr) {
2895 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002896 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002897 trace_kvm_cr_read(cr, vcpu->arch.cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002898 skip_emulated_instruction(vcpu);
2899 return 1;
2900 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002901 val = kvm_get_cr8(vcpu);
2902 kvm_register_write(vcpu, reg, val);
2903 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002904 skip_emulated_instruction(vcpu);
2905 return 1;
2906 }
2907 break;
2908 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002909 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002910
2911 skip_emulated_instruction(vcpu);
2912 return 1;
2913 default:
2914 break;
2915 }
Avi Kivity851ba692009-08-24 11:10:17 +03002916 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002917 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002918 (int)(exit_qualification >> 4) & 3, cr);
2919 return 0;
2920}
2921
Avi Kivity851ba692009-08-24 11:10:17 +03002922static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002923{
He, Qingbfdaab02007-09-12 14:18:28 +08002924 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002925 unsigned long val;
2926 int dr, reg;
2927
Avi Kivity0a79b002009-09-01 12:03:25 +03002928 if (!kvm_require_cpl(vcpu, 0))
2929 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002930 dr = vmcs_readl(GUEST_DR7);
2931 if (dr & DR7_GD) {
2932 /*
2933 * As the vm-exit takes precedence over the debug trap, we
2934 * need to emulate the latter, either for the host or the
2935 * guest debugging itself.
2936 */
2937 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03002938 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
2939 vcpu->run->debug.arch.dr7 = dr;
2940 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002941 vmcs_readl(GUEST_CS_BASE) +
2942 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03002943 vcpu->run->debug.arch.exception = DB_VECTOR;
2944 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002945 return 0;
2946 } else {
2947 vcpu->arch.dr7 &= ~DR7_GD;
2948 vcpu->arch.dr6 |= DR6_BD;
2949 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2950 kvm_queue_exception(vcpu, DB_VECTOR);
2951 return 1;
2952 }
2953 }
2954
He, Qingbfdaab02007-09-12 14:18:28 +08002955 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002956 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
2957 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
2958 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002959 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002960 case 0 ... 3:
2961 val = vcpu->arch.db[dr];
2962 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002963 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002964 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002965 break;
2966 case 7:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002967 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002968 break;
2969 default:
2970 val = 0;
2971 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002972 kvm_register_write(vcpu, reg, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002973 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002974 val = vcpu->arch.regs[reg];
2975 switch (dr) {
2976 case 0 ... 3:
2977 vcpu->arch.db[dr] = val;
2978 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
2979 vcpu->arch.eff_db[dr] = val;
2980 break;
2981 case 4 ... 5:
2982 if (vcpu->arch.cr4 & X86_CR4_DE)
2983 kvm_queue_exception(vcpu, UD_VECTOR);
2984 break;
2985 case 6:
2986 if (val & 0xffffffff00000000ULL) {
2987 kvm_queue_exception(vcpu, GP_VECTOR);
2988 break;
2989 }
2990 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
2991 break;
2992 case 7:
2993 if (val & 0xffffffff00000000ULL) {
2994 kvm_queue_exception(vcpu, GP_VECTOR);
2995 break;
2996 }
2997 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
2998 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
2999 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3000 vcpu->arch.switch_db_regs =
3001 (val & DR7_BP_EN_MASK);
3002 }
3003 break;
3004 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003005 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003006 skip_emulated_instruction(vcpu);
3007 return 1;
3008}
3009
Avi Kivity851ba692009-08-24 11:10:17 +03003010static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003011{
Avi Kivity06465c52007-02-28 20:46:53 +02003012 kvm_emulate_cpuid(vcpu);
3013 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003014}
3015
Avi Kivity851ba692009-08-24 11:10:17 +03003016static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003017{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003018 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08003019 u64 data;
3020
3021 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003022 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003023 return 1;
3024 }
3025
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003026 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003027
Avi Kivity6aa8b732006-12-10 02:21:36 -08003028 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003029 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
3030 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003031 skip_emulated_instruction(vcpu);
3032 return 1;
3033}
3034
Avi Kivity851ba692009-08-24 11:10:17 +03003035static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003036{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003037 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
3038 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
3039 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003040
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003041 trace_kvm_msr_write(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003042
Avi Kivity6aa8b732006-12-10 02:21:36 -08003043 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003044 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003045 return 1;
3046 }
3047
3048 skip_emulated_instruction(vcpu);
3049 return 1;
3050}
3051
Avi Kivity851ba692009-08-24 11:10:17 +03003052static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003053{
3054 return 1;
3055}
3056
Avi Kivity851ba692009-08-24 11:10:17 +03003057static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003058{
Eddie Dong85f455f2007-07-06 12:20:49 +03003059 u32 cpu_based_vm_exec_control;
3060
3061 /* clear pending irq */
3062 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3063 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
3064 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003065
Jan Kiszkaa26bf122008-09-26 09:30:45 +02003066 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003067
Dor Laorc1150d82007-01-05 16:36:24 -08003068 /*
3069 * If the user space waits to inject interrupts, exit as soon as
3070 * possible
3071 */
Gleb Natapov80618232009-04-21 17:44:56 +03003072 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03003073 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03003074 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003075 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08003076 return 0;
3077 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003078 return 1;
3079}
3080
Avi Kivity851ba692009-08-24 11:10:17 +03003081static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003082{
3083 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003084 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003085}
3086
Avi Kivity851ba692009-08-24 11:10:17 +03003087static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02003088{
Dor Laor510043d2007-02-19 18:25:43 +02003089 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003090 kvm_emulate_hypercall(vcpu);
3091 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003092}
3093
Avi Kivity851ba692009-08-24 11:10:17 +03003094static int handle_vmx_insn(struct kvm_vcpu *vcpu)
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003095{
3096 kvm_queue_exception(vcpu, UD_VECTOR);
3097 return 1;
3098}
3099
Avi Kivity851ba692009-08-24 11:10:17 +03003100static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003101{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003102 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003103
3104 kvm_mmu_invlpg(vcpu, exit_qualification);
3105 skip_emulated_instruction(vcpu);
3106 return 1;
3107}
3108
Avi Kivity851ba692009-08-24 11:10:17 +03003109static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02003110{
3111 skip_emulated_instruction(vcpu);
3112 /* TODO: Add support for VT-d/pass-through device */
3113 return 1;
3114}
3115
Avi Kivity851ba692009-08-24 11:10:17 +03003116static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003117{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003118 unsigned long exit_qualification;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003119 enum emulation_result er;
3120 unsigned long offset;
3121
Sheng Yangf9c617f2009-03-25 10:08:52 +08003122 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003123 offset = exit_qualification & 0xffful;
3124
Avi Kivity851ba692009-08-24 11:10:17 +03003125 er = emulate_instruction(vcpu, 0, 0, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003126
3127 if (er != EMULATE_DONE) {
3128 printk(KERN_ERR
3129 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3130 offset);
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003131 return -ENOEXEC;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003132 }
3133 return 1;
3134}
3135
Avi Kivity851ba692009-08-24 11:10:17 +03003136static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02003137{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003138 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003139 unsigned long exit_qualification;
3140 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003141 int reason, type, idt_v;
3142
3143 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
3144 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02003145
3146 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3147
3148 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003149 if (reason == TASK_SWITCH_GATE && idt_v) {
3150 switch (type) {
3151 case INTR_TYPE_NMI_INTR:
3152 vcpu->arch.nmi_injected = false;
3153 if (cpu_has_virtual_nmis())
3154 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3155 GUEST_INTR_STATE_NMI);
3156 break;
3157 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003158 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003159 kvm_clear_interrupt_queue(vcpu);
3160 break;
3161 case INTR_TYPE_HARD_EXCEPTION:
3162 case INTR_TYPE_SOFT_EXCEPTION:
3163 kvm_clear_exception_queue(vcpu);
3164 break;
3165 default:
3166 break;
3167 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02003168 }
Izik Eidus37817f22008-03-24 23:14:53 +02003169 tss_selector = exit_qualification;
3170
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003171 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
3172 type != INTR_TYPE_EXT_INTR &&
3173 type != INTR_TYPE_NMI_INTR))
3174 skip_emulated_instruction(vcpu);
3175
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003176 if (!kvm_task_switch(vcpu, tss_selector, reason))
3177 return 0;
3178
3179 /* clear all local breakpoint enable flags */
3180 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3181
3182 /*
3183 * TODO: What about debug traps on tss switch?
3184 * Are we supposed to inject them and update dr6?
3185 */
3186
3187 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003188}
3189
Avi Kivity851ba692009-08-24 11:10:17 +03003190static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08003191{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003192 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003193 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003194 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003195
Sheng Yangf9c617f2009-03-25 10:08:52 +08003196 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08003197
3198 if (exit_qualification & (1 << 6)) {
3199 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003200 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08003201 }
3202
3203 gla_validity = (exit_qualification >> 7) & 0x3;
3204 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3205 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3206 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3207 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08003208 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08003209 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3210 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03003211 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3212 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03003213 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08003214 }
3215
3216 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003217 trace_kvm_page_fault(gpa, exit_qualification);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003218 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003219}
3220
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003221static u64 ept_rsvd_mask(u64 spte, int level)
3222{
3223 int i;
3224 u64 mask = 0;
3225
3226 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
3227 mask |= (1ULL << i);
3228
3229 if (level > 2)
3230 /* bits 7:3 reserved */
3231 mask |= 0xf8;
3232 else if (level == 2) {
3233 if (spte & (1ULL << 7))
3234 /* 2MB ref, bits 20:12 reserved */
3235 mask |= 0x1ff000;
3236 else
3237 /* bits 6:3 reserved */
3238 mask |= 0x78;
3239 }
3240
3241 return mask;
3242}
3243
3244static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
3245 int level)
3246{
3247 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
3248
3249 /* 010b (write-only) */
3250 WARN_ON((spte & 0x7) == 0x2);
3251
3252 /* 110b (write/execute) */
3253 WARN_ON((spte & 0x7) == 0x6);
3254
3255 /* 100b (execute-only) and value not supported by logical processor */
3256 if (!cpu_has_vmx_ept_execute_only())
3257 WARN_ON((spte & 0x7) == 0x4);
3258
3259 /* not 000b */
3260 if ((spte & 0x7)) {
3261 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
3262
3263 if (rsvd_bits != 0) {
3264 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
3265 __func__, rsvd_bits);
3266 WARN_ON(1);
3267 }
3268
3269 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
3270 u64 ept_mem_type = (spte & 0x38) >> 3;
3271
3272 if (ept_mem_type == 2 || ept_mem_type == 3 ||
3273 ept_mem_type == 7) {
3274 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
3275 __func__, ept_mem_type);
3276 WARN_ON(1);
3277 }
3278 }
3279 }
3280}
3281
Avi Kivity851ba692009-08-24 11:10:17 +03003282static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003283{
3284 u64 sptes[4];
3285 int nr_sptes, i;
3286 gpa_t gpa;
3287
3288 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
3289
3290 printk(KERN_ERR "EPT: Misconfiguration.\n");
3291 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
3292
3293 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
3294
3295 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
3296 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
3297
Avi Kivity851ba692009-08-24 11:10:17 +03003298 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3299 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003300
3301 return 0;
3302}
3303
Avi Kivity851ba692009-08-24 11:10:17 +03003304static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08003305{
3306 u32 cpu_based_vm_exec_control;
3307
3308 /* clear pending NMI */
3309 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3310 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3311 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3312 ++vcpu->stat.nmi_window_exits;
3313
3314 return 1;
3315}
3316
Mohammed Gamal80ced182009-09-01 12:48:18 +02003317static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003318{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003319 struct vcpu_vmx *vmx = to_vmx(vcpu);
3320 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003321 int ret = 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003322
3323 while (!guest_state_valid(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003324 err = emulate_instruction(vcpu, 0, 0, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003325
Mohammed Gamal80ced182009-09-01 12:48:18 +02003326 if (err == EMULATE_DO_MMIO) {
3327 ret = 0;
3328 goto out;
3329 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003330
3331 if (err != EMULATE_DONE) {
3332 kvm_report_emulation_failure(vcpu, "emulation failure");
Mohammed Gamal80ced182009-09-01 12:48:18 +02003333 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3334 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3335 ret = 0;
3336 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003337 }
3338
3339 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02003340 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003341 if (need_resched())
3342 schedule();
3343 }
3344
Mohammed Gamal80ced182009-09-01 12:48:18 +02003345 vmx->emulation_required = 0;
3346out:
3347 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003348}
3349
Avi Kivity6aa8b732006-12-10 02:21:36 -08003350/*
3351 * The exit handlers return 1 if the exit was handled fully and guest execution
3352 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3353 * to be done to userspace and return 0.
3354 */
Avi Kivity851ba692009-08-24 11:10:17 +03003355static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003356 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3357 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003358 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003359 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003360 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003361 [EXIT_REASON_CR_ACCESS] = handle_cr,
3362 [EXIT_REASON_DR_ACCESS] = handle_dr,
3363 [EXIT_REASON_CPUID] = handle_cpuid,
3364 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3365 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3366 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3367 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003368 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003369 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003370 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
3371 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
3372 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
3373 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
3374 [EXIT_REASON_VMREAD] = handle_vmx_insn,
3375 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
3376 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
3377 [EXIT_REASON_VMOFF] = handle_vmx_insn,
3378 [EXIT_REASON_VMON] = handle_vmx_insn,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003379 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3380 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003381 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003382 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08003383 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003384 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
3385 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003386};
3387
3388static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003389 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003390
3391/*
3392 * The guest has exited. See if we can fix it or if we need userspace
3393 * assistance.
3394 */
Avi Kivity851ba692009-08-24 11:10:17 +03003395static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003396{
Avi Kivity29bd8a72007-09-10 17:27:03 +03003397 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003398 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02003399 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003400
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003401 trace_kvm_exit(exit_reason, kvm_rip_read(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003402
Mohammed Gamal80ced182009-09-01 12:48:18 +02003403 /* If guest state is invalid, start emulating */
3404 if (vmx->emulation_required && emulate_invalid_guest_state)
3405 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003406
Sheng Yang14394422008-04-28 12:24:45 +08003407 /* Access CR3 don't cause VMExit in paging mode, so we need
3408 * to sync with guest real CR3. */
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003409 if (enable_ept && is_paging(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003410 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003411
Avi Kivity29bd8a72007-09-10 17:27:03 +03003412 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003413 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3414 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03003415 = vmcs_read32(VM_INSTRUCTION_ERROR);
3416 return 0;
3417 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003418
Mike Dayd77c26f2007-10-08 09:02:08 -04003419 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003420 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003421 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3422 exit_reason != EXIT_REASON_TASK_SWITCH))
3423 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3424 "(0x%x) and exit reason is 0x%x\n",
3425 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003426
3427 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03003428 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003429 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003430 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003431 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003432 /*
3433 * This CPU don't support us in finding the end of an
3434 * NMI-blocked window if the guest runs with IRQs
3435 * disabled. So we pull the trigger after 1 s of
3436 * futile waiting, but inform the user about this.
3437 */
3438 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3439 "state on VCPU %d after 1 s timeout\n",
3440 __func__, vcpu->vcpu_id);
3441 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003442 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003443 }
3444
Avi Kivity6aa8b732006-12-10 02:21:36 -08003445 if (exit_reason < kvm_vmx_max_exit_handlers
3446 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03003447 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003448 else {
Avi Kivity851ba692009-08-24 11:10:17 +03003449 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3450 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003451 }
3452 return 0;
3453}
3454
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003455static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003456{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003457 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003458 vmcs_write32(TPR_THRESHOLD, 0);
3459 return;
3460 }
3461
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003462 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003463}
3464
Avi Kivitycf393f72008-07-01 16:20:21 +03003465static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3466{
3467 u32 exit_intr_info;
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003468 u32 idt_vectoring_info = vmx->idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003469 bool unblock_nmi;
3470 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003471 int type;
3472 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03003473
3474 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Gleb Natapov20f65982009-05-11 13:35:55 +03003475
Andi Kleena0861c02009-06-08 17:37:09 +08003476 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
3477
3478 /* Handle machine checks before interrupts are enabled */
3479 if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
3480 || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
3481 && is_machine_check(exit_intr_info)))
3482 kvm_machine_check();
3483
Gleb Natapov20f65982009-05-11 13:35:55 +03003484 /* We need to handle NMIs before interrupts are enabled */
3485 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003486 (exit_intr_info & INTR_INFO_VALID_MASK))
Gleb Natapov20f65982009-05-11 13:35:55 +03003487 asm("int $2");
Gleb Natapov20f65982009-05-11 13:35:55 +03003488
3489 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3490
Avi Kivitycf393f72008-07-01 16:20:21 +03003491 if (cpu_has_virtual_nmis()) {
3492 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3493 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3494 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003495 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03003496 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3497 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003498 * SDM 3: 23.2.2 (September 2008)
3499 * Bit 12 is undefined in any of the following cases:
3500 * If the VM exit sets the valid bit in the IDT-vectoring
3501 * information field.
3502 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03003503 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003504 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
3505 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03003506 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3507 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003508 } else if (unlikely(vmx->soft_vnmi_blocked))
3509 vmx->vnmi_blocked_time +=
3510 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003511
Gleb Natapov37b96e92009-03-30 16:03:13 +03003512 vmx->vcpu.arch.nmi_injected = false;
3513 kvm_clear_exception_queue(&vmx->vcpu);
3514 kvm_clear_interrupt_queue(&vmx->vcpu);
3515
3516 if (!idtv_info_valid)
3517 return;
3518
Avi Kivity668f6122008-07-02 09:28:55 +03003519 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3520 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003521
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003522 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003523 case INTR_TYPE_NMI_INTR:
3524 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03003525 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003526 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03003527 * Clear bit "block by NMI" before VM entry if a NMI
3528 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03003529 */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003530 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3531 GUEST_INTR_STATE_NMI);
3532 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003533 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003534 vmx->vcpu.arch.event_exit_inst_len =
3535 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3536 /* fall through */
3537 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03003538 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003539 u32 err = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3540 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03003541 } else
3542 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003543 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003544 case INTR_TYPE_SOFT_INTR:
3545 vmx->vcpu.arch.event_exit_inst_len =
3546 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3547 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003548 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003549 kvm_queue_interrupt(&vmx->vcpu, vector,
3550 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003551 break;
3552 default:
3553 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03003554 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003555}
3556
Avi Kivity9c8cba32007-11-22 11:42:59 +02003557/*
3558 * Failure to inject an interrupt should give us the information
3559 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3560 * when fetching the interrupt redirection bitmap in the real-mode
3561 * tss, this doesn't happen. So we do it ourselves.
3562 */
3563static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3564{
3565 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003566 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003567 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003568 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003569 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3570 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3571 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3572 return;
3573 }
3574 vmx->idt_vectoring_info =
3575 VECTORING_INFO_VALID_MASK
3576 | INTR_TYPE_EXT_INTR
3577 | vmx->rmode.irq.vector;
3578}
3579
Avi Kivityc8019492008-07-14 14:44:59 +03003580#ifdef CONFIG_X86_64
3581#define R "r"
3582#define Q "q"
3583#else
3584#define R "e"
3585#define Q "l"
3586#endif
3587
Avi Kivity851ba692009-08-24 11:10:17 +03003588static void vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003589{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003590 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03003591
Avi Kivity8f5d5492009-05-31 18:41:29 +03003592 if (enable_ept && is_paging(vcpu)) {
3593 vmcs_writel(GUEST_CR3, vcpu->arch.cr3);
3594 ept_load_pdptrs(vcpu);
3595 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003596 /* Record the guest's net vcpu time for enforced NMI injections. */
3597 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3598 vmx->entry_time = ktime_get();
3599
Mohammed Gamal80ced182009-09-01 12:48:18 +02003600 /* Don't enter VMX if guest state is invalid, let the exit handler
3601 start emulation until we arrive back to a valid state */
3602 if (vmx->emulation_required && emulate_invalid_guest_state)
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003603 return;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003604
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003605 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3606 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3607 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3608 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3609
Gleb Natapov787ff732009-05-18 11:44:06 +03003610 /* When single-stepping over STI and MOV SS, we must clear the
3611 * corresponding interruptibility bits in the guest state. Otherwise
3612 * vmentry fails as it then expects bit 14 (BS) in pending debug
3613 * exceptions being set, but that's not correct for the guest debugging
3614 * case. */
3615 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3616 vmx_set_interrupt_shadow(vcpu, 0);
3617
Avi Kivitye6adf282007-04-30 16:07:54 +03003618 /*
3619 * Loading guest fpu may have cleared host cr0.ts
3620 */
3621 vmcs_writel(HOST_CR0, read_cr0());
3622
Avi Kivitye8a48342009-09-01 16:06:25 +03003623 if (vcpu->arch.switch_db_regs)
3624 set_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003625
Mike Dayd77c26f2007-10-08 09:02:08 -04003626 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003627 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003628 "push %%"R"dx; push %%"R"bp;"
3629 "push %%"R"cx \n\t"
Avi Kivity313dbd492008-07-17 18:04:30 +03003630 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3631 "je 1f \n\t"
3632 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003633 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd492008-07-17 18:04:30 +03003634 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03003635 /* Reload cr2 if changed */
3636 "mov %c[cr2](%0), %%"R"ax \n\t"
3637 "mov %%cr2, %%"R"dx \n\t"
3638 "cmp %%"R"ax, %%"R"dx \n\t"
3639 "je 2f \n\t"
3640 "mov %%"R"ax, %%cr2 \n\t"
3641 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003642 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003643 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003644 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003645 "mov %c[rax](%0), %%"R"ax \n\t"
3646 "mov %c[rbx](%0), %%"R"bx \n\t"
3647 "mov %c[rdx](%0), %%"R"dx \n\t"
3648 "mov %c[rsi](%0), %%"R"si \n\t"
3649 "mov %c[rdi](%0), %%"R"di \n\t"
3650 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003651#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003652 "mov %c[r8](%0), %%r8 \n\t"
3653 "mov %c[r9](%0), %%r9 \n\t"
3654 "mov %c[r10](%0), %%r10 \n\t"
3655 "mov %c[r11](%0), %%r11 \n\t"
3656 "mov %c[r12](%0), %%r12 \n\t"
3657 "mov %c[r13](%0), %%r13 \n\t"
3658 "mov %c[r14](%0), %%r14 \n\t"
3659 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003660#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003661 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3662
Avi Kivity6aa8b732006-12-10 02:21:36 -08003663 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003664 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003665 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003666 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003667 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003668 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003669 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003670 "xchg %0, (%%"R"sp) \n\t"
3671 "mov %%"R"ax, %c[rax](%0) \n\t"
3672 "mov %%"R"bx, %c[rbx](%0) \n\t"
3673 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3674 "mov %%"R"dx, %c[rdx](%0) \n\t"
3675 "mov %%"R"si, %c[rsi](%0) \n\t"
3676 "mov %%"R"di, %c[rdi](%0) \n\t"
3677 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003678#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003679 "mov %%r8, %c[r8](%0) \n\t"
3680 "mov %%r9, %c[r9](%0) \n\t"
3681 "mov %%r10, %c[r10](%0) \n\t"
3682 "mov %%r11, %c[r11](%0) \n\t"
3683 "mov %%r12, %c[r12](%0) \n\t"
3684 "mov %%r13, %c[r13](%0) \n\t"
3685 "mov %%r14, %c[r14](%0) \n\t"
3686 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003687#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003688 "mov %%cr2, %%"R"ax \n\t"
3689 "mov %%"R"ax, %c[cr2](%0) \n\t"
3690
3691 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003692 "setbe %c[fail](%0) \n\t"
3693 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3694 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3695 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd492008-07-17 18:04:30 +03003696 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003697 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3698 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3699 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3700 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3701 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3702 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3703 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003704#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003705 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3706 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3707 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3708 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3709 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3710 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3711 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3712 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003713#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003714 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003715 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003716 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003717#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003718 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3719#endif
3720 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003721
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003722 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
3723 | (1 << VCPU_EXREG_PDPTR));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003724 vcpu->arch.regs_dirty = 0;
3725
Avi Kivitye8a48342009-09-01 16:06:25 +03003726 if (vcpu->arch.switch_db_regs)
3727 get_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003728
Avi Kivity1155f762007-11-22 11:30:47 +02003729 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003730 if (vmx->rmode.irq.pending)
3731 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003732
Mike Dayd77c26f2007-10-08 09:02:08 -04003733 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003734 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003735
Avi Kivitycf393f72008-07-01 16:20:21 +03003736 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003737}
3738
Avi Kivityc8019492008-07-14 14:44:59 +03003739#undef R
3740#undef Q
3741
Avi Kivity6aa8b732006-12-10 02:21:36 -08003742static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3743{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003744 struct vcpu_vmx *vmx = to_vmx(vcpu);
3745
3746 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003747 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003748 free_vmcs(vmx->vmcs);
3749 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003750 }
3751}
3752
3753static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3754{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003755 struct vcpu_vmx *vmx = to_vmx(vcpu);
3756
Sheng Yang2384d2b2008-01-17 15:14:33 +08003757 spin_lock(&vmx_vpid_lock);
3758 if (vmx->vpid != 0)
3759 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3760 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003761 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003762 kfree(vmx->host_msrs);
3763 kfree(vmx->guest_msrs);
3764 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003765 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003766}
3767
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003768static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003769{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003770 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003771 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003772 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003773
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003774 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003775 return ERR_PTR(-ENOMEM);
3776
Sheng Yang2384d2b2008-01-17 15:14:33 +08003777 allocate_vpid(vmx);
3778
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003779 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3780 if (err)
3781 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003782
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003783 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003784 if (!vmx->guest_msrs) {
3785 err = -ENOMEM;
3786 goto uninit_vcpu;
3787 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003788
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003789 vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
3790 if (!vmx->host_msrs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003791 goto free_guest_msrs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003792
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003793 vmx->vmcs = alloc_vmcs();
3794 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003795 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003796
3797 vmcs_clear(vmx->vmcs);
3798
Avi Kivity15ad7142007-07-11 18:17:21 +03003799 cpu = get_cpu();
3800 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003801 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003802 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003803 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003804 if (err)
3805 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003806 if (vm_need_virtualize_apic_accesses(kvm))
3807 if (alloc_apic_access_page(kvm) != 0)
3808 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003809
Sheng Yangb927a3c2009-07-21 10:42:48 +08003810 if (enable_ept) {
3811 if (!kvm->arch.ept_identity_map_addr)
3812 kvm->arch.ept_identity_map_addr =
3813 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003814 if (alloc_identity_pagetable(kvm) != 0)
3815 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003816 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003817
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003818 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003819
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003820free_vmcs:
3821 free_vmcs(vmx->vmcs);
3822free_msrs:
3823 kfree(vmx->host_msrs);
3824free_guest_msrs:
3825 kfree(vmx->guest_msrs);
3826uninit_vcpu:
3827 kvm_vcpu_uninit(&vmx->vcpu);
3828free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003829 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003830 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003831}
3832
Yang, Sheng002c7f72007-07-31 14:23:01 +03003833static void __init vmx_check_processor_compat(void *rtn)
3834{
3835 struct vmcs_config vmcs_conf;
3836
3837 *(int *)rtn = 0;
3838 if (setup_vmcs_config(&vmcs_conf) < 0)
3839 *(int *)rtn = -EIO;
3840 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3841 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3842 smp_processor_id());
3843 *(int *)rtn = -EIO;
3844 }
3845}
3846
Sheng Yang67253af2008-04-25 10:20:22 +08003847static int get_ept_level(void)
3848{
3849 return VMX_EPT_DEFAULT_GAW + 1;
3850}
3851
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003852static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08003853{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003854 u64 ret;
3855
Sheng Yang522c68c2009-04-27 20:35:43 +08003856 /* For VT-d and EPT combination
3857 * 1. MMIO: always map as UC
3858 * 2. EPT with VT-d:
3859 * a. VT-d without snooping control feature: can't guarantee the
3860 * result, try to trust guest.
3861 * b. VT-d with snooping control feature: snooping control feature of
3862 * VT-d engine can guarantee the cache correctness. Just set it
3863 * to WB to keep consistent with host. So the same as item 3.
3864 * 3. EPT without VT-d: always map as WB and set IGMT=1 to keep
3865 * consistent with host MTRR
3866 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003867 if (is_mmio)
3868 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08003869 else if (vcpu->kvm->arch.iommu_domain &&
3870 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
3871 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
3872 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003873 else
Sheng Yang522c68c2009-04-27 20:35:43 +08003874 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
3875 | VMX_EPT_IGMT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003876
3877 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08003878}
3879
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003880static const struct trace_print_flags vmx_exit_reasons_str[] = {
3881 { EXIT_REASON_EXCEPTION_NMI, "exception" },
3882 { EXIT_REASON_EXTERNAL_INTERRUPT, "ext_irq" },
3883 { EXIT_REASON_TRIPLE_FAULT, "triple_fault" },
3884 { EXIT_REASON_NMI_WINDOW, "nmi_window" },
3885 { EXIT_REASON_IO_INSTRUCTION, "io_instruction" },
3886 { EXIT_REASON_CR_ACCESS, "cr_access" },
3887 { EXIT_REASON_DR_ACCESS, "dr_access" },
3888 { EXIT_REASON_CPUID, "cpuid" },
3889 { EXIT_REASON_MSR_READ, "rdmsr" },
3890 { EXIT_REASON_MSR_WRITE, "wrmsr" },
3891 { EXIT_REASON_PENDING_INTERRUPT, "interrupt_window" },
3892 { EXIT_REASON_HLT, "halt" },
3893 { EXIT_REASON_INVLPG, "invlpg" },
3894 { EXIT_REASON_VMCALL, "hypercall" },
3895 { EXIT_REASON_TPR_BELOW_THRESHOLD, "tpr_below_thres" },
3896 { EXIT_REASON_APIC_ACCESS, "apic_access" },
3897 { EXIT_REASON_WBINVD, "wbinvd" },
3898 { EXIT_REASON_TASK_SWITCH, "task_switch" },
3899 { EXIT_REASON_EPT_VIOLATION, "ept_violation" },
3900 { -1, NULL }
3901};
3902
Joerg Roedel344f4142009-07-27 16:30:48 +02003903static bool vmx_gb_page_enable(void)
3904{
3905 return false;
3906}
3907
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003908static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003909 .cpu_has_kvm_support = cpu_has_kvm_support,
3910 .disabled_by_bios = vmx_disabled_by_bios,
3911 .hardware_setup = hardware_setup,
3912 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003913 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003914 .hardware_enable = hardware_enable,
3915 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08003916 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003917
3918 .vcpu_create = vmx_create_vcpu,
3919 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003920 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003921
Avi Kivity04d2cc72007-09-10 18:10:54 +03003922 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003923 .vcpu_load = vmx_vcpu_load,
3924 .vcpu_put = vmx_vcpu_put,
3925
3926 .set_guest_debug = set_guest_debug,
3927 .get_msr = vmx_get_msr,
3928 .set_msr = vmx_set_msr,
3929 .get_segment_base = vmx_get_segment_base,
3930 .get_segment = vmx_get_segment,
3931 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003932 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003933 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003934 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003935 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003936 .set_cr3 = vmx_set_cr3,
3937 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003938 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003939 .get_idt = vmx_get_idt,
3940 .set_idt = vmx_set_idt,
3941 .get_gdt = vmx_get_gdt,
3942 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003943 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003944 .get_rflags = vmx_get_rflags,
3945 .set_rflags = vmx_set_rflags,
3946
3947 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003948
Avi Kivity6aa8b732006-12-10 02:21:36 -08003949 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02003950 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003951 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04003952 .set_interrupt_shadow = vmx_set_interrupt_shadow,
3953 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02003954 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03003955 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003956 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02003957 .queue_exception = vmx_queue_exception,
Gleb Natapov78646122009-03-23 12:12:11 +02003958 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003959 .nmi_allowed = vmx_nmi_allowed,
3960 .enable_nmi_window = enable_nmi_window,
3961 .enable_irq_window = enable_irq_window,
3962 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003963
Izik Eiduscbc94022007-10-25 00:29:55 +02003964 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08003965 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003966 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003967
3968 .exit_reasons_str = vmx_exit_reasons_str,
Joerg Roedel344f4142009-07-27 16:30:48 +02003969 .gb_page_enable = vmx_gb_page_enable,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003970};
3971
3972static int __init vmx_init(void)
3973{
He, Qingfdef3ad2007-04-30 09:45:24 +03003974 int r;
3975
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003976 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03003977 if (!vmx_io_bitmap_a)
3978 return -ENOMEM;
3979
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003980 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03003981 if (!vmx_io_bitmap_b) {
3982 r = -ENOMEM;
3983 goto out;
3984 }
3985
Avi Kivity58972972009-02-24 22:26:47 +02003986 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
3987 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08003988 r = -ENOMEM;
3989 goto out1;
3990 }
3991
Avi Kivity58972972009-02-24 22:26:47 +02003992 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
3993 if (!vmx_msr_bitmap_longmode) {
3994 r = -ENOMEM;
3995 goto out2;
3996 }
3997
He, Qingfdef3ad2007-04-30 09:45:24 +03003998 /*
3999 * Allow direct access to the PC debug port (it is often used for I/O
4000 * delays, but the vmexits simply slow things down).
4001 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004002 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
4003 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004004
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004005 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004006
Avi Kivity58972972009-02-24 22:26:47 +02004007 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
4008 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08004009
Sheng Yang2384d2b2008-01-17 15:14:33 +08004010 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
4011
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004012 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004013 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02004014 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08004015
Avi Kivity58972972009-02-24 22:26:47 +02004016 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
4017 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
4018 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
4019 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
4020 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
4021 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03004022
Avi Kivity089d0342009-03-23 18:26:32 +02004023 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004024 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004025 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08004026 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08004027 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004028 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004029 kvm_enable_tdp();
4030 } else
4031 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08004032
Avi Kivityc7addb92007-09-16 18:58:32 +02004033 if (bypass_guest_pf)
4034 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
4035
He, Qingfdef3ad2007-04-30 09:45:24 +03004036 return 0;
4037
Avi Kivity58972972009-02-24 22:26:47 +02004038out3:
4039 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08004040out2:
Avi Kivity58972972009-02-24 22:26:47 +02004041 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03004042out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004043 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03004044out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004045 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004046 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004047}
4048
4049static void __exit vmx_exit(void)
4050{
Avi Kivity58972972009-02-24 22:26:47 +02004051 free_page((unsigned long)vmx_msr_bitmap_legacy);
4052 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004053 free_page((unsigned long)vmx_io_bitmap_b);
4054 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004055
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004056 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004057}
4058
4059module_init(vmx_init)
4060module_exit(vmx_exit)