blob: a5f3f3ec69e606a6ae89d7433eee38dcd1939416 [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
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +080064/*
65 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
66 * ple_gap: upper bound on the amount of time between two successive
67 * executions of PAUSE in a loop. Also indicate if ple enabled.
68 * According to test, this time is usually small than 41 cycles.
69 * ple_window: upper bound on the amount of time a guest is allowed to execute
70 * in a PAUSE loop. Tests indicate that most spinlocks are held for
71 * less than 2^12 cycles
72 * Time is measured based on a counter that runs at the same rate as the TSC,
73 * refer SDM volume 3b section 21.6.13 & 22.1.3.
74 */
75#define KVM_VMX_DEFAULT_PLE_GAP 41
76#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
77static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
78module_param(ple_gap, int, S_IRUGO);
79
80static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
81module_param(ple_window, int, S_IRUGO);
82
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040083struct vmcs {
84 u32 revision_id;
85 u32 abort;
86 char data[0];
87};
88
Avi Kivity26bb0982009-09-07 11:14:12 +030089struct shared_msr_entry {
90 unsigned index;
91 u64 data;
92};
93
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040094struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100095 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +030096 struct list_head local_vcpus_link;
Avi Kivity313dbd42008-07-17 18:04:30 +030097 unsigned long host_rsp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040098 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +030099 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +0200100 u32 idt_vectoring_info;
Avi Kivity26bb0982009-09-07 11:14:12 +0300101 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400102 int nmsrs;
103 int save_nmsrs;
104 int msr_offset_efer;
105#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300106 u64 msr_host_kernel_gs_base;
107 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400108#endif
109 struct vmcs *vmcs;
110 struct {
111 int loaded;
112 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200113 int gs_ldt_reload_needed;
114 int fs_reload_needed;
Mike Dayd77c26f2007-10-08 09:02:08 -0400115 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200116 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300117 int vm86_active;
118 u8 save_iopl;
119 struct kvm_save_segment {
120 u16 selector;
121 unsigned long base;
122 u32 limit;
123 u32 ar;
124 } tr, es, ds, fs, gs;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200125 struct {
126 bool pending;
127 u8 vector;
128 unsigned rip;
129 } irq;
130 } rmode;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800131 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300132 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200133
134 /* Support for vnmi-less CPUs */
135 int soft_vnmi_blocked;
136 ktime_t entry_time;
137 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800138 u32 exit_reason;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400139};
140
141static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
142{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000143 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400144}
145
Sheng Yangb7ebfb02008-04-25 21:44:52 +0800146static int init_rmode(struct kvm *kvm);
Sheng Yang4e1096d2008-07-06 19:16:51 +0800147static u64 construct_eptp(unsigned long root_hpa);
Avi Kivity75880a02007-06-20 11:20:04 +0300148
Avi Kivity6aa8b732006-12-10 02:21:36 -0800149static DEFINE_PER_CPU(struct vmcs *, vmxarea);
150static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Avi Kivity543e4242008-05-13 16:22:47 +0300151static DEFINE_PER_CPU(struct list_head, vcpus_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800152
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200153static unsigned long *vmx_io_bitmap_a;
154static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200155static unsigned long *vmx_msr_bitmap_legacy;
156static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300157
Sheng Yang2384d2b2008-01-17 15:14:33 +0800158static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
159static DEFINE_SPINLOCK(vmx_vpid_lock);
160
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300161static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800162 int size;
163 int order;
164 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300165 u32 pin_based_exec_ctrl;
166 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800167 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300168 u32 vmexit_ctrl;
169 u32 vmentry_ctrl;
170} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800171
Hannes Ederefff9e52008-11-28 17:02:06 +0100172static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800173 u32 ept;
174 u32 vpid;
175} vmx_capability;
176
Avi Kivity6aa8b732006-12-10 02:21:36 -0800177#define VMX_SEGMENT_FIELD(seg) \
178 [VCPU_SREG_##seg] = { \
179 .selector = GUEST_##seg##_SELECTOR, \
180 .base = GUEST_##seg##_BASE, \
181 .limit = GUEST_##seg##_LIMIT, \
182 .ar_bytes = GUEST_##seg##_AR_BYTES, \
183 }
184
185static struct kvm_vmx_segment_field {
186 unsigned selector;
187 unsigned base;
188 unsigned limit;
189 unsigned ar_bytes;
190} kvm_vmx_segment_fields[] = {
191 VMX_SEGMENT_FIELD(CS),
192 VMX_SEGMENT_FIELD(DS),
193 VMX_SEGMENT_FIELD(ES),
194 VMX_SEGMENT_FIELD(FS),
195 VMX_SEGMENT_FIELD(GS),
196 VMX_SEGMENT_FIELD(SS),
197 VMX_SEGMENT_FIELD(TR),
198 VMX_SEGMENT_FIELD(LDTR),
199};
200
Avi Kivity26bb0982009-09-07 11:14:12 +0300201static u64 host_efer;
202
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300203static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
204
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300205/*
206 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
207 * away by decrementing the array size.
208 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800209static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800210#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300211 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800212#endif
213 MSR_EFER, MSR_K6_STAR,
214};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200215#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800216
Avi Kivity6aa8b732006-12-10 02:21:36 -0800217static inline int is_page_fault(u32 intr_info)
218{
219 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
220 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100221 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800222}
223
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300224static inline int is_no_device(u32 intr_info)
225{
226 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
227 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100228 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300229}
230
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500231static inline int is_invalid_opcode(u32 intr_info)
232{
233 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
234 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100235 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500236}
237
Avi Kivity6aa8b732006-12-10 02:21:36 -0800238static inline int is_external_interrupt(u32 intr_info)
239{
240 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
241 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
242}
243
Andi Kleena0861c02009-06-08 17:37:09 +0800244static inline int is_machine_check(u32 intr_info)
245{
246 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
247 INTR_INFO_VALID_MASK)) ==
248 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
249}
250
Sheng Yang25c5f222008-03-28 13:18:56 +0800251static inline int cpu_has_vmx_msr_bitmap(void)
252{
Sheng Yang04547152009-04-01 15:52:31 +0800253 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800254}
255
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800256static inline int cpu_has_vmx_tpr_shadow(void)
257{
Sheng Yang04547152009-04-01 15:52:31 +0800258 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800259}
260
261static inline int vm_need_tpr_shadow(struct kvm *kvm)
262{
Sheng Yang04547152009-04-01 15:52:31 +0800263 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800264}
265
Sheng Yangf78e0e22007-10-29 09:40:42 +0800266static inline int cpu_has_secondary_exec_ctrls(void)
267{
Sheng Yang04547152009-04-01 15:52:31 +0800268 return vmcs_config.cpu_based_exec_ctrl &
269 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800270}
271
Avi Kivity774ead32007-12-26 13:57:04 +0200272static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800273{
Sheng Yang04547152009-04-01 15:52:31 +0800274 return vmcs_config.cpu_based_2nd_exec_ctrl &
275 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
276}
277
278static inline bool cpu_has_vmx_flexpriority(void)
279{
280 return cpu_has_vmx_tpr_shadow() &&
281 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800282}
283
Marcelo Tosattie7997942009-06-11 12:07:40 -0300284static inline bool cpu_has_vmx_ept_execute_only(void)
285{
286 return !!(vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT);
287}
288
289static inline bool cpu_has_vmx_eptp_uncacheable(void)
290{
291 return !!(vmx_capability.ept & VMX_EPTP_UC_BIT);
292}
293
294static inline bool cpu_has_vmx_eptp_writeback(void)
295{
296 return !!(vmx_capability.ept & VMX_EPTP_WB_BIT);
297}
298
299static inline bool cpu_has_vmx_ept_2m_page(void)
300{
301 return !!(vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT);
302}
303
Sheng Yangd56f5462008-04-25 10:13:16 +0800304static inline int cpu_has_vmx_invept_individual_addr(void)
305{
Sheng Yang04547152009-04-01 15:52:31 +0800306 return !!(vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800307}
308
309static inline int cpu_has_vmx_invept_context(void)
310{
Sheng Yang04547152009-04-01 15:52:31 +0800311 return !!(vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800312}
313
314static inline int cpu_has_vmx_invept_global(void)
315{
Sheng Yang04547152009-04-01 15:52:31 +0800316 return !!(vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT);
Sheng Yangd56f5462008-04-25 10:13:16 +0800317}
318
319static inline int cpu_has_vmx_ept(void)
320{
Sheng Yang04547152009-04-01 15:52:31 +0800321 return vmcs_config.cpu_based_2nd_exec_ctrl &
322 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800323}
324
Nitin A Kamble3a624e22009-06-08 11:34:16 -0700325static inline int cpu_has_vmx_unrestricted_guest(void)
326{
327 return vmcs_config.cpu_based_2nd_exec_ctrl &
328 SECONDARY_EXEC_UNRESTRICTED_GUEST;
329}
330
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800331static inline int cpu_has_vmx_ple(void)
332{
333 return vmcs_config.cpu_based_2nd_exec_ctrl &
334 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
335}
336
Sheng Yangf78e0e22007-10-29 09:40:42 +0800337static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
338{
Sheng Yang04547152009-04-01 15:52:31 +0800339 return flexpriority_enabled &&
340 (cpu_has_vmx_virtualize_apic_accesses()) &&
341 (irqchip_in_kernel(kvm));
Sheng Yangf78e0e22007-10-29 09:40:42 +0800342}
343
Sheng Yang2384d2b2008-01-17 15:14:33 +0800344static inline int cpu_has_vmx_vpid(void)
345{
Sheng Yang04547152009-04-01 15:52:31 +0800346 return vmcs_config.cpu_based_2nd_exec_ctrl &
347 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800348}
349
Sheng Yangf08864b2008-05-15 18:23:25 +0800350static inline int cpu_has_virtual_nmis(void)
351{
352 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
353}
354
Sheng Yang04547152009-04-01 15:52:31 +0800355static inline bool report_flexpriority(void)
356{
357 return flexpriority_enabled;
358}
359
Rusty Russell8b9cf982007-07-30 16:31:43 +1000360static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800361{
362 int i;
363
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400364 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +0300365 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300366 return i;
367 return -1;
368}
369
Sheng Yang2384d2b2008-01-17 15:14:33 +0800370static inline void __invvpid(int ext, u16 vpid, gva_t gva)
371{
372 struct {
373 u64 vpid : 16;
374 u64 rsvd : 48;
375 u64 gva;
376 } operand = { vpid, 0, gva };
377
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300378 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800379 /* CF==1 or ZF==1 --> rc = -1 */
380 "; ja 1f ; ud2 ; 1:"
381 : : "a"(&operand), "c"(ext) : "cc", "memory");
382}
383
Sheng Yang14394422008-04-28 12:24:45 +0800384static inline void __invept(int ext, u64 eptp, gpa_t gpa)
385{
386 struct {
387 u64 eptp, gpa;
388 } operand = {eptp, gpa};
389
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300390 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800391 /* CF==1 or ZF==1 --> rc = -1 */
392 "; ja 1f ; ud2 ; 1:\n"
393 : : "a" (&operand), "c" (ext) : "cc", "memory");
394}
395
Avi Kivity26bb0982009-09-07 11:14:12 +0300396static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300397{
398 int i;
399
Rusty Russell8b9cf982007-07-30 16:31:43 +1000400 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300401 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400402 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000403 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800404}
405
Avi Kivity6aa8b732006-12-10 02:21:36 -0800406static void vmcs_clear(struct vmcs *vmcs)
407{
408 u64 phys_addr = __pa(vmcs);
409 u8 error;
410
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300411 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800412 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
413 : "cc", "memory");
414 if (error)
415 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
416 vmcs, phys_addr);
417}
418
419static void __vcpu_clear(void *arg)
420{
Rusty Russell8b9cf982007-07-30 16:31:43 +1000421 struct vcpu_vmx *vmx = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800422 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800423
Rusty Russell8b9cf982007-07-30 16:31:43 +1000424 if (vmx->vcpu.cpu == cpu)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400425 vmcs_clear(vmx->vmcs);
426 if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800427 per_cpu(current_vmcs, cpu) = NULL;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800428 rdtscll(vmx->vcpu.arch.host_tsc);
Avi Kivity543e4242008-05-13 16:22:47 +0300429 list_del(&vmx->local_vcpus_link);
430 vmx->vcpu.cpu = -1;
431 vmx->launched = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800432}
433
Rusty Russell8b9cf982007-07-30 16:31:43 +1000434static void vcpu_clear(struct vcpu_vmx *vmx)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800435{
Avi Kivityeae5ecb2007-09-30 10:50:12 +0200436 if (vmx->vcpu.cpu == -1)
437 return;
Jens Axboe8691e5a2008-06-06 11:18:06 +0200438 smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800439}
440
Sheng Yang2384d2b2008-01-17 15:14:33 +0800441static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
442{
443 if (vmx->vpid == 0)
444 return;
445
446 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
447}
448
Sheng Yang14394422008-04-28 12:24:45 +0800449static inline void ept_sync_global(void)
450{
451 if (cpu_has_vmx_invept_global())
452 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
453}
454
455static inline void ept_sync_context(u64 eptp)
456{
Avi Kivity089d0342009-03-23 18:26:32 +0200457 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800458 if (cpu_has_vmx_invept_context())
459 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
460 else
461 ept_sync_global();
462 }
463}
464
465static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
466{
Avi Kivity089d0342009-03-23 18:26:32 +0200467 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800468 if (cpu_has_vmx_invept_individual_addr())
469 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
470 eptp, gpa);
471 else
472 ept_sync_context(eptp);
473 }
474}
475
Avi Kivity6aa8b732006-12-10 02:21:36 -0800476static unsigned long vmcs_readl(unsigned long field)
477{
478 unsigned long value;
479
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300480 asm volatile (__ex(ASM_VMX_VMREAD_RDX_RAX)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800481 : "=a"(value) : "d"(field) : "cc");
482 return value;
483}
484
485static u16 vmcs_read16(unsigned long field)
486{
487 return vmcs_readl(field);
488}
489
490static u32 vmcs_read32(unsigned long field)
491{
492 return vmcs_readl(field);
493}
494
495static u64 vmcs_read64(unsigned long field)
496{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800497#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800498 return vmcs_readl(field);
499#else
500 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
501#endif
502}
503
Avi Kivitye52de1b2007-01-05 16:36:56 -0800504static noinline void vmwrite_error(unsigned long field, unsigned long value)
505{
506 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
507 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
508 dump_stack();
509}
510
Avi Kivity6aa8b732006-12-10 02:21:36 -0800511static void vmcs_writel(unsigned long field, unsigned long value)
512{
513 u8 error;
514
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300515 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400516 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800517 if (unlikely(error))
518 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800519}
520
521static void vmcs_write16(unsigned long field, u16 value)
522{
523 vmcs_writel(field, value);
524}
525
526static void vmcs_write32(unsigned long field, u32 value)
527{
528 vmcs_writel(field, value);
529}
530
531static void vmcs_write64(unsigned long field, u64 value)
532{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800533 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300534#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800535 asm volatile ("");
536 vmcs_writel(field+1, value >> 32);
537#endif
538}
539
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300540static void vmcs_clear_bits(unsigned long field, u32 mask)
541{
542 vmcs_writel(field, vmcs_readl(field) & ~mask);
543}
544
545static void vmcs_set_bits(unsigned long field, u32 mask)
546{
547 vmcs_writel(field, vmcs_readl(field) | mask);
548}
549
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300550static void update_exception_bitmap(struct kvm_vcpu *vcpu)
551{
552 u32 eb;
553
Andi Kleena0861c02009-06-08 17:37:09 +0800554 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300555 if (!vcpu->fpu_active)
556 eb |= 1u << NM_VECTOR;
Avi Kivitye8a48342009-09-01 16:06:25 +0300557 /*
558 * Unconditionally intercept #DB so we can maintain dr6 without
559 * reading it every exit.
560 */
561 eb |= 1u << DB_VECTOR;
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100562 if (vcpu->guest_debug & KVM_GUESTDBG_ENABLE) {
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100563 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
564 eb |= 1u << BP_VECTOR;
565 }
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300566 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300567 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +0200568 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +0800569 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300570 vmcs_write32(EXCEPTION_BITMAP, eb);
571}
572
Avi Kivity33ed6322007-05-02 16:54:03 +0300573static void reload_tss(void)
574{
Avi Kivity33ed6322007-05-02 16:54:03 +0300575 /*
576 * VT restores TR but not its size. Useless.
577 */
578 struct descriptor_table gdt;
Avi Kivitya5f61302008-02-20 17:57:21 +0200579 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300580
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300581 kvm_get_gdt(&gdt);
Avi Kivity33ed6322007-05-02 16:54:03 +0300582 descs = (void *)gdt.base;
583 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
584 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300585}
586
Avi Kivity26bb0982009-09-07 11:14:12 +0300587static bool update_transition_efer(struct vcpu_vmx *vmx)
Eddie Dong2cc51562007-05-21 07:28:09 +0300588{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400589 int efer_offset = vmx->msr_offset_efer;
Roel Kluin3a34a882009-08-04 02:08:45 -0700590 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300591 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300592
Avi Kivity51c6cf62007-08-29 03:48:05 +0300593 if (efer_offset < 0)
Avi Kivity26bb0982009-09-07 11:14:12 +0300594 return false;
595 guest_efer = vmx->vcpu.arch.shadow_efer;
Roel Kluin3a34a882009-08-04 02:08:45 -0700596
Avi Kivity51c6cf62007-08-29 03:48:05 +0300597 /*
598 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
599 * outside long mode
600 */
601 ignore_bits = EFER_NX | EFER_SCE;
602#ifdef CONFIG_X86_64
603 ignore_bits |= EFER_LMA | EFER_LME;
604 /* SCE is meaningful only in long mode on Intel */
605 if (guest_efer & EFER_LMA)
606 ignore_bits &= ~(u64)EFER_SCE;
607#endif
608 if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
Avi Kivity26bb0982009-09-07 11:14:12 +0300609 return false;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300610
Avi Kivity51c6cf62007-08-29 03:48:05 +0300611 guest_efer &= ~ignore_bits;
612 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300613 vmx->guest_msrs[efer_offset].data = guest_efer;
614 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300615}
616
Avi Kivity04d2cc72007-09-10 18:10:54 +0300617static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300618{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300619 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +0300620 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +0300621
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400622 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300623 return;
624
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400625 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300626 /*
627 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
628 * allow segment selectors with cpl > 0 or ti == 1.
629 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300630 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200631 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300632 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200633 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400634 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200635 vmx->host_state.fs_reload_needed = 0;
636 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300637 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200638 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300639 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300640 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400641 if (!(vmx->host_state.gs_sel & 7))
642 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300643 else {
644 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200645 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300646 }
647
648#ifdef CONFIG_X86_64
649 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
650 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
651#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400652 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
653 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300654#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300655
656#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300657 if (is_long_mode(&vmx->vcpu)) {
658 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
659 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
660 }
Avi Kivity707c0872007-05-02 17:33:43 +0300661#endif
Avi Kivity26bb0982009-09-07 11:14:12 +0300662 for (i = 0; i < vmx->save_nmsrs; ++i)
663 kvm_set_shared_msr(vmx->guest_msrs[i].index,
664 vmx->guest_msrs[i].data);
Avi Kivity33ed6322007-05-02 16:54:03 +0300665}
666
Avi Kivitya9b21b62008-06-24 11:48:49 +0300667static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300668{
Avi Kivity15ad7142007-07-11 18:17:21 +0300669 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300670
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400671 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300672 return;
673
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200674 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400675 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200676 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300677 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200678 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300679 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300680 /*
681 * If we have to reload gs, we must take care to
682 * preserve our gs base.
683 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300684 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300685 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300686#ifdef CONFIG_X86_64
687 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
688#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300689 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300690 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200691 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +0300692#ifdef CONFIG_X86_64
693 if (is_long_mode(&vmx->vcpu)) {
694 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
695 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
696 }
697#endif
Avi Kivity33ed6322007-05-02 16:54:03 +0300698}
699
Avi Kivitya9b21b62008-06-24 11:48:49 +0300700static void vmx_load_host_state(struct vcpu_vmx *vmx)
701{
702 preempt_disable();
703 __vmx_load_host_state(vmx);
704 preempt_enable();
705}
706
Avi Kivity6aa8b732006-12-10 02:21:36 -0800707/*
708 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
709 * vcpu mutex is already taken.
710 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300711static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800712{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400713 struct vcpu_vmx *vmx = to_vmx(vcpu);
714 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200715 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800716
Eddie Donga3d7f852007-09-03 16:15:12 +0300717 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000718 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300719 kvm_migrate_timers(vcpu);
Marcelo Tosattieb5109e2009-10-01 19:16:58 -0300720 set_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests);
Avi Kivity543e4242008-05-13 16:22:47 +0300721 local_irq_disable();
722 list_add(&vmx->local_vcpus_link,
723 &per_cpu(vcpus_on_cpu, cpu));
724 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300725 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800726
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400727 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800728 u8 error;
729
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400730 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300731 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800732 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
733 : "cc");
734 if (error)
735 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400736 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800737 }
738
739 if (vcpu->cpu != cpu) {
740 struct descriptor_table dt;
741 unsigned long sysenter_esp;
742
743 vcpu->cpu = cpu;
744 /*
745 * Linux uses per-cpu TSS and GDT, so set these when switching
746 * processors.
747 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300748 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
749 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800750 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
751
752 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
753 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300754
755 /*
756 * Make sure the time stamp counter is monotonous.
757 */
758 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200759 if (tsc_this < vcpu->arch.host_tsc) {
760 delta = vcpu->arch.host_tsc - tsc_this;
761 new_offset = vmcs_read64(TSC_OFFSET) + delta;
762 vmcs_write64(TSC_OFFSET, new_offset);
763 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800764 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800765}
766
767static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
768{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300769 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800770}
771
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300772static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
773{
774 if (vcpu->fpu_active)
775 return;
776 vcpu->fpu_active = 1;
Rusty Russell707d92f2007-07-17 23:19:08 +1000777 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800778 if (vcpu->arch.cr0 & X86_CR0_TS)
Rusty Russell707d92f2007-07-17 23:19:08 +1000779 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300780 update_exception_bitmap(vcpu);
781}
782
783static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
784{
785 if (!vcpu->fpu_active)
786 return;
787 vcpu->fpu_active = 0;
Rusty Russell707d92f2007-07-17 23:19:08 +1000788 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300789 update_exception_bitmap(vcpu);
790}
791
Avi Kivity6aa8b732006-12-10 02:21:36 -0800792static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
793{
Avi Kivity345dcaa2009-08-12 15:29:37 +0300794 unsigned long rflags;
795
796 rflags = vmcs_readl(GUEST_RFLAGS);
797 if (to_vmx(vcpu)->rmode.vm86_active)
798 rflags &= ~(unsigned long)(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
799 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800800}
801
802static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
803{
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300804 if (to_vmx(vcpu)->rmode.vm86_active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100805 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800806 vmcs_writel(GUEST_RFLAGS, rflags);
807}
808
Glauber Costa2809f5d2009-05-12 16:21:05 -0400809static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
810{
811 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
812 int ret = 0;
813
814 if (interruptibility & GUEST_INTR_STATE_STI)
815 ret |= X86_SHADOW_INT_STI;
816 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
817 ret |= X86_SHADOW_INT_MOV_SS;
818
819 return ret & mask;
820}
821
822static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
823{
824 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
825 u32 interruptibility = interruptibility_old;
826
827 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
828
829 if (mask & X86_SHADOW_INT_MOV_SS)
830 interruptibility |= GUEST_INTR_STATE_MOV_SS;
831 if (mask & X86_SHADOW_INT_STI)
832 interruptibility |= GUEST_INTR_STATE_STI;
833
834 if ((interruptibility != interruptibility_old))
835 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
836}
837
Avi Kivity6aa8b732006-12-10 02:21:36 -0800838static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
839{
840 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800841
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300842 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800843 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300844 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800845
Glauber Costa2809f5d2009-05-12 16:21:05 -0400846 /* skipping an emulated instruction also counts */
847 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800848}
849
Avi Kivity298101d2007-11-25 13:41:11 +0200850static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
851 bool has_error_code, u32 error_code)
852{
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200853 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100854 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200855
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100856 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200857 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100858 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
859 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200860
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300861 if (vmx->rmode.vm86_active) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200862 vmx->rmode.irq.pending = true;
863 vmx->rmode.irq.vector = nr;
864 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +0300865 if (kvm_exception_is_soft(nr))
866 vmx->rmode.irq.rip +=
867 vmx->vcpu.arch.event_exit_inst_len;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100868 intr_info |= INTR_TYPE_SOFT_INTR;
869 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200870 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
871 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
872 return;
873 }
874
Gleb Natapov66fd3f72009-05-11 13:35:50 +0300875 if (kvm_exception_is_soft(nr)) {
876 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
877 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100878 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
879 } else
880 intr_info |= INTR_TYPE_HARD_EXCEPTION;
881
882 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +0200883}
884
Avi Kivity6aa8b732006-12-10 02:21:36 -0800885/*
Eddie Donga75beee2007-05-17 18:55:15 +0300886 * Swap MSR entry in host/guest MSR entry array.
887 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000888static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300889{
Avi Kivity26bb0982009-09-07 11:14:12 +0300890 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400891
892 tmp = vmx->guest_msrs[to];
893 vmx->guest_msrs[to] = vmx->guest_msrs[from];
894 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300895}
896
897/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300898 * Set up the vmcs to automatically save and restore system
899 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
900 * mode, as fiddling with msrs is very expensive.
901 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000902static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300903{
Avi Kivity26bb0982009-09-07 11:14:12 +0300904 int save_nmsrs, index;
Avi Kivity58972972009-02-24 22:26:47 +0200905 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +0300906
Avi Kivity33f9c502008-02-27 16:06:57 +0200907 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300908 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300909#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000910 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000911 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300912 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000913 move_msr_up(vmx, index, save_nmsrs++);
914 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300915 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000916 move_msr_up(vmx, index, save_nmsrs++);
917 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300918 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000919 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300920 /*
921 * MSR_K6_STAR is only needed on long mode guests, and only
922 * if efer.sce is enabled.
923 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000924 index = __find_msr_index(vmx, MSR_K6_STAR);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800925 if ((index >= 0) && (vmx->vcpu.arch.shadow_efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000926 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300927 }
Eddie Donga75beee2007-05-17 18:55:15 +0300928#endif
Avi Kivity26bb0982009-09-07 11:14:12 +0300929 vmx->msr_offset_efer = index = __find_msr_index(vmx, MSR_EFER);
930 if (index >= 0 && update_transition_efer(vmx))
931 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300932
Avi Kivity26bb0982009-09-07 11:14:12 +0300933 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +0200934
935 if (cpu_has_vmx_msr_bitmap()) {
936 if (is_long_mode(&vmx->vcpu))
937 msr_bitmap = vmx_msr_bitmap_longmode;
938 else
939 msr_bitmap = vmx_msr_bitmap_legacy;
940
941 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
942 }
Avi Kivitye38aea32007-04-19 13:22:48 +0300943}
944
945/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800946 * reads and returns guest's timestamp counter "register"
947 * guest_tsc = host_tsc + tsc_offset -- 21.3
948 */
949static u64 guest_read_tsc(void)
950{
951 u64 host_tsc, tsc_offset;
952
953 rdtscll(host_tsc);
954 tsc_offset = vmcs_read64(TSC_OFFSET);
955 return host_tsc + tsc_offset;
956}
957
958/*
959 * writes 'guest_tsc' into guest's timestamp counter "register"
960 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
961 */
Marcelo Tosatti53f658b2008-12-11 20:45:05 +0100962static void guest_write_tsc(u64 guest_tsc, u64 host_tsc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800964 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
965}
966
Avi Kivity6aa8b732006-12-10 02:21:36 -0800967/*
968 * Reads an msr value (of 'msr_index') into 'pdata'.
969 * Returns 0 on success, non-0 otherwise.
970 * Assumes vcpu_load() was already called.
971 */
972static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
973{
974 u64 data;
Avi Kivity26bb0982009-09-07 11:14:12 +0300975 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800976
977 if (!pdata) {
978 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
979 return -EINVAL;
980 }
981
982 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800983#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800984 case MSR_FS_BASE:
985 data = vmcs_readl(GUEST_FS_BASE);
986 break;
987 case MSR_GS_BASE:
988 data = vmcs_readl(GUEST_GS_BASE);
989 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +0300990 case MSR_KERNEL_GS_BASE:
991 vmx_load_host_state(to_vmx(vcpu));
992 data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
993 break;
Avi Kivity26bb0982009-09-07 11:14:12 +0300994#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800995 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800996 return kvm_get_msr_common(vcpu, msr_index, pdata);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +0530997 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800998 data = guest_read_tsc();
999 break;
1000 case MSR_IA32_SYSENTER_CS:
1001 data = vmcs_read32(GUEST_SYSENTER_CS);
1002 break;
1003 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001004 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005 break;
1006 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001007 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001008 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001009 default:
Avi Kivity26bb0982009-09-07 11:14:12 +03001010 vmx_load_host_state(to_vmx(vcpu));
Rusty Russell8b9cf982007-07-30 16:31:43 +10001011 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001012 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001013 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity3bab1f52006-12-29 16:49:48 -08001014 data = msr->data;
1015 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001016 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08001017 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001018 }
1019
1020 *pdata = data;
1021 return 0;
1022}
1023
1024/*
1025 * Writes msr value into into the appropriate "register".
1026 * Returns 0 on success, non-0 otherwise.
1027 * Assumes vcpu_load() was already called.
1028 */
1029static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1030{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001031 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001032 struct shared_msr_entry *msr;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01001033 u64 host_tsc;
Eddie Dong2cc51562007-05-21 07:28:09 +03001034 int ret = 0;
1035
Avi Kivity6aa8b732006-12-10 02:21:36 -08001036 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001037 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +03001038 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +03001039 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03001040 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001041#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001042 case MSR_FS_BASE:
1043 vmcs_writel(GUEST_FS_BASE, data);
1044 break;
1045 case MSR_GS_BASE:
1046 vmcs_writel(GUEST_GS_BASE, data);
1047 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001048 case MSR_KERNEL_GS_BASE:
1049 vmx_load_host_state(vmx);
1050 vmx->msr_guest_kernel_gs_base = data;
1051 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001052#endif
1053 case MSR_IA32_SYSENTER_CS:
1054 vmcs_write32(GUEST_SYSENTER_CS, data);
1055 break;
1056 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001057 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058 break;
1059 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001060 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301062 case MSR_IA32_TSC:
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01001063 rdtscll(host_tsc);
1064 guest_write_tsc(data, host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001065 break;
Sheng Yang468d4722008-10-09 16:01:55 +08001066 case MSR_IA32_CR_PAT:
1067 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
1068 vmcs_write64(GUEST_IA32_PAT, data);
1069 vcpu->arch.pat = data;
1070 break;
1071 }
1072 /* Otherwise falls through to kvm_set_msr_common */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001073 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10001074 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001075 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001076 vmx_load_host_state(vmx);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001077 msr->data = data;
1078 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001079 }
Eddie Dong2cc51562007-05-21 07:28:09 +03001080 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001081 }
1082
Eddie Dong2cc51562007-05-21 07:28:09 +03001083 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001084}
1085
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001086static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001087{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001088 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
1089 switch (reg) {
1090 case VCPU_REGS_RSP:
1091 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
1092 break;
1093 case VCPU_REGS_RIP:
1094 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
1095 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001096 case VCPU_EXREG_PDPTR:
1097 if (enable_ept)
1098 ept_save_pdptrs(vcpu);
1099 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001100 default:
1101 break;
1102 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001103}
1104
Jan Kiszka355be0b2009-10-03 00:31:21 +02001105static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001106{
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001107 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1108 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1109 else
1110 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1111
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001112 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001113}
1114
1115static __init int cpu_has_kvm_support(void)
1116{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001117 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001118}
1119
1120static __init int vmx_disabled_by_bios(void)
1121{
1122 u64 msr;
1123
1124 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001125 return (msr & (FEATURE_CONTROL_LOCKED |
1126 FEATURE_CONTROL_VMXON_ENABLED))
1127 == FEATURE_CONTROL_LOCKED;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001128 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001129}
1130
Alexander Graf10474ae2009-09-15 11:37:46 +02001131static int hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001132{
1133 int cpu = raw_smp_processor_id();
1134 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1135 u64 old;
1136
Alexander Graf10474ae2009-09-15 11:37:46 +02001137 if (read_cr4() & X86_CR4_VMXE)
1138 return -EBUSY;
1139
Avi Kivity543e4242008-05-13 16:22:47 +03001140 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001141 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001142 if ((old & (FEATURE_CONTROL_LOCKED |
1143 FEATURE_CONTROL_VMXON_ENABLED))
1144 != (FEATURE_CONTROL_LOCKED |
1145 FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001146 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001147 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yang9ea542f2008-09-11 15:27:49 +08001148 FEATURE_CONTROL_LOCKED |
1149 FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +10001150 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001151 asm volatile (ASM_VMX_VMXON_RAX
1152 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001153 : "memory", "cc");
Alexander Graf10474ae2009-09-15 11:37:46 +02001154
1155 ept_sync_global();
1156
1157 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001158}
1159
Avi Kivity543e4242008-05-13 16:22:47 +03001160static void vmclear_local_vcpus(void)
1161{
1162 int cpu = raw_smp_processor_id();
1163 struct vcpu_vmx *vmx, *n;
1164
1165 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1166 local_vcpus_link)
1167 __vcpu_clear(vmx);
1168}
1169
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001170
1171/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1172 * tricks.
1173 */
1174static void kvm_cpu_vmxoff(void)
1175{
1176 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
1177 write_cr4(read_cr4() & ~X86_CR4_VMXE);
1178}
1179
Avi Kivity6aa8b732006-12-10 02:21:36 -08001180static void hardware_disable(void *garbage)
1181{
Avi Kivity543e4242008-05-13 16:22:47 +03001182 vmclear_local_vcpus();
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001183 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001184}
1185
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001186static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001187 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001188{
1189 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001190 u32 ctl = ctl_min | ctl_opt;
1191
1192 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1193
1194 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1195 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1196
1197 /* Ensure minimum (required) set of control bits are supported. */
1198 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001199 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001200
1201 *result = ctl;
1202 return 0;
1203}
1204
Yang, Sheng002c7f72007-07-31 14:23:01 +03001205static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001206{
1207 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001208 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001209 u32 _pin_based_exec_control = 0;
1210 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001211 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001212 u32 _vmexit_control = 0;
1213 u32 _vmentry_control = 0;
1214
1215 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001216 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001217 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1218 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001219 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001220
1221 min = CPU_BASED_HLT_EXITING |
1222#ifdef CONFIG_X86_64
1223 CPU_BASED_CR8_LOAD_EXITING |
1224 CPU_BASED_CR8_STORE_EXITING |
1225#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001226 CPU_BASED_CR3_LOAD_EXITING |
1227 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001228 CPU_BASED_USE_IO_BITMAPS |
1229 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001230 CPU_BASED_USE_TSC_OFFSETING |
1231 CPU_BASED_INVLPG_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001232 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001233 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001234 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001235 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1236 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001237 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001238#ifdef CONFIG_X86_64
1239 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1240 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1241 ~CPU_BASED_CR8_STORE_EXITING;
1242#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001243 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001244 min2 = 0;
1245 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001246 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001247 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001248 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001249 SECONDARY_EXEC_UNRESTRICTED_GUEST |
1250 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08001251 if (adjust_vmx_controls(min2, opt2,
1252 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001253 &_cpu_based_2nd_exec_control) < 0)
1254 return -EIO;
1255 }
1256#ifndef CONFIG_X86_64
1257 if (!(_cpu_based_2nd_exec_control &
1258 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1259 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1260#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001261 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03001262 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
1263 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03001264 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
1265 CPU_BASED_CR3_STORE_EXITING |
1266 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001267 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1268 vmx_capability.ept, vmx_capability.vpid);
1269 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001270
1271 min = 0;
1272#ifdef CONFIG_X86_64
1273 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1274#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001275 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001276 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1277 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001278 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001279
Sheng Yang468d4722008-10-09 16:01:55 +08001280 min = 0;
1281 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001282 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1283 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001284 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001285
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001286 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001287
1288 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1289 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001290 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001291
1292#ifdef CONFIG_X86_64
1293 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1294 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001295 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001296#endif
1297
1298 /* Require Write-Back (WB) memory type for VMCS accesses. */
1299 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001300 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001301
Yang, Sheng002c7f72007-07-31 14:23:01 +03001302 vmcs_conf->size = vmx_msr_high & 0x1fff;
1303 vmcs_conf->order = get_order(vmcs_config.size);
1304 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001305
Yang, Sheng002c7f72007-07-31 14:23:01 +03001306 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1307 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001308 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001309 vmcs_conf->vmexit_ctrl = _vmexit_control;
1310 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001311
1312 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001313}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001314
1315static struct vmcs *alloc_vmcs_cpu(int cpu)
1316{
1317 int node = cpu_to_node(cpu);
1318 struct page *pages;
1319 struct vmcs *vmcs;
1320
Mel Gorman6484eb32009-06-16 15:31:54 -07001321 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001322 if (!pages)
1323 return NULL;
1324 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001325 memset(vmcs, 0, vmcs_config.size);
1326 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001327 return vmcs;
1328}
1329
1330static struct vmcs *alloc_vmcs(void)
1331{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001332 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001333}
1334
1335static void free_vmcs(struct vmcs *vmcs)
1336{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001337 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001338}
1339
Sam Ravnborg39959582007-06-01 00:47:13 -07001340static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001341{
1342 int cpu;
1343
Zachary Amsden3230bb42009-09-29 11:38:37 -10001344 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001345 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10001346 per_cpu(vmxarea, cpu) = NULL;
1347 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001348}
1349
Avi Kivity6aa8b732006-12-10 02:21:36 -08001350static __init int alloc_kvm_area(void)
1351{
1352 int cpu;
1353
Zachary Amsden3230bb42009-09-29 11:38:37 -10001354 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001355 struct vmcs *vmcs;
1356
1357 vmcs = alloc_vmcs_cpu(cpu);
1358 if (!vmcs) {
1359 free_kvm_area();
1360 return -ENOMEM;
1361 }
1362
1363 per_cpu(vmxarea, cpu) = vmcs;
1364 }
1365 return 0;
1366}
1367
1368static __init int hardware_setup(void)
1369{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001370 if (setup_vmcs_config(&vmcs_config) < 0)
1371 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001372
1373 if (boot_cpu_has(X86_FEATURE_NX))
1374 kvm_enable_efer_bits(EFER_NX);
1375
Sheng Yang93ba03c2009-04-01 15:52:32 +08001376 if (!cpu_has_vmx_vpid())
1377 enable_vpid = 0;
1378
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001379 if (!cpu_has_vmx_ept()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08001380 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001381 enable_unrestricted_guest = 0;
1382 }
1383
1384 if (!cpu_has_vmx_unrestricted_guest())
1385 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08001386
1387 if (!cpu_has_vmx_flexpriority())
1388 flexpriority_enabled = 0;
1389
Gleb Natapov95ba8273132009-04-21 17:45:08 +03001390 if (!cpu_has_vmx_tpr_shadow())
1391 kvm_x86_ops->update_cr8_intercept = NULL;
1392
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001393 if (enable_ept && !cpu_has_vmx_ept_2m_page())
1394 kvm_disable_largepages();
1395
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001396 if (!cpu_has_vmx_ple())
1397 ple_gap = 0;
1398
Avi Kivity6aa8b732006-12-10 02:21:36 -08001399 return alloc_kvm_area();
1400}
1401
1402static __exit void hardware_unsetup(void)
1403{
1404 free_kvm_area();
1405}
1406
Avi Kivity6aa8b732006-12-10 02:21:36 -08001407static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1408{
1409 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1410
Avi Kivity6af11b92007-03-19 13:18:10 +02001411 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001412 vmcs_write16(sf->selector, save->selector);
1413 vmcs_writel(sf->base, save->base);
1414 vmcs_write32(sf->limit, save->limit);
1415 vmcs_write32(sf->ar_bytes, save->ar);
1416 } else {
1417 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1418 << AR_DPL_SHIFT;
1419 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1420 }
1421}
1422
1423static void enter_pmode(struct kvm_vcpu *vcpu)
1424{
1425 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001426 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001427
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001428 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001429 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001430
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001431 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
1432 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
1433 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001434
1435 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001436 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001437 flags |= (vmx->rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001438 vmcs_writel(GUEST_RFLAGS, flags);
1439
Rusty Russell66aee912007-07-17 23:34:16 +10001440 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1441 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001442
1443 update_exception_bitmap(vcpu);
1444
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001445 if (emulate_invalid_guest_state)
1446 return;
1447
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001448 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
1449 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
1450 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
1451 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001452
1453 vmcs_write16(GUEST_SS_SELECTOR, 0);
1454 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1455
1456 vmcs_write16(GUEST_CS_SELECTOR,
1457 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1458 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1459}
1460
Mike Dayd77c26f2007-10-08 09:02:08 -04001461static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001462{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001463 if (!kvm->arch.tss_addr) {
Izik Eiduscbc94022007-10-25 00:29:55 +02001464 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1465 kvm->memslots[0].npages - 3;
1466 return base_gfn << PAGE_SHIFT;
1467 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001468 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001469}
1470
1471static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1472{
1473 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1474
1475 save->selector = vmcs_read16(sf->selector);
1476 save->base = vmcs_readl(sf->base);
1477 save->limit = vmcs_read32(sf->limit);
1478 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001479 vmcs_write16(sf->selector, save->base >> 4);
1480 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001481 vmcs_write32(sf->limit, 0xffff);
1482 vmcs_write32(sf->ar_bytes, 0xf3);
1483}
1484
1485static void enter_rmode(struct kvm_vcpu *vcpu)
1486{
1487 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001488 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001489
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001490 if (enable_unrestricted_guest)
1491 return;
1492
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001493 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001494 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001495
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001496 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001497 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1498
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001499 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001500 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1501
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001502 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001503 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1504
1505 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001506 vmx->rmode.save_iopl
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001507 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001508
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001509 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001510
1511 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001512 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001513 update_exception_bitmap(vcpu);
1514
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001515 if (emulate_invalid_guest_state)
1516 goto continue_rmode;
1517
Avi Kivity6aa8b732006-12-10 02:21:36 -08001518 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1519 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1520 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1521
1522 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001523 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001524 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1525 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001526 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1527
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001528 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
1529 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
1530 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
1531 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001532
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001533continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08001534 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001535 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001536}
1537
Amit Shah401d10d2009-02-20 22:53:37 +05301538static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1539{
1540 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001541 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
1542
1543 if (!msr)
1544 return;
Amit Shah401d10d2009-02-20 22:53:37 +05301545
Avi Kivity44ea2b12009-09-06 15:55:37 +03001546 /*
1547 * Force kernel_gs_base reloading before EFER changes, as control
1548 * of this msr depends on is_long_mode().
1549 */
1550 vmx_load_host_state(to_vmx(vcpu));
Amit Shah401d10d2009-02-20 22:53:37 +05301551 vcpu->arch.shadow_efer = efer;
1552 if (!msr)
1553 return;
1554 if (efer & EFER_LMA) {
1555 vmcs_write32(VM_ENTRY_CONTROLS,
1556 vmcs_read32(VM_ENTRY_CONTROLS) |
1557 VM_ENTRY_IA32E_MODE);
1558 msr->data = efer;
1559 } else {
1560 vmcs_write32(VM_ENTRY_CONTROLS,
1561 vmcs_read32(VM_ENTRY_CONTROLS) &
1562 ~VM_ENTRY_IA32E_MODE);
1563
1564 msr->data = efer & ~EFER_LME;
1565 }
1566 setup_msrs(vmx);
1567}
1568
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001569#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570
1571static void enter_lmode(struct kvm_vcpu *vcpu)
1572{
1573 u32 guest_tr_ar;
1574
1575 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1576 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1577 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001578 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001579 vmcs_write32(GUEST_TR_AR_BYTES,
1580 (guest_tr_ar & ~AR_TYPE_MASK)
1581 | AR_TYPE_BUSY_64_TSS);
1582 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001583 vcpu->arch.shadow_efer |= EFER_LMA;
Amit Shah401d10d2009-02-20 22:53:37 +05301584 vmx_set_efer(vcpu, vcpu->arch.shadow_efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001585}
1586
1587static void exit_lmode(struct kvm_vcpu *vcpu)
1588{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001589 vcpu->arch.shadow_efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001590
1591 vmcs_write32(VM_ENTRY_CONTROLS,
1592 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001593 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001594}
1595
1596#endif
1597
Sheng Yang2384d2b2008-01-17 15:14:33 +08001598static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1599{
1600 vpid_sync_vcpu_all(to_vmx(vcpu));
Avi Kivity089d0342009-03-23 18:26:32 +02001601 if (enable_ept)
Sheng Yang4e1096d2008-07-06 19:16:51 +08001602 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001603}
1604
Anthony Liguori25c4c272007-04-27 09:29:21 +03001605static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001606{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001607 vcpu->arch.cr4 &= KVM_GUEST_CR4_MASK;
1608 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
Avi Kivity399badf2007-01-05 16:36:38 -08001609}
1610
Sheng Yang14394422008-04-28 12:24:45 +08001611static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1612{
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001613 if (!test_bit(VCPU_EXREG_PDPTR,
1614 (unsigned long *)&vcpu->arch.regs_dirty))
1615 return;
1616
Sheng Yang14394422008-04-28 12:24:45 +08001617 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Sheng Yang14394422008-04-28 12:24:45 +08001618 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1619 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1620 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1621 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1622 }
1623}
1624
Avi Kivity8f5d5492009-05-31 18:41:29 +03001625static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
1626{
1627 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1628 vcpu->arch.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
1629 vcpu->arch.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
1630 vcpu->arch.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
1631 vcpu->arch.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
1632 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001633
1634 __set_bit(VCPU_EXREG_PDPTR,
1635 (unsigned long *)&vcpu->arch.regs_avail);
1636 __set_bit(VCPU_EXREG_PDPTR,
1637 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03001638}
1639
Sheng Yang14394422008-04-28 12:24:45 +08001640static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1641
1642static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1643 unsigned long cr0,
1644 struct kvm_vcpu *vcpu)
1645{
1646 if (!(cr0 & X86_CR0_PG)) {
1647 /* From paging/starting to nonpaging */
1648 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001649 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001650 (CPU_BASED_CR3_LOAD_EXITING |
1651 CPU_BASED_CR3_STORE_EXITING));
1652 vcpu->arch.cr0 = cr0;
1653 vmx_set_cr4(vcpu, vcpu->arch.cr4);
Sheng Yang14394422008-04-28 12:24:45 +08001654 } else if (!is_paging(vcpu)) {
1655 /* From nonpaging to paging */
1656 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001657 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001658 ~(CPU_BASED_CR3_LOAD_EXITING |
1659 CPU_BASED_CR3_STORE_EXITING));
1660 vcpu->arch.cr0 = cr0;
1661 vmx_set_cr4(vcpu, vcpu->arch.cr4);
Sheng Yang14394422008-04-28 12:24:45 +08001662 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08001663
1664 if (!(cr0 & X86_CR0_WP))
1665 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08001666}
1667
1668static void ept_update_paging_mode_cr4(unsigned long *hw_cr4,
1669 struct kvm_vcpu *vcpu)
1670{
1671 if (!is_paging(vcpu)) {
1672 *hw_cr4 &= ~X86_CR4_PAE;
1673 *hw_cr4 |= X86_CR4_PSE;
1674 } else if (!(vcpu->arch.cr4 & X86_CR4_PAE))
1675 *hw_cr4 &= ~X86_CR4_PAE;
1676}
1677
Avi Kivity6aa8b732006-12-10 02:21:36 -08001678static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1679{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001680 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001681 unsigned long hw_cr0;
1682
1683 if (enable_unrestricted_guest)
1684 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
1685 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
1686 else
1687 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08001688
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001689 vmx_fpu_deactivate(vcpu);
1690
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001691 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001692 enter_pmode(vcpu);
1693
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001694 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001695 enter_rmode(vcpu);
1696
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001697#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001698 if (vcpu->arch.shadow_efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10001699 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001700 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10001701 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001702 exit_lmode(vcpu);
1703 }
1704#endif
1705
Avi Kivity089d0342009-03-23 18:26:32 +02001706 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001707 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1708
Avi Kivity6aa8b732006-12-10 02:21:36 -08001709 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001710 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001711 vcpu->arch.cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001712
Rusty Russell707d92f2007-07-17 23:19:08 +10001713 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001714 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001715}
1716
Sheng Yang14394422008-04-28 12:24:45 +08001717static u64 construct_eptp(unsigned long root_hpa)
1718{
1719 u64 eptp;
1720
1721 /* TODO write the value reading from MSR */
1722 eptp = VMX_EPT_DEFAULT_MT |
1723 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1724 eptp |= (root_hpa & PAGE_MASK);
1725
1726 return eptp;
1727}
1728
Avi Kivity6aa8b732006-12-10 02:21:36 -08001729static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1730{
Sheng Yang14394422008-04-28 12:24:45 +08001731 unsigned long guest_cr3;
1732 u64 eptp;
1733
1734 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02001735 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001736 eptp = construct_eptp(cr3);
1737 vmcs_write64(EPT_POINTER, eptp);
Sheng Yang14394422008-04-28 12:24:45 +08001738 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
Sheng Yangb927a3c2009-07-21 10:42:48 +08001739 vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02001740 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001741 }
1742
Sheng Yang2384d2b2008-01-17 15:14:33 +08001743 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001744 vmcs_writel(GUEST_CR3, guest_cr3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001745 if (vcpu->arch.cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001746 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001747}
1748
1749static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1750{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001751 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08001752 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1753
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001754 vcpu->arch.cr4 = cr4;
Avi Kivity089d0342009-03-23 18:26:32 +02001755 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001756 ept_update_paging_mode_cr4(&hw_cr4, vcpu);
1757
1758 vmcs_writel(CR4_READ_SHADOW, cr4);
1759 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001760}
1761
Avi Kivity6aa8b732006-12-10 02:21:36 -08001762static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1763{
1764 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1765
1766 return vmcs_readl(sf->base);
1767}
1768
1769static void vmx_get_segment(struct kvm_vcpu *vcpu,
1770 struct kvm_segment *var, int seg)
1771{
1772 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1773 u32 ar;
1774
1775 var->base = vmcs_readl(sf->base);
1776 var->limit = vmcs_read32(sf->limit);
1777 var->selector = vmcs_read16(sf->selector);
1778 ar = vmcs_read32(sf->ar_bytes);
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02001779 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001780 ar = 0;
1781 var->type = ar & 15;
1782 var->s = (ar >> 4) & 1;
1783 var->dpl = (ar >> 5) & 3;
1784 var->present = (ar >> 7) & 1;
1785 var->avl = (ar >> 12) & 1;
1786 var->l = (ar >> 13) & 1;
1787 var->db = (ar >> 14) & 1;
1788 var->g = (ar >> 15) & 1;
1789 var->unusable = (ar >> 16) & 1;
1790}
1791
Izik Eidus2e4d2652008-03-24 19:38:34 +02001792static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1793{
Izik Eidus2e4d2652008-03-24 19:38:34 +02001794 if (!(vcpu->arch.cr0 & X86_CR0_PE)) /* if real mode */
1795 return 0;
1796
1797 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1798 return 3;
1799
Avi Kivityeab4b8a2009-08-04 15:02:54 +03001800 return vmcs_read16(GUEST_CS_SELECTOR) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02001801}
1802
Avi Kivity653e3102007-05-07 10:55:37 +03001803static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001804{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001805 u32 ar;
1806
Avi Kivity653e3102007-05-07 10:55:37 +03001807 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001808 ar = 1 << 16;
1809 else {
1810 ar = var->type & 15;
1811 ar |= (var->s & 1) << 4;
1812 ar |= (var->dpl & 3) << 5;
1813 ar |= (var->present & 1) << 7;
1814 ar |= (var->avl & 1) << 12;
1815 ar |= (var->l & 1) << 13;
1816 ar |= (var->db & 1) << 14;
1817 ar |= (var->g & 1) << 15;
1818 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001819 if (ar == 0) /* a 0 value means unusable */
1820 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001821
1822 return ar;
1823}
1824
1825static void vmx_set_segment(struct kvm_vcpu *vcpu,
1826 struct kvm_segment *var, int seg)
1827{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001828 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03001829 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1830 u32 ar;
1831
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001832 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
1833 vmx->rmode.tr.selector = var->selector;
1834 vmx->rmode.tr.base = var->base;
1835 vmx->rmode.tr.limit = var->limit;
1836 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001837 return;
1838 }
1839 vmcs_writel(sf->base, var->base);
1840 vmcs_write32(sf->limit, var->limit);
1841 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001842 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001843 /*
1844 * Hack real-mode segments into vm86 compatibility.
1845 */
1846 if (var->base == 0xffff0000 && var->selector == 0xf000)
1847 vmcs_writel(sf->base, 0xf0000);
1848 ar = 0xf3;
1849 } else
1850 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001851
1852 /*
1853 * Fix the "Accessed" bit in AR field of segment registers for older
1854 * qemu binaries.
1855 * IA32 arch specifies that at the time of processor reset the
1856 * "Accessed" bit in the AR field of segment registers is 1. And qemu
1857 * is setting it to 0 in the usedland code. This causes invalid guest
1858 * state vmexit when "unrestricted guest" mode is turned on.
1859 * Fix for this setup issue in cpu_reset is being pushed in the qemu
1860 * tree. Newer qemu binaries with that qemu fix would not need this
1861 * kvm hack.
1862 */
1863 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
1864 ar |= 0x1; /* Accessed */
1865
Avi Kivity6aa8b732006-12-10 02:21:36 -08001866 vmcs_write32(sf->ar_bytes, ar);
1867}
1868
Avi Kivity6aa8b732006-12-10 02:21:36 -08001869static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1870{
1871 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1872
1873 *db = (ar >> 14) & 1;
1874 *l = (ar >> 13) & 1;
1875}
1876
1877static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1878{
1879 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1880 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1881}
1882
1883static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1884{
1885 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1886 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1887}
1888
1889static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1890{
1891 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1892 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1893}
1894
1895static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1896{
1897 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1898 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1899}
1900
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001901static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1902{
1903 struct kvm_segment var;
1904 u32 ar;
1905
1906 vmx_get_segment(vcpu, &var, seg);
1907 ar = vmx_segment_access_rights(&var);
1908
1909 if (var.base != (var.selector << 4))
1910 return false;
1911 if (var.limit != 0xffff)
1912 return false;
1913 if (ar != 0xf3)
1914 return false;
1915
1916 return true;
1917}
1918
1919static bool code_segment_valid(struct kvm_vcpu *vcpu)
1920{
1921 struct kvm_segment cs;
1922 unsigned int cs_rpl;
1923
1924 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1925 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1926
Avi Kivity1872a3f2009-01-04 23:26:52 +02001927 if (cs.unusable)
1928 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001929 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1930 return false;
1931 if (!cs.s)
1932 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001933 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001934 if (cs.dpl > cs_rpl)
1935 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001936 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001937 if (cs.dpl != cs_rpl)
1938 return false;
1939 }
1940 if (!cs.present)
1941 return false;
1942
1943 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
1944 return true;
1945}
1946
1947static bool stack_segment_valid(struct kvm_vcpu *vcpu)
1948{
1949 struct kvm_segment ss;
1950 unsigned int ss_rpl;
1951
1952 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1953 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
1954
Avi Kivity1872a3f2009-01-04 23:26:52 +02001955 if (ss.unusable)
1956 return true;
1957 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001958 return false;
1959 if (!ss.s)
1960 return false;
1961 if (ss.dpl != ss_rpl) /* DPL != RPL */
1962 return false;
1963 if (!ss.present)
1964 return false;
1965
1966 return true;
1967}
1968
1969static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
1970{
1971 struct kvm_segment var;
1972 unsigned int rpl;
1973
1974 vmx_get_segment(vcpu, &var, seg);
1975 rpl = var.selector & SELECTOR_RPL_MASK;
1976
Avi Kivity1872a3f2009-01-04 23:26:52 +02001977 if (var.unusable)
1978 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001979 if (!var.s)
1980 return false;
1981 if (!var.present)
1982 return false;
1983 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
1984 if (var.dpl < rpl) /* DPL < RPL */
1985 return false;
1986 }
1987
1988 /* TODO: Add other members to kvm_segment_field to allow checking for other access
1989 * rights flags
1990 */
1991 return true;
1992}
1993
1994static bool tr_valid(struct kvm_vcpu *vcpu)
1995{
1996 struct kvm_segment tr;
1997
1998 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
1999
Avi Kivity1872a3f2009-01-04 23:26:52 +02002000 if (tr.unusable)
2001 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002002 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2003 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02002004 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002005 return false;
2006 if (!tr.present)
2007 return false;
2008
2009 return true;
2010}
2011
2012static bool ldtr_valid(struct kvm_vcpu *vcpu)
2013{
2014 struct kvm_segment ldtr;
2015
2016 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
2017
Avi Kivity1872a3f2009-01-04 23:26:52 +02002018 if (ldtr.unusable)
2019 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002020 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2021 return false;
2022 if (ldtr.type != 2)
2023 return false;
2024 if (!ldtr.present)
2025 return false;
2026
2027 return true;
2028}
2029
2030static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
2031{
2032 struct kvm_segment cs, ss;
2033
2034 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
2035 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2036
2037 return ((cs.selector & SELECTOR_RPL_MASK) ==
2038 (ss.selector & SELECTOR_RPL_MASK));
2039}
2040
2041/*
2042 * Check if guest state is valid. Returns true if valid, false if
2043 * not.
2044 * We assume that registers are always usable
2045 */
2046static bool guest_state_valid(struct kvm_vcpu *vcpu)
2047{
2048 /* real mode guest state checks */
2049 if (!(vcpu->arch.cr0 & X86_CR0_PE)) {
2050 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
2051 return false;
2052 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
2053 return false;
2054 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
2055 return false;
2056 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
2057 return false;
2058 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
2059 return false;
2060 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
2061 return false;
2062 } else {
2063 /* protected mode guest state checks */
2064 if (!cs_ss_rpl_check(vcpu))
2065 return false;
2066 if (!code_segment_valid(vcpu))
2067 return false;
2068 if (!stack_segment_valid(vcpu))
2069 return false;
2070 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
2071 return false;
2072 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
2073 return false;
2074 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
2075 return false;
2076 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
2077 return false;
2078 if (!tr_valid(vcpu))
2079 return false;
2080 if (!ldtr_valid(vcpu))
2081 return false;
2082 }
2083 /* TODO:
2084 * - Add checks on RIP
2085 * - Add checks on RFLAGS
2086 */
2087
2088 return true;
2089}
2090
Mike Dayd77c26f2007-10-08 09:02:08 -04002091static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002092{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002093 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02002094 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002095 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02002096 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002097
Izik Eidus195aefd2007-10-01 22:14:18 +02002098 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2099 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002100 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002101 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08002102 r = kvm_write_guest_page(kvm, fn++, &data,
2103 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02002104 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002105 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002106 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
2107 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002108 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002109 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2110 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002111 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002112 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002113 r = kvm_write_guest_page(kvm, fn, &data,
2114 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
2115 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02002116 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002117 goto out;
2118
2119 ret = 1;
2120out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002121 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002122}
2123
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002124static int init_rmode_identity_map(struct kvm *kvm)
2125{
2126 int i, r, ret;
2127 pfn_t identity_map_pfn;
2128 u32 tmp;
2129
Avi Kivity089d0342009-03-23 18:26:32 +02002130 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002131 return 1;
2132 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
2133 printk(KERN_ERR "EPT: identity-mapping pagetable "
2134 "haven't been allocated!\n");
2135 return 0;
2136 }
2137 if (likely(kvm->arch.ept_identity_pagetable_done))
2138 return 1;
2139 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002140 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002141 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
2142 if (r < 0)
2143 goto out;
2144 /* Set up identity-mapping pagetable for EPT in real mode */
2145 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2146 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2147 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2148 r = kvm_write_guest_page(kvm, identity_map_pfn,
2149 &tmp, i * sizeof(tmp), sizeof(tmp));
2150 if (r < 0)
2151 goto out;
2152 }
2153 kvm->arch.ept_identity_pagetable_done = true;
2154 ret = 1;
2155out:
2156 return ret;
2157}
2158
Avi Kivity6aa8b732006-12-10 02:21:36 -08002159static void seg_setup(int seg)
2160{
2161 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002162 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002163
2164 vmcs_write16(sf->selector, 0);
2165 vmcs_writel(sf->base, 0);
2166 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002167 if (enable_unrestricted_guest) {
2168 ar = 0x93;
2169 if (seg == VCPU_SREG_CS)
2170 ar |= 0x08; /* code segment */
2171 } else
2172 ar = 0xf3;
2173
2174 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002175}
2176
Sheng Yangf78e0e22007-10-29 09:40:42 +08002177static int alloc_apic_access_page(struct kvm *kvm)
2178{
2179 struct kvm_userspace_memory_region kvm_userspace_mem;
2180 int r = 0;
2181
Izik Eidus72dc67a2008-02-10 18:04:15 +02002182 down_write(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002183 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08002184 goto out;
2185 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
2186 kvm_userspace_mem.flags = 0;
2187 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
2188 kvm_userspace_mem.memory_size = PAGE_SIZE;
2189 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2190 if (r)
2191 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002192
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002193 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002194out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02002195 up_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002196 return r;
2197}
2198
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002199static int alloc_identity_pagetable(struct kvm *kvm)
2200{
2201 struct kvm_userspace_memory_region kvm_userspace_mem;
2202 int r = 0;
2203
2204 down_write(&kvm->slots_lock);
2205 if (kvm->arch.ept_identity_pagetable)
2206 goto out;
2207 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2208 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002209 kvm_userspace_mem.guest_phys_addr =
2210 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002211 kvm_userspace_mem.memory_size = PAGE_SIZE;
2212 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2213 if (r)
2214 goto out;
2215
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002216 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08002217 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002218out:
2219 up_write(&kvm->slots_lock);
2220 return r;
2221}
2222
Sheng Yang2384d2b2008-01-17 15:14:33 +08002223static void allocate_vpid(struct vcpu_vmx *vmx)
2224{
2225 int vpid;
2226
2227 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02002228 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002229 return;
2230 spin_lock(&vmx_vpid_lock);
2231 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2232 if (vpid < VMX_NR_VPIDS) {
2233 vmx->vpid = vpid;
2234 __set_bit(vpid, vmx_vpid_bitmap);
2235 }
2236 spin_unlock(&vmx_vpid_lock);
2237}
2238
Avi Kivity58972972009-02-24 22:26:47 +02002239static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002240{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002241 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08002242
2243 if (!cpu_has_vmx_msr_bitmap())
2244 return;
2245
2246 /*
2247 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2248 * have the write-low and read-high bitmap offsets the wrong way round.
2249 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2250 */
Sheng Yang25c5f222008-03-28 13:18:56 +08002251 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002252 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
2253 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08002254 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2255 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002256 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
2257 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08002258 }
Sheng Yang25c5f222008-03-28 13:18:56 +08002259}
2260
Avi Kivity58972972009-02-24 22:26:47 +02002261static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
2262{
2263 if (!longmode_only)
2264 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
2265 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
2266}
2267
Avi Kivity6aa8b732006-12-10 02:21:36 -08002268/*
2269 * Sets up the vmcs for emulated real mode.
2270 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002271static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002272{
Sheng Yang468d4722008-10-09 16:01:55 +08002273 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002274 u32 junk;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002275 u64 host_pat, tsc_this, tsc_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002276 unsigned long a;
2277 struct descriptor_table dt;
2278 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002279 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002280 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002281
Avi Kivity6aa8b732006-12-10 02:21:36 -08002282 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002283 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
2284 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002285
Sheng Yang25c5f222008-03-28 13:18:56 +08002286 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02002287 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08002288
Avi Kivity6aa8b732006-12-10 02:21:36 -08002289 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2290
Avi Kivity6aa8b732006-12-10 02:21:36 -08002291 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002292 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2293 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002294
2295 exec_control = vmcs_config.cpu_based_exec_ctrl;
2296 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2297 exec_control &= ~CPU_BASED_TPR_SHADOW;
2298#ifdef CONFIG_X86_64
2299 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2300 CPU_BASED_CR8_LOAD_EXITING;
2301#endif
2302 }
Avi Kivity089d0342009-03-23 18:26:32 +02002303 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002304 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03002305 CPU_BASED_CR3_LOAD_EXITING |
2306 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002307 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002308
Sheng Yang83ff3b92007-11-21 14:33:25 +08002309 if (cpu_has_secondary_exec_ctrls()) {
2310 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2311 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2312 exec_control &=
2313 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002314 if (vmx->vpid == 0)
2315 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Avi Kivity089d0342009-03-23 18:26:32 +02002316 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002317 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002318 if (!enable_unrestricted_guest)
2319 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002320 if (!ple_gap)
2321 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002322 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2323 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002324
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002325 if (ple_gap) {
2326 vmcs_write32(PLE_GAP, ple_gap);
2327 vmcs_write32(PLE_WINDOW, ple_window);
2328 }
2329
Avi Kivityc7addb92007-09-16 18:58:32 +02002330 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2331 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002332 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2333
2334 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2335 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2336 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2337
2338 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2339 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2340 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002341 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2342 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002343 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002344#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002345 rdmsrl(MSR_FS_BASE, a);
2346 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2347 rdmsrl(MSR_GS_BASE, a);
2348 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2349#else
2350 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2351 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2352#endif
2353
2354 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2355
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002356 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002357 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2358
Mike Dayd77c26f2007-10-08 09:02:08 -04002359 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002360 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002361 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2362 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2363 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002364
2365 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2366 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2367 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2368 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2369 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2370 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2371
Sheng Yang468d4722008-10-09 16:01:55 +08002372 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2373 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2374 host_pat = msr_low | ((u64) msr_high << 32);
2375 vmcs_write64(HOST_IA32_PAT, host_pat);
2376 }
2377 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2378 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2379 host_pat = msr_low | ((u64) msr_high << 32);
2380 /* Write the default value follow host pat */
2381 vmcs_write64(GUEST_IA32_PAT, host_pat);
2382 /* Keep arch.pat sync with GUEST_IA32_PAT */
2383 vmx->vcpu.arch.pat = host_pat;
2384 }
2385
Avi Kivity6aa8b732006-12-10 02:21:36 -08002386 for (i = 0; i < NR_VMX_MSR; ++i) {
2387 u32 index = vmx_msr_index[i];
2388 u32 data_low, data_high;
2389 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002390 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002391
2392 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2393 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002394 if (wrmsr_safe(index, data_low, data_high) < 0)
2395 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002396 data = data_low | ((u64)data_high << 32);
Avi Kivity26bb0982009-09-07 11:14:12 +03002397 vmx->guest_msrs[j].index = i;
2398 vmx->guest_msrs[j].data = 0;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002399 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002400 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002401
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002402 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002403
2404 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002405 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2406
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002407 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
2408 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
2409
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002410 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2411 rdtscll(tsc_this);
2412 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2413 tsc_base = tsc_this;
2414
2415 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002416
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002417 return 0;
2418}
2419
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002420static int init_rmode(struct kvm *kvm)
2421{
2422 if (!init_rmode_tss(kvm))
2423 return 0;
2424 if (!init_rmode_identity_map(kvm))
2425 return 0;
2426 return 1;
2427}
2428
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002429static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2430{
2431 struct vcpu_vmx *vmx = to_vmx(vcpu);
2432 u64 msr;
2433 int ret;
2434
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002435 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002436 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002437 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002438 ret = -ENOMEM;
2439 goto out;
2440 }
2441
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002442 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002443
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002444 vmx->soft_vnmi_blocked = 0;
2445
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002446 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002447 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002448 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002449 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002450 msr |= MSR_IA32_APICBASE_BSP;
2451 kvm_set_apic_base(&vmx->vcpu, msr);
2452
2453 fx_init(&vmx->vcpu);
2454
Avi Kivity5706be02008-08-20 15:07:31 +03002455 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002456 /*
2457 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2458 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2459 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002460 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002461 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2462 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2463 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002464 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2465 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002466 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002467
2468 seg_setup(VCPU_SREG_DS);
2469 seg_setup(VCPU_SREG_ES);
2470 seg_setup(VCPU_SREG_FS);
2471 seg_setup(VCPU_SREG_GS);
2472 seg_setup(VCPU_SREG_SS);
2473
2474 vmcs_write16(GUEST_TR_SELECTOR, 0);
2475 vmcs_writel(GUEST_TR_BASE, 0);
2476 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2477 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2478
2479 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2480 vmcs_writel(GUEST_LDTR_BASE, 0);
2481 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2482 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2483
2484 vmcs_write32(GUEST_SYSENTER_CS, 0);
2485 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2486 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2487
2488 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002489 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002490 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002491 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002492 kvm_rip_write(vcpu, 0);
2493 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002494
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002495 vmcs_writel(GUEST_DR7, 0x400);
2496
2497 vmcs_writel(GUEST_GDTR_BASE, 0);
2498 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2499
2500 vmcs_writel(GUEST_IDTR_BASE, 0);
2501 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2502
2503 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2504 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2505 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2506
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002507 /* Special registers */
2508 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2509
2510 setup_msrs(vmx);
2511
Avi Kivity6aa8b732006-12-10 02:21:36 -08002512 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2513
Sheng Yangf78e0e22007-10-29 09:40:42 +08002514 if (cpu_has_vmx_tpr_shadow()) {
2515 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2516 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2517 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002518 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002519 vmcs_write32(TPR_THRESHOLD, 0);
2520 }
2521
2522 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2523 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002524 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002525
Sheng Yang2384d2b2008-01-17 15:14:33 +08002526 if (vmx->vpid != 0)
2527 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2528
Eduardo Habkostfa400522009-10-24 02:49:58 -02002529 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002530 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002531 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002532 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002533 vmx_fpu_activate(&vmx->vcpu);
2534 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002535
Sheng Yang2384d2b2008-01-17 15:14:33 +08002536 vpid_sync_vcpu_all(vmx);
2537
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002538 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002539
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002540 /* HACK: Don't enable emulation on guest boot/reset */
2541 vmx->emulation_required = 0;
2542
Avi Kivity6aa8b732006-12-10 02:21:36 -08002543out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002544 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002545 return ret;
2546}
2547
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002548static void enable_irq_window(struct kvm_vcpu *vcpu)
2549{
2550 u32 cpu_based_vm_exec_control;
2551
2552 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2553 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2554 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2555}
2556
2557static void enable_nmi_window(struct kvm_vcpu *vcpu)
2558{
2559 u32 cpu_based_vm_exec_control;
2560
2561 if (!cpu_has_virtual_nmis()) {
2562 enable_irq_window(vcpu);
2563 return;
2564 }
2565
2566 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2567 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2568 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2569}
2570
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002571static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03002572{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002573 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002574 uint32_t intr;
2575 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02002576
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002577 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002578
Avi Kivityfa89a812008-09-01 15:57:51 +03002579 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002580 if (vmx->rmode.vm86_active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002581 vmx->rmode.irq.pending = true;
2582 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002583 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +03002584 if (vcpu->arch.interrupt.soft)
2585 vmx->rmode.irq.rip +=
2586 vmx->vcpu.arch.event_exit_inst_len;
Avi Kivity9c5623e2007-11-08 18:19:20 +02002587 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2588 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2589 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002590 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002591 return;
2592 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002593 intr = irq | INTR_INFO_VALID_MASK;
2594 if (vcpu->arch.interrupt.soft) {
2595 intr |= INTR_TYPE_SOFT_INTR;
2596 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2597 vmx->vcpu.arch.event_exit_inst_len);
2598 } else
2599 intr |= INTR_TYPE_EXT_INTR;
2600 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03002601}
2602
Sheng Yangf08864b2008-05-15 18:23:25 +08002603static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2604{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002605 struct vcpu_vmx *vmx = to_vmx(vcpu);
2606
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002607 if (!cpu_has_virtual_nmis()) {
2608 /*
2609 * Tracking the NMI-blocked state in software is built upon
2610 * finding the next open IRQ window. This, in turn, depends on
2611 * well-behaving guests: They have to keep IRQs disabled at
2612 * least as long as the NMI handler runs. Otherwise we may
2613 * cause NMI nesting, maybe breaking the guest. But as this is
2614 * highly unlikely, we can live with the residual risk.
2615 */
2616 vmx->soft_vnmi_blocked = 1;
2617 vmx->vnmi_blocked_time = 0;
2618 }
2619
Jan Kiszka487b3912008-09-26 09:30:56 +02002620 ++vcpu->stat.nmi_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002621 if (vmx->rmode.vm86_active) {
Jan Kiszka66a5a342008-09-26 09:30:51 +02002622 vmx->rmode.irq.pending = true;
2623 vmx->rmode.irq.vector = NMI_VECTOR;
2624 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2625 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2626 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2627 INTR_INFO_VALID_MASK);
2628 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2629 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2630 return;
2631 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002632 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2633 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002634}
2635
Gleb Natapovc4282df2009-04-21 17:45:07 +03002636static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02002637{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002638 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03002639 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002640
Gleb Natapovc4282df2009-04-21 17:45:07 +03002641 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2642 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS |
2643 GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02002644}
2645
Gleb Natapov78646122009-03-23 12:12:11 +02002646static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2647{
Gleb Natapovc4282df2009-04-21 17:45:07 +03002648 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2649 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2650 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02002651}
2652
Izik Eiduscbc94022007-10-25 00:29:55 +02002653static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2654{
2655 int ret;
2656 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002657 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002658 .guest_phys_addr = addr,
2659 .memory_size = PAGE_SIZE * 3,
2660 .flags = 0,
2661 };
2662
2663 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2664 if (ret)
2665 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002666 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002667 return 0;
2668}
2669
Avi Kivity6aa8b732006-12-10 02:21:36 -08002670static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2671 int vec, u32 err_code)
2672{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002673 /*
2674 * Instruction with address size override prefix opcode 0x67
2675 * Cause the #SS fault with 0 error code in VM86 mode.
2676 */
2677 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Avi Kivity851ba692009-08-24 11:10:17 +03002678 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002679 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002680 /*
2681 * Forward all other exceptions that are valid in real mode.
2682 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2683 * the required debugging infrastructure rework.
2684 */
2685 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002686 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002687 if (vcpu->guest_debug &
2688 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2689 return 0;
2690 kvm_queue_exception(vcpu, vec);
2691 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002692 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002693 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2694 return 0;
2695 /* fall through */
2696 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002697 case OF_VECTOR:
2698 case BR_VECTOR:
2699 case UD_VECTOR:
2700 case DF_VECTOR:
2701 case SS_VECTOR:
2702 case GP_VECTOR:
2703 case MF_VECTOR:
2704 kvm_queue_exception(vcpu, vec);
2705 return 1;
2706 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002707 return 0;
2708}
2709
Andi Kleena0861c02009-06-08 17:37:09 +08002710/*
2711 * Trigger machine check on the host. We assume all the MSRs are already set up
2712 * by the CPU and that we still run on the same CPU as the MCE occurred on.
2713 * We pass a fake environment to the machine check handler because we want
2714 * the guest to be always treated like user space, no matter what context
2715 * it used internally.
2716 */
2717static void kvm_machine_check(void)
2718{
2719#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
2720 struct pt_regs regs = {
2721 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
2722 .flags = X86_EFLAGS_IF,
2723 };
2724
2725 do_machine_check(&regs, 0);
2726#endif
2727}
2728
Avi Kivity851ba692009-08-24 11:10:17 +03002729static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08002730{
2731 /* already handled by vcpu_run */
2732 return 1;
2733}
2734
Avi Kivity851ba692009-08-24 11:10:17 +03002735static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002736{
Avi Kivity1155f762007-11-22 11:30:47 +02002737 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002738 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002739 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002740 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002741 u32 vect_info;
2742 enum emulation_result er;
2743
Avi Kivity1155f762007-11-22 11:30:47 +02002744 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002745 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2746
Andi Kleena0861c02009-06-08 17:37:09 +08002747 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03002748 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08002749
Avi Kivity6aa8b732006-12-10 02:21:36 -08002750 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Mike Dayd77c26f2007-10-08 09:02:08 -04002751 !is_page_fault(intr_info))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002752 printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002753 "intr info 0x%x\n", __func__, vect_info, intr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002754
Jan Kiszkae4a41882008-09-26 09:30:46 +02002755 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002756 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002757
2758 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002759 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002760 return 1;
2761 }
2762
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002763 if (is_invalid_opcode(intr_info)) {
Avi Kivity851ba692009-08-24 11:10:17 +03002764 er = emulate_instruction(vcpu, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002765 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002766 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002767 return 1;
2768 }
2769
Avi Kivity6aa8b732006-12-10 02:21:36 -08002770 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002771 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002772 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002773 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2774 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002775 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02002776 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002777 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002778 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002779 trace_kvm_page_fault(cr2, error_code);
2780
Gleb Natapov3298b752009-05-11 13:35:46 +03002781 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03002782 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002783 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002784 }
2785
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002786 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002787 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002788 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002789 if (vcpu->arch.halt_request) {
2790 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002791 return kvm_emulate_halt(vcpu);
2792 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002793 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002794 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002795
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002796 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002797 switch (ex_no) {
2798 case DB_VECTOR:
2799 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2800 if (!(vcpu->guest_debug &
2801 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2802 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2803 kvm_queue_exception(vcpu, DB_VECTOR);
2804 return 1;
2805 }
2806 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2807 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2808 /* fall through */
2809 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002810 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002811 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2812 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002813 break;
2814 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002815 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2816 kvm_run->ex.exception = ex_no;
2817 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002818 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002819 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002820 return 0;
2821}
2822
Avi Kivity851ba692009-08-24 11:10:17 +03002823static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002824{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002825 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002826 return 1;
2827}
2828
Avi Kivity851ba692009-08-24 11:10:17 +03002829static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08002830{
Avi Kivity851ba692009-08-24 11:10:17 +03002831 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08002832 return 0;
2833}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002834
Avi Kivity851ba692009-08-24 11:10:17 +03002835static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002836{
He, Qingbfdaab02007-09-12 14:18:28 +08002837 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002838 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002839 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002840
Avi Kivity1165f5f2007-04-19 17:27:43 +03002841 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002842 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002843 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002844
2845 if (string) {
Avi Kivity851ba692009-08-24 11:10:17 +03002846 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002847 return 0;
2848 return 1;
2849 }
2850
2851 size = (exit_qualification & 7) + 1;
2852 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002853 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002854
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002855 skip_emulated_instruction(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002856 return kvm_emulate_pio(vcpu, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002857}
2858
Ingo Molnar102d8322007-02-19 14:37:47 +02002859static void
2860vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2861{
2862 /*
2863 * Patch in the VMCALL instruction:
2864 */
2865 hypercall[0] = 0x0f;
2866 hypercall[1] = 0x01;
2867 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002868}
2869
Avi Kivity851ba692009-08-24 11:10:17 +03002870static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002871{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002872 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002873 int cr;
2874 int reg;
2875
He, Qingbfdaab02007-09-12 14:18:28 +08002876 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002877 cr = exit_qualification & 15;
2878 reg = (exit_qualification >> 8) & 15;
2879 switch ((exit_qualification >> 4) & 3) {
2880 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002881 val = kvm_register_read(vcpu, reg);
2882 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002883 switch (cr) {
2884 case 0:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002885 kvm_set_cr0(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002886 skip_emulated_instruction(vcpu);
2887 return 1;
2888 case 3:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002889 kvm_set_cr3(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002890 skip_emulated_instruction(vcpu);
2891 return 1;
2892 case 4:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002893 kvm_set_cr4(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002894 skip_emulated_instruction(vcpu);
2895 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002896 case 8: {
2897 u8 cr8_prev = kvm_get_cr8(vcpu);
2898 u8 cr8 = kvm_register_read(vcpu, reg);
2899 kvm_set_cr8(vcpu, cr8);
2900 skip_emulated_instruction(vcpu);
2901 if (irqchip_in_kernel(vcpu->kvm))
2902 return 1;
2903 if (cr8_prev <= cr8)
2904 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03002905 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002906 return 0;
2907 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002908 };
2909 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002910 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002911 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002912 vcpu->arch.cr0 &= ~X86_CR0_TS;
2913 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002914 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002915 skip_emulated_instruction(vcpu);
2916 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002917 case 1: /*mov from cr*/
2918 switch (cr) {
2919 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002920 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002921 trace_kvm_cr_read(cr, vcpu->arch.cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002922 skip_emulated_instruction(vcpu);
2923 return 1;
2924 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002925 val = kvm_get_cr8(vcpu);
2926 kvm_register_write(vcpu, reg, val);
2927 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002928 skip_emulated_instruction(vcpu);
2929 return 1;
2930 }
2931 break;
2932 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002933 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002934
2935 skip_emulated_instruction(vcpu);
2936 return 1;
2937 default:
2938 break;
2939 }
Avi Kivity851ba692009-08-24 11:10:17 +03002940 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002941 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002942 (int)(exit_qualification >> 4) & 3, cr);
2943 return 0;
2944}
2945
Avi Kivity851ba692009-08-24 11:10:17 +03002946static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002947{
He, Qingbfdaab02007-09-12 14:18:28 +08002948 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002949 unsigned long val;
2950 int dr, reg;
2951
Avi Kivity0a79b002009-09-01 12:03:25 +03002952 if (!kvm_require_cpl(vcpu, 0))
2953 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002954 dr = vmcs_readl(GUEST_DR7);
2955 if (dr & DR7_GD) {
2956 /*
2957 * As the vm-exit takes precedence over the debug trap, we
2958 * need to emulate the latter, either for the host or the
2959 * guest debugging itself.
2960 */
2961 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03002962 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
2963 vcpu->run->debug.arch.dr7 = dr;
2964 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002965 vmcs_readl(GUEST_CS_BASE) +
2966 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03002967 vcpu->run->debug.arch.exception = DB_VECTOR;
2968 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002969 return 0;
2970 } else {
2971 vcpu->arch.dr7 &= ~DR7_GD;
2972 vcpu->arch.dr6 |= DR6_BD;
2973 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2974 kvm_queue_exception(vcpu, DB_VECTOR);
2975 return 1;
2976 }
2977 }
2978
He, Qingbfdaab02007-09-12 14:18:28 +08002979 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002980 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
2981 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
2982 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002983 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002984 case 0 ... 3:
2985 val = vcpu->arch.db[dr];
2986 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002987 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002988 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002989 break;
2990 case 7:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002991 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002992 break;
2993 default:
2994 val = 0;
2995 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002996 kvm_register_write(vcpu, reg, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002997 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002998 val = vcpu->arch.regs[reg];
2999 switch (dr) {
3000 case 0 ... 3:
3001 vcpu->arch.db[dr] = val;
3002 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
3003 vcpu->arch.eff_db[dr] = val;
3004 break;
3005 case 4 ... 5:
3006 if (vcpu->arch.cr4 & X86_CR4_DE)
3007 kvm_queue_exception(vcpu, UD_VECTOR);
3008 break;
3009 case 6:
3010 if (val & 0xffffffff00000000ULL) {
3011 kvm_queue_exception(vcpu, GP_VECTOR);
3012 break;
3013 }
3014 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
3015 break;
3016 case 7:
3017 if (val & 0xffffffff00000000ULL) {
3018 kvm_queue_exception(vcpu, GP_VECTOR);
3019 break;
3020 }
3021 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
3022 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
3023 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3024 vcpu->arch.switch_db_regs =
3025 (val & DR7_BP_EN_MASK);
3026 }
3027 break;
3028 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003029 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003030 skip_emulated_instruction(vcpu);
3031 return 1;
3032}
3033
Avi Kivity851ba692009-08-24 11:10:17 +03003034static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003035{
Avi Kivity06465c52007-02-28 20:46:53 +02003036 kvm_emulate_cpuid(vcpu);
3037 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003038}
3039
Avi Kivity851ba692009-08-24 11:10:17 +03003040static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003041{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003042 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08003043 u64 data;
3044
3045 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003046 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003047 return 1;
3048 }
3049
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003050 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003051
Avi Kivity6aa8b732006-12-10 02:21:36 -08003052 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003053 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
3054 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003055 skip_emulated_instruction(vcpu);
3056 return 1;
3057}
3058
Avi Kivity851ba692009-08-24 11:10:17 +03003059static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003060{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003061 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
3062 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
3063 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003064
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003065 trace_kvm_msr_write(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003066
Avi Kivity6aa8b732006-12-10 02:21:36 -08003067 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003068 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003069 return 1;
3070 }
3071
3072 skip_emulated_instruction(vcpu);
3073 return 1;
3074}
3075
Avi Kivity851ba692009-08-24 11:10:17 +03003076static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003077{
3078 return 1;
3079}
3080
Avi Kivity851ba692009-08-24 11:10:17 +03003081static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003082{
Eddie Dong85f455f2007-07-06 12:20:49 +03003083 u32 cpu_based_vm_exec_control;
3084
3085 /* clear pending irq */
3086 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3087 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
3088 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003089
Jan Kiszkaa26bf122008-09-26 09:30:45 +02003090 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003091
Dor Laorc1150d82007-01-05 16:36:24 -08003092 /*
3093 * If the user space waits to inject interrupts, exit as soon as
3094 * possible
3095 */
Gleb Natapov80618232009-04-21 17:44:56 +03003096 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03003097 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03003098 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003099 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08003100 return 0;
3101 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003102 return 1;
3103}
3104
Avi Kivity851ba692009-08-24 11:10:17 +03003105static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003106{
3107 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003108 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003109}
3110
Avi Kivity851ba692009-08-24 11:10:17 +03003111static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02003112{
Dor Laor510043d2007-02-19 18:25:43 +02003113 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003114 kvm_emulate_hypercall(vcpu);
3115 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003116}
3117
Avi Kivity851ba692009-08-24 11:10:17 +03003118static int handle_vmx_insn(struct kvm_vcpu *vcpu)
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003119{
3120 kvm_queue_exception(vcpu, UD_VECTOR);
3121 return 1;
3122}
3123
Avi Kivity851ba692009-08-24 11:10:17 +03003124static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003125{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003126 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003127
3128 kvm_mmu_invlpg(vcpu, exit_qualification);
3129 skip_emulated_instruction(vcpu);
3130 return 1;
3131}
3132
Avi Kivity851ba692009-08-24 11:10:17 +03003133static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02003134{
3135 skip_emulated_instruction(vcpu);
3136 /* TODO: Add support for VT-d/pass-through device */
3137 return 1;
3138}
3139
Avi Kivity851ba692009-08-24 11:10:17 +03003140static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003141{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003142 unsigned long exit_qualification;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003143 enum emulation_result er;
3144 unsigned long offset;
3145
Sheng Yangf9c617f2009-03-25 10:08:52 +08003146 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003147 offset = exit_qualification & 0xffful;
3148
Avi Kivity851ba692009-08-24 11:10:17 +03003149 er = emulate_instruction(vcpu, 0, 0, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003150
3151 if (er != EMULATE_DONE) {
3152 printk(KERN_ERR
3153 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3154 offset);
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003155 return -ENOEXEC;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003156 }
3157 return 1;
3158}
3159
Avi Kivity851ba692009-08-24 11:10:17 +03003160static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02003161{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003162 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003163 unsigned long exit_qualification;
3164 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003165 int reason, type, idt_v;
3166
3167 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
3168 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02003169
3170 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3171
3172 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003173 if (reason == TASK_SWITCH_GATE && idt_v) {
3174 switch (type) {
3175 case INTR_TYPE_NMI_INTR:
3176 vcpu->arch.nmi_injected = false;
3177 if (cpu_has_virtual_nmis())
3178 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3179 GUEST_INTR_STATE_NMI);
3180 break;
3181 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003182 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003183 kvm_clear_interrupt_queue(vcpu);
3184 break;
3185 case INTR_TYPE_HARD_EXCEPTION:
3186 case INTR_TYPE_SOFT_EXCEPTION:
3187 kvm_clear_exception_queue(vcpu);
3188 break;
3189 default:
3190 break;
3191 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02003192 }
Izik Eidus37817f22008-03-24 23:14:53 +02003193 tss_selector = exit_qualification;
3194
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003195 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
3196 type != INTR_TYPE_EXT_INTR &&
3197 type != INTR_TYPE_NMI_INTR))
3198 skip_emulated_instruction(vcpu);
3199
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003200 if (!kvm_task_switch(vcpu, tss_selector, reason))
3201 return 0;
3202
3203 /* clear all local breakpoint enable flags */
3204 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3205
3206 /*
3207 * TODO: What about debug traps on tss switch?
3208 * Are we supposed to inject them and update dr6?
3209 */
3210
3211 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003212}
3213
Avi Kivity851ba692009-08-24 11:10:17 +03003214static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08003215{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003216 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003217 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003218 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003219
Sheng Yangf9c617f2009-03-25 10:08:52 +08003220 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08003221
3222 if (exit_qualification & (1 << 6)) {
3223 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003224 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08003225 }
3226
3227 gla_validity = (exit_qualification >> 7) & 0x3;
3228 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3229 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3230 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3231 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08003232 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08003233 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3234 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03003235 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3236 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03003237 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08003238 }
3239
3240 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003241 trace_kvm_page_fault(gpa, exit_qualification);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003242 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003243}
3244
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003245static u64 ept_rsvd_mask(u64 spte, int level)
3246{
3247 int i;
3248 u64 mask = 0;
3249
3250 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
3251 mask |= (1ULL << i);
3252
3253 if (level > 2)
3254 /* bits 7:3 reserved */
3255 mask |= 0xf8;
3256 else if (level == 2) {
3257 if (spte & (1ULL << 7))
3258 /* 2MB ref, bits 20:12 reserved */
3259 mask |= 0x1ff000;
3260 else
3261 /* bits 6:3 reserved */
3262 mask |= 0x78;
3263 }
3264
3265 return mask;
3266}
3267
3268static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
3269 int level)
3270{
3271 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
3272
3273 /* 010b (write-only) */
3274 WARN_ON((spte & 0x7) == 0x2);
3275
3276 /* 110b (write/execute) */
3277 WARN_ON((spte & 0x7) == 0x6);
3278
3279 /* 100b (execute-only) and value not supported by logical processor */
3280 if (!cpu_has_vmx_ept_execute_only())
3281 WARN_ON((spte & 0x7) == 0x4);
3282
3283 /* not 000b */
3284 if ((spte & 0x7)) {
3285 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
3286
3287 if (rsvd_bits != 0) {
3288 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
3289 __func__, rsvd_bits);
3290 WARN_ON(1);
3291 }
3292
3293 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
3294 u64 ept_mem_type = (spte & 0x38) >> 3;
3295
3296 if (ept_mem_type == 2 || ept_mem_type == 3 ||
3297 ept_mem_type == 7) {
3298 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
3299 __func__, ept_mem_type);
3300 WARN_ON(1);
3301 }
3302 }
3303 }
3304}
3305
Avi Kivity851ba692009-08-24 11:10:17 +03003306static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003307{
3308 u64 sptes[4];
3309 int nr_sptes, i;
3310 gpa_t gpa;
3311
3312 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
3313
3314 printk(KERN_ERR "EPT: Misconfiguration.\n");
3315 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
3316
3317 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
3318
3319 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
3320 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
3321
Avi Kivity851ba692009-08-24 11:10:17 +03003322 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3323 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003324
3325 return 0;
3326}
3327
Avi Kivity851ba692009-08-24 11:10:17 +03003328static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08003329{
3330 u32 cpu_based_vm_exec_control;
3331
3332 /* clear pending NMI */
3333 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3334 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3335 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3336 ++vcpu->stat.nmi_window_exits;
3337
3338 return 1;
3339}
3340
Mohammed Gamal80ced182009-09-01 12:48:18 +02003341static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003342{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003343 struct vcpu_vmx *vmx = to_vmx(vcpu);
3344 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003345 int ret = 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003346
3347 while (!guest_state_valid(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003348 err = emulate_instruction(vcpu, 0, 0, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003349
Mohammed Gamal80ced182009-09-01 12:48:18 +02003350 if (err == EMULATE_DO_MMIO) {
3351 ret = 0;
3352 goto out;
3353 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003354
3355 if (err != EMULATE_DONE) {
3356 kvm_report_emulation_failure(vcpu, "emulation failure");
Mohammed Gamal80ced182009-09-01 12:48:18 +02003357 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3358 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
3359 ret = 0;
3360 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003361 }
3362
3363 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02003364 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003365 if (need_resched())
3366 schedule();
3367 }
3368
Mohammed Gamal80ced182009-09-01 12:48:18 +02003369 vmx->emulation_required = 0;
3370out:
3371 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003372}
3373
Avi Kivity6aa8b732006-12-10 02:21:36 -08003374/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003375 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
3376 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
3377 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03003378static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003379{
3380 skip_emulated_instruction(vcpu);
3381 kvm_vcpu_on_spin(vcpu);
3382
3383 return 1;
3384}
3385
3386/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003387 * The exit handlers return 1 if the exit was handled fully and guest execution
3388 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3389 * to be done to userspace and return 0.
3390 */
Avi Kivity851ba692009-08-24 11:10:17 +03003391static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003392 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3393 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003394 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003395 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003396 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003397 [EXIT_REASON_CR_ACCESS] = handle_cr,
3398 [EXIT_REASON_DR_ACCESS] = handle_dr,
3399 [EXIT_REASON_CPUID] = handle_cpuid,
3400 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3401 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3402 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3403 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003404 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003405 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003406 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
3407 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
3408 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
3409 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
3410 [EXIT_REASON_VMREAD] = handle_vmx_insn,
3411 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
3412 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
3413 [EXIT_REASON_VMOFF] = handle_vmx_insn,
3414 [EXIT_REASON_VMON] = handle_vmx_insn,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003415 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3416 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003417 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003418 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08003419 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003420 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
3421 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003422 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003423};
3424
3425static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003426 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003427
3428/*
3429 * The guest has exited. See if we can fix it or if we need userspace
3430 * assistance.
3431 */
Avi Kivity851ba692009-08-24 11:10:17 +03003432static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003433{
Avi Kivity29bd8a72007-09-10 17:27:03 +03003434 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003435 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02003436 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003437
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003438 trace_kvm_exit(exit_reason, kvm_rip_read(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003439
Mohammed Gamal80ced182009-09-01 12:48:18 +02003440 /* If guest state is invalid, start emulating */
3441 if (vmx->emulation_required && emulate_invalid_guest_state)
3442 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003443
Sheng Yang14394422008-04-28 12:24:45 +08003444 /* Access CR3 don't cause VMExit in paging mode, so we need
3445 * to sync with guest real CR3. */
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003446 if (enable_ept && is_paging(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003447 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003448
Avi Kivity29bd8a72007-09-10 17:27:03 +03003449 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003450 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3451 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03003452 = vmcs_read32(VM_INSTRUCTION_ERROR);
3453 return 0;
3454 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003455
Mike Dayd77c26f2007-10-08 09:02:08 -04003456 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003457 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003458 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3459 exit_reason != EXIT_REASON_TASK_SWITCH))
3460 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3461 "(0x%x) and exit reason is 0x%x\n",
3462 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003463
3464 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03003465 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003466 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003467 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003468 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003469 /*
3470 * This CPU don't support us in finding the end of an
3471 * NMI-blocked window if the guest runs with IRQs
3472 * disabled. So we pull the trigger after 1 s of
3473 * futile waiting, but inform the user about this.
3474 */
3475 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3476 "state on VCPU %d after 1 s timeout\n",
3477 __func__, vcpu->vcpu_id);
3478 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003479 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003480 }
3481
Avi Kivity6aa8b732006-12-10 02:21:36 -08003482 if (exit_reason < kvm_vmx_max_exit_handlers
3483 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03003484 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003485 else {
Avi Kivity851ba692009-08-24 11:10:17 +03003486 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3487 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003488 }
3489 return 0;
3490}
3491
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003492static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003493{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003494 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003495 vmcs_write32(TPR_THRESHOLD, 0);
3496 return;
3497 }
3498
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003499 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003500}
3501
Avi Kivitycf393f72008-07-01 16:20:21 +03003502static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3503{
3504 u32 exit_intr_info;
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003505 u32 idt_vectoring_info = vmx->idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003506 bool unblock_nmi;
3507 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003508 int type;
3509 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03003510
3511 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Gleb Natapov20f65982009-05-11 13:35:55 +03003512
Andi Kleena0861c02009-06-08 17:37:09 +08003513 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
3514
3515 /* Handle machine checks before interrupts are enabled */
3516 if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
3517 || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
3518 && is_machine_check(exit_intr_info)))
3519 kvm_machine_check();
3520
Gleb Natapov20f65982009-05-11 13:35:55 +03003521 /* We need to handle NMIs before interrupts are enabled */
3522 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003523 (exit_intr_info & INTR_INFO_VALID_MASK))
Gleb Natapov20f65982009-05-11 13:35:55 +03003524 asm("int $2");
Gleb Natapov20f65982009-05-11 13:35:55 +03003525
3526 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3527
Avi Kivitycf393f72008-07-01 16:20:21 +03003528 if (cpu_has_virtual_nmis()) {
3529 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3530 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3531 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003532 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03003533 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3534 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003535 * SDM 3: 23.2.2 (September 2008)
3536 * Bit 12 is undefined in any of the following cases:
3537 * If the VM exit sets the valid bit in the IDT-vectoring
3538 * information field.
3539 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03003540 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003541 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
3542 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03003543 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3544 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003545 } else if (unlikely(vmx->soft_vnmi_blocked))
3546 vmx->vnmi_blocked_time +=
3547 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003548
Gleb Natapov37b96e92009-03-30 16:03:13 +03003549 vmx->vcpu.arch.nmi_injected = false;
3550 kvm_clear_exception_queue(&vmx->vcpu);
3551 kvm_clear_interrupt_queue(&vmx->vcpu);
3552
3553 if (!idtv_info_valid)
3554 return;
3555
Avi Kivity668f6122008-07-02 09:28:55 +03003556 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3557 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003558
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003559 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003560 case INTR_TYPE_NMI_INTR:
3561 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03003562 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003563 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03003564 * Clear bit "block by NMI" before VM entry if a NMI
3565 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03003566 */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003567 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3568 GUEST_INTR_STATE_NMI);
3569 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003570 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003571 vmx->vcpu.arch.event_exit_inst_len =
3572 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3573 /* fall through */
3574 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03003575 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003576 u32 err = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3577 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03003578 } else
3579 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003580 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003581 case INTR_TYPE_SOFT_INTR:
3582 vmx->vcpu.arch.event_exit_inst_len =
3583 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3584 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003585 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003586 kvm_queue_interrupt(&vmx->vcpu, vector,
3587 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003588 break;
3589 default:
3590 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03003591 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003592}
3593
Avi Kivity9c8cba32007-11-22 11:42:59 +02003594/*
3595 * Failure to inject an interrupt should give us the information
3596 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3597 * when fetching the interrupt redirection bitmap in the real-mode
3598 * tss, this doesn't happen. So we do it ourselves.
3599 */
3600static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3601{
3602 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003603 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003604 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003605 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003606 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3607 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3608 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3609 return;
3610 }
3611 vmx->idt_vectoring_info =
3612 VECTORING_INFO_VALID_MASK
3613 | INTR_TYPE_EXT_INTR
3614 | vmx->rmode.irq.vector;
3615}
3616
Avi Kivityc8019492008-07-14 14:44:59 +03003617#ifdef CONFIG_X86_64
3618#define R "r"
3619#define Q "q"
3620#else
3621#define R "e"
3622#define Q "l"
3623#endif
3624
Avi Kivity851ba692009-08-24 11:10:17 +03003625static void vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003626{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003627 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03003628
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003629 /* Record the guest's net vcpu time for enforced NMI injections. */
3630 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3631 vmx->entry_time = ktime_get();
3632
Mohammed Gamal80ced182009-09-01 12:48:18 +02003633 /* Don't enter VMX if guest state is invalid, let the exit handler
3634 start emulation until we arrive back to a valid state */
3635 if (vmx->emulation_required && emulate_invalid_guest_state)
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003636 return;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003637
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003638 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3639 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3640 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3641 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3642
Gleb Natapov787ff732009-05-18 11:44:06 +03003643 /* When single-stepping over STI and MOV SS, we must clear the
3644 * corresponding interruptibility bits in the guest state. Otherwise
3645 * vmentry fails as it then expects bit 14 (BS) in pending debug
3646 * exceptions being set, but that's not correct for the guest debugging
3647 * case. */
3648 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3649 vmx_set_interrupt_shadow(vcpu, 0);
3650
Avi Kivitye6adf282007-04-30 16:07:54 +03003651 /*
3652 * Loading guest fpu may have cleared host cr0.ts
3653 */
3654 vmcs_writel(HOST_CR0, read_cr0());
3655
Avi Kivitye8a48342009-09-01 16:06:25 +03003656 if (vcpu->arch.switch_db_regs)
3657 set_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003658
Mike Dayd77c26f2007-10-08 09:02:08 -04003659 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003660 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003661 "push %%"R"dx; push %%"R"bp;"
3662 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003663 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3664 "je 1f \n\t"
3665 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003666 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003667 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03003668 /* Reload cr2 if changed */
3669 "mov %c[cr2](%0), %%"R"ax \n\t"
3670 "mov %%cr2, %%"R"dx \n\t"
3671 "cmp %%"R"ax, %%"R"dx \n\t"
3672 "je 2f \n\t"
3673 "mov %%"R"ax, %%cr2 \n\t"
3674 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003675 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003676 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003677 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003678 "mov %c[rax](%0), %%"R"ax \n\t"
3679 "mov %c[rbx](%0), %%"R"bx \n\t"
3680 "mov %c[rdx](%0), %%"R"dx \n\t"
3681 "mov %c[rsi](%0), %%"R"si \n\t"
3682 "mov %c[rdi](%0), %%"R"di \n\t"
3683 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003684#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003685 "mov %c[r8](%0), %%r8 \n\t"
3686 "mov %c[r9](%0), %%r9 \n\t"
3687 "mov %c[r10](%0), %%r10 \n\t"
3688 "mov %c[r11](%0), %%r11 \n\t"
3689 "mov %c[r12](%0), %%r12 \n\t"
3690 "mov %c[r13](%0), %%r13 \n\t"
3691 "mov %c[r14](%0), %%r14 \n\t"
3692 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003693#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003694 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3695
Avi Kivity6aa8b732006-12-10 02:21:36 -08003696 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003697 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003698 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003699 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003700 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003701 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003702 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003703 "xchg %0, (%%"R"sp) \n\t"
3704 "mov %%"R"ax, %c[rax](%0) \n\t"
3705 "mov %%"R"bx, %c[rbx](%0) \n\t"
3706 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3707 "mov %%"R"dx, %c[rdx](%0) \n\t"
3708 "mov %%"R"si, %c[rsi](%0) \n\t"
3709 "mov %%"R"di, %c[rdi](%0) \n\t"
3710 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003711#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003712 "mov %%r8, %c[r8](%0) \n\t"
3713 "mov %%r9, %c[r9](%0) \n\t"
3714 "mov %%r10, %c[r10](%0) \n\t"
3715 "mov %%r11, %c[r11](%0) \n\t"
3716 "mov %%r12, %c[r12](%0) \n\t"
3717 "mov %%r13, %c[r13](%0) \n\t"
3718 "mov %%r14, %c[r14](%0) \n\t"
3719 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003720#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003721 "mov %%cr2, %%"R"ax \n\t"
3722 "mov %%"R"ax, %c[cr2](%0) \n\t"
3723
3724 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003725 "setbe %c[fail](%0) \n\t"
3726 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3727 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3728 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003729 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003730 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3731 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3732 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3733 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3734 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3735 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3736 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003737#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003738 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3739 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3740 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3741 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3742 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3743 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3744 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3745 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003746#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003747 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003748 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003749 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003750#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003751 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3752#endif
3753 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003754
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003755 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
3756 | (1 << VCPU_EXREG_PDPTR));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003757 vcpu->arch.regs_dirty = 0;
3758
Avi Kivitye8a48342009-09-01 16:06:25 +03003759 if (vcpu->arch.switch_db_regs)
3760 get_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003761
Avi Kivity1155f762007-11-22 11:30:47 +02003762 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003763 if (vmx->rmode.irq.pending)
3764 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003765
Mike Dayd77c26f2007-10-08 09:02:08 -04003766 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003767 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003768
Avi Kivitycf393f72008-07-01 16:20:21 +03003769 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003770}
3771
Avi Kivityc8019492008-07-14 14:44:59 +03003772#undef R
3773#undef Q
3774
Avi Kivity6aa8b732006-12-10 02:21:36 -08003775static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3776{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003777 struct vcpu_vmx *vmx = to_vmx(vcpu);
3778
3779 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003780 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003781 free_vmcs(vmx->vmcs);
3782 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003783 }
3784}
3785
3786static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3787{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003788 struct vcpu_vmx *vmx = to_vmx(vcpu);
3789
Sheng Yang2384d2b2008-01-17 15:14:33 +08003790 spin_lock(&vmx_vpid_lock);
3791 if (vmx->vpid != 0)
3792 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3793 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003794 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003795 kfree(vmx->guest_msrs);
3796 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003797 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003798}
3799
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003800static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003801{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003802 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003803 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003804 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003805
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003806 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003807 return ERR_PTR(-ENOMEM);
3808
Sheng Yang2384d2b2008-01-17 15:14:33 +08003809 allocate_vpid(vmx);
3810
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003811 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3812 if (err)
3813 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003814
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003815 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003816 if (!vmx->guest_msrs) {
3817 err = -ENOMEM;
3818 goto uninit_vcpu;
3819 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003820
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003821 vmx->vmcs = alloc_vmcs();
3822 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003823 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003824
3825 vmcs_clear(vmx->vmcs);
3826
Avi Kivity15ad7142007-07-11 18:17:21 +03003827 cpu = get_cpu();
3828 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003829 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003830 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003831 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003832 if (err)
3833 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003834 if (vm_need_virtualize_apic_accesses(kvm))
3835 if (alloc_apic_access_page(kvm) != 0)
3836 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003837
Sheng Yangb927a3c2009-07-21 10:42:48 +08003838 if (enable_ept) {
3839 if (!kvm->arch.ept_identity_map_addr)
3840 kvm->arch.ept_identity_map_addr =
3841 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003842 if (alloc_identity_pagetable(kvm) != 0)
3843 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003844 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003845
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003846 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003847
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003848free_vmcs:
3849 free_vmcs(vmx->vmcs);
3850free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003851 kfree(vmx->guest_msrs);
3852uninit_vcpu:
3853 kvm_vcpu_uninit(&vmx->vcpu);
3854free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003855 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003856 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003857}
3858
Yang, Sheng002c7f72007-07-31 14:23:01 +03003859static void __init vmx_check_processor_compat(void *rtn)
3860{
3861 struct vmcs_config vmcs_conf;
3862
3863 *(int *)rtn = 0;
3864 if (setup_vmcs_config(&vmcs_conf) < 0)
3865 *(int *)rtn = -EIO;
3866 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3867 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3868 smp_processor_id());
3869 *(int *)rtn = -EIO;
3870 }
3871}
3872
Sheng Yang67253af2008-04-25 10:20:22 +08003873static int get_ept_level(void)
3874{
3875 return VMX_EPT_DEFAULT_GAW + 1;
3876}
3877
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003878static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08003879{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003880 u64 ret;
3881
Sheng Yang522c68c2009-04-27 20:35:43 +08003882 /* For VT-d and EPT combination
3883 * 1. MMIO: always map as UC
3884 * 2. EPT with VT-d:
3885 * a. VT-d without snooping control feature: can't guarantee the
3886 * result, try to trust guest.
3887 * b. VT-d with snooping control feature: snooping control feature of
3888 * VT-d engine can guarantee the cache correctness. Just set it
3889 * to WB to keep consistent with host. So the same as item 3.
3890 * 3. EPT without VT-d: always map as WB and set IGMT=1 to keep
3891 * consistent with host MTRR
3892 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003893 if (is_mmio)
3894 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08003895 else if (vcpu->kvm->arch.iommu_domain &&
3896 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
3897 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
3898 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003899 else
Sheng Yang522c68c2009-04-27 20:35:43 +08003900 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
3901 | VMX_EPT_IGMT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003902
3903 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08003904}
3905
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003906static const struct trace_print_flags vmx_exit_reasons_str[] = {
3907 { EXIT_REASON_EXCEPTION_NMI, "exception" },
3908 { EXIT_REASON_EXTERNAL_INTERRUPT, "ext_irq" },
3909 { EXIT_REASON_TRIPLE_FAULT, "triple_fault" },
3910 { EXIT_REASON_NMI_WINDOW, "nmi_window" },
3911 { EXIT_REASON_IO_INSTRUCTION, "io_instruction" },
3912 { EXIT_REASON_CR_ACCESS, "cr_access" },
3913 { EXIT_REASON_DR_ACCESS, "dr_access" },
3914 { EXIT_REASON_CPUID, "cpuid" },
3915 { EXIT_REASON_MSR_READ, "rdmsr" },
3916 { EXIT_REASON_MSR_WRITE, "wrmsr" },
3917 { EXIT_REASON_PENDING_INTERRUPT, "interrupt_window" },
3918 { EXIT_REASON_HLT, "halt" },
3919 { EXIT_REASON_INVLPG, "invlpg" },
3920 { EXIT_REASON_VMCALL, "hypercall" },
3921 { EXIT_REASON_TPR_BELOW_THRESHOLD, "tpr_below_thres" },
3922 { EXIT_REASON_APIC_ACCESS, "apic_access" },
3923 { EXIT_REASON_WBINVD, "wbinvd" },
3924 { EXIT_REASON_TASK_SWITCH, "task_switch" },
3925 { EXIT_REASON_EPT_VIOLATION, "ept_violation" },
3926 { -1, NULL }
3927};
3928
Joerg Roedel344f4142009-07-27 16:30:48 +02003929static bool vmx_gb_page_enable(void)
3930{
3931 return false;
3932}
3933
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003934static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003935 .cpu_has_kvm_support = cpu_has_kvm_support,
3936 .disabled_by_bios = vmx_disabled_by_bios,
3937 .hardware_setup = hardware_setup,
3938 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003939 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003940 .hardware_enable = hardware_enable,
3941 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08003942 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003943
3944 .vcpu_create = vmx_create_vcpu,
3945 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003946 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003947
Avi Kivity04d2cc72007-09-10 18:10:54 +03003948 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003949 .vcpu_load = vmx_vcpu_load,
3950 .vcpu_put = vmx_vcpu_put,
3951
3952 .set_guest_debug = set_guest_debug,
3953 .get_msr = vmx_get_msr,
3954 .set_msr = vmx_set_msr,
3955 .get_segment_base = vmx_get_segment_base,
3956 .get_segment = vmx_get_segment,
3957 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003958 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003959 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003960 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003961 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003962 .set_cr3 = vmx_set_cr3,
3963 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003964 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003965 .get_idt = vmx_get_idt,
3966 .set_idt = vmx_set_idt,
3967 .get_gdt = vmx_get_gdt,
3968 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003969 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003970 .get_rflags = vmx_get_rflags,
3971 .set_rflags = vmx_set_rflags,
3972
3973 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003974
Avi Kivity6aa8b732006-12-10 02:21:36 -08003975 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02003976 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003977 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04003978 .set_interrupt_shadow = vmx_set_interrupt_shadow,
3979 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02003980 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03003981 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003982 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02003983 .queue_exception = vmx_queue_exception,
Gleb Natapov78646122009-03-23 12:12:11 +02003984 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003985 .nmi_allowed = vmx_nmi_allowed,
3986 .enable_nmi_window = enable_nmi_window,
3987 .enable_irq_window = enable_irq_window,
3988 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003989
Izik Eiduscbc94022007-10-25 00:29:55 +02003990 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08003991 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003992 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003993
3994 .exit_reasons_str = vmx_exit_reasons_str,
Joerg Roedel344f4142009-07-27 16:30:48 +02003995 .gb_page_enable = vmx_gb_page_enable,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003996};
3997
3998static int __init vmx_init(void)
3999{
Avi Kivity26bb0982009-09-07 11:14:12 +03004000 int r, i;
4001
4002 rdmsrl_safe(MSR_EFER, &host_efer);
4003
4004 for (i = 0; i < NR_VMX_MSR; ++i)
4005 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03004006
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004007 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004008 if (!vmx_io_bitmap_a)
4009 return -ENOMEM;
4010
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004011 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004012 if (!vmx_io_bitmap_b) {
4013 r = -ENOMEM;
4014 goto out;
4015 }
4016
Avi Kivity58972972009-02-24 22:26:47 +02004017 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
4018 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08004019 r = -ENOMEM;
4020 goto out1;
4021 }
4022
Avi Kivity58972972009-02-24 22:26:47 +02004023 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
4024 if (!vmx_msr_bitmap_longmode) {
4025 r = -ENOMEM;
4026 goto out2;
4027 }
4028
He, Qingfdef3ad2007-04-30 09:45:24 +03004029 /*
4030 * Allow direct access to the PC debug port (it is often used for I/O
4031 * delays, but the vmexits simply slow things down).
4032 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004033 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
4034 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004035
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004036 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004037
Avi Kivity58972972009-02-24 22:26:47 +02004038 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
4039 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08004040
Sheng Yang2384d2b2008-01-17 15:14:33 +08004041 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
4042
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004043 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004044 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02004045 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08004046
Avi Kivity58972972009-02-24 22:26:47 +02004047 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
4048 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
4049 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
4050 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
4051 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
4052 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03004053
Avi Kivity089d0342009-03-23 18:26:32 +02004054 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004055 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004056 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08004057 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08004058 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004059 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004060 kvm_enable_tdp();
4061 } else
4062 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08004063
Avi Kivityc7addb92007-09-16 18:58:32 +02004064 if (bypass_guest_pf)
4065 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
4066
He, Qingfdef3ad2007-04-30 09:45:24 +03004067 return 0;
4068
Avi Kivity58972972009-02-24 22:26:47 +02004069out3:
4070 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08004071out2:
Avi Kivity58972972009-02-24 22:26:47 +02004072 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03004073out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004074 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03004075out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004076 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004077 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004078}
4079
4080static void __exit vmx_exit(void)
4081{
Avi Kivity58972972009-02-24 22:26:47 +02004082 free_page((unsigned long)vmx_msr_bitmap_legacy);
4083 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004084 free_page((unsigned long)vmx_io_bitmap_b);
4085 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004086
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004087 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004088}
4089
4090module_init(vmx_init)
4091module_exit(vmx_exit)