blob: a680d939546f199a212d079131937f908e2e9693 [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 Kivity313dbd492008-07-17 18:04:30 +0300113 unsigned long host_rsp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400114 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300115 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +0200116 u32 idt_vectoring_info;
Avi Kivity26bb0982009-09-07 11:14:12 +0300117 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400118 int nmsrs;
119 int save_nmsrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400120#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300121 u64 msr_host_kernel_gs_base;
122 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400123#endif
124 struct vmcs *vmcs;
125 struct {
126 int loaded;
127 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200128 int gs_ldt_reload_needed;
129 int fs_reload_needed;
Mike Dayd77c26f2007-10-08 09:02:08 -0400130 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200131 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300132 int vm86_active;
133 u8 save_iopl;
134 struct kvm_save_segment {
135 u16 selector;
136 unsigned long base;
137 u32 limit;
138 u32 ar;
139 } tr, es, ds, fs, gs;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200140 struct {
141 bool pending;
142 u8 vector;
143 unsigned rip;
144 } irq;
145 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800146 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300147 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200148
149 /* Support for vnmi-less CPUs */
150 int soft_vnmi_blocked;
151 ktime_t entry_time;
152 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800153 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800154
155 bool rdtscp_enabled;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400156};
157
158static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
159{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000160 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400161}
162
Sheng Yangb7ebfb02008-04-25 21:44:52 +0800163static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800164static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +0300165
Avi Kivity6aa8b732006-12-10 02:21:36 -0800166static DEFINE_PER_CPU(struct vmcs *, vmxarea);
167static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +0300168static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800169
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200170static unsigned long *vmx_io_bitmap_a;
171static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200172static unsigned long *vmx_msr_bitmap_legacy;
173static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300174
Sheng Yang2384d2b2008-01-17 15:14:33 +0800175static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
176static DEFINE_SPINLOCK(vmx_vpid_lock);
177
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300178static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800179 int size;
180 int order;
181 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300182 u32 pin_based_exec_ctrl;
183 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800184 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300185 u32 vmexit_ctrl;
186 u32 vmentry_ctrl;
187} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800188
Hannes Ederefff9e52008-11-28 17:02:06 +0100189static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800190 u32 ept;
191 u32 vpid;
192} vmx_capability;
193
Avi Kivity6aa8b732006-12-10 02:21:36 -0800194#define VMX_SEGMENT_FIELD(seg) \
195 [VCPU_SREG_##seg] = { \
196 .selector = GUEST_##seg##_SELECTOR, \
197 .base = GUEST_##seg##_BASE, \
198 .limit = GUEST_##seg##_LIMIT, \
199 .ar_bytes = GUEST_##seg##_AR_BYTES, \
200 }
201
202static struct kvm_vmx_segment_field {
203 unsigned selector;
204 unsigned base;
205 unsigned limit;
206 unsigned ar_bytes;
207} kvm_vmx_segment_fields[] = {
208 VMX_SEGMENT_FIELD(CS),
209 VMX_SEGMENT_FIELD(DS),
210 VMX_SEGMENT_FIELD(ES),
211 VMX_SEGMENT_FIELD(FS),
212 VMX_SEGMENT_FIELD(GS),
213 VMX_SEGMENT_FIELD(SS),
214 VMX_SEGMENT_FIELD(TR),
215 VMX_SEGMENT_FIELD(LDTR),
216};
217
Avi Kivity26bb0982009-09-07 11:14:12 +0300218static u64 host_efer;
219
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300220static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
221
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300222/*
223 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
224 * away by decrementing the array size.
225 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800226static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800227#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300228 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800229#endif
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800230 MSR_EFER, MSR_TSC_AUX, MSR_K6_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800231};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200232#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800233
Avi Kivity6aa8b732006-12-10 02:21:36 -0800234static inline int is_page_fault(u32 intr_info)
235{
236 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
237 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100238 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800239}
240
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300241static inline int is_no_device(u32 intr_info)
242{
243 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
244 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100245 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300246}
247
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500248static inline int is_invalid_opcode(u32 intr_info)
249{
250 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
251 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100252 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500253}
254
Avi Kivity6aa8b732006-12-10 02:21:36 -0800255static inline int is_external_interrupt(u32 intr_info)
256{
257 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
258 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
259}
260
Andi Kleena0861c02009-06-08 17:37:09 +0800261static inline int is_machine_check(u32 intr_info)
262{
263 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
264 INTR_INFO_VALID_MASK)) ==
265 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
266}
267
Sheng Yang25c5f222008-03-28 13:18:56 +0800268static inline int cpu_has_vmx_msr_bitmap(void)
269{
Sheng Yang04547152009-04-01 15:52:31 +0800270 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800271}
272
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800273static inline int cpu_has_vmx_tpr_shadow(void)
274{
Sheng Yang04547152009-04-01 15:52:31 +0800275 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800276}
277
278static inline int vm_need_tpr_shadow(struct kvm *kvm)
279{
Sheng Yang04547152009-04-01 15:52:31 +0800280 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800281}
282
Sheng Yangf78e0e22007-10-29 09:40:42 +0800283static inline int cpu_has_secondary_exec_ctrls(void)
284{
Sheng Yang04547152009-04-01 15:52:31 +0800285 return vmcs_config.cpu_based_exec_ctrl &
286 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800287}
288
Avi Kivity774ead32007-12-26 13:57:04 +0200289static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800290{
Sheng Yang04547152009-04-01 15:52:31 +0800291 return vmcs_config.cpu_based_2nd_exec_ctrl &
292 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
293}
294
295static inline bool cpu_has_vmx_flexpriority(void)
296{
297 return cpu_has_vmx_tpr_shadow() &&
298 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800299}
300
Marcelo Tosattie7997942009-06-11 12:07:40 -0300301static inline bool cpu_has_vmx_ept_execute_only(void)
302{
303 return !!(vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT);
304}
305
306static inline bool cpu_has_vmx_eptp_uncacheable(void)
307{
308 return !!(vmx_capability.ept & VMX_EPTP_UC_BIT);
309}
310
311static inline bool cpu_has_vmx_eptp_writeback(void)
312{
313 return !!(vmx_capability.ept & VMX_EPTP_WB_BIT);
314}
315
316static inline bool cpu_has_vmx_ept_2m_page(void)
317{
318 return !!(vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT);
319}
320
Sheng Yang878403b2010-01-05 19:02:29 +0800321static inline bool cpu_has_vmx_ept_1g_page(void)
322{
323 return !!(vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT);
324}
325
Sheng Yangd56f5462008-04-25 10:13:16 +0800326static inline int cpu_has_vmx_invept_individual_addr(void)
327{
Sheng Yang04547152009-04-01 15:52:31 +0800328 return !!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800329}
330
331static inline int cpu_has_vmx_invept_context(void)
332{
Sheng Yang04547152009-04-01 15:52:31 +0800333 return !!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800334}
335
336static inline int cpu_has_vmx_invept_global(void)
337{
Sheng Yang04547152009-04-01 15:52:31 +0800338 return !!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800339}
340
341static inline int cpu_has_vmx_ept(void)
342{
Sheng Yang04547152009-04-01 15:52:31 +0800343 return vmcs_config.cpu_based_2nd_exec_ctrl &
344 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800345}
346
Nitin A Kamble3a624e22009-06-08 11:34:16 -0700347static inline int cpu_has_vmx_unrestricted_guest(void)
348{
349 return vmcs_config.cpu_based_2nd_exec_ctrl &
350 SECONDARY_EXEC_UNRESTRICTED_GUEST;
351}
352
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800353static inline int cpu_has_vmx_ple(void)
354{
355 return vmcs_config.cpu_based_2nd_exec_ctrl &
356 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
357}
358
Sheng Yangf78e0e22007-10-29 09:40:42 +0800359static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
360{
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
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100582 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
583 (1u << NM_VECTOR) | (1u << DB_VECTOR);
584 if ((vcpu->guest_debug &
585 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
586 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
587 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300588 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300589 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +0200590 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +0800591 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +0200592 if (vcpu->fpu_active)
593 eb &= ~(1u << NM_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300594 vmcs_write32(EXCEPTION_BITMAP, eb);
595}
596
Avi Kivity33ed6322007-05-02 16:54:03 +0300597static void reload_tss(void)
598{
Avi Kivity33ed6322007-05-02 16:54:03 +0300599 /*
600 * VT restores TR but not its size. Useless.
601 */
602 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200603 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300604
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300605 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300606 descs = (void *)gdt.base;
607 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
608 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300609}
610
Avi Kivity92c0d902009-10-29 11:00:16 +0200611static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +0300612{
Roel Kluin3a34a882009-08-04 02:08:45 -0700613 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300614 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300615
Avi Kivityf6801df2010-01-21 15:31:50 +0200616 guest_efer = vmx->vcpu.arch.efer;
Roel Kluin3a34a882009-08-04 02:08:45 -0700617
Avi Kivity51c6cf62007-08-29 03:48:05 +0300618 /*
619 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
620 * outside long mode
621 */
622 ignore_bits = EFER_NX | EFER_SCE;
623#ifdef CONFIG_X86_64
624 ignore_bits |= EFER_LMA | EFER_LME;
625 /* SCE is meaningful only in long mode on Intel */
626 if (guest_efer & EFER_LMA)
627 ignore_bits &= ~(u64)EFER_SCE;
628#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +0300629 guest_efer &= ~ignore_bits;
630 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300631 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +0200632 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300633 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300634}
635
Avi Kivity04d2cc72007-09-10 18:10:54 +0300636static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300637{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300638 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +0300639 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +0300640
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400641 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300642 return;
643
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400644 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300645 /*
646 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
647 * allow segment selectors with cpl > 0 or ti == 1.
648 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300649 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200650 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300651 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200652 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400653 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200654 vmx->host_state.fs_reload_needed = 0;
655 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300656 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200657 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300658 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300659 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400660 if (!(vmx->host_state.gs_sel & 7))
661 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300662 else {
663 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200664 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300665 }
666
667#ifdef CONFIG_X86_64
668 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
669 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
670#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400671 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
672 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300673#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300674
675#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300676 if (is_long_mode(&vmx->vcpu)) {
677 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
678 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
679 }
Avi Kivity707c0872007-05-02 17:33:43 +0300680#endif
Avi Kivity26bb0982009-09-07 11:14:12 +0300681 for (i = 0; i < vmx->save_nmsrs; ++i)
682 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +0200683 vmx->guest_msrs[i].data,
684 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +0300685}
686
Avi Kivitya9b21b62008-06-24 11:48:49 +0300687static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300688{
Avi Kivity15ad7142007-07-11 18:17:21 +0300689 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300690
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400691 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300692 return;
693
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200694 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400695 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200696 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300697 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200698 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300699 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300700 /*
701 * If we have to reload gs, we must take care to
702 * preserve our gs base.
703 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300704 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300705 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300706#ifdef CONFIG_X86_64
707 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
708#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300709 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300710 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200711 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +0300712#ifdef CONFIG_X86_64
713 if (is_long_mode(&vmx->vcpu)) {
714 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
715 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
716 }
717#endif
Avi Kivity33ed6322007-05-02 16:54:03 +0300718}
719
Avi Kivitya9b21b62008-06-24 11:48:49 +0300720static void vmx_load_host_state(struct vcpu_vmx *vmx)
721{
722 preempt_disable();
723 __vmx_load_host_state(vmx);
724 preempt_enable();
725}
726
Avi Kivity6aa8b732006-12-10 02:21:36 -0800727/*
728 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
729 * vcpu mutex is already taken.
730 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300731static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800732{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400733 struct vcpu_vmx *vmx = to_vmx(vcpu);
734 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200735 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800736
Eddie Donga3d7f852007-09-03 16:15:12 +0300737 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000738 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300739 kvm_migrate_timers(vcpu);
Marcelo Tosattieb5109e2009-10-01 19:16:58 -0300740 set_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests);
Avi Kivity543e4242008-05-13 16:22:47 +0300741 local_irq_disable();
742 list_add(&vmx->local_vcpus_link,
743 &per_cpu(vcpus_on_cpu, cpu));
744 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300745 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800746
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400747 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800748 u8 error;
749
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400750 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300751 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800752 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
753 : "cc");
754 if (error)
755 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400756 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800757 }
758
759 if (vcpu->cpu != cpu) {
760 struct descriptor_table dt;
761 unsigned long sysenter_esp;
762
763 vcpu->cpu = cpu;
764 /*
765 * Linux uses per-cpu TSS and GDT, so set these when switching
766 * processors.
767 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300768 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
769 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800770 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
771
772 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
773 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300774
775 /*
776 * Make sure the time stamp counter is monotonous.
777 */
778 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200779 if (tsc_this < vcpu->arch.host_tsc) {
780 delta = vcpu->arch.host_tsc - tsc_this;
781 new_offset = vmcs_read64(TSC_OFFSET) + delta;
782 vmcs_write64(TSC_OFFSET, new_offset);
783 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800784 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800785}
786
787static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
788{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300789 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800790}
791
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300792static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
793{
794 if (vcpu->fpu_active)
795 return;
796 vcpu->fpu_active = 1;
Rusty Russell707d92fa2007-07-17 23:19:08 +1000797 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity4d4ec082009-12-29 18:07:30 +0200798 if (kvm_read_cr0_bits(vcpu, X86_CR0_TS))
Rusty Russell707d92fa2007-07-17 23:19:08 +1000799 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300800 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +0200801 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
802 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300803}
804
Avi Kivityedcafe32009-12-30 18:07:40 +0200805static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
806
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300807static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
808{
Avi Kivityedcafe32009-12-30 18:07:40 +0200809 vmx_decache_cr0_guest_bits(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +1000810 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300811 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +0200812 vcpu->arch.cr0_guest_owned_bits = 0;
813 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
814 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300815}
816
Avi Kivity6aa8b732006-12-10 02:21:36 -0800817static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
818{
Avi Kivity345dcaa2009-08-12 15:29:37 +0300819 unsigned long rflags;
820
821 rflags = vmcs_readl(GUEST_RFLAGS);
822 if (to_vmx(vcpu)->rmode.vm86_active)
823 rflags &= ~(unsigned long)(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
824 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800825}
826
827static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
828{
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300829 if (to_vmx(vcpu)->rmode.vm86_active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100830 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800831 vmcs_writel(GUEST_RFLAGS, rflags);
832}
833
Glauber Costa2809f5d2009-05-12 16:21:05 -0400834static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
835{
836 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
837 int ret = 0;
838
839 if (interruptibility & GUEST_INTR_STATE_STI)
840 ret |= X86_SHADOW_INT_STI;
841 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
842 ret |= X86_SHADOW_INT_MOV_SS;
843
844 return ret & mask;
845}
846
847static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
848{
849 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
850 u32 interruptibility = interruptibility_old;
851
852 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
853
854 if (mask & X86_SHADOW_INT_MOV_SS)
855 interruptibility |= GUEST_INTR_STATE_MOV_SS;
856 if (mask & X86_SHADOW_INT_STI)
857 interruptibility |= GUEST_INTR_STATE_STI;
858
859 if ((interruptibility != interruptibility_old))
860 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
861}
862
Avi Kivity6aa8b732006-12-10 02:21:36 -0800863static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
864{
865 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800866
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300867 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800868 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300869 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800870
Glauber Costa2809f5d2009-05-12 16:21:05 -0400871 /* skipping an emulated instruction also counts */
872 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800873}
874
Avi Kivity298101d2007-11-25 13:41:11 +0200875static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
876 bool has_error_code, u32 error_code)
877{
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200878 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100879 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200880
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100881 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200882 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100883 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
884 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200885
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300886 if (vmx->rmode.vm86_active) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200887 vmx->rmode.irq.pending = true;
888 vmx->rmode.irq.vector = nr;
889 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +0300890 if (kvm_exception_is_soft(nr))
891 vmx->rmode.irq.rip +=
892 vmx->vcpu.arch.event_exit_inst_len;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100893 intr_info |= INTR_TYPE_SOFT_INTR;
894 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200895 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
896 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
897 return;
898 }
899
Gleb Natapov66fd3f72009-05-11 13:35:50 +0300900 if (kvm_exception_is_soft(nr)) {
901 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
902 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100903 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
904 } else
905 intr_info |= INTR_TYPE_HARD_EXCEPTION;
906
907 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +0200908}
909
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800910static bool vmx_rdtscp_supported(void)
911{
912 return cpu_has_vmx_rdtscp();
913}
914
Avi Kivity6aa8b732006-12-10 02:21:36 -0800915/*
Eddie Donga75beee2007-05-17 18:55:15 +0300916 * Swap MSR entry in host/guest MSR entry array.
917 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000918static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300919{
Avi Kivity26bb0982009-09-07 11:14:12 +0300920 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400921
922 tmp = vmx->guest_msrs[to];
923 vmx->guest_msrs[to] = vmx->guest_msrs[from];
924 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300925}
926
927/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300928 * Set up the vmcs to automatically save and restore system
929 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
930 * mode, as fiddling with msrs is very expensive.
931 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000932static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300933{
Avi Kivity26bb0982009-09-07 11:14:12 +0300934 int save_nmsrs, index;
Avi Kivity58972972009-02-24 22:26:47 +0200935 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +0300936
Avi Kivity33f9c502008-02-27 16:06:57 +0200937 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300938 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300939#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000940 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000941 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300942 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000943 move_msr_up(vmx, index, save_nmsrs++);
944 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300945 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000946 move_msr_up(vmx, index, save_nmsrs++);
947 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300948 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000949 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800950 index = __find_msr_index(vmx, MSR_TSC_AUX);
951 if (index >= 0 && vmx->rdtscp_enabled)
952 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300953 /*
954 * MSR_K6_STAR is only needed on long mode guests, and only
955 * if efer.sce is enabled.
956 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000957 index = __find_msr_index(vmx, MSR_K6_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +0200958 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000959 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300960 }
Eddie Donga75beee2007-05-17 18:55:15 +0300961#endif
Avi Kivity92c0d902009-10-29 11:00:16 +0200962 index = __find_msr_index(vmx, MSR_EFER);
963 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +0300964 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300965
Avi Kivity26bb0982009-09-07 11:14:12 +0300966 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +0200967
968 if (cpu_has_vmx_msr_bitmap()) {
969 if (is_long_mode(&vmx->vcpu))
970 msr_bitmap = vmx_msr_bitmap_longmode;
971 else
972 msr_bitmap = vmx_msr_bitmap_legacy;
973
974 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
975 }
Avi Kivitye38aea32007-04-19 13:22:48 +0300976}
977
978/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800979 * reads and returns guest's timestamp counter "register"
980 * guest_tsc = host_tsc + tsc_offset -- 21.3
981 */
982static u64 guest_read_tsc(void)
983{
984 u64 host_tsc, tsc_offset;
985
986 rdtscll(host_tsc);
987 tsc_offset = vmcs_read64(TSC_OFFSET);
988 return host_tsc + tsc_offset;
989}
990
991/*
992 * writes 'guest_tsc' into guest's timestamp counter "register"
993 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
994 */
Marcelo Tosatti53f658b32008-12-11 20:45:05 +0100995static void guest_write_tsc(u64 guest_tsc, u64 host_tsc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800996{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
998}
999
Avi Kivity6aa8b732006-12-10 02:21:36 -08001000/*
1001 * Reads an msr value (of 'msr_index') into 'pdata'.
1002 * Returns 0 on success, non-0 otherwise.
1003 * Assumes vcpu_load() was already called.
1004 */
1005static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1006{
1007 u64 data;
Avi Kivity26bb0982009-09-07 11:14:12 +03001008 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001009
1010 if (!pdata) {
1011 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
1012 return -EINVAL;
1013 }
1014
1015 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001016#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001017 case MSR_FS_BASE:
1018 data = vmcs_readl(GUEST_FS_BASE);
1019 break;
1020 case MSR_GS_BASE:
1021 data = vmcs_readl(GUEST_GS_BASE);
1022 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001023 case MSR_KERNEL_GS_BASE:
1024 vmx_load_host_state(to_vmx(vcpu));
1025 data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
1026 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001027#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001028 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001029 return kvm_get_msr_common(vcpu, msr_index, pdata);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301030 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001031 data = guest_read_tsc();
1032 break;
1033 case MSR_IA32_SYSENTER_CS:
1034 data = vmcs_read32(GUEST_SYSENTER_CS);
1035 break;
1036 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001037 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001038 break;
1039 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001040 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001041 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001042 case MSR_TSC_AUX:
1043 if (!to_vmx(vcpu)->rdtscp_enabled)
1044 return 1;
1045 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001046 default:
Avi Kivity26bb0982009-09-07 11:14:12 +03001047 vmx_load_host_state(to_vmx(vcpu));
Rusty Russell8b9cf982007-07-30 16:31:43 +10001048 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001049 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001050 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity3bab1f52006-12-29 16:49:48 -08001051 data = msr->data;
1052 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001053 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08001054 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055 }
1056
1057 *pdata = data;
1058 return 0;
1059}
1060
1061/*
1062 * Writes msr value into into the appropriate "register".
1063 * Returns 0 on success, non-0 otherwise.
1064 * Assumes vcpu_load() was already called.
1065 */
1066static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1067{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001068 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001069 struct shared_msr_entry *msr;
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01001070 u64 host_tsc;
Eddie Dong2cc51562007-05-21 07:28:09 +03001071 int ret = 0;
1072
Avi Kivity6aa8b732006-12-10 02:21:36 -08001073 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001074 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +03001075 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +03001076 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03001077 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001078#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001079 case MSR_FS_BASE:
1080 vmcs_writel(GUEST_FS_BASE, data);
1081 break;
1082 case MSR_GS_BASE:
1083 vmcs_writel(GUEST_GS_BASE, data);
1084 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001085 case MSR_KERNEL_GS_BASE:
1086 vmx_load_host_state(vmx);
1087 vmx->msr_guest_kernel_gs_base = data;
1088 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001089#endif
1090 case MSR_IA32_SYSENTER_CS:
1091 vmcs_write32(GUEST_SYSENTER_CS, data);
1092 break;
1093 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001094 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001095 break;
1096 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001097 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001098 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301099 case MSR_IA32_TSC:
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01001100 rdtscll(host_tsc);
1101 guest_write_tsc(data, host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001102 break;
Sheng Yang468d4722008-10-09 16:01:55 +08001103 case MSR_IA32_CR_PAT:
1104 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
1105 vmcs_write64(GUEST_IA32_PAT, data);
1106 vcpu->arch.pat = data;
1107 break;
1108 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001109 ret = kvm_set_msr_common(vcpu, msr_index, data);
1110 break;
1111 case MSR_TSC_AUX:
1112 if (!vmx->rdtscp_enabled)
1113 return 1;
1114 /* Check reserved bit, higher 32 bits should be zero */
1115 if ((data >> 32) != 0)
1116 return 1;
1117 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001118 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10001119 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001120 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001121 vmx_load_host_state(vmx);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001122 msr->data = data;
1123 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001124 }
Eddie Dong2cc51562007-05-21 07:28:09 +03001125 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001126 }
1127
Eddie Dong2cc51562007-05-21 07:28:09 +03001128 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001129}
1130
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001131static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001132{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001133 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
1134 switch (reg) {
1135 case VCPU_REGS_RSP:
1136 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
1137 break;
1138 case VCPU_REGS_RIP:
1139 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
1140 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001141 case VCPU_EXREG_PDPTR:
1142 if (enable_ept)
1143 ept_save_pdptrs(vcpu);
1144 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001145 default:
1146 break;
1147 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001148}
1149
Jan Kiszka355be0b2009-10-03 00:31:21 +02001150static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001151{
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001152 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1153 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1154 else
1155 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1156
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001157 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001158}
1159
1160static __init int cpu_has_kvm_support(void)
1161{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001162 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001163}
1164
1165static __init int vmx_disabled_by_bios(void)
1166{
1167 u64 msr;
1168
1169 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001170 return (msr & (FEATURE_CONTROL_LOCKED |
1171 FEATURE_CONTROL_VMXON_ENABLED))
1172 == FEATURE_CONTROL_LOCKED;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001173 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001174}
1175
Alexander Graf10474ae2009-09-15 11:37:46 +02001176static int hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001177{
1178 int cpu = raw_smp_processor_id();
1179 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1180 u64 old;
1181
Alexander Graf10474ae2009-09-15 11:37:46 +02001182 if (read_cr4() & X86_CR4_VMXE)
1183 return -EBUSY;
1184
Avi Kivity543e4242008-05-13 16:22:47 +03001185 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001186 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001187 if ((old & (FEATURE_CONTROL_LOCKED |
1188 FEATURE_CONTROL_VMXON_ENABLED))
1189 != (FEATURE_CONTROL_LOCKED |
1190 FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001191 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001192 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yang9ea542f2008-09-11 15:27:49 +08001193 FEATURE_CONTROL_LOCKED |
1194 FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +10001195 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001196 asm volatile (ASM_VMX_VMXON_RAX
1197 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001198 : "memory", "cc");
Alexander Graf10474ae2009-09-15 11:37:46 +02001199
1200 ept_sync_global();
1201
1202 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001203}
1204
Avi Kivity543e4242008-05-13 16:22:47 +03001205static void vmclear_local_vcpus(void)
1206{
1207 int cpu = raw_smp_processor_id();
1208 struct vcpu_vmx *vmx, *n;
1209
1210 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1211 local_vcpus_link)
1212 __vcpu_clear(vmx);
1213}
1214
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001215
1216/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1217 * tricks.
1218 */
1219static void kvm_cpu_vmxoff(void)
1220{
1221 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
1222 write_cr4(read_cr4() & ~X86_CR4_VMXE);
1223}
1224
Avi Kivity6aa8b732006-12-10 02:21:36 -08001225static void hardware_disable(void *garbage)
1226{
Avi Kivity543e4242008-05-13 16:22:47 +03001227 vmclear_local_vcpus();
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001228 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001229}
1230
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001231static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001232 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001233{
1234 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001235 u32 ctl = ctl_min | ctl_opt;
1236
1237 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1238
1239 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1240 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1241
1242 /* Ensure minimum (required) set of control bits are supported. */
1243 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001244 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001245
1246 *result = ctl;
1247 return 0;
1248}
1249
Yang, Sheng002c7f72007-07-31 14:23:01 +03001250static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001251{
1252 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001253 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001254 u32 _pin_based_exec_control = 0;
1255 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001256 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001257 u32 _vmexit_control = 0;
1258 u32 _vmentry_control = 0;
1259
1260 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001261 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001262 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1263 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001264 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001265
1266 min = CPU_BASED_HLT_EXITING |
1267#ifdef CONFIG_X86_64
1268 CPU_BASED_CR8_LOAD_EXITING |
1269 CPU_BASED_CR8_STORE_EXITING |
1270#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001271 CPU_BASED_CR3_LOAD_EXITING |
1272 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001273 CPU_BASED_USE_IO_BITMAPS |
1274 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001275 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08001276 CPU_BASED_MWAIT_EXITING |
1277 CPU_BASED_MONITOR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001278 CPU_BASED_INVLPG_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001279 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001280 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001281 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001282 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1283 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001284 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001285#ifdef CONFIG_X86_64
1286 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1287 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1288 ~CPU_BASED_CR8_STORE_EXITING;
1289#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001290 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001291 min2 = 0;
1292 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001293 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001294 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001295 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001296 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001297 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
1298 SECONDARY_EXEC_RDTSCP;
Sheng Yangd56f5462008-04-25 10:13:16 +08001299 if (adjust_vmx_controls(min2, opt2,
1300 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001301 &_cpu_based_2nd_exec_control) < 0)
1302 return -EIO;
1303 }
1304#ifndef CONFIG_X86_64
1305 if (!(_cpu_based_2nd_exec_control &
1306 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1307 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1308#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001309 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03001310 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
1311 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03001312 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
1313 CPU_BASED_CR3_STORE_EXITING |
1314 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001315 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1316 vmx_capability.ept, vmx_capability.vpid);
1317 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001318
1319 min = 0;
1320#ifdef CONFIG_X86_64
1321 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1322#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001323 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001324 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1325 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001326 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001327
Sheng Yang468d4722008-10-09 16:01:55 +08001328 min = 0;
1329 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001330 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1331 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001332 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001333
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001334 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001335
1336 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1337 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001338 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001339
1340#ifdef CONFIG_X86_64
1341 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1342 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001343 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001344#endif
1345
1346 /* Require Write-Back (WB) memory type for VMCS accesses. */
1347 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001348 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001349
Yang, Sheng002c7f72007-07-31 14:23:01 +03001350 vmcs_conf->size = vmx_msr_high & 0x1fff;
1351 vmcs_conf->order = get_order(vmcs_config.size);
1352 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001353
Yang, Sheng002c7f72007-07-31 14:23:01 +03001354 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1355 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001356 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001357 vmcs_conf->vmexit_ctrl = _vmexit_control;
1358 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001359
1360 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001361}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001362
1363static struct vmcs *alloc_vmcs_cpu(int cpu)
1364{
1365 int node = cpu_to_node(cpu);
1366 struct page *pages;
1367 struct vmcs *vmcs;
1368
Mel Gorman6484eb32009-06-16 15:31:54 -07001369 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001370 if (!pages)
1371 return NULL;
1372 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001373 memset(vmcs, 0, vmcs_config.size);
1374 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001375 return vmcs;
1376}
1377
1378static struct vmcs *alloc_vmcs(void)
1379{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001380 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001381}
1382
1383static void free_vmcs(struct vmcs *vmcs)
1384{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001385 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001386}
1387
Sam Ravnborg39959582007-06-01 00:47:13 -07001388static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001389{
1390 int cpu;
1391
Zachary Amsden3230bb42009-09-29 11:38:37 -10001392 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001393 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10001394 per_cpu(vmxarea, cpu) = NULL;
1395 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001396}
1397
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398static __init int alloc_kvm_area(void)
1399{
1400 int cpu;
1401
Zachary Amsden3230bb42009-09-29 11:38:37 -10001402 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001403 struct vmcs *vmcs;
1404
1405 vmcs = alloc_vmcs_cpu(cpu);
1406 if (!vmcs) {
1407 free_kvm_area();
1408 return -ENOMEM;
1409 }
1410
1411 per_cpu(vmxarea, cpu) = vmcs;
1412 }
1413 return 0;
1414}
1415
1416static __init int hardware_setup(void)
1417{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001418 if (setup_vmcs_config(&vmcs_config) < 0)
1419 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001420
1421 if (boot_cpu_has(X86_FEATURE_NX))
1422 kvm_enable_efer_bits(EFER_NX);
1423
Sheng Yang93ba03c2009-04-01 15:52:32 +08001424 if (!cpu_has_vmx_vpid())
1425 enable_vpid = 0;
1426
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001427 if (!cpu_has_vmx_ept()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08001428 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001429 enable_unrestricted_guest = 0;
1430 }
1431
1432 if (!cpu_has_vmx_unrestricted_guest())
1433 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08001434
1435 if (!cpu_has_vmx_flexpriority())
1436 flexpriority_enabled = 0;
1437
Gleb Natapov95ba8273132009-04-21 17:45:08 +03001438 if (!cpu_has_vmx_tpr_shadow())
1439 kvm_x86_ops->update_cr8_intercept = NULL;
1440
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001441 if (enable_ept && !cpu_has_vmx_ept_2m_page())
1442 kvm_disable_largepages();
1443
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001444 if (!cpu_has_vmx_ple())
1445 ple_gap = 0;
1446
Avi Kivity6aa8b732006-12-10 02:21:36 -08001447 return alloc_kvm_area();
1448}
1449
1450static __exit void hardware_unsetup(void)
1451{
1452 free_kvm_area();
1453}
1454
Avi Kivity6aa8b732006-12-10 02:21:36 -08001455static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1456{
1457 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1458
Avi Kivity6af11b92007-03-19 13:18:10 +02001459 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001460 vmcs_write16(sf->selector, save->selector);
1461 vmcs_writel(sf->base, save->base);
1462 vmcs_write32(sf->limit, save->limit);
1463 vmcs_write32(sf->ar_bytes, save->ar);
1464 } else {
1465 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1466 << AR_DPL_SHIFT;
1467 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1468 }
1469}
1470
1471static void enter_pmode(struct kvm_vcpu *vcpu)
1472{
1473 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001474 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001475
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001476 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001477 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001478
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001479 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
1480 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
1481 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001482
1483 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001484 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001485 flags |= (vmx->rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001486 vmcs_writel(GUEST_RFLAGS, flags);
1487
Rusty Russell66aee912007-07-17 23:34:16 +10001488 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1489 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001490
1491 update_exception_bitmap(vcpu);
1492
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001493 if (emulate_invalid_guest_state)
1494 return;
1495
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001496 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
1497 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
1498 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
1499 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001500
1501 vmcs_write16(GUEST_SS_SELECTOR, 0);
1502 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1503
1504 vmcs_write16(GUEST_CS_SELECTOR,
1505 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1506 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1507}
1508
Mike Dayd77c26f2007-10-08 09:02:08 -04001509static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001510{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001511 if (!kvm->arch.tss_addr) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001512 struct kvm_memslots *slots;
1513 gfn_t base_gfn;
1514
1515 slots = rcu_dereference(kvm->memslots);
1516 base_gfn = kvm->memslots->memslots[0].base_gfn +
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -02001517 kvm->memslots->memslots[0].npages - 3;
Izik Eiduscbc94022007-10-25 00:29:55 +02001518 return base_gfn << PAGE_SHIFT;
1519 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001520 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001521}
1522
1523static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1524{
1525 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1526
1527 save->selector = vmcs_read16(sf->selector);
1528 save->base = vmcs_readl(sf->base);
1529 save->limit = vmcs_read32(sf->limit);
1530 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001531 vmcs_write16(sf->selector, save->base >> 4);
1532 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001533 vmcs_write32(sf->limit, 0xffff);
1534 vmcs_write32(sf->ar_bytes, 0xf3);
1535}
1536
1537static void enter_rmode(struct kvm_vcpu *vcpu)
1538{
1539 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001540 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001541
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001542 if (enable_unrestricted_guest)
1543 return;
1544
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001545 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001546 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001547
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001548 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001549 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1550
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001551 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001552 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1553
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001554 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001555 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1556
1557 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001558 vmx->rmode.save_iopl
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001559 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001560
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001561 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001562
1563 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001564 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001565 update_exception_bitmap(vcpu);
1566
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001567 if (emulate_invalid_guest_state)
1568 goto continue_rmode;
1569
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1571 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1572 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1573
1574 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001575 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001576 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1577 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001578 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1579
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001580 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
1581 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
1582 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
1583 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001584
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001585continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08001586 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001587 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001588}
1589
Amit Shah401d10d2009-02-20 22:53:37 +05301590static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1591{
1592 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001593 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
1594
1595 if (!msr)
1596 return;
Amit Shah401d10d2009-02-20 22:53:37 +05301597
Avi Kivity44ea2b12009-09-06 15:55:37 +03001598 /*
1599 * Force kernel_gs_base reloading before EFER changes, as control
1600 * of this msr depends on is_long_mode().
1601 */
1602 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02001603 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05301604 if (!msr)
1605 return;
1606 if (efer & EFER_LMA) {
1607 vmcs_write32(VM_ENTRY_CONTROLS,
1608 vmcs_read32(VM_ENTRY_CONTROLS) |
1609 VM_ENTRY_IA32E_MODE);
1610 msr->data = efer;
1611 } else {
1612 vmcs_write32(VM_ENTRY_CONTROLS,
1613 vmcs_read32(VM_ENTRY_CONTROLS) &
1614 ~VM_ENTRY_IA32E_MODE);
1615
1616 msr->data = efer & ~EFER_LME;
1617 }
1618 setup_msrs(vmx);
1619}
1620
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001621#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001622
1623static void enter_lmode(struct kvm_vcpu *vcpu)
1624{
1625 u32 guest_tr_ar;
1626
1627 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1628 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1629 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001630 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001631 vmcs_write32(GUEST_TR_AR_BYTES,
1632 (guest_tr_ar & ~AR_TYPE_MASK)
1633 | AR_TYPE_BUSY_64_TSS);
1634 }
Avi Kivityf6801df2010-01-21 15:31:50 +02001635 vcpu->arch.efer |= EFER_LMA;
1636 vmx_set_efer(vcpu, vcpu->arch.efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001637}
1638
1639static void exit_lmode(struct kvm_vcpu *vcpu)
1640{
Avi Kivityf6801df2010-01-21 15:31:50 +02001641 vcpu->arch.efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001642
1643 vmcs_write32(VM_ENTRY_CONTROLS,
1644 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001645 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001646}
1647
1648#endif
1649
Sheng Yang2384d2b2008-01-17 15:14:33 +08001650static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1651{
1652 vpid_sync_vcpu_all(to_vmx(vcpu));
Avi Kivity089d0342009-03-23 18:26:32 +02001653 if (enable_ept)
Sheng Yang4e1096d2008-07-06 19:16:51 +08001654 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001655}
1656
Avi Kivitye8467fd2009-12-29 18:43:06 +02001657static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
1658{
1659 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
1660
1661 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
1662 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
1663}
1664
Anthony Liguori25c4c272007-04-27 09:29:21 +03001665static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001666{
Avi Kivityfc78f512009-12-07 12:16:48 +02001667 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
1668
1669 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
1670 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08001671}
1672
Sheng Yang14394422008-04-28 12:24:45 +08001673static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1674{
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001675 if (!test_bit(VCPU_EXREG_PDPTR,
1676 (unsigned long *)&vcpu->arch.regs_dirty))
1677 return;
1678
Sheng Yang14394422008-04-28 12:24:45 +08001679 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Sheng Yang14394422008-04-28 12:24:45 +08001680 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1681 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1682 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1683 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1684 }
1685}
1686
Avi Kivity8f5d5492009-05-31 18:41:29 +03001687static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
1688{
1689 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1690 vcpu->arch.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
1691 vcpu->arch.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
1692 vcpu->arch.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
1693 vcpu->arch.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
1694 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001695
1696 __set_bit(VCPU_EXREG_PDPTR,
1697 (unsigned long *)&vcpu->arch.regs_avail);
1698 __set_bit(VCPU_EXREG_PDPTR,
1699 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03001700}
1701
Sheng Yang14394422008-04-28 12:24:45 +08001702static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1703
1704static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1705 unsigned long cr0,
1706 struct kvm_vcpu *vcpu)
1707{
1708 if (!(cr0 & X86_CR0_PG)) {
1709 /* From paging/starting to nonpaging */
1710 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001711 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001712 (CPU_BASED_CR3_LOAD_EXITING |
1713 CPU_BASED_CR3_STORE_EXITING));
1714 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02001715 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08001716 } else if (!is_paging(vcpu)) {
1717 /* From nonpaging to paging */
1718 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001719 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001720 ~(CPU_BASED_CR3_LOAD_EXITING |
1721 CPU_BASED_CR3_STORE_EXITING));
1722 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02001723 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08001724 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08001725
1726 if (!(cr0 & X86_CR0_WP))
1727 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08001728}
1729
Avi Kivity6aa8b732006-12-10 02:21:36 -08001730static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1731{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001732 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001733 unsigned long hw_cr0;
1734
1735 if (enable_unrestricted_guest)
1736 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
1737 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
1738 else
1739 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08001740
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001741 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001742 enter_pmode(vcpu);
1743
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001744 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001745 enter_rmode(vcpu);
1746
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001747#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02001748 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10001749 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001750 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10001751 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001752 exit_lmode(vcpu);
1753 }
1754#endif
1755
Avi Kivity089d0342009-03-23 18:26:32 +02001756 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001757 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1758
Avi Kivity02daab22009-12-30 12:40:26 +02001759 if (!vcpu->fpu_active)
1760 hw_cr0 |= X86_CR0_TS;
1761
Avi Kivity6aa8b732006-12-10 02:21:36 -08001762 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001763 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001764 vcpu->arch.cr0 = cr0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001765}
1766
Sheng Yang14394422008-04-28 12:24:45 +08001767static u64 construct_eptp(unsigned long root_hpa)
1768{
1769 u64 eptp;
1770
1771 /* TODO write the value reading from MSR */
1772 eptp = VMX_EPT_DEFAULT_MT |
1773 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1774 eptp |= (root_hpa & PAGE_MASK);
1775
1776 return eptp;
1777}
1778
Avi Kivity6aa8b732006-12-10 02:21:36 -08001779static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1780{
Sheng Yang14394422008-04-28 12:24:45 +08001781 unsigned long guest_cr3;
1782 u64 eptp;
1783
1784 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02001785 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001786 eptp = construct_eptp(cr3);
1787 vmcs_write64(EPT_POINTER, eptp);
Sheng Yang14394422008-04-28 12:24:45 +08001788 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
Sheng Yangb927a3c2009-07-21 10:42:48 +08001789 vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be442009-10-26 16:48:33 -02001790 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001791 }
1792
Sheng Yang2384d2b2008-01-17 15:14:33 +08001793 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001794 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001795}
1796
1797static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1798{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001799 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08001800 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1801
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001802 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02001803 if (enable_ept) {
1804 if (!is_paging(vcpu)) {
1805 hw_cr4 &= ~X86_CR4_PAE;
1806 hw_cr4 |= X86_CR4_PSE;
1807 } else if (!(cr4 & X86_CR4_PAE)) {
1808 hw_cr4 &= ~X86_CR4_PAE;
1809 }
1810 }
Sheng Yang14394422008-04-28 12:24:45 +08001811
1812 vmcs_writel(CR4_READ_SHADOW, cr4);
1813 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001814}
1815
Avi Kivity6aa8b732006-12-10 02:21:36 -08001816static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1817{
1818 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1819
1820 return vmcs_readl(sf->base);
1821}
1822
1823static void vmx_get_segment(struct kvm_vcpu *vcpu,
1824 struct kvm_segment *var, int seg)
1825{
1826 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1827 u32 ar;
1828
1829 var->base = vmcs_readl(sf->base);
1830 var->limit = vmcs_read32(sf->limit);
1831 var->selector = vmcs_read16(sf->selector);
1832 ar = vmcs_read32(sf->ar_bytes);
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02001833 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001834 ar = 0;
1835 var->type = ar & 15;
1836 var->s = (ar >> 4) & 1;
1837 var->dpl = (ar >> 5) & 3;
1838 var->present = (ar >> 7) & 1;
1839 var->avl = (ar >> 12) & 1;
1840 var->l = (ar >> 13) & 1;
1841 var->db = (ar >> 14) & 1;
1842 var->g = (ar >> 15) & 1;
1843 var->unusable = (ar >> 16) & 1;
1844}
1845
Izik Eidus2e4d2652008-03-24 19:38:34 +02001846static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1847{
Avi Kivity3eeb3282010-01-21 15:31:48 +02001848 if (!is_protmode(vcpu))
Izik Eidus2e4d2652008-03-24 19:38:34 +02001849 return 0;
1850
1851 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1852 return 3;
1853
Avi Kivityeab4b8a2009-08-04 15:02:54 +03001854 return vmcs_read16(GUEST_CS_SELECTOR) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02001855}
1856
Avi Kivity653e3102007-05-07 10:55:37 +03001857static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001858{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001859 u32 ar;
1860
Avi Kivity653e3102007-05-07 10:55:37 +03001861 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001862 ar = 1 << 16;
1863 else {
1864 ar = var->type & 15;
1865 ar |= (var->s & 1) << 4;
1866 ar |= (var->dpl & 3) << 5;
1867 ar |= (var->present & 1) << 7;
1868 ar |= (var->avl & 1) << 12;
1869 ar |= (var->l & 1) << 13;
1870 ar |= (var->db & 1) << 14;
1871 ar |= (var->g & 1) << 15;
1872 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001873 if (ar == 0) /* a 0 value means unusable */
1874 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001875
1876 return ar;
1877}
1878
1879static void vmx_set_segment(struct kvm_vcpu *vcpu,
1880 struct kvm_segment *var, int seg)
1881{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001882 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03001883 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1884 u32 ar;
1885
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001886 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
1887 vmx->rmode.tr.selector = var->selector;
1888 vmx->rmode.tr.base = var->base;
1889 vmx->rmode.tr.limit = var->limit;
1890 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001891 return;
1892 }
1893 vmcs_writel(sf->base, var->base);
1894 vmcs_write32(sf->limit, var->limit);
1895 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001896 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001897 /*
1898 * Hack real-mode segments into vm86 compatibility.
1899 */
1900 if (var->base == 0xffff0000 && var->selector == 0xf000)
1901 vmcs_writel(sf->base, 0xf0000);
1902 ar = 0xf3;
1903 } else
1904 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001905
1906 /*
1907 * Fix the "Accessed" bit in AR field of segment registers for older
1908 * qemu binaries.
1909 * IA32 arch specifies that at the time of processor reset the
1910 * "Accessed" bit in the AR field of segment registers is 1. And qemu
1911 * is setting it to 0 in the usedland code. This causes invalid guest
1912 * state vmexit when "unrestricted guest" mode is turned on.
1913 * Fix for this setup issue in cpu_reset is being pushed in the qemu
1914 * tree. Newer qemu binaries with that qemu fix would not need this
1915 * kvm hack.
1916 */
1917 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
1918 ar |= 0x1; /* Accessed */
1919
Avi Kivity6aa8b732006-12-10 02:21:36 -08001920 vmcs_write32(sf->ar_bytes, ar);
1921}
1922
Avi Kivity6aa8b732006-12-10 02:21:36 -08001923static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1924{
1925 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1926
1927 *db = (ar >> 14) & 1;
1928 *l = (ar >> 13) & 1;
1929}
1930
1931static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1932{
1933 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1934 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1935}
1936
1937static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1938{
1939 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1940 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1941}
1942
1943static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1944{
1945 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1946 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1947}
1948
1949static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1950{
1951 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1952 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1953}
1954
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001955static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1956{
1957 struct kvm_segment var;
1958 u32 ar;
1959
1960 vmx_get_segment(vcpu, &var, seg);
1961 ar = vmx_segment_access_rights(&var);
1962
1963 if (var.base != (var.selector << 4))
1964 return false;
1965 if (var.limit != 0xffff)
1966 return false;
1967 if (ar != 0xf3)
1968 return false;
1969
1970 return true;
1971}
1972
1973static bool code_segment_valid(struct kvm_vcpu *vcpu)
1974{
1975 struct kvm_segment cs;
1976 unsigned int cs_rpl;
1977
1978 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1979 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1980
Avi Kivity1872a3f2009-01-04 23:26:52 +02001981 if (cs.unusable)
1982 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001983 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1984 return false;
1985 if (!cs.s)
1986 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001987 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001988 if (cs.dpl > cs_rpl)
1989 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001990 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001991 if (cs.dpl != cs_rpl)
1992 return false;
1993 }
1994 if (!cs.present)
1995 return false;
1996
1997 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
1998 return true;
1999}
2000
2001static bool stack_segment_valid(struct kvm_vcpu *vcpu)
2002{
2003 struct kvm_segment ss;
2004 unsigned int ss_rpl;
2005
2006 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2007 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
2008
Avi Kivity1872a3f2009-01-04 23:26:52 +02002009 if (ss.unusable)
2010 return true;
2011 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002012 return false;
2013 if (!ss.s)
2014 return false;
2015 if (ss.dpl != ss_rpl) /* DPL != RPL */
2016 return false;
2017 if (!ss.present)
2018 return false;
2019
2020 return true;
2021}
2022
2023static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
2024{
2025 struct kvm_segment var;
2026 unsigned int rpl;
2027
2028 vmx_get_segment(vcpu, &var, seg);
2029 rpl = var.selector & SELECTOR_RPL_MASK;
2030
Avi Kivity1872a3f2009-01-04 23:26:52 +02002031 if (var.unusable)
2032 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002033 if (!var.s)
2034 return false;
2035 if (!var.present)
2036 return false;
2037 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
2038 if (var.dpl < rpl) /* DPL < RPL */
2039 return false;
2040 }
2041
2042 /* TODO: Add other members to kvm_segment_field to allow checking for other access
2043 * rights flags
2044 */
2045 return true;
2046}
2047
2048static bool tr_valid(struct kvm_vcpu *vcpu)
2049{
2050 struct kvm_segment tr;
2051
2052 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
2053
Avi Kivity1872a3f2009-01-04 23:26:52 +02002054 if (tr.unusable)
2055 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002056 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2057 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02002058 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002059 return false;
2060 if (!tr.present)
2061 return false;
2062
2063 return true;
2064}
2065
2066static bool ldtr_valid(struct kvm_vcpu *vcpu)
2067{
2068 struct kvm_segment ldtr;
2069
2070 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
2071
Avi Kivity1872a3f2009-01-04 23:26:52 +02002072 if (ldtr.unusable)
2073 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002074 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2075 return false;
2076 if (ldtr.type != 2)
2077 return false;
2078 if (!ldtr.present)
2079 return false;
2080
2081 return true;
2082}
2083
2084static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
2085{
2086 struct kvm_segment cs, ss;
2087
2088 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
2089 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2090
2091 return ((cs.selector & SELECTOR_RPL_MASK) ==
2092 (ss.selector & SELECTOR_RPL_MASK));
2093}
2094
2095/*
2096 * Check if guest state is valid. Returns true if valid, false if
2097 * not.
2098 * We assume that registers are always usable
2099 */
2100static bool guest_state_valid(struct kvm_vcpu *vcpu)
2101{
2102 /* real mode guest state checks */
Avi Kivity3eeb3282010-01-21 15:31:48 +02002103 if (!is_protmode(vcpu)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002104 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
2105 return false;
2106 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
2107 return false;
2108 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
2109 return false;
2110 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
2111 return false;
2112 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
2113 return false;
2114 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
2115 return false;
2116 } else {
2117 /* protected mode guest state checks */
2118 if (!cs_ss_rpl_check(vcpu))
2119 return false;
2120 if (!code_segment_valid(vcpu))
2121 return false;
2122 if (!stack_segment_valid(vcpu))
2123 return false;
2124 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
2125 return false;
2126 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
2127 return false;
2128 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
2129 return false;
2130 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
2131 return false;
2132 if (!tr_valid(vcpu))
2133 return false;
2134 if (!ldtr_valid(vcpu))
2135 return false;
2136 }
2137 /* TODO:
2138 * - Add checks on RIP
2139 * - Add checks on RFLAGS
2140 */
2141
2142 return true;
2143}
2144
Mike Dayd77c26f2007-10-08 09:02:08 -04002145static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002146{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002147 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02002148 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002149 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02002150 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002151
Izik Eidus195aefd2007-10-01 22:14:18 +02002152 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2153 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002154 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002155 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08002156 r = kvm_write_guest_page(kvm, fn++, &data,
2157 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02002158 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002159 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002160 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
2161 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002162 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002163 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2164 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002165 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002166 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002167 r = kvm_write_guest_page(kvm, fn, &data,
2168 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
2169 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02002170 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002171 goto out;
2172
2173 ret = 1;
2174out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002175 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002176}
2177
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002178static int init_rmode_identity_map(struct kvm *kvm)
2179{
2180 int i, r, ret;
2181 pfn_t identity_map_pfn;
2182 u32 tmp;
2183
Avi Kivity089d0342009-03-23 18:26:32 +02002184 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002185 return 1;
2186 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
2187 printk(KERN_ERR "EPT: identity-mapping pagetable "
2188 "haven't been allocated!\n");
2189 return 0;
2190 }
2191 if (likely(kvm->arch.ept_identity_pagetable_done))
2192 return 1;
2193 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002194 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002195 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
2196 if (r < 0)
2197 goto out;
2198 /* Set up identity-mapping pagetable for EPT in real mode */
2199 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2200 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2201 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2202 r = kvm_write_guest_page(kvm, identity_map_pfn,
2203 &tmp, i * sizeof(tmp), sizeof(tmp));
2204 if (r < 0)
2205 goto out;
2206 }
2207 kvm->arch.ept_identity_pagetable_done = true;
2208 ret = 1;
2209out:
2210 return ret;
2211}
2212
Avi Kivity6aa8b732006-12-10 02:21:36 -08002213static void seg_setup(int seg)
2214{
2215 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002216 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002217
2218 vmcs_write16(sf->selector, 0);
2219 vmcs_writel(sf->base, 0);
2220 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002221 if (enable_unrestricted_guest) {
2222 ar = 0x93;
2223 if (seg == VCPU_SREG_CS)
2224 ar |= 0x08; /* code segment */
2225 } else
2226 ar = 0xf3;
2227
2228 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002229}
2230
Sheng Yangf78e0e22007-10-29 09:40:42 +08002231static int alloc_apic_access_page(struct kvm *kvm)
2232{
2233 struct kvm_userspace_memory_region kvm_userspace_mem;
2234 int r = 0;
2235
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002236 mutex_lock(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002237 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08002238 goto out;
2239 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
2240 kvm_userspace_mem.flags = 0;
2241 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
2242 kvm_userspace_mem.memory_size = PAGE_SIZE;
2243 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2244 if (r)
2245 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002246
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002247 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002248out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002249 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002250 return r;
2251}
2252
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002253static int alloc_identity_pagetable(struct kvm *kvm)
2254{
2255 struct kvm_userspace_memory_region kvm_userspace_mem;
2256 int r = 0;
2257
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002258 mutex_lock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002259 if (kvm->arch.ept_identity_pagetable)
2260 goto out;
2261 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2262 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002263 kvm_userspace_mem.guest_phys_addr =
2264 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002265 kvm_userspace_mem.memory_size = PAGE_SIZE;
2266 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2267 if (r)
2268 goto out;
2269
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002270 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08002271 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002272out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02002273 mutex_unlock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002274 return r;
2275}
2276
Sheng Yang2384d2b2008-01-17 15:14:33 +08002277static void allocate_vpid(struct vcpu_vmx *vmx)
2278{
2279 int vpid;
2280
2281 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02002282 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002283 return;
2284 spin_lock(&vmx_vpid_lock);
2285 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2286 if (vpid < VMX_NR_VPIDS) {
2287 vmx->vpid = vpid;
2288 __set_bit(vpid, vmx_vpid_bitmap);
2289 }
2290 spin_unlock(&vmx_vpid_lock);
2291}
2292
Avi Kivity58972972009-02-24 22:26:47 +02002293static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002294{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002295 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08002296
2297 if (!cpu_has_vmx_msr_bitmap())
2298 return;
2299
2300 /*
2301 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2302 * have the write-low and read-high bitmap offsets the wrong way round.
2303 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2304 */
Sheng Yang25c5f222008-03-28 13:18:56 +08002305 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002306 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
2307 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08002308 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2309 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002310 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
2311 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08002312 }
Sheng Yang25c5f222008-03-28 13:18:56 +08002313}
2314
Avi Kivity58972972009-02-24 22:26:47 +02002315static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
2316{
2317 if (!longmode_only)
2318 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
2319 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
2320}
2321
Avi Kivity6aa8b732006-12-10 02:21:36 -08002322/*
2323 * Sets up the vmcs for emulated real mode.
2324 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002325static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002326{
Sheng Yang468d4722008-10-09 16:01:55 +08002327 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002328 u32 junk;
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01002329 u64 host_pat, tsc_this, tsc_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002330 unsigned long a;
2331 struct descriptor_table dt;
2332 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002333 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002334 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002335
Avi Kivity6aa8b732006-12-10 02:21:36 -08002336 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002337 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
2338 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002339
Sheng Yang25c5f222008-03-28 13:18:56 +08002340 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02002341 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08002342
Avi Kivity6aa8b732006-12-10 02:21:36 -08002343 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2344
Avi Kivity6aa8b732006-12-10 02:21:36 -08002345 /* Control */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002346 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2347 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002348
2349 exec_control = vmcs_config.cpu_based_exec_ctrl;
2350 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2351 exec_control &= ~CPU_BASED_TPR_SHADOW;
2352#ifdef CONFIG_X86_64
2353 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2354 CPU_BASED_CR8_LOAD_EXITING;
2355#endif
2356 }
Avi Kivity089d0342009-03-23 18:26:32 +02002357 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002358 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03002359 CPU_BASED_CR3_LOAD_EXITING |
2360 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002361 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002362
Sheng Yang83ff3b92007-11-21 14:33:25 +08002363 if (cpu_has_secondary_exec_ctrls()) {
2364 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2365 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2366 exec_control &=
2367 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002368 if (vmx->vpid == 0)
2369 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang046d8712009-11-27 16:46:26 +08002370 if (!enable_ept) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002371 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang046d8712009-11-27 16:46:26 +08002372 enable_unrestricted_guest = 0;
2373 }
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002374 if (!enable_unrestricted_guest)
2375 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002376 if (!ple_gap)
2377 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002378 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2379 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002380
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002381 if (ple_gap) {
2382 vmcs_write32(PLE_GAP, ple_gap);
2383 vmcs_write32(PLE_WINDOW, ple_window);
2384 }
2385
Avi Kivityc7addb92007-09-16 18:58:32 +02002386 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2387 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002388 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2389
2390 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2391 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2392 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2393
2394 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2395 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2396 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002397 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2398 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002399 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002400#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002401 rdmsrl(MSR_FS_BASE, a);
2402 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2403 rdmsrl(MSR_GS_BASE, a);
2404 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2405#else
2406 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2407 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2408#endif
2409
2410 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2411
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002412 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002413 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2414
Mike Dayd77c26f2007-10-08 09:02:08 -04002415 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002416 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002417 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2418 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2419 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002420
2421 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2422 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2423 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2424 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2425 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2426 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2427
Sheng Yang468d4722008-10-09 16:01:55 +08002428 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2429 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2430 host_pat = msr_low | ((u64) msr_high << 32);
2431 vmcs_write64(HOST_IA32_PAT, host_pat);
2432 }
2433 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2434 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2435 host_pat = msr_low | ((u64) msr_high << 32);
2436 /* Write the default value follow host pat */
2437 vmcs_write64(GUEST_IA32_PAT, host_pat);
2438 /* Keep arch.pat sync with GUEST_IA32_PAT */
2439 vmx->vcpu.arch.pat = host_pat;
2440 }
2441
Avi Kivity6aa8b732006-12-10 02:21:36 -08002442 for (i = 0; i < NR_VMX_MSR; ++i) {
2443 u32 index = vmx_msr_index[i];
2444 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002445 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002446
2447 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2448 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002449 if (wrmsr_safe(index, data_low, data_high) < 0)
2450 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03002451 vmx->guest_msrs[j].index = i;
2452 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02002453 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002454 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002455 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002456
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002457 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002458
2459 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002460 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2461
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002462 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Avi Kivity4c386092009-12-07 12:26:18 +02002463 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
Avi Kivityce03e4f2009-12-07 12:29:14 +02002464 if (enable_ept)
2465 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Avi Kivity4c386092009-12-07 12:26:18 +02002466 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002467
Marcelo Tosatti53f658b32008-12-11 20:45:05 +01002468 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2469 rdtscll(tsc_this);
2470 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2471 tsc_base = tsc_this;
2472
2473 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002474
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002475 return 0;
2476}
2477
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002478static int init_rmode(struct kvm *kvm)
2479{
2480 if (!init_rmode_tss(kvm))
2481 return 0;
2482 if (!init_rmode_identity_map(kvm))
2483 return 0;
2484 return 1;
2485}
2486
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002487static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2488{
2489 struct vcpu_vmx *vmx = to_vmx(vcpu);
2490 u64 msr;
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002491 int ret, idx;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002492
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002493 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002494 idx = srcu_read_lock(&vcpu->kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002495 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002496 ret = -ENOMEM;
2497 goto out;
2498 }
2499
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002500 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002501
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002502 vmx->soft_vnmi_blocked = 0;
2503
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002504 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002505 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002506 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002507 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002508 msr |= MSR_IA32_APICBASE_BSP;
2509 kvm_set_apic_base(&vmx->vcpu, msr);
2510
2511 fx_init(&vmx->vcpu);
2512
Avi Kivity5706be02008-08-20 15:07:31 +03002513 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002514 /*
2515 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2516 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2517 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002518 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002519 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2520 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2521 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002522 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2523 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002524 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002525
2526 seg_setup(VCPU_SREG_DS);
2527 seg_setup(VCPU_SREG_ES);
2528 seg_setup(VCPU_SREG_FS);
2529 seg_setup(VCPU_SREG_GS);
2530 seg_setup(VCPU_SREG_SS);
2531
2532 vmcs_write16(GUEST_TR_SELECTOR, 0);
2533 vmcs_writel(GUEST_TR_BASE, 0);
2534 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2535 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2536
2537 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2538 vmcs_writel(GUEST_LDTR_BASE, 0);
2539 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2540 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2541
2542 vmcs_write32(GUEST_SYSENTER_CS, 0);
2543 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2544 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2545
2546 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002547 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002548 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002549 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002550 kvm_rip_write(vcpu, 0);
2551 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002552
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002553 vmcs_writel(GUEST_DR7, 0x400);
2554
2555 vmcs_writel(GUEST_GDTR_BASE, 0);
2556 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2557
2558 vmcs_writel(GUEST_IDTR_BASE, 0);
2559 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2560
2561 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2562 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2563 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2564
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002565 /* Special registers */
2566 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2567
2568 setup_msrs(vmx);
2569
Avi Kivity6aa8b732006-12-10 02:21:36 -08002570 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2571
Sheng Yangf78e0e22007-10-29 09:40:42 +08002572 if (cpu_has_vmx_tpr_shadow()) {
2573 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2574 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2575 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002576 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002577 vmcs_write32(TPR_THRESHOLD, 0);
2578 }
2579
2580 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2581 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002582 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002583
Sheng Yang2384d2b2008-01-17 15:14:33 +08002584 if (vmx->vpid != 0)
2585 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2586
Eduardo Habkostfa400522009-10-24 02:49:58 -02002587 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Avi Kivity4d4ec082009-12-29 18:07:30 +02002588 vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002589 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002590 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002591 vmx_fpu_activate(&vmx->vcpu);
2592 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002593
Sheng Yang2384d2b2008-01-17 15:14:33 +08002594 vpid_sync_vcpu_all(vmx);
2595
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002596 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002597
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002598 /* HACK: Don't enable emulation on guest boot/reset */
2599 vmx->emulation_required = 0;
2600
Avi Kivity6aa8b732006-12-10 02:21:36 -08002601out:
Marcelo Tosattif656ce02009-12-23 14:35:25 -02002602 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002603 return ret;
2604}
2605
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002606static void enable_irq_window(struct kvm_vcpu *vcpu)
2607{
2608 u32 cpu_based_vm_exec_control;
2609
2610 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2611 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2612 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2613}
2614
2615static void enable_nmi_window(struct kvm_vcpu *vcpu)
2616{
2617 u32 cpu_based_vm_exec_control;
2618
2619 if (!cpu_has_virtual_nmis()) {
2620 enable_irq_window(vcpu);
2621 return;
2622 }
2623
2624 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2625 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2626 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2627}
2628
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002629static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03002630{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002631 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002632 uint32_t intr;
2633 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02002634
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002635 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002636
Avi Kivityfa89a812008-09-01 15:57:51 +03002637 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002638 if (vmx->rmode.vm86_active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002639 vmx->rmode.irq.pending = true;
2640 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002641 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +03002642 if (vcpu->arch.interrupt.soft)
2643 vmx->rmode.irq.rip +=
2644 vmx->vcpu.arch.event_exit_inst_len;
Avi Kivity9c5623e2007-11-08 18:19:20 +02002645 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2646 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2647 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002648 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002649 return;
2650 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002651 intr = irq | INTR_INFO_VALID_MASK;
2652 if (vcpu->arch.interrupt.soft) {
2653 intr |= INTR_TYPE_SOFT_INTR;
2654 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2655 vmx->vcpu.arch.event_exit_inst_len);
2656 } else
2657 intr |= INTR_TYPE_EXT_INTR;
2658 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03002659}
2660
Sheng Yangf08864b2008-05-15 18:23:25 +08002661static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2662{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002663 struct vcpu_vmx *vmx = to_vmx(vcpu);
2664
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002665 if (!cpu_has_virtual_nmis()) {
2666 /*
2667 * Tracking the NMI-blocked state in software is built upon
2668 * finding the next open IRQ window. This, in turn, depends on
2669 * well-behaving guests: They have to keep IRQs disabled at
2670 * least as long as the NMI handler runs. Otherwise we may
2671 * cause NMI nesting, maybe breaking the guest. But as this is
2672 * highly unlikely, we can live with the residual risk.
2673 */
2674 vmx->soft_vnmi_blocked = 1;
2675 vmx->vnmi_blocked_time = 0;
2676 }
2677
Jan Kiszka487b3912008-09-26 09:30:56 +02002678 ++vcpu->stat.nmi_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002679 if (vmx->rmode.vm86_active) {
Jan Kiszka66a5a342008-09-26 09:30:51 +02002680 vmx->rmode.irq.pending = true;
2681 vmx->rmode.irq.vector = NMI_VECTOR;
2682 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2683 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2684 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2685 INTR_INFO_VALID_MASK);
2686 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2687 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2688 return;
2689 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002690 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2691 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002692}
2693
Gleb Natapovc4282df2009-04-21 17:45:07 +03002694static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02002695{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002696 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03002697 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002698
Gleb Natapovc4282df2009-04-21 17:45:07 +03002699 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2700 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS |
2701 GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02002702}
2703
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002704static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
2705{
2706 if (!cpu_has_virtual_nmis())
2707 return to_vmx(vcpu)->soft_vnmi_blocked;
2708 else
2709 return !!(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2710 GUEST_INTR_STATE_NMI);
2711}
2712
2713static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
2714{
2715 struct vcpu_vmx *vmx = to_vmx(vcpu);
2716
2717 if (!cpu_has_virtual_nmis()) {
2718 if (vmx->soft_vnmi_blocked != masked) {
2719 vmx->soft_vnmi_blocked = masked;
2720 vmx->vnmi_blocked_time = 0;
2721 }
2722 } else {
2723 if (masked)
2724 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
2725 GUEST_INTR_STATE_NMI);
2726 else
2727 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
2728 GUEST_INTR_STATE_NMI);
2729 }
2730}
2731
Gleb Natapov78646122009-03-23 12:12:11 +02002732static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2733{
Gleb Natapovc4282df2009-04-21 17:45:07 +03002734 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2735 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2736 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02002737}
2738
Izik Eiduscbc94022007-10-25 00:29:55 +02002739static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2740{
2741 int ret;
2742 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002743 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002744 .guest_phys_addr = addr,
2745 .memory_size = PAGE_SIZE * 3,
2746 .flags = 0,
2747 };
2748
2749 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2750 if (ret)
2751 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002752 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002753 return 0;
2754}
2755
Avi Kivity6aa8b732006-12-10 02:21:36 -08002756static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2757 int vec, u32 err_code)
2758{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002759 /*
2760 * Instruction with address size override prefix opcode 0x67
2761 * Cause the #SS fault with 0 error code in VM86 mode.
2762 */
2763 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Avi Kivity851ba692009-08-24 11:10:17 +03002764 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002765 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002766 /*
2767 * Forward all other exceptions that are valid in real mode.
2768 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2769 * the required debugging infrastructure rework.
2770 */
2771 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002772 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002773 if (vcpu->guest_debug &
2774 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2775 return 0;
2776 kvm_queue_exception(vcpu, vec);
2777 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002778 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002779 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2780 return 0;
2781 /* fall through */
2782 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002783 case OF_VECTOR:
2784 case BR_VECTOR:
2785 case UD_VECTOR:
2786 case DF_VECTOR:
2787 case SS_VECTOR:
2788 case GP_VECTOR:
2789 case MF_VECTOR:
2790 kvm_queue_exception(vcpu, vec);
2791 return 1;
2792 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002793 return 0;
2794}
2795
Andi Kleena0861c02009-06-08 17:37:09 +08002796/*
2797 * Trigger machine check on the host. We assume all the MSRs are already set up
2798 * by the CPU and that we still run on the same CPU as the MCE occurred on.
2799 * We pass a fake environment to the machine check handler because we want
2800 * the guest to be always treated like user space, no matter what context
2801 * it used internally.
2802 */
2803static void kvm_machine_check(void)
2804{
2805#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
2806 struct pt_regs regs = {
2807 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
2808 .flags = X86_EFLAGS_IF,
2809 };
2810
2811 do_machine_check(&regs, 0);
2812#endif
2813}
2814
Avi Kivity851ba692009-08-24 11:10:17 +03002815static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08002816{
2817 /* already handled by vcpu_run */
2818 return 1;
2819}
2820
Avi Kivity851ba692009-08-24 11:10:17 +03002821static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002822{
Avi Kivity1155f762007-11-22 11:30:47 +02002823 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002824 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002825 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002826 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002827 u32 vect_info;
2828 enum emulation_result er;
2829
Avi Kivity1155f762007-11-22 11:30:47 +02002830 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002831 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2832
Andi Kleena0861c02009-06-08 17:37:09 +08002833 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03002834 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08002835
Avi Kivity6aa8b732006-12-10 02:21:36 -08002836 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Avi Kivity65ac7262009-11-04 11:59:01 +02002837 !is_page_fault(intr_info)) {
2838 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
2839 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
2840 vcpu->run->internal.ndata = 2;
2841 vcpu->run->internal.data[0] = vect_info;
2842 vcpu->run->internal.data[1] = intr_info;
2843 return 0;
2844 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002845
Jan Kiszkae4a41882008-09-26 09:30:46 +02002846 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002847 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002848
2849 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002850 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002851 return 1;
2852 }
2853
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002854 if (is_invalid_opcode(intr_info)) {
Avi Kivity851ba692009-08-24 11:10:17 +03002855 er = emulate_instruction(vcpu, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002856 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002857 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002858 return 1;
2859 }
2860
Avi Kivity6aa8b732006-12-10 02:21:36 -08002861 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002862 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002863 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002864 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2865 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002866 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02002867 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002868 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002869 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002870 trace_kvm_page_fault(cr2, error_code);
2871
Gleb Natapov3298b752009-05-11 13:35:46 +03002872 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03002873 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002874 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002875 }
2876
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002877 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002878 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002879 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002880 if (vcpu->arch.halt_request) {
2881 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002882 return kvm_emulate_halt(vcpu);
2883 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002884 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002885 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002886
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002887 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002888 switch (ex_no) {
2889 case DB_VECTOR:
2890 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2891 if (!(vcpu->guest_debug &
2892 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2893 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2894 kvm_queue_exception(vcpu, DB_VECTOR);
2895 return 1;
2896 }
2897 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2898 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2899 /* fall through */
2900 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002901 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002902 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2903 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002904 break;
2905 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002906 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2907 kvm_run->ex.exception = ex_no;
2908 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002909 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002910 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002911 return 0;
2912}
2913
Avi Kivity851ba692009-08-24 11:10:17 +03002914static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002915{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002916 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002917 return 1;
2918}
2919
Avi Kivity851ba692009-08-24 11:10:17 +03002920static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08002921{
Avi Kivity851ba692009-08-24 11:10:17 +03002922 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08002923 return 0;
2924}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002925
Avi Kivity851ba692009-08-24 11:10:17 +03002926static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002927{
He, Qingbfdaab02007-09-12 14:18:28 +08002928 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002929 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002930 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002931
Avi Kivity1165f5f2007-04-19 17:27:43 +03002932 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002933 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002934 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002935
2936 if (string) {
Avi Kivity851ba692009-08-24 11:10:17 +03002937 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002938 return 0;
2939 return 1;
2940 }
2941
2942 size = (exit_qualification & 7) + 1;
2943 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002944 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002945
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002946 skip_emulated_instruction(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002947 return kvm_emulate_pio(vcpu, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002948}
2949
Ingo Molnar102d8322007-02-19 14:37:47 +02002950static void
2951vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2952{
2953 /*
2954 * Patch in the VMCALL instruction:
2955 */
2956 hypercall[0] = 0x0f;
2957 hypercall[1] = 0x01;
2958 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002959}
2960
Avi Kivity851ba692009-08-24 11:10:17 +03002961static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002962{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002963 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002964 int cr;
2965 int reg;
2966
He, Qingbfdaab02007-09-12 14:18:28 +08002967 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002968 cr = exit_qualification & 15;
2969 reg = (exit_qualification >> 8) & 15;
2970 switch ((exit_qualification >> 4) & 3) {
2971 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002972 val = kvm_register_read(vcpu, reg);
2973 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002974 switch (cr) {
2975 case 0:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002976 kvm_set_cr0(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002977 skip_emulated_instruction(vcpu);
2978 return 1;
2979 case 3:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002980 kvm_set_cr3(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002981 skip_emulated_instruction(vcpu);
2982 return 1;
2983 case 4:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002984 kvm_set_cr4(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002985 skip_emulated_instruction(vcpu);
2986 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002987 case 8: {
2988 u8 cr8_prev = kvm_get_cr8(vcpu);
2989 u8 cr8 = kvm_register_read(vcpu, reg);
2990 kvm_set_cr8(vcpu, cr8);
2991 skip_emulated_instruction(vcpu);
2992 if (irqchip_in_kernel(vcpu->kvm))
2993 return 1;
2994 if (cr8_prev <= cr8)
2995 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03002996 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002997 return 0;
2998 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002999 };
3000 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03003001 case 2: /* clts */
Avi Kivityedcafe32009-12-30 18:07:40 +02003002 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02003003 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03003004 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02003005 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03003006 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003007 case 1: /*mov from cr*/
3008 switch (cr) {
3009 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003010 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003011 trace_kvm_cr_read(cr, vcpu->arch.cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003012 skip_emulated_instruction(vcpu);
3013 return 1;
3014 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003015 val = kvm_get_cr8(vcpu);
3016 kvm_register_write(vcpu, reg, val);
3017 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003018 skip_emulated_instruction(vcpu);
3019 return 1;
3020 }
3021 break;
3022 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02003023 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02003024 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02003025 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003026
3027 skip_emulated_instruction(vcpu);
3028 return 1;
3029 default:
3030 break;
3031 }
Avi Kivity851ba692009-08-24 11:10:17 +03003032 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10003033 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08003034 (int)(exit_qualification >> 4) & 3, cr);
3035 return 0;
3036}
3037
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003038static int check_dr_alias(struct kvm_vcpu *vcpu)
3039{
3040 if (kvm_read_cr4_bits(vcpu, X86_CR4_DE)) {
3041 kvm_queue_exception(vcpu, UD_VECTOR);
3042 return -1;
3043 }
3044 return 0;
3045}
3046
Avi Kivity851ba692009-08-24 11:10:17 +03003047static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003048{
He, Qingbfdaab02007-09-12 14:18:28 +08003049 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003050 unsigned long val;
3051 int dr, reg;
3052
Jan Kiszkaf2483412010-01-20 18:20:20 +01003053 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03003054 if (!kvm_require_cpl(vcpu, 0))
3055 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003056 dr = vmcs_readl(GUEST_DR7);
3057 if (dr & DR7_GD) {
3058 /*
3059 * As the vm-exit takes precedence over the debug trap, we
3060 * need to emulate the latter, either for the host or the
3061 * guest debugging itself.
3062 */
3063 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03003064 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
3065 vcpu->run->debug.arch.dr7 = dr;
3066 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003067 vmcs_readl(GUEST_CS_BASE) +
3068 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03003069 vcpu->run->debug.arch.exception = DB_VECTOR;
3070 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003071 return 0;
3072 } else {
3073 vcpu->arch.dr7 &= ~DR7_GD;
3074 vcpu->arch.dr6 |= DR6_BD;
3075 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3076 kvm_queue_exception(vcpu, DB_VECTOR);
3077 return 1;
3078 }
3079 }
3080
He, Qingbfdaab02007-09-12 14:18:28 +08003081 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003082 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
3083 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
3084 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003085 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003086 case 0 ... 3:
3087 val = vcpu->arch.db[dr];
3088 break;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003089 case 4:
3090 if (check_dr_alias(vcpu) < 0)
3091 return 1;
3092 /* fall through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003093 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003094 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003095 break;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003096 case 5:
3097 if (check_dr_alias(vcpu) < 0)
3098 return 1;
3099 /* fall through */
3100 default: /* 7 */
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003101 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003102 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003103 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003104 kvm_register_write(vcpu, reg, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003105 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003106 val = vcpu->arch.regs[reg];
3107 switch (dr) {
3108 case 0 ... 3:
3109 vcpu->arch.db[dr] = val;
3110 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
3111 vcpu->arch.eff_db[dr] = val;
3112 break;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003113 case 4:
3114 if (check_dr_alias(vcpu) < 0)
Jan Kiszkaf2483412010-01-20 18:20:20 +01003115 return 1;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003116 /* fall through */
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003117 case 6:
3118 if (val & 0xffffffff00000000ULL) {
Jan Kiszkaf2483412010-01-20 18:20:20 +01003119 kvm_inject_gp(vcpu, 0);
3120 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003121 }
3122 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
3123 break;
Jan Kiszka138ac8d2010-01-20 18:20:20 +01003124 case 5:
3125 if (check_dr_alias(vcpu) < 0)
3126 return 1;
3127 /* fall through */
3128 default: /* 7 */
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003129 if (val & 0xffffffff00000000ULL) {
Jan Kiszkaf2483412010-01-20 18:20:20 +01003130 kvm_inject_gp(vcpu, 0);
3131 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003132 }
3133 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
3134 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
3135 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3136 vcpu->arch.switch_db_regs =
3137 (val & DR7_BP_EN_MASK);
3138 }
3139 break;
3140 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003141 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003142 skip_emulated_instruction(vcpu);
3143 return 1;
3144}
3145
Avi Kivity851ba692009-08-24 11:10:17 +03003146static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003147{
Avi Kivity06465c52007-02-28 20:46:53 +02003148 kvm_emulate_cpuid(vcpu);
3149 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003150}
3151
Avi Kivity851ba692009-08-24 11:10:17 +03003152static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003153{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003154 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08003155 u64 data;
3156
3157 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003158 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003159 return 1;
3160 }
3161
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003162 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003163
Avi Kivity6aa8b732006-12-10 02:21:36 -08003164 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003165 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
3166 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003167 skip_emulated_instruction(vcpu);
3168 return 1;
3169}
3170
Avi Kivity851ba692009-08-24 11:10:17 +03003171static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003172{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003173 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
3174 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
3175 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003176
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003177 trace_kvm_msr_write(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003178
Avi Kivity6aa8b732006-12-10 02:21:36 -08003179 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003180 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003181 return 1;
3182 }
3183
3184 skip_emulated_instruction(vcpu);
3185 return 1;
3186}
3187
Avi Kivity851ba692009-08-24 11:10:17 +03003188static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003189{
3190 return 1;
3191}
3192
Avi Kivity851ba692009-08-24 11:10:17 +03003193static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003194{
Eddie Dong85f455f2007-07-06 12:20:49 +03003195 u32 cpu_based_vm_exec_control;
3196
3197 /* clear pending irq */
3198 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3199 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
3200 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003201
Jan Kiszkaa26bf122008-09-26 09:30:45 +02003202 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003203
Dor Laorc1150d82007-01-05 16:36:24 -08003204 /*
3205 * If the user space waits to inject interrupts, exit as soon as
3206 * possible
3207 */
Gleb Natapov80618232009-04-21 17:44:56 +03003208 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03003209 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03003210 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003211 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08003212 return 0;
3213 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003214 return 1;
3215}
3216
Avi Kivity851ba692009-08-24 11:10:17 +03003217static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003218{
3219 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003220 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003221}
3222
Avi Kivity851ba692009-08-24 11:10:17 +03003223static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02003224{
Dor Laor510043d2007-02-19 18:25:43 +02003225 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003226 kvm_emulate_hypercall(vcpu);
3227 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003228}
3229
Avi Kivity851ba692009-08-24 11:10:17 +03003230static int handle_vmx_insn(struct kvm_vcpu *vcpu)
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003231{
3232 kvm_queue_exception(vcpu, UD_VECTOR);
3233 return 1;
3234}
3235
Avi Kivity851ba692009-08-24 11:10:17 +03003236static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003237{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003238 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003239
3240 kvm_mmu_invlpg(vcpu, exit_qualification);
3241 skip_emulated_instruction(vcpu);
3242 return 1;
3243}
3244
Avi Kivity851ba692009-08-24 11:10:17 +03003245static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02003246{
3247 skip_emulated_instruction(vcpu);
3248 /* TODO: Add support for VT-d/pass-through device */
3249 return 1;
3250}
3251
Avi Kivity851ba692009-08-24 11:10:17 +03003252static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003253{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003254 unsigned long exit_qualification;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003255 enum emulation_result er;
3256 unsigned long offset;
3257
Sheng Yangf9c617f2009-03-25 10:08:52 +08003258 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003259 offset = exit_qualification & 0xffful;
3260
Avi Kivity851ba692009-08-24 11:10:17 +03003261 er = emulate_instruction(vcpu, 0, 0, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003262
3263 if (er != EMULATE_DONE) {
3264 printk(KERN_ERR
3265 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3266 offset);
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003267 return -ENOEXEC;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003268 }
3269 return 1;
3270}
3271
Avi Kivity851ba692009-08-24 11:10:17 +03003272static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02003273{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003274 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003275 unsigned long exit_qualification;
3276 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003277 int reason, type, idt_v;
3278
3279 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
3280 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02003281
3282 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3283
3284 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003285 if (reason == TASK_SWITCH_GATE && idt_v) {
3286 switch (type) {
3287 case INTR_TYPE_NMI_INTR:
3288 vcpu->arch.nmi_injected = false;
3289 if (cpu_has_virtual_nmis())
3290 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3291 GUEST_INTR_STATE_NMI);
3292 break;
3293 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003294 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003295 kvm_clear_interrupt_queue(vcpu);
3296 break;
3297 case INTR_TYPE_HARD_EXCEPTION:
3298 case INTR_TYPE_SOFT_EXCEPTION:
3299 kvm_clear_exception_queue(vcpu);
3300 break;
3301 default:
3302 break;
3303 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02003304 }
Izik Eidus37817f22008-03-24 23:14:53 +02003305 tss_selector = exit_qualification;
3306
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003307 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
3308 type != INTR_TYPE_EXT_INTR &&
3309 type != INTR_TYPE_NMI_INTR))
3310 skip_emulated_instruction(vcpu);
3311
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003312 if (!kvm_task_switch(vcpu, tss_selector, reason))
3313 return 0;
3314
3315 /* clear all local breakpoint enable flags */
3316 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3317
3318 /*
3319 * TODO: What about debug traps on tss switch?
3320 * Are we supposed to inject them and update dr6?
3321 */
3322
3323 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003324}
3325
Avi Kivity851ba692009-08-24 11:10:17 +03003326static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08003327{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003328 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003329 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003330 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003331
Sheng Yangf9c617f2009-03-25 10:08:52 +08003332 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08003333
3334 if (exit_qualification & (1 << 6)) {
3335 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003336 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08003337 }
3338
3339 gla_validity = (exit_qualification >> 7) & 0x3;
3340 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3341 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3342 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3343 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08003344 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08003345 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3346 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03003347 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3348 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03003349 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08003350 }
3351
3352 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003353 trace_kvm_page_fault(gpa, exit_qualification);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003354 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003355}
3356
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003357static u64 ept_rsvd_mask(u64 spte, int level)
3358{
3359 int i;
3360 u64 mask = 0;
3361
3362 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
3363 mask |= (1ULL << i);
3364
3365 if (level > 2)
3366 /* bits 7:3 reserved */
3367 mask |= 0xf8;
3368 else if (level == 2) {
3369 if (spte & (1ULL << 7))
3370 /* 2MB ref, bits 20:12 reserved */
3371 mask |= 0x1ff000;
3372 else
3373 /* bits 6:3 reserved */
3374 mask |= 0x78;
3375 }
3376
3377 return mask;
3378}
3379
3380static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
3381 int level)
3382{
3383 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
3384
3385 /* 010b (write-only) */
3386 WARN_ON((spte & 0x7) == 0x2);
3387
3388 /* 110b (write/execute) */
3389 WARN_ON((spte & 0x7) == 0x6);
3390
3391 /* 100b (execute-only) and value not supported by logical processor */
3392 if (!cpu_has_vmx_ept_execute_only())
3393 WARN_ON((spte & 0x7) == 0x4);
3394
3395 /* not 000b */
3396 if ((spte & 0x7)) {
3397 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
3398
3399 if (rsvd_bits != 0) {
3400 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
3401 __func__, rsvd_bits);
3402 WARN_ON(1);
3403 }
3404
3405 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
3406 u64 ept_mem_type = (spte & 0x38) >> 3;
3407
3408 if (ept_mem_type == 2 || ept_mem_type == 3 ||
3409 ept_mem_type == 7) {
3410 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
3411 __func__, ept_mem_type);
3412 WARN_ON(1);
3413 }
3414 }
3415 }
3416}
3417
Avi Kivity851ba692009-08-24 11:10:17 +03003418static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003419{
3420 u64 sptes[4];
3421 int nr_sptes, i;
3422 gpa_t gpa;
3423
3424 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
3425
3426 printk(KERN_ERR "EPT: Misconfiguration.\n");
3427 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
3428
3429 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
3430
3431 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
3432 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
3433
Avi Kivity851ba692009-08-24 11:10:17 +03003434 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3435 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003436
3437 return 0;
3438}
3439
Avi Kivity851ba692009-08-24 11:10:17 +03003440static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08003441{
3442 u32 cpu_based_vm_exec_control;
3443
3444 /* clear pending NMI */
3445 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3446 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3447 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3448 ++vcpu->stat.nmi_window_exits;
3449
3450 return 1;
3451}
3452
Mohammed Gamal80ced182009-09-01 12:48:18 +02003453static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003454{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003455 struct vcpu_vmx *vmx = to_vmx(vcpu);
3456 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003457 int ret = 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003458
3459 while (!guest_state_valid(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003460 err = emulate_instruction(vcpu, 0, 0, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003461
Mohammed Gamal80ced182009-09-01 12:48:18 +02003462 if (err == EMULATE_DO_MMIO) {
3463 ret = 0;
3464 goto out;
3465 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003466
3467 if (err != EMULATE_DONE) {
Mohammed Gamal80ced182009-09-01 12:48:18 +02003468 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3469 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
Avi Kivitya9c73992009-11-04 11:54:59 +02003470 vcpu->run->internal.ndata = 0;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003471 ret = 0;
3472 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003473 }
3474
3475 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02003476 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003477 if (need_resched())
3478 schedule();
3479 }
3480
Mohammed Gamal80ced182009-09-01 12:48:18 +02003481 vmx->emulation_required = 0;
3482out:
3483 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003484}
3485
Avi Kivity6aa8b732006-12-10 02:21:36 -08003486/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003487 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
3488 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
3489 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03003490static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003491{
3492 skip_emulated_instruction(vcpu);
3493 kvm_vcpu_on_spin(vcpu);
3494
3495 return 1;
3496}
3497
Sheng Yang59708672009-12-15 13:29:54 +08003498static int handle_invalid_op(struct kvm_vcpu *vcpu)
3499{
3500 kvm_queue_exception(vcpu, UD_VECTOR);
3501 return 1;
3502}
3503
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003504/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003505 * The exit handlers return 1 if the exit was handled fully and guest execution
3506 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3507 * to be done to userspace and return 0.
3508 */
Avi Kivity851ba692009-08-24 11:10:17 +03003509static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003510 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3511 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003512 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003513 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003514 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003515 [EXIT_REASON_CR_ACCESS] = handle_cr,
3516 [EXIT_REASON_DR_ACCESS] = handle_dr,
3517 [EXIT_REASON_CPUID] = handle_cpuid,
3518 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3519 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3520 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3521 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003522 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003523 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003524 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
3525 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
3526 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
3527 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
3528 [EXIT_REASON_VMREAD] = handle_vmx_insn,
3529 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
3530 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
3531 [EXIT_REASON_VMOFF] = handle_vmx_insn,
3532 [EXIT_REASON_VMON] = handle_vmx_insn,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003533 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3534 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003535 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003536 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08003537 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003538 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
3539 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003540 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sheng Yang59708672009-12-15 13:29:54 +08003541 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_invalid_op,
3542 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_invalid_op,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003543};
3544
3545static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003546 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003547
3548/*
3549 * The guest has exited. See if we can fix it or if we need userspace
3550 * assistance.
3551 */
Avi Kivity851ba692009-08-24 11:10:17 +03003552static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003553{
Avi Kivity29bd8a72007-09-10 17:27:03 +03003554 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003555 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02003556 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003557
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003558 trace_kvm_exit(exit_reason, kvm_rip_read(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003559
Mohammed Gamal80ced182009-09-01 12:48:18 +02003560 /* If guest state is invalid, start emulating */
3561 if (vmx->emulation_required && emulate_invalid_guest_state)
3562 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003563
Sheng Yang14394422008-04-28 12:24:45 +08003564 /* Access CR3 don't cause VMExit in paging mode, so we need
3565 * to sync with guest real CR3. */
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003566 if (enable_ept && is_paging(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003567 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003568
Avi Kivity29bd8a72007-09-10 17:27:03 +03003569 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003570 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3571 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03003572 = vmcs_read32(VM_INSTRUCTION_ERROR);
3573 return 0;
3574 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003575
Mike Dayd77c26f2007-10-08 09:02:08 -04003576 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003577 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003578 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3579 exit_reason != EXIT_REASON_TASK_SWITCH))
3580 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3581 "(0x%x) and exit reason is 0x%x\n",
3582 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003583
3584 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03003585 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003586 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003587 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003588 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003589 /*
3590 * This CPU don't support us in finding the end of an
3591 * NMI-blocked window if the guest runs with IRQs
3592 * disabled. So we pull the trigger after 1 s of
3593 * futile waiting, but inform the user about this.
3594 */
3595 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3596 "state on VCPU %d after 1 s timeout\n",
3597 __func__, vcpu->vcpu_id);
3598 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003599 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003600 }
3601
Avi Kivity6aa8b732006-12-10 02:21:36 -08003602 if (exit_reason < kvm_vmx_max_exit_handlers
3603 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03003604 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003605 else {
Avi Kivity851ba692009-08-24 11:10:17 +03003606 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3607 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003608 }
3609 return 0;
3610}
3611
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003612static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003613{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003614 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003615 vmcs_write32(TPR_THRESHOLD, 0);
3616 return;
3617 }
3618
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003619 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003620}
3621
Avi Kivitycf393f72008-07-01 16:20:21 +03003622static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3623{
3624 u32 exit_intr_info;
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003625 u32 idt_vectoring_info = vmx->idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003626 bool unblock_nmi;
3627 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003628 int type;
3629 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03003630
3631 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Gleb Natapov20f65982009-05-11 13:35:55 +03003632
Andi Kleena0861c02009-06-08 17:37:09 +08003633 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
3634
3635 /* Handle machine checks before interrupts are enabled */
3636 if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
3637 || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
3638 && is_machine_check(exit_intr_info)))
3639 kvm_machine_check();
3640
Gleb Natapov20f65982009-05-11 13:35:55 +03003641 /* We need to handle NMIs before interrupts are enabled */
3642 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003643 (exit_intr_info & INTR_INFO_VALID_MASK))
Gleb Natapov20f65982009-05-11 13:35:55 +03003644 asm("int $2");
Gleb Natapov20f65982009-05-11 13:35:55 +03003645
3646 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3647
Avi Kivitycf393f72008-07-01 16:20:21 +03003648 if (cpu_has_virtual_nmis()) {
3649 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3650 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3651 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003652 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03003653 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3654 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003655 * SDM 3: 23.2.2 (September 2008)
3656 * Bit 12 is undefined in any of the following cases:
3657 * If the VM exit sets the valid bit in the IDT-vectoring
3658 * information field.
3659 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03003660 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003661 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
3662 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03003663 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3664 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003665 } else if (unlikely(vmx->soft_vnmi_blocked))
3666 vmx->vnmi_blocked_time +=
3667 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003668
Gleb Natapov37b96e92009-03-30 16:03:13 +03003669 vmx->vcpu.arch.nmi_injected = false;
3670 kvm_clear_exception_queue(&vmx->vcpu);
3671 kvm_clear_interrupt_queue(&vmx->vcpu);
3672
3673 if (!idtv_info_valid)
3674 return;
3675
Avi Kivity668f6122008-07-02 09:28:55 +03003676 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3677 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003678
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003679 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003680 case INTR_TYPE_NMI_INTR:
3681 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03003682 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003683 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03003684 * Clear bit "block by NMI" before VM entry if a NMI
3685 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03003686 */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003687 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3688 GUEST_INTR_STATE_NMI);
3689 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003690 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003691 vmx->vcpu.arch.event_exit_inst_len =
3692 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3693 /* fall through */
3694 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03003695 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003696 u32 err = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3697 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03003698 } else
3699 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003700 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003701 case INTR_TYPE_SOFT_INTR:
3702 vmx->vcpu.arch.event_exit_inst_len =
3703 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3704 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003705 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003706 kvm_queue_interrupt(&vmx->vcpu, vector,
3707 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003708 break;
3709 default:
3710 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03003711 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003712}
3713
Avi Kivity9c8cba32007-11-22 11:42:59 +02003714/*
3715 * Failure to inject an interrupt should give us the information
3716 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3717 * when fetching the interrupt redirection bitmap in the real-mode
3718 * tss, this doesn't happen. So we do it ourselves.
3719 */
3720static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3721{
3722 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003723 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003724 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003725 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003726 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3727 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3728 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3729 return;
3730 }
3731 vmx->idt_vectoring_info =
3732 VECTORING_INFO_VALID_MASK
3733 | INTR_TYPE_EXT_INTR
3734 | vmx->rmode.irq.vector;
3735}
3736
Avi Kivityc8019492008-07-14 14:44:59 +03003737#ifdef CONFIG_X86_64
3738#define R "r"
3739#define Q "q"
3740#else
3741#define R "e"
3742#define Q "l"
3743#endif
3744
Avi Kivity851ba692009-08-24 11:10:17 +03003745static void vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003746{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003747 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03003748
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003749 /* Record the guest's net vcpu time for enforced NMI injections. */
3750 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3751 vmx->entry_time = ktime_get();
3752
Mohammed Gamal80ced182009-09-01 12:48:18 +02003753 /* Don't enter VMX if guest state is invalid, let the exit handler
3754 start emulation until we arrive back to a valid state */
3755 if (vmx->emulation_required && emulate_invalid_guest_state)
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003756 return;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003757
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003758 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3759 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3760 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3761 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3762
Gleb Natapov787ff732009-05-18 11:44:06 +03003763 /* When single-stepping over STI and MOV SS, we must clear the
3764 * corresponding interruptibility bits in the guest state. Otherwise
3765 * vmentry fails as it then expects bit 14 (BS) in pending debug
3766 * exceptions being set, but that's not correct for the guest debugging
3767 * case. */
3768 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3769 vmx_set_interrupt_shadow(vcpu, 0);
3770
Avi Kivitye6adf282007-04-30 16:07:54 +03003771 /*
3772 * Loading guest fpu may have cleared host cr0.ts
3773 */
3774 vmcs_writel(HOST_CR0, read_cr0());
3775
Mike Dayd77c26f2007-10-08 09:02:08 -04003776 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003777 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003778 "push %%"R"dx; push %%"R"bp;"
3779 "push %%"R"cx \n\t"
Avi Kivity313dbd492008-07-17 18:04:30 +03003780 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3781 "je 1f \n\t"
3782 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003783 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd492008-07-17 18:04:30 +03003784 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03003785 /* Reload cr2 if changed */
3786 "mov %c[cr2](%0), %%"R"ax \n\t"
3787 "mov %%cr2, %%"R"dx \n\t"
3788 "cmp %%"R"ax, %%"R"dx \n\t"
3789 "je 2f \n\t"
3790 "mov %%"R"ax, %%cr2 \n\t"
3791 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003792 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003793 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003794 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003795 "mov %c[rax](%0), %%"R"ax \n\t"
3796 "mov %c[rbx](%0), %%"R"bx \n\t"
3797 "mov %c[rdx](%0), %%"R"dx \n\t"
3798 "mov %c[rsi](%0), %%"R"si \n\t"
3799 "mov %c[rdi](%0), %%"R"di \n\t"
3800 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003801#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003802 "mov %c[r8](%0), %%r8 \n\t"
3803 "mov %c[r9](%0), %%r9 \n\t"
3804 "mov %c[r10](%0), %%r10 \n\t"
3805 "mov %c[r11](%0), %%r11 \n\t"
3806 "mov %c[r12](%0), %%r12 \n\t"
3807 "mov %c[r13](%0), %%r13 \n\t"
3808 "mov %c[r14](%0), %%r14 \n\t"
3809 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003810#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003811 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3812
Avi Kivity6aa8b732006-12-10 02:21:36 -08003813 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003814 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003815 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003816 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003817 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003818 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003819 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003820 "xchg %0, (%%"R"sp) \n\t"
3821 "mov %%"R"ax, %c[rax](%0) \n\t"
3822 "mov %%"R"bx, %c[rbx](%0) \n\t"
3823 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3824 "mov %%"R"dx, %c[rdx](%0) \n\t"
3825 "mov %%"R"si, %c[rsi](%0) \n\t"
3826 "mov %%"R"di, %c[rdi](%0) \n\t"
3827 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003828#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003829 "mov %%r8, %c[r8](%0) \n\t"
3830 "mov %%r9, %c[r9](%0) \n\t"
3831 "mov %%r10, %c[r10](%0) \n\t"
3832 "mov %%r11, %c[r11](%0) \n\t"
3833 "mov %%r12, %c[r12](%0) \n\t"
3834 "mov %%r13, %c[r13](%0) \n\t"
3835 "mov %%r14, %c[r14](%0) \n\t"
3836 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003837#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003838 "mov %%cr2, %%"R"ax \n\t"
3839 "mov %%"R"ax, %c[cr2](%0) \n\t"
3840
3841 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003842 "setbe %c[fail](%0) \n\t"
3843 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3844 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3845 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd492008-07-17 18:04:30 +03003846 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003847 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3848 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3849 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3850 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3851 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3852 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3853 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003854#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003855 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3856 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3857 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3858 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3859 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3860 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3861 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3862 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003863#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003864 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003865 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003866 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003867#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003868 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3869#endif
3870 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003871
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003872 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
3873 | (1 << VCPU_EXREG_PDPTR));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003874 vcpu->arch.regs_dirty = 0;
3875
Avi Kivity1155f762007-11-22 11:30:47 +02003876 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003877 if (vmx->rmode.irq.pending)
3878 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003879
Mike Dayd77c26f2007-10-08 09:02:08 -04003880 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003881 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003882
Avi Kivitycf393f72008-07-01 16:20:21 +03003883 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003884}
3885
Avi Kivityc8019492008-07-14 14:44:59 +03003886#undef R
3887#undef Q
3888
Avi Kivity6aa8b732006-12-10 02:21:36 -08003889static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3890{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003891 struct vcpu_vmx *vmx = to_vmx(vcpu);
3892
3893 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003894 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003895 free_vmcs(vmx->vmcs);
3896 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003897 }
3898}
3899
3900static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3901{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003902 struct vcpu_vmx *vmx = to_vmx(vcpu);
3903
Sheng Yang2384d2b2008-01-17 15:14:33 +08003904 spin_lock(&vmx_vpid_lock);
3905 if (vmx->vpid != 0)
3906 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3907 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003908 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003909 kfree(vmx->guest_msrs);
3910 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003911 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003912}
3913
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003914static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003915{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003916 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003917 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003918 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003919
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003920 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003921 return ERR_PTR(-ENOMEM);
3922
Sheng Yang2384d2b2008-01-17 15:14:33 +08003923 allocate_vpid(vmx);
3924
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003925 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3926 if (err)
3927 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003928
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003929 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003930 if (!vmx->guest_msrs) {
3931 err = -ENOMEM;
3932 goto uninit_vcpu;
3933 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003934
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003935 vmx->vmcs = alloc_vmcs();
3936 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003937 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003938
3939 vmcs_clear(vmx->vmcs);
3940
Avi Kivity15ad7142007-07-11 18:17:21 +03003941 cpu = get_cpu();
3942 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003943 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003944 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003945 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003946 if (err)
3947 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003948 if (vm_need_virtualize_apic_accesses(kvm))
3949 if (alloc_apic_access_page(kvm) != 0)
3950 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003951
Sheng Yangb927a3c2009-07-21 10:42:48 +08003952 if (enable_ept) {
3953 if (!kvm->arch.ept_identity_map_addr)
3954 kvm->arch.ept_identity_map_addr =
3955 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003956 if (alloc_identity_pagetable(kvm) != 0)
3957 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003958 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003959
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003960 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003961
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003962free_vmcs:
3963 free_vmcs(vmx->vmcs);
3964free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003965 kfree(vmx->guest_msrs);
3966uninit_vcpu:
3967 kvm_vcpu_uninit(&vmx->vcpu);
3968free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003969 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003970 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003971}
3972
Yang, Sheng002c7f72007-07-31 14:23:01 +03003973static void __init vmx_check_processor_compat(void *rtn)
3974{
3975 struct vmcs_config vmcs_conf;
3976
3977 *(int *)rtn = 0;
3978 if (setup_vmcs_config(&vmcs_conf) < 0)
3979 *(int *)rtn = -EIO;
3980 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3981 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3982 smp_processor_id());
3983 *(int *)rtn = -EIO;
3984 }
3985}
3986
Sheng Yang67253af2008-04-25 10:20:22 +08003987static int get_ept_level(void)
3988{
3989 return VMX_EPT_DEFAULT_GAW + 1;
3990}
3991
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003992static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08003993{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003994 u64 ret;
3995
Sheng Yang522c68c2009-04-27 20:35:43 +08003996 /* For VT-d and EPT combination
3997 * 1. MMIO: always map as UC
3998 * 2. EPT with VT-d:
3999 * a. VT-d without snooping control feature: can't guarantee the
4000 * result, try to trust guest.
4001 * b. VT-d with snooping control feature: snooping control feature of
4002 * VT-d engine can guarantee the cache correctness. Just set it
4003 * to WB to keep consistent with host. So the same as item 3.
4004 * 3. EPT without VT-d: always map as WB and set IGMT=1 to keep
4005 * consistent with host MTRR
4006 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004007 if (is_mmio)
4008 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08004009 else if (vcpu->kvm->arch.iommu_domain &&
4010 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
4011 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
4012 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004013 else
Sheng Yang522c68c2009-04-27 20:35:43 +08004014 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
4015 | VMX_EPT_IGMT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004016
4017 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08004018}
4019
Avi Kivityf4c9e872009-12-28 16:06:35 +02004020#define _ER(x) { EXIT_REASON_##x, #x }
4021
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004022static const struct trace_print_flags vmx_exit_reasons_str[] = {
Avi Kivityf4c9e872009-12-28 16:06:35 +02004023 _ER(EXCEPTION_NMI),
4024 _ER(EXTERNAL_INTERRUPT),
4025 _ER(TRIPLE_FAULT),
4026 _ER(PENDING_INTERRUPT),
4027 _ER(NMI_WINDOW),
4028 _ER(TASK_SWITCH),
4029 _ER(CPUID),
4030 _ER(HLT),
4031 _ER(INVLPG),
4032 _ER(RDPMC),
4033 _ER(RDTSC),
4034 _ER(VMCALL),
4035 _ER(VMCLEAR),
4036 _ER(VMLAUNCH),
4037 _ER(VMPTRLD),
4038 _ER(VMPTRST),
4039 _ER(VMREAD),
4040 _ER(VMRESUME),
4041 _ER(VMWRITE),
4042 _ER(VMOFF),
4043 _ER(VMON),
4044 _ER(CR_ACCESS),
4045 _ER(DR_ACCESS),
4046 _ER(IO_INSTRUCTION),
4047 _ER(MSR_READ),
4048 _ER(MSR_WRITE),
4049 _ER(MWAIT_INSTRUCTION),
4050 _ER(MONITOR_INSTRUCTION),
4051 _ER(PAUSE_INSTRUCTION),
4052 _ER(MCE_DURING_VMENTRY),
4053 _ER(TPR_BELOW_THRESHOLD),
4054 _ER(APIC_ACCESS),
4055 _ER(EPT_VIOLATION),
4056 _ER(EPT_MISCONFIG),
4057 _ER(WBINVD),
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004058 { -1, NULL }
4059};
4060
Avi Kivityf4c9e872009-12-28 16:06:35 +02004061#undef _ER
4062
Sheng Yang17cc3932010-01-05 19:02:27 +08004063static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02004064{
Sheng Yang878403b2010-01-05 19:02:29 +08004065 if (enable_ept && !cpu_has_vmx_ept_1g_page())
4066 return PT_DIRECTORY_LEVEL;
4067 else
4068 /* For shadow and EPT supported 1GB page */
4069 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02004070}
4071
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004072static inline u32 bit(int bitno)
4073{
4074 return 1 << (bitno & 31);
4075}
4076
Sheng Yang0e851882009-12-18 16:48:46 +08004077static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
4078{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004079 struct kvm_cpuid_entry2 *best;
4080 struct vcpu_vmx *vmx = to_vmx(vcpu);
4081 u32 exec_control;
4082
4083 vmx->rdtscp_enabled = false;
4084 if (vmx_rdtscp_supported()) {
4085 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
4086 if (exec_control & SECONDARY_EXEC_RDTSCP) {
4087 best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
4088 if (best && (best->edx & bit(X86_FEATURE_RDTSCP)))
4089 vmx->rdtscp_enabled = true;
4090 else {
4091 exec_control &= ~SECONDARY_EXEC_RDTSCP;
4092 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
4093 exec_control);
4094 }
4095 }
4096 }
Sheng Yang0e851882009-12-18 16:48:46 +08004097}
4098
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03004099static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004100 .cpu_has_kvm_support = cpu_has_kvm_support,
4101 .disabled_by_bios = vmx_disabled_by_bios,
4102 .hardware_setup = hardware_setup,
4103 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03004104 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004105 .hardware_enable = hardware_enable,
4106 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08004107 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004108
4109 .vcpu_create = vmx_create_vcpu,
4110 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03004111 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004112
Avi Kivity04d2cc72007-09-10 18:10:54 +03004113 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004114 .vcpu_load = vmx_vcpu_load,
4115 .vcpu_put = vmx_vcpu_put,
4116
4117 .set_guest_debug = set_guest_debug,
4118 .get_msr = vmx_get_msr,
4119 .set_msr = vmx_set_msr,
4120 .get_segment_base = vmx_get_segment_base,
4121 .get_segment = vmx_get_segment,
4122 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02004123 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004124 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02004125 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03004126 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004127 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004128 .set_cr3 = vmx_set_cr3,
4129 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004130 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004131 .get_idt = vmx_get_idt,
4132 .set_idt = vmx_set_idt,
4133 .get_gdt = vmx_get_gdt,
4134 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004135 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004136 .get_rflags = vmx_get_rflags,
4137 .set_rflags = vmx_set_rflags,
Avi Kivity02daab22009-12-30 12:40:26 +02004138 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004139
4140 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004141
Avi Kivity6aa8b732006-12-10 02:21:36 -08004142 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02004143 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004144 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04004145 .set_interrupt_shadow = vmx_set_interrupt_shadow,
4146 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02004147 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03004148 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004149 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02004150 .queue_exception = vmx_queue_exception,
Gleb Natapov78646122009-03-23 12:12:11 +02004151 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004152 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004153 .get_nmi_mask = vmx_get_nmi_mask,
4154 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004155 .enable_nmi_window = enable_nmi_window,
4156 .enable_irq_window = enable_irq_window,
4157 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004158
Izik Eiduscbc94022007-10-25 00:29:55 +02004159 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08004160 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004161 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004162
4163 .exit_reasons_str = vmx_exit_reasons_str,
Sheng Yang17cc3932010-01-05 19:02:27 +08004164 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08004165
4166 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08004167
4168 .rdtscp_supported = vmx_rdtscp_supported,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004169};
4170
4171static int __init vmx_init(void)
4172{
Avi Kivity26bb0982009-09-07 11:14:12 +03004173 int r, i;
4174
4175 rdmsrl_safe(MSR_EFER, &host_efer);
4176
4177 for (i = 0; i < NR_VMX_MSR; ++i)
4178 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03004179
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004180 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004181 if (!vmx_io_bitmap_a)
4182 return -ENOMEM;
4183
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004184 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004185 if (!vmx_io_bitmap_b) {
4186 r = -ENOMEM;
4187 goto out;
4188 }
4189
Avi Kivity58972972009-02-24 22:26:47 +02004190 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
4191 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08004192 r = -ENOMEM;
4193 goto out1;
4194 }
4195
Avi Kivity58972972009-02-24 22:26:47 +02004196 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
4197 if (!vmx_msr_bitmap_longmode) {
4198 r = -ENOMEM;
4199 goto out2;
4200 }
4201
He, Qingfdef3ad2007-04-30 09:45:24 +03004202 /*
4203 * Allow direct access to the PC debug port (it is often used for I/O
4204 * delays, but the vmexits simply slow things down).
4205 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004206 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
4207 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004208
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004209 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004210
Avi Kivity58972972009-02-24 22:26:47 +02004211 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
4212 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08004213
Sheng Yang2384d2b2008-01-17 15:14:33 +08004214 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
4215
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004216 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004217 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02004218 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08004219
Avi Kivity58972972009-02-24 22:26:47 +02004220 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
4221 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
4222 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
4223 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
4224 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
4225 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03004226
Avi Kivity089d0342009-03-23 18:26:32 +02004227 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004228 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004229 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08004230 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08004231 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004232 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004233 kvm_enable_tdp();
4234 } else
4235 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08004236
Avi Kivityc7addb92007-09-16 18:58:32 +02004237 if (bypass_guest_pf)
4238 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
4239
He, Qingfdef3ad2007-04-30 09:45:24 +03004240 return 0;
4241
Avi Kivity58972972009-02-24 22:26:47 +02004242out3:
4243 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08004244out2:
Avi Kivity58972972009-02-24 22:26:47 +02004245 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03004246out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004247 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03004248out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004249 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004250 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004251}
4252
4253static void __exit vmx_exit(void)
4254{
Avi Kivity58972972009-02-24 22:26:47 +02004255 free_page((unsigned long)vmx_msr_bitmap_legacy);
4256 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004257 free_page((unsigned long)vmx_io_bitmap_b);
4258 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004259
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004260 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004261}
4262
4263module_init(vmx_init)
4264module_exit(vmx_exit)