blob: 9727773f24b7cd010490262555ca9fd839f21cba [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 Kivity02daab22009-12-30 12:40:26 +020069 (X86_CR0_WP | X86_CR0_NE | X86_CR0_MP)
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, Sheng1c3d14f2007-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, Sheng1c3d14f2007-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, Sheng1c3d14f2007-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{
Sheng Yang04547152009-04-01 15:52:31 +0800361 return flexpriority_enabled &&
362 (cpu_has_vmx_virtualize_apic_accesses()) &&
363 (irqchip_in_kernel(kvm));
Sheng Yangf78e0e22007-10-29 09:40:42 +0800364}
365
Sheng Yang2384d2b2008-01-17 15:14:33 +0800366static inline int cpu_has_vmx_vpid(void)
367{
Sheng Yang04547152009-04-01 15:52:31 +0800368 return vmcs_config.cpu_based_2nd_exec_ctrl &
369 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800370}
371
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800372static inline int cpu_has_vmx_rdtscp(void)
373{
374 return vmcs_config.cpu_based_2nd_exec_ctrl &
375 SECONDARY_EXEC_RDTSCP;
376}
377
Sheng Yangf08864b2008-05-15 18:23:25 +0800378static inline int cpu_has_virtual_nmis(void)
379{
380 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
381}
382
Sheng Yang04547152009-04-01 15:52:31 +0800383static inline bool report_flexpriority(void)
384{
385 return flexpriority_enabled;
386}
387
Rusty Russell8b9cf982007-07-30 16:31:43 +1000388static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800389{
390 int i;
391
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400392 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +0300393 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300394 return i;
395 return -1;
396}
397
Sheng Yang2384d2b2008-01-17 15:14:33 +0800398static inline void __invvpid(int ext, u16 vpid, gva_t gva)
399{
400 struct {
401 u64 vpid : 16;
402 u64 rsvd : 48;
403 u64 gva;
404 } operand = { vpid, 0, gva };
405
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300406 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800407 /* CF==1 or ZF==1 --> rc = -1 */
408 "; ja 1f ; ud2 ; 1:"
409 : : "a"(&operand), "c"(ext) : "cc", "memory");
410}
411
Sheng Yang14394422008-04-28 12:24:45 +0800412static inline void __invept(int ext, u64 eptp, gpa_t gpa)
413{
414 struct {
415 u64 eptp, gpa;
416 } operand = {eptp, gpa};
417
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300418 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800419 /* CF==1 or ZF==1 --> rc = -1 */
420 "; ja 1f ; ud2 ; 1:\n"
421 : : "a" (&operand), "c" (ext) : "cc", "memory");
422}
423
Avi Kivity26bb0982009-09-07 11:14:12 +0300424static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300425{
426 int i;
427
Rusty Russell8b9cf982007-07-30 16:31:43 +1000428 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300429 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400430 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000431 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800432}
433
Avi Kivity6aa8b732006-12-10 02:21:36 -0800434static void vmcs_clear(struct vmcs *vmcs)
435{
436 u64 phys_addr = __pa(vmcs);
437 u8 error;
438
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300439 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800440 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
441 : "cc", "memory");
442 if (error)
443 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
444 vmcs, phys_addr);
445}
446
447static void __vcpu_clear(void *arg)
448{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000449 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800450 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800451
Rusty Russell8b9cf982007-07-30 16:31:43 +1000452 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400453 vmcs_clear(vmx->vmcs);
454 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800455 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800456 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300457 list_del(&vmx->local_vcpus_link);
458 vmx->vcpu.cpu = -1;
459 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800460}
461
Rusty Russell8b9cf982007-07-30 16:31:43 +1000462static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800463{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200464 if (vmx->vcpu.cpu == -1)
465 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200466 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800467}
468
Sheng Yang2384d2b2008-01-17 15:14:33 +0800469static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
470{
471 if (vmx->vpid == 0)
472 return;
473
474 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
475}
476
Sheng Yang14394422008-04-28 12:24:45 +0800477static inline void ept_sync_global(void)
478{
479 if (cpu_has_vmx_invept_global())
480 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
481}
482
483static inline void ept_sync_context(u64 eptp)
484{
Avi Kivity089d0342009-03-23 18:26:32 +0200485 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800486 if (cpu_has_vmx_invept_context())
487 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
488 else
489 ept_sync_global();
490 }
491}
492
493static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
494{
Avi Kivity089d0342009-03-23 18:26:32 +0200495 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800496 if (cpu_has_vmx_invept_individual_addr())
497 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
498 eptp, gpa);
499 else
500 ept_sync_context(eptp);
501 }
502}
503
Avi Kivity6aa8b732006-12-10 02:21:36 -0800504static unsigned long vmcs_readl(unsigned long field)
505{
506 unsigned long value;
507
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300508 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800509 : "=a"(value) : "d"(field) : "cc");
510 return value;
511}
512
513static u16 vmcs_read16(unsigned long field)
514{
515 return vmcs_readl(field);
516}
517
518static u32 vmcs_read32(unsigned long field)
519{
520 return vmcs_readl(field);
521}
522
523static u64 vmcs_read64(unsigned long field)
524{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800525#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800526 return vmcs_readl(field);
527#else
528 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
529#endif
530}
531
Avi Kivitye52de1b2007-01-05 16:36:56 -0800532static noinline void vmwrite_error(unsigned long field, unsigned long value)
533{
534 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
535 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
536 dump_stack();
537}
538
Avi Kivity6aa8b732006-12-10 02:21:36 -0800539static void vmcs_writel(unsigned long field, unsigned long value)
540{
541 u8 error;
542
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300543 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400544 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800545 if (unlikely(error))
546 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800547}
548
549static void vmcs_write16(unsigned long field, u16 value)
550{
551 vmcs_writel(field, value);
552}
553
554static void vmcs_write32(unsigned long field, u32 value)
555{
556 vmcs_writel(field, value);
557}
558
559static void vmcs_write64(unsigned long field, u64 value)
560{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800561 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300562#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800563 asm volatile ("");
564 vmcs_writel(field+1, value >> 32);
565#endif
566}
567
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300568static void vmcs_clear_bits(unsigned long field, u32 mask)
569{
570 vmcs_writel(field, vmcs_readl(field) & ~mask);
571}
572
573static void vmcs_set_bits(unsigned long field, u32 mask)
574{
575 vmcs_writel(field, vmcs_readl(field) | mask);
576}
577
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300578static void update_exception_bitmap(struct kvm_vcpu *vcpu)
579{
580 u32 eb;
581
Avi Kivity02daab22009-12-30 12:40:26 +0200582 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR)
583 | (1u << NM_VECTOR);
Avi Kivitye8a48342009-09-01 16:06:25 +0300584 /*
585 * Unconditionally intercept #DB so we can maintain dr6 without
586 * reading it every exit.
587 */
588 eb |= 1u << DB_VECTOR;
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100589 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100590 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
591 eb |= 1u << BP_VECTOR;
592 }
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300593 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300594 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +0200595 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +0800596 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +0200597 if (vcpu->fpu_active)
598 eb &= ~(1u << NM_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300599 vmcs_write32(EXCEPTION_BITMAP, eb);
600}
601
Avi Kivity33ed6322007-05-02 16:54:03 +0300602static void reload_tss(void)
603{
Avi Kivity33ed6322007-05-02 16:54:03 +0300604 /*
605 * VT restores TR but not its size. Useless.
606 */
607 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200608 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300609
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300610 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300611 descs = (void *)gdt.base;
612 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
613 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300614}
615
Avi Kivity92c0d902009-10-29 11:00:16 +0200616static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +0300617{
Roel Kluin3a34a882009-08-04 02:08:45 -0700618 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300619 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300620
Avi Kivity26bb0982009-09-07 11:14:12 +0300621 guest_efer = vmx->vcpu.arch.shadow_efer;
Roel Kluin3a34a882009-08-04 02:08:45 -0700622
Avi Kivity51c6cf62007-08-29 03:48:05 +0300623 /*
624 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
625 * outside long mode
626 */
627 ignore_bits = EFER_NX | EFER_SCE;
628#ifdef CONFIG_X86_64
629 ignore_bits |= EFER_LMA | EFER_LME;
630 /* SCE is meaningful only in long mode on Intel */
631 if (guest_efer & EFER_LMA)
632 ignore_bits &= ~(u64)EFER_SCE;
633#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +0300634 guest_efer &= ~ignore_bits;
635 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300636 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +0200637 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300638 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300639}
640
Avi Kivity04d2cc72007-09-10 18:10:54 +0300641static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300642{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300643 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +0300644 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +0300645
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400646 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300647 return;
648
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400649 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300650 /*
651 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
652 * allow segment selectors with cpl > 0 or ti == 1.
653 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300654 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200655 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300656 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200657 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400658 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200659 vmx->host_state.fs_reload_needed = 0;
660 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300661 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200662 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300663 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300664 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400665 if (!(vmx->host_state.gs_sel & 7))
666 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300667 else {
668 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200669 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300670 }
671
672#ifdef CONFIG_X86_64
673 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
674 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
675#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400676 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
677 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300678#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300679
680#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300681 if (is_long_mode(&vmx->vcpu)) {
682 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
683 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
684 }
Avi Kivity707c0872007-05-02 17:33:43 +0300685#endif
Avi Kivity26bb0982009-09-07 11:14:12 +0300686 for (i = 0; i < vmx->save_nmsrs; ++i)
687 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +0200688 vmx->guest_msrs[i].data,
689 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +0300690}
691
Avi Kivitya9b21b62008-06-24 11:48:49 +0300692static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300693{
Avi Kivity15ad7142007-07-11 18:17:21 +0300694 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300695
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400696 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300697 return;
698
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200699 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400700 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200701 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300702 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200703 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300704 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300705 /*
706 * If we have to reload gs, we must take care to
707 * preserve our gs base.
708 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300709 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300710 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300711#ifdef CONFIG_X86_64
712 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
713#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300714 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300715 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200716 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +0300717#ifdef CONFIG_X86_64
718 if (is_long_mode(&vmx->vcpu)) {
719 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
720 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
721 }
722#endif
Avi Kivity33ed6322007-05-02 16:54:03 +0300723}
724
Avi Kivitya9b21b62008-06-24 11:48:49 +0300725static void vmx_load_host_state(struct vcpu_vmx *vmx)
726{
727 preempt_disable();
728 __vmx_load_host_state(vmx);
729 preempt_enable();
730}
731
Avi Kivity6aa8b732006-12-10 02:21:36 -0800732/*
733 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
734 * vcpu mutex is already taken.
735 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300736static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800737{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400738 struct vcpu_vmx *vmx = to_vmx(vcpu);
739 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200740 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800741
Eddie Donga3d7f852007-09-03 16:15:12 +0300742 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000743 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300744 kvm_migrate_timers(vcpu);
Marcelo Tosattieb5109e2009-10-01 19:16:58 -0300745 set_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests);
Avi Kivity543e4242008-05-13 16:22:47 +0300746 local_irq_disable();
747 list_add(&vmx->local_vcpus_link,
748 &per_cpu(vcpus_on_cpu, cpu));
749 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300750 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800751
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400752 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800753 u8 error;
754
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400755 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300756 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800757 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
758 : "cc");
759 if (error)
760 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400761 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800762 }
763
764 if (vcpu->cpu != cpu) {
765 struct descriptor_table dt;
766 unsigned long sysenter_esp;
767
768 vcpu->cpu = cpu;
769 /*
770 * Linux uses per-cpu TSS and GDT, so set these when switching
771 * processors.
772 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300773 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
774 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800775 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
776
777 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
778 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300779
780 /*
781 * Make sure the time stamp counter is monotonous.
782 */
783 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200784 if (tsc_this < vcpu->arch.host_tsc) {
785 delta = vcpu->arch.host_tsc - tsc_this;
786 new_offset = vmcs_read64(TSC_OFFSET) + delta;
787 vmcs_write64(TSC_OFFSET, new_offset);
788 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800789 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800790}
791
792static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
793{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300794 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800795}
796
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300797static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
798{
799 if (vcpu->fpu_active)
800 return;
801 vcpu->fpu_active = 1;
Rusty Russell707d92f2007-07-17 23:19:08 +1000802 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity4d4ec082009-12-29 18:07:30 +0200803 if (kvm_read_cr0_bits(vcpu, X86_CR0_TS))
Rusty Russell707d92f2007-07-17 23:19:08 +1000804 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300805 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +0200806 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
807 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300808}
809
Avi Kivityedcafe32009-12-30 18:07:40 +0200810static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
811
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300812static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
813{
Avi Kivityedcafe32009-12-30 18:07:40 +0200814 vmx_decache_cr0_guest_bits(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +1000815 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300816 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +0200817 vcpu->arch.cr0_guest_owned_bits = 0;
818 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
819 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300820}
821
Avi Kivity6aa8b732006-12-10 02:21:36 -0800822static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
823{
Avi Kivity345dcaa2009-08-12 15:29:37 +0300824 unsigned long rflags;
825
826 rflags = vmcs_readl(GUEST_RFLAGS);
827 if (to_vmx(vcpu)->rmode.vm86_active)
828 rflags &= ~(unsigned long)(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
829 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800830}
831
832static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
833{
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300834 if (to_vmx(vcpu)->rmode.vm86_active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100835 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800836 vmcs_writel(GUEST_RFLAGS, rflags);
837}
838
Glauber Costa2809f5d2009-05-12 16:21:05 -0400839static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
840{
841 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
842 int ret = 0;
843
844 if (interruptibility & GUEST_INTR_STATE_STI)
845 ret |= X86_SHADOW_INT_STI;
846 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
847 ret |= X86_SHADOW_INT_MOV_SS;
848
849 return ret & mask;
850}
851
852static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
853{
854 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
855 u32 interruptibility = interruptibility_old;
856
857 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
858
859 if (mask & X86_SHADOW_INT_MOV_SS)
860 interruptibility |= GUEST_INTR_STATE_MOV_SS;
861 if (mask & X86_SHADOW_INT_STI)
862 interruptibility |= GUEST_INTR_STATE_STI;
863
864 if ((interruptibility != interruptibility_old))
865 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
866}
867
Avi Kivity6aa8b732006-12-10 02:21:36 -0800868static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
869{
870 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800871
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300872 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800873 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300874 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800875
Glauber Costa2809f5d2009-05-12 16:21:05 -0400876 /* skipping an emulated instruction also counts */
877 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800878}
879
Avi Kivity298101d2007-11-25 13:41:11 +0200880static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
881 bool has_error_code, u32 error_code)
882{
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200883 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100884 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200885
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100886 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200887 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100888 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
889 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200890
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300891 if (vmx->rmode.vm86_active) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200892 vmx->rmode.irq.pending = true;
893 vmx->rmode.irq.vector = nr;
894 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +0300895 if (kvm_exception_is_soft(nr))
896 vmx->rmode.irq.rip +=
897 vmx->vcpu.arch.event_exit_inst_len;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100898 intr_info |= INTR_TYPE_SOFT_INTR;
899 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200900 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
901 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
902 return;
903 }
904
Gleb Natapov66fd3f72009-05-11 13:35:50 +0300905 if (kvm_exception_is_soft(nr)) {
906 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
907 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100908 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
909 } else
910 intr_info |= INTR_TYPE_HARD_EXCEPTION;
911
912 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +0200913}
914
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800915static bool vmx_rdtscp_supported(void)
916{
917 return cpu_has_vmx_rdtscp();
918}
919
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920/*
Eddie Donga75beee2007-05-17 18:55:15 +0300921 * Swap MSR entry in host/guest MSR entry array.
922 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000923static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300924{
Avi Kivity26bb0982009-09-07 11:14:12 +0300925 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400926
927 tmp = vmx->guest_msrs[to];
928 vmx->guest_msrs[to] = vmx->guest_msrs[from];
929 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300930}
931
932/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300933 * Set up the vmcs to automatically save and restore system
934 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
935 * mode, as fiddling with msrs is very expensive.
936 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000937static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300938{
Avi Kivity26bb0982009-09-07 11:14:12 +0300939 int save_nmsrs, index;
Avi Kivity58972972009-02-24 22:26:47 +0200940 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +0300941
Avi Kivity33f9c502008-02-27 16:06:57 +0200942 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300943 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300944#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000945 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000946 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300947 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000948 move_msr_up(vmx, index, save_nmsrs++);
949 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300950 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000951 move_msr_up(vmx, index, save_nmsrs++);
952 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300953 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000954 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800955 index = __find_msr_index(vmx, MSR_TSC_AUX);
956 if (index >= 0 && vmx->rdtscp_enabled)
957 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300958 /*
959 * MSR_K6_STAR is only needed on long mode guests, and only
960 * if efer.sce is enabled.
961 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000962 index = __find_msr_index(vmx, MSR_K6_STAR);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800963 if ((index >= 0) && (vmx->vcpu.arch.shadow_efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000964 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300965 }
Eddie Donga75beee2007-05-17 18:55:15 +0300966#endif
Avi Kivity92c0d902009-10-29 11:00:16 +0200967 index = __find_msr_index(vmx, MSR_EFER);
968 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +0300969 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300970
Avi Kivity26bb0982009-09-07 11:14:12 +0300971 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +0200972
973 if (cpu_has_vmx_msr_bitmap()) {
974 if (is_long_mode(&vmx->vcpu))
975 msr_bitmap = vmx_msr_bitmap_longmode;
976 else
977 msr_bitmap = vmx_msr_bitmap_legacy;
978
979 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
980 }
Avi Kivitye38aea32007-04-19 13:22:48 +0300981}
982
983/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800984 * reads and returns guest's timestamp counter "register"
985 * guest_tsc = host_tsc + tsc_offset -- 21.3
986 */
987static u64 guest_read_tsc(void)
988{
989 u64 host_tsc, tsc_offset;
990
991 rdtscll(host_tsc);
992 tsc_offset = vmcs_read64(TSC_OFFSET);
993 return host_tsc + tsc_offset;
994}
995
996/*
997 * writes 'guest_tsc' into guest's timestamp counter "register"
998 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
999 */
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01001000static void guest_write_tsc(u64 guest_tsc, u64 host_tsc)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001001{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001002 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
1003}
1004
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005/*
1006 * Reads an msr value (of 'msr_index') into 'pdata'.
1007 * Returns 0 on success, non-0 otherwise.
1008 * Assumes vcpu_load() was already called.
1009 */
1010static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1011{
1012 u64 data;
Avi Kivity26bb0982009-09-07 11:14:12 +03001013 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001014
1015 if (!pdata) {
1016 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
1017 return -EINVAL;
1018 }
1019
1020 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001021#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001022 case MSR_FS_BASE:
1023 data = vmcs_readl(GUEST_FS_BASE);
1024 break;
1025 case MSR_GS_BASE:
1026 data = vmcs_readl(GUEST_GS_BASE);
1027 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001028 case MSR_KERNEL_GS_BASE:
1029 vmx_load_host_state(to_vmx(vcpu));
1030 data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
1031 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001032#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001033 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001034 return kvm_get_msr_common(vcpu, msr_index, pdata);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301035 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001036 data = guest_read_tsc();
1037 break;
1038 case MSR_IA32_SYSENTER_CS:
1039 data = vmcs_read32(GUEST_SYSENTER_CS);
1040 break;
1041 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001042 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001043 break;
1044 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001045 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001046 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001047 case MSR_TSC_AUX:
1048 if (!to_vmx(vcpu)->rdtscp_enabled)
1049 return 1;
1050 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001051 default:
Avi Kivity26bb0982009-09-07 11:14:12 +03001052 vmx_load_host_state(to_vmx(vcpu));
Rusty Russell8b9cf982007-07-30 16:31:43 +10001053 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001054 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001055 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity3bab1f52006-12-29 16:49:48 -08001056 data = msr->data;
1057 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08001059 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001060 }
1061
1062 *pdata = data;
1063 return 0;
1064}
1065
1066/*
1067 * Writes msr value into into the appropriate "register".
1068 * Returns 0 on success, non-0 otherwise.
1069 * Assumes vcpu_load() was already called.
1070 */
1071static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1072{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001073 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001074 struct shared_msr_entry *msr;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01001075 u64 host_tsc;
Eddie Dong2cc51562007-05-21 07:28:09 +03001076 int ret = 0;
1077
Avi Kivity6aa8b732006-12-10 02:21:36 -08001078 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001079 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +03001080 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +03001081 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03001082 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001083#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001084 case MSR_FS_BASE:
1085 vmcs_writel(GUEST_FS_BASE, data);
1086 break;
1087 case MSR_GS_BASE:
1088 vmcs_writel(GUEST_GS_BASE, data);
1089 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001090 case MSR_KERNEL_GS_BASE:
1091 vmx_load_host_state(vmx);
1092 vmx->msr_guest_kernel_gs_base = data;
1093 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001094#endif
1095 case MSR_IA32_SYSENTER_CS:
1096 vmcs_write32(GUEST_SYSENTER_CS, data);
1097 break;
1098 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001099 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001100 break;
1101 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001102 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001103 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301104 case MSR_IA32_TSC:
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01001105 rdtscll(host_tsc);
1106 guest_write_tsc(data, host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001107 break;
Sheng Yang468d4722008-10-09 16:01:55 +08001108 case MSR_IA32_CR_PAT:
1109 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
1110 vmcs_write64(GUEST_IA32_PAT, data);
1111 vcpu->arch.pat = data;
1112 break;
1113 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001114 ret = kvm_set_msr_common(vcpu, msr_index, data);
1115 break;
1116 case MSR_TSC_AUX:
1117 if (!vmx->rdtscp_enabled)
1118 return 1;
1119 /* Check reserved bit, higher 32 bits should be zero */
1120 if ((data >> 32) != 0)
1121 return 1;
1122 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001123 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10001124 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001125 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001126 vmx_load_host_state(vmx);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001127 msr->data = data;
1128 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001129 }
Eddie Dong2cc51562007-05-21 07:28:09 +03001130 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001131 }
1132
Eddie Dong2cc51562007-05-21 07:28:09 +03001133 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001134}
1135
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001136static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001137{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001138 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
1139 switch (reg) {
1140 case VCPU_REGS_RSP:
1141 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
1142 break;
1143 case VCPU_REGS_RIP:
1144 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
1145 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001146 case VCPU_EXREG_PDPTR:
1147 if (enable_ept)
1148 ept_save_pdptrs(vcpu);
1149 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001150 default:
1151 break;
1152 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001153}
1154
Jan Kiszka355be0b2009-10-03 00:31:21 +02001155static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001156{
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001157 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1158 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1159 else
1160 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1161
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001162 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001163}
1164
1165static __init int cpu_has_kvm_support(void)
1166{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001167 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001168}
1169
1170static __init int vmx_disabled_by_bios(void)
1171{
1172 u64 msr;
1173
1174 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001175 return (msr & (FEATURE_CONTROL_LOCKED |
1176 FEATURE_CONTROL_VMXON_ENABLED))
1177 == FEATURE_CONTROL_LOCKED;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001178 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001179}
1180
Alexander Graf10474ae2009-09-15 11:37:46 +02001181static int hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001182{
1183 int cpu = raw_smp_processor_id();
1184 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1185 u64 old;
1186
Alexander Graf10474ae2009-09-15 11:37:46 +02001187 if (read_cr4() & X86_CR4_VMXE)
1188 return -EBUSY;
1189
Avi Kivity543e4242008-05-13 16:22:47 +03001190 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001191 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001192 if ((old & (FEATURE_CONTROL_LOCKED |
1193 FEATURE_CONTROL_VMXON_ENABLED))
1194 != (FEATURE_CONTROL_LOCKED |
1195 FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001196 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001197 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yang9ea542f2008-09-11 15:27:49 +08001198 FEATURE_CONTROL_LOCKED |
1199 FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +10001200 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001201 asm volatile (ASM_VMX_VMXON_RAX
1202 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001203 : "memory", "cc");
Alexander Graf10474ae2009-09-15 11:37:46 +02001204
1205 ept_sync_global();
1206
1207 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001208}
1209
Avi Kivity543e4242008-05-13 16:22:47 +03001210static void vmclear_local_vcpus(void)
1211{
1212 int cpu = raw_smp_processor_id();
1213 struct vcpu_vmx *vmx, *n;
1214
1215 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1216 local_vcpus_link)
1217 __vcpu_clear(vmx);
1218}
1219
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001220
1221/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1222 * tricks.
1223 */
1224static void kvm_cpu_vmxoff(void)
1225{
1226 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
1227 write_cr4(read_cr4() & ~X86_CR4_VMXE);
1228}
1229
Avi Kivity6aa8b732006-12-10 02:21:36 -08001230static void hardware_disable(void *garbage)
1231{
Avi Kivity543e4242008-05-13 16:22:47 +03001232 vmclear_local_vcpus();
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001233 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001234}
1235
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001236static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001237 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001238{
1239 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001240 u32 ctl = ctl_min | ctl_opt;
1241
1242 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1243
1244 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1245 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1246
1247 /* Ensure minimum (required) set of control bits are supported. */
1248 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001249 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001250
1251 *result = ctl;
1252 return 0;
1253}
1254
Yang, Sheng002c7f72007-07-31 14:23:01 +03001255static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001256{
1257 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001258 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001259 u32 _pin_based_exec_control = 0;
1260 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001261 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001262 u32 _vmexit_control = 0;
1263 u32 _vmentry_control = 0;
1264
1265 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001266 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001267 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1268 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001269 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001270
1271 min = CPU_BASED_HLT_EXITING |
1272#ifdef CONFIG_X86_64
1273 CPU_BASED_CR8_LOAD_EXITING |
1274 CPU_BASED_CR8_STORE_EXITING |
1275#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001276 CPU_BASED_CR3_LOAD_EXITING |
1277 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001278 CPU_BASED_USE_IO_BITMAPS |
1279 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001280 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08001281 CPU_BASED_MWAIT_EXITING |
1282 CPU_BASED_MONITOR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001283 CPU_BASED_INVLPG_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001284 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001285 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001286 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001287 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1288 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001289 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001290#ifdef CONFIG_X86_64
1291 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1292 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1293 ~CPU_BASED_CR8_STORE_EXITING;
1294#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001295 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001296 min2 = 0;
1297 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001298 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001299 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001300 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001301 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001302 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
1303 SECONDARY_EXEC_RDTSCP;
Sheng Yangd56f5462008-04-25 10:13:16 +08001304 if (adjust_vmx_controls(min2, opt2,
1305 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001306 &_cpu_based_2nd_exec_control) < 0)
1307 return -EIO;
1308 }
1309#ifndef CONFIG_X86_64
1310 if (!(_cpu_based_2nd_exec_control &
1311 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1312 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1313#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001314 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03001315 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
1316 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03001317 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
1318 CPU_BASED_CR3_STORE_EXITING |
1319 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001320 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1321 vmx_capability.ept, vmx_capability.vpid);
1322 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001323
1324 min = 0;
1325#ifdef CONFIG_X86_64
1326 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1327#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001328 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001329 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1330 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001331 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001332
Sheng Yang468d4722008-10-09 16:01:55 +08001333 min = 0;
1334 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001335 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1336 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001337 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001338
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001339 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001340
1341 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1342 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001343 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001344
1345#ifdef CONFIG_X86_64
1346 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1347 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001348 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001349#endif
1350
1351 /* Require Write-Back (WB) memory type for VMCS accesses. */
1352 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001353 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001354
Yang, Sheng002c7f72007-07-31 14:23:01 +03001355 vmcs_conf->size = vmx_msr_high & 0x1fff;
1356 vmcs_conf->order = get_order(vmcs_config.size);
1357 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001358
Yang, Sheng002c7f72007-07-31 14:23:01 +03001359 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1360 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001361 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001362 vmcs_conf->vmexit_ctrl = _vmexit_control;
1363 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001364
1365 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001366}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001367
1368static struct vmcs *alloc_vmcs_cpu(int cpu)
1369{
1370 int node = cpu_to_node(cpu);
1371 struct page *pages;
1372 struct vmcs *vmcs;
1373
Mel Gorman6484eb32009-06-16 15:31:54 -07001374 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001375 if (!pages)
1376 return NULL;
1377 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001378 memset(vmcs, 0, vmcs_config.size);
1379 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001380 return vmcs;
1381}
1382
1383static struct vmcs *alloc_vmcs(void)
1384{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001385 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001386}
1387
1388static void free_vmcs(struct vmcs *vmcs)
1389{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001390 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001391}
1392
Sam Ravnborg39959582007-06-01 00:47:13 -07001393static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001394{
1395 int cpu;
1396
Zachary Amsden3230bb42009-09-29 11:38:37 -10001397 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10001399 per_cpu(vmxarea, cpu) = NULL;
1400 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001401}
1402
Avi Kivity6aa8b732006-12-10 02:21:36 -08001403static __init int alloc_kvm_area(void)
1404{
1405 int cpu;
1406
Zachary Amsden3230bb42009-09-29 11:38:37 -10001407 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001408 struct vmcs *vmcs;
1409
1410 vmcs = alloc_vmcs_cpu(cpu);
1411 if (!vmcs) {
1412 free_kvm_area();
1413 return -ENOMEM;
1414 }
1415
1416 per_cpu(vmxarea, cpu) = vmcs;
1417 }
1418 return 0;
1419}
1420
1421static __init int hardware_setup(void)
1422{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001423 if (setup_vmcs_config(&vmcs_config) < 0)
1424 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001425
1426 if (boot_cpu_has(X86_FEATURE_NX))
1427 kvm_enable_efer_bits(EFER_NX);
1428
Sheng Yang93ba03c2009-04-01 15:52:32 +08001429 if (!cpu_has_vmx_vpid())
1430 enable_vpid = 0;
1431
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001432 if (!cpu_has_vmx_ept()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08001433 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001434 enable_unrestricted_guest = 0;
1435 }
1436
1437 if (!cpu_has_vmx_unrestricted_guest())
1438 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08001439
1440 if (!cpu_has_vmx_flexpriority())
1441 flexpriority_enabled = 0;
1442
Gleb Natapov95ba8273132009-04-21 17:45:08 +03001443 if (!cpu_has_vmx_tpr_shadow())
1444 kvm_x86_ops->update_cr8_intercept = NULL;
1445
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001446 if (enable_ept && !cpu_has_vmx_ept_2m_page())
1447 kvm_disable_largepages();
1448
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001449 if (!cpu_has_vmx_ple())
1450 ple_gap = 0;
1451
Avi Kivity6aa8b732006-12-10 02:21:36 -08001452 return alloc_kvm_area();
1453}
1454
1455static __exit void hardware_unsetup(void)
1456{
1457 free_kvm_area();
1458}
1459
Avi Kivity6aa8b732006-12-10 02:21:36 -08001460static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1461{
1462 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1463
Avi Kivity6af11b92007-03-19 13:18:10 +02001464 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001465 vmcs_write16(sf->selector, save->selector);
1466 vmcs_writel(sf->base, save->base);
1467 vmcs_write32(sf->limit, save->limit);
1468 vmcs_write32(sf->ar_bytes, save->ar);
1469 } else {
1470 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1471 << AR_DPL_SHIFT;
1472 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1473 }
1474}
1475
1476static void enter_pmode(struct kvm_vcpu *vcpu)
1477{
1478 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001479 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001480
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001481 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001482 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001483
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001484 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
1485 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
1486 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001487
1488 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001489 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001490 flags |= (vmx->rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001491 vmcs_writel(GUEST_RFLAGS, flags);
1492
Rusty Russell66aee912007-07-17 23:34:16 +10001493 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1494 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001495
1496 update_exception_bitmap(vcpu);
1497
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001498 if (emulate_invalid_guest_state)
1499 return;
1500
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001501 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
1502 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
1503 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
1504 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001505
1506 vmcs_write16(GUEST_SS_SELECTOR, 0);
1507 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1508
1509 vmcs_write16(GUEST_CS_SELECTOR,
1510 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1511 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1512}
1513
Mike Dayd77c26f2007-10-08 09:02:08 -04001514static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001515{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001516 if (!kvm->arch.tss_addr) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001517 struct kvm_memslots *slots;
1518 gfn_t base_gfn;
1519
1520 slots = rcu_dereference(kvm->memslots);
1521 base_gfn = kvm->memslots->memslots[0].base_gfn +
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -02001522 kvm->memslots->memslots[0].npages - 3;
Izik Eiduscbc94022007-10-25 00:29:55 +02001523 return base_gfn << PAGE_SHIFT;
1524 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001525 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001526}
1527
1528static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1529{
1530 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1531
1532 save->selector = vmcs_read16(sf->selector);
1533 save->base = vmcs_readl(sf->base);
1534 save->limit = vmcs_read32(sf->limit);
1535 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001536 vmcs_write16(sf->selector, save->base >> 4);
1537 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001538 vmcs_write32(sf->limit, 0xffff);
1539 vmcs_write32(sf->ar_bytes, 0xf3);
1540}
1541
1542static void enter_rmode(struct kvm_vcpu *vcpu)
1543{
1544 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001545 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001546
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001547 if (enable_unrestricted_guest)
1548 return;
1549
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001550 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001551 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001552
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001553 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001554 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1555
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001556 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001557 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1558
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001559 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001560 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1561
1562 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001563 vmx->rmode.save_iopl
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001564 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001565
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001566 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001567
1568 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001569 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570 update_exception_bitmap(vcpu);
1571
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001572 if (emulate_invalid_guest_state)
1573 goto continue_rmode;
1574
Avi Kivity6aa8b732006-12-10 02:21:36 -08001575 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1576 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1577 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1578
1579 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001580 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001581 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1582 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001583 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1584
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001585 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
1586 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
1587 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
1588 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001589
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001590continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08001591 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001592 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001593}
1594
Amit Shah401d10d2009-02-20 22:53:37 +05301595static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1596{
1597 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001598 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
1599
1600 if (!msr)
1601 return;
Amit Shah401d10d2009-02-20 22:53:37 +05301602
Avi Kivity44ea2b12009-09-06 15:55:37 +03001603 /*
1604 * Force kernel_gs_base reloading before EFER changes, as control
1605 * of this msr depends on is_long_mode().
1606 */
1607 vmx_load_host_state(to_vmx(vcpu));
Amit Shah401d10d2009-02-20 22:53:37 +05301608 vcpu->arch.shadow_efer = efer;
1609 if (!msr)
1610 return;
1611 if (efer & EFER_LMA) {
1612 vmcs_write32(VM_ENTRY_CONTROLS,
1613 vmcs_read32(VM_ENTRY_CONTROLS) |
1614 VM_ENTRY_IA32E_MODE);
1615 msr->data = efer;
1616 } else {
1617 vmcs_write32(VM_ENTRY_CONTROLS,
1618 vmcs_read32(VM_ENTRY_CONTROLS) &
1619 ~VM_ENTRY_IA32E_MODE);
1620
1621 msr->data = efer & ~EFER_LME;
1622 }
1623 setup_msrs(vmx);
1624}
1625
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001626#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001627
1628static void enter_lmode(struct kvm_vcpu *vcpu)
1629{
1630 u32 guest_tr_ar;
1631
1632 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1633 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1634 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001635 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001636 vmcs_write32(GUEST_TR_AR_BYTES,
1637 (guest_tr_ar & ~AR_TYPE_MASK)
1638 | AR_TYPE_BUSY_64_TSS);
1639 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001640 vcpu->arch.shadow_efer |= EFER_LMA;
Amit Shah401d10d2009-02-20 22:53:37 +05301641 vmx_set_efer(vcpu, vcpu->arch.shadow_efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001642}
1643
1644static void exit_lmode(struct kvm_vcpu *vcpu)
1645{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001646 vcpu->arch.shadow_efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001647
1648 vmcs_write32(VM_ENTRY_CONTROLS,
1649 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001650 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001651}
1652
1653#endif
1654
Sheng Yang2384d2b2008-01-17 15:14:33 +08001655static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1656{
1657 vpid_sync_vcpu_all(to_vmx(vcpu));
Avi Kivity089d0342009-03-23 18:26:32 +02001658 if (enable_ept)
Sheng Yang4e1096d2008-07-06 19:16:51 +08001659 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001660}
1661
Avi Kivitye8467fd2009-12-29 18:43:06 +02001662static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
1663{
1664 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
1665
1666 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
1667 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
1668}
1669
Anthony Liguori25c4c272007-04-27 09:29:21 +03001670static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001671{
Avi Kivityfc78f512009-12-07 12:16:48 +02001672 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
1673
1674 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
1675 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08001676}
1677
Sheng Yang14394422008-04-28 12:24:45 +08001678static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1679{
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001680 if (!test_bit(VCPU_EXREG_PDPTR,
1681 (unsigned long *)&vcpu->arch.regs_dirty))
1682 return;
1683
Sheng Yang14394422008-04-28 12:24:45 +08001684 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Sheng Yang14394422008-04-28 12:24:45 +08001685 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1686 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1687 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1688 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1689 }
1690}
1691
Avi Kivity8f5d5492009-05-31 18:41:29 +03001692static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
1693{
1694 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1695 vcpu->arch.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
1696 vcpu->arch.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
1697 vcpu->arch.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
1698 vcpu->arch.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
1699 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001700
1701 __set_bit(VCPU_EXREG_PDPTR,
1702 (unsigned long *)&vcpu->arch.regs_avail);
1703 __set_bit(VCPU_EXREG_PDPTR,
1704 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03001705}
1706
Sheng Yang14394422008-04-28 12:24:45 +08001707static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1708
1709static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1710 unsigned long cr0,
1711 struct kvm_vcpu *vcpu)
1712{
1713 if (!(cr0 & X86_CR0_PG)) {
1714 /* From paging/starting to nonpaging */
1715 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001716 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001717 (CPU_BASED_CR3_LOAD_EXITING |
1718 CPU_BASED_CR3_STORE_EXITING));
1719 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02001720 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08001721 } else if (!is_paging(vcpu)) {
1722 /* From nonpaging to paging */
1723 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001724 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001725 ~(CPU_BASED_CR3_LOAD_EXITING |
1726 CPU_BASED_CR3_STORE_EXITING));
1727 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02001728 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08001729 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08001730
1731 if (!(cr0 & X86_CR0_WP))
1732 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08001733}
1734
Avi Kivity6aa8b732006-12-10 02:21:36 -08001735static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1736{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001737 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001738 unsigned long hw_cr0;
1739
1740 if (enable_unrestricted_guest)
1741 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
1742 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
1743 else
1744 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08001745
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001746 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001747 enter_pmode(vcpu);
1748
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001749 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001750 enter_rmode(vcpu);
1751
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001752#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001753 if (vcpu->arch.shadow_efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10001754 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001755 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10001756 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001757 exit_lmode(vcpu);
1758 }
1759#endif
1760
Avi Kivity089d0342009-03-23 18:26:32 +02001761 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001762 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1763
Avi Kivity02daab22009-12-30 12:40:26 +02001764 if (!vcpu->fpu_active)
1765 hw_cr0 |= X86_CR0_TS;
1766
Avi Kivity6aa8b732006-12-10 02:21:36 -08001767 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001768 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001769 vcpu->arch.cr0 = cr0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001770}
1771
Sheng Yang14394422008-04-28 12:24:45 +08001772static u64 construct_eptp(unsigned long root_hpa)
1773{
1774 u64 eptp;
1775
1776 /* TODO write the value reading from MSR */
1777 eptp = VMX_EPT_DEFAULT_MT |
1778 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1779 eptp |= (root_hpa & PAGE_MASK);
1780
1781 return eptp;
1782}
1783
Avi Kivity6aa8b732006-12-10 02:21:36 -08001784static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1785{
Sheng Yang14394422008-04-28 12:24:45 +08001786 unsigned long guest_cr3;
1787 u64 eptp;
1788
1789 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02001790 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001791 eptp = construct_eptp(cr3);
1792 vmcs_write64(EPT_POINTER, eptp);
Sheng Yang14394422008-04-28 12:24:45 +08001793 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
Sheng Yangb927a3c2009-07-21 10:42:48 +08001794 vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02001795 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001796 }
1797
Sheng Yang2384d2b2008-01-17 15:14:33 +08001798 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001799 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001800}
1801
1802static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1803{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001804 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08001805 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1806
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001807 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02001808 if (enable_ept) {
1809 if (!is_paging(vcpu)) {
1810 hw_cr4 &= ~X86_CR4_PAE;
1811 hw_cr4 |= X86_CR4_PSE;
1812 } else if (!(cr4 & X86_CR4_PAE)) {
1813 hw_cr4 &= ~X86_CR4_PAE;
1814 }
1815 }
Sheng Yang14394422008-04-28 12:24:45 +08001816
1817 vmcs_writel(CR4_READ_SHADOW, cr4);
1818 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001819}
1820
Avi Kivity6aa8b732006-12-10 02:21:36 -08001821static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1822{
1823 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1824
1825 return vmcs_readl(sf->base);
1826}
1827
1828static void vmx_get_segment(struct kvm_vcpu *vcpu,
1829 struct kvm_segment *var, int seg)
1830{
1831 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1832 u32 ar;
1833
1834 var->base = vmcs_readl(sf->base);
1835 var->limit = vmcs_read32(sf->limit);
1836 var->selector = vmcs_read16(sf->selector);
1837 ar = vmcs_read32(sf->ar_bytes);
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02001838 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001839 ar = 0;
1840 var->type = ar & 15;
1841 var->s = (ar >> 4) & 1;
1842 var->dpl = (ar >> 5) & 3;
1843 var->present = (ar >> 7) & 1;
1844 var->avl = (ar >> 12) & 1;
1845 var->l = (ar >> 13) & 1;
1846 var->db = (ar >> 14) & 1;
1847 var->g = (ar >> 15) & 1;
1848 var->unusable = (ar >> 16) & 1;
1849}
1850
Izik Eidus2e4d2652008-03-24 19:38:34 +02001851static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1852{
Avi Kivity4d4ec082009-12-29 18:07:30 +02001853 if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) /* if real mode */
Izik Eidus2e4d2652008-03-24 19:38:34 +02001854 return 0;
1855
1856 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1857 return 3;
1858
Avi Kivityeab4b8a2009-08-04 15:02:54 +03001859 return vmcs_read16(GUEST_CS_SELECTOR) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02001860}
1861
Avi Kivity653e3102007-05-07 10:55:37 +03001862static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001863{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001864 u32 ar;
1865
Avi Kivity653e3102007-05-07 10:55:37 +03001866 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001867 ar = 1 << 16;
1868 else {
1869 ar = var->type & 15;
1870 ar |= (var->s & 1) << 4;
1871 ar |= (var->dpl & 3) << 5;
1872 ar |= (var->present & 1) << 7;
1873 ar |= (var->avl & 1) << 12;
1874 ar |= (var->l & 1) << 13;
1875 ar |= (var->db & 1) << 14;
1876 ar |= (var->g & 1) << 15;
1877 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001878 if (ar == 0) /* a 0 value means unusable */
1879 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001880
1881 return ar;
1882}
1883
1884static void vmx_set_segment(struct kvm_vcpu *vcpu,
1885 struct kvm_segment *var, int seg)
1886{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001887 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03001888 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1889 u32 ar;
1890
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001891 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
1892 vmx->rmode.tr.selector = var->selector;
1893 vmx->rmode.tr.base = var->base;
1894 vmx->rmode.tr.limit = var->limit;
1895 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001896 return;
1897 }
1898 vmcs_writel(sf->base, var->base);
1899 vmcs_write32(sf->limit, var->limit);
1900 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001901 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001902 /*
1903 * Hack real-mode segments into vm86 compatibility.
1904 */
1905 if (var->base == 0xffff0000 && var->selector == 0xf000)
1906 vmcs_writel(sf->base, 0xf0000);
1907 ar = 0xf3;
1908 } else
1909 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001910
1911 /*
1912 * Fix the "Accessed" bit in AR field of segment registers for older
1913 * qemu binaries.
1914 * IA32 arch specifies that at the time of processor reset the
1915 * "Accessed" bit in the AR field of segment registers is 1. And qemu
1916 * is setting it to 0 in the usedland code. This causes invalid guest
1917 * state vmexit when "unrestricted guest" mode is turned on.
1918 * Fix for this setup issue in cpu_reset is being pushed in the qemu
1919 * tree. Newer qemu binaries with that qemu fix would not need this
1920 * kvm hack.
1921 */
1922 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
1923 ar |= 0x1; /* Accessed */
1924
Avi Kivity6aa8b732006-12-10 02:21:36 -08001925 vmcs_write32(sf->ar_bytes, ar);
1926}
1927
Avi Kivity6aa8b732006-12-10 02:21:36 -08001928static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1929{
1930 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1931
1932 *db = (ar >> 14) & 1;
1933 *l = (ar >> 13) & 1;
1934}
1935
1936static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1937{
1938 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1939 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1940}
1941
1942static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1943{
1944 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1945 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1946}
1947
1948static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1949{
1950 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1951 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1952}
1953
1954static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1955{
1956 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1957 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1958}
1959
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001960static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1961{
1962 struct kvm_segment var;
1963 u32 ar;
1964
1965 vmx_get_segment(vcpu, &var, seg);
1966 ar = vmx_segment_access_rights(&var);
1967
1968 if (var.base != (var.selector << 4))
1969 return false;
1970 if (var.limit != 0xffff)
1971 return false;
1972 if (ar != 0xf3)
1973 return false;
1974
1975 return true;
1976}
1977
1978static bool code_segment_valid(struct kvm_vcpu *vcpu)
1979{
1980 struct kvm_segment cs;
1981 unsigned int cs_rpl;
1982
1983 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1984 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1985
Avi Kivity1872a3f2009-01-04 23:26:52 +02001986 if (cs.unusable)
1987 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001988 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1989 return false;
1990 if (!cs.s)
1991 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001992 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001993 if (cs.dpl > cs_rpl)
1994 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001995 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001996 if (cs.dpl != cs_rpl)
1997 return false;
1998 }
1999 if (!cs.present)
2000 return false;
2001
2002 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
2003 return true;
2004}
2005
2006static bool stack_segment_valid(struct kvm_vcpu *vcpu)
2007{
2008 struct kvm_segment ss;
2009 unsigned int ss_rpl;
2010
2011 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2012 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
2013
Avi Kivity1872a3f2009-01-04 23:26:52 +02002014 if (ss.unusable)
2015 return true;
2016 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002017 return false;
2018 if (!ss.s)
2019 return false;
2020 if (ss.dpl != ss_rpl) /* DPL != RPL */
2021 return false;
2022 if (!ss.present)
2023 return false;
2024
2025 return true;
2026}
2027
2028static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
2029{
2030 struct kvm_segment var;
2031 unsigned int rpl;
2032
2033 vmx_get_segment(vcpu, &var, seg);
2034 rpl = var.selector & SELECTOR_RPL_MASK;
2035
Avi Kivity1872a3f2009-01-04 23:26:52 +02002036 if (var.unusable)
2037 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002038 if (!var.s)
2039 return false;
2040 if (!var.present)
2041 return false;
2042 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
2043 if (var.dpl < rpl) /* DPL < RPL */
2044 return false;
2045 }
2046
2047 /* TODO: Add other members to kvm_segment_field to allow checking for other access
2048 * rights flags
2049 */
2050 return true;
2051}
2052
2053static bool tr_valid(struct kvm_vcpu *vcpu)
2054{
2055 struct kvm_segment tr;
2056
2057 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
2058
Avi Kivity1872a3f2009-01-04 23:26:52 +02002059 if (tr.unusable)
2060 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002061 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2062 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02002063 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002064 return false;
2065 if (!tr.present)
2066 return false;
2067
2068 return true;
2069}
2070
2071static bool ldtr_valid(struct kvm_vcpu *vcpu)
2072{
2073 struct kvm_segment ldtr;
2074
2075 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
2076
Avi Kivity1872a3f2009-01-04 23:26:52 +02002077 if (ldtr.unusable)
2078 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002079 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2080 return false;
2081 if (ldtr.type != 2)
2082 return false;
2083 if (!ldtr.present)
2084 return false;
2085
2086 return true;
2087}
2088
2089static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
2090{
2091 struct kvm_segment cs, ss;
2092
2093 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
2094 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2095
2096 return ((cs.selector & SELECTOR_RPL_MASK) ==
2097 (ss.selector & SELECTOR_RPL_MASK));
2098}
2099
2100/*
2101 * Check if guest state is valid. Returns true if valid, false if
2102 * not.
2103 * We assume that registers are always usable
2104 */
2105static bool guest_state_valid(struct kvm_vcpu *vcpu)
2106{
2107 /* real mode guest state checks */
Avi Kivity4d4ec082009-12-29 18:07:30 +02002108 if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002109 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
2110 return false;
2111 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
2112 return false;
2113 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
2114 return false;
2115 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
2116 return false;
2117 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
2118 return false;
2119 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
2120 return false;
2121 } else {
2122 /* protected mode guest state checks */
2123 if (!cs_ss_rpl_check(vcpu))
2124 return false;
2125 if (!code_segment_valid(vcpu))
2126 return false;
2127 if (!stack_segment_valid(vcpu))
2128 return false;
2129 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
2130 return false;
2131 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
2132 return false;
2133 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
2134 return false;
2135 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
2136 return false;
2137 if (!tr_valid(vcpu))
2138 return false;
2139 if (!ldtr_valid(vcpu))
2140 return false;
2141 }
2142 /* TODO:
2143 * - Add checks on RIP
2144 * - Add checks on RFLAGS
2145 */
2146
2147 return true;
2148}
2149
Mike Dayd77c26f2007-10-08 09:02:08 -04002150static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002151{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002152 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02002153 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002154 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02002155 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002156
Izik Eidus195aefd2007-10-01 22:14:18 +02002157 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2158 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002159 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002160 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08002161 r = kvm_write_guest_page(kvm, fn++, &data,
2162 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02002163 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002164 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002165 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
2166 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002167 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002168 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2169 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002170 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002171 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002172 r = kvm_write_guest_page(kvm, fn, &data,
2173 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
2174 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02002175 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002176 goto out;
2177
2178 ret = 1;
2179out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002180 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002181}
2182
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002183static int init_rmode_identity_map(struct kvm *kvm)
2184{
2185 int i, r, ret;
2186 pfn_t identity_map_pfn;
2187 u32 tmp;
2188
Avi Kivity089d0342009-03-23 18:26:32 +02002189 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002190 return 1;
2191 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
2192 printk(KERN_ERR "EPT: identity-mapping pagetable "
2193 "haven't been allocated!\n");
2194 return 0;
2195 }
2196 if (likely(kvm->arch.ept_identity_pagetable_done))
2197 return 1;
2198 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002199 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002200 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
2201 if (r < 0)
2202 goto out;
2203 /* Set up identity-mapping pagetable for EPT in real mode */
2204 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2205 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2206 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2207 r = kvm_write_guest_page(kvm, identity_map_pfn,
2208 &tmp, i * sizeof(tmp), sizeof(tmp));
2209 if (r < 0)
2210 goto out;
2211 }
2212 kvm->arch.ept_identity_pagetable_done = true;
2213 ret = 1;
2214out:
2215 return ret;
2216}
2217
Avi Kivity6aa8b732006-12-10 02:21:36 -08002218static void seg_setup(int seg)
2219{
2220 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002221 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002222
2223 vmcs_write16(sf->selector, 0);
2224 vmcs_writel(sf->base, 0);
2225 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002226 if (enable_unrestricted_guest) {
2227 ar = 0x93;
2228 if (seg == VCPU_SREG_CS)
2229 ar |= 0x08; /* code segment */
2230 } else
2231 ar = 0xf3;
2232
2233 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002234}
2235
Sheng Yangf78e0e22007-10-29 09:40:42 +08002236static int alloc_apic_access_page(struct kvm *kvm)
2237{
2238 struct kvm_userspace_memory_region kvm_userspace_mem;
2239 int r = 0;
2240
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002241 mutex_lock(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002242 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08002243 goto out;
2244 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
2245 kvm_userspace_mem.flags = 0;
2246 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
2247 kvm_userspace_mem.memory_size = PAGE_SIZE;
2248 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2249 if (r)
2250 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002251
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002252 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002253out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002254 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002255 return r;
2256}
2257
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002258static int alloc_identity_pagetable(struct kvm *kvm)
2259{
2260 struct kvm_userspace_memory_region kvm_userspace_mem;
2261 int r = 0;
2262
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002263 mutex_lock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002264 if (kvm->arch.ept_identity_pagetable)
2265 goto out;
2266 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2267 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002268 kvm_userspace_mem.guest_phys_addr =
2269 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002270 kvm_userspace_mem.memory_size = PAGE_SIZE;
2271 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2272 if (r)
2273 goto out;
2274
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002275 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08002276 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002277out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002278 mutex_unlock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002279 return r;
2280}
2281
Sheng Yang2384d2b2008-01-17 15:14:33 +08002282static void allocate_vpid(struct vcpu_vmx *vmx)
2283{
2284 int vpid;
2285
2286 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02002287 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002288 return;
2289 spin_lock(&vmx_vpid_lock);
2290 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2291 if (vpid < VMX_NR_VPIDS) {
2292 vmx->vpid = vpid;
2293 __set_bit(vpid, vmx_vpid_bitmap);
2294 }
2295 spin_unlock(&vmx_vpid_lock);
2296}
2297
Avi Kivity58972972009-02-24 22:26:47 +02002298static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002299{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002300 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08002301
2302 if (!cpu_has_vmx_msr_bitmap())
2303 return;
2304
2305 /*
2306 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2307 * have the write-low and read-high bitmap offsets the wrong way round.
2308 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2309 */
Sheng Yang25c5f222008-03-28 13:18:56 +08002310 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002311 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
2312 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08002313 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2314 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002315 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
2316 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08002317 }
Sheng Yang25c5f222008-03-28 13:18:56 +08002318}
2319
Avi Kivity58972972009-02-24 22:26:47 +02002320static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
2321{
2322 if (!longmode_only)
2323 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
2324 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
2325}
2326
Avi Kivity6aa8b732006-12-10 02:21:36 -08002327/*
2328 * Sets up the vmcs for emulated real mode.
2329 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002330static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002331{
Sheng Yang468d4722008-10-09 16:01:55 +08002332 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002333 u32 junk;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002334 u64 host_pat, tsc_this, tsc_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002335 unsigned long a;
2336 struct descriptor_table dt;
2337 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002338 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002339 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002340
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002342 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
2343 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002344
Sheng Yang25c5f222008-03-28 13:18:56 +08002345 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02002346 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08002347
Avi Kivity6aa8b732006-12-10 02:21:36 -08002348 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2349
Avi Kivity6aa8b732006-12-10 02:21:36 -08002350 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002351 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2352 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002353
2354 exec_control = vmcs_config.cpu_based_exec_ctrl;
2355 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2356 exec_control &= ~CPU_BASED_TPR_SHADOW;
2357#ifdef CONFIG_X86_64
2358 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2359 CPU_BASED_CR8_LOAD_EXITING;
2360#endif
2361 }
Avi Kivity089d0342009-03-23 18:26:32 +02002362 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002363 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03002364 CPU_BASED_CR3_LOAD_EXITING |
2365 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002366 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002367
Sheng Yang83ff3b92007-11-21 14:33:25 +08002368 if (cpu_has_secondary_exec_ctrls()) {
2369 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2370 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2371 exec_control &=
2372 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002373 if (vmx->vpid == 0)
2374 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang046d8712009-11-27 16:46:26 +08002375 if (!enable_ept) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002376 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang046d8712009-11-27 16:46:26 +08002377 enable_unrestricted_guest = 0;
2378 }
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002379 if (!enable_unrestricted_guest)
2380 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002381 if (!ple_gap)
2382 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002383 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2384 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002385
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002386 if (ple_gap) {
2387 vmcs_write32(PLE_GAP, ple_gap);
2388 vmcs_write32(PLE_WINDOW, ple_window);
2389 }
2390
Avi Kivityc7addb92007-09-16 18:58:32 +02002391 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2392 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002393 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2394
2395 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2396 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2397 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2398
2399 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2400 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2401 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002402 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2403 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002404 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002405#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002406 rdmsrl(MSR_FS_BASE, a);
2407 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2408 rdmsrl(MSR_GS_BASE, a);
2409 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2410#else
2411 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2412 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2413#endif
2414
2415 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2416
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002417 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002418 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2419
Mike Dayd77c26f2007-10-08 09:02:08 -04002420 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002421 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002422 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2423 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2424 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002425
2426 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2427 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2428 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2429 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2430 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2431 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2432
Sheng Yang468d4722008-10-09 16:01:55 +08002433 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2434 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2435 host_pat = msr_low | ((u64) msr_high << 32);
2436 vmcs_write64(HOST_IA32_PAT, host_pat);
2437 }
2438 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2439 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2440 host_pat = msr_low | ((u64) msr_high << 32);
2441 /* Write the default value follow host pat */
2442 vmcs_write64(GUEST_IA32_PAT, host_pat);
2443 /* Keep arch.pat sync with GUEST_IA32_PAT */
2444 vmx->vcpu.arch.pat = host_pat;
2445 }
2446
Avi Kivity6aa8b732006-12-10 02:21:36 -08002447 for (i = 0; i < NR_VMX_MSR; ++i) {
2448 u32 index = vmx_msr_index[i];
2449 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002450 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002451
2452 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2453 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002454 if (wrmsr_safe(index, data_low, data_high) < 0)
2455 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03002456 vmx->guest_msrs[j].index = i;
2457 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02002458 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002459 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002460 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002461
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002462 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002463
2464 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002465 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2466
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002467 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Avi Kivity4c386092009-12-07 12:26:18 +02002468 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
Avi Kivityce03e4f2009-12-07 12:29:14 +02002469 if (enable_ept)
2470 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Avi Kivity4c386092009-12-07 12:26:18 +02002471 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002472
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002473 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2474 rdtscll(tsc_this);
2475 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2476 tsc_base = tsc_this;
2477
2478 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002479
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002480 return 0;
2481}
2482
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002483static int init_rmode(struct kvm *kvm)
2484{
2485 if (!init_rmode_tss(kvm))
2486 return 0;
2487 if (!init_rmode_identity_map(kvm))
2488 return 0;
2489 return 1;
2490}
2491
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002492static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2493{
2494 struct vcpu_vmx *vmx = to_vmx(vcpu);
2495 u64 msr;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002496 int ret, idx;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002497
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002498 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002499 idx = srcu_read_lock(&vcpu->kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002500 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002501 ret = -ENOMEM;
2502 goto out;
2503 }
2504
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002505 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002506
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002507 vmx->soft_vnmi_blocked = 0;
2508
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002509 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002510 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002511 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002512 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002513 msr |= MSR_IA32_APICBASE_BSP;
2514 kvm_set_apic_base(&vmx->vcpu, msr);
2515
2516 fx_init(&vmx->vcpu);
2517
Avi Kivity5706be02008-08-20 15:07:31 +03002518 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002519 /*
2520 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2521 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2522 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002523 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002524 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2525 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2526 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002527 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2528 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002529 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002530
2531 seg_setup(VCPU_SREG_DS);
2532 seg_setup(VCPU_SREG_ES);
2533 seg_setup(VCPU_SREG_FS);
2534 seg_setup(VCPU_SREG_GS);
2535 seg_setup(VCPU_SREG_SS);
2536
2537 vmcs_write16(GUEST_TR_SELECTOR, 0);
2538 vmcs_writel(GUEST_TR_BASE, 0);
2539 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2540 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2541
2542 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2543 vmcs_writel(GUEST_LDTR_BASE, 0);
2544 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2545 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2546
2547 vmcs_write32(GUEST_SYSENTER_CS, 0);
2548 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2549 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2550
2551 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002552 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002553 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002554 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002555 kvm_rip_write(vcpu, 0);
2556 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002557
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002558 vmcs_writel(GUEST_DR7, 0x400);
2559
2560 vmcs_writel(GUEST_GDTR_BASE, 0);
2561 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2562
2563 vmcs_writel(GUEST_IDTR_BASE, 0);
2564 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2565
2566 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2567 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2568 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2569
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002570 /* Special registers */
2571 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2572
2573 setup_msrs(vmx);
2574
Avi Kivity6aa8b732006-12-10 02:21:36 -08002575 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2576
Sheng Yangf78e0e22007-10-29 09:40:42 +08002577 if (cpu_has_vmx_tpr_shadow()) {
2578 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2579 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2580 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002581 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002582 vmcs_write32(TPR_THRESHOLD, 0);
2583 }
2584
2585 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2586 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002587 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002588
Sheng Yang2384d2b2008-01-17 15:14:33 +08002589 if (vmx->vpid != 0)
2590 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2591
Eduardo Habkostfa400522009-10-24 02:49:58 -02002592 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Avi Kivity4d4ec082009-12-29 18:07:30 +02002593 vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002594 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002595 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002596 vmx_fpu_activate(&vmx->vcpu);
2597 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002598
Sheng Yang2384d2b2008-01-17 15:14:33 +08002599 vpid_sync_vcpu_all(vmx);
2600
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002601 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002602
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002603 /* HACK: Don't enable emulation on guest boot/reset */
2604 vmx->emulation_required = 0;
2605
Avi Kivity6aa8b732006-12-10 02:21:36 -08002606out:
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002607 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002608 return ret;
2609}
2610
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002611static void enable_irq_window(struct kvm_vcpu *vcpu)
2612{
2613 u32 cpu_based_vm_exec_control;
2614
2615 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2616 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2617 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2618}
2619
2620static void enable_nmi_window(struct kvm_vcpu *vcpu)
2621{
2622 u32 cpu_based_vm_exec_control;
2623
2624 if (!cpu_has_virtual_nmis()) {
2625 enable_irq_window(vcpu);
2626 return;
2627 }
2628
2629 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2630 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2631 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2632}
2633
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002634static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03002635{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002636 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002637 uint32_t intr;
2638 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02002639
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002640 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002641
Avi Kivityfa89a812008-09-01 15:57:51 +03002642 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002643 if (vmx->rmode.vm86_active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002644 vmx->rmode.irq.pending = true;
2645 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002646 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +03002647 if (vcpu->arch.interrupt.soft)
2648 vmx->rmode.irq.rip +=
2649 vmx->vcpu.arch.event_exit_inst_len;
Avi Kivity9c5623e2007-11-08 18:19:20 +02002650 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2651 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2652 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002653 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002654 return;
2655 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002656 intr = irq | INTR_INFO_VALID_MASK;
2657 if (vcpu->arch.interrupt.soft) {
2658 intr |= INTR_TYPE_SOFT_INTR;
2659 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2660 vmx->vcpu.arch.event_exit_inst_len);
2661 } else
2662 intr |= INTR_TYPE_EXT_INTR;
2663 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03002664}
2665
Sheng Yangf08864b2008-05-15 18:23:25 +08002666static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2667{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002668 struct vcpu_vmx *vmx = to_vmx(vcpu);
2669
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002670 if (!cpu_has_virtual_nmis()) {
2671 /*
2672 * Tracking the NMI-blocked state in software is built upon
2673 * finding the next open IRQ window. This, in turn, depends on
2674 * well-behaving guests: They have to keep IRQs disabled at
2675 * least as long as the NMI handler runs. Otherwise we may
2676 * cause NMI nesting, maybe breaking the guest. But as this is
2677 * highly unlikely, we can live with the residual risk.
2678 */
2679 vmx->soft_vnmi_blocked = 1;
2680 vmx->vnmi_blocked_time = 0;
2681 }
2682
Jan Kiszka487b3912008-09-26 09:30:56 +02002683 ++vcpu->stat.nmi_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002684 if (vmx->rmode.vm86_active) {
Jan Kiszka66a5a342008-09-26 09:30:51 +02002685 vmx->rmode.irq.pending = true;
2686 vmx->rmode.irq.vector = NMI_VECTOR;
2687 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2688 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2689 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2690 INTR_INFO_VALID_MASK);
2691 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2692 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2693 return;
2694 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002695 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2696 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002697}
2698
Gleb Natapovc4282df2009-04-21 17:45:07 +03002699static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02002700{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002701 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03002702 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002703
Gleb Natapovc4282df2009-04-21 17:45:07 +03002704 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2705 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS |
2706 GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02002707}
2708
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002709static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
2710{
2711 if (!cpu_has_virtual_nmis())
2712 return to_vmx(vcpu)->soft_vnmi_blocked;
2713 else
2714 return !!(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2715 GUEST_INTR_STATE_NMI);
2716}
2717
2718static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
2719{
2720 struct vcpu_vmx *vmx = to_vmx(vcpu);
2721
2722 if (!cpu_has_virtual_nmis()) {
2723 if (vmx->soft_vnmi_blocked != masked) {
2724 vmx->soft_vnmi_blocked = masked;
2725 vmx->vnmi_blocked_time = 0;
2726 }
2727 } else {
2728 if (masked)
2729 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
2730 GUEST_INTR_STATE_NMI);
2731 else
2732 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
2733 GUEST_INTR_STATE_NMI);
2734 }
2735}
2736
Gleb Natapov78646122009-03-23 12:12:11 +02002737static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2738{
Gleb Natapovc4282df2009-04-21 17:45:07 +03002739 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2740 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2741 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02002742}
2743
Izik Eiduscbc94022007-10-25 00:29:55 +02002744static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2745{
2746 int ret;
2747 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002748 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002749 .guest_phys_addr = addr,
2750 .memory_size = PAGE_SIZE * 3,
2751 .flags = 0,
2752 };
2753
2754 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2755 if (ret)
2756 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002757 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002758 return 0;
2759}
2760
Avi Kivity6aa8b732006-12-10 02:21:36 -08002761static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2762 int vec, u32 err_code)
2763{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002764 /*
2765 * Instruction with address size override prefix opcode 0x67
2766 * Cause the #SS fault with 0 error code in VM86 mode.
2767 */
2768 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Avi Kivity851ba692009-08-24 11:10:17 +03002769 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002770 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002771 /*
2772 * Forward all other exceptions that are valid in real mode.
2773 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2774 * the required debugging infrastructure rework.
2775 */
2776 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002777 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002778 if (vcpu->guest_debug &
2779 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2780 return 0;
2781 kvm_queue_exception(vcpu, vec);
2782 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002783 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002784 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2785 return 0;
2786 /* fall through */
2787 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002788 case OF_VECTOR:
2789 case BR_VECTOR:
2790 case UD_VECTOR:
2791 case DF_VECTOR:
2792 case SS_VECTOR:
2793 case GP_VECTOR:
2794 case MF_VECTOR:
2795 kvm_queue_exception(vcpu, vec);
2796 return 1;
2797 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002798 return 0;
2799}
2800
Andi Kleena0861c02009-06-08 17:37:09 +08002801/*
2802 * Trigger machine check on the host. We assume all the MSRs are already set up
2803 * by the CPU and that we still run on the same CPU as the MCE occurred on.
2804 * We pass a fake environment to the machine check handler because we want
2805 * the guest to be always treated like user space, no matter what context
2806 * it used internally.
2807 */
2808static void kvm_machine_check(void)
2809{
2810#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
2811 struct pt_regs regs = {
2812 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
2813 .flags = X86_EFLAGS_IF,
2814 };
2815
2816 do_machine_check(&regs, 0);
2817#endif
2818}
2819
Avi Kivity851ba692009-08-24 11:10:17 +03002820static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08002821{
2822 /* already handled by vcpu_run */
2823 return 1;
2824}
2825
Avi Kivity851ba692009-08-24 11:10:17 +03002826static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002827{
Avi Kivity1155f762007-11-22 11:30:47 +02002828 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002829 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002830 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002831 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002832 u32 vect_info;
2833 enum emulation_result er;
2834
Avi Kivity1155f762007-11-22 11:30:47 +02002835 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002836 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2837
Andi Kleena0861c02009-06-08 17:37:09 +08002838 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03002839 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08002840
Avi Kivity6aa8b732006-12-10 02:21:36 -08002841 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Avi Kivity65ac7262009-11-04 11:59:01 +02002842 !is_page_fault(intr_info)) {
2843 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
2844 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
2845 vcpu->run->internal.ndata = 2;
2846 vcpu->run->internal.data[0] = vect_info;
2847 vcpu->run->internal.data[1] = intr_info;
2848 return 0;
2849 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002850
Jan Kiszkae4a41882008-09-26 09:30:46 +02002851 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002852 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002853
2854 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002855 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002856 return 1;
2857 }
2858
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002859 if (is_invalid_opcode(intr_info)) {
Avi Kivity851ba692009-08-24 11:10:17 +03002860 er = emulate_instruction(vcpu, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002861 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002862 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002863 return 1;
2864 }
2865
Avi Kivity6aa8b732006-12-10 02:21:36 -08002866 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002867 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002868 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002869 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2870 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002871 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02002872 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002873 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002874 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002875 trace_kvm_page_fault(cr2, error_code);
2876
Gleb Natapov3298b752009-05-11 13:35:46 +03002877 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03002878 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002879 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002880 }
2881
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002882 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002883 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002884 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002885 if (vcpu->arch.halt_request) {
2886 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002887 return kvm_emulate_halt(vcpu);
2888 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002889 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002890 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002891
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002892 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002893 switch (ex_no) {
2894 case DB_VECTOR:
2895 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2896 if (!(vcpu->guest_debug &
2897 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2898 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2899 kvm_queue_exception(vcpu, DB_VECTOR);
2900 return 1;
2901 }
2902 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2903 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2904 /* fall through */
2905 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002906 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002907 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2908 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002909 break;
2910 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002911 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2912 kvm_run->ex.exception = ex_no;
2913 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002914 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002915 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002916 return 0;
2917}
2918
Avi Kivity851ba692009-08-24 11:10:17 +03002919static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002920{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002921 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002922 return 1;
2923}
2924
Avi Kivity851ba692009-08-24 11:10:17 +03002925static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08002926{
Avi Kivity851ba692009-08-24 11:10:17 +03002927 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08002928 return 0;
2929}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002930
Avi Kivity851ba692009-08-24 11:10:17 +03002931static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002932{
He, Qingbfdaab02007-09-12 14:18:28 +08002933 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002934 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002935 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002936
Avi Kivity1165f5f2007-04-19 17:27:43 +03002937 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002938 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002939 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002940
2941 if (string) {
Avi Kivity851ba692009-08-24 11:10:17 +03002942 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002943 return 0;
2944 return 1;
2945 }
2946
2947 size = (exit_qualification & 7) + 1;
2948 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002949 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002950
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002951 skip_emulated_instruction(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002952 return kvm_emulate_pio(vcpu, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002953}
2954
Ingo Molnar102d8322007-02-19 14:37:47 +02002955static void
2956vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2957{
2958 /*
2959 * Patch in the VMCALL instruction:
2960 */
2961 hypercall[0] = 0x0f;
2962 hypercall[1] = 0x01;
2963 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002964}
2965
Avi Kivity851ba692009-08-24 11:10:17 +03002966static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002967{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002968 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002969 int cr;
2970 int reg;
2971
He, Qingbfdaab02007-09-12 14:18:28 +08002972 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002973 cr = exit_qualification & 15;
2974 reg = (exit_qualification >> 8) & 15;
2975 switch ((exit_qualification >> 4) & 3) {
2976 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002977 val = kvm_register_read(vcpu, reg);
2978 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002979 switch (cr) {
2980 case 0:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002981 kvm_set_cr0(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002982 skip_emulated_instruction(vcpu);
2983 return 1;
2984 case 3:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002985 kvm_set_cr3(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002986 skip_emulated_instruction(vcpu);
2987 return 1;
2988 case 4:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002989 kvm_set_cr4(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002990 skip_emulated_instruction(vcpu);
2991 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002992 case 8: {
2993 u8 cr8_prev = kvm_get_cr8(vcpu);
2994 u8 cr8 = kvm_register_read(vcpu, reg);
2995 kvm_set_cr8(vcpu, cr8);
2996 skip_emulated_instruction(vcpu);
2997 if (irqchip_in_kernel(vcpu->kvm))
2998 return 1;
2999 if (cr8_prev <= cr8)
3000 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03003001 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03003002 return 0;
3003 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003004 };
3005 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03003006 case 2: /* clts */
Avi Kivityedcafe32009-12-30 18:07:40 +02003007 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02003008 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03003009 skip_emulated_instruction(vcpu);
3010 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003011 case 1: /*mov from cr*/
3012 switch (cr) {
3013 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003014 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003015 trace_kvm_cr_read(cr, vcpu->arch.cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003016 skip_emulated_instruction(vcpu);
3017 return 1;
3018 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003019 val = kvm_get_cr8(vcpu);
3020 kvm_register_write(vcpu, reg, val);
3021 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003022 skip_emulated_instruction(vcpu);
3023 return 1;
3024 }
3025 break;
3026 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02003027 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02003028 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02003029 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003030
3031 skip_emulated_instruction(vcpu);
3032 return 1;
3033 default:
3034 break;
3035 }
Avi Kivity851ba692009-08-24 11:10:17 +03003036 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10003037 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08003038 (int)(exit_qualification >> 4) & 3, cr);
3039 return 0;
3040}
3041
Avi Kivity851ba692009-08-24 11:10:17 +03003042static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003043{
He, Qingbfdaab02007-09-12 14:18:28 +08003044 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003045 unsigned long val;
3046 int dr, reg;
3047
Jan Kiszkaf2483412010-01-20 18:20:20 +01003048 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03003049 if (!kvm_require_cpl(vcpu, 0))
3050 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003051 dr = vmcs_readl(GUEST_DR7);
3052 if (dr & DR7_GD) {
3053 /*
3054 * As the vm-exit takes precedence over the debug trap, we
3055 * need to emulate the latter, either for the host or the
3056 * guest debugging itself.
3057 */
3058 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03003059 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
3060 vcpu->run->debug.arch.dr7 = dr;
3061 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003062 vmcs_readl(GUEST_CS_BASE) +
3063 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03003064 vcpu->run->debug.arch.exception = DB_VECTOR;
3065 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003066 return 0;
3067 } else {
3068 vcpu->arch.dr7 &= ~DR7_GD;
3069 vcpu->arch.dr6 |= DR6_BD;
3070 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3071 kvm_queue_exception(vcpu, DB_VECTOR);
3072 return 1;
3073 }
3074 }
3075
He, Qingbfdaab02007-09-12 14:18:28 +08003076 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003077 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
3078 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
3079 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003080 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003081 case 0 ... 3:
3082 val = vcpu->arch.db[dr];
3083 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003084 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003085 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003086 break;
3087 case 7:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003088 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003089 break;
3090 default:
3091 val = 0;
3092 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003093 kvm_register_write(vcpu, reg, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003094 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003095 val = vcpu->arch.regs[reg];
3096 switch (dr) {
3097 case 0 ... 3:
3098 vcpu->arch.db[dr] = val;
3099 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
3100 vcpu->arch.eff_db[dr] = val;
3101 break;
3102 case 4 ... 5:
Jan Kiszkaf2483412010-01-20 18:20:20 +01003103 if (kvm_read_cr4_bits(vcpu, X86_CR4_DE)) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003104 kvm_queue_exception(vcpu, UD_VECTOR);
Jan Kiszkaf2483412010-01-20 18:20:20 +01003105 return 1;
3106 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003107 break;
3108 case 6:
3109 if (val & 0xffffffff00000000ULL) {
Jan Kiszkaf2483412010-01-20 18:20:20 +01003110 kvm_inject_gp(vcpu, 0);
3111 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003112 }
3113 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
3114 break;
3115 case 7:
3116 if (val & 0xffffffff00000000ULL) {
Jan Kiszkaf2483412010-01-20 18:20:20 +01003117 kvm_inject_gp(vcpu, 0);
3118 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003119 }
3120 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
3121 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
3122 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3123 vcpu->arch.switch_db_regs =
3124 (val & DR7_BP_EN_MASK);
3125 }
3126 break;
3127 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003128 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003129 skip_emulated_instruction(vcpu);
3130 return 1;
3131}
3132
Avi Kivity851ba692009-08-24 11:10:17 +03003133static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003134{
Avi Kivity06465c52007-02-28 20:46:53 +02003135 kvm_emulate_cpuid(vcpu);
3136 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003137}
3138
Avi Kivity851ba692009-08-24 11:10:17 +03003139static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003140{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003141 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08003142 u64 data;
3143
3144 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003145 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003146 return 1;
3147 }
3148
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003149 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003150
Avi Kivity6aa8b732006-12-10 02:21:36 -08003151 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003152 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
3153 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003154 skip_emulated_instruction(vcpu);
3155 return 1;
3156}
3157
Avi Kivity851ba692009-08-24 11:10:17 +03003158static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003159{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003160 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
3161 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
3162 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003163
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003164 trace_kvm_msr_write(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003165
Avi Kivity6aa8b732006-12-10 02:21:36 -08003166 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003167 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003168 return 1;
3169 }
3170
3171 skip_emulated_instruction(vcpu);
3172 return 1;
3173}
3174
Avi Kivity851ba692009-08-24 11:10:17 +03003175static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003176{
3177 return 1;
3178}
3179
Avi Kivity851ba692009-08-24 11:10:17 +03003180static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003181{
Eddie Dong85f455f2007-07-06 12:20:49 +03003182 u32 cpu_based_vm_exec_control;
3183
3184 /* clear pending irq */
3185 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3186 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
3187 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003188
Jan Kiszkaa26bf122008-09-26 09:30:45 +02003189 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003190
Dor Laorc1150d82007-01-05 16:36:24 -08003191 /*
3192 * If the user space waits to inject interrupts, exit as soon as
3193 * possible
3194 */
Gleb Natapov80618232009-04-21 17:44:56 +03003195 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03003196 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03003197 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003198 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08003199 return 0;
3200 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003201 return 1;
3202}
3203
Avi Kivity851ba692009-08-24 11:10:17 +03003204static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003205{
3206 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003207 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003208}
3209
Avi Kivity851ba692009-08-24 11:10:17 +03003210static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02003211{
Dor Laor510043d2007-02-19 18:25:43 +02003212 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003213 kvm_emulate_hypercall(vcpu);
3214 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003215}
3216
Avi Kivity851ba692009-08-24 11:10:17 +03003217static int handle_vmx_insn(struct kvm_vcpu *vcpu)
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003218{
3219 kvm_queue_exception(vcpu, UD_VECTOR);
3220 return 1;
3221}
3222
Avi Kivity851ba692009-08-24 11:10:17 +03003223static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003224{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003225 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003226
3227 kvm_mmu_invlpg(vcpu, exit_qualification);
3228 skip_emulated_instruction(vcpu);
3229 return 1;
3230}
3231
Avi Kivity851ba692009-08-24 11:10:17 +03003232static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02003233{
3234 skip_emulated_instruction(vcpu);
3235 /* TODO: Add support for VT-d/pass-through device */
3236 return 1;
3237}
3238
Avi Kivity851ba692009-08-24 11:10:17 +03003239static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003240{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003241 unsigned long exit_qualification;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003242 enum emulation_result er;
3243 unsigned long offset;
3244
Sheng Yangf9c617f2009-03-25 10:08:52 +08003245 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003246 offset = exit_qualification & 0xffful;
3247
Avi Kivity851ba692009-08-24 11:10:17 +03003248 er = emulate_instruction(vcpu, 0, 0, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003249
3250 if (er != EMULATE_DONE) {
3251 printk(KERN_ERR
3252 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3253 offset);
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003254 return -ENOEXEC;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003255 }
3256 return 1;
3257}
3258
Avi Kivity851ba692009-08-24 11:10:17 +03003259static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02003260{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003261 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003262 unsigned long exit_qualification;
3263 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003264 int reason, type, idt_v;
3265
3266 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
3267 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02003268
3269 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3270
3271 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003272 if (reason == TASK_SWITCH_GATE && idt_v) {
3273 switch (type) {
3274 case INTR_TYPE_NMI_INTR:
3275 vcpu->arch.nmi_injected = false;
3276 if (cpu_has_virtual_nmis())
3277 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3278 GUEST_INTR_STATE_NMI);
3279 break;
3280 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003281 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003282 kvm_clear_interrupt_queue(vcpu);
3283 break;
3284 case INTR_TYPE_HARD_EXCEPTION:
3285 case INTR_TYPE_SOFT_EXCEPTION:
3286 kvm_clear_exception_queue(vcpu);
3287 break;
3288 default:
3289 break;
3290 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02003291 }
Izik Eidus37817f22008-03-24 23:14:53 +02003292 tss_selector = exit_qualification;
3293
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003294 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
3295 type != INTR_TYPE_EXT_INTR &&
3296 type != INTR_TYPE_NMI_INTR))
3297 skip_emulated_instruction(vcpu);
3298
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003299 if (!kvm_task_switch(vcpu, tss_selector, reason))
3300 return 0;
3301
3302 /* clear all local breakpoint enable flags */
3303 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3304
3305 /*
3306 * TODO: What about debug traps on tss switch?
3307 * Are we supposed to inject them and update dr6?
3308 */
3309
3310 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003311}
3312
Avi Kivity851ba692009-08-24 11:10:17 +03003313static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08003314{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003315 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003316 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003317 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003318
Sheng Yangf9c617f2009-03-25 10:08:52 +08003319 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08003320
3321 if (exit_qualification & (1 << 6)) {
3322 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003323 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08003324 }
3325
3326 gla_validity = (exit_qualification >> 7) & 0x3;
3327 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3328 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3329 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3330 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08003331 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08003332 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3333 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03003334 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3335 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03003336 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08003337 }
3338
3339 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003340 trace_kvm_page_fault(gpa, exit_qualification);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003341 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003342}
3343
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003344static u64 ept_rsvd_mask(u64 spte, int level)
3345{
3346 int i;
3347 u64 mask = 0;
3348
3349 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
3350 mask |= (1ULL << i);
3351
3352 if (level > 2)
3353 /* bits 7:3 reserved */
3354 mask |= 0xf8;
3355 else if (level == 2) {
3356 if (spte & (1ULL << 7))
3357 /* 2MB ref, bits 20:12 reserved */
3358 mask |= 0x1ff000;
3359 else
3360 /* bits 6:3 reserved */
3361 mask |= 0x78;
3362 }
3363
3364 return mask;
3365}
3366
3367static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
3368 int level)
3369{
3370 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
3371
3372 /* 010b (write-only) */
3373 WARN_ON((spte & 0x7) == 0x2);
3374
3375 /* 110b (write/execute) */
3376 WARN_ON((spte & 0x7) == 0x6);
3377
3378 /* 100b (execute-only) and value not supported by logical processor */
3379 if (!cpu_has_vmx_ept_execute_only())
3380 WARN_ON((spte & 0x7) == 0x4);
3381
3382 /* not 000b */
3383 if ((spte & 0x7)) {
3384 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
3385
3386 if (rsvd_bits != 0) {
3387 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
3388 __func__, rsvd_bits);
3389 WARN_ON(1);
3390 }
3391
3392 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
3393 u64 ept_mem_type = (spte & 0x38) >> 3;
3394
3395 if (ept_mem_type == 2 || ept_mem_type == 3 ||
3396 ept_mem_type == 7) {
3397 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
3398 __func__, ept_mem_type);
3399 WARN_ON(1);
3400 }
3401 }
3402 }
3403}
3404
Avi Kivity851ba692009-08-24 11:10:17 +03003405static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003406{
3407 u64 sptes[4];
3408 int nr_sptes, i;
3409 gpa_t gpa;
3410
3411 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
3412
3413 printk(KERN_ERR "EPT: Misconfiguration.\n");
3414 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
3415
3416 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
3417
3418 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
3419 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
3420
Avi Kivity851ba692009-08-24 11:10:17 +03003421 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3422 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003423
3424 return 0;
3425}
3426
Avi Kivity851ba692009-08-24 11:10:17 +03003427static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08003428{
3429 u32 cpu_based_vm_exec_control;
3430
3431 /* clear pending NMI */
3432 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3433 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3434 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3435 ++vcpu->stat.nmi_window_exits;
3436
3437 return 1;
3438}
3439
Mohammed Gamal80ced182009-09-01 12:48:18 +02003440static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003441{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003442 struct vcpu_vmx *vmx = to_vmx(vcpu);
3443 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003444 int ret = 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003445
3446 while (!guest_state_valid(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003447 err = emulate_instruction(vcpu, 0, 0, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003448
Mohammed Gamal80ced182009-09-01 12:48:18 +02003449 if (err == EMULATE_DO_MMIO) {
3450 ret = 0;
3451 goto out;
3452 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003453
3454 if (err != EMULATE_DONE) {
Mohammed Gamal80ced182009-09-01 12:48:18 +02003455 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3456 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
Avi Kivitya9c73992009-11-04 11:54:59 +02003457 vcpu->run->internal.ndata = 0;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003458 ret = 0;
3459 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003460 }
3461
3462 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02003463 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003464 if (need_resched())
3465 schedule();
3466 }
3467
Mohammed Gamal80ced182009-09-01 12:48:18 +02003468 vmx->emulation_required = 0;
3469out:
3470 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003471}
3472
Avi Kivity6aa8b732006-12-10 02:21:36 -08003473/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003474 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
3475 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
3476 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03003477static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003478{
3479 skip_emulated_instruction(vcpu);
3480 kvm_vcpu_on_spin(vcpu);
3481
3482 return 1;
3483}
3484
Sheng Yang59708672009-12-15 13:29:54 +08003485static int handle_invalid_op(struct kvm_vcpu *vcpu)
3486{
3487 kvm_queue_exception(vcpu, UD_VECTOR);
3488 return 1;
3489}
3490
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003491/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003492 * The exit handlers return 1 if the exit was handled fully and guest execution
3493 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3494 * to be done to userspace and return 0.
3495 */
Avi Kivity851ba692009-08-24 11:10:17 +03003496static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003497 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3498 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003499 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003500 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003501 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003502 [EXIT_REASON_CR_ACCESS] = handle_cr,
3503 [EXIT_REASON_DR_ACCESS] = handle_dr,
3504 [EXIT_REASON_CPUID] = handle_cpuid,
3505 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3506 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3507 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3508 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003509 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003510 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003511 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
3512 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
3513 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
3514 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
3515 [EXIT_REASON_VMREAD] = handle_vmx_insn,
3516 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
3517 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
3518 [EXIT_REASON_VMOFF] = handle_vmx_insn,
3519 [EXIT_REASON_VMON] = handle_vmx_insn,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003520 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3521 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003522 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003523 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08003524 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003525 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
3526 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003527 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sheng Yang59708672009-12-15 13:29:54 +08003528 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_invalid_op,
3529 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_invalid_op,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003530};
3531
3532static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003533 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003534
3535/*
3536 * The guest has exited. See if we can fix it or if we need userspace
3537 * assistance.
3538 */
Avi Kivity851ba692009-08-24 11:10:17 +03003539static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003540{
Avi Kivity29bd8a72007-09-10 17:27:03 +03003541 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003542 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02003543 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003544
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003545 trace_kvm_exit(exit_reason, kvm_rip_read(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003546
Mohammed Gamal80ced182009-09-01 12:48:18 +02003547 /* If guest state is invalid, start emulating */
3548 if (vmx->emulation_required && emulate_invalid_guest_state)
3549 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003550
Sheng Yang14394422008-04-28 12:24:45 +08003551 /* Access CR3 don't cause VMExit in paging mode, so we need
3552 * to sync with guest real CR3. */
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003553 if (enable_ept && is_paging(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003554 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003555
Avi Kivity29bd8a72007-09-10 17:27:03 +03003556 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003557 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3558 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03003559 = vmcs_read32(VM_INSTRUCTION_ERROR);
3560 return 0;
3561 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003562
Mike Dayd77c26f2007-10-08 09:02:08 -04003563 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003564 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003565 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3566 exit_reason != EXIT_REASON_TASK_SWITCH))
3567 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3568 "(0x%x) and exit reason is 0x%x\n",
3569 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003570
3571 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03003572 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003573 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003574 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003575 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003576 /*
3577 * This CPU don't support us in finding the end of an
3578 * NMI-blocked window if the guest runs with IRQs
3579 * disabled. So we pull the trigger after 1 s of
3580 * futile waiting, but inform the user about this.
3581 */
3582 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3583 "state on VCPU %d after 1 s timeout\n",
3584 __func__, vcpu->vcpu_id);
3585 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003586 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003587 }
3588
Avi Kivity6aa8b732006-12-10 02:21:36 -08003589 if (exit_reason < kvm_vmx_max_exit_handlers
3590 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03003591 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003592 else {
Avi Kivity851ba692009-08-24 11:10:17 +03003593 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3594 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003595 }
3596 return 0;
3597}
3598
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003599static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003600{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003601 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003602 vmcs_write32(TPR_THRESHOLD, 0);
3603 return;
3604 }
3605
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003606 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003607}
3608
Avi Kivitycf393f72008-07-01 16:20:21 +03003609static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3610{
3611 u32 exit_intr_info;
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003612 u32 idt_vectoring_info = vmx->idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003613 bool unblock_nmi;
3614 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003615 int type;
3616 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03003617
3618 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Gleb Natapov20f65982009-05-11 13:35:55 +03003619
Andi Kleena0861c02009-06-08 17:37:09 +08003620 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
3621
3622 /* Handle machine checks before interrupts are enabled */
3623 if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
3624 || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
3625 && is_machine_check(exit_intr_info)))
3626 kvm_machine_check();
3627
Gleb Natapov20f65982009-05-11 13:35:55 +03003628 /* We need to handle NMIs before interrupts are enabled */
3629 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003630 (exit_intr_info & INTR_INFO_VALID_MASK))
Gleb Natapov20f65982009-05-11 13:35:55 +03003631 asm("int $2");
Gleb Natapov20f65982009-05-11 13:35:55 +03003632
3633 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3634
Avi Kivitycf393f72008-07-01 16:20:21 +03003635 if (cpu_has_virtual_nmis()) {
3636 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3637 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3638 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003639 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03003640 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3641 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003642 * SDM 3: 23.2.2 (September 2008)
3643 * Bit 12 is undefined in any of the following cases:
3644 * If the VM exit sets the valid bit in the IDT-vectoring
3645 * information field.
3646 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03003647 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003648 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
3649 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03003650 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3651 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003652 } else if (unlikely(vmx->soft_vnmi_blocked))
3653 vmx->vnmi_blocked_time +=
3654 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003655
Gleb Natapov37b96e92009-03-30 16:03:13 +03003656 vmx->vcpu.arch.nmi_injected = false;
3657 kvm_clear_exception_queue(&vmx->vcpu);
3658 kvm_clear_interrupt_queue(&vmx->vcpu);
3659
3660 if (!idtv_info_valid)
3661 return;
3662
Avi Kivity668f6122008-07-02 09:28:55 +03003663 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3664 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003665
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003666 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003667 case INTR_TYPE_NMI_INTR:
3668 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03003669 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003670 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03003671 * Clear bit "block by NMI" before VM entry if a NMI
3672 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03003673 */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003674 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3675 GUEST_INTR_STATE_NMI);
3676 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003677 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003678 vmx->vcpu.arch.event_exit_inst_len =
3679 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3680 /* fall through */
3681 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03003682 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003683 u32 err = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3684 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03003685 } else
3686 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003687 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003688 case INTR_TYPE_SOFT_INTR:
3689 vmx->vcpu.arch.event_exit_inst_len =
3690 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3691 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003692 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003693 kvm_queue_interrupt(&vmx->vcpu, vector,
3694 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003695 break;
3696 default:
3697 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03003698 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003699}
3700
Avi Kivity9c8cba32007-11-22 11:42:59 +02003701/*
3702 * Failure to inject an interrupt should give us the information
3703 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3704 * when fetching the interrupt redirection bitmap in the real-mode
3705 * tss, this doesn't happen. So we do it ourselves.
3706 */
3707static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3708{
3709 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003710 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003711 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003712 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003713 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3714 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3715 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3716 return;
3717 }
3718 vmx->idt_vectoring_info =
3719 VECTORING_INFO_VALID_MASK
3720 | INTR_TYPE_EXT_INTR
3721 | vmx->rmode.irq.vector;
3722}
3723
Avi Kivityc8019492008-07-14 14:44:59 +03003724#ifdef CONFIG_X86_64
3725#define R "r"
3726#define Q "q"
3727#else
3728#define R "e"
3729#define Q "l"
3730#endif
3731
Avi Kivity851ba692009-08-24 11:10:17 +03003732static void vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003733{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003734 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03003735
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003736 /* Record the guest's net vcpu time for enforced NMI injections. */
3737 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3738 vmx->entry_time = ktime_get();
3739
Mohammed Gamal80ced182009-09-01 12:48:18 +02003740 /* Don't enter VMX if guest state is invalid, let the exit handler
3741 start emulation until we arrive back to a valid state */
3742 if (vmx->emulation_required && emulate_invalid_guest_state)
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003743 return;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003744
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003745 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3746 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3747 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3748 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3749
Gleb Natapov787ff732009-05-18 11:44:06 +03003750 /* When single-stepping over STI and MOV SS, we must clear the
3751 * corresponding interruptibility bits in the guest state. Otherwise
3752 * vmentry fails as it then expects bit 14 (BS) in pending debug
3753 * exceptions being set, but that's not correct for the guest debugging
3754 * case. */
3755 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3756 vmx_set_interrupt_shadow(vcpu, 0);
3757
Avi Kivitye6adf282007-04-30 16:07:54 +03003758 /*
3759 * Loading guest fpu may have cleared host cr0.ts
3760 */
3761 vmcs_writel(HOST_CR0, read_cr0());
3762
Avi Kivitye8a48342009-09-01 16:06:25 +03003763 if (vcpu->arch.switch_db_regs)
3764 set_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003765
Mike Dayd77c26f2007-10-08 09:02:08 -04003766 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003767 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003768 "push %%"R"dx; push %%"R"bp;"
3769 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003770 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3771 "je 1f \n\t"
3772 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003773 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003774 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03003775 /* Reload cr2 if changed */
3776 "mov %c[cr2](%0), %%"R"ax \n\t"
3777 "mov %%cr2, %%"R"dx \n\t"
3778 "cmp %%"R"ax, %%"R"dx \n\t"
3779 "je 2f \n\t"
3780 "mov %%"R"ax, %%cr2 \n\t"
3781 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003782 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003783 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003784 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003785 "mov %c[rax](%0), %%"R"ax \n\t"
3786 "mov %c[rbx](%0), %%"R"bx \n\t"
3787 "mov %c[rdx](%0), %%"R"dx \n\t"
3788 "mov %c[rsi](%0), %%"R"si \n\t"
3789 "mov %c[rdi](%0), %%"R"di \n\t"
3790 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003791#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003792 "mov %c[r8](%0), %%r8 \n\t"
3793 "mov %c[r9](%0), %%r9 \n\t"
3794 "mov %c[r10](%0), %%r10 \n\t"
3795 "mov %c[r11](%0), %%r11 \n\t"
3796 "mov %c[r12](%0), %%r12 \n\t"
3797 "mov %c[r13](%0), %%r13 \n\t"
3798 "mov %c[r14](%0), %%r14 \n\t"
3799 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003800#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003801 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3802
Avi Kivity6aa8b732006-12-10 02:21:36 -08003803 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003804 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003805 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003806 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003807 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003808 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003809 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003810 "xchg %0, (%%"R"sp) \n\t"
3811 "mov %%"R"ax, %c[rax](%0) \n\t"
3812 "mov %%"R"bx, %c[rbx](%0) \n\t"
3813 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3814 "mov %%"R"dx, %c[rdx](%0) \n\t"
3815 "mov %%"R"si, %c[rsi](%0) \n\t"
3816 "mov %%"R"di, %c[rdi](%0) \n\t"
3817 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003818#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003819 "mov %%r8, %c[r8](%0) \n\t"
3820 "mov %%r9, %c[r9](%0) \n\t"
3821 "mov %%r10, %c[r10](%0) \n\t"
3822 "mov %%r11, %c[r11](%0) \n\t"
3823 "mov %%r12, %c[r12](%0) \n\t"
3824 "mov %%r13, %c[r13](%0) \n\t"
3825 "mov %%r14, %c[r14](%0) \n\t"
3826 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003827#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003828 "mov %%cr2, %%"R"ax \n\t"
3829 "mov %%"R"ax, %c[cr2](%0) \n\t"
3830
3831 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003832 "setbe %c[fail](%0) \n\t"
3833 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3834 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3835 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003836 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003837 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3838 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3839 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3840 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3841 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3842 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3843 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003844#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003845 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3846 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3847 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3848 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3849 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3850 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3851 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3852 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003853#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003854 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003855 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003856 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003857#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003858 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3859#endif
3860 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003861
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003862 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
3863 | (1 << VCPU_EXREG_PDPTR));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003864 vcpu->arch.regs_dirty = 0;
3865
Avi Kivitye8a48342009-09-01 16:06:25 +03003866 if (vcpu->arch.switch_db_regs)
3867 get_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003868
Avi Kivity1155f762007-11-22 11:30:47 +02003869 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003870 if (vmx->rmode.irq.pending)
3871 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003872
Mike Dayd77c26f2007-10-08 09:02:08 -04003873 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003874 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003875
Avi Kivitycf393f72008-07-01 16:20:21 +03003876 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003877}
3878
Avi Kivityc8019492008-07-14 14:44:59 +03003879#undef R
3880#undef Q
3881
Avi Kivity6aa8b732006-12-10 02:21:36 -08003882static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3883{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003884 struct vcpu_vmx *vmx = to_vmx(vcpu);
3885
3886 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003887 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003888 free_vmcs(vmx->vmcs);
3889 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003890 }
3891}
3892
3893static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3894{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003895 struct vcpu_vmx *vmx = to_vmx(vcpu);
3896
Sheng Yang2384d2b2008-01-17 15:14:33 +08003897 spin_lock(&vmx_vpid_lock);
3898 if (vmx->vpid != 0)
3899 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3900 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003901 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003902 kfree(vmx->guest_msrs);
3903 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003904 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003905}
3906
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003907static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003908{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003909 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003910 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003911 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003912
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003913 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003914 return ERR_PTR(-ENOMEM);
3915
Sheng Yang2384d2b2008-01-17 15:14:33 +08003916 allocate_vpid(vmx);
3917
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003918 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3919 if (err)
3920 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003921
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003922 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003923 if (!vmx->guest_msrs) {
3924 err = -ENOMEM;
3925 goto uninit_vcpu;
3926 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003927
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003928 vmx->vmcs = alloc_vmcs();
3929 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003930 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003931
3932 vmcs_clear(vmx->vmcs);
3933
Avi Kivity15ad7142007-07-11 18:17:21 +03003934 cpu = get_cpu();
3935 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003936 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003937 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003938 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003939 if (err)
3940 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003941 if (vm_need_virtualize_apic_accesses(kvm))
3942 if (alloc_apic_access_page(kvm) != 0)
3943 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003944
Sheng Yangb927a3c2009-07-21 10:42:48 +08003945 if (enable_ept) {
3946 if (!kvm->arch.ept_identity_map_addr)
3947 kvm->arch.ept_identity_map_addr =
3948 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003949 if (alloc_identity_pagetable(kvm) != 0)
3950 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003951 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003952
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003953 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003954
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003955free_vmcs:
3956 free_vmcs(vmx->vmcs);
3957free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003958 kfree(vmx->guest_msrs);
3959uninit_vcpu:
3960 kvm_vcpu_uninit(&vmx->vcpu);
3961free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003962 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003963 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003964}
3965
Yang, Sheng002c7f72007-07-31 14:23:01 +03003966static void __init vmx_check_processor_compat(void *rtn)
3967{
3968 struct vmcs_config vmcs_conf;
3969
3970 *(int *)rtn = 0;
3971 if (setup_vmcs_config(&vmcs_conf) < 0)
3972 *(int *)rtn = -EIO;
3973 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3974 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3975 smp_processor_id());
3976 *(int *)rtn = -EIO;
3977 }
3978}
3979
Sheng Yang67253af2008-04-25 10:20:22 +08003980static int get_ept_level(void)
3981{
3982 return VMX_EPT_DEFAULT_GAW + 1;
3983}
3984
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003985static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08003986{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003987 u64 ret;
3988
Sheng Yang522c68c2009-04-27 20:35:43 +08003989 /* For VT-d and EPT combination
3990 * 1. MMIO: always map as UC
3991 * 2. EPT with VT-d:
3992 * a. VT-d without snooping control feature: can't guarantee the
3993 * result, try to trust guest.
3994 * b. VT-d with snooping control feature: snooping control feature of
3995 * VT-d engine can guarantee the cache correctness. Just set it
3996 * to WB to keep consistent with host. So the same as item 3.
3997 * 3. EPT without VT-d: always map as WB and set IGMT=1 to keep
3998 * consistent with host MTRR
3999 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004000 if (is_mmio)
4001 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08004002 else if (vcpu->kvm->arch.iommu_domain &&
4003 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
4004 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
4005 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004006 else
Sheng Yang522c68c2009-04-27 20:35:43 +08004007 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
4008 | VMX_EPT_IGMT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004009
4010 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08004011}
4012
Avi Kivityf4c9e872009-12-28 16:06:35 +02004013#define _ER(x) { EXIT_REASON_##x, #x }
4014
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004015static const struct trace_print_flags vmx_exit_reasons_str[] = {
Avi Kivityf4c9e872009-12-28 16:06:35 +02004016 _ER(EXCEPTION_NMI),
4017 _ER(EXTERNAL_INTERRUPT),
4018 _ER(TRIPLE_FAULT),
4019 _ER(PENDING_INTERRUPT),
4020 _ER(NMI_WINDOW),
4021 _ER(TASK_SWITCH),
4022 _ER(CPUID),
4023 _ER(HLT),
4024 _ER(INVLPG),
4025 _ER(RDPMC),
4026 _ER(RDTSC),
4027 _ER(VMCALL),
4028 _ER(VMCLEAR),
4029 _ER(VMLAUNCH),
4030 _ER(VMPTRLD),
4031 _ER(VMPTRST),
4032 _ER(VMREAD),
4033 _ER(VMRESUME),
4034 _ER(VMWRITE),
4035 _ER(VMOFF),
4036 _ER(VMON),
4037 _ER(CR_ACCESS),
4038 _ER(DR_ACCESS),
4039 _ER(IO_INSTRUCTION),
4040 _ER(MSR_READ),
4041 _ER(MSR_WRITE),
4042 _ER(MWAIT_INSTRUCTION),
4043 _ER(MONITOR_INSTRUCTION),
4044 _ER(PAUSE_INSTRUCTION),
4045 _ER(MCE_DURING_VMENTRY),
4046 _ER(TPR_BELOW_THRESHOLD),
4047 _ER(APIC_ACCESS),
4048 _ER(EPT_VIOLATION),
4049 _ER(EPT_MISCONFIG),
4050 _ER(WBINVD),
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004051 { -1, NULL }
4052};
4053
Avi Kivityf4c9e872009-12-28 16:06:35 +02004054#undef _ER
4055
Sheng Yang17cc3932010-01-05 19:02:27 +08004056static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02004057{
Sheng Yang878403b2010-01-05 19:02:29 +08004058 if (enable_ept && !cpu_has_vmx_ept_1g_page())
4059 return PT_DIRECTORY_LEVEL;
4060 else
4061 /* For shadow and EPT supported 1GB page */
4062 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02004063}
4064
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004065static inline u32 bit(int bitno)
4066{
4067 return 1 << (bitno & 31);
4068}
4069
Sheng Yang0e851882009-12-18 16:48:46 +08004070static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
4071{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004072 struct kvm_cpuid_entry2 *best;
4073 struct vcpu_vmx *vmx = to_vmx(vcpu);
4074 u32 exec_control;
4075
4076 vmx->rdtscp_enabled = false;
4077 if (vmx_rdtscp_supported()) {
4078 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
4079 if (exec_control & SECONDARY_EXEC_RDTSCP) {
4080 best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
4081 if (best && (best->edx & bit(X86_FEATURE_RDTSCP)))
4082 vmx->rdtscp_enabled = true;
4083 else {
4084 exec_control &= ~SECONDARY_EXEC_RDTSCP;
4085 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
4086 exec_control);
4087 }
4088 }
4089 }
Sheng Yang0e851882009-12-18 16:48:46 +08004090}
4091
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03004092static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004093 .cpu_has_kvm_support = cpu_has_kvm_support,
4094 .disabled_by_bios = vmx_disabled_by_bios,
4095 .hardware_setup = hardware_setup,
4096 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03004097 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004098 .hardware_enable = hardware_enable,
4099 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08004100 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004101
4102 .vcpu_create = vmx_create_vcpu,
4103 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004104 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004105
Avi Kivity04d2cc72007-09-10 18:10:54 +03004106 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004107 .vcpu_load = vmx_vcpu_load,
4108 .vcpu_put = vmx_vcpu_put,
4109
4110 .set_guest_debug = set_guest_debug,
4111 .get_msr = vmx_get_msr,
4112 .set_msr = vmx_set_msr,
4113 .get_segment_base = vmx_get_segment_base,
4114 .get_segment = vmx_get_segment,
4115 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02004116 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004117 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02004118 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03004119 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004120 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004121 .set_cr3 = vmx_set_cr3,
4122 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004123 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004124 .get_idt = vmx_get_idt,
4125 .set_idt = vmx_set_idt,
4126 .get_gdt = vmx_get_gdt,
4127 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004128 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004129 .get_rflags = vmx_get_rflags,
4130 .set_rflags = vmx_set_rflags,
Avi Kivity02daab22009-12-30 12:40:26 +02004131 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004132
4133 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004134
Avi Kivity6aa8b732006-12-10 02:21:36 -08004135 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02004136 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004137 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04004138 .set_interrupt_shadow = vmx_set_interrupt_shadow,
4139 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02004140 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03004141 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004142 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02004143 .queue_exception = vmx_queue_exception,
Gleb Natapov78646122009-03-23 12:12:11 +02004144 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004145 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004146 .get_nmi_mask = vmx_get_nmi_mask,
4147 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004148 .enable_nmi_window = enable_nmi_window,
4149 .enable_irq_window = enable_irq_window,
4150 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004151
Izik Eiduscbc94022007-10-25 00:29:55 +02004152 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08004153 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004154 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004155
4156 .exit_reasons_str = vmx_exit_reasons_str,
Sheng Yang17cc3932010-01-05 19:02:27 +08004157 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08004158
4159 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004160
4161 .rdtscp_supported = vmx_rdtscp_supported,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004162};
4163
4164static int __init vmx_init(void)
4165{
Avi Kivity26bb0982009-09-07 11:14:12 +03004166 int r, i;
4167
4168 rdmsrl_safe(MSR_EFER, &host_efer);
4169
4170 for (i = 0; i < NR_VMX_MSR; ++i)
4171 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03004172
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004173 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004174 if (!vmx_io_bitmap_a)
4175 return -ENOMEM;
4176
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004177 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004178 if (!vmx_io_bitmap_b) {
4179 r = -ENOMEM;
4180 goto out;
4181 }
4182
Avi Kivity58972972009-02-24 22:26:47 +02004183 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
4184 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08004185 r = -ENOMEM;
4186 goto out1;
4187 }
4188
Avi Kivity58972972009-02-24 22:26:47 +02004189 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
4190 if (!vmx_msr_bitmap_longmode) {
4191 r = -ENOMEM;
4192 goto out2;
4193 }
4194
He, Qingfdef3ad2007-04-30 09:45:24 +03004195 /*
4196 * Allow direct access to the PC debug port (it is often used for I/O
4197 * delays, but the vmexits simply slow things down).
4198 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004199 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
4200 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004201
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004202 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004203
Avi Kivity58972972009-02-24 22:26:47 +02004204 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
4205 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08004206
Sheng Yang2384d2b2008-01-17 15:14:33 +08004207 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
4208
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004209 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004210 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02004211 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08004212
Avi Kivity58972972009-02-24 22:26:47 +02004213 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
4214 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
4215 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
4216 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
4217 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
4218 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03004219
Avi Kivity089d0342009-03-23 18:26:32 +02004220 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004221 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004222 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08004223 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08004224 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004225 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004226 kvm_enable_tdp();
4227 } else
4228 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08004229
Avi Kivityc7addb92007-09-16 18:58:32 +02004230 if (bypass_guest_pf)
4231 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
4232
He, Qingfdef3ad2007-04-30 09:45:24 +03004233 return 0;
4234
Avi Kivity58972972009-02-24 22:26:47 +02004235out3:
4236 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08004237out2:
Avi Kivity58972972009-02-24 22:26:47 +02004238 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03004239out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004240 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03004241out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004242 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004243 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004244}
4245
4246static void __exit vmx_exit(void)
4247{
Avi Kivity58972972009-02-24 22:26:47 +02004248 free_page((unsigned long)vmx_msr_bitmap_legacy);
4249 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004250 free_page((unsigned long)vmx_io_bitmap_b);
4251 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004252
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004253 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004254}
4255
4256module_init(vmx_init)
4257module_exit(vmx_exit)