blob: f083b64814d8f060dbf6e82c472d0658f6faf820 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
8 *
9 * Authors:
10 * Avi Kivity <avi@qumranet.com>
11 * Yaniv Kamay <yaniv@qumranet.com>
12 *
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
15 *
16 */
17
Eddie Dong85f455f2007-07-06 12:20:49 +030018#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080019#include "mmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040020
Avi Kivityedf88412007-12-16 11:02:48 +020021#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080022#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020023#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080024#include <linux/mm.h>
25#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040026#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020027#include <linux/moduleparam.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030028#include <linux/ftrace_event.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030029#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030030#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040031
Avi Kivity6aa8b732006-12-10 02:21:36 -080032#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080033#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020034#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020035#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080036#include <asm/mce.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080037
Marcelo Tosatti229456f2009-06-17 09:22:14 -030038#include "trace.h"
39
Avi Kivity4ecac3f2008-05-13 13:23:38 +030040#define __ex(x) __kvm_handle_fault_on_reboot(x)
41
Avi Kivity6aa8b732006-12-10 02:21:36 -080042MODULE_AUTHOR("Qumranet");
43MODULE_LICENSE("GPL");
44
Avi Kivity4462d212009-03-23 17:53:37 +020045static int __read_mostly bypass_guest_pf = 1;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020046module_param(bypass_guest_pf, bool, S_IRUGO);
Avi Kivityc7addb92007-09-16 18:58:32 +020047
Avi Kivity4462d212009-03-23 17:53:37 +020048static int __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020049module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080050
Avi Kivity4462d212009-03-23 17:53:37 +020051static int __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020052module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020053
Avi Kivity4462d212009-03-23 17:53:37 +020054static int __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020055module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080056
Nitin A Kamble3a624e22009-06-08 11:34:16 -070057static int __read_mostly enable_unrestricted_guest = 1;
58module_param_named(unrestricted_guest,
59 enable_unrestricted_guest, bool, S_IRUGO);
60
Avi Kivity4462d212009-03-23 17:53:37 +020061static int __read_mostly emulate_invalid_guest_state = 0;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020062module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030063
Avi Kivitycdc0e242009-12-06 17:21:14 +020064#define KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST \
65 (X86_CR0_WP | X86_CR0_NE | X86_CR0_NW | X86_CR0_CD)
66#define KVM_GUEST_CR0_MASK \
67 (KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
68#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST \
Avi Kivity81231c62010-01-24 16:26:40 +020069 (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +020070#define KVM_VM_CR0_ALWAYS_ON \
71 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +020072#define KVM_CR4_GUEST_OWNED_BITS \
73 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
74 | X86_CR4_OSXMMEXCPT)
75
Avi Kivitycdc0e242009-12-06 17:21:14 +020076#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
77#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
78
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +080079/*
80 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
81 * ple_gap: upper bound on the amount of time between two successive
82 * executions of PAUSE in a loop. Also indicate if ple enabled.
83 * According to test, this time is usually small than 41 cycles.
84 * ple_window: upper bound on the amount of time a guest is allowed to execute
85 * in a PAUSE loop. Tests indicate that most spinlocks are held for
86 * less than 2^12 cycles
87 * Time is measured based on a counter that runs at the same rate as the TSC,
88 * refer SDM volume 3b section 21.6.13 & 22.1.3.
89 */
90#define KVM_VMX_DEFAULT_PLE_GAP 41
91#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
92static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
93module_param(ple_gap, int, S_IRUGO);
94
95static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
96module_param(ple_window, int, S_IRUGO);
97
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040098struct vmcs {
99 u32 revision_id;
100 u32 abort;
101 char data[0];
102};
103
Avi Kivity26bb0982009-09-07 11:14:12 +0300104struct shared_msr_entry {
105 unsigned index;
106 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200107 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300108};
109
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400110struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000111 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +0300112 struct list_head local_vcpus_link;
Avi Kivity313dbd42008-07-17 18:04:30 +0300113 unsigned long host_rsp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400114 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300115 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +0200116 u32 idt_vectoring_info;
Avi Kivity26bb0982009-09-07 11:14:12 +0300117 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400118 int nmsrs;
119 int save_nmsrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400120#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300121 u64 msr_host_kernel_gs_base;
122 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400123#endif
124 struct vmcs *vmcs;
125 struct {
126 int loaded;
127 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200128 int gs_ldt_reload_needed;
129 int fs_reload_needed;
Mike Dayd77c26f2007-10-08 09:02:08 -0400130 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200131 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300132 int vm86_active;
133 u8 save_iopl;
134 struct kvm_save_segment {
135 u16 selector;
136 unsigned long base;
137 u32 limit;
138 u32 ar;
139 } tr, es, ds, fs, gs;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200140 struct {
141 bool pending;
142 u8 vector;
143 unsigned rip;
144 } irq;
145 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800146 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300147 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200148
149 /* Support for vnmi-less CPUs */
150 int soft_vnmi_blocked;
151 ktime_t entry_time;
152 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800153 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800154
155 bool rdtscp_enabled;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400156};
157
158static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
159{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000160 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400161}
162
Sheng Yangb7ebfb02008-04-25 21:44:52 +0800163static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800164static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +0300165
Avi Kivity6aa8b732006-12-10 02:21:36 -0800166static DEFINE_PER_CPU(struct vmcs *, vmxarea);
167static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +0300168static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800169
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200170static unsigned long *vmx_io_bitmap_a;
171static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200172static unsigned long *vmx_msr_bitmap_legacy;
173static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300174
Sheng Yang2384d2b2008-01-17 15:14:33 +0800175static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
176static DEFINE_SPINLOCK(vmx_vpid_lock);
177
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300178static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800179 int size;
180 int order;
181 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300182 u32 pin_based_exec_ctrl;
183 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800184 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300185 u32 vmexit_ctrl;
186 u32 vmentry_ctrl;
187} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800188
Hannes Ederefff9e52008-11-28 17:02:06 +0100189static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800190 u32 ept;
191 u32 vpid;
192} vmx_capability;
193
Avi Kivity6aa8b732006-12-10 02:21:36 -0800194#define VMX_SEGMENT_FIELD(seg) \
195 [VCPU_SREG_##seg] = { \
196 .selector = GUEST_##seg##_SELECTOR, \
197 .base = GUEST_##seg##_BASE, \
198 .limit = GUEST_##seg##_LIMIT, \
199 .ar_bytes = GUEST_##seg##_AR_BYTES, \
200 }
201
202static struct kvm_vmx_segment_field {
203 unsigned selector;
204 unsigned base;
205 unsigned limit;
206 unsigned ar_bytes;
207} kvm_vmx_segment_fields[] = {
208 VMX_SEGMENT_FIELD(CS),
209 VMX_SEGMENT_FIELD(DS),
210 VMX_SEGMENT_FIELD(ES),
211 VMX_SEGMENT_FIELD(FS),
212 VMX_SEGMENT_FIELD(GS),
213 VMX_SEGMENT_FIELD(SS),
214 VMX_SEGMENT_FIELD(TR),
215 VMX_SEGMENT_FIELD(LDTR),
216};
217
Avi Kivity26bb0982009-09-07 11:14:12 +0300218static u64 host_efer;
219
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300220static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
221
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300222/*
223 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
224 * away by decrementing the array size.
225 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800226static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800227#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300228 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800229#endif
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800230 MSR_EFER, MSR_TSC_AUX, MSR_K6_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800231};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200232#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800233
Avi Kivity6aa8b732006-12-10 02:21:36 -0800234static inline int is_page_fault(u32 intr_info)
235{
236 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
237 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100238 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800239}
240
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300241static inline int is_no_device(u32 intr_info)
242{
243 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
244 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100245 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300246}
247
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500248static inline int is_invalid_opcode(u32 intr_info)
249{
250 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
251 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100252 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500253}
254
Avi Kivity6aa8b732006-12-10 02:21:36 -0800255static inline int is_external_interrupt(u32 intr_info)
256{
257 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
258 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
259}
260
Andi Kleena0861c02009-06-08 17:37:09 +0800261static inline int is_machine_check(u32 intr_info)
262{
263 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
264 INTR_INFO_VALID_MASK)) ==
265 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
266}
267
Sheng Yang25c5f222008-03-28 13:18:56 +0800268static inline int cpu_has_vmx_msr_bitmap(void)
269{
Sheng Yang04547152009-04-01 15:52:31 +0800270 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800271}
272
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800273static inline int cpu_has_vmx_tpr_shadow(void)
274{
Sheng Yang04547152009-04-01 15:52:31 +0800275 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800276}
277
278static inline int vm_need_tpr_shadow(struct kvm *kvm)
279{
Sheng Yang04547152009-04-01 15:52:31 +0800280 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800281}
282
Sheng Yangf78e0e22007-10-29 09:40:42 +0800283static inline int cpu_has_secondary_exec_ctrls(void)
284{
Sheng Yang04547152009-04-01 15:52:31 +0800285 return vmcs_config.cpu_based_exec_ctrl &
286 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800287}
288
Avi Kivity774ead32007-12-26 13:57:04 +0200289static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800290{
Sheng Yang04547152009-04-01 15:52:31 +0800291 return vmcs_config.cpu_based_2nd_exec_ctrl &
292 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
293}
294
295static inline bool cpu_has_vmx_flexpriority(void)
296{
297 return cpu_has_vmx_tpr_shadow() &&
298 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800299}
300
Marcelo Tosattie7997942009-06-11 12:07:40 -0300301static inline bool cpu_has_vmx_ept_execute_only(void)
302{
303 return !!(vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT);
304}
305
306static inline bool cpu_has_vmx_eptp_uncacheable(void)
307{
308 return !!(vmx_capability.ept & VMX_EPTP_UC_BIT);
309}
310
311static inline bool cpu_has_vmx_eptp_writeback(void)
312{
313 return !!(vmx_capability.ept & VMX_EPTP_WB_BIT);
314}
315
316static inline bool cpu_has_vmx_ept_2m_page(void)
317{
318 return !!(vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT);
319}
320
Sheng Yang878403b2010-01-05 19:02:29 +0800321static inline bool cpu_has_vmx_ept_1g_page(void)
322{
323 return !!(vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT);
324}
325
Sheng Yangd56f5462008-04-25 10:13:16 +0800326static inline int cpu_has_vmx_invept_individual_addr(void)
327{
Sheng Yang04547152009-04-01 15:52:31 +0800328 return !!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800329}
330
331static inline int cpu_has_vmx_invept_context(void)
332{
Sheng Yang04547152009-04-01 15:52:31 +0800333 return !!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800334}
335
336static inline int cpu_has_vmx_invept_global(void)
337{
Sheng Yang04547152009-04-01 15:52:31 +0800338 return !!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800339}
340
341static inline int cpu_has_vmx_ept(void)
342{
Sheng Yang04547152009-04-01 15:52:31 +0800343 return vmcs_config.cpu_based_2nd_exec_ctrl &
344 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800345}
346
Nitin A Kamble3a624e22009-06-08 11:34:16 -0700347static inline int cpu_has_vmx_unrestricted_guest(void)
348{
349 return vmcs_config.cpu_based_2nd_exec_ctrl &
350 SECONDARY_EXEC_UNRESTRICTED_GUEST;
351}
352
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800353static inline int cpu_has_vmx_ple(void)
354{
355 return vmcs_config.cpu_based_2nd_exec_ctrl &
356 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
357}
358
Sheng Yangf78e0e22007-10-29 09:40:42 +0800359static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
360{
Gui Jianfeng6d3e4352010-01-29 15:36:59 +0800361 return flexpriority_enabled && irqchip_in_kernel(kvm);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800362}
363
Sheng Yang2384d2b2008-01-17 15:14:33 +0800364static inline int cpu_has_vmx_vpid(void)
365{
Sheng Yang04547152009-04-01 15:52:31 +0800366 return vmcs_config.cpu_based_2nd_exec_ctrl &
367 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800368}
369
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800370static inline int cpu_has_vmx_rdtscp(void)
371{
372 return vmcs_config.cpu_based_2nd_exec_ctrl &
373 SECONDARY_EXEC_RDTSCP;
374}
375
Sheng Yangf08864b2008-05-15 18:23:25 +0800376static inline int cpu_has_virtual_nmis(void)
377{
378 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
379}
380
Sheng Yang04547152009-04-01 15:52:31 +0800381static inline bool report_flexpriority(void)
382{
383 return flexpriority_enabled;
384}
385
Rusty Russell8b9cf982007-07-30 16:31:43 +1000386static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800387{
388 int i;
389
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400390 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +0300391 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300392 return i;
393 return -1;
394}
395
Sheng Yang2384d2b2008-01-17 15:14:33 +0800396static inline void __invvpid(int ext, u16 vpid, gva_t gva)
397{
398 struct {
399 u64 vpid : 16;
400 u64 rsvd : 48;
401 u64 gva;
402 } operand = { vpid, 0, gva };
403
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300404 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800405 /* CF==1 or ZF==1 --> rc = -1 */
406 "; ja 1f ; ud2 ; 1:"
407 : : "a"(&operand), "c"(ext) : "cc", "memory");
408}
409
Sheng Yang14394422008-04-28 12:24:45 +0800410static inline void __invept(int ext, u64 eptp, gpa_t gpa)
411{
412 struct {
413 u64 eptp, gpa;
414 } operand = {eptp, gpa};
415
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300416 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800417 /* CF==1 or ZF==1 --> rc = -1 */
418 "; ja 1f ; ud2 ; 1:\n"
419 : : "a" (&operand), "c" (ext) : "cc", "memory");
420}
421
Avi Kivity26bb0982009-09-07 11:14:12 +0300422static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300423{
424 int i;
425
Rusty Russell8b9cf982007-07-30 16:31:43 +1000426 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300427 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400428 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000429 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800430}
431
Avi Kivity6aa8b732006-12-10 02:21:36 -0800432static void vmcs_clear(struct vmcs *vmcs)
433{
434 u64 phys_addr = __pa(vmcs);
435 u8 error;
436
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300437 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800438 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
439 : "cc", "memory");
440 if (error)
441 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
442 vmcs, phys_addr);
443}
444
445static void __vcpu_clear(void *arg)
446{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000447 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800448 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800449
Rusty Russell8b9cf982007-07-30 16:31:43 +1000450 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400451 vmcs_clear(vmx->vmcs);
452 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800453 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800454 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300455 list_del(&vmx->local_vcpus_link);
456 vmx->vcpu.cpu = -1;
457 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800458}
459
Rusty Russell8b9cf982007-07-30 16:31:43 +1000460static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800461{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200462 if (vmx->vcpu.cpu == -1)
463 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200464 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800465}
466
Sheng Yang2384d2b2008-01-17 15:14:33 +0800467static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
468{
469 if (vmx->vpid == 0)
470 return;
471
472 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
473}
474
Sheng Yang14394422008-04-28 12:24:45 +0800475static inline void ept_sync_global(void)
476{
477 if (cpu_has_vmx_invept_global())
478 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
479}
480
481static inline void ept_sync_context(u64 eptp)
482{
Avi Kivity089d0342009-03-23 18:26:32 +0200483 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800484 if (cpu_has_vmx_invept_context())
485 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
486 else
487 ept_sync_global();
488 }
489}
490
491static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
492{
Avi Kivity089d0342009-03-23 18:26:32 +0200493 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800494 if (cpu_has_vmx_invept_individual_addr())
495 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
496 eptp, gpa);
497 else
498 ept_sync_context(eptp);
499 }
500}
501
Avi Kivity6aa8b732006-12-10 02:21:36 -0800502static unsigned long vmcs_readl(unsigned long field)
503{
504 unsigned long value;
505
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300506 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800507 : "=a"(value) : "d"(field) : "cc");
508 return value;
509}
510
511static u16 vmcs_read16(unsigned long field)
512{
513 return vmcs_readl(field);
514}
515
516static u32 vmcs_read32(unsigned long field)
517{
518 return vmcs_readl(field);
519}
520
521static u64 vmcs_read64(unsigned long field)
522{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800523#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800524 return vmcs_readl(field);
525#else
526 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
527#endif
528}
529
Avi Kivitye52de1b2007-01-05 16:36:56 -0800530static noinline void vmwrite_error(unsigned long field, unsigned long value)
531{
532 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
533 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
534 dump_stack();
535}
536
Avi Kivity6aa8b732006-12-10 02:21:36 -0800537static void vmcs_writel(unsigned long field, unsigned long value)
538{
539 u8 error;
540
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300541 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400542 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800543 if (unlikely(error))
544 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800545}
546
547static void vmcs_write16(unsigned long field, u16 value)
548{
549 vmcs_writel(field, value);
550}
551
552static void vmcs_write32(unsigned long field, u32 value)
553{
554 vmcs_writel(field, value);
555}
556
557static void vmcs_write64(unsigned long field, u64 value)
558{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800559 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300560#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800561 asm volatile ("");
562 vmcs_writel(field+1, value >> 32);
563#endif
564}
565
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300566static void vmcs_clear_bits(unsigned long field, u32 mask)
567{
568 vmcs_writel(field, vmcs_readl(field) & ~mask);
569}
570
571static void vmcs_set_bits(unsigned long field, u32 mask)
572{
573 vmcs_writel(field, vmcs_readl(field) | mask);
574}
575
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300576static void update_exception_bitmap(struct kvm_vcpu *vcpu)
577{
578 u32 eb;
579
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100580 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
581 (1u << NM_VECTOR) | (1u << DB_VECTOR);
582 if ((vcpu->guest_debug &
583 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
584 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
585 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300586 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300587 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +0200588 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +0800589 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +0200590 if (vcpu->fpu_active)
591 eb &= ~(1u << NM_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300592 vmcs_write32(EXCEPTION_BITMAP, eb);
593}
594
Avi Kivity33ed6322007-05-02 16:54:03 +0300595static void reload_tss(void)
596{
Avi Kivity33ed6322007-05-02 16:54:03 +0300597 /*
598 * VT restores TR but not its size. Useless.
599 */
600 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200601 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300602
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300603 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300604 descs = (void *)gdt.base;
605 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
606 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300607}
608
Avi Kivity92c0d902009-10-29 11:00:16 +0200609static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +0300610{
Roel Kluin3a34a882009-08-04 02:08:45 -0700611 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300612 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300613
Avi Kivityf6801df2010-01-21 15:31:50 +0200614 guest_efer = vmx->vcpu.arch.efer;
Roel Kluin3a34a882009-08-04 02:08:45 -0700615
Avi Kivity51c6cf62007-08-29 03:48:05 +0300616 /*
617 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
618 * outside long mode
619 */
620 ignore_bits = EFER_NX | EFER_SCE;
621#ifdef CONFIG_X86_64
622 ignore_bits |= EFER_LMA | EFER_LME;
623 /* SCE is meaningful only in long mode on Intel */
624 if (guest_efer & EFER_LMA)
625 ignore_bits &= ~(u64)EFER_SCE;
626#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +0300627 guest_efer &= ~ignore_bits;
628 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300629 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +0200630 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300631 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300632}
633
Avi Kivity04d2cc72007-09-10 18:10:54 +0300634static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300635{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300636 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +0300637 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +0300638
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400639 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300640 return;
641
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400642 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300643 /*
644 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
645 * allow segment selectors with cpl > 0 or ti == 1.
646 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300647 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200648 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300649 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200650 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400651 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200652 vmx->host_state.fs_reload_needed = 0;
653 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300654 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200655 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300656 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300657 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400658 if (!(vmx->host_state.gs_sel & 7))
659 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300660 else {
661 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200662 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300663 }
664
665#ifdef CONFIG_X86_64
666 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
667 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
668#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400669 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
670 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300671#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300672
673#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300674 if (is_long_mode(&vmx->vcpu)) {
675 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
676 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
677 }
Avi Kivity707c0872007-05-02 17:33:43 +0300678#endif
Avi Kivity26bb0982009-09-07 11:14:12 +0300679 for (i = 0; i < vmx->save_nmsrs; ++i)
680 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +0200681 vmx->guest_msrs[i].data,
682 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +0300683}
684
Avi Kivitya9b21b62008-06-24 11:48:49 +0300685static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300686{
Avi Kivity15ad7142007-07-11 18:17:21 +0300687 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300688
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400689 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300690 return;
691
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200692 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400693 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200694 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300695 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200696 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300697 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300698 /*
699 * If we have to reload gs, we must take care to
700 * preserve our gs base.
701 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300702 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300703 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300704#ifdef CONFIG_X86_64
705 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
706#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300707 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300708 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200709 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +0300710#ifdef CONFIG_X86_64
711 if (is_long_mode(&vmx->vcpu)) {
712 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
713 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
714 }
715#endif
Avi Kivity33ed6322007-05-02 16:54:03 +0300716}
717
Avi Kivitya9b21b62008-06-24 11:48:49 +0300718static void vmx_load_host_state(struct vcpu_vmx *vmx)
719{
720 preempt_disable();
721 __vmx_load_host_state(vmx);
722 preempt_enable();
723}
724
Avi Kivity6aa8b732006-12-10 02:21:36 -0800725/*
726 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
727 * vcpu mutex is already taken.
728 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300729static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800730{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400731 struct vcpu_vmx *vmx = to_vmx(vcpu);
732 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200733 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800734
Eddie Donga3d7f852007-09-03 16:15:12 +0300735 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000736 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300737 kvm_migrate_timers(vcpu);
Marcelo Tosattieb5109e2009-10-01 19:16:58 -0300738 set_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests);
Avi Kivity543e4242008-05-13 16:22:47 +0300739 local_irq_disable();
740 list_add(&vmx->local_vcpus_link,
741 &per_cpu(vcpus_on_cpu, cpu));
742 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300743 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800744
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400745 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800746 u8 error;
747
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400748 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300749 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800750 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
751 : "cc");
752 if (error)
753 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400754 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800755 }
756
757 if (vcpu->cpu != cpu) {
758 struct descriptor_table dt;
759 unsigned long sysenter_esp;
760
761 vcpu->cpu = cpu;
762 /*
763 * Linux uses per-cpu TSS and GDT, so set these when switching
764 * processors.
765 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300766 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
767 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800768 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
769
770 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
771 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300772
773 /*
774 * Make sure the time stamp counter is monotonous.
775 */
776 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200777 if (tsc_this < vcpu->arch.host_tsc) {
778 delta = vcpu->arch.host_tsc - tsc_this;
779 new_offset = vmcs_read64(TSC_OFFSET) + delta;
780 vmcs_write64(TSC_OFFSET, new_offset);
781 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800782 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800783}
784
785static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
786{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300787 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800788}
789
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300790static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
791{
Avi Kivity81231c62010-01-24 16:26:40 +0200792 ulong cr0;
793
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300794 if (vcpu->fpu_active)
795 return;
796 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +0200797 cr0 = vmcs_readl(GUEST_CR0);
798 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
799 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
800 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300801 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +0200802 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
803 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300804}
805
Avi Kivityedcafe32009-12-30 18:07:40 +0200806static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
807
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300808static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
809{
Avi Kivityedcafe32009-12-30 18:07:40 +0200810 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +0200811 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300812 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +0200813 vcpu->arch.cr0_guest_owned_bits = 0;
814 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
815 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300816}
817
Avi Kivity6aa8b732006-12-10 02:21:36 -0800818static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
819{
Avi Kivity345dcaa2009-08-12 15:29:37 +0300820 unsigned long rflags;
821
822 rflags = vmcs_readl(GUEST_RFLAGS);
823 if (to_vmx(vcpu)->rmode.vm86_active)
824 rflags &= ~(unsigned long)(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
825 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800826}
827
828static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
829{
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300830 if (to_vmx(vcpu)->rmode.vm86_active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100831 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800832 vmcs_writel(GUEST_RFLAGS, rflags);
833}
834
Glauber Costa2809f5d2009-05-12 16:21:05 -0400835static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
836{
837 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
838 int ret = 0;
839
840 if (interruptibility & GUEST_INTR_STATE_STI)
841 ret |= X86_SHADOW_INT_STI;
842 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
843 ret |= X86_SHADOW_INT_MOV_SS;
844
845 return ret & mask;
846}
847
848static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
849{
850 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
851 u32 interruptibility = interruptibility_old;
852
853 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
854
855 if (mask & X86_SHADOW_INT_MOV_SS)
856 interruptibility |= GUEST_INTR_STATE_MOV_SS;
857 if (mask & X86_SHADOW_INT_STI)
858 interruptibility |= GUEST_INTR_STATE_STI;
859
860 if ((interruptibility != interruptibility_old))
861 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
862}
863
Avi Kivity6aa8b732006-12-10 02:21:36 -0800864static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
865{
866 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800867
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300868 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800869 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300870 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800871
Glauber Costa2809f5d2009-05-12 16:21:05 -0400872 /* skipping an emulated instruction also counts */
873 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800874}
875
Avi Kivity298101d2007-11-25 13:41:11 +0200876static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
877 bool has_error_code, u32 error_code)
878{
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200879 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100880 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200881
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100882 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200883 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100884 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
885 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200886
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300887 if (vmx->rmode.vm86_active) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200888 vmx->rmode.irq.pending = true;
889 vmx->rmode.irq.vector = nr;
890 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +0300891 if (kvm_exception_is_soft(nr))
892 vmx->rmode.irq.rip +=
893 vmx->vcpu.arch.event_exit_inst_len;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100894 intr_info |= INTR_TYPE_SOFT_INTR;
895 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200896 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
897 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
898 return;
899 }
900
Gleb Natapov66fd3f72009-05-11 13:35:50 +0300901 if (kvm_exception_is_soft(nr)) {
902 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
903 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100904 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
905 } else
906 intr_info |= INTR_TYPE_HARD_EXCEPTION;
907
908 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +0200909}
910
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800911static bool vmx_rdtscp_supported(void)
912{
913 return cpu_has_vmx_rdtscp();
914}
915
Avi Kivity6aa8b732006-12-10 02:21:36 -0800916/*
Eddie Donga75beee2007-05-17 18:55:15 +0300917 * Swap MSR entry in host/guest MSR entry array.
918 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000919static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300920{
Avi Kivity26bb0982009-09-07 11:14:12 +0300921 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400922
923 tmp = vmx->guest_msrs[to];
924 vmx->guest_msrs[to] = vmx->guest_msrs[from];
925 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300926}
927
928/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300929 * Set up the vmcs to automatically save and restore system
930 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
931 * mode, as fiddling with msrs is very expensive.
932 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000933static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300934{
Avi Kivity26bb0982009-09-07 11:14:12 +0300935 int save_nmsrs, index;
Avi Kivity58972972009-02-24 22:26:47 +0200936 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +0300937
Avi Kivity33f9c502008-02-27 16:06:57 +0200938 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300939 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300940#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000941 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000942 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300943 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000944 move_msr_up(vmx, index, save_nmsrs++);
945 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300946 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000947 move_msr_up(vmx, index, save_nmsrs++);
948 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300949 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000950 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800951 index = __find_msr_index(vmx, MSR_TSC_AUX);
952 if (index >= 0 && vmx->rdtscp_enabled)
953 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300954 /*
955 * MSR_K6_STAR is only needed on long mode guests, and only
956 * if efer.sce is enabled.
957 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000958 index = __find_msr_index(vmx, MSR_K6_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +0200959 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000960 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300961 }
Eddie Donga75beee2007-05-17 18:55:15 +0300962#endif
Avi Kivity92c0d902009-10-29 11:00:16 +0200963 index = __find_msr_index(vmx, MSR_EFER);
964 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +0300965 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300966
Avi Kivity26bb0982009-09-07 11:14:12 +0300967 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +0200968
969 if (cpu_has_vmx_msr_bitmap()) {
970 if (is_long_mode(&vmx->vcpu))
971 msr_bitmap = vmx_msr_bitmap_longmode;
972 else
973 msr_bitmap = vmx_msr_bitmap_legacy;
974
975 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
976 }
Avi Kivitye38aea32007-04-19 13:22:48 +0300977}
978
979/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800980 * reads and returns guest's timestamp counter "register"
981 * guest_tsc = host_tsc + tsc_offset -- 21.3
982 */
983static u64 guest_read_tsc(void)
984{
985 u64 host_tsc, tsc_offset;
986
987 rdtscll(host_tsc);
988 tsc_offset = vmcs_read64(TSC_OFFSET);
989 return host_tsc + tsc_offset;
990}
991
992/*
993 * writes 'guest_tsc' into guest's timestamp counter "register"
994 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
995 */
Marcelo Tosatti53f658b32008-12-11 20:45:05 +0100996static void guest_write_tsc(u64 guest_tsc, u64 host_tsc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800998 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
999}
1000
Avi Kivity6aa8b732006-12-10 02:21:36 -08001001/*
1002 * Reads an msr value (of 'msr_index') into 'pdata'.
1003 * Returns 0 on success, non-0 otherwise.
1004 * Assumes vcpu_load() was already called.
1005 */
1006static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1007{
1008 u64 data;
Avi Kivity26bb0982009-09-07 11:14:12 +03001009 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001010
1011 if (!pdata) {
1012 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
1013 return -EINVAL;
1014 }
1015
1016 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001017#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001018 case MSR_FS_BASE:
1019 data = vmcs_readl(GUEST_FS_BASE);
1020 break;
1021 case MSR_GS_BASE:
1022 data = vmcs_readl(GUEST_GS_BASE);
1023 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001024 case MSR_KERNEL_GS_BASE:
1025 vmx_load_host_state(to_vmx(vcpu));
1026 data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
1027 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001028#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001029 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001030 return kvm_get_msr_common(vcpu, msr_index, pdata);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301031 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032 data = guest_read_tsc();
1033 break;
1034 case MSR_IA32_SYSENTER_CS:
1035 data = vmcs_read32(GUEST_SYSENTER_CS);
1036 break;
1037 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001038 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001039 break;
1040 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001041 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001042 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001043 case MSR_TSC_AUX:
1044 if (!to_vmx(vcpu)->rdtscp_enabled)
1045 return 1;
1046 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001047 default:
Avi Kivity26bb0982009-09-07 11:14:12 +03001048 vmx_load_host_state(to_vmx(vcpu));
Rusty Russell8b9cf982007-07-30 16:31:43 +10001049 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001050 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001051 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity3bab1f52006-12-29 16:49:48 -08001052 data = msr->data;
1053 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001054 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08001055 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001056 }
1057
1058 *pdata = data;
1059 return 0;
1060}
1061
1062/*
1063 * Writes msr value into into the appropriate "register".
1064 * Returns 0 on success, non-0 otherwise.
1065 * Assumes vcpu_load() was already called.
1066 */
1067static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1068{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001069 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001070 struct shared_msr_entry *msr;
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01001071 u64 host_tsc;
Eddie Dong2cc51562007-05-21 07:28:09 +03001072 int ret = 0;
1073
Avi Kivity6aa8b732006-12-10 02:21:36 -08001074 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001075 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +03001076 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +03001077 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03001078 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001079#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001080 case MSR_FS_BASE:
1081 vmcs_writel(GUEST_FS_BASE, data);
1082 break;
1083 case MSR_GS_BASE:
1084 vmcs_writel(GUEST_GS_BASE, data);
1085 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001086 case MSR_KERNEL_GS_BASE:
1087 vmx_load_host_state(vmx);
1088 vmx->msr_guest_kernel_gs_base = data;
1089 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001090#endif
1091 case MSR_IA32_SYSENTER_CS:
1092 vmcs_write32(GUEST_SYSENTER_CS, data);
1093 break;
1094 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001095 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001096 break;
1097 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001098 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001099 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301100 case MSR_IA32_TSC:
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01001101 rdtscll(host_tsc);
1102 guest_write_tsc(data, host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001103 break;
Sheng Yang468d4722008-10-09 16:01:55 +08001104 case MSR_IA32_CR_PAT:
1105 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
1106 vmcs_write64(GUEST_IA32_PAT, data);
1107 vcpu->arch.pat = data;
1108 break;
1109 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001110 ret = kvm_set_msr_common(vcpu, msr_index, data);
1111 break;
1112 case MSR_TSC_AUX:
1113 if (!vmx->rdtscp_enabled)
1114 return 1;
1115 /* Check reserved bit, higher 32 bits should be zero */
1116 if ((data >> 32) != 0)
1117 return 1;
1118 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001119 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10001120 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001121 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001122 vmx_load_host_state(vmx);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001123 msr->data = data;
1124 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001125 }
Eddie Dong2cc51562007-05-21 07:28:09 +03001126 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001127 }
1128
Eddie Dong2cc51562007-05-21 07:28:09 +03001129 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001130}
1131
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001132static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001133{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001134 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
1135 switch (reg) {
1136 case VCPU_REGS_RSP:
1137 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
1138 break;
1139 case VCPU_REGS_RIP:
1140 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
1141 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001142 case VCPU_EXREG_PDPTR:
1143 if (enable_ept)
1144 ept_save_pdptrs(vcpu);
1145 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001146 default:
1147 break;
1148 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001149}
1150
Jan Kiszka355be0b2009-10-03 00:31:21 +02001151static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001152{
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001153 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1154 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1155 else
1156 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1157
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001158 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001159}
1160
1161static __init int cpu_has_kvm_support(void)
1162{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001163 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001164}
1165
1166static __init int vmx_disabled_by_bios(void)
1167{
1168 u64 msr;
1169
1170 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001171 return (msr & (FEATURE_CONTROL_LOCKED |
1172 FEATURE_CONTROL_VMXON_ENABLED))
1173 == FEATURE_CONTROL_LOCKED;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001174 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001175}
1176
Alexander Graf10474ae2009-09-15 11:37:46 +02001177static int hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001178{
1179 int cpu = raw_smp_processor_id();
1180 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1181 u64 old;
1182
Alexander Graf10474ae2009-09-15 11:37:46 +02001183 if (read_cr4() & X86_CR4_VMXE)
1184 return -EBUSY;
1185
Avi Kivity543e4242008-05-13 16:22:47 +03001186 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001187 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001188 if ((old & (FEATURE_CONTROL_LOCKED |
1189 FEATURE_CONTROL_VMXON_ENABLED))
1190 != (FEATURE_CONTROL_LOCKED |
1191 FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001192 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001193 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yang9ea542f2008-09-11 15:27:49 +08001194 FEATURE_CONTROL_LOCKED |
1195 FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +10001196 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001197 asm volatile (ASM_VMX_VMXON_RAX
1198 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001199 : "memory", "cc");
Alexander Graf10474ae2009-09-15 11:37:46 +02001200
1201 ept_sync_global();
1202
1203 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001204}
1205
Avi Kivity543e4242008-05-13 16:22:47 +03001206static void vmclear_local_vcpus(void)
1207{
1208 int cpu = raw_smp_processor_id();
1209 struct vcpu_vmx *vmx, *n;
1210
1211 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1212 local_vcpus_link)
1213 __vcpu_clear(vmx);
1214}
1215
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001216
1217/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1218 * tricks.
1219 */
1220static void kvm_cpu_vmxoff(void)
1221{
1222 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
1223 write_cr4(read_cr4() & ~X86_CR4_VMXE);
1224}
1225
Avi Kivity6aa8b732006-12-10 02:21:36 -08001226static void hardware_disable(void *garbage)
1227{
Avi Kivity543e4242008-05-13 16:22:47 +03001228 vmclear_local_vcpus();
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001229 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001230}
1231
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001232static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001233 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001234{
1235 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001236 u32 ctl = ctl_min | ctl_opt;
1237
1238 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1239
1240 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1241 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1242
1243 /* Ensure minimum (required) set of control bits are supported. */
1244 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001245 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001246
1247 *result = ctl;
1248 return 0;
1249}
1250
Yang, Sheng002c7f72007-07-31 14:23:01 +03001251static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001252{
1253 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001254 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001255 u32 _pin_based_exec_control = 0;
1256 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001257 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001258 u32 _vmexit_control = 0;
1259 u32 _vmentry_control = 0;
1260
1261 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001262 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001263 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1264 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001265 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001266
1267 min = CPU_BASED_HLT_EXITING |
1268#ifdef CONFIG_X86_64
1269 CPU_BASED_CR8_LOAD_EXITING |
1270 CPU_BASED_CR8_STORE_EXITING |
1271#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001272 CPU_BASED_CR3_LOAD_EXITING |
1273 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001274 CPU_BASED_USE_IO_BITMAPS |
1275 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001276 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08001277 CPU_BASED_MWAIT_EXITING |
1278 CPU_BASED_MONITOR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001279 CPU_BASED_INVLPG_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001280 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001281 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001282 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001283 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1284 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001285 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001286#ifdef CONFIG_X86_64
1287 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1288 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1289 ~CPU_BASED_CR8_STORE_EXITING;
1290#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001291 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001292 min2 = 0;
1293 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001294 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001295 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001296 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001297 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001298 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
1299 SECONDARY_EXEC_RDTSCP;
Sheng Yangd56f5462008-04-25 10:13:16 +08001300 if (adjust_vmx_controls(min2, opt2,
1301 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001302 &_cpu_based_2nd_exec_control) < 0)
1303 return -EIO;
1304 }
1305#ifndef CONFIG_X86_64
1306 if (!(_cpu_based_2nd_exec_control &
1307 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1308 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1309#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001310 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03001311 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
1312 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03001313 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
1314 CPU_BASED_CR3_STORE_EXITING |
1315 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001316 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1317 vmx_capability.ept, vmx_capability.vpid);
1318 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001319
1320 min = 0;
1321#ifdef CONFIG_X86_64
1322 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1323#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001324 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001325 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1326 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001327 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001328
Sheng Yang468d4722008-10-09 16:01:55 +08001329 min = 0;
1330 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001331 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1332 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001333 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001334
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001335 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001336
1337 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1338 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001339 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001340
1341#ifdef CONFIG_X86_64
1342 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1343 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001344 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001345#endif
1346
1347 /* Require Write-Back (WB) memory type for VMCS accesses. */
1348 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001349 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001350
Yang, Sheng002c7f72007-07-31 14:23:01 +03001351 vmcs_conf->size = vmx_msr_high & 0x1fff;
1352 vmcs_conf->order = get_order(vmcs_config.size);
1353 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001354
Yang, Sheng002c7f72007-07-31 14:23:01 +03001355 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1356 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001357 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001358 vmcs_conf->vmexit_ctrl = _vmexit_control;
1359 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001360
1361 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001362}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001363
1364static struct vmcs *alloc_vmcs_cpu(int cpu)
1365{
1366 int node = cpu_to_node(cpu);
1367 struct page *pages;
1368 struct vmcs *vmcs;
1369
Mel Gorman6484eb32009-06-16 15:31:54 -07001370 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001371 if (!pages)
1372 return NULL;
1373 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001374 memset(vmcs, 0, vmcs_config.size);
1375 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001376 return vmcs;
1377}
1378
1379static struct vmcs *alloc_vmcs(void)
1380{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001381 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001382}
1383
1384static void free_vmcs(struct vmcs *vmcs)
1385{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001386 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001387}
1388
Sam Ravnborg39959582007-06-01 00:47:13 -07001389static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001390{
1391 int cpu;
1392
Zachary Amsden3230bb42009-09-29 11:38:37 -10001393 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001394 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10001395 per_cpu(vmxarea, cpu) = NULL;
1396 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001397}
1398
Avi Kivity6aa8b732006-12-10 02:21:36 -08001399static __init int alloc_kvm_area(void)
1400{
1401 int cpu;
1402
Zachary Amsden3230bb42009-09-29 11:38:37 -10001403 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001404 struct vmcs *vmcs;
1405
1406 vmcs = alloc_vmcs_cpu(cpu);
1407 if (!vmcs) {
1408 free_kvm_area();
1409 return -ENOMEM;
1410 }
1411
1412 per_cpu(vmxarea, cpu) = vmcs;
1413 }
1414 return 0;
1415}
1416
1417static __init int hardware_setup(void)
1418{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001419 if (setup_vmcs_config(&vmcs_config) < 0)
1420 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001421
1422 if (boot_cpu_has(X86_FEATURE_NX))
1423 kvm_enable_efer_bits(EFER_NX);
1424
Sheng Yang93ba03c2009-04-01 15:52:32 +08001425 if (!cpu_has_vmx_vpid())
1426 enable_vpid = 0;
1427
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001428 if (!cpu_has_vmx_ept()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08001429 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001430 enable_unrestricted_guest = 0;
1431 }
1432
1433 if (!cpu_has_vmx_unrestricted_guest())
1434 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08001435
1436 if (!cpu_has_vmx_flexpriority())
1437 flexpriority_enabled = 0;
1438
Gleb Natapov95ba8273132009-04-21 17:45:08 +03001439 if (!cpu_has_vmx_tpr_shadow())
1440 kvm_x86_ops->update_cr8_intercept = NULL;
1441
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001442 if (enable_ept && !cpu_has_vmx_ept_2m_page())
1443 kvm_disable_largepages();
1444
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001445 if (!cpu_has_vmx_ple())
1446 ple_gap = 0;
1447
Avi Kivity6aa8b732006-12-10 02:21:36 -08001448 return alloc_kvm_area();
1449}
1450
1451static __exit void hardware_unsetup(void)
1452{
1453 free_kvm_area();
1454}
1455
Avi Kivity6aa8b732006-12-10 02:21:36 -08001456static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1457{
1458 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1459
Avi Kivity6af11b92007-03-19 13:18:10 +02001460 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001461 vmcs_write16(sf->selector, save->selector);
1462 vmcs_writel(sf->base, save->base);
1463 vmcs_write32(sf->limit, save->limit);
1464 vmcs_write32(sf->ar_bytes, save->ar);
1465 } else {
1466 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1467 << AR_DPL_SHIFT;
1468 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1469 }
1470}
1471
1472static void enter_pmode(struct kvm_vcpu *vcpu)
1473{
1474 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001475 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001476
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001477 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001478 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001479
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001480 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
1481 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
1482 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001483
1484 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001485 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001486 flags |= (vmx->rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001487 vmcs_writel(GUEST_RFLAGS, flags);
1488
Rusty Russell66aee912007-07-17 23:34:16 +10001489 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1490 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001491
1492 update_exception_bitmap(vcpu);
1493
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001494 if (emulate_invalid_guest_state)
1495 return;
1496
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001497 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
1498 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
1499 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
1500 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001501
1502 vmcs_write16(GUEST_SS_SELECTOR, 0);
1503 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1504
1505 vmcs_write16(GUEST_CS_SELECTOR,
1506 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1507 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1508}
1509
Mike Dayd77c26f2007-10-08 09:02:08 -04001510static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001511{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001512 if (!kvm->arch.tss_addr) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001513 struct kvm_memslots *slots;
1514 gfn_t base_gfn;
1515
1516 slots = rcu_dereference(kvm->memslots);
1517 base_gfn = kvm->memslots->memslots[0].base_gfn +
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -02001518 kvm->memslots->memslots[0].npages - 3;
Izik Eiduscbc94022007-10-25 00:29:55 +02001519 return base_gfn << PAGE_SHIFT;
1520 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001521 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001522}
1523
1524static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1525{
1526 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1527
1528 save->selector = vmcs_read16(sf->selector);
1529 save->base = vmcs_readl(sf->base);
1530 save->limit = vmcs_read32(sf->limit);
1531 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001532 vmcs_write16(sf->selector, save->base >> 4);
1533 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001534 vmcs_write32(sf->limit, 0xffff);
1535 vmcs_write32(sf->ar_bytes, 0xf3);
1536}
1537
1538static void enter_rmode(struct kvm_vcpu *vcpu)
1539{
1540 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001541 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001542
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001543 if (enable_unrestricted_guest)
1544 return;
1545
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001546 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001547 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001548
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001549 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001550 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1551
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001552 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001553 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1554
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001555 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001556 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1557
1558 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001559 vmx->rmode.save_iopl
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001560 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001561
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001562 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001563
1564 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001565 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001566 update_exception_bitmap(vcpu);
1567
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001568 if (emulate_invalid_guest_state)
1569 goto continue_rmode;
1570
Avi Kivity6aa8b732006-12-10 02:21:36 -08001571 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1572 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1573 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1574
1575 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001576 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001577 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1578 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001579 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1580
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001581 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
1582 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
1583 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
1584 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001585
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001586continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08001587 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001588 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001589}
1590
Amit Shah401d10d2009-02-20 22:53:37 +05301591static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1592{
1593 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001594 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
1595
1596 if (!msr)
1597 return;
Amit Shah401d10d2009-02-20 22:53:37 +05301598
Avi Kivity44ea2b12009-09-06 15:55:37 +03001599 /*
1600 * Force kernel_gs_base reloading before EFER changes, as control
1601 * of this msr depends on is_long_mode().
1602 */
1603 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02001604 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05301605 if (!msr)
1606 return;
1607 if (efer & EFER_LMA) {
1608 vmcs_write32(VM_ENTRY_CONTROLS,
1609 vmcs_read32(VM_ENTRY_CONTROLS) |
1610 VM_ENTRY_IA32E_MODE);
1611 msr->data = efer;
1612 } else {
1613 vmcs_write32(VM_ENTRY_CONTROLS,
1614 vmcs_read32(VM_ENTRY_CONTROLS) &
1615 ~VM_ENTRY_IA32E_MODE);
1616
1617 msr->data = efer & ~EFER_LME;
1618 }
1619 setup_msrs(vmx);
1620}
1621
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001622#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001623
1624static void enter_lmode(struct kvm_vcpu *vcpu)
1625{
1626 u32 guest_tr_ar;
1627
1628 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1629 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1630 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001631 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001632 vmcs_write32(GUEST_TR_AR_BYTES,
1633 (guest_tr_ar & ~AR_TYPE_MASK)
1634 | AR_TYPE_BUSY_64_TSS);
1635 }
Avi Kivityf6801df2010-01-21 15:31:50 +02001636 vcpu->arch.efer |= EFER_LMA;
1637 vmx_set_efer(vcpu, vcpu->arch.efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001638}
1639
1640static void exit_lmode(struct kvm_vcpu *vcpu)
1641{
Avi Kivityf6801df2010-01-21 15:31:50 +02001642 vcpu->arch.efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001643
1644 vmcs_write32(VM_ENTRY_CONTROLS,
1645 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001646 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001647}
1648
1649#endif
1650
Sheng Yang2384d2b2008-01-17 15:14:33 +08001651static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1652{
1653 vpid_sync_vcpu_all(to_vmx(vcpu));
Avi Kivity089d0342009-03-23 18:26:32 +02001654 if (enable_ept)
Sheng Yang4e1096d2008-07-06 19:16:51 +08001655 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001656}
1657
Avi Kivitye8467fd2009-12-29 18:43:06 +02001658static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
1659{
1660 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
1661
1662 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
1663 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
1664}
1665
Anthony Liguori25c4c272007-04-27 09:29:21 +03001666static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001667{
Avi Kivityfc78f512009-12-07 12:16:48 +02001668 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
1669
1670 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
1671 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08001672}
1673
Sheng Yang14394422008-04-28 12:24:45 +08001674static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1675{
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001676 if (!test_bit(VCPU_EXREG_PDPTR,
1677 (unsigned long *)&vcpu->arch.regs_dirty))
1678 return;
1679
Sheng Yang14394422008-04-28 12:24:45 +08001680 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Sheng Yang14394422008-04-28 12:24:45 +08001681 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1682 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1683 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1684 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1685 }
1686}
1687
Avi Kivity8f5d5492009-05-31 18:41:29 +03001688static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
1689{
1690 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1691 vcpu->arch.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
1692 vcpu->arch.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
1693 vcpu->arch.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
1694 vcpu->arch.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
1695 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001696
1697 __set_bit(VCPU_EXREG_PDPTR,
1698 (unsigned long *)&vcpu->arch.regs_avail);
1699 __set_bit(VCPU_EXREG_PDPTR,
1700 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03001701}
1702
Sheng Yang14394422008-04-28 12:24:45 +08001703static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1704
1705static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1706 unsigned long cr0,
1707 struct kvm_vcpu *vcpu)
1708{
1709 if (!(cr0 & X86_CR0_PG)) {
1710 /* From paging/starting to nonpaging */
1711 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001712 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001713 (CPU_BASED_CR3_LOAD_EXITING |
1714 CPU_BASED_CR3_STORE_EXITING));
1715 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02001716 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08001717 } else if (!is_paging(vcpu)) {
1718 /* From nonpaging to paging */
1719 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001720 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001721 ~(CPU_BASED_CR3_LOAD_EXITING |
1722 CPU_BASED_CR3_STORE_EXITING));
1723 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02001724 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08001725 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08001726
1727 if (!(cr0 & X86_CR0_WP))
1728 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08001729}
1730
Avi Kivity6aa8b732006-12-10 02:21:36 -08001731static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1732{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001733 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001734 unsigned long hw_cr0;
1735
1736 if (enable_unrestricted_guest)
1737 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
1738 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
1739 else
1740 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08001741
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001742 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001743 enter_pmode(vcpu);
1744
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001745 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001746 enter_rmode(vcpu);
1747
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001748#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02001749 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001750 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001751 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10001752 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001753 exit_lmode(vcpu);
1754 }
1755#endif
1756
Avi Kivity089d0342009-03-23 18:26:32 +02001757 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001758 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1759
Avi Kivity02daab22009-12-30 12:40:26 +02001760 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02001761 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02001762
Avi Kivity6aa8b732006-12-10 02:21:36 -08001763 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001764 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001765 vcpu->arch.cr0 = cr0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001766}
1767
Sheng Yang14394422008-04-28 12:24:45 +08001768static u64 construct_eptp(unsigned long root_hpa)
1769{
1770 u64 eptp;
1771
1772 /* TODO write the value reading from MSR */
1773 eptp = VMX_EPT_DEFAULT_MT |
1774 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1775 eptp |= (root_hpa & PAGE_MASK);
1776
1777 return eptp;
1778}
1779
Avi Kivity6aa8b732006-12-10 02:21:36 -08001780static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1781{
Sheng Yang14394422008-04-28 12:24:45 +08001782 unsigned long guest_cr3;
1783 u64 eptp;
1784
1785 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02001786 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001787 eptp = construct_eptp(cr3);
1788 vmcs_write64(EPT_POINTER, eptp);
Sheng Yang14394422008-04-28 12:24:45 +08001789 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
Sheng Yangb927a3c2009-07-21 10:42:48 +08001790 vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02001791 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001792 }
1793
Sheng Yang2384d2b2008-01-17 15:14:33 +08001794 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001795 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001796}
1797
1798static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1799{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001800 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08001801 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1802
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001803 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02001804 if (enable_ept) {
1805 if (!is_paging(vcpu)) {
1806 hw_cr4 &= ~X86_CR4_PAE;
1807 hw_cr4 |= X86_CR4_PSE;
1808 } else if (!(cr4 & X86_CR4_PAE)) {
1809 hw_cr4 &= ~X86_CR4_PAE;
1810 }
1811 }
Sheng Yang14394422008-04-28 12:24:45 +08001812
1813 vmcs_writel(CR4_READ_SHADOW, cr4);
1814 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001815}
1816
Avi Kivity6aa8b732006-12-10 02:21:36 -08001817static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1818{
1819 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1820
1821 return vmcs_readl(sf->base);
1822}
1823
1824static void vmx_get_segment(struct kvm_vcpu *vcpu,
1825 struct kvm_segment *var, int seg)
1826{
1827 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1828 u32 ar;
1829
1830 var->base = vmcs_readl(sf->base);
1831 var->limit = vmcs_read32(sf->limit);
1832 var->selector = vmcs_read16(sf->selector);
1833 ar = vmcs_read32(sf->ar_bytes);
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02001834 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001835 ar = 0;
1836 var->type = ar & 15;
1837 var->s = (ar >> 4) & 1;
1838 var->dpl = (ar >> 5) & 3;
1839 var->present = (ar >> 7) & 1;
1840 var->avl = (ar >> 12) & 1;
1841 var->l = (ar >> 13) & 1;
1842 var->db = (ar >> 14) & 1;
1843 var->g = (ar >> 15) & 1;
1844 var->unusable = (ar >> 16) & 1;
1845}
1846
Izik Eidus2e4d2652008-03-24 19:38:34 +02001847static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1848{
Avi Kivity3eeb3282010-01-21 15:31:48 +02001849 if (!is_protmode(vcpu))
Izik Eidus2e4d2652008-03-24 19:38:34 +02001850 return 0;
1851
1852 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1853 return 3;
1854
Avi Kivityeab4b8a2009-08-04 15:02:54 +03001855 return vmcs_read16(GUEST_CS_SELECTOR) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02001856}
1857
Avi Kivity653e3102007-05-07 10:55:37 +03001858static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001859{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001860 u32 ar;
1861
Avi Kivity653e3102007-05-07 10:55:37 +03001862 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001863 ar = 1 << 16;
1864 else {
1865 ar = var->type & 15;
1866 ar |= (var->s & 1) << 4;
1867 ar |= (var->dpl & 3) << 5;
1868 ar |= (var->present & 1) << 7;
1869 ar |= (var->avl & 1) << 12;
1870 ar |= (var->l & 1) << 13;
1871 ar |= (var->db & 1) << 14;
1872 ar |= (var->g & 1) << 15;
1873 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001874 if (ar == 0) /* a 0 value means unusable */
1875 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001876
1877 return ar;
1878}
1879
1880static void vmx_set_segment(struct kvm_vcpu *vcpu,
1881 struct kvm_segment *var, int seg)
1882{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001883 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03001884 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1885 u32 ar;
1886
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001887 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
1888 vmx->rmode.tr.selector = var->selector;
1889 vmx->rmode.tr.base = var->base;
1890 vmx->rmode.tr.limit = var->limit;
1891 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001892 return;
1893 }
1894 vmcs_writel(sf->base, var->base);
1895 vmcs_write32(sf->limit, var->limit);
1896 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001897 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001898 /*
1899 * Hack real-mode segments into vm86 compatibility.
1900 */
1901 if (var->base == 0xffff0000 && var->selector == 0xf000)
1902 vmcs_writel(sf->base, 0xf0000);
1903 ar = 0xf3;
1904 } else
1905 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001906
1907 /*
1908 * Fix the "Accessed" bit in AR field of segment registers for older
1909 * qemu binaries.
1910 * IA32 arch specifies that at the time of processor reset the
1911 * "Accessed" bit in the AR field of segment registers is 1. And qemu
1912 * is setting it to 0 in the usedland code. This causes invalid guest
1913 * state vmexit when "unrestricted guest" mode is turned on.
1914 * Fix for this setup issue in cpu_reset is being pushed in the qemu
1915 * tree. Newer qemu binaries with that qemu fix would not need this
1916 * kvm hack.
1917 */
1918 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
1919 ar |= 0x1; /* Accessed */
1920
Avi Kivity6aa8b732006-12-10 02:21:36 -08001921 vmcs_write32(sf->ar_bytes, ar);
1922}
1923
Avi Kivity6aa8b732006-12-10 02:21:36 -08001924static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1925{
1926 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1927
1928 *db = (ar >> 14) & 1;
1929 *l = (ar >> 13) & 1;
1930}
1931
1932static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1933{
1934 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1935 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1936}
1937
1938static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1939{
1940 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1941 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1942}
1943
1944static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1945{
1946 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1947 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1948}
1949
1950static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1951{
1952 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1953 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1954}
1955
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001956static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1957{
1958 struct kvm_segment var;
1959 u32 ar;
1960
1961 vmx_get_segment(vcpu, &var, seg);
1962 ar = vmx_segment_access_rights(&var);
1963
1964 if (var.base != (var.selector << 4))
1965 return false;
1966 if (var.limit != 0xffff)
1967 return false;
1968 if (ar != 0xf3)
1969 return false;
1970
1971 return true;
1972}
1973
1974static bool code_segment_valid(struct kvm_vcpu *vcpu)
1975{
1976 struct kvm_segment cs;
1977 unsigned int cs_rpl;
1978
1979 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1980 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1981
Avi Kivity1872a3f2009-01-04 23:26:52 +02001982 if (cs.unusable)
1983 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001984 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1985 return false;
1986 if (!cs.s)
1987 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001988 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001989 if (cs.dpl > cs_rpl)
1990 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001991 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001992 if (cs.dpl != cs_rpl)
1993 return false;
1994 }
1995 if (!cs.present)
1996 return false;
1997
1998 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
1999 return true;
2000}
2001
2002static bool stack_segment_valid(struct kvm_vcpu *vcpu)
2003{
2004 struct kvm_segment ss;
2005 unsigned int ss_rpl;
2006
2007 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2008 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
2009
Avi Kivity1872a3f2009-01-04 23:26:52 +02002010 if (ss.unusable)
2011 return true;
2012 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002013 return false;
2014 if (!ss.s)
2015 return false;
2016 if (ss.dpl != ss_rpl) /* DPL != RPL */
2017 return false;
2018 if (!ss.present)
2019 return false;
2020
2021 return true;
2022}
2023
2024static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
2025{
2026 struct kvm_segment var;
2027 unsigned int rpl;
2028
2029 vmx_get_segment(vcpu, &var, seg);
2030 rpl = var.selector & SELECTOR_RPL_MASK;
2031
Avi Kivity1872a3f2009-01-04 23:26:52 +02002032 if (var.unusable)
2033 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002034 if (!var.s)
2035 return false;
2036 if (!var.present)
2037 return false;
2038 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
2039 if (var.dpl < rpl) /* DPL < RPL */
2040 return false;
2041 }
2042
2043 /* TODO: Add other members to kvm_segment_field to allow checking for other access
2044 * rights flags
2045 */
2046 return true;
2047}
2048
2049static bool tr_valid(struct kvm_vcpu *vcpu)
2050{
2051 struct kvm_segment tr;
2052
2053 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
2054
Avi Kivity1872a3f2009-01-04 23:26:52 +02002055 if (tr.unusable)
2056 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002057 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2058 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02002059 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002060 return false;
2061 if (!tr.present)
2062 return false;
2063
2064 return true;
2065}
2066
2067static bool ldtr_valid(struct kvm_vcpu *vcpu)
2068{
2069 struct kvm_segment ldtr;
2070
2071 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
2072
Avi Kivity1872a3f2009-01-04 23:26:52 +02002073 if (ldtr.unusable)
2074 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002075 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2076 return false;
2077 if (ldtr.type != 2)
2078 return false;
2079 if (!ldtr.present)
2080 return false;
2081
2082 return true;
2083}
2084
2085static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
2086{
2087 struct kvm_segment cs, ss;
2088
2089 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
2090 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2091
2092 return ((cs.selector & SELECTOR_RPL_MASK) ==
2093 (ss.selector & SELECTOR_RPL_MASK));
2094}
2095
2096/*
2097 * Check if guest state is valid. Returns true if valid, false if
2098 * not.
2099 * We assume that registers are always usable
2100 */
2101static bool guest_state_valid(struct kvm_vcpu *vcpu)
2102{
2103 /* real mode guest state checks */
Avi Kivity3eeb3282010-01-21 15:31:48 +02002104 if (!is_protmode(vcpu)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002105 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
2106 return false;
2107 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
2108 return false;
2109 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
2110 return false;
2111 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
2112 return false;
2113 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
2114 return false;
2115 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
2116 return false;
2117 } else {
2118 /* protected mode guest state checks */
2119 if (!cs_ss_rpl_check(vcpu))
2120 return false;
2121 if (!code_segment_valid(vcpu))
2122 return false;
2123 if (!stack_segment_valid(vcpu))
2124 return false;
2125 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
2126 return false;
2127 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
2128 return false;
2129 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
2130 return false;
2131 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
2132 return false;
2133 if (!tr_valid(vcpu))
2134 return false;
2135 if (!ldtr_valid(vcpu))
2136 return false;
2137 }
2138 /* TODO:
2139 * - Add checks on RIP
2140 * - Add checks on RFLAGS
2141 */
2142
2143 return true;
2144}
2145
Mike Dayd77c26f2007-10-08 09:02:08 -04002146static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002147{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002148 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02002149 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002150 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02002151 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002152
Izik Eidus195aefd2007-10-01 22:14:18 +02002153 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2154 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002155 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002156 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08002157 r = kvm_write_guest_page(kvm, fn++, &data,
2158 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02002159 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002160 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002161 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
2162 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002163 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002164 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2165 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002166 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002167 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002168 r = kvm_write_guest_page(kvm, fn, &data,
2169 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
2170 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02002171 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002172 goto out;
2173
2174 ret = 1;
2175out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002176 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002177}
2178
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002179static int init_rmode_identity_map(struct kvm *kvm)
2180{
2181 int i, r, ret;
2182 pfn_t identity_map_pfn;
2183 u32 tmp;
2184
Avi Kivity089d0342009-03-23 18:26:32 +02002185 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002186 return 1;
2187 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
2188 printk(KERN_ERR "EPT: identity-mapping pagetable "
2189 "haven't been allocated!\n");
2190 return 0;
2191 }
2192 if (likely(kvm->arch.ept_identity_pagetable_done))
2193 return 1;
2194 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002195 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002196 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
2197 if (r < 0)
2198 goto out;
2199 /* Set up identity-mapping pagetable for EPT in real mode */
2200 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2201 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2202 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2203 r = kvm_write_guest_page(kvm, identity_map_pfn,
2204 &tmp, i * sizeof(tmp), sizeof(tmp));
2205 if (r < 0)
2206 goto out;
2207 }
2208 kvm->arch.ept_identity_pagetable_done = true;
2209 ret = 1;
2210out:
2211 return ret;
2212}
2213
Avi Kivity6aa8b732006-12-10 02:21:36 -08002214static void seg_setup(int seg)
2215{
2216 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002217 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002218
2219 vmcs_write16(sf->selector, 0);
2220 vmcs_writel(sf->base, 0);
2221 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002222 if (enable_unrestricted_guest) {
2223 ar = 0x93;
2224 if (seg == VCPU_SREG_CS)
2225 ar |= 0x08; /* code segment */
2226 } else
2227 ar = 0xf3;
2228
2229 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002230}
2231
Sheng Yangf78e0e22007-10-29 09:40:42 +08002232static int alloc_apic_access_page(struct kvm *kvm)
2233{
2234 struct kvm_userspace_memory_region kvm_userspace_mem;
2235 int r = 0;
2236
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002237 mutex_lock(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002238 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08002239 goto out;
2240 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
2241 kvm_userspace_mem.flags = 0;
2242 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
2243 kvm_userspace_mem.memory_size = PAGE_SIZE;
2244 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2245 if (r)
2246 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002247
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002248 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002249out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002250 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002251 return r;
2252}
2253
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002254static int alloc_identity_pagetable(struct kvm *kvm)
2255{
2256 struct kvm_userspace_memory_region kvm_userspace_mem;
2257 int r = 0;
2258
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002259 mutex_lock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002260 if (kvm->arch.ept_identity_pagetable)
2261 goto out;
2262 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2263 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002264 kvm_userspace_mem.guest_phys_addr =
2265 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002266 kvm_userspace_mem.memory_size = PAGE_SIZE;
2267 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2268 if (r)
2269 goto out;
2270
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002271 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08002272 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002273out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002274 mutex_unlock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002275 return r;
2276}
2277
Sheng Yang2384d2b2008-01-17 15:14:33 +08002278static void allocate_vpid(struct vcpu_vmx *vmx)
2279{
2280 int vpid;
2281
2282 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02002283 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002284 return;
2285 spin_lock(&vmx_vpid_lock);
2286 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2287 if (vpid < VMX_NR_VPIDS) {
2288 vmx->vpid = vpid;
2289 __set_bit(vpid, vmx_vpid_bitmap);
2290 }
2291 spin_unlock(&vmx_vpid_lock);
2292}
2293
Avi Kivity58972972009-02-24 22:26:47 +02002294static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002295{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002296 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08002297
2298 if (!cpu_has_vmx_msr_bitmap())
2299 return;
2300
2301 /*
2302 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2303 * have the write-low and read-high bitmap offsets the wrong way round.
2304 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2305 */
Sheng Yang25c5f222008-03-28 13:18:56 +08002306 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002307 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
2308 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08002309 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2310 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002311 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
2312 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08002313 }
Sheng Yang25c5f222008-03-28 13:18:56 +08002314}
2315
Avi Kivity58972972009-02-24 22:26:47 +02002316static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
2317{
2318 if (!longmode_only)
2319 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
2320 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
2321}
2322
Avi Kivity6aa8b732006-12-10 02:21:36 -08002323/*
2324 * Sets up the vmcs for emulated real mode.
2325 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002326static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002327{
Sheng Yang468d4722008-10-09 16:01:55 +08002328 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002329 u32 junk;
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01002330 u64 host_pat, tsc_this, tsc_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002331 unsigned long a;
2332 struct descriptor_table dt;
2333 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002334 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002335 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002336
Avi Kivity6aa8b732006-12-10 02:21:36 -08002337 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002338 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
2339 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002340
Sheng Yang25c5f222008-03-28 13:18:56 +08002341 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02002342 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08002343
Avi Kivity6aa8b732006-12-10 02:21:36 -08002344 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2345
Avi Kivity6aa8b732006-12-10 02:21:36 -08002346 /* Control */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002347 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2348 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002349
2350 exec_control = vmcs_config.cpu_based_exec_ctrl;
2351 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2352 exec_control &= ~CPU_BASED_TPR_SHADOW;
2353#ifdef CONFIG_X86_64
2354 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2355 CPU_BASED_CR8_LOAD_EXITING;
2356#endif
2357 }
Avi Kivity089d0342009-03-23 18:26:32 +02002358 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002359 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03002360 CPU_BASED_CR3_LOAD_EXITING |
2361 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002362 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002363
Sheng Yang83ff3b92007-11-21 14:33:25 +08002364 if (cpu_has_secondary_exec_ctrls()) {
2365 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2366 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2367 exec_control &=
2368 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002369 if (vmx->vpid == 0)
2370 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang046d8712009-11-27 16:46:26 +08002371 if (!enable_ept) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002372 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang046d8712009-11-27 16:46:26 +08002373 enable_unrestricted_guest = 0;
2374 }
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002375 if (!enable_unrestricted_guest)
2376 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002377 if (!ple_gap)
2378 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002379 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2380 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002381
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002382 if (ple_gap) {
2383 vmcs_write32(PLE_GAP, ple_gap);
2384 vmcs_write32(PLE_WINDOW, ple_window);
2385 }
2386
Avi Kivityc7addb92007-09-16 18:58:32 +02002387 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2388 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002389 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2390
2391 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2392 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2393 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2394
2395 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2396 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2397 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002398 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2399 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002400 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002401#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002402 rdmsrl(MSR_FS_BASE, a);
2403 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2404 rdmsrl(MSR_GS_BASE, a);
2405 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2406#else
2407 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2408 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2409#endif
2410
2411 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2412
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002413 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002414 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2415
Mike Dayd77c26f2007-10-08 09:02:08 -04002416 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002417 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002418 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2419 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2420 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002421
2422 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2423 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2424 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2425 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2426 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2427 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2428
Sheng Yang468d4722008-10-09 16:01:55 +08002429 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2430 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2431 host_pat = msr_low | ((u64) msr_high << 32);
2432 vmcs_write64(HOST_IA32_PAT, host_pat);
2433 }
2434 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2435 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2436 host_pat = msr_low | ((u64) msr_high << 32);
2437 /* Write the default value follow host pat */
2438 vmcs_write64(GUEST_IA32_PAT, host_pat);
2439 /* Keep arch.pat sync with GUEST_IA32_PAT */
2440 vmx->vcpu.arch.pat = host_pat;
2441 }
2442
Avi Kivity6aa8b732006-12-10 02:21:36 -08002443 for (i = 0; i < NR_VMX_MSR; ++i) {
2444 u32 index = vmx_msr_index[i];
2445 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002446 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002447
2448 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2449 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002450 if (wrmsr_safe(index, data_low, data_high) < 0)
2451 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03002452 vmx->guest_msrs[j].index = i;
2453 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02002454 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002455 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002456 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002457
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002458 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002459
2460 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002461 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2462
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002463 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Avi Kivity4c386092009-12-07 12:26:18 +02002464 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
Avi Kivityce03e4f2009-12-07 12:29:14 +02002465 if (enable_ept)
2466 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Avi Kivity4c386092009-12-07 12:26:18 +02002467 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002468
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01002469 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2470 rdtscll(tsc_this);
2471 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2472 tsc_base = tsc_this;
2473
2474 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002475
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002476 return 0;
2477}
2478
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002479static int init_rmode(struct kvm *kvm)
2480{
2481 if (!init_rmode_tss(kvm))
2482 return 0;
2483 if (!init_rmode_identity_map(kvm))
2484 return 0;
2485 return 1;
2486}
2487
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002488static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2489{
2490 struct vcpu_vmx *vmx = to_vmx(vcpu);
2491 u64 msr;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002492 int ret, idx;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002493
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002494 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002495 idx = srcu_read_lock(&vcpu->kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002496 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002497 ret = -ENOMEM;
2498 goto out;
2499 }
2500
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002501 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002502
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002503 vmx->soft_vnmi_blocked = 0;
2504
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002505 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002506 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002507 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002508 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002509 msr |= MSR_IA32_APICBASE_BSP;
2510 kvm_set_apic_base(&vmx->vcpu, msr);
2511
2512 fx_init(&vmx->vcpu);
2513
Avi Kivity5706be02008-08-20 15:07:31 +03002514 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002515 /*
2516 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2517 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2518 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002519 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002520 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2521 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2522 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002523 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2524 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002525 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002526
2527 seg_setup(VCPU_SREG_DS);
2528 seg_setup(VCPU_SREG_ES);
2529 seg_setup(VCPU_SREG_FS);
2530 seg_setup(VCPU_SREG_GS);
2531 seg_setup(VCPU_SREG_SS);
2532
2533 vmcs_write16(GUEST_TR_SELECTOR, 0);
2534 vmcs_writel(GUEST_TR_BASE, 0);
2535 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2536 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2537
2538 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2539 vmcs_writel(GUEST_LDTR_BASE, 0);
2540 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2541 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2542
2543 vmcs_write32(GUEST_SYSENTER_CS, 0);
2544 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2545 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2546
2547 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002548 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002549 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002550 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002551 kvm_rip_write(vcpu, 0);
2552 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002553
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002554 vmcs_writel(GUEST_DR7, 0x400);
2555
2556 vmcs_writel(GUEST_GDTR_BASE, 0);
2557 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2558
2559 vmcs_writel(GUEST_IDTR_BASE, 0);
2560 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2561
2562 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2563 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2564 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2565
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002566 /* Special registers */
2567 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2568
2569 setup_msrs(vmx);
2570
Avi Kivity6aa8b732006-12-10 02:21:36 -08002571 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2572
Sheng Yangf78e0e22007-10-29 09:40:42 +08002573 if (cpu_has_vmx_tpr_shadow()) {
2574 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2575 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2576 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002577 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002578 vmcs_write32(TPR_THRESHOLD, 0);
2579 }
2580
2581 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2582 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002583 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002584
Sheng Yang2384d2b2008-01-17 15:14:33 +08002585 if (vmx->vpid != 0)
2586 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2587
Eduardo Habkostfa400522009-10-24 02:49:58 -02002588 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Avi Kivity4d4ec082009-12-29 18:07:30 +02002589 vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002590 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002591 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002592 vmx_fpu_activate(&vmx->vcpu);
2593 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002594
Sheng Yang2384d2b2008-01-17 15:14:33 +08002595 vpid_sync_vcpu_all(vmx);
2596
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002597 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002598
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002599 /* HACK: Don't enable emulation on guest boot/reset */
2600 vmx->emulation_required = 0;
2601
Avi Kivity6aa8b732006-12-10 02:21:36 -08002602out:
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002603 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002604 return ret;
2605}
2606
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002607static void enable_irq_window(struct kvm_vcpu *vcpu)
2608{
2609 u32 cpu_based_vm_exec_control;
2610
2611 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2612 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2613 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2614}
2615
2616static void enable_nmi_window(struct kvm_vcpu *vcpu)
2617{
2618 u32 cpu_based_vm_exec_control;
2619
2620 if (!cpu_has_virtual_nmis()) {
2621 enable_irq_window(vcpu);
2622 return;
2623 }
2624
2625 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2626 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2627 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2628}
2629
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002630static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03002631{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002632 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002633 uint32_t intr;
2634 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02002635
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002636 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002637
Avi Kivityfa89a812008-09-01 15:57:51 +03002638 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002639 if (vmx->rmode.vm86_active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002640 vmx->rmode.irq.pending = true;
2641 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002642 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +03002643 if (vcpu->arch.interrupt.soft)
2644 vmx->rmode.irq.rip +=
2645 vmx->vcpu.arch.event_exit_inst_len;
Avi Kivity9c5623e2007-11-08 18:19:20 +02002646 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2647 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2648 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002649 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002650 return;
2651 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002652 intr = irq | INTR_INFO_VALID_MASK;
2653 if (vcpu->arch.interrupt.soft) {
2654 intr |= INTR_TYPE_SOFT_INTR;
2655 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2656 vmx->vcpu.arch.event_exit_inst_len);
2657 } else
2658 intr |= INTR_TYPE_EXT_INTR;
2659 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03002660}
2661
Sheng Yangf08864b2008-05-15 18:23:25 +08002662static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2663{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002664 struct vcpu_vmx *vmx = to_vmx(vcpu);
2665
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002666 if (!cpu_has_virtual_nmis()) {
2667 /*
2668 * Tracking the NMI-blocked state in software is built upon
2669 * finding the next open IRQ window. This, in turn, depends on
2670 * well-behaving guests: They have to keep IRQs disabled at
2671 * least as long as the NMI handler runs. Otherwise we may
2672 * cause NMI nesting, maybe breaking the guest. But as this is
2673 * highly unlikely, we can live with the residual risk.
2674 */
2675 vmx->soft_vnmi_blocked = 1;
2676 vmx->vnmi_blocked_time = 0;
2677 }
2678
Jan Kiszka487b3912008-09-26 09:30:56 +02002679 ++vcpu->stat.nmi_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002680 if (vmx->rmode.vm86_active) {
Jan Kiszka66a5a342008-09-26 09:30:51 +02002681 vmx->rmode.irq.pending = true;
2682 vmx->rmode.irq.vector = NMI_VECTOR;
2683 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2684 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2685 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2686 INTR_INFO_VALID_MASK);
2687 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2688 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2689 return;
2690 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002691 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2692 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002693}
2694
Gleb Natapovc4282df2009-04-21 17:45:07 +03002695static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02002696{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002697 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03002698 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002699
Gleb Natapovc4282df2009-04-21 17:45:07 +03002700 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2701 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS |
2702 GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02002703}
2704
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002705static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
2706{
2707 if (!cpu_has_virtual_nmis())
2708 return to_vmx(vcpu)->soft_vnmi_blocked;
2709 else
2710 return !!(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2711 GUEST_INTR_STATE_NMI);
2712}
2713
2714static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
2715{
2716 struct vcpu_vmx *vmx = to_vmx(vcpu);
2717
2718 if (!cpu_has_virtual_nmis()) {
2719 if (vmx->soft_vnmi_blocked != masked) {
2720 vmx->soft_vnmi_blocked = masked;
2721 vmx->vnmi_blocked_time = 0;
2722 }
2723 } else {
2724 if (masked)
2725 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
2726 GUEST_INTR_STATE_NMI);
2727 else
2728 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
2729 GUEST_INTR_STATE_NMI);
2730 }
2731}
2732
Gleb Natapov78646122009-03-23 12:12:11 +02002733static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2734{
Gleb Natapovc4282df2009-04-21 17:45:07 +03002735 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2736 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2737 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02002738}
2739
Izik Eiduscbc94022007-10-25 00:29:55 +02002740static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2741{
2742 int ret;
2743 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002744 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002745 .guest_phys_addr = addr,
2746 .memory_size = PAGE_SIZE * 3,
2747 .flags = 0,
2748 };
2749
2750 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2751 if (ret)
2752 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002753 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002754 return 0;
2755}
2756
Avi Kivity6aa8b732006-12-10 02:21:36 -08002757static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2758 int vec, u32 err_code)
2759{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002760 /*
2761 * Instruction with address size override prefix opcode 0x67
2762 * Cause the #SS fault with 0 error code in VM86 mode.
2763 */
2764 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Avi Kivity851ba692009-08-24 11:10:17 +03002765 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002766 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002767 /*
2768 * Forward all other exceptions that are valid in real mode.
2769 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2770 * the required debugging infrastructure rework.
2771 */
2772 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002773 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002774 if (vcpu->guest_debug &
2775 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2776 return 0;
2777 kvm_queue_exception(vcpu, vec);
2778 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002779 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002780 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2781 return 0;
2782 /* fall through */
2783 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002784 case OF_VECTOR:
2785 case BR_VECTOR:
2786 case UD_VECTOR:
2787 case DF_VECTOR:
2788 case SS_VECTOR:
2789 case GP_VECTOR:
2790 case MF_VECTOR:
2791 kvm_queue_exception(vcpu, vec);
2792 return 1;
2793 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002794 return 0;
2795}
2796
Andi Kleena0861c02009-06-08 17:37:09 +08002797/*
2798 * Trigger machine check on the host. We assume all the MSRs are already set up
2799 * by the CPU and that we still run on the same CPU as the MCE occurred on.
2800 * We pass a fake environment to the machine check handler because we want
2801 * the guest to be always treated like user space, no matter what context
2802 * it used internally.
2803 */
2804static void kvm_machine_check(void)
2805{
2806#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
2807 struct pt_regs regs = {
2808 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
2809 .flags = X86_EFLAGS_IF,
2810 };
2811
2812 do_machine_check(&regs, 0);
2813#endif
2814}
2815
Avi Kivity851ba692009-08-24 11:10:17 +03002816static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08002817{
2818 /* already handled by vcpu_run */
2819 return 1;
2820}
2821
Avi Kivity851ba692009-08-24 11:10:17 +03002822static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002823{
Avi Kivity1155f762007-11-22 11:30:47 +02002824 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002825 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002826 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002827 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002828 u32 vect_info;
2829 enum emulation_result er;
2830
Avi Kivity1155f762007-11-22 11:30:47 +02002831 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002832 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2833
Andi Kleena0861c02009-06-08 17:37:09 +08002834 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03002835 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08002836
Avi Kivity6aa8b732006-12-10 02:21:36 -08002837 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Avi Kivity65ac7262009-11-04 11:59:01 +02002838 !is_page_fault(intr_info)) {
2839 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
2840 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
2841 vcpu->run->internal.ndata = 2;
2842 vcpu->run->internal.data[0] = vect_info;
2843 vcpu->run->internal.data[1] = intr_info;
2844 return 0;
2845 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002846
Jan Kiszkae4a41882008-09-26 09:30:46 +02002847 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002848 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002849
2850 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002851 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002852 return 1;
2853 }
2854
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002855 if (is_invalid_opcode(intr_info)) {
Avi Kivity851ba692009-08-24 11:10:17 +03002856 er = emulate_instruction(vcpu, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002857 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002858 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002859 return 1;
2860 }
2861
Avi Kivity6aa8b732006-12-10 02:21:36 -08002862 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002863 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002864 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002865 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2866 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002867 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02002868 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002869 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002870 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002871 trace_kvm_page_fault(cr2, error_code);
2872
Gleb Natapov3298b752009-05-11 13:35:46 +03002873 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03002874 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002875 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002876 }
2877
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002878 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002879 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002880 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002881 if (vcpu->arch.halt_request) {
2882 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002883 return kvm_emulate_halt(vcpu);
2884 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002885 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002886 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002887
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002888 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002889 switch (ex_no) {
2890 case DB_VECTOR:
2891 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2892 if (!(vcpu->guest_debug &
2893 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2894 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2895 kvm_queue_exception(vcpu, DB_VECTOR);
2896 return 1;
2897 }
2898 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2899 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2900 /* fall through */
2901 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002902 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002903 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2904 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002905 break;
2906 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002907 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2908 kvm_run->ex.exception = ex_no;
2909 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002910 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002911 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002912 return 0;
2913}
2914
Avi Kivity851ba692009-08-24 11:10:17 +03002915static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002916{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002917 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002918 return 1;
2919}
2920
Avi Kivity851ba692009-08-24 11:10:17 +03002921static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08002922{
Avi Kivity851ba692009-08-24 11:10:17 +03002923 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08002924 return 0;
2925}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002926
Avi Kivity851ba692009-08-24 11:10:17 +03002927static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002928{
He, Qingbfdaab02007-09-12 14:18:28 +08002929 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002930 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002931 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002932
Avi Kivity1165f5f2007-04-19 17:27:43 +03002933 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002934 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002935 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002936
2937 if (string) {
Avi Kivity851ba692009-08-24 11:10:17 +03002938 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002939 return 0;
2940 return 1;
2941 }
2942
2943 size = (exit_qualification & 7) + 1;
2944 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002945 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002946
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002947 skip_emulated_instruction(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002948 return kvm_emulate_pio(vcpu, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002949}
2950
Ingo Molnar102d8322007-02-19 14:37:47 +02002951static void
2952vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2953{
2954 /*
2955 * Patch in the VMCALL instruction:
2956 */
2957 hypercall[0] = 0x0f;
2958 hypercall[1] = 0x01;
2959 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002960}
2961
Avi Kivity851ba692009-08-24 11:10:17 +03002962static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002963{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002964 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002965 int cr;
2966 int reg;
2967
He, Qingbfdaab02007-09-12 14:18:28 +08002968 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002969 cr = exit_qualification & 15;
2970 reg = (exit_qualification >> 8) & 15;
2971 switch ((exit_qualification >> 4) & 3) {
2972 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002973 val = kvm_register_read(vcpu, reg);
2974 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002975 switch (cr) {
2976 case 0:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002977 kvm_set_cr0(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002978 skip_emulated_instruction(vcpu);
2979 return 1;
2980 case 3:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002981 kvm_set_cr3(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002982 skip_emulated_instruction(vcpu);
2983 return 1;
2984 case 4:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002985 kvm_set_cr4(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002986 skip_emulated_instruction(vcpu);
2987 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002988 case 8: {
2989 u8 cr8_prev = kvm_get_cr8(vcpu);
2990 u8 cr8 = kvm_register_read(vcpu, reg);
2991 kvm_set_cr8(vcpu, cr8);
2992 skip_emulated_instruction(vcpu);
2993 if (irqchip_in_kernel(vcpu->kvm))
2994 return 1;
2995 if (cr8_prev <= cr8)
2996 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03002997 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002998 return 0;
2999 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003000 };
3001 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03003002 case 2: /* clts */
Avi Kivityedcafe32009-12-30 18:07:40 +02003003 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02003004 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03003005 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02003006 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03003007 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003008 case 1: /*mov from cr*/
3009 switch (cr) {
3010 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003011 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003012 trace_kvm_cr_read(cr, vcpu->arch.cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003013 skip_emulated_instruction(vcpu);
3014 return 1;
3015 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003016 val = kvm_get_cr8(vcpu);
3017 kvm_register_write(vcpu, reg, val);
3018 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003019 skip_emulated_instruction(vcpu);
3020 return 1;
3021 }
3022 break;
3023 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02003024 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02003025 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02003026 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003027
3028 skip_emulated_instruction(vcpu);
3029 return 1;
3030 default:
3031 break;
3032 }
Avi Kivity851ba692009-08-24 11:10:17 +03003033 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10003034 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08003035 (int)(exit_qualification >> 4) & 3, cr);
3036 return 0;
3037}
3038
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003039static int check_dr_alias(struct kvm_vcpu *vcpu)
3040{
3041 if (kvm_read_cr4_bits(vcpu, X86_CR4_DE)) {
3042 kvm_queue_exception(vcpu, UD_VECTOR);
3043 return -1;
3044 }
3045 return 0;
3046}
3047
Avi Kivity851ba692009-08-24 11:10:17 +03003048static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003049{
He, Qingbfdaab02007-09-12 14:18:28 +08003050 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003051 unsigned long val;
3052 int dr, reg;
3053
Jan Kiszkaf2483412010-01-20 18:20:20 +01003054 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03003055 if (!kvm_require_cpl(vcpu, 0))
3056 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003057 dr = vmcs_readl(GUEST_DR7);
3058 if (dr & DR7_GD) {
3059 /*
3060 * As the vm-exit takes precedence over the debug trap, we
3061 * need to emulate the latter, either for the host or the
3062 * guest debugging itself.
3063 */
3064 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03003065 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
3066 vcpu->run->debug.arch.dr7 = dr;
3067 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003068 vmcs_readl(GUEST_CS_BASE) +
3069 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03003070 vcpu->run->debug.arch.exception = DB_VECTOR;
3071 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003072 return 0;
3073 } else {
3074 vcpu->arch.dr7 &= ~DR7_GD;
3075 vcpu->arch.dr6 |= DR6_BD;
3076 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3077 kvm_queue_exception(vcpu, DB_VECTOR);
3078 return 1;
3079 }
3080 }
3081
He, Qingbfdaab02007-09-12 14:18:28 +08003082 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003083 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
3084 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
3085 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003086 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003087 case 0 ... 3:
3088 val = vcpu->arch.db[dr];
3089 break;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003090 case 4:
3091 if (check_dr_alias(vcpu) < 0)
3092 return 1;
3093 /* fall through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003094 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003095 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003096 break;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003097 case 5:
3098 if (check_dr_alias(vcpu) < 0)
3099 return 1;
3100 /* fall through */
3101 default: /* 7 */
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003102 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003103 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003104 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003105 kvm_register_write(vcpu, reg, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003106 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003107 val = vcpu->arch.regs[reg];
3108 switch (dr) {
3109 case 0 ... 3:
3110 vcpu->arch.db[dr] = val;
3111 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
3112 vcpu->arch.eff_db[dr] = val;
3113 break;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003114 case 4:
3115 if (check_dr_alias(vcpu) < 0)
Jan Kiszkaf2483412010-01-20 18:20:20 +01003116 return 1;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003117 /* fall through */
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003118 case 6:
3119 if (val & 0xffffffff00000000ULL) {
Jan Kiszkaf2483412010-01-20 18:20:20 +01003120 kvm_inject_gp(vcpu, 0);
3121 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003122 }
3123 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
3124 break;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003125 case 5:
3126 if (check_dr_alias(vcpu) < 0)
3127 return 1;
3128 /* fall through */
3129 default: /* 7 */
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003130 if (val & 0xffffffff00000000ULL) {
Jan Kiszkaf2483412010-01-20 18:20:20 +01003131 kvm_inject_gp(vcpu, 0);
3132 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003133 }
3134 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
3135 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
3136 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3137 vcpu->arch.switch_db_regs =
3138 (val & DR7_BP_EN_MASK);
3139 }
3140 break;
3141 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003142 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003143 skip_emulated_instruction(vcpu);
3144 return 1;
3145}
3146
Avi Kivity851ba692009-08-24 11:10:17 +03003147static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003148{
Avi Kivity06465c52007-02-28 20:46:53 +02003149 kvm_emulate_cpuid(vcpu);
3150 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003151}
3152
Avi Kivity851ba692009-08-24 11:10:17 +03003153static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003154{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003155 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08003156 u64 data;
3157
3158 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivity59200272010-01-25 19:47:02 +02003159 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003160 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003161 return 1;
3162 }
3163
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003164 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003165
Avi Kivity6aa8b732006-12-10 02:21:36 -08003166 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003167 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
3168 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003169 skip_emulated_instruction(vcpu);
3170 return 1;
3171}
3172
Avi Kivity851ba692009-08-24 11:10:17 +03003173static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003174{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003175 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
3176 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
3177 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003178
3179 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02003180 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003181 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003182 return 1;
3183 }
3184
Avi Kivity59200272010-01-25 19:47:02 +02003185 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003186 skip_emulated_instruction(vcpu);
3187 return 1;
3188}
3189
Avi Kivity851ba692009-08-24 11:10:17 +03003190static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003191{
3192 return 1;
3193}
3194
Avi Kivity851ba692009-08-24 11:10:17 +03003195static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003196{
Eddie Dong85f455f2007-07-06 12:20:49 +03003197 u32 cpu_based_vm_exec_control;
3198
3199 /* clear pending irq */
3200 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3201 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
3202 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003203
Jan Kiszkaa26bf122008-09-26 09:30:45 +02003204 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003205
Dor Laorc1150d82007-01-05 16:36:24 -08003206 /*
3207 * If the user space waits to inject interrupts, exit as soon as
3208 * possible
3209 */
Gleb Natapov80618232009-04-21 17:44:56 +03003210 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03003211 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03003212 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003213 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08003214 return 0;
3215 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003216 return 1;
3217}
3218
Avi Kivity851ba692009-08-24 11:10:17 +03003219static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003220{
3221 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003222 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003223}
3224
Avi Kivity851ba692009-08-24 11:10:17 +03003225static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02003226{
Dor Laor510043d2007-02-19 18:25:43 +02003227 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003228 kvm_emulate_hypercall(vcpu);
3229 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003230}
3231
Avi Kivity851ba692009-08-24 11:10:17 +03003232static int handle_vmx_insn(struct kvm_vcpu *vcpu)
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003233{
3234 kvm_queue_exception(vcpu, UD_VECTOR);
3235 return 1;
3236}
3237
Avi Kivity851ba692009-08-24 11:10:17 +03003238static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003239{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003240 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003241
3242 kvm_mmu_invlpg(vcpu, exit_qualification);
3243 skip_emulated_instruction(vcpu);
3244 return 1;
3245}
3246
Avi Kivity851ba692009-08-24 11:10:17 +03003247static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02003248{
3249 skip_emulated_instruction(vcpu);
3250 /* TODO: Add support for VT-d/pass-through device */
3251 return 1;
3252}
3253
Avi Kivity851ba692009-08-24 11:10:17 +03003254static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003255{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003256 unsigned long exit_qualification;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003257 enum emulation_result er;
3258 unsigned long offset;
3259
Sheng Yangf9c617f2009-03-25 10:08:52 +08003260 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003261 offset = exit_qualification & 0xffful;
3262
Avi Kivity851ba692009-08-24 11:10:17 +03003263 er = emulate_instruction(vcpu, 0, 0, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003264
3265 if (er != EMULATE_DONE) {
3266 printk(KERN_ERR
3267 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3268 offset);
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003269 return -ENOEXEC;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003270 }
3271 return 1;
3272}
3273
Avi Kivity851ba692009-08-24 11:10:17 +03003274static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02003275{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003276 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003277 unsigned long exit_qualification;
3278 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003279 int reason, type, idt_v;
3280
3281 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
3282 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02003283
3284 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3285
3286 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003287 if (reason == TASK_SWITCH_GATE && idt_v) {
3288 switch (type) {
3289 case INTR_TYPE_NMI_INTR:
3290 vcpu->arch.nmi_injected = false;
3291 if (cpu_has_virtual_nmis())
3292 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3293 GUEST_INTR_STATE_NMI);
3294 break;
3295 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003296 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003297 kvm_clear_interrupt_queue(vcpu);
3298 break;
3299 case INTR_TYPE_HARD_EXCEPTION:
3300 case INTR_TYPE_SOFT_EXCEPTION:
3301 kvm_clear_exception_queue(vcpu);
3302 break;
3303 default:
3304 break;
3305 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02003306 }
Izik Eidus37817f22008-03-24 23:14:53 +02003307 tss_selector = exit_qualification;
3308
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003309 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
3310 type != INTR_TYPE_EXT_INTR &&
3311 type != INTR_TYPE_NMI_INTR))
3312 skip_emulated_instruction(vcpu);
3313
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003314 if (!kvm_task_switch(vcpu, tss_selector, reason))
3315 return 0;
3316
3317 /* clear all local breakpoint enable flags */
3318 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3319
3320 /*
3321 * TODO: What about debug traps on tss switch?
3322 * Are we supposed to inject them and update dr6?
3323 */
3324
3325 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003326}
3327
Avi Kivity851ba692009-08-24 11:10:17 +03003328static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08003329{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003330 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003331 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003332 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003333
Sheng Yangf9c617f2009-03-25 10:08:52 +08003334 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08003335
3336 if (exit_qualification & (1 << 6)) {
3337 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003338 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08003339 }
3340
3341 gla_validity = (exit_qualification >> 7) & 0x3;
3342 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3343 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3344 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3345 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08003346 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08003347 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3348 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03003349 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3350 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03003351 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08003352 }
3353
3354 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003355 trace_kvm_page_fault(gpa, exit_qualification);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003356 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003357}
3358
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003359static u64 ept_rsvd_mask(u64 spte, int level)
3360{
3361 int i;
3362 u64 mask = 0;
3363
3364 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
3365 mask |= (1ULL << i);
3366
3367 if (level > 2)
3368 /* bits 7:3 reserved */
3369 mask |= 0xf8;
3370 else if (level == 2) {
3371 if (spte & (1ULL << 7))
3372 /* 2MB ref, bits 20:12 reserved */
3373 mask |= 0x1ff000;
3374 else
3375 /* bits 6:3 reserved */
3376 mask |= 0x78;
3377 }
3378
3379 return mask;
3380}
3381
3382static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
3383 int level)
3384{
3385 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
3386
3387 /* 010b (write-only) */
3388 WARN_ON((spte & 0x7) == 0x2);
3389
3390 /* 110b (write/execute) */
3391 WARN_ON((spte & 0x7) == 0x6);
3392
3393 /* 100b (execute-only) and value not supported by logical processor */
3394 if (!cpu_has_vmx_ept_execute_only())
3395 WARN_ON((spte & 0x7) == 0x4);
3396
3397 /* not 000b */
3398 if ((spte & 0x7)) {
3399 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
3400
3401 if (rsvd_bits != 0) {
3402 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
3403 __func__, rsvd_bits);
3404 WARN_ON(1);
3405 }
3406
3407 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
3408 u64 ept_mem_type = (spte & 0x38) >> 3;
3409
3410 if (ept_mem_type == 2 || ept_mem_type == 3 ||
3411 ept_mem_type == 7) {
3412 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
3413 __func__, ept_mem_type);
3414 WARN_ON(1);
3415 }
3416 }
3417 }
3418}
3419
Avi Kivity851ba692009-08-24 11:10:17 +03003420static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003421{
3422 u64 sptes[4];
3423 int nr_sptes, i;
3424 gpa_t gpa;
3425
3426 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
3427
3428 printk(KERN_ERR "EPT: Misconfiguration.\n");
3429 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
3430
3431 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
3432
3433 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
3434 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
3435
Avi Kivity851ba692009-08-24 11:10:17 +03003436 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3437 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003438
3439 return 0;
3440}
3441
Avi Kivity851ba692009-08-24 11:10:17 +03003442static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08003443{
3444 u32 cpu_based_vm_exec_control;
3445
3446 /* clear pending NMI */
3447 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3448 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3449 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3450 ++vcpu->stat.nmi_window_exits;
3451
3452 return 1;
3453}
3454
Mohammed Gamal80ced182009-09-01 12:48:18 +02003455static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003456{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003457 struct vcpu_vmx *vmx = to_vmx(vcpu);
3458 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003459 int ret = 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003460
3461 while (!guest_state_valid(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003462 err = emulate_instruction(vcpu, 0, 0, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003463
Mohammed Gamal80ced182009-09-01 12:48:18 +02003464 if (err == EMULATE_DO_MMIO) {
3465 ret = 0;
3466 goto out;
3467 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003468
3469 if (err != EMULATE_DONE) {
Mohammed Gamal80ced182009-09-01 12:48:18 +02003470 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3471 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
Avi Kivitya9c73992009-11-04 11:54:59 +02003472 vcpu->run->internal.ndata = 0;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003473 ret = 0;
3474 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003475 }
3476
3477 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02003478 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003479 if (need_resched())
3480 schedule();
3481 }
3482
Mohammed Gamal80ced182009-09-01 12:48:18 +02003483 vmx->emulation_required = 0;
3484out:
3485 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003486}
3487
Avi Kivity6aa8b732006-12-10 02:21:36 -08003488/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003489 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
3490 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
3491 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03003492static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003493{
3494 skip_emulated_instruction(vcpu);
3495 kvm_vcpu_on_spin(vcpu);
3496
3497 return 1;
3498}
3499
Sheng Yang59708672009-12-15 13:29:54 +08003500static int handle_invalid_op(struct kvm_vcpu *vcpu)
3501{
3502 kvm_queue_exception(vcpu, UD_VECTOR);
3503 return 1;
3504}
3505
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003506/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003507 * The exit handlers return 1 if the exit was handled fully and guest execution
3508 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3509 * to be done to userspace and return 0.
3510 */
Avi Kivity851ba692009-08-24 11:10:17 +03003511static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003512 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3513 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003514 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003515 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003516 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003517 [EXIT_REASON_CR_ACCESS] = handle_cr,
3518 [EXIT_REASON_DR_ACCESS] = handle_dr,
3519 [EXIT_REASON_CPUID] = handle_cpuid,
3520 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3521 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3522 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3523 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003524 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003525 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003526 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
3527 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
3528 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
3529 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
3530 [EXIT_REASON_VMREAD] = handle_vmx_insn,
3531 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
3532 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
3533 [EXIT_REASON_VMOFF] = handle_vmx_insn,
3534 [EXIT_REASON_VMON] = handle_vmx_insn,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003535 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3536 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003537 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003538 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08003539 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003540 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
3541 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003542 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sheng Yang59708672009-12-15 13:29:54 +08003543 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_invalid_op,
3544 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_invalid_op,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003545};
3546
3547static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003548 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003549
3550/*
3551 * The guest has exited. See if we can fix it or if we need userspace
3552 * assistance.
3553 */
Avi Kivity851ba692009-08-24 11:10:17 +03003554static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003555{
Avi Kivity29bd8a72007-09-10 17:27:03 +03003556 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003557 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02003558 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003559
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003560 trace_kvm_exit(exit_reason, kvm_rip_read(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003561
Mohammed Gamal80ced182009-09-01 12:48:18 +02003562 /* If guest state is invalid, start emulating */
3563 if (vmx->emulation_required && emulate_invalid_guest_state)
3564 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003565
Sheng Yang14394422008-04-28 12:24:45 +08003566 /* Access CR3 don't cause VMExit in paging mode, so we need
3567 * to sync with guest real CR3. */
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003568 if (enable_ept && is_paging(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003569 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003570
Avi Kivity29bd8a72007-09-10 17:27:03 +03003571 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003572 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3573 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03003574 = vmcs_read32(VM_INSTRUCTION_ERROR);
3575 return 0;
3576 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003577
Mike Dayd77c26f2007-10-08 09:02:08 -04003578 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003579 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003580 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3581 exit_reason != EXIT_REASON_TASK_SWITCH))
3582 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3583 "(0x%x) and exit reason is 0x%x\n",
3584 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003585
3586 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03003587 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003588 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003589 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003590 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003591 /*
3592 * This CPU don't support us in finding the end of an
3593 * NMI-blocked window if the guest runs with IRQs
3594 * disabled. So we pull the trigger after 1 s of
3595 * futile waiting, but inform the user about this.
3596 */
3597 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3598 "state on VCPU %d after 1 s timeout\n",
3599 __func__, vcpu->vcpu_id);
3600 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003601 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003602 }
3603
Avi Kivity6aa8b732006-12-10 02:21:36 -08003604 if (exit_reason < kvm_vmx_max_exit_handlers
3605 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03003606 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003607 else {
Avi Kivity851ba692009-08-24 11:10:17 +03003608 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3609 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003610 }
3611 return 0;
3612}
3613
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003614static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003615{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003616 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003617 vmcs_write32(TPR_THRESHOLD, 0);
3618 return;
3619 }
3620
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003621 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003622}
3623
Avi Kivitycf393f72008-07-01 16:20:21 +03003624static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3625{
3626 u32 exit_intr_info;
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003627 u32 idt_vectoring_info = vmx->idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003628 bool unblock_nmi;
3629 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003630 int type;
3631 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03003632
3633 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Gleb Natapov20f65982009-05-11 13:35:55 +03003634
Andi Kleena0861c02009-06-08 17:37:09 +08003635 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
3636
3637 /* Handle machine checks before interrupts are enabled */
3638 if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
3639 || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
3640 && is_machine_check(exit_intr_info)))
3641 kvm_machine_check();
3642
Gleb Natapov20f65982009-05-11 13:35:55 +03003643 /* We need to handle NMIs before interrupts are enabled */
3644 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003645 (exit_intr_info & INTR_INFO_VALID_MASK))
Gleb Natapov20f65982009-05-11 13:35:55 +03003646 asm("int $2");
Gleb Natapov20f65982009-05-11 13:35:55 +03003647
3648 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3649
Avi Kivitycf393f72008-07-01 16:20:21 +03003650 if (cpu_has_virtual_nmis()) {
3651 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3652 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3653 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003654 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03003655 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3656 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003657 * SDM 3: 23.2.2 (September 2008)
3658 * Bit 12 is undefined in any of the following cases:
3659 * If the VM exit sets the valid bit in the IDT-vectoring
3660 * information field.
3661 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03003662 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003663 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
3664 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03003665 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3666 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003667 } else if (unlikely(vmx->soft_vnmi_blocked))
3668 vmx->vnmi_blocked_time +=
3669 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003670
Gleb Natapov37b96e92009-03-30 16:03:13 +03003671 vmx->vcpu.arch.nmi_injected = false;
3672 kvm_clear_exception_queue(&vmx->vcpu);
3673 kvm_clear_interrupt_queue(&vmx->vcpu);
3674
3675 if (!idtv_info_valid)
3676 return;
3677
Avi Kivity668f6122008-07-02 09:28:55 +03003678 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3679 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003680
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003681 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003682 case INTR_TYPE_NMI_INTR:
3683 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03003684 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003685 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03003686 * Clear bit "block by NMI" before VM entry if a NMI
3687 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03003688 */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003689 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3690 GUEST_INTR_STATE_NMI);
3691 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003692 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003693 vmx->vcpu.arch.event_exit_inst_len =
3694 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3695 /* fall through */
3696 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03003697 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003698 u32 err = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3699 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03003700 } else
3701 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003702 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003703 case INTR_TYPE_SOFT_INTR:
3704 vmx->vcpu.arch.event_exit_inst_len =
3705 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3706 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003707 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003708 kvm_queue_interrupt(&vmx->vcpu, vector,
3709 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003710 break;
3711 default:
3712 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03003713 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003714}
3715
Avi Kivity9c8cba32007-11-22 11:42:59 +02003716/*
3717 * Failure to inject an interrupt should give us the information
3718 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3719 * when fetching the interrupt redirection bitmap in the real-mode
3720 * tss, this doesn't happen. So we do it ourselves.
3721 */
3722static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3723{
3724 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003725 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003726 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003727 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003728 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3729 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3730 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3731 return;
3732 }
3733 vmx->idt_vectoring_info =
3734 VECTORING_INFO_VALID_MASK
3735 | INTR_TYPE_EXT_INTR
3736 | vmx->rmode.irq.vector;
3737}
3738
Avi Kivityc8019492008-07-14 14:44:59 +03003739#ifdef CONFIG_X86_64
3740#define R "r"
3741#define Q "q"
3742#else
3743#define R "e"
3744#define Q "l"
3745#endif
3746
Avi Kivity851ba692009-08-24 11:10:17 +03003747static void vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003748{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003749 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03003750
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003751 /* Record the guest's net vcpu time for enforced NMI injections. */
3752 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3753 vmx->entry_time = ktime_get();
3754
Mohammed Gamal80ced182009-09-01 12:48:18 +02003755 /* Don't enter VMX if guest state is invalid, let the exit handler
3756 start emulation until we arrive back to a valid state */
3757 if (vmx->emulation_required && emulate_invalid_guest_state)
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003758 return;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003759
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003760 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3761 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3762 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3763 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3764
Gleb Natapov787ff732009-05-18 11:44:06 +03003765 /* When single-stepping over STI and MOV SS, we must clear the
3766 * corresponding interruptibility bits in the guest state. Otherwise
3767 * vmentry fails as it then expects bit 14 (BS) in pending debug
3768 * exceptions being set, but that's not correct for the guest debugging
3769 * case. */
3770 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3771 vmx_set_interrupt_shadow(vcpu, 0);
3772
Avi Kivitye6adf282007-04-30 16:07:54 +03003773 /*
3774 * Loading guest fpu may have cleared host cr0.ts
3775 */
3776 vmcs_writel(HOST_CR0, read_cr0());
3777
Mike Dayd77c26f2007-10-08 09:02:08 -04003778 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003779 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003780 "push %%"R"dx; push %%"R"bp;"
3781 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003782 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3783 "je 1f \n\t"
3784 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003785 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003786 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03003787 /* Reload cr2 if changed */
3788 "mov %c[cr2](%0), %%"R"ax \n\t"
3789 "mov %%cr2, %%"R"dx \n\t"
3790 "cmp %%"R"ax, %%"R"dx \n\t"
3791 "je 2f \n\t"
3792 "mov %%"R"ax, %%cr2 \n\t"
3793 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003794 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003795 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003796 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003797 "mov %c[rax](%0), %%"R"ax \n\t"
3798 "mov %c[rbx](%0), %%"R"bx \n\t"
3799 "mov %c[rdx](%0), %%"R"dx \n\t"
3800 "mov %c[rsi](%0), %%"R"si \n\t"
3801 "mov %c[rdi](%0), %%"R"di \n\t"
3802 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003803#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003804 "mov %c[r8](%0), %%r8 \n\t"
3805 "mov %c[r9](%0), %%r9 \n\t"
3806 "mov %c[r10](%0), %%r10 \n\t"
3807 "mov %c[r11](%0), %%r11 \n\t"
3808 "mov %c[r12](%0), %%r12 \n\t"
3809 "mov %c[r13](%0), %%r13 \n\t"
3810 "mov %c[r14](%0), %%r14 \n\t"
3811 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003812#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003813 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3814
Avi Kivity6aa8b732006-12-10 02:21:36 -08003815 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003816 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003817 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003818 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003819 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003820 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003821 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003822 "xchg %0, (%%"R"sp) \n\t"
3823 "mov %%"R"ax, %c[rax](%0) \n\t"
3824 "mov %%"R"bx, %c[rbx](%0) \n\t"
3825 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3826 "mov %%"R"dx, %c[rdx](%0) \n\t"
3827 "mov %%"R"si, %c[rsi](%0) \n\t"
3828 "mov %%"R"di, %c[rdi](%0) \n\t"
3829 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003830#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003831 "mov %%r8, %c[r8](%0) \n\t"
3832 "mov %%r9, %c[r9](%0) \n\t"
3833 "mov %%r10, %c[r10](%0) \n\t"
3834 "mov %%r11, %c[r11](%0) \n\t"
3835 "mov %%r12, %c[r12](%0) \n\t"
3836 "mov %%r13, %c[r13](%0) \n\t"
3837 "mov %%r14, %c[r14](%0) \n\t"
3838 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003839#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003840 "mov %%cr2, %%"R"ax \n\t"
3841 "mov %%"R"ax, %c[cr2](%0) \n\t"
3842
3843 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003844 "setbe %c[fail](%0) \n\t"
3845 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3846 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3847 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003848 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003849 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3850 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3851 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3852 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3853 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3854 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3855 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003856#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003857 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3858 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3859 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3860 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3861 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3862 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3863 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3864 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003865#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003866 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003867 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003868 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003869#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003870 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3871#endif
3872 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003873
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003874 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
3875 | (1 << VCPU_EXREG_PDPTR));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003876 vcpu->arch.regs_dirty = 0;
3877
Avi Kivity1155f762007-11-22 11:30:47 +02003878 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003879 if (vmx->rmode.irq.pending)
3880 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003881
Mike Dayd77c26f2007-10-08 09:02:08 -04003882 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003883 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003884
Avi Kivitycf393f72008-07-01 16:20:21 +03003885 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003886}
3887
Avi Kivityc8019492008-07-14 14:44:59 +03003888#undef R
3889#undef Q
3890
Avi Kivity6aa8b732006-12-10 02:21:36 -08003891static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3892{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003893 struct vcpu_vmx *vmx = to_vmx(vcpu);
3894
3895 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003896 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003897 free_vmcs(vmx->vmcs);
3898 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003899 }
3900}
3901
3902static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3903{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003904 struct vcpu_vmx *vmx = to_vmx(vcpu);
3905
Sheng Yang2384d2b2008-01-17 15:14:33 +08003906 spin_lock(&vmx_vpid_lock);
3907 if (vmx->vpid != 0)
3908 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3909 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003910 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003911 kfree(vmx->guest_msrs);
3912 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003913 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003914}
3915
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003916static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003917{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003918 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003919 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003920 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003921
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003922 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003923 return ERR_PTR(-ENOMEM);
3924
Sheng Yang2384d2b2008-01-17 15:14:33 +08003925 allocate_vpid(vmx);
3926
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003927 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3928 if (err)
3929 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003930
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003931 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003932 if (!vmx->guest_msrs) {
3933 err = -ENOMEM;
3934 goto uninit_vcpu;
3935 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003936
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003937 vmx->vmcs = alloc_vmcs();
3938 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003939 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003940
3941 vmcs_clear(vmx->vmcs);
3942
Avi Kivity15ad7142007-07-11 18:17:21 +03003943 cpu = get_cpu();
3944 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003945 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003946 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003947 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003948 if (err)
3949 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003950 if (vm_need_virtualize_apic_accesses(kvm))
3951 if (alloc_apic_access_page(kvm) != 0)
3952 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003953
Sheng Yangb927a3c2009-07-21 10:42:48 +08003954 if (enable_ept) {
3955 if (!kvm->arch.ept_identity_map_addr)
3956 kvm->arch.ept_identity_map_addr =
3957 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003958 if (alloc_identity_pagetable(kvm) != 0)
3959 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003960 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003961
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003962 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003963
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003964free_vmcs:
3965 free_vmcs(vmx->vmcs);
3966free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003967 kfree(vmx->guest_msrs);
3968uninit_vcpu:
3969 kvm_vcpu_uninit(&vmx->vcpu);
3970free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003971 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003972 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003973}
3974
Yang, Sheng002c7f72007-07-31 14:23:01 +03003975static void __init vmx_check_processor_compat(void *rtn)
3976{
3977 struct vmcs_config vmcs_conf;
3978
3979 *(int *)rtn = 0;
3980 if (setup_vmcs_config(&vmcs_conf) < 0)
3981 *(int *)rtn = -EIO;
3982 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3983 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3984 smp_processor_id());
3985 *(int *)rtn = -EIO;
3986 }
3987}
3988
Sheng Yang67253af2008-04-25 10:20:22 +08003989static int get_ept_level(void)
3990{
3991 return VMX_EPT_DEFAULT_GAW + 1;
3992}
3993
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003994static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08003995{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003996 u64 ret;
3997
Sheng Yang522c68c2009-04-27 20:35:43 +08003998 /* For VT-d and EPT combination
3999 * 1. MMIO: always map as UC
4000 * 2. EPT with VT-d:
4001 * a. VT-d without snooping control feature: can't guarantee the
4002 * result, try to trust guest.
4003 * b. VT-d with snooping control feature: snooping control feature of
4004 * VT-d engine can guarantee the cache correctness. Just set it
4005 * to WB to keep consistent with host. So the same as item 3.
4006 * 3. EPT without VT-d: always map as WB and set IGMT=1 to keep
4007 * consistent with host MTRR
4008 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004009 if (is_mmio)
4010 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08004011 else if (vcpu->kvm->arch.iommu_domain &&
4012 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
4013 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
4014 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004015 else
Sheng Yang522c68c2009-04-27 20:35:43 +08004016 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
4017 | VMX_EPT_IGMT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004018
4019 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08004020}
4021
Avi Kivityf4c9e872009-12-28 16:06:35 +02004022#define _ER(x) { EXIT_REASON_##x, #x }
4023
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004024static const struct trace_print_flags vmx_exit_reasons_str[] = {
Avi Kivityf4c9e872009-12-28 16:06:35 +02004025 _ER(EXCEPTION_NMI),
4026 _ER(EXTERNAL_INTERRUPT),
4027 _ER(TRIPLE_FAULT),
4028 _ER(PENDING_INTERRUPT),
4029 _ER(NMI_WINDOW),
4030 _ER(TASK_SWITCH),
4031 _ER(CPUID),
4032 _ER(HLT),
4033 _ER(INVLPG),
4034 _ER(RDPMC),
4035 _ER(RDTSC),
4036 _ER(VMCALL),
4037 _ER(VMCLEAR),
4038 _ER(VMLAUNCH),
4039 _ER(VMPTRLD),
4040 _ER(VMPTRST),
4041 _ER(VMREAD),
4042 _ER(VMRESUME),
4043 _ER(VMWRITE),
4044 _ER(VMOFF),
4045 _ER(VMON),
4046 _ER(CR_ACCESS),
4047 _ER(DR_ACCESS),
4048 _ER(IO_INSTRUCTION),
4049 _ER(MSR_READ),
4050 _ER(MSR_WRITE),
4051 _ER(MWAIT_INSTRUCTION),
4052 _ER(MONITOR_INSTRUCTION),
4053 _ER(PAUSE_INSTRUCTION),
4054 _ER(MCE_DURING_VMENTRY),
4055 _ER(TPR_BELOW_THRESHOLD),
4056 _ER(APIC_ACCESS),
4057 _ER(EPT_VIOLATION),
4058 _ER(EPT_MISCONFIG),
4059 _ER(WBINVD),
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004060 { -1, NULL }
4061};
4062
Avi Kivityf4c9e872009-12-28 16:06:35 +02004063#undef _ER
4064
Sheng Yang17cc3932010-01-05 19:02:27 +08004065static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02004066{
Sheng Yang878403b2010-01-05 19:02:29 +08004067 if (enable_ept && !cpu_has_vmx_ept_1g_page())
4068 return PT_DIRECTORY_LEVEL;
4069 else
4070 /* For shadow and EPT supported 1GB page */
4071 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02004072}
4073
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004074static inline u32 bit(int bitno)
4075{
4076 return 1 << (bitno & 31);
4077}
4078
Sheng Yang0e851882009-12-18 16:48:46 +08004079static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
4080{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004081 struct kvm_cpuid_entry2 *best;
4082 struct vcpu_vmx *vmx = to_vmx(vcpu);
4083 u32 exec_control;
4084
4085 vmx->rdtscp_enabled = false;
4086 if (vmx_rdtscp_supported()) {
4087 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
4088 if (exec_control & SECONDARY_EXEC_RDTSCP) {
4089 best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
4090 if (best && (best->edx & bit(X86_FEATURE_RDTSCP)))
4091 vmx->rdtscp_enabled = true;
4092 else {
4093 exec_control &= ~SECONDARY_EXEC_RDTSCP;
4094 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
4095 exec_control);
4096 }
4097 }
4098 }
Sheng Yang0e851882009-12-18 16:48:46 +08004099}
4100
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03004101static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004102 .cpu_has_kvm_support = cpu_has_kvm_support,
4103 .disabled_by_bios = vmx_disabled_by_bios,
4104 .hardware_setup = hardware_setup,
4105 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03004106 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004107 .hardware_enable = hardware_enable,
4108 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08004109 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004110
4111 .vcpu_create = vmx_create_vcpu,
4112 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004113 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004114
Avi Kivity04d2cc72007-09-10 18:10:54 +03004115 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004116 .vcpu_load = vmx_vcpu_load,
4117 .vcpu_put = vmx_vcpu_put,
4118
4119 .set_guest_debug = set_guest_debug,
4120 .get_msr = vmx_get_msr,
4121 .set_msr = vmx_set_msr,
4122 .get_segment_base = vmx_get_segment_base,
4123 .get_segment = vmx_get_segment,
4124 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02004125 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004126 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02004127 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03004128 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004129 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004130 .set_cr3 = vmx_set_cr3,
4131 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004132 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004133 .get_idt = vmx_get_idt,
4134 .set_idt = vmx_set_idt,
4135 .get_gdt = vmx_get_gdt,
4136 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004137 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004138 .get_rflags = vmx_get_rflags,
4139 .set_rflags = vmx_set_rflags,
Avi Kivity02daab22009-12-30 12:40:26 +02004140 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004141
4142 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004143
Avi Kivity6aa8b732006-12-10 02:21:36 -08004144 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02004145 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004146 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04004147 .set_interrupt_shadow = vmx_set_interrupt_shadow,
4148 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02004149 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03004150 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004151 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02004152 .queue_exception = vmx_queue_exception,
Gleb Natapov78646122009-03-23 12:12:11 +02004153 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004154 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004155 .get_nmi_mask = vmx_get_nmi_mask,
4156 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004157 .enable_nmi_window = enable_nmi_window,
4158 .enable_irq_window = enable_irq_window,
4159 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004160
Izik Eiduscbc94022007-10-25 00:29:55 +02004161 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08004162 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004163 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004164
4165 .exit_reasons_str = vmx_exit_reasons_str,
Sheng Yang17cc3932010-01-05 19:02:27 +08004166 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08004167
4168 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004169
4170 .rdtscp_supported = vmx_rdtscp_supported,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004171};
4172
4173static int __init vmx_init(void)
4174{
Avi Kivity26bb0982009-09-07 11:14:12 +03004175 int r, i;
4176
4177 rdmsrl_safe(MSR_EFER, &host_efer);
4178
4179 for (i = 0; i < NR_VMX_MSR; ++i)
4180 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03004181
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004182 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004183 if (!vmx_io_bitmap_a)
4184 return -ENOMEM;
4185
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004186 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004187 if (!vmx_io_bitmap_b) {
4188 r = -ENOMEM;
4189 goto out;
4190 }
4191
Avi Kivity58972972009-02-24 22:26:47 +02004192 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
4193 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08004194 r = -ENOMEM;
4195 goto out1;
4196 }
4197
Avi Kivity58972972009-02-24 22:26:47 +02004198 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
4199 if (!vmx_msr_bitmap_longmode) {
4200 r = -ENOMEM;
4201 goto out2;
4202 }
4203
He, Qingfdef3ad2007-04-30 09:45:24 +03004204 /*
4205 * Allow direct access to the PC debug port (it is often used for I/O
4206 * delays, but the vmexits simply slow things down).
4207 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004208 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
4209 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004210
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004211 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004212
Avi Kivity58972972009-02-24 22:26:47 +02004213 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
4214 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08004215
Sheng Yang2384d2b2008-01-17 15:14:33 +08004216 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
4217
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004218 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004219 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02004220 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08004221
Avi Kivity58972972009-02-24 22:26:47 +02004222 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
4223 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
4224 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
4225 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
4226 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
4227 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03004228
Avi Kivity089d0342009-03-23 18:26:32 +02004229 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004230 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004231 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08004232 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08004233 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004234 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004235 kvm_enable_tdp();
4236 } else
4237 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08004238
Avi Kivityc7addb92007-09-16 18:58:32 +02004239 if (bypass_guest_pf)
4240 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
4241
He, Qingfdef3ad2007-04-30 09:45:24 +03004242 return 0;
4243
Avi Kivity58972972009-02-24 22:26:47 +02004244out3:
4245 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08004246out2:
Avi Kivity58972972009-02-24 22:26:47 +02004247 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03004248out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004249 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03004250out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004251 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004252 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004253}
4254
4255static void __exit vmx_exit(void)
4256{
Avi Kivity58972972009-02-24 22:26:47 +02004257 free_page((unsigned long)vmx_msr_bitmap_legacy);
4258 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004259 free_page((unsigned long)vmx_io_bitmap_b);
4260 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004261
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004262 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004263}
4264
4265module_init(vmx_init)
4266module_exit(vmx_exit)