blob: 61f03980adaee2b4983127a21a661f3575466c29 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030030#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030031#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040032
Avi Kivity6aa8b732006-12-10 02:21:36 -080033#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080034#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020035#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020036#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080037#include <asm/mce.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080038
Marcelo Tosatti229456f2009-06-17 09:22:14 -030039#include "trace.h"
40
Avi Kivity4ecac3f2008-05-13 13:23:38 +030041#define __ex(x) __kvm_handle_fault_on_reboot(x)
42
Avi Kivity6aa8b732006-12-10 02:21:36 -080043MODULE_AUTHOR("Qumranet");
44MODULE_LICENSE("GPL");
45
Avi Kivity4462d212009-03-23 17:53:37 +020046static int __read_mostly bypass_guest_pf = 1;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020047module_param(bypass_guest_pf, bool, S_IRUGO);
Avi Kivityc7addb92007-09-16 18:58:32 +020048
Avi Kivity4462d212009-03-23 17:53:37 +020049static int __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020050module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080051
Avi Kivity4462d212009-03-23 17:53:37 +020052static int __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020053module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020054
Avi Kivity4462d212009-03-23 17:53:37 +020055static int __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020056module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080057
Nitin A Kamble3a624e22009-06-08 11:34:16 -070058static int __read_mostly enable_unrestricted_guest = 1;
59module_param_named(unrestricted_guest,
60 enable_unrestricted_guest, bool, S_IRUGO);
61
Avi Kivity4462d212009-03-23 17:53:37 +020062static int __read_mostly emulate_invalid_guest_state = 0;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020063module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030064
Avi Kivitycdc0e242009-12-06 17:21:14 +020065#define KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST \
66 (X86_CR0_WP | X86_CR0_NE | X86_CR0_NW | X86_CR0_CD)
67#define KVM_GUEST_CR0_MASK \
68 (KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
69#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST \
Avi Kivity81231c62010-01-24 16:26:40 +020070 (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +020071#define KVM_VM_CR0_ALWAYS_ON \
72 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +020073#define KVM_CR4_GUEST_OWNED_BITS \
74 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
75 | X86_CR4_OSXMMEXCPT)
76
Avi Kivitycdc0e242009-12-06 17:21:14 +020077#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
78#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
79
Avi Kivity78ac8b42010-04-08 18:19:35 +030080#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
81
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +080082/*
83 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
84 * ple_gap: upper bound on the amount of time between two successive
85 * executions of PAUSE in a loop. Also indicate if ple enabled.
86 * According to test, this time is usually small than 41 cycles.
87 * ple_window: upper bound on the amount of time a guest is allowed to execute
88 * in a PAUSE loop. Tests indicate that most spinlocks are held for
89 * less than 2^12 cycles
90 * Time is measured based on a counter that runs at the same rate as the TSC,
91 * refer SDM volume 3b section 21.6.13 & 22.1.3.
92 */
93#define KVM_VMX_DEFAULT_PLE_GAP 41
94#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
95static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
96module_param(ple_gap, int, S_IRUGO);
97
98static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
99module_param(ple_window, int, S_IRUGO);
100
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400101struct vmcs {
102 u32 revision_id;
103 u32 abort;
104 char data[0];
105};
106
Avi Kivity26bb0982009-09-07 11:14:12 +0300107struct shared_msr_entry {
108 unsigned index;
109 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200110 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300111};
112
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400113struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000114 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +0300115 struct list_head local_vcpus_link;
Avi Kivity313dbd42008-07-17 18:04:30 +0300116 unsigned long host_rsp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400117 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300118 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +0200119 u32 idt_vectoring_info;
Avi Kivity26bb0982009-09-07 11:14:12 +0300120 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400121 int nmsrs;
122 int save_nmsrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400123#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300124 u64 msr_host_kernel_gs_base;
125 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400126#endif
127 struct vmcs *vmcs;
128 struct {
129 int loaded;
130 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200131 int gs_ldt_reload_needed;
132 int fs_reload_needed;
Mike Dayd77c26f2007-10-08 09:02:08 -0400133 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200134 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300135 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300136 ulong save_rflags;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300137 struct kvm_save_segment {
138 u16 selector;
139 unsigned long base;
140 u32 limit;
141 u32 ar;
142 } tr, es, ds, fs, gs;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200143 struct {
144 bool pending;
145 u8 vector;
146 unsigned rip;
147 } irq;
148 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800149 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300150 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200151
152 /* Support for vnmi-less CPUs */
153 int soft_vnmi_blocked;
154 ktime_t entry_time;
155 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800156 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800157
158 bool rdtscp_enabled;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400159};
160
161static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
162{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000163 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400164}
165
Sheng Yangb7ebfb02008-04-25 21:44:52 +0800166static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800167static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +0300168
Avi Kivity6aa8b732006-12-10 02:21:36 -0800169static DEFINE_PER_CPU(struct vmcs *, vmxarea);
170static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +0300171static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800172
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200173static unsigned long *vmx_io_bitmap_a;
174static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200175static unsigned long *vmx_msr_bitmap_legacy;
176static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300177
Sheng Yang2384d2b2008-01-17 15:14:33 +0800178static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
179static DEFINE_SPINLOCK(vmx_vpid_lock);
180
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300181static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800182 int size;
183 int order;
184 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300185 u32 pin_based_exec_ctrl;
186 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800187 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300188 u32 vmexit_ctrl;
189 u32 vmentry_ctrl;
190} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800191
Hannes Ederefff9e52008-11-28 17:02:06 +0100192static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800193 u32 ept;
194 u32 vpid;
195} vmx_capability;
196
Avi Kivity6aa8b732006-12-10 02:21:36 -0800197#define VMX_SEGMENT_FIELD(seg) \
198 [VCPU_SREG_##seg] = { \
199 .selector = GUEST_##seg##_SELECTOR, \
200 .base = GUEST_##seg##_BASE, \
201 .limit = GUEST_##seg##_LIMIT, \
202 .ar_bytes = GUEST_##seg##_AR_BYTES, \
203 }
204
205static struct kvm_vmx_segment_field {
206 unsigned selector;
207 unsigned base;
208 unsigned limit;
209 unsigned ar_bytes;
210} kvm_vmx_segment_fields[] = {
211 VMX_SEGMENT_FIELD(CS),
212 VMX_SEGMENT_FIELD(DS),
213 VMX_SEGMENT_FIELD(ES),
214 VMX_SEGMENT_FIELD(FS),
215 VMX_SEGMENT_FIELD(GS),
216 VMX_SEGMENT_FIELD(SS),
217 VMX_SEGMENT_FIELD(TR),
218 VMX_SEGMENT_FIELD(LDTR),
219};
220
Avi Kivity26bb0982009-09-07 11:14:12 +0300221static u64 host_efer;
222
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300223static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
224
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300225/*
226 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
227 * away by decrementing the array size.
228 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800229static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800230#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300231 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800232#endif
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800233 MSR_EFER, MSR_TSC_AUX, MSR_K6_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800234};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200235#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800236
Avi Kivity6aa8b732006-12-10 02:21:36 -0800237static inline int is_page_fault(u32 intr_info)
238{
239 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
240 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100241 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800242}
243
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300244static inline int is_no_device(u32 intr_info)
245{
246 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
247 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100248 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300249}
250
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500251static inline int is_invalid_opcode(u32 intr_info)
252{
253 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
254 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100255 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500256}
257
Avi Kivity6aa8b732006-12-10 02:21:36 -0800258static inline int is_external_interrupt(u32 intr_info)
259{
260 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
261 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
262}
263
Andi Kleena0861c02009-06-08 17:37:09 +0800264static inline int is_machine_check(u32 intr_info)
265{
266 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
267 INTR_INFO_VALID_MASK)) ==
268 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
269}
270
Sheng Yang25c5f222008-03-28 13:18:56 +0800271static inline int cpu_has_vmx_msr_bitmap(void)
272{
Sheng Yang04547152009-04-01 15:52:31 +0800273 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800274}
275
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800276static inline int cpu_has_vmx_tpr_shadow(void)
277{
Sheng Yang04547152009-04-01 15:52:31 +0800278 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800279}
280
281static inline int vm_need_tpr_shadow(struct kvm *kvm)
282{
Sheng Yang04547152009-04-01 15:52:31 +0800283 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800284}
285
Sheng Yangf78e0e22007-10-29 09:40:42 +0800286static inline int cpu_has_secondary_exec_ctrls(void)
287{
Sheng Yang04547152009-04-01 15:52:31 +0800288 return vmcs_config.cpu_based_exec_ctrl &
289 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800290}
291
Avi Kivity774ead32007-12-26 13:57:04 +0200292static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800293{
Sheng Yang04547152009-04-01 15:52:31 +0800294 return vmcs_config.cpu_based_2nd_exec_ctrl &
295 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
296}
297
298static inline bool cpu_has_vmx_flexpriority(void)
299{
300 return cpu_has_vmx_tpr_shadow() &&
301 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800302}
303
Marcelo Tosattie7997942009-06-11 12:07:40 -0300304static inline bool cpu_has_vmx_ept_execute_only(void)
305{
306 return !!(vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT);
307}
308
309static inline bool cpu_has_vmx_eptp_uncacheable(void)
310{
311 return !!(vmx_capability.ept & VMX_EPTP_UC_BIT);
312}
313
314static inline bool cpu_has_vmx_eptp_writeback(void)
315{
316 return !!(vmx_capability.ept & VMX_EPTP_WB_BIT);
317}
318
319static inline bool cpu_has_vmx_ept_2m_page(void)
320{
321 return !!(vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT);
322}
323
Sheng Yang878403b2010-01-05 19:02:29 +0800324static inline bool cpu_has_vmx_ept_1g_page(void)
325{
326 return !!(vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT);
327}
328
Sheng Yangd56f5462008-04-25 10:13:16 +0800329static inline int cpu_has_vmx_invept_individual_addr(void)
330{
Sheng Yang04547152009-04-01 15:52:31 +0800331 return !!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800332}
333
334static inline int cpu_has_vmx_invept_context(void)
335{
Sheng Yang04547152009-04-01 15:52:31 +0800336 return !!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800337}
338
339static inline int cpu_has_vmx_invept_global(void)
340{
Sheng Yang04547152009-04-01 15:52:31 +0800341 return !!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800342}
343
344static inline int cpu_has_vmx_ept(void)
345{
Sheng Yang04547152009-04-01 15:52:31 +0800346 return vmcs_config.cpu_based_2nd_exec_ctrl &
347 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800348}
349
Nitin A Kamble3a624e22009-06-08 11:34:16 -0700350static inline int cpu_has_vmx_unrestricted_guest(void)
351{
352 return vmcs_config.cpu_based_2nd_exec_ctrl &
353 SECONDARY_EXEC_UNRESTRICTED_GUEST;
354}
355
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800356static inline int cpu_has_vmx_ple(void)
357{
358 return vmcs_config.cpu_based_2nd_exec_ctrl &
359 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
360}
361
Sheng Yangf78e0e22007-10-29 09:40:42 +0800362static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
363{
Gui Jianfeng6d3e4352010-01-29 15:36:59 +0800364 return flexpriority_enabled && irqchip_in_kernel(kvm);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800365}
366
Sheng Yang2384d2b2008-01-17 15:14:33 +0800367static inline int cpu_has_vmx_vpid(void)
368{
Sheng Yang04547152009-04-01 15:52:31 +0800369 return vmcs_config.cpu_based_2nd_exec_ctrl &
370 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800371}
372
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800373static inline int cpu_has_vmx_rdtscp(void)
374{
375 return vmcs_config.cpu_based_2nd_exec_ctrl &
376 SECONDARY_EXEC_RDTSCP;
377}
378
Sheng Yangf08864b2008-05-15 18:23:25 +0800379static inline int cpu_has_virtual_nmis(void)
380{
381 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
382}
383
Sheng Yang04547152009-04-01 15:52:31 +0800384static inline bool report_flexpriority(void)
385{
386 return flexpriority_enabled;
387}
388
Rusty Russell8b9cf982007-07-30 16:31:43 +1000389static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800390{
391 int i;
392
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400393 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +0300394 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300395 return i;
396 return -1;
397}
398
Sheng Yang2384d2b2008-01-17 15:14:33 +0800399static inline void __invvpid(int ext, u16 vpid, gva_t gva)
400{
401 struct {
402 u64 vpid : 16;
403 u64 rsvd : 48;
404 u64 gva;
405 } operand = { vpid, 0, gva };
406
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300407 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800408 /* CF==1 or ZF==1 --> rc = -1 */
409 "; ja 1f ; ud2 ; 1:"
410 : : "a"(&operand), "c"(ext) : "cc", "memory");
411}
412
Sheng Yang14394422008-04-28 12:24:45 +0800413static inline void __invept(int ext, u64 eptp, gpa_t gpa)
414{
415 struct {
416 u64 eptp, gpa;
417 } operand = {eptp, gpa};
418
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300419 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800420 /* CF==1 or ZF==1 --> rc = -1 */
421 "; ja 1f ; ud2 ; 1:\n"
422 : : "a" (&operand), "c" (ext) : "cc", "memory");
423}
424
Avi Kivity26bb0982009-09-07 11:14:12 +0300425static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300426{
427 int i;
428
Rusty Russell8b9cf982007-07-30 16:31:43 +1000429 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300430 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400431 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000432 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800433}
434
Avi Kivity6aa8b732006-12-10 02:21:36 -0800435static void vmcs_clear(struct vmcs *vmcs)
436{
437 u64 phys_addr = __pa(vmcs);
438 u8 error;
439
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300440 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800441 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
442 : "cc", "memory");
443 if (error)
444 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
445 vmcs, phys_addr);
446}
447
448static void __vcpu_clear(void *arg)
449{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000450 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800451 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800452
Rusty Russell8b9cf982007-07-30 16:31:43 +1000453 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400454 vmcs_clear(vmx->vmcs);
455 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800456 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800457 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300458 list_del(&vmx->local_vcpus_link);
459 vmx->vcpu.cpu = -1;
460 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800461}
462
Rusty Russell8b9cf982007-07-30 16:31:43 +1000463static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800464{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200465 if (vmx->vcpu.cpu == -1)
466 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200467 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800468}
469
Sheng Yang2384d2b2008-01-17 15:14:33 +0800470static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
471{
472 if (vmx->vpid == 0)
473 return;
474
475 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
476}
477
Sheng Yang14394422008-04-28 12:24:45 +0800478static inline void ept_sync_global(void)
479{
480 if (cpu_has_vmx_invept_global())
481 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
482}
483
484static inline void ept_sync_context(u64 eptp)
485{
Avi Kivity089d0342009-03-23 18:26:32 +0200486 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800487 if (cpu_has_vmx_invept_context())
488 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
489 else
490 ept_sync_global();
491 }
492}
493
494static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
495{
Avi Kivity089d0342009-03-23 18:26:32 +0200496 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800497 if (cpu_has_vmx_invept_individual_addr())
498 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
499 eptp, gpa);
500 else
501 ept_sync_context(eptp);
502 }
503}
504
Avi Kivity6aa8b732006-12-10 02:21:36 -0800505static unsigned long vmcs_readl(unsigned long field)
506{
507 unsigned long value;
508
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300509 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800510 : "=a"(value) : "d"(field) : "cc");
511 return value;
512}
513
514static u16 vmcs_read16(unsigned long field)
515{
516 return vmcs_readl(field);
517}
518
519static u32 vmcs_read32(unsigned long field)
520{
521 return vmcs_readl(field);
522}
523
524static u64 vmcs_read64(unsigned long field)
525{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800526#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800527 return vmcs_readl(field);
528#else
529 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
530#endif
531}
532
Avi Kivitye52de1b2007-01-05 16:36:56 -0800533static noinline void vmwrite_error(unsigned long field, unsigned long value)
534{
535 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
536 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
537 dump_stack();
538}
539
Avi Kivity6aa8b732006-12-10 02:21:36 -0800540static void vmcs_writel(unsigned long field, unsigned long value)
541{
542 u8 error;
543
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300544 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400545 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800546 if (unlikely(error))
547 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800548}
549
550static void vmcs_write16(unsigned long field, u16 value)
551{
552 vmcs_writel(field, value);
553}
554
555static void vmcs_write32(unsigned long field, u32 value)
556{
557 vmcs_writel(field, value);
558}
559
560static void vmcs_write64(unsigned long field, u64 value)
561{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800562 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300563#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800564 asm volatile ("");
565 vmcs_writel(field+1, value >> 32);
566#endif
567}
568
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300569static void vmcs_clear_bits(unsigned long field, u32 mask)
570{
571 vmcs_writel(field, vmcs_readl(field) & ~mask);
572}
573
574static void vmcs_set_bits(unsigned long field, u32 mask)
575{
576 vmcs_writel(field, vmcs_readl(field) | mask);
577}
578
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300579static void update_exception_bitmap(struct kvm_vcpu *vcpu)
580{
581 u32 eb;
582
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100583 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
584 (1u << NM_VECTOR) | (1u << DB_VECTOR);
585 if ((vcpu->guest_debug &
586 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
587 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
588 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300589 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300590 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +0200591 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +0800592 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +0200593 if (vcpu->fpu_active)
594 eb &= ~(1u << NM_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300595 vmcs_write32(EXCEPTION_BITMAP, eb);
596}
597
Avi Kivity33ed6322007-05-02 16:54:03 +0300598static void reload_tss(void)
599{
Avi Kivity33ed6322007-05-02 16:54:03 +0300600 /*
601 * VT restores TR but not its size. Useless.
602 */
Gleb Natapov89a27f42010-02-16 10:51:48 +0200603 struct desc_ptr gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200604 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300605
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300606 kvm_get_gdt(&gdt);
Gleb Natapov89a27f42010-02-16 10:51:48 +0200607 descs = (void *)gdt.address;
Avi Kivity33ed6322007-05-02 16:54:03 +0300608 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
609 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300610}
611
Avi Kivity92c0d902009-10-29 11:00:16 +0200612static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +0300613{
Roel Kluin3a34a882009-08-04 02:08:45 -0700614 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300615 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300616
Avi Kivityf6801df2010-01-21 15:31:50 +0200617 guest_efer = vmx->vcpu.arch.efer;
Roel Kluin3a34a882009-08-04 02:08:45 -0700618
Avi Kivity51c6cf62007-08-29 03:48:05 +0300619 /*
620 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
621 * outside long mode
622 */
623 ignore_bits = EFER_NX | EFER_SCE;
624#ifdef CONFIG_X86_64
625 ignore_bits |= EFER_LMA | EFER_LME;
626 /* SCE is meaningful only in long mode on Intel */
627 if (guest_efer & EFER_LMA)
628 ignore_bits &= ~(u64)EFER_SCE;
629#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +0300630 guest_efer &= ~ignore_bits;
631 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300632 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +0200633 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300634 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300635}
636
Avi Kivity04d2cc72007-09-10 18:10:54 +0300637static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300638{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300639 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +0300640 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +0300641
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400642 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300643 return;
644
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400645 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300646 /*
647 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
648 * allow segment selectors with cpl > 0 or ti == 1.
649 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300650 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200651 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300652 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200653 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400654 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200655 vmx->host_state.fs_reload_needed = 0;
656 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300657 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200658 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300659 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300660 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400661 if (!(vmx->host_state.gs_sel & 7))
662 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300663 else {
664 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200665 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300666 }
667
668#ifdef CONFIG_X86_64
669 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
670 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
671#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400672 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
673 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300674#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300675
676#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300677 if (is_long_mode(&vmx->vcpu)) {
678 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
679 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
680 }
Avi Kivity707c0872007-05-02 17:33:43 +0300681#endif
Avi Kivity26bb0982009-09-07 11:14:12 +0300682 for (i = 0; i < vmx->save_nmsrs; ++i)
683 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +0200684 vmx->guest_msrs[i].data,
685 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +0300686}
687
Avi Kivitya9b21b62008-06-24 11:48:49 +0300688static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300689{
Avi Kivity15ad7142007-07-11 18:17:21 +0300690 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300691
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400692 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300693 return;
694
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200695 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400696 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200697 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300698 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200699 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300700 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300701 /*
702 * If we have to reload gs, we must take care to
703 * preserve our gs base.
704 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300705 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300706 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300707#ifdef CONFIG_X86_64
708 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
709#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300710 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300711 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200712 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +0300713#ifdef CONFIG_X86_64
714 if (is_long_mode(&vmx->vcpu)) {
715 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
716 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
717 }
718#endif
Avi Kivity33ed6322007-05-02 16:54:03 +0300719}
720
Avi Kivitya9b21b62008-06-24 11:48:49 +0300721static void vmx_load_host_state(struct vcpu_vmx *vmx)
722{
723 preempt_disable();
724 __vmx_load_host_state(vmx);
725 preempt_enable();
726}
727
Avi Kivity6aa8b732006-12-10 02:21:36 -0800728/*
729 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
730 * vcpu mutex is already taken.
731 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300732static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800733{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400734 struct vcpu_vmx *vmx = to_vmx(vcpu);
735 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200736 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800737
Eddie Donga3d7f852007-09-03 16:15:12 +0300738 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000739 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300740 kvm_migrate_timers(vcpu);
Marcelo Tosattieb5109e2009-10-01 19:16:58 -0300741 set_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests);
Avi Kivity543e4242008-05-13 16:22:47 +0300742 local_irq_disable();
743 list_add(&vmx->local_vcpus_link,
744 &per_cpu(vcpus_on_cpu, cpu));
745 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300746 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800747
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400748 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800749 u8 error;
750
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400751 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300752 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800753 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
754 : "cc");
755 if (error)
756 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400757 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800758 }
759
760 if (vcpu->cpu != cpu) {
Gleb Natapov89a27f42010-02-16 10:51:48 +0200761 struct desc_ptr dt;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800762 unsigned long sysenter_esp;
763
764 vcpu->cpu = cpu;
765 /*
766 * Linux uses per-cpu TSS and GDT, so set these when switching
767 * processors.
768 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300769 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
770 kvm_get_gdt(&dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +0200771 vmcs_writel(HOST_GDTR_BASE, dt.address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800772
773 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
774 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300775
776 /*
777 * Make sure the time stamp counter is monotonous.
778 */
779 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200780 if (tsc_this < vcpu->arch.host_tsc) {
781 delta = vcpu->arch.host_tsc - tsc_this;
782 new_offset = vmcs_read64(TSC_OFFSET) + delta;
783 vmcs_write64(TSC_OFFSET, new_offset);
784 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800785 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800786}
787
788static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
789{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300790 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800791}
792
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300793static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
794{
Avi Kivity81231c62010-01-24 16:26:40 +0200795 ulong cr0;
796
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300797 if (vcpu->fpu_active)
798 return;
799 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +0200800 cr0 = vmcs_readl(GUEST_CR0);
801 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
802 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
803 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300804 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +0200805 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
806 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300807}
808
Avi Kivityedcafe32009-12-30 18:07:40 +0200809static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
810
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300811static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
812{
Avi Kivityedcafe32009-12-30 18:07:40 +0200813 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +0200814 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300815 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +0200816 vcpu->arch.cr0_guest_owned_bits = 0;
817 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
818 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300819}
820
Avi Kivity6aa8b732006-12-10 02:21:36 -0800821static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
822{
Avi Kivity78ac8b42010-04-08 18:19:35 +0300823 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +0300824
825 rflags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +0300826 if (to_vmx(vcpu)->rmode.vm86_active) {
827 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
828 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
829 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
830 }
Avi Kivity345dcaa2009-08-12 15:29:37 +0300831 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800832}
833
834static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
835{
Avi Kivity78ac8b42010-04-08 18:19:35 +0300836 if (to_vmx(vcpu)->rmode.vm86_active) {
837 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100838 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300839 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800840 vmcs_writel(GUEST_RFLAGS, rflags);
841}
842
Glauber Costa2809f5d2009-05-12 16:21:05 -0400843static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
844{
845 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
846 int ret = 0;
847
848 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +0100849 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400850 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +0100851 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -0400852
853 return ret & mask;
854}
855
856static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
857{
858 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
859 u32 interruptibility = interruptibility_old;
860
861 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
862
Jan Kiszka48005f62010-02-19 19:38:07 +0100863 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400864 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +0100865 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -0400866 interruptibility |= GUEST_INTR_STATE_STI;
867
868 if ((interruptibility != interruptibility_old))
869 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
870}
871
Avi Kivity6aa8b732006-12-10 02:21:36 -0800872static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
873{
874 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800875
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300876 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800877 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300878 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800879
Glauber Costa2809f5d2009-05-12 16:21:05 -0400880 /* skipping an emulated instruction also counts */
881 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800882}
883
Avi Kivity298101d2007-11-25 13:41:11 +0200884static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
885 bool has_error_code, u32 error_code)
886{
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200887 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100888 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200889
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100890 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200891 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100892 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
893 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200894
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300895 if (vmx->rmode.vm86_active) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200896 vmx->rmode.irq.pending = true;
897 vmx->rmode.irq.vector = nr;
898 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +0300899 if (kvm_exception_is_soft(nr))
900 vmx->rmode.irq.rip +=
901 vmx->vcpu.arch.event_exit_inst_len;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100902 intr_info |= INTR_TYPE_SOFT_INTR;
903 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200904 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
905 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
906 return;
907 }
908
Gleb Natapov66fd3f72009-05-11 13:35:50 +0300909 if (kvm_exception_is_soft(nr)) {
910 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
911 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100912 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
913 } else
914 intr_info |= INTR_TYPE_HARD_EXCEPTION;
915
916 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +0200917}
918
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800919static bool vmx_rdtscp_supported(void)
920{
921 return cpu_has_vmx_rdtscp();
922}
923
Avi Kivity6aa8b732006-12-10 02:21:36 -0800924/*
Eddie Donga75beee2007-05-17 18:55:15 +0300925 * Swap MSR entry in host/guest MSR entry array.
926 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000927static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300928{
Avi Kivity26bb0982009-09-07 11:14:12 +0300929 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400930
931 tmp = vmx->guest_msrs[to];
932 vmx->guest_msrs[to] = vmx->guest_msrs[from];
933 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300934}
935
936/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300937 * Set up the vmcs to automatically save and restore system
938 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
939 * mode, as fiddling with msrs is very expensive.
940 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000941static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300942{
Avi Kivity26bb0982009-09-07 11:14:12 +0300943 int save_nmsrs, index;
Avi Kivity58972972009-02-24 22:26:47 +0200944 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +0300945
Avi Kivity33f9c502008-02-27 16:06:57 +0200946 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300947 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300948#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000949 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000950 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300951 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000952 move_msr_up(vmx, index, save_nmsrs++);
953 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300954 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000955 move_msr_up(vmx, index, save_nmsrs++);
956 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300957 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000958 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800959 index = __find_msr_index(vmx, MSR_TSC_AUX);
960 if (index >= 0 && vmx->rdtscp_enabled)
961 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300962 /*
963 * MSR_K6_STAR is only needed on long mode guests, and only
964 * if efer.sce is enabled.
965 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000966 index = __find_msr_index(vmx, MSR_K6_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +0200967 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000968 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300969 }
Eddie Donga75beee2007-05-17 18:55:15 +0300970#endif
Avi Kivity92c0d902009-10-29 11:00:16 +0200971 index = __find_msr_index(vmx, MSR_EFER);
972 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +0300973 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300974
Avi Kivity26bb0982009-09-07 11:14:12 +0300975 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +0200976
977 if (cpu_has_vmx_msr_bitmap()) {
978 if (is_long_mode(&vmx->vcpu))
979 msr_bitmap = vmx_msr_bitmap_longmode;
980 else
981 msr_bitmap = vmx_msr_bitmap_legacy;
982
983 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
984 }
Avi Kivitye38aea32007-04-19 13:22:48 +0300985}
986
987/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988 * reads and returns guest's timestamp counter "register"
989 * guest_tsc = host_tsc + tsc_offset -- 21.3
990 */
991static u64 guest_read_tsc(void)
992{
993 u64 host_tsc, tsc_offset;
994
995 rdtscll(host_tsc);
996 tsc_offset = vmcs_read64(TSC_OFFSET);
997 return host_tsc + tsc_offset;
998}
999
1000/*
1001 * writes 'guest_tsc' into guest's timestamp counter "register"
1002 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
1003 */
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01001004static void guest_write_tsc(u64 guest_tsc, u64 host_tsc)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001006 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
1007}
1008
Avi Kivity6aa8b732006-12-10 02:21:36 -08001009/*
1010 * Reads an msr value (of 'msr_index') into 'pdata'.
1011 * Returns 0 on success, non-0 otherwise.
1012 * Assumes vcpu_load() was already called.
1013 */
1014static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1015{
1016 u64 data;
Avi Kivity26bb0982009-09-07 11:14:12 +03001017 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001018
1019 if (!pdata) {
1020 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
1021 return -EINVAL;
1022 }
1023
1024 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001025#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026 case MSR_FS_BASE:
1027 data = vmcs_readl(GUEST_FS_BASE);
1028 break;
1029 case MSR_GS_BASE:
1030 data = vmcs_readl(GUEST_GS_BASE);
1031 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001032 case MSR_KERNEL_GS_BASE:
1033 vmx_load_host_state(to_vmx(vcpu));
1034 data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
1035 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001036#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001038 return kvm_get_msr_common(vcpu, msr_index, pdata);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301039 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001040 data = guest_read_tsc();
1041 break;
1042 case MSR_IA32_SYSENTER_CS:
1043 data = vmcs_read32(GUEST_SYSENTER_CS);
1044 break;
1045 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001046 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001047 break;
1048 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001049 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001050 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001051 case MSR_TSC_AUX:
1052 if (!to_vmx(vcpu)->rdtscp_enabled)
1053 return 1;
1054 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055 default:
Avi Kivity26bb0982009-09-07 11:14:12 +03001056 vmx_load_host_state(to_vmx(vcpu));
Rusty Russell8b9cf982007-07-30 16:31:43 +10001057 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001058 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001059 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity3bab1f52006-12-29 16:49:48 -08001060 data = msr->data;
1061 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001062 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08001063 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001064 }
1065
1066 *pdata = data;
1067 return 0;
1068}
1069
1070/*
1071 * Writes msr value into into the appropriate "register".
1072 * Returns 0 on success, non-0 otherwise.
1073 * Assumes vcpu_load() was already called.
1074 */
1075static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1076{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001077 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001078 struct shared_msr_entry *msr;
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01001079 u64 host_tsc;
Eddie Dong2cc51562007-05-21 07:28:09 +03001080 int ret = 0;
1081
Avi Kivity6aa8b732006-12-10 02:21:36 -08001082 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001083 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +03001084 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +03001085 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03001086 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001087#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001088 case MSR_FS_BASE:
1089 vmcs_writel(GUEST_FS_BASE, data);
1090 break;
1091 case MSR_GS_BASE:
1092 vmcs_writel(GUEST_GS_BASE, data);
1093 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001094 case MSR_KERNEL_GS_BASE:
1095 vmx_load_host_state(vmx);
1096 vmx->msr_guest_kernel_gs_base = data;
1097 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001098#endif
1099 case MSR_IA32_SYSENTER_CS:
1100 vmcs_write32(GUEST_SYSENTER_CS, data);
1101 break;
1102 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001103 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001104 break;
1105 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001106 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001107 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301108 case MSR_IA32_TSC:
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01001109 rdtscll(host_tsc);
1110 guest_write_tsc(data, host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001111 break;
Sheng Yang468d4722008-10-09 16:01:55 +08001112 case MSR_IA32_CR_PAT:
1113 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
1114 vmcs_write64(GUEST_IA32_PAT, data);
1115 vcpu->arch.pat = data;
1116 break;
1117 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001118 ret = kvm_set_msr_common(vcpu, msr_index, data);
1119 break;
1120 case MSR_TSC_AUX:
1121 if (!vmx->rdtscp_enabled)
1122 return 1;
1123 /* Check reserved bit, higher 32 bits should be zero */
1124 if ((data >> 32) != 0)
1125 return 1;
1126 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001127 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10001128 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001129 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001130 vmx_load_host_state(vmx);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001131 msr->data = data;
1132 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001133 }
Eddie Dong2cc51562007-05-21 07:28:09 +03001134 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001135 }
1136
Eddie Dong2cc51562007-05-21 07:28:09 +03001137 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001138}
1139
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001140static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001141{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001142 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
1143 switch (reg) {
1144 case VCPU_REGS_RSP:
1145 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
1146 break;
1147 case VCPU_REGS_RIP:
1148 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
1149 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001150 case VCPU_EXREG_PDPTR:
1151 if (enable_ept)
1152 ept_save_pdptrs(vcpu);
1153 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001154 default:
1155 break;
1156 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001157}
1158
Jan Kiszka355be0b2009-10-03 00:31:21 +02001159static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001160{
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001161 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1162 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1163 else
1164 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1165
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001166 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001167}
1168
1169static __init int cpu_has_kvm_support(void)
1170{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001171 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001172}
1173
1174static __init int vmx_disabled_by_bios(void)
1175{
1176 u64 msr;
1177
1178 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001179 return (msr & (FEATURE_CONTROL_LOCKED |
1180 FEATURE_CONTROL_VMXON_ENABLED))
1181 == FEATURE_CONTROL_LOCKED;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001182 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001183}
1184
Alexander Graf10474ae2009-09-15 11:37:46 +02001185static int hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001186{
1187 int cpu = raw_smp_processor_id();
1188 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1189 u64 old;
1190
Alexander Graf10474ae2009-09-15 11:37:46 +02001191 if (read_cr4() & X86_CR4_VMXE)
1192 return -EBUSY;
1193
Avi Kivity543e4242008-05-13 16:22:47 +03001194 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001195 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001196 if ((old & (FEATURE_CONTROL_LOCKED |
1197 FEATURE_CONTROL_VMXON_ENABLED))
1198 != (FEATURE_CONTROL_LOCKED |
1199 FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001200 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001201 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yang9ea542f2008-09-11 15:27:49 +08001202 FEATURE_CONTROL_LOCKED |
1203 FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +10001204 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001205 asm volatile (ASM_VMX_VMXON_RAX
1206 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001207 : "memory", "cc");
Alexander Graf10474ae2009-09-15 11:37:46 +02001208
1209 ept_sync_global();
1210
1211 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001212}
1213
Avi Kivity543e4242008-05-13 16:22:47 +03001214static void vmclear_local_vcpus(void)
1215{
1216 int cpu = raw_smp_processor_id();
1217 struct vcpu_vmx *vmx, *n;
1218
1219 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1220 local_vcpus_link)
1221 __vcpu_clear(vmx);
1222}
1223
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001224
1225/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1226 * tricks.
1227 */
1228static void kvm_cpu_vmxoff(void)
1229{
1230 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
1231 write_cr4(read_cr4() & ~X86_CR4_VMXE);
1232}
1233
Avi Kivity6aa8b732006-12-10 02:21:36 -08001234static void hardware_disable(void *garbage)
1235{
Avi Kivity543e4242008-05-13 16:22:47 +03001236 vmclear_local_vcpus();
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001237 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001238}
1239
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001240static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001241 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001242{
1243 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001244 u32 ctl = ctl_min | ctl_opt;
1245
1246 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1247
1248 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1249 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1250
1251 /* Ensure minimum (required) set of control bits are supported. */
1252 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001253 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001254
1255 *result = ctl;
1256 return 0;
1257}
1258
Yang, Sheng002c7f72007-07-31 14:23:01 +03001259static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001260{
1261 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001262 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001263 u32 _pin_based_exec_control = 0;
1264 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001265 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001266 u32 _vmexit_control = 0;
1267 u32 _vmentry_control = 0;
1268
1269 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001270 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001271 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1272 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001273 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001274
1275 min = CPU_BASED_HLT_EXITING |
1276#ifdef CONFIG_X86_64
1277 CPU_BASED_CR8_LOAD_EXITING |
1278 CPU_BASED_CR8_STORE_EXITING |
1279#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001280 CPU_BASED_CR3_LOAD_EXITING |
1281 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001282 CPU_BASED_USE_IO_BITMAPS |
1283 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001284 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08001285 CPU_BASED_MWAIT_EXITING |
1286 CPU_BASED_MONITOR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001287 CPU_BASED_INVLPG_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001288 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001289 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001290 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001291 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1292 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001293 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001294#ifdef CONFIG_X86_64
1295 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1296 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1297 ~CPU_BASED_CR8_STORE_EXITING;
1298#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001299 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001300 min2 = 0;
1301 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001302 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001303 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001304 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001305 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001306 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
1307 SECONDARY_EXEC_RDTSCP;
Sheng Yangd56f5462008-04-25 10:13:16 +08001308 if (adjust_vmx_controls(min2, opt2,
1309 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001310 &_cpu_based_2nd_exec_control) < 0)
1311 return -EIO;
1312 }
1313#ifndef CONFIG_X86_64
1314 if (!(_cpu_based_2nd_exec_control &
1315 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1316 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1317#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001318 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03001319 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
1320 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03001321 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
1322 CPU_BASED_CR3_STORE_EXITING |
1323 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001324 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1325 vmx_capability.ept, vmx_capability.vpid);
1326 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001327
1328 min = 0;
1329#ifdef CONFIG_X86_64
1330 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1331#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001332 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001333 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1334 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001335 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001336
Sheng Yang468d4722008-10-09 16:01:55 +08001337 min = 0;
1338 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001339 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1340 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001341 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001342
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001343 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001344
1345 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1346 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001347 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001348
1349#ifdef CONFIG_X86_64
1350 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1351 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001352 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001353#endif
1354
1355 /* Require Write-Back (WB) memory type for VMCS accesses. */
1356 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001357 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001358
Yang, Sheng002c7f72007-07-31 14:23:01 +03001359 vmcs_conf->size = vmx_msr_high & 0x1fff;
1360 vmcs_conf->order = get_order(vmcs_config.size);
1361 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001362
Yang, Sheng002c7f72007-07-31 14:23:01 +03001363 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1364 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001365 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001366 vmcs_conf->vmexit_ctrl = _vmexit_control;
1367 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001368
1369 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001370}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001371
1372static struct vmcs *alloc_vmcs_cpu(int cpu)
1373{
1374 int node = cpu_to_node(cpu);
1375 struct page *pages;
1376 struct vmcs *vmcs;
1377
Mel Gorman6484eb32009-06-16 15:31:54 -07001378 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001379 if (!pages)
1380 return NULL;
1381 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001382 memset(vmcs, 0, vmcs_config.size);
1383 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001384 return vmcs;
1385}
1386
1387static struct vmcs *alloc_vmcs(void)
1388{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001389 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001390}
1391
1392static void free_vmcs(struct vmcs *vmcs)
1393{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001394 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001395}
1396
Sam Ravnborg39959582007-06-01 00:47:13 -07001397static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398{
1399 int cpu;
1400
Zachary Amsden3230bb42009-09-29 11:38:37 -10001401 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001402 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10001403 per_cpu(vmxarea, cpu) = NULL;
1404 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001405}
1406
Avi Kivity6aa8b732006-12-10 02:21:36 -08001407static __init int alloc_kvm_area(void)
1408{
1409 int cpu;
1410
Zachary Amsden3230bb42009-09-29 11:38:37 -10001411 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001412 struct vmcs *vmcs;
1413
1414 vmcs = alloc_vmcs_cpu(cpu);
1415 if (!vmcs) {
1416 free_kvm_area();
1417 return -ENOMEM;
1418 }
1419
1420 per_cpu(vmxarea, cpu) = vmcs;
1421 }
1422 return 0;
1423}
1424
1425static __init int hardware_setup(void)
1426{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001427 if (setup_vmcs_config(&vmcs_config) < 0)
1428 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001429
1430 if (boot_cpu_has(X86_FEATURE_NX))
1431 kvm_enable_efer_bits(EFER_NX);
1432
Sheng Yang93ba03c2009-04-01 15:52:32 +08001433 if (!cpu_has_vmx_vpid())
1434 enable_vpid = 0;
1435
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001436 if (!cpu_has_vmx_ept()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08001437 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001438 enable_unrestricted_guest = 0;
1439 }
1440
1441 if (!cpu_has_vmx_unrestricted_guest())
1442 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08001443
1444 if (!cpu_has_vmx_flexpriority())
1445 flexpriority_enabled = 0;
1446
Gleb Natapov95ba8273132009-04-21 17:45:08 +03001447 if (!cpu_has_vmx_tpr_shadow())
1448 kvm_x86_ops->update_cr8_intercept = NULL;
1449
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001450 if (enable_ept && !cpu_has_vmx_ept_2m_page())
1451 kvm_disable_largepages();
1452
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001453 if (!cpu_has_vmx_ple())
1454 ple_gap = 0;
1455
Avi Kivity6aa8b732006-12-10 02:21:36 -08001456 return alloc_kvm_area();
1457}
1458
1459static __exit void hardware_unsetup(void)
1460{
1461 free_kvm_area();
1462}
1463
Avi Kivity6aa8b732006-12-10 02:21:36 -08001464static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1465{
1466 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1467
Avi Kivity6af11b92007-03-19 13:18:10 +02001468 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001469 vmcs_write16(sf->selector, save->selector);
1470 vmcs_writel(sf->base, save->base);
1471 vmcs_write32(sf->limit, save->limit);
1472 vmcs_write32(sf->ar_bytes, save->ar);
1473 } else {
1474 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1475 << AR_DPL_SHIFT;
1476 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1477 }
1478}
1479
1480static void enter_pmode(struct kvm_vcpu *vcpu)
1481{
1482 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001483 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001484
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001485 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001486 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001487
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001488 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
1489 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
1490 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001491
1492 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03001493 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
1494 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001495 vmcs_writel(GUEST_RFLAGS, flags);
1496
Rusty Russell66aee912007-07-17 23:34:16 +10001497 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1498 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001499
1500 update_exception_bitmap(vcpu);
1501
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001502 if (emulate_invalid_guest_state)
1503 return;
1504
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001505 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
1506 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
1507 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
1508 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001509
1510 vmcs_write16(GUEST_SS_SELECTOR, 0);
1511 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1512
1513 vmcs_write16(GUEST_CS_SELECTOR,
1514 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1515 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1516}
1517
Mike Dayd77c26f2007-10-08 09:02:08 -04001518static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001519{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001520 if (!kvm->arch.tss_addr) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001521 struct kvm_memslots *slots;
1522 gfn_t base_gfn;
1523
1524 slots = rcu_dereference(kvm->memslots);
1525 base_gfn = kvm->memslots->memslots[0].base_gfn +
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -02001526 kvm->memslots->memslots[0].npages - 3;
Izik Eiduscbc94022007-10-25 00:29:55 +02001527 return base_gfn << PAGE_SHIFT;
1528 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001529 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001530}
1531
1532static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1533{
1534 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1535
1536 save->selector = vmcs_read16(sf->selector);
1537 save->base = vmcs_readl(sf->base);
1538 save->limit = vmcs_read32(sf->limit);
1539 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001540 vmcs_write16(sf->selector, save->base >> 4);
1541 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001542 vmcs_write32(sf->limit, 0xffff);
1543 vmcs_write32(sf->ar_bytes, 0xf3);
1544}
1545
1546static void enter_rmode(struct kvm_vcpu *vcpu)
1547{
1548 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001549 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001550
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001551 if (enable_unrestricted_guest)
1552 return;
1553
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001554 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001555 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001556
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001557 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001558 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1559
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001560 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001561 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1562
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001563 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001564 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1565
1566 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03001567 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001568
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001569 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570
1571 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001572 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001573 update_exception_bitmap(vcpu);
1574
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001575 if (emulate_invalid_guest_state)
1576 goto continue_rmode;
1577
Avi Kivity6aa8b732006-12-10 02:21:36 -08001578 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1579 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1580 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1581
1582 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001583 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001584 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1585 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001586 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1587
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001588 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
1589 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
1590 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
1591 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001592
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001593continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08001594 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001595 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001596}
1597
Amit Shah401d10d2009-02-20 22:53:37 +05301598static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1599{
1600 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001601 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
1602
1603 if (!msr)
1604 return;
Amit Shah401d10d2009-02-20 22:53:37 +05301605
Avi Kivity44ea2b12009-09-06 15:55:37 +03001606 /*
1607 * Force kernel_gs_base reloading before EFER changes, as control
1608 * of this msr depends on is_long_mode().
1609 */
1610 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02001611 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05301612 if (efer & EFER_LMA) {
1613 vmcs_write32(VM_ENTRY_CONTROLS,
1614 vmcs_read32(VM_ENTRY_CONTROLS) |
1615 VM_ENTRY_IA32E_MODE);
1616 msr->data = efer;
1617 } else {
1618 vmcs_write32(VM_ENTRY_CONTROLS,
1619 vmcs_read32(VM_ENTRY_CONTROLS) &
1620 ~VM_ENTRY_IA32E_MODE);
1621
1622 msr->data = efer & ~EFER_LME;
1623 }
1624 setup_msrs(vmx);
1625}
1626
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001627#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001628
1629static void enter_lmode(struct kvm_vcpu *vcpu)
1630{
1631 u32 guest_tr_ar;
1632
1633 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1634 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1635 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001636 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001637 vmcs_write32(GUEST_TR_AR_BYTES,
1638 (guest_tr_ar & ~AR_TYPE_MASK)
1639 | AR_TYPE_BUSY_64_TSS);
1640 }
Avi Kivityf6801df2010-01-21 15:31:50 +02001641 vcpu->arch.efer |= EFER_LMA;
1642 vmx_set_efer(vcpu, vcpu->arch.efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001643}
1644
1645static void exit_lmode(struct kvm_vcpu *vcpu)
1646{
Avi Kivityf6801df2010-01-21 15:31:50 +02001647 vcpu->arch.efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001648
1649 vmcs_write32(VM_ENTRY_CONTROLS,
1650 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001651 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001652}
1653
1654#endif
1655
Sheng Yang2384d2b2008-01-17 15:14:33 +08001656static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1657{
1658 vpid_sync_vcpu_all(to_vmx(vcpu));
Avi Kivity089d0342009-03-23 18:26:32 +02001659 if (enable_ept)
Sheng Yang4e1096d2008-07-06 19:16:51 +08001660 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001661}
1662
Avi Kivitye8467fd2009-12-29 18:43:06 +02001663static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
1664{
1665 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
1666
1667 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
1668 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
1669}
1670
Anthony Liguori25c4c272007-04-27 09:29:21 +03001671static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001672{
Avi Kivityfc78f512009-12-07 12:16:48 +02001673 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
1674
1675 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
1676 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08001677}
1678
Sheng Yang14394422008-04-28 12:24:45 +08001679static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1680{
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001681 if (!test_bit(VCPU_EXREG_PDPTR,
1682 (unsigned long *)&vcpu->arch.regs_dirty))
1683 return;
1684
Sheng Yang14394422008-04-28 12:24:45 +08001685 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Sheng Yang14394422008-04-28 12:24:45 +08001686 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1687 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1688 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1689 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1690 }
1691}
1692
Avi Kivity8f5d5492009-05-31 18:41:29 +03001693static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
1694{
1695 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1696 vcpu->arch.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
1697 vcpu->arch.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
1698 vcpu->arch.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
1699 vcpu->arch.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
1700 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001701
1702 __set_bit(VCPU_EXREG_PDPTR,
1703 (unsigned long *)&vcpu->arch.regs_avail);
1704 __set_bit(VCPU_EXREG_PDPTR,
1705 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03001706}
1707
Sheng Yang14394422008-04-28 12:24:45 +08001708static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1709
1710static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1711 unsigned long cr0,
1712 struct kvm_vcpu *vcpu)
1713{
1714 if (!(cr0 & X86_CR0_PG)) {
1715 /* From paging/starting to nonpaging */
1716 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001717 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001718 (CPU_BASED_CR3_LOAD_EXITING |
1719 CPU_BASED_CR3_STORE_EXITING));
1720 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02001721 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08001722 } else if (!is_paging(vcpu)) {
1723 /* From nonpaging to paging */
1724 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001725 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001726 ~(CPU_BASED_CR3_LOAD_EXITING |
1727 CPU_BASED_CR3_STORE_EXITING));
1728 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02001729 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08001730 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08001731
1732 if (!(cr0 & X86_CR0_WP))
1733 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08001734}
1735
Avi Kivity6aa8b732006-12-10 02:21:36 -08001736static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1737{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001738 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001739 unsigned long hw_cr0;
1740
1741 if (enable_unrestricted_guest)
1742 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
1743 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
1744 else
1745 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08001746
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001747 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001748 enter_pmode(vcpu);
1749
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001750 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001751 enter_rmode(vcpu);
1752
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001753#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02001754 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001755 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001756 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10001757 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001758 exit_lmode(vcpu);
1759 }
1760#endif
1761
Avi Kivity089d0342009-03-23 18:26:32 +02001762 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001763 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1764
Avi Kivity02daab22009-12-30 12:40:26 +02001765 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02001766 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02001767
Avi Kivity6aa8b732006-12-10 02:21:36 -08001768 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001769 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001770 vcpu->arch.cr0 = cr0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001771}
1772
Sheng Yang14394422008-04-28 12:24:45 +08001773static u64 construct_eptp(unsigned long root_hpa)
1774{
1775 u64 eptp;
1776
1777 /* TODO write the value reading from MSR */
1778 eptp = VMX_EPT_DEFAULT_MT |
1779 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1780 eptp |= (root_hpa & PAGE_MASK);
1781
1782 return eptp;
1783}
1784
Avi Kivity6aa8b732006-12-10 02:21:36 -08001785static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1786{
Sheng Yang14394422008-04-28 12:24:45 +08001787 unsigned long guest_cr3;
1788 u64 eptp;
1789
1790 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02001791 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001792 eptp = construct_eptp(cr3);
1793 vmcs_write64(EPT_POINTER, eptp);
Sheng Yang14394422008-04-28 12:24:45 +08001794 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
Sheng Yangb927a3c2009-07-21 10:42:48 +08001795 vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02001796 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001797 }
1798
Sheng Yang2384d2b2008-01-17 15:14:33 +08001799 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001800 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001801}
1802
1803static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1804{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001805 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08001806 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1807
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001808 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02001809 if (enable_ept) {
1810 if (!is_paging(vcpu)) {
1811 hw_cr4 &= ~X86_CR4_PAE;
1812 hw_cr4 |= X86_CR4_PSE;
1813 } else if (!(cr4 & X86_CR4_PAE)) {
1814 hw_cr4 &= ~X86_CR4_PAE;
1815 }
1816 }
Sheng Yang14394422008-04-28 12:24:45 +08001817
1818 vmcs_writel(CR4_READ_SHADOW, cr4);
1819 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001820}
1821
Avi Kivity6aa8b732006-12-10 02:21:36 -08001822static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1823{
1824 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1825
1826 return vmcs_readl(sf->base);
1827}
1828
1829static void vmx_get_segment(struct kvm_vcpu *vcpu,
1830 struct kvm_segment *var, int seg)
1831{
1832 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1833 u32 ar;
1834
1835 var->base = vmcs_readl(sf->base);
1836 var->limit = vmcs_read32(sf->limit);
1837 var->selector = vmcs_read16(sf->selector);
1838 ar = vmcs_read32(sf->ar_bytes);
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02001839 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001840 ar = 0;
1841 var->type = ar & 15;
1842 var->s = (ar >> 4) & 1;
1843 var->dpl = (ar >> 5) & 3;
1844 var->present = (ar >> 7) & 1;
1845 var->avl = (ar >> 12) & 1;
1846 var->l = (ar >> 13) & 1;
1847 var->db = (ar >> 14) & 1;
1848 var->g = (ar >> 15) & 1;
1849 var->unusable = (ar >> 16) & 1;
1850}
1851
Izik Eidus2e4d2652008-03-24 19:38:34 +02001852static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1853{
Avi Kivity3eeb3282010-01-21 15:31:48 +02001854 if (!is_protmode(vcpu))
Izik Eidus2e4d2652008-03-24 19:38:34 +02001855 return 0;
1856
1857 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1858 return 3;
1859
Avi Kivityeab4b8a2009-08-04 15:02:54 +03001860 return vmcs_read16(GUEST_CS_SELECTOR) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02001861}
1862
Avi Kivity653e3102007-05-07 10:55:37 +03001863static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001864{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001865 u32 ar;
1866
Avi Kivity653e3102007-05-07 10:55:37 +03001867 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001868 ar = 1 << 16;
1869 else {
1870 ar = var->type & 15;
1871 ar |= (var->s & 1) << 4;
1872 ar |= (var->dpl & 3) << 5;
1873 ar |= (var->present & 1) << 7;
1874 ar |= (var->avl & 1) << 12;
1875 ar |= (var->l & 1) << 13;
1876 ar |= (var->db & 1) << 14;
1877 ar |= (var->g & 1) << 15;
1878 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001879 if (ar == 0) /* a 0 value means unusable */
1880 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001881
1882 return ar;
1883}
1884
1885static void vmx_set_segment(struct kvm_vcpu *vcpu,
1886 struct kvm_segment *var, int seg)
1887{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001888 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03001889 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1890 u32 ar;
1891
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001892 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
1893 vmx->rmode.tr.selector = var->selector;
1894 vmx->rmode.tr.base = var->base;
1895 vmx->rmode.tr.limit = var->limit;
1896 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001897 return;
1898 }
1899 vmcs_writel(sf->base, var->base);
1900 vmcs_write32(sf->limit, var->limit);
1901 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001902 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001903 /*
1904 * Hack real-mode segments into vm86 compatibility.
1905 */
1906 if (var->base == 0xffff0000 && var->selector == 0xf000)
1907 vmcs_writel(sf->base, 0xf0000);
1908 ar = 0xf3;
1909 } else
1910 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001911
1912 /*
1913 * Fix the "Accessed" bit in AR field of segment registers for older
1914 * qemu binaries.
1915 * IA32 arch specifies that at the time of processor reset the
1916 * "Accessed" bit in the AR field of segment registers is 1. And qemu
1917 * is setting it to 0 in the usedland code. This causes invalid guest
1918 * state vmexit when "unrestricted guest" mode is turned on.
1919 * Fix for this setup issue in cpu_reset is being pushed in the qemu
1920 * tree. Newer qemu binaries with that qemu fix would not need this
1921 * kvm hack.
1922 */
1923 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
1924 ar |= 0x1; /* Accessed */
1925
Avi Kivity6aa8b732006-12-10 02:21:36 -08001926 vmcs_write32(sf->ar_bytes, ar);
1927}
1928
Avi Kivity6aa8b732006-12-10 02:21:36 -08001929static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1930{
1931 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1932
1933 *db = (ar >> 14) & 1;
1934 *l = (ar >> 13) & 1;
1935}
1936
Gleb Natapov89a27f42010-02-16 10:51:48 +02001937static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001938{
Gleb Natapov89a27f42010-02-16 10:51:48 +02001939 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
1940 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001941}
1942
Gleb Natapov89a27f42010-02-16 10:51:48 +02001943static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001944{
Gleb Natapov89a27f42010-02-16 10:51:48 +02001945 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
1946 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001947}
1948
Gleb Natapov89a27f42010-02-16 10:51:48 +02001949static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001950{
Gleb Natapov89a27f42010-02-16 10:51:48 +02001951 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
1952 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001953}
1954
Gleb Natapov89a27f42010-02-16 10:51:48 +02001955static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001956{
Gleb Natapov89a27f42010-02-16 10:51:48 +02001957 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
1958 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001959}
1960
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001961static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1962{
1963 struct kvm_segment var;
1964 u32 ar;
1965
1966 vmx_get_segment(vcpu, &var, seg);
1967 ar = vmx_segment_access_rights(&var);
1968
1969 if (var.base != (var.selector << 4))
1970 return false;
1971 if (var.limit != 0xffff)
1972 return false;
1973 if (ar != 0xf3)
1974 return false;
1975
1976 return true;
1977}
1978
1979static bool code_segment_valid(struct kvm_vcpu *vcpu)
1980{
1981 struct kvm_segment cs;
1982 unsigned int cs_rpl;
1983
1984 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1985 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1986
Avi Kivity1872a3f2009-01-04 23:26:52 +02001987 if (cs.unusable)
1988 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001989 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1990 return false;
1991 if (!cs.s)
1992 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001993 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001994 if (cs.dpl > cs_rpl)
1995 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001996 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001997 if (cs.dpl != cs_rpl)
1998 return false;
1999 }
2000 if (!cs.present)
2001 return false;
2002
2003 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
2004 return true;
2005}
2006
2007static bool stack_segment_valid(struct kvm_vcpu *vcpu)
2008{
2009 struct kvm_segment ss;
2010 unsigned int ss_rpl;
2011
2012 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2013 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
2014
Avi Kivity1872a3f2009-01-04 23:26:52 +02002015 if (ss.unusable)
2016 return true;
2017 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002018 return false;
2019 if (!ss.s)
2020 return false;
2021 if (ss.dpl != ss_rpl) /* DPL != RPL */
2022 return false;
2023 if (!ss.present)
2024 return false;
2025
2026 return true;
2027}
2028
2029static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
2030{
2031 struct kvm_segment var;
2032 unsigned int rpl;
2033
2034 vmx_get_segment(vcpu, &var, seg);
2035 rpl = var.selector & SELECTOR_RPL_MASK;
2036
Avi Kivity1872a3f2009-01-04 23:26:52 +02002037 if (var.unusable)
2038 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002039 if (!var.s)
2040 return false;
2041 if (!var.present)
2042 return false;
2043 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
2044 if (var.dpl < rpl) /* DPL < RPL */
2045 return false;
2046 }
2047
2048 /* TODO: Add other members to kvm_segment_field to allow checking for other access
2049 * rights flags
2050 */
2051 return true;
2052}
2053
2054static bool tr_valid(struct kvm_vcpu *vcpu)
2055{
2056 struct kvm_segment tr;
2057
2058 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
2059
Avi Kivity1872a3f2009-01-04 23:26:52 +02002060 if (tr.unusable)
2061 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002062 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2063 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02002064 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002065 return false;
2066 if (!tr.present)
2067 return false;
2068
2069 return true;
2070}
2071
2072static bool ldtr_valid(struct kvm_vcpu *vcpu)
2073{
2074 struct kvm_segment ldtr;
2075
2076 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
2077
Avi Kivity1872a3f2009-01-04 23:26:52 +02002078 if (ldtr.unusable)
2079 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002080 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2081 return false;
2082 if (ldtr.type != 2)
2083 return false;
2084 if (!ldtr.present)
2085 return false;
2086
2087 return true;
2088}
2089
2090static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
2091{
2092 struct kvm_segment cs, ss;
2093
2094 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
2095 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2096
2097 return ((cs.selector & SELECTOR_RPL_MASK) ==
2098 (ss.selector & SELECTOR_RPL_MASK));
2099}
2100
2101/*
2102 * Check if guest state is valid. Returns true if valid, false if
2103 * not.
2104 * We assume that registers are always usable
2105 */
2106static bool guest_state_valid(struct kvm_vcpu *vcpu)
2107{
2108 /* real mode guest state checks */
Avi Kivity3eeb3282010-01-21 15:31:48 +02002109 if (!is_protmode(vcpu)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002110 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
2111 return false;
2112 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
2113 return false;
2114 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
2115 return false;
2116 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
2117 return false;
2118 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
2119 return false;
2120 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
2121 return false;
2122 } else {
2123 /* protected mode guest state checks */
2124 if (!cs_ss_rpl_check(vcpu))
2125 return false;
2126 if (!code_segment_valid(vcpu))
2127 return false;
2128 if (!stack_segment_valid(vcpu))
2129 return false;
2130 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
2131 return false;
2132 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
2133 return false;
2134 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
2135 return false;
2136 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
2137 return false;
2138 if (!tr_valid(vcpu))
2139 return false;
2140 if (!ldtr_valid(vcpu))
2141 return false;
2142 }
2143 /* TODO:
2144 * - Add checks on RIP
2145 * - Add checks on RFLAGS
2146 */
2147
2148 return true;
2149}
2150
Mike Dayd77c26f2007-10-08 09:02:08 -04002151static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002152{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002153 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02002154 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002155 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02002156 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002157
Izik Eidus195aefd2007-10-01 22:14:18 +02002158 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2159 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002160 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002161 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08002162 r = kvm_write_guest_page(kvm, fn++, &data,
2163 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02002164 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002165 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002166 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
2167 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002168 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002169 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2170 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002171 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002172 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002173 r = kvm_write_guest_page(kvm, fn, &data,
2174 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
2175 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02002176 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002177 goto out;
2178
2179 ret = 1;
2180out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002181 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002182}
2183
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002184static int init_rmode_identity_map(struct kvm *kvm)
2185{
2186 int i, r, ret;
2187 pfn_t identity_map_pfn;
2188 u32 tmp;
2189
Avi Kivity089d0342009-03-23 18:26:32 +02002190 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002191 return 1;
2192 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
2193 printk(KERN_ERR "EPT: identity-mapping pagetable "
2194 "haven't been allocated!\n");
2195 return 0;
2196 }
2197 if (likely(kvm->arch.ept_identity_pagetable_done))
2198 return 1;
2199 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002200 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002201 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
2202 if (r < 0)
2203 goto out;
2204 /* Set up identity-mapping pagetable for EPT in real mode */
2205 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2206 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2207 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2208 r = kvm_write_guest_page(kvm, identity_map_pfn,
2209 &tmp, i * sizeof(tmp), sizeof(tmp));
2210 if (r < 0)
2211 goto out;
2212 }
2213 kvm->arch.ept_identity_pagetable_done = true;
2214 ret = 1;
2215out:
2216 return ret;
2217}
2218
Avi Kivity6aa8b732006-12-10 02:21:36 -08002219static void seg_setup(int seg)
2220{
2221 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002222 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002223
2224 vmcs_write16(sf->selector, 0);
2225 vmcs_writel(sf->base, 0);
2226 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002227 if (enable_unrestricted_guest) {
2228 ar = 0x93;
2229 if (seg == VCPU_SREG_CS)
2230 ar |= 0x08; /* code segment */
2231 } else
2232 ar = 0xf3;
2233
2234 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002235}
2236
Sheng Yangf78e0e22007-10-29 09:40:42 +08002237static int alloc_apic_access_page(struct kvm *kvm)
2238{
2239 struct kvm_userspace_memory_region kvm_userspace_mem;
2240 int r = 0;
2241
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002242 mutex_lock(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002243 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08002244 goto out;
2245 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
2246 kvm_userspace_mem.flags = 0;
2247 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
2248 kvm_userspace_mem.memory_size = PAGE_SIZE;
2249 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2250 if (r)
2251 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002252
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002253 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002254out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002255 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002256 return r;
2257}
2258
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002259static int alloc_identity_pagetable(struct kvm *kvm)
2260{
2261 struct kvm_userspace_memory_region kvm_userspace_mem;
2262 int r = 0;
2263
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002264 mutex_lock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002265 if (kvm->arch.ept_identity_pagetable)
2266 goto out;
2267 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2268 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002269 kvm_userspace_mem.guest_phys_addr =
2270 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002271 kvm_userspace_mem.memory_size = PAGE_SIZE;
2272 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2273 if (r)
2274 goto out;
2275
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002276 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08002277 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002278out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002279 mutex_unlock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002280 return r;
2281}
2282
Sheng Yang2384d2b2008-01-17 15:14:33 +08002283static void allocate_vpid(struct vcpu_vmx *vmx)
2284{
2285 int vpid;
2286
2287 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02002288 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002289 return;
2290 spin_lock(&vmx_vpid_lock);
2291 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2292 if (vpid < VMX_NR_VPIDS) {
2293 vmx->vpid = vpid;
2294 __set_bit(vpid, vmx_vpid_bitmap);
2295 }
2296 spin_unlock(&vmx_vpid_lock);
2297}
2298
Avi Kivity58972972009-02-24 22:26:47 +02002299static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002300{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002301 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08002302
2303 if (!cpu_has_vmx_msr_bitmap())
2304 return;
2305
2306 /*
2307 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2308 * have the write-low and read-high bitmap offsets the wrong way round.
2309 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2310 */
Sheng Yang25c5f222008-03-28 13:18:56 +08002311 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002312 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
2313 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08002314 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2315 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002316 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
2317 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08002318 }
Sheng Yang25c5f222008-03-28 13:18:56 +08002319}
2320
Avi Kivity58972972009-02-24 22:26:47 +02002321static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
2322{
2323 if (!longmode_only)
2324 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
2325 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
2326}
2327
Avi Kivity6aa8b732006-12-10 02:21:36 -08002328/*
2329 * Sets up the vmcs for emulated real mode.
2330 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002331static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002332{
Sheng Yang468d4722008-10-09 16:01:55 +08002333 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002334 u32 junk;
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01002335 u64 host_pat, tsc_this, tsc_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002336 unsigned long a;
Gleb Natapov89a27f42010-02-16 10:51:48 +02002337 struct desc_ptr dt;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002338 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002339 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002340 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341
Avi Kivity6aa8b732006-12-10 02:21:36 -08002342 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002343 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
2344 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002345
Sheng Yang25c5f222008-03-28 13:18:56 +08002346 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02002347 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08002348
Avi Kivity6aa8b732006-12-10 02:21:36 -08002349 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2350
Avi Kivity6aa8b732006-12-10 02:21:36 -08002351 /* Control */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002352 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2353 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002354
2355 exec_control = vmcs_config.cpu_based_exec_ctrl;
2356 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2357 exec_control &= ~CPU_BASED_TPR_SHADOW;
2358#ifdef CONFIG_X86_64
2359 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2360 CPU_BASED_CR8_LOAD_EXITING;
2361#endif
2362 }
Avi Kivity089d0342009-03-23 18:26:32 +02002363 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002364 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03002365 CPU_BASED_CR3_LOAD_EXITING |
2366 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002367 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002368
Sheng Yang83ff3b92007-11-21 14:33:25 +08002369 if (cpu_has_secondary_exec_ctrls()) {
2370 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2371 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2372 exec_control &=
2373 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002374 if (vmx->vpid == 0)
2375 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang046d8712009-11-27 16:46:26 +08002376 if (!enable_ept) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002377 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang046d8712009-11-27 16:46:26 +08002378 enable_unrestricted_guest = 0;
2379 }
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002380 if (!enable_unrestricted_guest)
2381 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002382 if (!ple_gap)
2383 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002384 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2385 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002386
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002387 if (ple_gap) {
2388 vmcs_write32(PLE_GAP, ple_gap);
2389 vmcs_write32(PLE_WINDOW, ple_window);
2390 }
2391
Avi Kivityc7addb92007-09-16 18:58:32 +02002392 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2393 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002394 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2395
2396 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2397 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2398 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2399
2400 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2401 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2402 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002403 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2404 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002405 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002406#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002407 rdmsrl(MSR_FS_BASE, a);
2408 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2409 rdmsrl(MSR_GS_BASE, a);
2410 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2411#else
2412 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2413 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2414#endif
2415
2416 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2417
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002418 kvm_get_idt(&dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02002419 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002420
Mike Dayd77c26f2007-10-08 09:02:08 -04002421 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002422 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002423 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2424 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2425 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002426
2427 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2428 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2429 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2430 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2431 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2432 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2433
Sheng Yang468d4722008-10-09 16:01:55 +08002434 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2435 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2436 host_pat = msr_low | ((u64) msr_high << 32);
2437 vmcs_write64(HOST_IA32_PAT, host_pat);
2438 }
2439 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2440 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2441 host_pat = msr_low | ((u64) msr_high << 32);
2442 /* Write the default value follow host pat */
2443 vmcs_write64(GUEST_IA32_PAT, host_pat);
2444 /* Keep arch.pat sync with GUEST_IA32_PAT */
2445 vmx->vcpu.arch.pat = host_pat;
2446 }
2447
Avi Kivity6aa8b732006-12-10 02:21:36 -08002448 for (i = 0; i < NR_VMX_MSR; ++i) {
2449 u32 index = vmx_msr_index[i];
2450 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002451 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002452
2453 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2454 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002455 if (wrmsr_safe(index, data_low, data_high) < 0)
2456 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03002457 vmx->guest_msrs[j].index = i;
2458 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02002459 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002460 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002461 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002462
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002463 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002464
2465 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002466 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2467
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002468 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Avi Kivity4c386092009-12-07 12:26:18 +02002469 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
Avi Kivityce03e4f2009-12-07 12:29:14 +02002470 if (enable_ept)
2471 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Avi Kivity4c386092009-12-07 12:26:18 +02002472 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002473
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01002474 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2475 rdtscll(tsc_this);
2476 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2477 tsc_base = tsc_this;
2478
2479 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002480
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002481 return 0;
2482}
2483
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002484static int init_rmode(struct kvm *kvm)
2485{
2486 if (!init_rmode_tss(kvm))
2487 return 0;
2488 if (!init_rmode_identity_map(kvm))
2489 return 0;
2490 return 1;
2491}
2492
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002493static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2494{
2495 struct vcpu_vmx *vmx = to_vmx(vcpu);
2496 u64 msr;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002497 int ret, idx;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002498
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002499 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002500 idx = srcu_read_lock(&vcpu->kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002501 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002502 ret = -ENOMEM;
2503 goto out;
2504 }
2505
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002506 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002507
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002508 vmx->soft_vnmi_blocked = 0;
2509
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002510 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002511 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002512 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002513 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002514 msr |= MSR_IA32_APICBASE_BSP;
2515 kvm_set_apic_base(&vmx->vcpu, msr);
2516
2517 fx_init(&vmx->vcpu);
2518
Avi Kivity5706be02008-08-20 15:07:31 +03002519 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002520 /*
2521 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2522 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2523 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002524 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002525 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2526 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2527 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002528 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2529 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002530 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002531
2532 seg_setup(VCPU_SREG_DS);
2533 seg_setup(VCPU_SREG_ES);
2534 seg_setup(VCPU_SREG_FS);
2535 seg_setup(VCPU_SREG_GS);
2536 seg_setup(VCPU_SREG_SS);
2537
2538 vmcs_write16(GUEST_TR_SELECTOR, 0);
2539 vmcs_writel(GUEST_TR_BASE, 0);
2540 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2541 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2542
2543 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2544 vmcs_writel(GUEST_LDTR_BASE, 0);
2545 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2546 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2547
2548 vmcs_write32(GUEST_SYSENTER_CS, 0);
2549 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2550 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2551
2552 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002553 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002554 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002555 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002556 kvm_rip_write(vcpu, 0);
2557 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002558
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002559 vmcs_writel(GUEST_DR7, 0x400);
2560
2561 vmcs_writel(GUEST_GDTR_BASE, 0);
2562 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2563
2564 vmcs_writel(GUEST_IDTR_BASE, 0);
2565 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2566
2567 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2568 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2569 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2570
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002571 /* Special registers */
2572 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2573
2574 setup_msrs(vmx);
2575
Avi Kivity6aa8b732006-12-10 02:21:36 -08002576 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2577
Sheng Yangf78e0e22007-10-29 09:40:42 +08002578 if (cpu_has_vmx_tpr_shadow()) {
2579 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2580 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2581 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002582 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002583 vmcs_write32(TPR_THRESHOLD, 0);
2584 }
2585
2586 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2587 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002588 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002589
Sheng Yang2384d2b2008-01-17 15:14:33 +08002590 if (vmx->vpid != 0)
2591 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2592
Eduardo Habkostfa400522009-10-24 02:49:58 -02002593 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Avi Kivity4d4ec082009-12-29 18:07:30 +02002594 vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002595 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002596 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002597 vmx_fpu_activate(&vmx->vcpu);
2598 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002599
Sheng Yang2384d2b2008-01-17 15:14:33 +08002600 vpid_sync_vcpu_all(vmx);
2601
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002602 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002603
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002604 /* HACK: Don't enable emulation on guest boot/reset */
2605 vmx->emulation_required = 0;
2606
Avi Kivity6aa8b732006-12-10 02:21:36 -08002607out:
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002608 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002609 return ret;
2610}
2611
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002612static void enable_irq_window(struct kvm_vcpu *vcpu)
2613{
2614 u32 cpu_based_vm_exec_control;
2615
2616 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2617 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2618 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2619}
2620
2621static void enable_nmi_window(struct kvm_vcpu *vcpu)
2622{
2623 u32 cpu_based_vm_exec_control;
2624
2625 if (!cpu_has_virtual_nmis()) {
2626 enable_irq_window(vcpu);
2627 return;
2628 }
2629
2630 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2631 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2632 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2633}
2634
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002635static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03002636{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002637 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002638 uint32_t intr;
2639 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02002640
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002641 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002642
Avi Kivityfa89a812008-09-01 15:57:51 +03002643 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002644 if (vmx->rmode.vm86_active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002645 vmx->rmode.irq.pending = true;
2646 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002647 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +03002648 if (vcpu->arch.interrupt.soft)
2649 vmx->rmode.irq.rip +=
2650 vmx->vcpu.arch.event_exit_inst_len;
Avi Kivity9c5623e2007-11-08 18:19:20 +02002651 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2652 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2653 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002654 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002655 return;
2656 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002657 intr = irq | INTR_INFO_VALID_MASK;
2658 if (vcpu->arch.interrupt.soft) {
2659 intr |= INTR_TYPE_SOFT_INTR;
2660 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2661 vmx->vcpu.arch.event_exit_inst_len);
2662 } else
2663 intr |= INTR_TYPE_EXT_INTR;
2664 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03002665}
2666
Sheng Yangf08864b2008-05-15 18:23:25 +08002667static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2668{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002669 struct vcpu_vmx *vmx = to_vmx(vcpu);
2670
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002671 if (!cpu_has_virtual_nmis()) {
2672 /*
2673 * Tracking the NMI-blocked state in software is built upon
2674 * finding the next open IRQ window. This, in turn, depends on
2675 * well-behaving guests: They have to keep IRQs disabled at
2676 * least as long as the NMI handler runs. Otherwise we may
2677 * cause NMI nesting, maybe breaking the guest. But as this is
2678 * highly unlikely, we can live with the residual risk.
2679 */
2680 vmx->soft_vnmi_blocked = 1;
2681 vmx->vnmi_blocked_time = 0;
2682 }
2683
Jan Kiszka487b3912008-09-26 09:30:56 +02002684 ++vcpu->stat.nmi_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002685 if (vmx->rmode.vm86_active) {
Jan Kiszka66a5a342008-09-26 09:30:51 +02002686 vmx->rmode.irq.pending = true;
2687 vmx->rmode.irq.vector = NMI_VECTOR;
2688 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2689 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2690 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2691 INTR_INFO_VALID_MASK);
2692 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2693 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2694 return;
2695 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002696 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2697 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002698}
2699
Gleb Natapovc4282df2009-04-21 17:45:07 +03002700static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02002701{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002702 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03002703 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002704
Gleb Natapovc4282df2009-04-21 17:45:07 +03002705 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2706 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS |
2707 GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02002708}
2709
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002710static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
2711{
2712 if (!cpu_has_virtual_nmis())
2713 return to_vmx(vcpu)->soft_vnmi_blocked;
2714 else
2715 return !!(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2716 GUEST_INTR_STATE_NMI);
2717}
2718
2719static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
2720{
2721 struct vcpu_vmx *vmx = to_vmx(vcpu);
2722
2723 if (!cpu_has_virtual_nmis()) {
2724 if (vmx->soft_vnmi_blocked != masked) {
2725 vmx->soft_vnmi_blocked = masked;
2726 vmx->vnmi_blocked_time = 0;
2727 }
2728 } else {
2729 if (masked)
2730 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
2731 GUEST_INTR_STATE_NMI);
2732 else
2733 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
2734 GUEST_INTR_STATE_NMI);
2735 }
2736}
2737
Gleb Natapov78646122009-03-23 12:12:11 +02002738static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2739{
Gleb Natapovc4282df2009-04-21 17:45:07 +03002740 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2741 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2742 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02002743}
2744
Izik Eiduscbc94022007-10-25 00:29:55 +02002745static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2746{
2747 int ret;
2748 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002749 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002750 .guest_phys_addr = addr,
2751 .memory_size = PAGE_SIZE * 3,
2752 .flags = 0,
2753 };
2754
2755 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2756 if (ret)
2757 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002758 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002759 return 0;
2760}
2761
Avi Kivity6aa8b732006-12-10 02:21:36 -08002762static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2763 int vec, u32 err_code)
2764{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002765 /*
2766 * Instruction with address size override prefix opcode 0x67
2767 * Cause the #SS fault with 0 error code in VM86 mode.
2768 */
2769 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Avi Kivity851ba692009-08-24 11:10:17 +03002770 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002771 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002772 /*
2773 * Forward all other exceptions that are valid in real mode.
2774 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2775 * the required debugging infrastructure rework.
2776 */
2777 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002778 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002779 if (vcpu->guest_debug &
2780 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2781 return 0;
2782 kvm_queue_exception(vcpu, vec);
2783 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002784 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01002785 /*
2786 * Update instruction length as we may reinject the exception
2787 * from user space while in guest debugging mode.
2788 */
2789 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
2790 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002791 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2792 return 0;
2793 /* fall through */
2794 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002795 case OF_VECTOR:
2796 case BR_VECTOR:
2797 case UD_VECTOR:
2798 case DF_VECTOR:
2799 case SS_VECTOR:
2800 case GP_VECTOR:
2801 case MF_VECTOR:
2802 kvm_queue_exception(vcpu, vec);
2803 return 1;
2804 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002805 return 0;
2806}
2807
Andi Kleena0861c02009-06-08 17:37:09 +08002808/*
2809 * Trigger machine check on the host. We assume all the MSRs are already set up
2810 * by the CPU and that we still run on the same CPU as the MCE occurred on.
2811 * We pass a fake environment to the machine check handler because we want
2812 * the guest to be always treated like user space, no matter what context
2813 * it used internally.
2814 */
2815static void kvm_machine_check(void)
2816{
2817#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
2818 struct pt_regs regs = {
2819 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
2820 .flags = X86_EFLAGS_IF,
2821 };
2822
2823 do_machine_check(&regs, 0);
2824#endif
2825}
2826
Avi Kivity851ba692009-08-24 11:10:17 +03002827static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08002828{
2829 /* already handled by vcpu_run */
2830 return 1;
2831}
2832
Avi Kivity851ba692009-08-24 11:10:17 +03002833static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002834{
Avi Kivity1155f762007-11-22 11:30:47 +02002835 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002836 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002837 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002838 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002839 u32 vect_info;
2840 enum emulation_result er;
2841
Avi Kivity1155f762007-11-22 11:30:47 +02002842 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002843 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2844
Andi Kleena0861c02009-06-08 17:37:09 +08002845 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03002846 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08002847
Avi Kivity6aa8b732006-12-10 02:21:36 -08002848 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Avi Kivity65ac7262009-11-04 11:59:01 +02002849 !is_page_fault(intr_info)) {
2850 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
2851 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
2852 vcpu->run->internal.ndata = 2;
2853 vcpu->run->internal.data[0] = vect_info;
2854 vcpu->run->internal.data[1] = intr_info;
2855 return 0;
2856 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002857
Jan Kiszkae4a41882008-09-26 09:30:46 +02002858 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002859 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002860
2861 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002862 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002863 return 1;
2864 }
2865
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002866 if (is_invalid_opcode(intr_info)) {
Avi Kivity851ba692009-08-24 11:10:17 +03002867 er = emulate_instruction(vcpu, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002868 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002869 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002870 return 1;
2871 }
2872
Avi Kivity6aa8b732006-12-10 02:21:36 -08002873 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002874 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002875 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002876 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2877 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002878 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02002879 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002880 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002881 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002882 trace_kvm_page_fault(cr2, error_code);
2883
Gleb Natapov3298b752009-05-11 13:35:46 +03002884 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03002885 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002886 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002887 }
2888
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002889 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002890 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002891 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002892 if (vcpu->arch.halt_request) {
2893 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002894 return kvm_emulate_halt(vcpu);
2895 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002896 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002897 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002898
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002899 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002900 switch (ex_no) {
2901 case DB_VECTOR:
2902 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2903 if (!(vcpu->guest_debug &
2904 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2905 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2906 kvm_queue_exception(vcpu, DB_VECTOR);
2907 return 1;
2908 }
2909 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2910 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2911 /* fall through */
2912 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01002913 /*
2914 * Update instruction length as we may reinject #BP from
2915 * user space while in guest debugging mode. Reading it for
2916 * #DB as well causes no harm, it is not used in that case.
2917 */
2918 vmx->vcpu.arch.event_exit_inst_len =
2919 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002920 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002921 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2922 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002923 break;
2924 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002925 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2926 kvm_run->ex.exception = ex_no;
2927 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002928 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002929 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002930 return 0;
2931}
2932
Avi Kivity851ba692009-08-24 11:10:17 +03002933static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002934{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002935 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002936 return 1;
2937}
2938
Avi Kivity851ba692009-08-24 11:10:17 +03002939static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08002940{
Avi Kivity851ba692009-08-24 11:10:17 +03002941 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08002942 return 0;
2943}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002944
Avi Kivity851ba692009-08-24 11:10:17 +03002945static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002946{
He, Qingbfdaab02007-09-12 14:18:28 +08002947 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002948 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002949 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002950
Avi Kivity1165f5f2007-04-19 17:27:43 +03002951 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002952 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002953 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002954
2955 if (string) {
Avi Kivity851ba692009-08-24 11:10:17 +03002956 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002957 return 0;
2958 return 1;
2959 }
2960
2961 size = (exit_qualification & 7) + 1;
2962 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002963 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002964
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002965 skip_emulated_instruction(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002966 return kvm_emulate_pio(vcpu, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002967}
2968
Ingo Molnar102d8322007-02-19 14:37:47 +02002969static void
2970vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2971{
2972 /*
2973 * Patch in the VMCALL instruction:
2974 */
2975 hypercall[0] = 0x0f;
2976 hypercall[1] = 0x01;
2977 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002978}
2979
Avi Kivity851ba692009-08-24 11:10:17 +03002980static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002981{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002982 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002983 int cr;
2984 int reg;
2985
He, Qingbfdaab02007-09-12 14:18:28 +08002986 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002987 cr = exit_qualification & 15;
2988 reg = (exit_qualification >> 8) & 15;
2989 switch ((exit_qualification >> 4) & 3) {
2990 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002991 val = kvm_register_read(vcpu, reg);
2992 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002993 switch (cr) {
2994 case 0:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002995 kvm_set_cr0(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002996 skip_emulated_instruction(vcpu);
2997 return 1;
2998 case 3:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002999 kvm_set_cr3(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003000 skip_emulated_instruction(vcpu);
3001 return 1;
3002 case 4:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003003 kvm_set_cr4(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003004 skip_emulated_instruction(vcpu);
3005 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03003006 case 8: {
3007 u8 cr8_prev = kvm_get_cr8(vcpu);
3008 u8 cr8 = kvm_register_read(vcpu, reg);
3009 kvm_set_cr8(vcpu, cr8);
3010 skip_emulated_instruction(vcpu);
3011 if (irqchip_in_kernel(vcpu->kvm))
3012 return 1;
3013 if (cr8_prev <= cr8)
3014 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03003015 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03003016 return 0;
3017 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003018 };
3019 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03003020 case 2: /* clts */
Avi Kivityedcafe32009-12-30 18:07:40 +02003021 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02003022 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03003023 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02003024 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03003025 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003026 case 1: /*mov from cr*/
3027 switch (cr) {
3028 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003029 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003030 trace_kvm_cr_read(cr, vcpu->arch.cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003031 skip_emulated_instruction(vcpu);
3032 return 1;
3033 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003034 val = kvm_get_cr8(vcpu);
3035 kvm_register_write(vcpu, reg, val);
3036 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003037 skip_emulated_instruction(vcpu);
3038 return 1;
3039 }
3040 break;
3041 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02003042 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02003043 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02003044 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003045
3046 skip_emulated_instruction(vcpu);
3047 return 1;
3048 default:
3049 break;
3050 }
Avi Kivity851ba692009-08-24 11:10:17 +03003051 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10003052 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08003053 (int)(exit_qualification >> 4) & 3, cr);
3054 return 0;
3055}
3056
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003057static int check_dr_alias(struct kvm_vcpu *vcpu)
3058{
3059 if (kvm_read_cr4_bits(vcpu, X86_CR4_DE)) {
3060 kvm_queue_exception(vcpu, UD_VECTOR);
3061 return -1;
3062 }
3063 return 0;
3064}
3065
Avi Kivity851ba692009-08-24 11:10:17 +03003066static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003067{
He, Qingbfdaab02007-09-12 14:18:28 +08003068 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003069 unsigned long val;
3070 int dr, reg;
3071
Jan Kiszkaf2483412010-01-20 18:20:20 +01003072 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03003073 if (!kvm_require_cpl(vcpu, 0))
3074 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003075 dr = vmcs_readl(GUEST_DR7);
3076 if (dr & DR7_GD) {
3077 /*
3078 * As the vm-exit takes precedence over the debug trap, we
3079 * need to emulate the latter, either for the host or the
3080 * guest debugging itself.
3081 */
3082 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03003083 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
3084 vcpu->run->debug.arch.dr7 = dr;
3085 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003086 vmcs_readl(GUEST_CS_BASE) +
3087 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03003088 vcpu->run->debug.arch.exception = DB_VECTOR;
3089 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003090 return 0;
3091 } else {
3092 vcpu->arch.dr7 &= ~DR7_GD;
3093 vcpu->arch.dr6 |= DR6_BD;
3094 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3095 kvm_queue_exception(vcpu, DB_VECTOR);
3096 return 1;
3097 }
3098 }
3099
He, Qingbfdaab02007-09-12 14:18:28 +08003100 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003101 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
3102 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
3103 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003104 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003105 case 0 ... 3:
3106 val = vcpu->arch.db[dr];
3107 break;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003108 case 4:
3109 if (check_dr_alias(vcpu) < 0)
3110 return 1;
3111 /* fall through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003112 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003113 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003114 break;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003115 case 5:
3116 if (check_dr_alias(vcpu) < 0)
3117 return 1;
3118 /* fall through */
3119 default: /* 7 */
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003120 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003121 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003122 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003123 kvm_register_write(vcpu, reg, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003124 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003125 val = vcpu->arch.regs[reg];
3126 switch (dr) {
3127 case 0 ... 3:
3128 vcpu->arch.db[dr] = val;
3129 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
3130 vcpu->arch.eff_db[dr] = val;
3131 break;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003132 case 4:
3133 if (check_dr_alias(vcpu) < 0)
Jan Kiszkaf2483412010-01-20 18:20:20 +01003134 return 1;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003135 /* fall through */
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003136 case 6:
3137 if (val & 0xffffffff00000000ULL) {
Jan Kiszkaf2483412010-01-20 18:20:20 +01003138 kvm_inject_gp(vcpu, 0);
3139 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003140 }
3141 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
3142 break;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003143 case 5:
3144 if (check_dr_alias(vcpu) < 0)
3145 return 1;
3146 /* fall through */
3147 default: /* 7 */
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003148 if (val & 0xffffffff00000000ULL) {
Jan Kiszkaf2483412010-01-20 18:20:20 +01003149 kvm_inject_gp(vcpu, 0);
3150 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003151 }
3152 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
3153 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
3154 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3155 vcpu->arch.switch_db_regs =
3156 (val & DR7_BP_EN_MASK);
3157 }
3158 break;
3159 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003160 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003161 skip_emulated_instruction(vcpu);
3162 return 1;
3163}
3164
Avi Kivity851ba692009-08-24 11:10:17 +03003165static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003166{
Avi Kivity06465c52007-02-28 20:46:53 +02003167 kvm_emulate_cpuid(vcpu);
3168 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003169}
3170
Avi Kivity851ba692009-08-24 11:10:17 +03003171static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003172{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003173 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08003174 u64 data;
3175
3176 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivity59200272010-01-25 19:47:02 +02003177 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003178 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003179 return 1;
3180 }
3181
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003182 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003183
Avi Kivity6aa8b732006-12-10 02:21:36 -08003184 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003185 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
3186 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003187 skip_emulated_instruction(vcpu);
3188 return 1;
3189}
3190
Avi Kivity851ba692009-08-24 11:10:17 +03003191static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003192{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003193 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
3194 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
3195 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003196
3197 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02003198 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003199 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003200 return 1;
3201 }
3202
Avi Kivity59200272010-01-25 19:47:02 +02003203 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003204 skip_emulated_instruction(vcpu);
3205 return 1;
3206}
3207
Avi Kivity851ba692009-08-24 11:10:17 +03003208static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003209{
3210 return 1;
3211}
3212
Avi Kivity851ba692009-08-24 11:10:17 +03003213static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003214{
Eddie Dong85f455f2007-07-06 12:20:49 +03003215 u32 cpu_based_vm_exec_control;
3216
3217 /* clear pending irq */
3218 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3219 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
3220 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003221
Jan Kiszkaa26bf122008-09-26 09:30:45 +02003222 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003223
Dor Laorc1150d82007-01-05 16:36:24 -08003224 /*
3225 * If the user space waits to inject interrupts, exit as soon as
3226 * possible
3227 */
Gleb Natapov80618232009-04-21 17:44:56 +03003228 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03003229 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03003230 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003231 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08003232 return 0;
3233 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003234 return 1;
3235}
3236
Avi Kivity851ba692009-08-24 11:10:17 +03003237static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003238{
3239 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003240 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003241}
3242
Avi Kivity851ba692009-08-24 11:10:17 +03003243static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02003244{
Dor Laor510043d2007-02-19 18:25:43 +02003245 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003246 kvm_emulate_hypercall(vcpu);
3247 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003248}
3249
Avi Kivity851ba692009-08-24 11:10:17 +03003250static int handle_vmx_insn(struct kvm_vcpu *vcpu)
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003251{
3252 kvm_queue_exception(vcpu, UD_VECTOR);
3253 return 1;
3254}
3255
Avi Kivity851ba692009-08-24 11:10:17 +03003256static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003257{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003258 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003259
3260 kvm_mmu_invlpg(vcpu, exit_qualification);
3261 skip_emulated_instruction(vcpu);
3262 return 1;
3263}
3264
Avi Kivity851ba692009-08-24 11:10:17 +03003265static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02003266{
3267 skip_emulated_instruction(vcpu);
3268 /* TODO: Add support for VT-d/pass-through device */
3269 return 1;
3270}
3271
Avi Kivity851ba692009-08-24 11:10:17 +03003272static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003273{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003274 unsigned long exit_qualification;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003275 enum emulation_result er;
3276 unsigned long offset;
3277
Sheng Yangf9c617f2009-03-25 10:08:52 +08003278 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003279 offset = exit_qualification & 0xffful;
3280
Avi Kivity851ba692009-08-24 11:10:17 +03003281 er = emulate_instruction(vcpu, 0, 0, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003282
3283 if (er != EMULATE_DONE) {
3284 printk(KERN_ERR
3285 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3286 offset);
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003287 return -ENOEXEC;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003288 }
3289 return 1;
3290}
3291
Avi Kivity851ba692009-08-24 11:10:17 +03003292static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02003293{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003294 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003295 unsigned long exit_qualification;
3296 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003297 int reason, type, idt_v;
3298
3299 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
3300 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02003301
3302 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3303
3304 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003305 if (reason == TASK_SWITCH_GATE && idt_v) {
3306 switch (type) {
3307 case INTR_TYPE_NMI_INTR:
3308 vcpu->arch.nmi_injected = false;
3309 if (cpu_has_virtual_nmis())
3310 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3311 GUEST_INTR_STATE_NMI);
3312 break;
3313 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003314 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003315 kvm_clear_interrupt_queue(vcpu);
3316 break;
3317 case INTR_TYPE_HARD_EXCEPTION:
3318 case INTR_TYPE_SOFT_EXCEPTION:
3319 kvm_clear_exception_queue(vcpu);
3320 break;
3321 default:
3322 break;
3323 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02003324 }
Izik Eidus37817f22008-03-24 23:14:53 +02003325 tss_selector = exit_qualification;
3326
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003327 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
3328 type != INTR_TYPE_EXT_INTR &&
3329 type != INTR_TYPE_NMI_INTR))
3330 skip_emulated_instruction(vcpu);
3331
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003332 if (!kvm_task_switch(vcpu, tss_selector, reason))
3333 return 0;
3334
3335 /* clear all local breakpoint enable flags */
3336 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3337
3338 /*
3339 * TODO: What about debug traps on tss switch?
3340 * Are we supposed to inject them and update dr6?
3341 */
3342
3343 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003344}
3345
Avi Kivity851ba692009-08-24 11:10:17 +03003346static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08003347{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003348 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003349 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003350 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003351
Sheng Yangf9c617f2009-03-25 10:08:52 +08003352 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08003353
3354 if (exit_qualification & (1 << 6)) {
3355 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003356 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08003357 }
3358
3359 gla_validity = (exit_qualification >> 7) & 0x3;
3360 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3361 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3362 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3363 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08003364 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08003365 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3366 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03003367 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3368 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03003369 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08003370 }
3371
3372 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003373 trace_kvm_page_fault(gpa, exit_qualification);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003374 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003375}
3376
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003377static u64 ept_rsvd_mask(u64 spte, int level)
3378{
3379 int i;
3380 u64 mask = 0;
3381
3382 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
3383 mask |= (1ULL << i);
3384
3385 if (level > 2)
3386 /* bits 7:3 reserved */
3387 mask |= 0xf8;
3388 else if (level == 2) {
3389 if (spte & (1ULL << 7))
3390 /* 2MB ref, bits 20:12 reserved */
3391 mask |= 0x1ff000;
3392 else
3393 /* bits 6:3 reserved */
3394 mask |= 0x78;
3395 }
3396
3397 return mask;
3398}
3399
3400static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
3401 int level)
3402{
3403 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
3404
3405 /* 010b (write-only) */
3406 WARN_ON((spte & 0x7) == 0x2);
3407
3408 /* 110b (write/execute) */
3409 WARN_ON((spte & 0x7) == 0x6);
3410
3411 /* 100b (execute-only) and value not supported by logical processor */
3412 if (!cpu_has_vmx_ept_execute_only())
3413 WARN_ON((spte & 0x7) == 0x4);
3414
3415 /* not 000b */
3416 if ((spte & 0x7)) {
3417 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
3418
3419 if (rsvd_bits != 0) {
3420 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
3421 __func__, rsvd_bits);
3422 WARN_ON(1);
3423 }
3424
3425 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
3426 u64 ept_mem_type = (spte & 0x38) >> 3;
3427
3428 if (ept_mem_type == 2 || ept_mem_type == 3 ||
3429 ept_mem_type == 7) {
3430 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
3431 __func__, ept_mem_type);
3432 WARN_ON(1);
3433 }
3434 }
3435 }
3436}
3437
Avi Kivity851ba692009-08-24 11:10:17 +03003438static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003439{
3440 u64 sptes[4];
3441 int nr_sptes, i;
3442 gpa_t gpa;
3443
3444 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
3445
3446 printk(KERN_ERR "EPT: Misconfiguration.\n");
3447 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
3448
3449 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
3450
3451 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
3452 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
3453
Avi Kivity851ba692009-08-24 11:10:17 +03003454 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3455 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003456
3457 return 0;
3458}
3459
Avi Kivity851ba692009-08-24 11:10:17 +03003460static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08003461{
3462 u32 cpu_based_vm_exec_control;
3463
3464 /* clear pending NMI */
3465 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3466 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3467 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3468 ++vcpu->stat.nmi_window_exits;
3469
3470 return 1;
3471}
3472
Mohammed Gamal80ced182009-09-01 12:48:18 +02003473static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003474{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003475 struct vcpu_vmx *vmx = to_vmx(vcpu);
3476 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003477 int ret = 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003478
3479 while (!guest_state_valid(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003480 err = emulate_instruction(vcpu, 0, 0, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003481
Mohammed Gamal80ced182009-09-01 12:48:18 +02003482 if (err == EMULATE_DO_MMIO) {
3483 ret = 0;
3484 goto out;
3485 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003486
3487 if (err != EMULATE_DONE) {
Mohammed Gamal80ced182009-09-01 12:48:18 +02003488 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3489 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
Avi Kivitya9c73992009-11-04 11:54:59 +02003490 vcpu->run->internal.ndata = 0;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003491 ret = 0;
3492 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003493 }
3494
3495 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02003496 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003497 if (need_resched())
3498 schedule();
3499 }
3500
Mohammed Gamal80ced182009-09-01 12:48:18 +02003501 vmx->emulation_required = 0;
3502out:
3503 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003504}
3505
Avi Kivity6aa8b732006-12-10 02:21:36 -08003506/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003507 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
3508 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
3509 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03003510static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003511{
3512 skip_emulated_instruction(vcpu);
3513 kvm_vcpu_on_spin(vcpu);
3514
3515 return 1;
3516}
3517
Sheng Yang59708672009-12-15 13:29:54 +08003518static int handle_invalid_op(struct kvm_vcpu *vcpu)
3519{
3520 kvm_queue_exception(vcpu, UD_VECTOR);
3521 return 1;
3522}
3523
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003524/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003525 * The exit handlers return 1 if the exit was handled fully and guest execution
3526 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3527 * to be done to userspace and return 0.
3528 */
Avi Kivity851ba692009-08-24 11:10:17 +03003529static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003530 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3531 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003532 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003533 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003534 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003535 [EXIT_REASON_CR_ACCESS] = handle_cr,
3536 [EXIT_REASON_DR_ACCESS] = handle_dr,
3537 [EXIT_REASON_CPUID] = handle_cpuid,
3538 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3539 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3540 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3541 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003542 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003543 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003544 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
3545 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
3546 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
3547 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
3548 [EXIT_REASON_VMREAD] = handle_vmx_insn,
3549 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
3550 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
3551 [EXIT_REASON_VMOFF] = handle_vmx_insn,
3552 [EXIT_REASON_VMON] = handle_vmx_insn,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003553 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3554 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003555 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003556 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08003557 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003558 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
3559 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003560 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sheng Yang59708672009-12-15 13:29:54 +08003561 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_invalid_op,
3562 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_invalid_op,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003563};
3564
3565static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003566 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003567
3568/*
3569 * The guest has exited. See if we can fix it or if we need userspace
3570 * assistance.
3571 */
Avi Kivity851ba692009-08-24 11:10:17 +03003572static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003573{
Avi Kivity29bd8a72007-09-10 17:27:03 +03003574 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003575 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02003576 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003577
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003578 trace_kvm_exit(exit_reason, kvm_rip_read(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003579
Mohammed Gamal80ced182009-09-01 12:48:18 +02003580 /* If guest state is invalid, start emulating */
3581 if (vmx->emulation_required && emulate_invalid_guest_state)
3582 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003583
Sheng Yang14394422008-04-28 12:24:45 +08003584 /* Access CR3 don't cause VMExit in paging mode, so we need
3585 * to sync with guest real CR3. */
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003586 if (enable_ept && is_paging(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003587 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003588
Avi Kivity29bd8a72007-09-10 17:27:03 +03003589 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003590 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3591 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03003592 = vmcs_read32(VM_INSTRUCTION_ERROR);
3593 return 0;
3594 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003595
Mike Dayd77c26f2007-10-08 09:02:08 -04003596 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003597 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003598 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3599 exit_reason != EXIT_REASON_TASK_SWITCH))
3600 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3601 "(0x%x) and exit reason is 0x%x\n",
3602 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003603
3604 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03003605 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003606 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003607 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003608 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003609 /*
3610 * This CPU don't support us in finding the end of an
3611 * NMI-blocked window if the guest runs with IRQs
3612 * disabled. So we pull the trigger after 1 s of
3613 * futile waiting, but inform the user about this.
3614 */
3615 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3616 "state on VCPU %d after 1 s timeout\n",
3617 __func__, vcpu->vcpu_id);
3618 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003619 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003620 }
3621
Avi Kivity6aa8b732006-12-10 02:21:36 -08003622 if (exit_reason < kvm_vmx_max_exit_handlers
3623 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03003624 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003625 else {
Avi Kivity851ba692009-08-24 11:10:17 +03003626 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3627 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003628 }
3629 return 0;
3630}
3631
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003632static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003633{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003634 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003635 vmcs_write32(TPR_THRESHOLD, 0);
3636 return;
3637 }
3638
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003639 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003640}
3641
Avi Kivitycf393f72008-07-01 16:20:21 +03003642static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3643{
3644 u32 exit_intr_info;
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003645 u32 idt_vectoring_info = vmx->idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003646 bool unblock_nmi;
3647 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003648 int type;
3649 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03003650
3651 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Gleb Natapov20f65982009-05-11 13:35:55 +03003652
Andi Kleena0861c02009-06-08 17:37:09 +08003653 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
3654
3655 /* Handle machine checks before interrupts are enabled */
3656 if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
3657 || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
3658 && is_machine_check(exit_intr_info)))
3659 kvm_machine_check();
3660
Gleb Natapov20f65982009-05-11 13:35:55 +03003661 /* We need to handle NMIs before interrupts are enabled */
3662 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003663 (exit_intr_info & INTR_INFO_VALID_MASK))
Gleb Natapov20f65982009-05-11 13:35:55 +03003664 asm("int $2");
Gleb Natapov20f65982009-05-11 13:35:55 +03003665
3666 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3667
Avi Kivitycf393f72008-07-01 16:20:21 +03003668 if (cpu_has_virtual_nmis()) {
3669 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3670 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3671 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003672 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03003673 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3674 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003675 * SDM 3: 23.2.2 (September 2008)
3676 * Bit 12 is undefined in any of the following cases:
3677 * If the VM exit sets the valid bit in the IDT-vectoring
3678 * information field.
3679 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03003680 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003681 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
3682 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03003683 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3684 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003685 } else if (unlikely(vmx->soft_vnmi_blocked))
3686 vmx->vnmi_blocked_time +=
3687 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003688
Gleb Natapov37b96e92009-03-30 16:03:13 +03003689 vmx->vcpu.arch.nmi_injected = false;
3690 kvm_clear_exception_queue(&vmx->vcpu);
3691 kvm_clear_interrupt_queue(&vmx->vcpu);
3692
3693 if (!idtv_info_valid)
3694 return;
3695
Avi Kivity668f6122008-07-02 09:28:55 +03003696 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3697 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003698
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003699 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003700 case INTR_TYPE_NMI_INTR:
3701 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03003702 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003703 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03003704 * Clear bit "block by NMI" before VM entry if a NMI
3705 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03003706 */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003707 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3708 GUEST_INTR_STATE_NMI);
3709 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003710 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003711 vmx->vcpu.arch.event_exit_inst_len =
3712 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3713 /* fall through */
3714 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03003715 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003716 u32 err = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3717 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03003718 } else
3719 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003720 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003721 case INTR_TYPE_SOFT_INTR:
3722 vmx->vcpu.arch.event_exit_inst_len =
3723 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3724 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003725 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003726 kvm_queue_interrupt(&vmx->vcpu, vector,
3727 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003728 break;
3729 default:
3730 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03003731 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003732}
3733
Avi Kivity9c8cba32007-11-22 11:42:59 +02003734/*
3735 * Failure to inject an interrupt should give us the information
3736 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3737 * when fetching the interrupt redirection bitmap in the real-mode
3738 * tss, this doesn't happen. So we do it ourselves.
3739 */
3740static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3741{
3742 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003743 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003744 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003745 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003746 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3747 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3748 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3749 return;
3750 }
3751 vmx->idt_vectoring_info =
3752 VECTORING_INFO_VALID_MASK
3753 | INTR_TYPE_EXT_INTR
3754 | vmx->rmode.irq.vector;
3755}
3756
Avi Kivityc8019492008-07-14 14:44:59 +03003757#ifdef CONFIG_X86_64
3758#define R "r"
3759#define Q "q"
3760#else
3761#define R "e"
3762#define Q "l"
3763#endif
3764
Avi Kivity851ba692009-08-24 11:10:17 +03003765static void vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003766{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003767 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03003768
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003769 /* Record the guest's net vcpu time for enforced NMI injections. */
3770 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3771 vmx->entry_time = ktime_get();
3772
Mohammed Gamal80ced182009-09-01 12:48:18 +02003773 /* Don't enter VMX if guest state is invalid, let the exit handler
3774 start emulation until we arrive back to a valid state */
3775 if (vmx->emulation_required && emulate_invalid_guest_state)
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003776 return;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003777
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003778 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3779 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3780 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3781 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3782
Gleb Natapov787ff732009-05-18 11:44:06 +03003783 /* When single-stepping over STI and MOV SS, we must clear the
3784 * corresponding interruptibility bits in the guest state. Otherwise
3785 * vmentry fails as it then expects bit 14 (BS) in pending debug
3786 * exceptions being set, but that's not correct for the guest debugging
3787 * case. */
3788 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3789 vmx_set_interrupt_shadow(vcpu, 0);
3790
Avi Kivitye6adf282007-04-30 16:07:54 +03003791 /*
3792 * Loading guest fpu may have cleared host cr0.ts
3793 */
3794 vmcs_writel(HOST_CR0, read_cr0());
3795
Mike Dayd77c26f2007-10-08 09:02:08 -04003796 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003797 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003798 "push %%"R"dx; push %%"R"bp;"
3799 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003800 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3801 "je 1f \n\t"
3802 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003803 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003804 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03003805 /* Reload cr2 if changed */
3806 "mov %c[cr2](%0), %%"R"ax \n\t"
3807 "mov %%cr2, %%"R"dx \n\t"
3808 "cmp %%"R"ax, %%"R"dx \n\t"
3809 "je 2f \n\t"
3810 "mov %%"R"ax, %%cr2 \n\t"
3811 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003812 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003813 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003814 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003815 "mov %c[rax](%0), %%"R"ax \n\t"
3816 "mov %c[rbx](%0), %%"R"bx \n\t"
3817 "mov %c[rdx](%0), %%"R"dx \n\t"
3818 "mov %c[rsi](%0), %%"R"si \n\t"
3819 "mov %c[rdi](%0), %%"R"di \n\t"
3820 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003821#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003822 "mov %c[r8](%0), %%r8 \n\t"
3823 "mov %c[r9](%0), %%r9 \n\t"
3824 "mov %c[r10](%0), %%r10 \n\t"
3825 "mov %c[r11](%0), %%r11 \n\t"
3826 "mov %c[r12](%0), %%r12 \n\t"
3827 "mov %c[r13](%0), %%r13 \n\t"
3828 "mov %c[r14](%0), %%r14 \n\t"
3829 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003830#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003831 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3832
Avi Kivity6aa8b732006-12-10 02:21:36 -08003833 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003834 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003835 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003836 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003837 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003838 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003839 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003840 "xchg %0, (%%"R"sp) \n\t"
3841 "mov %%"R"ax, %c[rax](%0) \n\t"
3842 "mov %%"R"bx, %c[rbx](%0) \n\t"
3843 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3844 "mov %%"R"dx, %c[rdx](%0) \n\t"
3845 "mov %%"R"si, %c[rsi](%0) \n\t"
3846 "mov %%"R"di, %c[rdi](%0) \n\t"
3847 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003848#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003849 "mov %%r8, %c[r8](%0) \n\t"
3850 "mov %%r9, %c[r9](%0) \n\t"
3851 "mov %%r10, %c[r10](%0) \n\t"
3852 "mov %%r11, %c[r11](%0) \n\t"
3853 "mov %%r12, %c[r12](%0) \n\t"
3854 "mov %%r13, %c[r13](%0) \n\t"
3855 "mov %%r14, %c[r14](%0) \n\t"
3856 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003857#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003858 "mov %%cr2, %%"R"ax \n\t"
3859 "mov %%"R"ax, %c[cr2](%0) \n\t"
3860
3861 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003862 "setbe %c[fail](%0) \n\t"
3863 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3864 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3865 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003866 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003867 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3868 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3869 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3870 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3871 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3872 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3873 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003874#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003875 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3876 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3877 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3878 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3879 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3880 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3881 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3882 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003883#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003884 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003885 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003886 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003887#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003888 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3889#endif
3890 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003891
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003892 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
3893 | (1 << VCPU_EXREG_PDPTR));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003894 vcpu->arch.regs_dirty = 0;
3895
Avi Kivity1155f762007-11-22 11:30:47 +02003896 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003897 if (vmx->rmode.irq.pending)
3898 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003899
Mike Dayd77c26f2007-10-08 09:02:08 -04003900 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003901 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003902
Avi Kivitycf393f72008-07-01 16:20:21 +03003903 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003904}
3905
Avi Kivityc8019492008-07-14 14:44:59 +03003906#undef R
3907#undef Q
3908
Avi Kivity6aa8b732006-12-10 02:21:36 -08003909static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3910{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003911 struct vcpu_vmx *vmx = to_vmx(vcpu);
3912
3913 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003914 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003915 free_vmcs(vmx->vmcs);
3916 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003917 }
3918}
3919
3920static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3921{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003922 struct vcpu_vmx *vmx = to_vmx(vcpu);
3923
Sheng Yang2384d2b2008-01-17 15:14:33 +08003924 spin_lock(&vmx_vpid_lock);
3925 if (vmx->vpid != 0)
3926 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3927 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003928 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003929 kfree(vmx->guest_msrs);
3930 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003931 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003932}
3933
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003934static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003935{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003936 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003937 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003938 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003939
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003940 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003941 return ERR_PTR(-ENOMEM);
3942
Sheng Yang2384d2b2008-01-17 15:14:33 +08003943 allocate_vpid(vmx);
3944
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003945 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3946 if (err)
3947 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003948
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003949 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003950 if (!vmx->guest_msrs) {
3951 err = -ENOMEM;
3952 goto uninit_vcpu;
3953 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003954
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003955 vmx->vmcs = alloc_vmcs();
3956 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003957 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003958
3959 vmcs_clear(vmx->vmcs);
3960
Avi Kivity15ad7142007-07-11 18:17:21 +03003961 cpu = get_cpu();
3962 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003963 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003964 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003965 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003966 if (err)
3967 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003968 if (vm_need_virtualize_apic_accesses(kvm))
3969 if (alloc_apic_access_page(kvm) != 0)
3970 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003971
Sheng Yangb927a3c2009-07-21 10:42:48 +08003972 if (enable_ept) {
3973 if (!kvm->arch.ept_identity_map_addr)
3974 kvm->arch.ept_identity_map_addr =
3975 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003976 if (alloc_identity_pagetable(kvm) != 0)
3977 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003978 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003979
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003980 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003981
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003982free_vmcs:
3983 free_vmcs(vmx->vmcs);
3984free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003985 kfree(vmx->guest_msrs);
3986uninit_vcpu:
3987 kvm_vcpu_uninit(&vmx->vcpu);
3988free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003989 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003990 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003991}
3992
Yang, Sheng002c7f72007-07-31 14:23:01 +03003993static void __init vmx_check_processor_compat(void *rtn)
3994{
3995 struct vmcs_config vmcs_conf;
3996
3997 *(int *)rtn = 0;
3998 if (setup_vmcs_config(&vmcs_conf) < 0)
3999 *(int *)rtn = -EIO;
4000 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
4001 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
4002 smp_processor_id());
4003 *(int *)rtn = -EIO;
4004 }
4005}
4006
Sheng Yang67253af2008-04-25 10:20:22 +08004007static int get_ept_level(void)
4008{
4009 return VMX_EPT_DEFAULT_GAW + 1;
4010}
4011
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004012static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08004013{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004014 u64 ret;
4015
Sheng Yang522c68c2009-04-27 20:35:43 +08004016 /* For VT-d and EPT combination
4017 * 1. MMIO: always map as UC
4018 * 2. EPT with VT-d:
4019 * a. VT-d without snooping control feature: can't guarantee the
4020 * result, try to trust guest.
4021 * b. VT-d with snooping control feature: snooping control feature of
4022 * VT-d engine can guarantee the cache correctness. Just set it
4023 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08004024 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08004025 * consistent with host MTRR
4026 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004027 if (is_mmio)
4028 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08004029 else if (vcpu->kvm->arch.iommu_domain &&
4030 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
4031 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
4032 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004033 else
Sheng Yang522c68c2009-04-27 20:35:43 +08004034 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
Sheng Yanga19a6d12010-02-09 16:41:53 +08004035 | VMX_EPT_IPAT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004036
4037 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08004038}
4039
Avi Kivityf4c9e872009-12-28 16:06:35 +02004040#define _ER(x) { EXIT_REASON_##x, #x }
4041
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004042static const struct trace_print_flags vmx_exit_reasons_str[] = {
Avi Kivityf4c9e872009-12-28 16:06:35 +02004043 _ER(EXCEPTION_NMI),
4044 _ER(EXTERNAL_INTERRUPT),
4045 _ER(TRIPLE_FAULT),
4046 _ER(PENDING_INTERRUPT),
4047 _ER(NMI_WINDOW),
4048 _ER(TASK_SWITCH),
4049 _ER(CPUID),
4050 _ER(HLT),
4051 _ER(INVLPG),
4052 _ER(RDPMC),
4053 _ER(RDTSC),
4054 _ER(VMCALL),
4055 _ER(VMCLEAR),
4056 _ER(VMLAUNCH),
4057 _ER(VMPTRLD),
4058 _ER(VMPTRST),
4059 _ER(VMREAD),
4060 _ER(VMRESUME),
4061 _ER(VMWRITE),
4062 _ER(VMOFF),
4063 _ER(VMON),
4064 _ER(CR_ACCESS),
4065 _ER(DR_ACCESS),
4066 _ER(IO_INSTRUCTION),
4067 _ER(MSR_READ),
4068 _ER(MSR_WRITE),
4069 _ER(MWAIT_INSTRUCTION),
4070 _ER(MONITOR_INSTRUCTION),
4071 _ER(PAUSE_INSTRUCTION),
4072 _ER(MCE_DURING_VMENTRY),
4073 _ER(TPR_BELOW_THRESHOLD),
4074 _ER(APIC_ACCESS),
4075 _ER(EPT_VIOLATION),
4076 _ER(EPT_MISCONFIG),
4077 _ER(WBINVD),
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004078 { -1, NULL }
4079};
4080
Avi Kivityf4c9e872009-12-28 16:06:35 +02004081#undef _ER
4082
Sheng Yang17cc3932010-01-05 19:02:27 +08004083static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02004084{
Sheng Yang878403b2010-01-05 19:02:29 +08004085 if (enable_ept && !cpu_has_vmx_ept_1g_page())
4086 return PT_DIRECTORY_LEVEL;
4087 else
4088 /* For shadow and EPT supported 1GB page */
4089 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02004090}
4091
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004092static inline u32 bit(int bitno)
4093{
4094 return 1 << (bitno & 31);
4095}
4096
Sheng Yang0e851882009-12-18 16:48:46 +08004097static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
4098{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004099 struct kvm_cpuid_entry2 *best;
4100 struct vcpu_vmx *vmx = to_vmx(vcpu);
4101 u32 exec_control;
4102
4103 vmx->rdtscp_enabled = false;
4104 if (vmx_rdtscp_supported()) {
4105 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
4106 if (exec_control & SECONDARY_EXEC_RDTSCP) {
4107 best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
4108 if (best && (best->edx & bit(X86_FEATURE_RDTSCP)))
4109 vmx->rdtscp_enabled = true;
4110 else {
4111 exec_control &= ~SECONDARY_EXEC_RDTSCP;
4112 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
4113 exec_control);
4114 }
4115 }
4116 }
Sheng Yang0e851882009-12-18 16:48:46 +08004117}
4118
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03004119static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004120 .cpu_has_kvm_support = cpu_has_kvm_support,
4121 .disabled_by_bios = vmx_disabled_by_bios,
4122 .hardware_setup = hardware_setup,
4123 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03004124 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004125 .hardware_enable = hardware_enable,
4126 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08004127 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004128
4129 .vcpu_create = vmx_create_vcpu,
4130 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004131 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004132
Avi Kivity04d2cc72007-09-10 18:10:54 +03004133 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004134 .vcpu_load = vmx_vcpu_load,
4135 .vcpu_put = vmx_vcpu_put,
4136
4137 .set_guest_debug = set_guest_debug,
4138 .get_msr = vmx_get_msr,
4139 .set_msr = vmx_set_msr,
4140 .get_segment_base = vmx_get_segment_base,
4141 .get_segment = vmx_get_segment,
4142 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02004143 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004144 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02004145 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03004146 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004147 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004148 .set_cr3 = vmx_set_cr3,
4149 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004150 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004151 .get_idt = vmx_get_idt,
4152 .set_idt = vmx_set_idt,
4153 .get_gdt = vmx_get_gdt,
4154 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004155 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004156 .get_rflags = vmx_get_rflags,
4157 .set_rflags = vmx_set_rflags,
Avi Kivityebcbab42010-02-07 11:56:52 +02004158 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +02004159 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004160
4161 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004162
Avi Kivity6aa8b732006-12-10 02:21:36 -08004163 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02004164 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004165 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04004166 .set_interrupt_shadow = vmx_set_interrupt_shadow,
4167 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02004168 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03004169 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004170 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02004171 .queue_exception = vmx_queue_exception,
Gleb Natapov78646122009-03-23 12:12:11 +02004172 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004173 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004174 .get_nmi_mask = vmx_get_nmi_mask,
4175 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004176 .enable_nmi_window = enable_nmi_window,
4177 .enable_irq_window = enable_irq_window,
4178 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004179
Izik Eiduscbc94022007-10-25 00:29:55 +02004180 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08004181 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004182 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004183
4184 .exit_reasons_str = vmx_exit_reasons_str,
Sheng Yang17cc3932010-01-05 19:02:27 +08004185 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08004186
4187 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004188
4189 .rdtscp_supported = vmx_rdtscp_supported,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004190};
4191
4192static int __init vmx_init(void)
4193{
Avi Kivity26bb0982009-09-07 11:14:12 +03004194 int r, i;
4195
4196 rdmsrl_safe(MSR_EFER, &host_efer);
4197
4198 for (i = 0; i < NR_VMX_MSR; ++i)
4199 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03004200
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004201 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004202 if (!vmx_io_bitmap_a)
4203 return -ENOMEM;
4204
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004205 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004206 if (!vmx_io_bitmap_b) {
4207 r = -ENOMEM;
4208 goto out;
4209 }
4210
Avi Kivity58972972009-02-24 22:26:47 +02004211 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
4212 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08004213 r = -ENOMEM;
4214 goto out1;
4215 }
4216
Avi Kivity58972972009-02-24 22:26:47 +02004217 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
4218 if (!vmx_msr_bitmap_longmode) {
4219 r = -ENOMEM;
4220 goto out2;
4221 }
4222
He, Qingfdef3ad2007-04-30 09:45:24 +03004223 /*
4224 * Allow direct access to the PC debug port (it is often used for I/O
4225 * delays, but the vmexits simply slow things down).
4226 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004227 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
4228 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004229
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004230 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004231
Avi Kivity58972972009-02-24 22:26:47 +02004232 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
4233 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08004234
Sheng Yang2384d2b2008-01-17 15:14:33 +08004235 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
4236
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004237 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004238 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02004239 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08004240
Avi Kivity58972972009-02-24 22:26:47 +02004241 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
4242 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
4243 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
4244 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
4245 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
4246 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03004247
Avi Kivity089d0342009-03-23 18:26:32 +02004248 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004249 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004250 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08004251 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08004252 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004253 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004254 kvm_enable_tdp();
4255 } else
4256 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08004257
Avi Kivityc7addb92007-09-16 18:58:32 +02004258 if (bypass_guest_pf)
4259 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
4260
He, Qingfdef3ad2007-04-30 09:45:24 +03004261 return 0;
4262
Avi Kivity58972972009-02-24 22:26:47 +02004263out3:
4264 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08004265out2:
Avi Kivity58972972009-02-24 22:26:47 +02004266 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03004267out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004268 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03004269out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004270 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004271 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004272}
4273
4274static void __exit vmx_exit(void)
4275{
Avi Kivity58972972009-02-24 22:26:47 +02004276 free_page((unsigned long)vmx_msr_bitmap_legacy);
4277 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004278 free_page((unsigned long)vmx_io_bitmap_b);
4279 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004280
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004281 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004282}
4283
4284module_init(vmx_init)
4285module_exit(vmx_exit)