blob: d4918d6fc9244207b20705ad74e2e620b3891b56 [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;
Avi Kivityd5696722009-12-02 12:28:47 +020092 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +030093};
94
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040095struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +100096 struct kvm_vcpu vcpu;
Avi Kivity543e4242008-05-13 16:22:47 +030097 struct list_head local_vcpus_link;
Avi Kivity313dbd42008-07-17 18:04:30 +030098 unsigned long host_rsp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -040099 int launched;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300100 u8 fail;
Avi Kivity1155f762007-11-22 11:30:47 +0200101 u32 idt_vectoring_info;
Avi Kivity26bb0982009-09-07 11:14:12 +0300102 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400103 int nmsrs;
104 int save_nmsrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400105#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 Kivity92c0d902009-10-29 11:00:16 +0200587static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +0300588{
Roel Kluin3a34a882009-08-04 02:08:45 -0700589 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300590 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300591
Avi Kivity26bb0982009-09-07 11:14:12 +0300592 guest_efer = vmx->vcpu.arch.shadow_efer;
Roel Kluin3a34a882009-08-04 02:08:45 -0700593
Avi Kivity51c6cf62007-08-29 03:48:05 +0300594 /*
595 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
596 * outside long mode
597 */
598 ignore_bits = EFER_NX | EFER_SCE;
599#ifdef CONFIG_X86_64
600 ignore_bits |= EFER_LMA | EFER_LME;
601 /* SCE is meaningful only in long mode on Intel */
602 if (guest_efer & EFER_LMA)
603 ignore_bits &= ~(u64)EFER_SCE;
604#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +0300605 guest_efer &= ~ignore_bits;
606 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300607 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +0200608 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300609 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300610}
611
Avi Kivity04d2cc72007-09-10 18:10:54 +0300612static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300613{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300614 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +0300615 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +0300616
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400617 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300618 return;
619
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400620 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300621 /*
622 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
623 * allow segment selectors with cpl > 0 or ti == 1.
624 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300625 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200626 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300627 vmx->host_state.fs_sel = kvm_read_fs();
Laurent Vivier152d3f22007-08-23 16:33:11 +0200628 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400629 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200630 vmx->host_state.fs_reload_needed = 0;
631 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +0300632 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200633 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300634 }
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300635 vmx->host_state.gs_sel = kvm_read_gs();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400636 if (!(vmx->host_state.gs_sel & 7))
637 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300638 else {
639 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200640 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +0300641 }
642
643#ifdef CONFIG_X86_64
644 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
645 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
646#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400647 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
648 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +0300649#endif
Avi Kivity707c0872007-05-02 17:33:43 +0300650
651#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300652 if (is_long_mode(&vmx->vcpu)) {
653 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
654 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
655 }
Avi Kivity707c0872007-05-02 17:33:43 +0300656#endif
Avi Kivity26bb0982009-09-07 11:14:12 +0300657 for (i = 0; i < vmx->save_nmsrs; ++i)
658 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +0200659 vmx->guest_msrs[i].data,
660 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +0300661}
662
Avi Kivitya9b21b62008-06-24 11:48:49 +0300663static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +0300664{
Avi Kivity15ad7142007-07-11 18:17:21 +0300665 unsigned long flags;
Avi Kivity33ed6322007-05-02 16:54:03 +0300666
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400667 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300668 return;
669
Avi Kivitye1beb1d2007-11-18 13:50:24 +0200670 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400671 vmx->host_state.loaded = 0;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200672 if (vmx->host_state.fs_reload_needed)
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300673 kvm_load_fs(vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +0200674 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300675 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300676 /*
677 * If we have to reload gs, we must take care to
678 * preserve our gs base.
679 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300680 local_irq_save(flags);
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300681 kvm_load_gs(vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +0300682#ifdef CONFIG_X86_64
683 wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
684#endif
Avi Kivity15ad7142007-07-11 18:17:21 +0300685 local_irq_restore(flags);
Avi Kivity33ed6322007-05-02 16:54:03 +0300686 }
Laurent Vivier152d3f22007-08-23 16:33:11 +0200687 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +0300688#ifdef CONFIG_X86_64
689 if (is_long_mode(&vmx->vcpu)) {
690 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
691 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
692 }
693#endif
Avi Kivity33ed6322007-05-02 16:54:03 +0300694}
695
Avi Kivitya9b21b62008-06-24 11:48:49 +0300696static void vmx_load_host_state(struct vcpu_vmx *vmx)
697{
698 preempt_disable();
699 __vmx_load_host_state(vmx);
700 preempt_enable();
701}
702
Avi Kivity6aa8b732006-12-10 02:21:36 -0800703/*
704 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
705 * vcpu mutex is already taken.
706 */
Avi Kivity15ad7142007-07-11 18:17:21 +0300707static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800708{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400709 struct vcpu_vmx *vmx = to_vmx(vcpu);
710 u64 phys_addr = __pa(vmx->vmcs);
Avi Kivity019960a2008-03-04 10:44:51 +0200711 u64 tsc_this, delta, new_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800712
Eddie Donga3d7f852007-09-03 16:15:12 +0300713 if (vcpu->cpu != cpu) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000714 vcpu_clear(vmx);
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300715 kvm_migrate_timers(vcpu);
Marcelo Tosattieb5109e2009-10-01 19:16:58 -0300716 set_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests);
Avi Kivity543e4242008-05-13 16:22:47 +0300717 local_irq_disable();
718 list_add(&vmx->local_vcpus_link,
719 &per_cpu(vcpus_on_cpu, cpu));
720 local_irq_enable();
Eddie Donga3d7f852007-09-03 16:15:12 +0300721 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800722
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400723 if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800724 u8 error;
725
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400726 per_cpu(current_vmcs, cpu) = vmx->vmcs;
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300727 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity6aa8b732006-12-10 02:21:36 -0800728 : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
729 : "cc");
730 if (error)
731 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400732 vmx->vmcs, phys_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800733 }
734
735 if (vcpu->cpu != cpu) {
736 struct descriptor_table dt;
737 unsigned long sysenter_esp;
738
739 vcpu->cpu = cpu;
740 /*
741 * Linux uses per-cpu TSS and GDT, so set these when switching
742 * processors.
743 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +0300744 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
745 kvm_get_gdt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800746 vmcs_writel(HOST_GDTR_BASE, dt.base); /* 22.2.4 */
747
748 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
749 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Avi Kivity77002702007-06-13 19:55:28 +0300750
751 /*
752 * Make sure the time stamp counter is monotonous.
753 */
754 rdtscll(tsc_this);
Avi Kivity019960a2008-03-04 10:44:51 +0200755 if (tsc_this < vcpu->arch.host_tsc) {
756 delta = vcpu->arch.host_tsc - tsc_this;
757 new_offset = vmcs_read64(TSC_OFFSET) + delta;
758 vmcs_write64(TSC_OFFSET, new_offset);
759 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800760 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800761}
762
763static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
764{
Avi Kivitya9b21b62008-06-24 11:48:49 +0300765 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800766}
767
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300768static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
769{
770 if (vcpu->fpu_active)
771 return;
772 vcpu->fpu_active = 1;
Rusty Russell707d92f2007-07-17 23:19:08 +1000773 vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800774 if (vcpu->arch.cr0 & X86_CR0_TS)
Rusty Russell707d92f2007-07-17 23:19:08 +1000775 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300776 update_exception_bitmap(vcpu);
777}
778
779static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
780{
781 if (!vcpu->fpu_active)
782 return;
783 vcpu->fpu_active = 0;
Rusty Russell707d92f2007-07-17 23:19:08 +1000784 vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
Avi Kivity5fd86fc2007-05-02 20:40:00 +0300785 update_exception_bitmap(vcpu);
786}
787
Avi Kivity6aa8b732006-12-10 02:21:36 -0800788static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
789{
Avi Kivity345dcaa2009-08-12 15:29:37 +0300790 unsigned long rflags;
791
792 rflags = vmcs_readl(GUEST_RFLAGS);
793 if (to_vmx(vcpu)->rmode.vm86_active)
794 rflags &= ~(unsigned long)(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
795 return rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800796}
797
798static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
799{
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300800 if (to_vmx(vcpu)->rmode.vm86_active)
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100801 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800802 vmcs_writel(GUEST_RFLAGS, rflags);
803}
804
Glauber Costa2809f5d2009-05-12 16:21:05 -0400805static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
806{
807 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
808 int ret = 0;
809
810 if (interruptibility & GUEST_INTR_STATE_STI)
811 ret |= X86_SHADOW_INT_STI;
812 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
813 ret |= X86_SHADOW_INT_MOV_SS;
814
815 return ret & mask;
816}
817
818static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
819{
820 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
821 u32 interruptibility = interruptibility_old;
822
823 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
824
825 if (mask & X86_SHADOW_INT_MOV_SS)
826 interruptibility |= GUEST_INTR_STATE_MOV_SS;
827 if (mask & X86_SHADOW_INT_STI)
828 interruptibility |= GUEST_INTR_STATE_STI;
829
830 if ((interruptibility != interruptibility_old))
831 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
832}
833
Avi Kivity6aa8b732006-12-10 02:21:36 -0800834static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
835{
836 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800837
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300838 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800839 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300840 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800841
Glauber Costa2809f5d2009-05-12 16:21:05 -0400842 /* skipping an emulated instruction also counts */
843 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800844}
845
Avi Kivity298101d2007-11-25 13:41:11 +0200846static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
847 bool has_error_code, u32 error_code)
848{
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200849 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100850 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200851
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100852 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200853 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100854 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
855 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200856
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300857 if (vmx->rmode.vm86_active) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200858 vmx->rmode.irq.pending = true;
859 vmx->rmode.irq.vector = nr;
860 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +0300861 if (kvm_exception_is_soft(nr))
862 vmx->rmode.irq.rip +=
863 vmx->vcpu.arch.event_exit_inst_len;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100864 intr_info |= INTR_TYPE_SOFT_INTR;
865 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Jan Kiszka77ab6db2008-07-14 12:28:51 +0200866 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
867 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
868 return;
869 }
870
Gleb Natapov66fd3f72009-05-11 13:35:50 +0300871 if (kvm_exception_is_soft(nr)) {
872 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
873 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100874 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
875 } else
876 intr_info |= INTR_TYPE_HARD_EXCEPTION;
877
878 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +0200879}
880
Avi Kivity6aa8b732006-12-10 02:21:36 -0800881/*
Eddie Donga75beee2007-05-17 18:55:15 +0300882 * Swap MSR entry in host/guest MSR entry array.
883 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000884static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +0300885{
Avi Kivity26bb0982009-09-07 11:14:12 +0300886 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400887
888 tmp = vmx->guest_msrs[to];
889 vmx->guest_msrs[to] = vmx->guest_msrs[from];
890 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +0300891}
892
893/*
Avi Kivitye38aea32007-04-19 13:22:48 +0300894 * Set up the vmcs to automatically save and restore system
895 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
896 * mode, as fiddling with msrs is very expensive.
897 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000898static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +0300899{
Avi Kivity26bb0982009-09-07 11:14:12 +0300900 int save_nmsrs, index;
Avi Kivity58972972009-02-24 22:26:47 +0200901 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +0300902
Avi Kivity33f9c502008-02-27 16:06:57 +0200903 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +0300904 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300905#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +1000906 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +1000907 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +0300908 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000909 move_msr_up(vmx, index, save_nmsrs++);
910 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300911 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000912 move_msr_up(vmx, index, save_nmsrs++);
913 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +0300914 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +1000915 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +0300916 /*
917 * MSR_K6_STAR is only needed on long mode guests, and only
918 * if efer.sce is enabled.
919 */
Rusty Russell8b9cf982007-07-30 16:31:43 +1000920 index = __find_msr_index(vmx, MSR_K6_STAR);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800921 if ((index >= 0) && (vmx->vcpu.arch.shadow_efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +1000922 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300923 }
Eddie Donga75beee2007-05-17 18:55:15 +0300924#endif
Avi Kivity92c0d902009-10-29 11:00:16 +0200925 index = __find_msr_index(vmx, MSR_EFER);
926 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +0300927 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300928
Avi Kivity26bb0982009-09-07 11:14:12 +0300929 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +0200930
931 if (cpu_has_vmx_msr_bitmap()) {
932 if (is_long_mode(&vmx->vcpu))
933 msr_bitmap = vmx_msr_bitmap_longmode;
934 else
935 msr_bitmap = vmx_msr_bitmap_legacy;
936
937 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
938 }
Avi Kivitye38aea32007-04-19 13:22:48 +0300939}
940
941/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800942 * reads and returns guest's timestamp counter "register"
943 * guest_tsc = host_tsc + tsc_offset -- 21.3
944 */
945static u64 guest_read_tsc(void)
946{
947 u64 host_tsc, tsc_offset;
948
949 rdtscll(host_tsc);
950 tsc_offset = vmcs_read64(TSC_OFFSET);
951 return host_tsc + tsc_offset;
952}
953
954/*
955 * writes 'guest_tsc' into guest's timestamp counter "register"
956 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
957 */
Marcelo Tosatti53f658b2008-12-11 20:45:05 +0100958static void guest_write_tsc(u64 guest_tsc, u64 host_tsc)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800959{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800960 vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
961}
962
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963/*
964 * Reads an msr value (of 'msr_index') into 'pdata'.
965 * Returns 0 on success, non-0 otherwise.
966 * Assumes vcpu_load() was already called.
967 */
968static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
969{
970 u64 data;
Avi Kivity26bb0982009-09-07 11:14:12 +0300971 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800972
973 if (!pdata) {
974 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
975 return -EINVAL;
976 }
977
978 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800979#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800980 case MSR_FS_BASE:
981 data = vmcs_readl(GUEST_FS_BASE);
982 break;
983 case MSR_GS_BASE:
984 data = vmcs_readl(GUEST_GS_BASE);
985 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +0300986 case MSR_KERNEL_GS_BASE:
987 vmx_load_host_state(to_vmx(vcpu));
988 data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
989 break;
Avi Kivity26bb0982009-09-07 11:14:12 +0300990#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -0800992 return kvm_get_msr_common(vcpu, msr_index, pdata);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +0530993 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994 data = guest_read_tsc();
995 break;
996 case MSR_IA32_SYSENTER_CS:
997 data = vmcs_read32(GUEST_SYSENTER_CS);
998 break;
999 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001000 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001001 break;
1002 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001003 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001004 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005 default:
Avi Kivity26bb0982009-09-07 11:14:12 +03001006 vmx_load_host_state(to_vmx(vcpu));
Rusty Russell8b9cf982007-07-30 16:31:43 +10001007 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001008 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001009 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity3bab1f52006-12-29 16:49:48 -08001010 data = msr->data;
1011 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001012 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08001013 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001014 }
1015
1016 *pdata = data;
1017 return 0;
1018}
1019
1020/*
1021 * Writes msr value into into the appropriate "register".
1022 * Returns 0 on success, non-0 otherwise.
1023 * Assumes vcpu_load() was already called.
1024 */
1025static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1026{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001027 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001028 struct shared_msr_entry *msr;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01001029 u64 host_tsc;
Eddie Dong2cc51562007-05-21 07:28:09 +03001030 int ret = 0;
1031
Avi Kivity6aa8b732006-12-10 02:21:36 -08001032 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001033 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +03001034 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +03001035 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03001036 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001037#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001038 case MSR_FS_BASE:
1039 vmcs_writel(GUEST_FS_BASE, data);
1040 break;
1041 case MSR_GS_BASE:
1042 vmcs_writel(GUEST_GS_BASE, data);
1043 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001044 case MSR_KERNEL_GS_BASE:
1045 vmx_load_host_state(vmx);
1046 vmx->msr_guest_kernel_gs_base = data;
1047 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001048#endif
1049 case MSR_IA32_SYSENTER_CS:
1050 vmcs_write32(GUEST_SYSENTER_CS, data);
1051 break;
1052 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001053 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001054 break;
1055 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001056 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001057 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301058 case MSR_IA32_TSC:
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01001059 rdtscll(host_tsc);
1060 guest_write_tsc(data, host_tsc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061 break;
Sheng Yang468d4722008-10-09 16:01:55 +08001062 case MSR_IA32_CR_PAT:
1063 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
1064 vmcs_write64(GUEST_IA32_PAT, data);
1065 vcpu->arch.pat = data;
1066 break;
1067 }
1068 /* Otherwise falls through to kvm_set_msr_common */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001069 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10001070 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001071 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001072 vmx_load_host_state(vmx);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001073 msr->data = data;
1074 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001075 }
Eddie Dong2cc51562007-05-21 07:28:09 +03001076 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001077 }
1078
Eddie Dong2cc51562007-05-21 07:28:09 +03001079 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001080}
1081
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001082static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001083{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001084 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
1085 switch (reg) {
1086 case VCPU_REGS_RSP:
1087 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
1088 break;
1089 case VCPU_REGS_RIP:
1090 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
1091 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001092 case VCPU_EXREG_PDPTR:
1093 if (enable_ept)
1094 ept_save_pdptrs(vcpu);
1095 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001096 default:
1097 break;
1098 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001099}
1100
Jan Kiszka355be0b2009-10-03 00:31:21 +02001101static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001102{
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001103 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1104 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1105 else
1106 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1107
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001108 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001109}
1110
1111static __init int cpu_has_kvm_support(void)
1112{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001113 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001114}
1115
1116static __init int vmx_disabled_by_bios(void)
1117{
1118 u64 msr;
1119
1120 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001121 return (msr & (FEATURE_CONTROL_LOCKED |
1122 FEATURE_CONTROL_VMXON_ENABLED))
1123 == FEATURE_CONTROL_LOCKED;
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001124 /* locked but not enabled */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001125}
1126
Alexander Graf10474ae2009-09-15 11:37:46 +02001127static int hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001128{
1129 int cpu = raw_smp_processor_id();
1130 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
1131 u64 old;
1132
Alexander Graf10474ae2009-09-15 11:37:46 +02001133 if (read_cr4() & X86_CR4_VMXE)
1134 return -EBUSY;
1135
Avi Kivity543e4242008-05-13 16:22:47 +03001136 INIT_LIST_HEAD(&per_cpu(vcpus_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001137 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Sheng Yang9ea542f2008-09-11 15:27:49 +08001138 if ((old & (FEATURE_CONTROL_LOCKED |
1139 FEATURE_CONTROL_VMXON_ENABLED))
1140 != (FEATURE_CONTROL_LOCKED |
1141 FEATURE_CONTROL_VMXON_ENABLED))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001142 /* enable and lock */
Yang, Sheng62b3ffb2007-07-25 12:17:06 +03001143 wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
Sheng Yang9ea542f2008-09-11 15:27:49 +08001144 FEATURE_CONTROL_LOCKED |
1145 FEATURE_CONTROL_VMXON_ENABLED);
Rusty Russell66aee912007-07-17 23:34:16 +10001146 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001147 asm volatile (ASM_VMX_VMXON_RAX
1148 : : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001149 : "memory", "cc");
Alexander Graf10474ae2009-09-15 11:37:46 +02001150
1151 ept_sync_global();
1152
1153 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001154}
1155
Avi Kivity543e4242008-05-13 16:22:47 +03001156static void vmclear_local_vcpus(void)
1157{
1158 int cpu = raw_smp_processor_id();
1159 struct vcpu_vmx *vmx, *n;
1160
1161 list_for_each_entry_safe(vmx, n, &per_cpu(vcpus_on_cpu, cpu),
1162 local_vcpus_link)
1163 __vcpu_clear(vmx);
1164}
1165
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001166
1167/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1168 * tricks.
1169 */
1170static void kvm_cpu_vmxoff(void)
1171{
1172 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
1173 write_cr4(read_cr4() & ~X86_CR4_VMXE);
1174}
1175
Avi Kivity6aa8b732006-12-10 02:21:36 -08001176static void hardware_disable(void *garbage)
1177{
Avi Kivity543e4242008-05-13 16:22:47 +03001178 vmclear_local_vcpus();
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001179 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001180}
1181
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001182static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001183 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001184{
1185 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001186 u32 ctl = ctl_min | ctl_opt;
1187
1188 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1189
1190 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1191 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1192
1193 /* Ensure minimum (required) set of control bits are supported. */
1194 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001195 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001196
1197 *result = ctl;
1198 return 0;
1199}
1200
Yang, Sheng002c7f72007-07-31 14:23:01 +03001201static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001202{
1203 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001204 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001205 u32 _pin_based_exec_control = 0;
1206 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001207 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001208 u32 _vmexit_control = 0;
1209 u32 _vmentry_control = 0;
1210
1211 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001212 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001213 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1214 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001215 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001216
1217 min = CPU_BASED_HLT_EXITING |
1218#ifdef CONFIG_X86_64
1219 CPU_BASED_CR8_LOAD_EXITING |
1220 CPU_BASED_CR8_STORE_EXITING |
1221#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001222 CPU_BASED_CR3_LOAD_EXITING |
1223 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001224 CPU_BASED_USE_IO_BITMAPS |
1225 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001226 CPU_BASED_USE_TSC_OFFSETING |
1227 CPU_BASED_INVLPG_EXITING;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001228 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001229 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001230 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001231 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1232 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001233 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001234#ifdef CONFIG_X86_64
1235 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1236 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1237 ~CPU_BASED_CR8_STORE_EXITING;
1238#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001239 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001240 min2 = 0;
1241 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001242 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001243 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001244 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001245 SECONDARY_EXEC_UNRESTRICTED_GUEST |
1246 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Sheng Yangd56f5462008-04-25 10:13:16 +08001247 if (adjust_vmx_controls(min2, opt2,
1248 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001249 &_cpu_based_2nd_exec_control) < 0)
1250 return -EIO;
1251 }
1252#ifndef CONFIG_X86_64
1253 if (!(_cpu_based_2nd_exec_control &
1254 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1255 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1256#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001257 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03001258 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
1259 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03001260 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
1261 CPU_BASED_CR3_STORE_EXITING |
1262 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001263 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1264 vmx_capability.ept, vmx_capability.vpid);
1265 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001266
1267 min = 0;
1268#ifdef CONFIG_X86_64
1269 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1270#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001271 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001272 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1273 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001274 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001275
Sheng Yang468d4722008-10-09 16:01:55 +08001276 min = 0;
1277 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001278 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1279 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001280 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001281
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001282 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001283
1284 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1285 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001286 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001287
1288#ifdef CONFIG_X86_64
1289 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1290 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001291 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001292#endif
1293
1294 /* Require Write-Back (WB) memory type for VMCS accesses. */
1295 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001296 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001297
Yang, Sheng002c7f72007-07-31 14:23:01 +03001298 vmcs_conf->size = vmx_msr_high & 0x1fff;
1299 vmcs_conf->order = get_order(vmcs_config.size);
1300 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001301
Yang, Sheng002c7f72007-07-31 14:23:01 +03001302 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
1303 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001304 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03001305 vmcs_conf->vmexit_ctrl = _vmexit_control;
1306 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001307
1308 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001309}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001310
1311static struct vmcs *alloc_vmcs_cpu(int cpu)
1312{
1313 int node = cpu_to_node(cpu);
1314 struct page *pages;
1315 struct vmcs *vmcs;
1316
Mel Gorman6484eb32009-06-16 15:31:54 -07001317 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001318 if (!pages)
1319 return NULL;
1320 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001321 memset(vmcs, 0, vmcs_config.size);
1322 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001323 return vmcs;
1324}
1325
1326static struct vmcs *alloc_vmcs(void)
1327{
Ingo Molnard3b2c332007-01-05 16:36:23 -08001328 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08001329}
1330
1331static void free_vmcs(struct vmcs *vmcs)
1332{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03001333 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001334}
1335
Sam Ravnborg39959582007-06-01 00:47:13 -07001336static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001337{
1338 int cpu;
1339
Zachary Amsden3230bb42009-09-29 11:38:37 -10001340 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001341 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10001342 per_cpu(vmxarea, cpu) = NULL;
1343 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001344}
1345
Avi Kivity6aa8b732006-12-10 02:21:36 -08001346static __init int alloc_kvm_area(void)
1347{
1348 int cpu;
1349
Zachary Amsden3230bb42009-09-29 11:38:37 -10001350 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001351 struct vmcs *vmcs;
1352
1353 vmcs = alloc_vmcs_cpu(cpu);
1354 if (!vmcs) {
1355 free_kvm_area();
1356 return -ENOMEM;
1357 }
1358
1359 per_cpu(vmxarea, cpu) = vmcs;
1360 }
1361 return 0;
1362}
1363
1364static __init int hardware_setup(void)
1365{
Yang, Sheng002c7f72007-07-31 14:23:01 +03001366 if (setup_vmcs_config(&vmcs_config) < 0)
1367 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01001368
1369 if (boot_cpu_has(X86_FEATURE_NX))
1370 kvm_enable_efer_bits(EFER_NX);
1371
Sheng Yang93ba03c2009-04-01 15:52:32 +08001372 if (!cpu_has_vmx_vpid())
1373 enable_vpid = 0;
1374
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001375 if (!cpu_has_vmx_ept()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08001376 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001377 enable_unrestricted_guest = 0;
1378 }
1379
1380 if (!cpu_has_vmx_unrestricted_guest())
1381 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08001382
1383 if (!cpu_has_vmx_flexpriority())
1384 flexpriority_enabled = 0;
1385
Gleb Natapov95ba8273132009-04-21 17:45:08 +03001386 if (!cpu_has_vmx_tpr_shadow())
1387 kvm_x86_ops->update_cr8_intercept = NULL;
1388
Marcelo Tosatti54dee992009-06-11 12:07:44 -03001389 if (enable_ept && !cpu_has_vmx_ept_2m_page())
1390 kvm_disable_largepages();
1391
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001392 if (!cpu_has_vmx_ple())
1393 ple_gap = 0;
1394
Avi Kivity6aa8b732006-12-10 02:21:36 -08001395 return alloc_kvm_area();
1396}
1397
1398static __exit void hardware_unsetup(void)
1399{
1400 free_kvm_area();
1401}
1402
Avi Kivity6aa8b732006-12-10 02:21:36 -08001403static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
1404{
1405 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1406
Avi Kivity6af11b92007-03-19 13:18:10 +02001407 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001408 vmcs_write16(sf->selector, save->selector);
1409 vmcs_writel(sf->base, save->base);
1410 vmcs_write32(sf->limit, save->limit);
1411 vmcs_write32(sf->ar_bytes, save->ar);
1412 } else {
1413 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
1414 << AR_DPL_SHIFT;
1415 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
1416 }
1417}
1418
1419static void enter_pmode(struct kvm_vcpu *vcpu)
1420{
1421 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001422 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001423
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001424 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001425 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001426
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001427 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
1428 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
1429 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001430
1431 flags = vmcs_readl(GUEST_RFLAGS);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001432 flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001433 flags |= (vmx->rmode.save_iopl << IOPL_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001434 vmcs_writel(GUEST_RFLAGS, flags);
1435
Rusty Russell66aee912007-07-17 23:34:16 +10001436 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
1437 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001438
1439 update_exception_bitmap(vcpu);
1440
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001441 if (emulate_invalid_guest_state)
1442 return;
1443
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001444 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
1445 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
1446 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
1447 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001448
1449 vmcs_write16(GUEST_SS_SELECTOR, 0);
1450 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
1451
1452 vmcs_write16(GUEST_CS_SELECTOR,
1453 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
1454 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
1455}
1456
Mike Dayd77c26f2007-10-08 09:02:08 -04001457static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001458{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001459 if (!kvm->arch.tss_addr) {
Izik Eiduscbc94022007-10-25 00:29:55 +02001460 gfn_t base_gfn = kvm->memslots[0].base_gfn +
1461 kvm->memslots[0].npages - 3;
1462 return base_gfn << PAGE_SHIFT;
1463 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08001464 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001465}
1466
1467static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
1468{
1469 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1470
1471 save->selector = vmcs_read16(sf->selector);
1472 save->base = vmcs_readl(sf->base);
1473 save->limit = vmcs_read32(sf->limit);
1474 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01001475 vmcs_write16(sf->selector, save->base >> 4);
1476 vmcs_write32(sf->base, save->base & 0xfffff);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001477 vmcs_write32(sf->limit, 0xffff);
1478 vmcs_write32(sf->ar_bytes, 0xf3);
1479}
1480
1481static void enter_rmode(struct kvm_vcpu *vcpu)
1482{
1483 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001484 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001485
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001486 if (enable_unrestricted_guest)
1487 return;
1488
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001489 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001490 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001491
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001492 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001493 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
1494
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001495 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001496 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
1497
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001498 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001499 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
1500
1501 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001502 vmx->rmode.save_iopl
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001503 = (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001504
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001505 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001506
1507 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10001508 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001509 update_exception_bitmap(vcpu);
1510
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001511 if (emulate_invalid_guest_state)
1512 goto continue_rmode;
1513
Avi Kivity6aa8b732006-12-10 02:21:36 -08001514 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
1515 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
1516 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
1517
1518 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08001519 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02001520 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
1521 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001522 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
1523
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001524 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
1525 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
1526 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
1527 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03001528
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03001529continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08001530 kvm_mmu_reset_context(vcpu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08001531 init_rmode(vcpu->kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001532}
1533
Amit Shah401d10d2009-02-20 22:53:37 +05301534static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
1535{
1536 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001537 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
1538
1539 if (!msr)
1540 return;
Amit Shah401d10d2009-02-20 22:53:37 +05301541
Avi Kivity44ea2b12009-09-06 15:55:37 +03001542 /*
1543 * Force kernel_gs_base reloading before EFER changes, as control
1544 * of this msr depends on is_long_mode().
1545 */
1546 vmx_load_host_state(to_vmx(vcpu));
Amit Shah401d10d2009-02-20 22:53:37 +05301547 vcpu->arch.shadow_efer = efer;
1548 if (!msr)
1549 return;
1550 if (efer & EFER_LMA) {
1551 vmcs_write32(VM_ENTRY_CONTROLS,
1552 vmcs_read32(VM_ENTRY_CONTROLS) |
1553 VM_ENTRY_IA32E_MODE);
1554 msr->data = efer;
1555 } else {
1556 vmcs_write32(VM_ENTRY_CONTROLS,
1557 vmcs_read32(VM_ENTRY_CONTROLS) &
1558 ~VM_ENTRY_IA32E_MODE);
1559
1560 msr->data = efer & ~EFER_LME;
1561 }
1562 setup_msrs(vmx);
1563}
1564
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001565#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001566
1567static void enter_lmode(struct kvm_vcpu *vcpu)
1568{
1569 u32 guest_tr_ar;
1570
1571 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
1572 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
1573 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001574 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001575 vmcs_write32(GUEST_TR_AR_BYTES,
1576 (guest_tr_ar & ~AR_TYPE_MASK)
1577 | AR_TYPE_BUSY_64_TSS);
1578 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001579 vcpu->arch.shadow_efer |= EFER_LMA;
Amit Shah401d10d2009-02-20 22:53:37 +05301580 vmx_set_efer(vcpu, vcpu->arch.shadow_efer);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001581}
1582
1583static void exit_lmode(struct kvm_vcpu *vcpu)
1584{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001585 vcpu->arch.shadow_efer &= ~EFER_LMA;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001586
1587 vmcs_write32(VM_ENTRY_CONTROLS,
1588 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03001589 & ~VM_ENTRY_IA32E_MODE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001590}
1591
1592#endif
1593
Sheng Yang2384d2b2008-01-17 15:14:33 +08001594static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
1595{
1596 vpid_sync_vcpu_all(to_vmx(vcpu));
Avi Kivity089d0342009-03-23 18:26:32 +02001597 if (enable_ept)
Sheng Yang4e1096d2008-07-06 19:16:51 +08001598 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Sheng Yang2384d2b2008-01-17 15:14:33 +08001599}
1600
Anthony Liguori25c4c272007-04-27 09:29:21 +03001601static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08001602{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001603 vcpu->arch.cr4 &= KVM_GUEST_CR4_MASK;
1604 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
Avi Kivity399badf2007-01-05 16:36:38 -08001605}
1606
Sheng Yang14394422008-04-28 12:24:45 +08001607static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
1608{
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001609 if (!test_bit(VCPU_EXREG_PDPTR,
1610 (unsigned long *)&vcpu->arch.regs_dirty))
1611 return;
1612
Sheng Yang14394422008-04-28 12:24:45 +08001613 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Sheng Yang14394422008-04-28 12:24:45 +08001614 vmcs_write64(GUEST_PDPTR0, vcpu->arch.pdptrs[0]);
1615 vmcs_write64(GUEST_PDPTR1, vcpu->arch.pdptrs[1]);
1616 vmcs_write64(GUEST_PDPTR2, vcpu->arch.pdptrs[2]);
1617 vmcs_write64(GUEST_PDPTR3, vcpu->arch.pdptrs[3]);
1618 }
1619}
1620
Avi Kivity8f5d5492009-05-31 18:41:29 +03001621static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
1622{
1623 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
1624 vcpu->arch.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
1625 vcpu->arch.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
1626 vcpu->arch.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
1627 vcpu->arch.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
1628 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001629
1630 __set_bit(VCPU_EXREG_PDPTR,
1631 (unsigned long *)&vcpu->arch.regs_avail);
1632 __set_bit(VCPU_EXREG_PDPTR,
1633 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03001634}
1635
Sheng Yang14394422008-04-28 12:24:45 +08001636static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1637
1638static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
1639 unsigned long cr0,
1640 struct kvm_vcpu *vcpu)
1641{
1642 if (!(cr0 & X86_CR0_PG)) {
1643 /* From paging/starting to nonpaging */
1644 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001645 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08001646 (CPU_BASED_CR3_LOAD_EXITING |
1647 CPU_BASED_CR3_STORE_EXITING));
1648 vcpu->arch.cr0 = cr0;
1649 vmx_set_cr4(vcpu, vcpu->arch.cr4);
Sheng Yang14394422008-04-28 12:24:45 +08001650 } else if (!is_paging(vcpu)) {
1651 /* From nonpaging to paging */
1652 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08001653 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08001654 ~(CPU_BASED_CR3_LOAD_EXITING |
1655 CPU_BASED_CR3_STORE_EXITING));
1656 vcpu->arch.cr0 = cr0;
1657 vmx_set_cr4(vcpu, vcpu->arch.cr4);
Sheng Yang14394422008-04-28 12:24:45 +08001658 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08001659
1660 if (!(cr0 & X86_CR0_WP))
1661 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08001662}
1663
1664static void ept_update_paging_mode_cr4(unsigned long *hw_cr4,
1665 struct kvm_vcpu *vcpu)
1666{
1667 if (!is_paging(vcpu)) {
1668 *hw_cr4 &= ~X86_CR4_PAE;
1669 *hw_cr4 |= X86_CR4_PSE;
1670 } else if (!(vcpu->arch.cr4 & X86_CR4_PAE))
1671 *hw_cr4 &= ~X86_CR4_PAE;
1672}
1673
Avi Kivity6aa8b732006-12-10 02:21:36 -08001674static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
1675{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001676 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001677 unsigned long hw_cr0;
1678
1679 if (enable_unrestricted_guest)
1680 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
1681 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
1682 else
1683 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08001684
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001685 vmx_fpu_deactivate(vcpu);
1686
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001687 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001688 enter_pmode(vcpu);
1689
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001690 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001691 enter_rmode(vcpu);
1692
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001693#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001694 if (vcpu->arch.shadow_efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10001695 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001696 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10001697 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001698 exit_lmode(vcpu);
1699 }
1700#endif
1701
Avi Kivity089d0342009-03-23 18:26:32 +02001702 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001703 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
1704
Avi Kivity6aa8b732006-12-10 02:21:36 -08001705 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08001706 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001707 vcpu->arch.cr0 = cr0;
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001708
Rusty Russell707d92f2007-07-17 23:19:08 +10001709 if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001710 vmx_fpu_activate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001711}
1712
Sheng Yang14394422008-04-28 12:24:45 +08001713static u64 construct_eptp(unsigned long root_hpa)
1714{
1715 u64 eptp;
1716
1717 /* TODO write the value reading from MSR */
1718 eptp = VMX_EPT_DEFAULT_MT |
1719 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
1720 eptp |= (root_hpa & PAGE_MASK);
1721
1722 return eptp;
1723}
1724
Avi Kivity6aa8b732006-12-10 02:21:36 -08001725static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
1726{
Sheng Yang14394422008-04-28 12:24:45 +08001727 unsigned long guest_cr3;
1728 u64 eptp;
1729
1730 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02001731 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001732 eptp = construct_eptp(cr3);
1733 vmcs_write64(EPT_POINTER, eptp);
Sheng Yang14394422008-04-28 12:24:45 +08001734 guest_cr3 = is_paging(vcpu) ? vcpu->arch.cr3 :
Sheng Yangb927a3c2009-07-21 10:42:48 +08001735 vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02001736 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001737 }
1738
Sheng Yang2384d2b2008-01-17 15:14:33 +08001739 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08001740 vmcs_writel(GUEST_CR3, guest_cr3);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001741 if (vcpu->arch.cr0 & X86_CR0_PE)
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001742 vmx_fpu_deactivate(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001743}
1744
1745static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
1746{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001747 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08001748 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
1749
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001750 vcpu->arch.cr4 = cr4;
Avi Kivity089d0342009-03-23 18:26:32 +02001751 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001752 ept_update_paging_mode_cr4(&hw_cr4, vcpu);
1753
1754 vmcs_writel(CR4_READ_SHADOW, cr4);
1755 vmcs_writel(GUEST_CR4, hw_cr4);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001756}
1757
Avi Kivity6aa8b732006-12-10 02:21:36 -08001758static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
1759{
1760 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1761
1762 return vmcs_readl(sf->base);
1763}
1764
1765static void vmx_get_segment(struct kvm_vcpu *vcpu,
1766 struct kvm_segment *var, int seg)
1767{
1768 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1769 u32 ar;
1770
1771 var->base = vmcs_readl(sf->base);
1772 var->limit = vmcs_read32(sf->limit);
1773 var->selector = vmcs_read16(sf->selector);
1774 ar = vmcs_read32(sf->ar_bytes);
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02001775 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001776 ar = 0;
1777 var->type = ar & 15;
1778 var->s = (ar >> 4) & 1;
1779 var->dpl = (ar >> 5) & 3;
1780 var->present = (ar >> 7) & 1;
1781 var->avl = (ar >> 12) & 1;
1782 var->l = (ar >> 13) & 1;
1783 var->db = (ar >> 14) & 1;
1784 var->g = (ar >> 15) & 1;
1785 var->unusable = (ar >> 16) & 1;
1786}
1787
Izik Eidus2e4d2652008-03-24 19:38:34 +02001788static int vmx_get_cpl(struct kvm_vcpu *vcpu)
1789{
Izik Eidus2e4d2652008-03-24 19:38:34 +02001790 if (!(vcpu->arch.cr0 & X86_CR0_PE)) /* if real mode */
1791 return 0;
1792
1793 if (vmx_get_rflags(vcpu) & X86_EFLAGS_VM) /* if virtual 8086 */
1794 return 3;
1795
Avi Kivityeab4b8a2009-08-04 15:02:54 +03001796 return vmcs_read16(GUEST_CS_SELECTOR) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02001797}
1798
Avi Kivity653e3102007-05-07 10:55:37 +03001799static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001800{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001801 u32 ar;
1802
Avi Kivity653e3102007-05-07 10:55:37 +03001803 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001804 ar = 1 << 16;
1805 else {
1806 ar = var->type & 15;
1807 ar |= (var->s & 1) << 4;
1808 ar |= (var->dpl & 3) << 5;
1809 ar |= (var->present & 1) << 7;
1810 ar |= (var->avl & 1) << 12;
1811 ar |= (var->l & 1) << 13;
1812 ar |= (var->db & 1) << 14;
1813 ar |= (var->g & 1) << 15;
1814 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08001815 if (ar == 0) /* a 0 value means unusable */
1816 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03001817
1818 return ar;
1819}
1820
1821static void vmx_set_segment(struct kvm_vcpu *vcpu,
1822 struct kvm_segment *var, int seg)
1823{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001824 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03001825 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
1826 u32 ar;
1827
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001828 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
1829 vmx->rmode.tr.selector = var->selector;
1830 vmx->rmode.tr.base = var->base;
1831 vmx->rmode.tr.limit = var->limit;
1832 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03001833 return;
1834 }
1835 vmcs_writel(sf->base, var->base);
1836 vmcs_write32(sf->limit, var->limit);
1837 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001838 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03001839 /*
1840 * Hack real-mode segments into vm86 compatibility.
1841 */
1842 if (var->base == 0xffff0000 && var->selector == 0xf000)
1843 vmcs_writel(sf->base, 0xf0000);
1844 ar = 0xf3;
1845 } else
1846 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001847
1848 /*
1849 * Fix the "Accessed" bit in AR field of segment registers for older
1850 * qemu binaries.
1851 * IA32 arch specifies that at the time of processor reset the
1852 * "Accessed" bit in the AR field of segment registers is 1. And qemu
1853 * is setting it to 0 in the usedland code. This causes invalid guest
1854 * state vmexit when "unrestricted guest" mode is turned on.
1855 * Fix for this setup issue in cpu_reset is being pushed in the qemu
1856 * tree. Newer qemu binaries with that qemu fix would not need this
1857 * kvm hack.
1858 */
1859 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
1860 ar |= 0x1; /* Accessed */
1861
Avi Kivity6aa8b732006-12-10 02:21:36 -08001862 vmcs_write32(sf->ar_bytes, ar);
1863}
1864
Avi Kivity6aa8b732006-12-10 02:21:36 -08001865static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
1866{
1867 u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);
1868
1869 *db = (ar >> 14) & 1;
1870 *l = (ar >> 13) & 1;
1871}
1872
1873static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1874{
1875 dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
1876 dt->base = vmcs_readl(GUEST_IDTR_BASE);
1877}
1878
1879static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1880{
1881 vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
1882 vmcs_writel(GUEST_IDTR_BASE, dt->base);
1883}
1884
1885static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1886{
1887 dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
1888 dt->base = vmcs_readl(GUEST_GDTR_BASE);
1889}
1890
1891static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
1892{
1893 vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
1894 vmcs_writel(GUEST_GDTR_BASE, dt->base);
1895}
1896
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001897static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
1898{
1899 struct kvm_segment var;
1900 u32 ar;
1901
1902 vmx_get_segment(vcpu, &var, seg);
1903 ar = vmx_segment_access_rights(&var);
1904
1905 if (var.base != (var.selector << 4))
1906 return false;
1907 if (var.limit != 0xffff)
1908 return false;
1909 if (ar != 0xf3)
1910 return false;
1911
1912 return true;
1913}
1914
1915static bool code_segment_valid(struct kvm_vcpu *vcpu)
1916{
1917 struct kvm_segment cs;
1918 unsigned int cs_rpl;
1919
1920 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
1921 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
1922
Avi Kivity1872a3f2009-01-04 23:26:52 +02001923 if (cs.unusable)
1924 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001925 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
1926 return false;
1927 if (!cs.s)
1928 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001929 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001930 if (cs.dpl > cs_rpl)
1931 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02001932 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001933 if (cs.dpl != cs_rpl)
1934 return false;
1935 }
1936 if (!cs.present)
1937 return false;
1938
1939 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
1940 return true;
1941}
1942
1943static bool stack_segment_valid(struct kvm_vcpu *vcpu)
1944{
1945 struct kvm_segment ss;
1946 unsigned int ss_rpl;
1947
1948 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
1949 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
1950
Avi Kivity1872a3f2009-01-04 23:26:52 +02001951 if (ss.unusable)
1952 return true;
1953 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001954 return false;
1955 if (!ss.s)
1956 return false;
1957 if (ss.dpl != ss_rpl) /* DPL != RPL */
1958 return false;
1959 if (!ss.present)
1960 return false;
1961
1962 return true;
1963}
1964
1965static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
1966{
1967 struct kvm_segment var;
1968 unsigned int rpl;
1969
1970 vmx_get_segment(vcpu, &var, seg);
1971 rpl = var.selector & SELECTOR_RPL_MASK;
1972
Avi Kivity1872a3f2009-01-04 23:26:52 +02001973 if (var.unusable)
1974 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001975 if (!var.s)
1976 return false;
1977 if (!var.present)
1978 return false;
1979 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
1980 if (var.dpl < rpl) /* DPL < RPL */
1981 return false;
1982 }
1983
1984 /* TODO: Add other members to kvm_segment_field to allow checking for other access
1985 * rights flags
1986 */
1987 return true;
1988}
1989
1990static bool tr_valid(struct kvm_vcpu *vcpu)
1991{
1992 struct kvm_segment tr;
1993
1994 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
1995
Avi Kivity1872a3f2009-01-04 23:26:52 +02001996 if (tr.unusable)
1997 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03001998 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
1999 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02002000 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002001 return false;
2002 if (!tr.present)
2003 return false;
2004
2005 return true;
2006}
2007
2008static bool ldtr_valid(struct kvm_vcpu *vcpu)
2009{
2010 struct kvm_segment ldtr;
2011
2012 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
2013
Avi Kivity1872a3f2009-01-04 23:26:52 +02002014 if (ldtr.unusable)
2015 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002016 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2017 return false;
2018 if (ldtr.type != 2)
2019 return false;
2020 if (!ldtr.present)
2021 return false;
2022
2023 return true;
2024}
2025
2026static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
2027{
2028 struct kvm_segment cs, ss;
2029
2030 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
2031 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2032
2033 return ((cs.selector & SELECTOR_RPL_MASK) ==
2034 (ss.selector & SELECTOR_RPL_MASK));
2035}
2036
2037/*
2038 * Check if guest state is valid. Returns true if valid, false if
2039 * not.
2040 * We assume that registers are always usable
2041 */
2042static bool guest_state_valid(struct kvm_vcpu *vcpu)
2043{
2044 /* real mode guest state checks */
2045 if (!(vcpu->arch.cr0 & X86_CR0_PE)) {
2046 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
2047 return false;
2048 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
2049 return false;
2050 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
2051 return false;
2052 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
2053 return false;
2054 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
2055 return false;
2056 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
2057 return false;
2058 } else {
2059 /* protected mode guest state checks */
2060 if (!cs_ss_rpl_check(vcpu))
2061 return false;
2062 if (!code_segment_valid(vcpu))
2063 return false;
2064 if (!stack_segment_valid(vcpu))
2065 return false;
2066 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
2067 return false;
2068 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
2069 return false;
2070 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
2071 return false;
2072 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
2073 return false;
2074 if (!tr_valid(vcpu))
2075 return false;
2076 if (!ldtr_valid(vcpu))
2077 return false;
2078 }
2079 /* TODO:
2080 * - Add checks on RIP
2081 * - Add checks on RFLAGS
2082 */
2083
2084 return true;
2085}
2086
Mike Dayd77c26f2007-10-08 09:02:08 -04002087static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002088{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002089 gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02002090 u16 data = 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002091 int ret = 0;
Izik Eidus195aefd2007-10-01 22:14:18 +02002092 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002093
Izik Eidus195aefd2007-10-01 22:14:18 +02002094 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2095 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002096 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002097 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08002098 r = kvm_write_guest_page(kvm, fn++, &data,
2099 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02002100 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002101 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002102 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
2103 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002104 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002105 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2106 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002107 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002108 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002109 r = kvm_write_guest_page(kvm, fn, &data,
2110 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
2111 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02002112 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002113 goto out;
2114
2115 ret = 1;
2116out:
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002117 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002118}
2119
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002120static int init_rmode_identity_map(struct kvm *kvm)
2121{
2122 int i, r, ret;
2123 pfn_t identity_map_pfn;
2124 u32 tmp;
2125
Avi Kivity089d0342009-03-23 18:26:32 +02002126 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002127 return 1;
2128 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
2129 printk(KERN_ERR "EPT: identity-mapping pagetable "
2130 "haven't been allocated!\n");
2131 return 0;
2132 }
2133 if (likely(kvm->arch.ept_identity_pagetable_done))
2134 return 1;
2135 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002136 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002137 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
2138 if (r < 0)
2139 goto out;
2140 /* Set up identity-mapping pagetable for EPT in real mode */
2141 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2142 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2143 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2144 r = kvm_write_guest_page(kvm, identity_map_pfn,
2145 &tmp, i * sizeof(tmp), sizeof(tmp));
2146 if (r < 0)
2147 goto out;
2148 }
2149 kvm->arch.ept_identity_pagetable_done = true;
2150 ret = 1;
2151out:
2152 return ret;
2153}
2154
Avi Kivity6aa8b732006-12-10 02:21:36 -08002155static void seg_setup(int seg)
2156{
2157 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002158 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002159
2160 vmcs_write16(sf->selector, 0);
2161 vmcs_writel(sf->base, 0);
2162 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002163 if (enable_unrestricted_guest) {
2164 ar = 0x93;
2165 if (seg == VCPU_SREG_CS)
2166 ar |= 0x08; /* code segment */
2167 } else
2168 ar = 0xf3;
2169
2170 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002171}
2172
Sheng Yangf78e0e22007-10-29 09:40:42 +08002173static int alloc_apic_access_page(struct kvm *kvm)
2174{
2175 struct kvm_userspace_memory_region kvm_userspace_mem;
2176 int r = 0;
2177
Izik Eidus72dc67a2008-02-10 18:04:15 +02002178 down_write(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002179 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08002180 goto out;
2181 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
2182 kvm_userspace_mem.flags = 0;
2183 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
2184 kvm_userspace_mem.memory_size = PAGE_SIZE;
2185 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2186 if (r)
2187 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002188
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002189 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002190out:
Izik Eidus72dc67a2008-02-10 18:04:15 +02002191 up_write(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002192 return r;
2193}
2194
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002195static int alloc_identity_pagetable(struct kvm *kvm)
2196{
2197 struct kvm_userspace_memory_region kvm_userspace_mem;
2198 int r = 0;
2199
2200 down_write(&kvm->slots_lock);
2201 if (kvm->arch.ept_identity_pagetable)
2202 goto out;
2203 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
2204 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002205 kvm_userspace_mem.guest_phys_addr =
2206 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002207 kvm_userspace_mem.memory_size = PAGE_SIZE;
2208 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
2209 if (r)
2210 goto out;
2211
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002212 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08002213 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002214out:
2215 up_write(&kvm->slots_lock);
2216 return r;
2217}
2218
Sheng Yang2384d2b2008-01-17 15:14:33 +08002219static void allocate_vpid(struct vcpu_vmx *vmx)
2220{
2221 int vpid;
2222
2223 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02002224 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08002225 return;
2226 spin_lock(&vmx_vpid_lock);
2227 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
2228 if (vpid < VMX_NR_VPIDS) {
2229 vmx->vpid = vpid;
2230 __set_bit(vpid, vmx_vpid_bitmap);
2231 }
2232 spin_unlock(&vmx_vpid_lock);
2233}
2234
Avi Kivity58972972009-02-24 22:26:47 +02002235static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08002236{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002237 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08002238
2239 if (!cpu_has_vmx_msr_bitmap())
2240 return;
2241
2242 /*
2243 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
2244 * have the write-low and read-high bitmap offsets the wrong way round.
2245 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
2246 */
Sheng Yang25c5f222008-03-28 13:18:56 +08002247 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002248 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
2249 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08002250 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
2251 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002252 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
2253 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08002254 }
Sheng Yang25c5f222008-03-28 13:18:56 +08002255}
2256
Avi Kivity58972972009-02-24 22:26:47 +02002257static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
2258{
2259 if (!longmode_only)
2260 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
2261 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
2262}
2263
Avi Kivity6aa8b732006-12-10 02:21:36 -08002264/*
2265 * Sets up the vmcs for emulated real mode.
2266 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002267static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002268{
Sheng Yang468d4722008-10-09 16:01:55 +08002269 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002270 u32 junk;
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002271 u64 host_pat, tsc_this, tsc_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002272 unsigned long a;
2273 struct descriptor_table dt;
2274 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03002275 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002276 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002277
Avi Kivity6aa8b732006-12-10 02:21:36 -08002278 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02002279 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
2280 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002281
Sheng Yang25c5f222008-03-28 13:18:56 +08002282 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02002283 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08002284
Avi Kivity6aa8b732006-12-10 02:21:36 -08002285 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
2286
Avi Kivity6aa8b732006-12-10 02:21:36 -08002287 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002288 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
2289 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002290
2291 exec_control = vmcs_config.cpu_based_exec_ctrl;
2292 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
2293 exec_control &= ~CPU_BASED_TPR_SHADOW;
2294#ifdef CONFIG_X86_64
2295 exec_control |= CPU_BASED_CR8_STORE_EXITING |
2296 CPU_BASED_CR8_LOAD_EXITING;
2297#endif
2298 }
Avi Kivity089d0342009-03-23 18:26:32 +02002299 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08002300 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03002301 CPU_BASED_CR3_LOAD_EXITING |
2302 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002303 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002304
Sheng Yang83ff3b92007-11-21 14:33:25 +08002305 if (cpu_has_secondary_exec_ctrls()) {
2306 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
2307 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2308 exec_control &=
2309 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08002310 if (vmx->vpid == 0)
2311 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang046d8712009-11-27 16:46:26 +08002312 if (!enable_ept) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002313 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang046d8712009-11-27 16:46:26 +08002314 enable_unrestricted_guest = 0;
2315 }
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002316 if (!enable_unrestricted_guest)
2317 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002318 if (!ple_gap)
2319 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Sheng Yang83ff3b92007-11-21 14:33:25 +08002320 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
2321 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08002322
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002323 if (ple_gap) {
2324 vmcs_write32(PLE_GAP, ple_gap);
2325 vmcs_write32(PLE_WINDOW, ple_window);
2326 }
2327
Avi Kivityc7addb92007-09-16 18:58:32 +02002328 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
2329 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002330 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
2331
2332 vmcs_writel(HOST_CR0, read_cr0()); /* 22.2.3 */
2333 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
2334 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
2335
2336 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
2337 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
2338 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002339 vmcs_write16(HOST_FS_SELECTOR, kvm_read_fs()); /* 22.2.4 */
2340 vmcs_write16(HOST_GS_SELECTOR, kvm_read_gs()); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002342#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002343 rdmsrl(MSR_FS_BASE, a);
2344 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
2345 rdmsrl(MSR_GS_BASE, a);
2346 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
2347#else
2348 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
2349 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
2350#endif
2351
2352 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
2353
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002354 kvm_get_idt(&dt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002355 vmcs_writel(HOST_IDTR_BASE, dt.base); /* 22.2.4 */
2356
Mike Dayd77c26f2007-10-08 09:02:08 -04002357 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03002358 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03002359 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
2360 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
2361 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002362
2363 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
2364 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
2365 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
2366 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
2367 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
2368 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
2369
Sheng Yang468d4722008-10-09 16:01:55 +08002370 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
2371 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2372 host_pat = msr_low | ((u64) msr_high << 32);
2373 vmcs_write64(HOST_IA32_PAT, host_pat);
2374 }
2375 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2376 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
2377 host_pat = msr_low | ((u64) msr_high << 32);
2378 /* Write the default value follow host pat */
2379 vmcs_write64(GUEST_IA32_PAT, host_pat);
2380 /* Keep arch.pat sync with GUEST_IA32_PAT */
2381 vmx->vcpu.arch.pat = host_pat;
2382 }
2383
Avi Kivity6aa8b732006-12-10 02:21:36 -08002384 for (i = 0; i < NR_VMX_MSR; ++i) {
2385 u32 index = vmx_msr_index[i];
2386 u32 data_low, data_high;
2387 u64 data;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002388 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002389
2390 if (rdmsr_safe(index, &data_low, &data_high) < 0)
2391 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08002392 if (wrmsr_safe(index, data_low, data_high) < 0)
2393 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002394 data = data_low | ((u64)data_high << 32);
Avi Kivity26bb0982009-09-07 11:14:12 +03002395 vmx->guest_msrs[j].index = i;
2396 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02002397 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002398 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002399 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002400
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002401 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002402
2403 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002404 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
2405
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002406 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
2407 vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);
2408
Marcelo Tosatti53f658b2008-12-11 20:45:05 +01002409 tsc_base = vmx->vcpu.kvm->arch.vm_init_tsc;
2410 rdtscll(tsc_this);
2411 if (tsc_this < vmx->vcpu.kvm->arch.vm_init_tsc)
2412 tsc_base = tsc_this;
2413
2414 guest_write_tsc(0, tsc_base);
Sheng Yangf78e0e22007-10-29 09:40:42 +08002415
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002416 return 0;
2417}
2418
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002419static int init_rmode(struct kvm *kvm)
2420{
2421 if (!init_rmode_tss(kvm))
2422 return 0;
2423 if (!init_rmode_identity_map(kvm))
2424 return 0;
2425 return 1;
2426}
2427
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002428static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
2429{
2430 struct vcpu_vmx *vmx = to_vmx(vcpu);
2431 u64 msr;
2432 int ret;
2433
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002434 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002435 down_read(&vcpu->kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002436 if (!init_rmode(vmx->vcpu.kvm)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002437 ret = -ENOMEM;
2438 goto out;
2439 }
2440
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002441 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002442
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002443 vmx->soft_vnmi_blocked = 0;
2444
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002445 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002446 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002447 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002448 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002449 msr |= MSR_IA32_APICBASE_BSP;
2450 kvm_set_apic_base(&vmx->vcpu, msr);
2451
2452 fx_init(&vmx->vcpu);
2453
Avi Kivity5706be02008-08-20 15:07:31 +03002454 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002455 /*
2456 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
2457 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
2458 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002459 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002460 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
2461 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
2462 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002463 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
2464 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002465 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002466
2467 seg_setup(VCPU_SREG_DS);
2468 seg_setup(VCPU_SREG_ES);
2469 seg_setup(VCPU_SREG_FS);
2470 seg_setup(VCPU_SREG_GS);
2471 seg_setup(VCPU_SREG_SS);
2472
2473 vmcs_write16(GUEST_TR_SELECTOR, 0);
2474 vmcs_writel(GUEST_TR_BASE, 0);
2475 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
2476 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2477
2478 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
2479 vmcs_writel(GUEST_LDTR_BASE, 0);
2480 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
2481 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
2482
2483 vmcs_write32(GUEST_SYSENTER_CS, 0);
2484 vmcs_writel(GUEST_SYSENTER_ESP, 0);
2485 vmcs_writel(GUEST_SYSENTER_EIP, 0);
2486
2487 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03002488 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002489 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002490 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002491 kvm_rip_write(vcpu, 0);
2492 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002493
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002494 vmcs_writel(GUEST_DR7, 0x400);
2495
2496 vmcs_writel(GUEST_GDTR_BASE, 0);
2497 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
2498
2499 vmcs_writel(GUEST_IDTR_BASE, 0);
2500 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
2501
2502 vmcs_write32(GUEST_ACTIVITY_STATE, 0);
2503 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
2504 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
2505
Avi Kivitye00c8cf2007-10-21 11:00:39 +02002506 /* Special registers */
2507 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
2508
2509 setup_msrs(vmx);
2510
Avi Kivity6aa8b732006-12-10 02:21:36 -08002511 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
2512
Sheng Yangf78e0e22007-10-29 09:40:42 +08002513 if (cpu_has_vmx_tpr_shadow()) {
2514 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
2515 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
2516 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002517 page_to_phys(vmx->vcpu.arch.apic->regs_page));
Sheng Yangf78e0e22007-10-29 09:40:42 +08002518 vmcs_write32(TPR_THRESHOLD, 0);
2519 }
2520
2521 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
2522 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002523 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002524
Sheng Yang2384d2b2008-01-17 15:14:33 +08002525 if (vmx->vpid != 0)
2526 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2527
Eduardo Habkostfa400522009-10-24 02:49:58 -02002528 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002529 vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002530 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002531 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10002532 vmx_fpu_activate(&vmx->vcpu);
2533 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002534
Sheng Yang2384d2b2008-01-17 15:14:33 +08002535 vpid_sync_vcpu_all(vmx);
2536
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002537 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002538
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002539 /* HACK: Don't enable emulation on guest boot/reset */
2540 vmx->emulation_required = 0;
2541
Avi Kivity6aa8b732006-12-10 02:21:36 -08002542out:
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002543 up_read(&vcpu->kvm->slots_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002544 return ret;
2545}
2546
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002547static void enable_irq_window(struct kvm_vcpu *vcpu)
2548{
2549 u32 cpu_based_vm_exec_control;
2550
2551 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2552 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
2553 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2554}
2555
2556static void enable_nmi_window(struct kvm_vcpu *vcpu)
2557{
2558 u32 cpu_based_vm_exec_control;
2559
2560 if (!cpu_has_virtual_nmis()) {
2561 enable_irq_window(vcpu);
2562 return;
2563 }
2564
2565 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
2566 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
2567 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2568}
2569
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002570static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03002571{
Avi Kivity9c8cba32007-11-22 11:42:59 +02002572 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002573 uint32_t intr;
2574 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02002575
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002576 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04002577
Avi Kivityfa89a812008-09-01 15:57:51 +03002578 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002579 if (vmx->rmode.vm86_active) {
Avi Kivity9c8cba32007-11-22 11:42:59 +02002580 vmx->rmode.irq.pending = true;
2581 vmx->rmode.irq.vector = irq;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002582 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
Gleb Natapovae0bb3e2009-05-19 11:07:10 +03002583 if (vcpu->arch.interrupt.soft)
2584 vmx->rmode.irq.rip +=
2585 vmx->vcpu.arch.event_exit_inst_len;
Avi Kivity9c5623e2007-11-08 18:19:20 +02002586 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2587 irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
2588 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002589 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
Eddie Dong85f455f2007-07-06 12:20:49 +03002590 return;
2591 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002592 intr = irq | INTR_INFO_VALID_MASK;
2593 if (vcpu->arch.interrupt.soft) {
2594 intr |= INTR_TYPE_SOFT_INTR;
2595 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2596 vmx->vcpu.arch.event_exit_inst_len);
2597 } else
2598 intr |= INTR_TYPE_EXT_INTR;
2599 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03002600}
2601
Sheng Yangf08864b2008-05-15 18:23:25 +08002602static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
2603{
Jan Kiszka66a5a342008-09-26 09:30:51 +02002604 struct vcpu_vmx *vmx = to_vmx(vcpu);
2605
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002606 if (!cpu_has_virtual_nmis()) {
2607 /*
2608 * Tracking the NMI-blocked state in software is built upon
2609 * finding the next open IRQ window. This, in turn, depends on
2610 * well-behaving guests: They have to keep IRQs disabled at
2611 * least as long as the NMI handler runs. Otherwise we may
2612 * cause NMI nesting, maybe breaking the guest. But as this is
2613 * highly unlikely, we can live with the residual risk.
2614 */
2615 vmx->soft_vnmi_blocked = 1;
2616 vmx->vnmi_blocked_time = 0;
2617 }
2618
Jan Kiszka487b3912008-09-26 09:30:56 +02002619 ++vcpu->stat.nmi_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002620 if (vmx->rmode.vm86_active) {
Jan Kiszka66a5a342008-09-26 09:30:51 +02002621 vmx->rmode.irq.pending = true;
2622 vmx->rmode.irq.vector = NMI_VECTOR;
2623 vmx->rmode.irq.rip = kvm_rip_read(vcpu);
2624 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2625 NMI_VECTOR | INTR_TYPE_SOFT_INTR |
2626 INTR_INFO_VALID_MASK);
2627 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
2628 kvm_rip_write(vcpu, vmx->rmode.irq.rip - 1);
2629 return;
2630 }
Sheng Yangf08864b2008-05-15 18:23:25 +08002631 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2632 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08002633}
2634
Gleb Natapovc4282df2009-04-21 17:45:07 +03002635static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02002636{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02002637 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03002638 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02002639
Gleb Natapovc4282df2009-04-21 17:45:07 +03002640 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2641 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS |
2642 GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02002643}
2644
Jan Kiszka3cfc3092009-11-12 01:04:25 +01002645static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
2646{
2647 if (!cpu_has_virtual_nmis())
2648 return to_vmx(vcpu)->soft_vnmi_blocked;
2649 else
2650 return !!(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2651 GUEST_INTR_STATE_NMI);
2652}
2653
2654static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
2655{
2656 struct vcpu_vmx *vmx = to_vmx(vcpu);
2657
2658 if (!cpu_has_virtual_nmis()) {
2659 if (vmx->soft_vnmi_blocked != masked) {
2660 vmx->soft_vnmi_blocked = masked;
2661 vmx->vnmi_blocked_time = 0;
2662 }
2663 } else {
2664 if (masked)
2665 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
2666 GUEST_INTR_STATE_NMI);
2667 else
2668 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
2669 GUEST_INTR_STATE_NMI);
2670 }
2671}
2672
Gleb Natapov78646122009-03-23 12:12:11 +02002673static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
2674{
Gleb Natapovc4282df2009-04-21 17:45:07 +03002675 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
2676 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
2677 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02002678}
2679
Izik Eiduscbc94022007-10-25 00:29:55 +02002680static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
2681{
2682 int ret;
2683 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08002684 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02002685 .guest_phys_addr = addr,
2686 .memory_size = PAGE_SIZE * 3,
2687 .flags = 0,
2688 };
2689
2690 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
2691 if (ret)
2692 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002693 kvm->arch.tss_addr = addr;
Izik Eiduscbc94022007-10-25 00:29:55 +02002694 return 0;
2695}
2696
Avi Kivity6aa8b732006-12-10 02:21:36 -08002697static int handle_rmode_exception(struct kvm_vcpu *vcpu,
2698 int vec, u32 err_code)
2699{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03002700 /*
2701 * Instruction with address size override prefix opcode 0x67
2702 * Cause the #SS fault with 0 error code in VM86 mode.
2703 */
2704 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Avi Kivity851ba692009-08-24 11:10:17 +03002705 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002706 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002707 /*
2708 * Forward all other exceptions that are valid in real mode.
2709 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
2710 * the required debugging infrastructure rework.
2711 */
2712 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002713 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002714 if (vcpu->guest_debug &
2715 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
2716 return 0;
2717 kvm_queue_exception(vcpu, vec);
2718 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002719 case BP_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002720 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
2721 return 0;
2722 /* fall through */
2723 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002724 case OF_VECTOR:
2725 case BR_VECTOR:
2726 case UD_VECTOR:
2727 case DF_VECTOR:
2728 case SS_VECTOR:
2729 case GP_VECTOR:
2730 case MF_VECTOR:
2731 kvm_queue_exception(vcpu, vec);
2732 return 1;
2733 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002734 return 0;
2735}
2736
Andi Kleena0861c02009-06-08 17:37:09 +08002737/*
2738 * Trigger machine check on the host. We assume all the MSRs are already set up
2739 * by the CPU and that we still run on the same CPU as the MCE occurred on.
2740 * We pass a fake environment to the machine check handler because we want
2741 * the guest to be always treated like user space, no matter what context
2742 * it used internally.
2743 */
2744static void kvm_machine_check(void)
2745{
2746#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
2747 struct pt_regs regs = {
2748 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
2749 .flags = X86_EFLAGS_IF,
2750 };
2751
2752 do_machine_check(&regs, 0);
2753#endif
2754}
2755
Avi Kivity851ba692009-08-24 11:10:17 +03002756static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08002757{
2758 /* already handled by vcpu_run */
2759 return 1;
2760}
2761
Avi Kivity851ba692009-08-24 11:10:17 +03002762static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002763{
Avi Kivity1155f762007-11-22 11:30:47 +02002764 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002765 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002766 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002767 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002768 u32 vect_info;
2769 enum emulation_result er;
2770
Avi Kivity1155f762007-11-22 11:30:47 +02002771 vect_info = vmx->idt_vectoring_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002772 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
2773
Andi Kleena0861c02009-06-08 17:37:09 +08002774 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03002775 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08002776
Avi Kivity6aa8b732006-12-10 02:21:36 -08002777 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Avi Kivity65ac7262009-11-04 11:59:01 +02002778 !is_page_fault(intr_info)) {
2779 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
2780 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
2781 vcpu->run->internal.ndata = 2;
2782 vcpu->run->internal.data[0] = vect_info;
2783 vcpu->run->internal.data[1] = intr_info;
2784 return 0;
2785 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002786
Jan Kiszkae4a41882008-09-26 09:30:46 +02002787 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02002788 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002789
2790 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002791 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03002792 return 1;
2793 }
2794
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002795 if (is_invalid_opcode(intr_info)) {
Avi Kivity851ba692009-08-24 11:10:17 +03002796 er = emulate_instruction(vcpu, 0, 0, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002797 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02002798 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05002799 return 1;
2800 }
2801
Avi Kivity6aa8b732006-12-10 02:21:36 -08002802 error_code = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002803 rip = kvm_rip_read(vcpu);
Ryan Harper2e113842008-02-11 10:26:38 -06002804 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002805 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
2806 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08002807 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02002808 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002809 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002810 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002811 trace_kvm_page_fault(cr2, error_code);
2812
Gleb Natapov3298b752009-05-11 13:35:46 +03002813 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03002814 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Avi Kivity30677142007-10-28 18:48:59 +02002815 return kvm_mmu_page_fault(vcpu, cr2, error_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002816 }
2817
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002818 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08002819 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002820 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002821 if (vcpu->arch.halt_request) {
2822 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002823 return kvm_emulate_halt(vcpu);
2824 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002825 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03002826 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002827
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002828 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002829 switch (ex_no) {
2830 case DB_VECTOR:
2831 dr6 = vmcs_readl(EXIT_QUALIFICATION);
2832 if (!(vcpu->guest_debug &
2833 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
2834 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
2835 kvm_queue_exception(vcpu, DB_VECTOR);
2836 return 1;
2837 }
2838 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
2839 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
2840 /* fall through */
2841 case BP_VECTOR:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002842 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002843 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
2844 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002845 break;
2846 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002847 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
2848 kvm_run->ex.exception = ex_no;
2849 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002850 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002851 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002852 return 0;
2853}
2854
Avi Kivity851ba692009-08-24 11:10:17 +03002855static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002856{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002857 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002858 return 1;
2859}
2860
Avi Kivity851ba692009-08-24 11:10:17 +03002861static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08002862{
Avi Kivity851ba692009-08-24 11:10:17 +03002863 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08002864 return 0;
2865}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002866
Avi Kivity851ba692009-08-24 11:10:17 +03002867static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002868{
He, Qingbfdaab02007-09-12 14:18:28 +08002869 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01002870 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02002871 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002872
Avi Kivity1165f5f2007-04-19 17:27:43 +03002873 ++vcpu->stat.io_exits;
He, Qingbfdaab02007-09-12 14:18:28 +08002874 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02002875 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03002876
2877 if (string) {
Avi Kivity851ba692009-08-24 11:10:17 +03002878 if (emulate_instruction(vcpu, 0, 0, 0) == EMULATE_DO_MMIO)
Laurent Viviere70669a2007-08-05 10:36:40 +03002879 return 0;
2880 return 1;
2881 }
2882
2883 size = (exit_qualification & 7) + 1;
2884 in = (exit_qualification & 8) != 0;
Avi Kivity039576c2007-03-20 12:46:50 +02002885 port = exit_qualification >> 16;
Laurent Viviere70669a2007-08-05 10:36:40 +03002886
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01002887 skip_emulated_instruction(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03002888 return kvm_emulate_pio(vcpu, in, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002889}
2890
Ingo Molnar102d8322007-02-19 14:37:47 +02002891static void
2892vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
2893{
2894 /*
2895 * Patch in the VMCALL instruction:
2896 */
2897 hypercall[0] = 0x0f;
2898 hypercall[1] = 0x01;
2899 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02002900}
2901
Avi Kivity851ba692009-08-24 11:10:17 +03002902static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002903{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002904 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002905 int cr;
2906 int reg;
2907
He, Qingbfdaab02007-09-12 14:18:28 +08002908 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002909 cr = exit_qualification & 15;
2910 reg = (exit_qualification >> 8) & 15;
2911 switch ((exit_qualification >> 4) & 3) {
2912 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002913 val = kvm_register_read(vcpu, reg);
2914 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002915 switch (cr) {
2916 case 0:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002917 kvm_set_cr0(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002918 skip_emulated_instruction(vcpu);
2919 return 1;
2920 case 3:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002921 kvm_set_cr3(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002922 skip_emulated_instruction(vcpu);
2923 return 1;
2924 case 4:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002925 kvm_set_cr4(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002926 skip_emulated_instruction(vcpu);
2927 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002928 case 8: {
2929 u8 cr8_prev = kvm_get_cr8(vcpu);
2930 u8 cr8 = kvm_register_read(vcpu, reg);
2931 kvm_set_cr8(vcpu, cr8);
2932 skip_emulated_instruction(vcpu);
2933 if (irqchip_in_kernel(vcpu->kvm))
2934 return 1;
2935 if (cr8_prev <= cr8)
2936 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03002937 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03002938 return 0;
2939 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002940 };
2941 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03002942 case 2: /* clts */
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002943 vmx_fpu_deactivate(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002944 vcpu->arch.cr0 &= ~X86_CR0_TS;
2945 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03002946 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03002947 skip_emulated_instruction(vcpu);
2948 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002949 case 1: /*mov from cr*/
2950 switch (cr) {
2951 case 3:
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002952 kvm_register_write(vcpu, reg, vcpu->arch.cr3);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002953 trace_kvm_cr_read(cr, vcpu->arch.cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002954 skip_emulated_instruction(vcpu);
2955 return 1;
2956 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03002957 val = kvm_get_cr8(vcpu);
2958 kvm_register_write(vcpu, reg, val);
2959 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002960 skip_emulated_instruction(vcpu);
2961 return 1;
2962 }
2963 break;
2964 case 3: /* lmsw */
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02002965 kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002966
2967 skip_emulated_instruction(vcpu);
2968 return 1;
2969 default:
2970 break;
2971 }
Avi Kivity851ba692009-08-24 11:10:17 +03002972 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10002973 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08002974 (int)(exit_qualification >> 4) & 3, cr);
2975 return 0;
2976}
2977
Avi Kivity851ba692009-08-24 11:10:17 +03002978static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002979{
He, Qingbfdaab02007-09-12 14:18:28 +08002980 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002981 unsigned long val;
2982 int dr, reg;
2983
Avi Kivity0a79b002009-09-01 12:03:25 +03002984 if (!kvm_require_cpl(vcpu, 0))
2985 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002986 dr = vmcs_readl(GUEST_DR7);
2987 if (dr & DR7_GD) {
2988 /*
2989 * As the vm-exit takes precedence over the debug trap, we
2990 * need to emulate the latter, either for the host or the
2991 * guest debugging itself.
2992 */
2993 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03002994 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
2995 vcpu->run->debug.arch.dr7 = dr;
2996 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01002997 vmcs_readl(GUEST_CS_BASE) +
2998 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03002999 vcpu->run->debug.arch.exception = DB_VECTOR;
3000 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003001 return 0;
3002 } else {
3003 vcpu->arch.dr7 &= ~DR7_GD;
3004 vcpu->arch.dr6 |= DR6_BD;
3005 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3006 kvm_queue_exception(vcpu, DB_VECTOR);
3007 return 1;
3008 }
3009 }
3010
He, Qingbfdaab02007-09-12 14:18:28 +08003011 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003012 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
3013 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
3014 if (exit_qualification & TYPE_MOV_FROM_DR) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003015 switch (dr) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003016 case 0 ... 3:
3017 val = vcpu->arch.db[dr];
3018 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003019 case 6:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003020 val = vcpu->arch.dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003021 break;
3022 case 7:
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003023 val = vcpu->arch.dr7;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003024 break;
3025 default:
3026 val = 0;
3027 }
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003028 kvm_register_write(vcpu, reg, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003029 } else {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003030 val = vcpu->arch.regs[reg];
3031 switch (dr) {
3032 case 0 ... 3:
3033 vcpu->arch.db[dr] = val;
3034 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP))
3035 vcpu->arch.eff_db[dr] = val;
3036 break;
3037 case 4 ... 5:
3038 if (vcpu->arch.cr4 & X86_CR4_DE)
3039 kvm_queue_exception(vcpu, UD_VECTOR);
3040 break;
3041 case 6:
3042 if (val & 0xffffffff00000000ULL) {
3043 kvm_queue_exception(vcpu, GP_VECTOR);
3044 break;
3045 }
3046 vcpu->arch.dr6 = (val & DR6_VOLATILE) | DR6_FIXED_1;
3047 break;
3048 case 7:
3049 if (val & 0xffffffff00000000ULL) {
3050 kvm_queue_exception(vcpu, GP_VECTOR);
3051 break;
3052 }
3053 vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1;
3054 if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) {
3055 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3056 vcpu->arch.switch_db_regs =
3057 (val & DR7_BP_EN_MASK);
3058 }
3059 break;
3060 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003061 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003062 skip_emulated_instruction(vcpu);
3063 return 1;
3064}
3065
Avi Kivity851ba692009-08-24 11:10:17 +03003066static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003067{
Avi Kivity06465c52007-02-28 20:46:53 +02003068 kvm_emulate_cpuid(vcpu);
3069 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003070}
3071
Avi Kivity851ba692009-08-24 11:10:17 +03003072static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003073{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003074 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08003075 u64 data;
3076
3077 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003078 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003079 return 1;
3080 }
3081
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003082 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003083
Avi Kivity6aa8b732006-12-10 02:21:36 -08003084 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003085 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
3086 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003087 skip_emulated_instruction(vcpu);
3088 return 1;
3089}
3090
Avi Kivity851ba692009-08-24 11:10:17 +03003091static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003092{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003093 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
3094 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
3095 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003096
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003097 trace_kvm_msr_write(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003098
Avi Kivity6aa8b732006-12-10 02:21:36 -08003099 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003100 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003101 return 1;
3102 }
3103
3104 skip_emulated_instruction(vcpu);
3105 return 1;
3106}
3107
Avi Kivity851ba692009-08-24 11:10:17 +03003108static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003109{
3110 return 1;
3111}
3112
Avi Kivity851ba692009-08-24 11:10:17 +03003113static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003114{
Eddie Dong85f455f2007-07-06 12:20:49 +03003115 u32 cpu_based_vm_exec_control;
3116
3117 /* clear pending irq */
3118 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3119 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
3120 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003121
Jan Kiszkaa26bf122008-09-26 09:30:45 +02003122 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003123
Dor Laorc1150d82007-01-05 16:36:24 -08003124 /*
3125 * If the user space waits to inject interrupts, exit as soon as
3126 * possible
3127 */
Gleb Natapov80618232009-04-21 17:44:56 +03003128 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03003129 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03003130 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003131 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08003132 return 0;
3133 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003134 return 1;
3135}
3136
Avi Kivity851ba692009-08-24 11:10:17 +03003137static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003138{
3139 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003140 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003141}
3142
Avi Kivity851ba692009-08-24 11:10:17 +03003143static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02003144{
Dor Laor510043d2007-02-19 18:25:43 +02003145 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003146 kvm_emulate_hypercall(vcpu);
3147 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003148}
3149
Avi Kivity851ba692009-08-24 11:10:17 +03003150static int handle_vmx_insn(struct kvm_vcpu *vcpu)
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003151{
3152 kvm_queue_exception(vcpu, UD_VECTOR);
3153 return 1;
3154}
3155
Avi Kivity851ba692009-08-24 11:10:17 +03003156static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003157{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003158 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003159
3160 kvm_mmu_invlpg(vcpu, exit_qualification);
3161 skip_emulated_instruction(vcpu);
3162 return 1;
3163}
3164
Avi Kivity851ba692009-08-24 11:10:17 +03003165static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02003166{
3167 skip_emulated_instruction(vcpu);
3168 /* TODO: Add support for VT-d/pass-through device */
3169 return 1;
3170}
3171
Avi Kivity851ba692009-08-24 11:10:17 +03003172static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003173{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003174 unsigned long exit_qualification;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003175 enum emulation_result er;
3176 unsigned long offset;
3177
Sheng Yangf9c617f2009-03-25 10:08:52 +08003178 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003179 offset = exit_qualification & 0xffful;
3180
Avi Kivity851ba692009-08-24 11:10:17 +03003181 er = emulate_instruction(vcpu, 0, 0, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003182
3183 if (er != EMULATE_DONE) {
3184 printk(KERN_ERR
3185 "Fail to handle apic access vmexit! Offset is 0x%lx\n",
3186 offset);
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003187 return -ENOEXEC;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003188 }
3189 return 1;
3190}
3191
Avi Kivity851ba692009-08-24 11:10:17 +03003192static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02003193{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003194 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02003195 unsigned long exit_qualification;
3196 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003197 int reason, type, idt_v;
3198
3199 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
3200 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02003201
3202 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
3203
3204 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003205 if (reason == TASK_SWITCH_GATE && idt_v) {
3206 switch (type) {
3207 case INTR_TYPE_NMI_INTR:
3208 vcpu->arch.nmi_injected = false;
3209 if (cpu_has_virtual_nmis())
3210 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3211 GUEST_INTR_STATE_NMI);
3212 break;
3213 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003214 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003215 kvm_clear_interrupt_queue(vcpu);
3216 break;
3217 case INTR_TYPE_HARD_EXCEPTION:
3218 case INTR_TYPE_SOFT_EXCEPTION:
3219 kvm_clear_exception_queue(vcpu);
3220 break;
3221 default:
3222 break;
3223 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02003224 }
Izik Eidus37817f22008-03-24 23:14:53 +02003225 tss_selector = exit_qualification;
3226
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003227 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
3228 type != INTR_TYPE_EXT_INTR &&
3229 type != INTR_TYPE_NMI_INTR))
3230 skip_emulated_instruction(vcpu);
3231
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003232 if (!kvm_task_switch(vcpu, tss_selector, reason))
3233 return 0;
3234
3235 /* clear all local breakpoint enable flags */
3236 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
3237
3238 /*
3239 * TODO: What about debug traps on tss switch?
3240 * Are we supposed to inject them and update dr6?
3241 */
3242
3243 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02003244}
3245
Avi Kivity851ba692009-08-24 11:10:17 +03003246static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08003247{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003248 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08003249 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08003250 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08003251
Sheng Yangf9c617f2009-03-25 10:08:52 +08003252 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08003253
3254 if (exit_qualification & (1 << 6)) {
3255 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02003256 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08003257 }
3258
3259 gla_validity = (exit_qualification >> 7) & 0x3;
3260 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
3261 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
3262 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
3263 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08003264 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08003265 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
3266 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03003267 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3268 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03003269 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08003270 }
3271
3272 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003273 trace_kvm_page_fault(gpa, exit_qualification);
Sheng Yang49cd7d22009-02-11 13:50:40 +08003274 return kvm_mmu_page_fault(vcpu, gpa & PAGE_MASK, 0);
Sheng Yang14394422008-04-28 12:24:45 +08003275}
3276
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003277static u64 ept_rsvd_mask(u64 spte, int level)
3278{
3279 int i;
3280 u64 mask = 0;
3281
3282 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
3283 mask |= (1ULL << i);
3284
3285 if (level > 2)
3286 /* bits 7:3 reserved */
3287 mask |= 0xf8;
3288 else if (level == 2) {
3289 if (spte & (1ULL << 7))
3290 /* 2MB ref, bits 20:12 reserved */
3291 mask |= 0x1ff000;
3292 else
3293 /* bits 6:3 reserved */
3294 mask |= 0x78;
3295 }
3296
3297 return mask;
3298}
3299
3300static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
3301 int level)
3302{
3303 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
3304
3305 /* 010b (write-only) */
3306 WARN_ON((spte & 0x7) == 0x2);
3307
3308 /* 110b (write/execute) */
3309 WARN_ON((spte & 0x7) == 0x6);
3310
3311 /* 100b (execute-only) and value not supported by logical processor */
3312 if (!cpu_has_vmx_ept_execute_only())
3313 WARN_ON((spte & 0x7) == 0x4);
3314
3315 /* not 000b */
3316 if ((spte & 0x7)) {
3317 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
3318
3319 if (rsvd_bits != 0) {
3320 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
3321 __func__, rsvd_bits);
3322 WARN_ON(1);
3323 }
3324
3325 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
3326 u64 ept_mem_type = (spte & 0x38) >> 3;
3327
3328 if (ept_mem_type == 2 || ept_mem_type == 3 ||
3329 ept_mem_type == 7) {
3330 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
3331 __func__, ept_mem_type);
3332 WARN_ON(1);
3333 }
3334 }
3335 }
3336}
3337
Avi Kivity851ba692009-08-24 11:10:17 +03003338static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003339{
3340 u64 sptes[4];
3341 int nr_sptes, i;
3342 gpa_t gpa;
3343
3344 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
3345
3346 printk(KERN_ERR "EPT: Misconfiguration.\n");
3347 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
3348
3349 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
3350
3351 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
3352 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
3353
Avi Kivity851ba692009-08-24 11:10:17 +03003354 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3355 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003356
3357 return 0;
3358}
3359
Avi Kivity851ba692009-08-24 11:10:17 +03003360static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08003361{
3362 u32 cpu_based_vm_exec_control;
3363
3364 /* clear pending NMI */
3365 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3366 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
3367 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3368 ++vcpu->stat.nmi_window_exits;
3369
3370 return 1;
3371}
3372
Mohammed Gamal80ced182009-09-01 12:48:18 +02003373static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003374{
Avi Kivity8b3079a2009-01-05 12:10:54 +02003375 struct vcpu_vmx *vmx = to_vmx(vcpu);
3376 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003377 int ret = 1;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003378
3379 while (!guest_state_valid(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003380 err = emulate_instruction(vcpu, 0, 0, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003381
Mohammed Gamal80ced182009-09-01 12:48:18 +02003382 if (err == EMULATE_DO_MMIO) {
3383 ret = 0;
3384 goto out;
3385 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003386
3387 if (err != EMULATE_DONE) {
3388 kvm_report_emulation_failure(vcpu, "emulation failure");
Mohammed Gamal80ced182009-09-01 12:48:18 +02003389 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3390 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
Avi Kivitya9c73992009-11-04 11:54:59 +02003391 vcpu->run->internal.ndata = 0;
Mohammed Gamal80ced182009-09-01 12:48:18 +02003392 ret = 0;
3393 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003394 }
3395
3396 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02003397 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003398 if (need_resched())
3399 schedule();
3400 }
3401
Mohammed Gamal80ced182009-09-01 12:48:18 +02003402 vmx->emulation_required = 0;
3403out:
3404 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03003405}
3406
Avi Kivity6aa8b732006-12-10 02:21:36 -08003407/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003408 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
3409 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
3410 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03003411static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003412{
3413 skip_emulated_instruction(vcpu);
3414 kvm_vcpu_on_spin(vcpu);
3415
3416 return 1;
3417}
3418
3419/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003420 * The exit handlers return 1 if the exit was handled fully and guest execution
3421 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
3422 * to be done to userspace and return 0.
3423 */
Avi Kivity851ba692009-08-24 11:10:17 +03003424static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003425 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
3426 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08003427 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08003428 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003429 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003430 [EXIT_REASON_CR_ACCESS] = handle_cr,
3431 [EXIT_REASON_DR_ACCESS] = handle_dr,
3432 [EXIT_REASON_CPUID] = handle_cpuid,
3433 [EXIT_REASON_MSR_READ] = handle_rdmsr,
3434 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
3435 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
3436 [EXIT_REASON_HLT] = handle_halt,
Marcelo Tosattia7052892008-09-23 13:18:35 -03003437 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02003438 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003439 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
3440 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
3441 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
3442 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
3443 [EXIT_REASON_VMREAD] = handle_vmx_insn,
3444 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
3445 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
3446 [EXIT_REASON_VMOFF] = handle_vmx_insn,
3447 [EXIT_REASON_VMON] = handle_vmx_insn,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003448 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
3449 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02003450 [EXIT_REASON_WBINVD] = handle_wbinvd,
Izik Eidus37817f22008-03-24 23:14:53 +02003451 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08003452 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03003453 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
3454 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003455 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003456};
3457
3458static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04003459 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003460
3461/*
3462 * The guest has exited. See if we can fix it or if we need userspace
3463 * assistance.
3464 */
Avi Kivity851ba692009-08-24 11:10:17 +03003465static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003466{
Avi Kivity29bd8a72007-09-10 17:27:03 +03003467 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003468 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02003469 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03003470
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003471 trace_kvm_exit(exit_reason, kvm_rip_read(vcpu));
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003472
Mohammed Gamal80ced182009-09-01 12:48:18 +02003473 /* If guest state is invalid, start emulating */
3474 if (vmx->emulation_required && emulate_invalid_guest_state)
3475 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01003476
Sheng Yang14394422008-04-28 12:24:45 +08003477 /* Access CR3 don't cause VMExit in paging mode, so we need
3478 * to sync with guest real CR3. */
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003479 if (enable_ept && is_paging(vcpu))
Sheng Yang14394422008-04-28 12:24:45 +08003480 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
Sheng Yang14394422008-04-28 12:24:45 +08003481
Avi Kivity29bd8a72007-09-10 17:27:03 +03003482 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003483 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
3484 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03003485 = vmcs_read32(VM_INSTRUCTION_ERROR);
3486 return 0;
3487 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003488
Mike Dayd77c26f2007-10-08 09:02:08 -04003489 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08003490 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02003491 exit_reason != EXIT_REASON_EPT_VIOLATION &&
3492 exit_reason != EXIT_REASON_TASK_SWITCH))
3493 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
3494 "(0x%x) and exit reason is 0x%x\n",
3495 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003496
3497 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03003498 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003499 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003500 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01003501 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003502 /*
3503 * This CPU don't support us in finding the end of an
3504 * NMI-blocked window if the guest runs with IRQs
3505 * disabled. So we pull the trigger after 1 s of
3506 * futile waiting, but inform the user about this.
3507 */
3508 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
3509 "state on VCPU %d after 1 s timeout\n",
3510 __func__, vcpu->vcpu_id);
3511 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003512 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003513 }
3514
Avi Kivity6aa8b732006-12-10 02:21:36 -08003515 if (exit_reason < kvm_vmx_max_exit_handlers
3516 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03003517 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003518 else {
Avi Kivity851ba692009-08-24 11:10:17 +03003519 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
3520 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003521 }
3522 return 0;
3523}
3524
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003525static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003526{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003527 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003528 vmcs_write32(TPR_THRESHOLD, 0);
3529 return;
3530 }
3531
Gleb Natapov95ba8273132009-04-21 17:45:08 +03003532 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003533}
3534
Avi Kivitycf393f72008-07-01 16:20:21 +03003535static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
3536{
3537 u32 exit_intr_info;
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003538 u32 idt_vectoring_info = vmx->idt_vectoring_info;
Avi Kivitycf393f72008-07-01 16:20:21 +03003539 bool unblock_nmi;
3540 u8 vector;
Avi Kivity668f6122008-07-02 09:28:55 +03003541 int type;
3542 bool idtv_info_valid;
Avi Kivitycf393f72008-07-01 16:20:21 +03003543
3544 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Gleb Natapov20f65982009-05-11 13:35:55 +03003545
Andi Kleena0861c02009-06-08 17:37:09 +08003546 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
3547
3548 /* Handle machine checks before interrupts are enabled */
3549 if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
3550 || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
3551 && is_machine_check(exit_intr_info)))
3552 kvm_machine_check();
3553
Gleb Natapov20f65982009-05-11 13:35:55 +03003554 /* We need to handle NMIs before interrupts are enabled */
3555 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003556 (exit_intr_info & INTR_INFO_VALID_MASK))
Gleb Natapov20f65982009-05-11 13:35:55 +03003557 asm("int $2");
Gleb Natapov20f65982009-05-11 13:35:55 +03003558
3559 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
3560
Avi Kivitycf393f72008-07-01 16:20:21 +03003561 if (cpu_has_virtual_nmis()) {
3562 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
3563 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
3564 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003565 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03003566 * Re-set bit "block by NMI" before VM entry if vmexit caused by
3567 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003568 * SDM 3: 23.2.2 (September 2008)
3569 * Bit 12 is undefined in any of the following cases:
3570 * If the VM exit sets the valid bit in the IDT-vectoring
3571 * information field.
3572 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03003573 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003574 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
3575 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03003576 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3577 GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003578 } else if (unlikely(vmx->soft_vnmi_blocked))
3579 vmx->vnmi_blocked_time +=
3580 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity668f6122008-07-02 09:28:55 +03003581
Gleb Natapov37b96e92009-03-30 16:03:13 +03003582 vmx->vcpu.arch.nmi_injected = false;
3583 kvm_clear_exception_queue(&vmx->vcpu);
3584 kvm_clear_interrupt_queue(&vmx->vcpu);
3585
3586 if (!idtv_info_valid)
3587 return;
3588
Avi Kivity668f6122008-07-02 09:28:55 +03003589 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
3590 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003591
Gleb Natapov64a7ec02009-03-30 16:03:29 +03003592 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003593 case INTR_TYPE_NMI_INTR:
3594 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03003595 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03003596 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03003597 * Clear bit "block by NMI" before VM entry if a NMI
3598 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03003599 */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003600 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3601 GUEST_INTR_STATE_NMI);
3602 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03003603 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003604 vmx->vcpu.arch.event_exit_inst_len =
3605 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3606 /* fall through */
3607 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03003608 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03003609 u32 err = vmcs_read32(IDT_VECTORING_ERROR_CODE);
3610 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03003611 } else
3612 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003613 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003614 case INTR_TYPE_SOFT_INTR:
3615 vmx->vcpu.arch.event_exit_inst_len =
3616 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
3617 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03003618 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003619 kvm_queue_interrupt(&vmx->vcpu, vector,
3620 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03003621 break;
3622 default:
3623 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03003624 }
Avi Kivitycf393f72008-07-01 16:20:21 +03003625}
3626
Avi Kivity9c8cba32007-11-22 11:42:59 +02003627/*
3628 * Failure to inject an interrupt should give us the information
3629 * in IDT_VECTORING_INFO_FIELD. However, if the failure occurs
3630 * when fetching the interrupt redirection bitmap in the real-mode
3631 * tss, this doesn't happen. So we do it ourselves.
3632 */
3633static void fixup_rmode_irq(struct vcpu_vmx *vmx)
3634{
3635 vmx->rmode.irq.pending = 0;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003636 if (kvm_rip_read(&vmx->vcpu) + 1 != vmx->rmode.irq.rip)
Avi Kivity9c8cba32007-11-22 11:42:59 +02003637 return;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003638 kvm_rip_write(&vmx->vcpu, vmx->rmode.irq.rip);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003639 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
3640 vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
3641 vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
3642 return;
3643 }
3644 vmx->idt_vectoring_info =
3645 VECTORING_INFO_VALID_MASK
3646 | INTR_TYPE_EXT_INTR
3647 | vmx->rmode.irq.vector;
3648}
3649
Avi Kivityc8019492008-07-14 14:44:59 +03003650#ifdef CONFIG_X86_64
3651#define R "r"
3652#define Q "q"
3653#else
3654#define R "e"
3655#define Q "l"
3656#endif
3657
Avi Kivity851ba692009-08-24 11:10:17 +03003658static void vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003659{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003660 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitye6adf282007-04-30 16:07:54 +03003661
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003662 /* Record the guest's net vcpu time for enforced NMI injections. */
3663 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
3664 vmx->entry_time = ktime_get();
3665
Mohammed Gamal80ced182009-09-01 12:48:18 +02003666 /* Don't enter VMX if guest state is invalid, let the exit handler
3667 start emulation until we arrive back to a valid state */
3668 if (vmx->emulation_required && emulate_invalid_guest_state)
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003669 return;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003670
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003671 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
3672 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
3673 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
3674 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
3675
Gleb Natapov787ff732009-05-18 11:44:06 +03003676 /* When single-stepping over STI and MOV SS, we must clear the
3677 * corresponding interruptibility bits in the guest state. Otherwise
3678 * vmentry fails as it then expects bit 14 (BS) in pending debug
3679 * exceptions being set, but that's not correct for the guest debugging
3680 * case. */
3681 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
3682 vmx_set_interrupt_shadow(vcpu, 0);
3683
Avi Kivitye6adf282007-04-30 16:07:54 +03003684 /*
3685 * Loading guest fpu may have cleared host cr0.ts
3686 */
3687 vmcs_writel(HOST_CR0, read_cr0());
3688
Avi Kivitye8a48342009-09-01 16:06:25 +03003689 if (vcpu->arch.switch_db_regs)
3690 set_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003691
Mike Dayd77c26f2007-10-08 09:02:08 -04003692 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08003693 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03003694 "push %%"R"dx; push %%"R"bp;"
3695 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003696 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
3697 "je 1f \n\t"
3698 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003699 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03003700 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03003701 /* Reload cr2 if changed */
3702 "mov %c[cr2](%0), %%"R"ax \n\t"
3703 "mov %%cr2, %%"R"dx \n\t"
3704 "cmp %%"R"ax, %%"R"dx \n\t"
3705 "je 2f \n\t"
3706 "mov %%"R"ax, %%cr2 \n\t"
3707 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003708 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02003709 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003710 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03003711 "mov %c[rax](%0), %%"R"ax \n\t"
3712 "mov %c[rbx](%0), %%"R"bx \n\t"
3713 "mov %c[rdx](%0), %%"R"dx \n\t"
3714 "mov %c[rsi](%0), %%"R"si \n\t"
3715 "mov %c[rdi](%0), %%"R"di \n\t"
3716 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003717#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003718 "mov %c[r8](%0), %%r8 \n\t"
3719 "mov %c[r9](%0), %%r9 \n\t"
3720 "mov %c[r10](%0), %%r10 \n\t"
3721 "mov %c[r11](%0), %%r11 \n\t"
3722 "mov %c[r12](%0), %%r12 \n\t"
3723 "mov %c[r13](%0), %%r13 \n\t"
3724 "mov %c[r14](%0), %%r14 \n\t"
3725 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003726#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003727 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
3728
Avi Kivity6aa8b732006-12-10 02:21:36 -08003729 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03003730 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003731 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003732 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03003733 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03003734 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08003735 /* Save guest registers, load host registers, keep flags */
Avi Kivityc8019492008-07-14 14:44:59 +03003736 "xchg %0, (%%"R"sp) \n\t"
3737 "mov %%"R"ax, %c[rax](%0) \n\t"
3738 "mov %%"R"bx, %c[rbx](%0) \n\t"
3739 "push"Q" (%%"R"sp); pop"Q" %c[rcx](%0) \n\t"
3740 "mov %%"R"dx, %c[rdx](%0) \n\t"
3741 "mov %%"R"si, %c[rsi](%0) \n\t"
3742 "mov %%"R"di, %c[rdi](%0) \n\t"
3743 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003744#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02003745 "mov %%r8, %c[r8](%0) \n\t"
3746 "mov %%r9, %c[r9](%0) \n\t"
3747 "mov %%r10, %c[r10](%0) \n\t"
3748 "mov %%r11, %c[r11](%0) \n\t"
3749 "mov %%r12, %c[r12](%0) \n\t"
3750 "mov %%r13, %c[r13](%0) \n\t"
3751 "mov %%r14, %c[r14](%0) \n\t"
3752 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08003753#endif
Avi Kivityc8019492008-07-14 14:44:59 +03003754 "mov %%cr2, %%"R"ax \n\t"
3755 "mov %%"R"ax, %c[cr2](%0) \n\t"
3756
3757 "pop %%"R"bp; pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02003758 "setbe %c[fail](%0) \n\t"
3759 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
3760 [launched]"i"(offsetof(struct vcpu_vmx, launched)),
3761 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03003762 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003763 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
3764 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
3765 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
3766 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
3767 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
3768 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
3769 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003770#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003771 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
3772 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
3773 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
3774 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
3775 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
3776 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
3777 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
3778 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08003779#endif
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003780 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
Laurent Vivierc2036302007-10-25 14:18:52 +02003781 : "cc", "memory"
Avi Kivityc8019492008-07-14 14:44:59 +03003782 , R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02003783#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02003784 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
3785#endif
3786 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08003787
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003788 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
3789 | (1 << VCPU_EXREG_PDPTR));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003790 vcpu->arch.regs_dirty = 0;
3791
Avi Kivitye8a48342009-09-01 16:06:25 +03003792 if (vcpu->arch.switch_db_regs)
3793 get_debugreg(vcpu->arch.dr6, 6);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003794
Avi Kivity1155f762007-11-22 11:30:47 +02003795 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
Avi Kivity9c8cba32007-11-22 11:42:59 +02003796 if (vmx->rmode.irq.pending)
3797 fixup_rmode_irq(vmx);
Avi Kivity1155f762007-11-22 11:30:47 +02003798
Mike Dayd77c26f2007-10-08 09:02:08 -04003799 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Avi Kivity15ad7142007-07-11 18:17:21 +03003800 vmx->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02003801
Avi Kivitycf393f72008-07-01 16:20:21 +03003802 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003803}
3804
Avi Kivityc8019492008-07-14 14:44:59 +03003805#undef R
3806#undef Q
3807
Avi Kivity6aa8b732006-12-10 02:21:36 -08003808static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
3809{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003810 struct vcpu_vmx *vmx = to_vmx(vcpu);
3811
3812 if (vmx->vmcs) {
Avi Kivity543e4242008-05-13 16:22:47 +03003813 vcpu_clear(vmx);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003814 free_vmcs(vmx->vmcs);
3815 vmx->vmcs = NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003816 }
3817}
3818
3819static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
3820{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003821 struct vcpu_vmx *vmx = to_vmx(vcpu);
3822
Sheng Yang2384d2b2008-01-17 15:14:33 +08003823 spin_lock(&vmx_vpid_lock);
3824 if (vmx->vpid != 0)
3825 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3826 spin_unlock(&vmx_vpid_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003827 vmx_free_vmcs(vcpu);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003828 kfree(vmx->guest_msrs);
3829 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10003830 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003831}
3832
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003833static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003834{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003835 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10003836 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03003837 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003838
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003839 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003840 return ERR_PTR(-ENOMEM);
3841
Sheng Yang2384d2b2008-01-17 15:14:33 +08003842 allocate_vpid(vmx);
3843
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003844 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
3845 if (err)
3846 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003847
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003848 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003849 if (!vmx->guest_msrs) {
3850 err = -ENOMEM;
3851 goto uninit_vcpu;
3852 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08003853
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003854 vmx->vmcs = alloc_vmcs();
3855 if (!vmx->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003856 goto free_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003857
3858 vmcs_clear(vmx->vmcs);
3859
Avi Kivity15ad7142007-07-11 18:17:21 +03003860 cpu = get_cpu();
3861 vmx_vcpu_load(&vmx->vcpu, cpu);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003862 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003863 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03003864 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003865 if (err)
3866 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02003867 if (vm_need_virtualize_apic_accesses(kvm))
3868 if (alloc_apic_access_page(kvm) != 0)
3869 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003870
Sheng Yangb927a3c2009-07-21 10:42:48 +08003871 if (enable_ept) {
3872 if (!kvm->arch.ept_identity_map_addr)
3873 kvm->arch.ept_identity_map_addr =
3874 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003875 if (alloc_identity_pagetable(kvm) != 0)
3876 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003877 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003878
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003879 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08003880
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003881free_vmcs:
3882 free_vmcs(vmx->vmcs);
3883free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003884 kfree(vmx->guest_msrs);
3885uninit_vcpu:
3886 kvm_vcpu_uninit(&vmx->vcpu);
3887free_vcpu:
Rusty Russella4770342007-08-01 14:46:11 +10003888 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10003889 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003890}
3891
Yang, Sheng002c7f72007-07-31 14:23:01 +03003892static void __init vmx_check_processor_compat(void *rtn)
3893{
3894 struct vmcs_config vmcs_conf;
3895
3896 *(int *)rtn = 0;
3897 if (setup_vmcs_config(&vmcs_conf) < 0)
3898 *(int *)rtn = -EIO;
3899 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
3900 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
3901 smp_processor_id());
3902 *(int *)rtn = -EIO;
3903 }
3904}
3905
Sheng Yang67253af2008-04-25 10:20:22 +08003906static int get_ept_level(void)
3907{
3908 return VMX_EPT_DEFAULT_GAW + 1;
3909}
3910
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003911static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08003912{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003913 u64 ret;
3914
Sheng Yang522c68c2009-04-27 20:35:43 +08003915 /* For VT-d and EPT combination
3916 * 1. MMIO: always map as UC
3917 * 2. EPT with VT-d:
3918 * a. VT-d without snooping control feature: can't guarantee the
3919 * result, try to trust guest.
3920 * b. VT-d with snooping control feature: snooping control feature of
3921 * VT-d engine can guarantee the cache correctness. Just set it
3922 * to WB to keep consistent with host. So the same as item 3.
3923 * 3. EPT without VT-d: always map as WB and set IGMT=1 to keep
3924 * consistent with host MTRR
3925 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003926 if (is_mmio)
3927 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08003928 else if (vcpu->kvm->arch.iommu_domain &&
3929 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
3930 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
3931 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003932 else
Sheng Yang522c68c2009-04-27 20:35:43 +08003933 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
3934 | VMX_EPT_IGMT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08003935
3936 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08003937}
3938
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003939static const struct trace_print_flags vmx_exit_reasons_str[] = {
3940 { EXIT_REASON_EXCEPTION_NMI, "exception" },
3941 { EXIT_REASON_EXTERNAL_INTERRUPT, "ext_irq" },
3942 { EXIT_REASON_TRIPLE_FAULT, "triple_fault" },
3943 { EXIT_REASON_NMI_WINDOW, "nmi_window" },
3944 { EXIT_REASON_IO_INSTRUCTION, "io_instruction" },
3945 { EXIT_REASON_CR_ACCESS, "cr_access" },
3946 { EXIT_REASON_DR_ACCESS, "dr_access" },
3947 { EXIT_REASON_CPUID, "cpuid" },
3948 { EXIT_REASON_MSR_READ, "rdmsr" },
3949 { EXIT_REASON_MSR_WRITE, "wrmsr" },
3950 { EXIT_REASON_PENDING_INTERRUPT, "interrupt_window" },
3951 { EXIT_REASON_HLT, "halt" },
3952 { EXIT_REASON_INVLPG, "invlpg" },
3953 { EXIT_REASON_VMCALL, "hypercall" },
3954 { EXIT_REASON_TPR_BELOW_THRESHOLD, "tpr_below_thres" },
3955 { EXIT_REASON_APIC_ACCESS, "apic_access" },
3956 { EXIT_REASON_WBINVD, "wbinvd" },
3957 { EXIT_REASON_TASK_SWITCH, "task_switch" },
3958 { EXIT_REASON_EPT_VIOLATION, "ept_violation" },
3959 { -1, NULL }
3960};
3961
Joerg Roedel344f4142009-07-27 16:30:48 +02003962static bool vmx_gb_page_enable(void)
3963{
3964 return false;
3965}
3966
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03003967static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003968 .cpu_has_kvm_support = cpu_has_kvm_support,
3969 .disabled_by_bios = vmx_disabled_by_bios,
3970 .hardware_setup = hardware_setup,
3971 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03003972 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003973 .hardware_enable = hardware_enable,
3974 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08003975 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003976
3977 .vcpu_create = vmx_create_vcpu,
3978 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03003979 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003980
Avi Kivity04d2cc72007-09-10 18:10:54 +03003981 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003982 .vcpu_load = vmx_vcpu_load,
3983 .vcpu_put = vmx_vcpu_put,
3984
3985 .set_guest_debug = set_guest_debug,
3986 .get_msr = vmx_get_msr,
3987 .set_msr = vmx_set_msr,
3988 .get_segment_base = vmx_get_segment_base,
3989 .get_segment = vmx_get_segment,
3990 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02003991 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003992 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Anthony Liguori25c4c272007-04-27 09:29:21 +03003993 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003994 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003995 .set_cr3 = vmx_set_cr3,
3996 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003997 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08003998 .get_idt = vmx_get_idt,
3999 .set_idt = vmx_set_idt,
4000 .get_gdt = vmx_get_gdt,
4001 .set_gdt = vmx_set_gdt,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004002 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004003 .get_rflags = vmx_get_rflags,
4004 .set_rflags = vmx_set_rflags,
4005
4006 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004007
Avi Kivity6aa8b732006-12-10 02:21:36 -08004008 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02004009 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004010 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04004011 .set_interrupt_shadow = vmx_set_interrupt_shadow,
4012 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02004013 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03004014 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004015 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02004016 .queue_exception = vmx_queue_exception,
Gleb Natapov78646122009-03-23 12:12:11 +02004017 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004018 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004019 .get_nmi_mask = vmx_get_nmi_mask,
4020 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004021 .enable_nmi_window = enable_nmi_window,
4022 .enable_irq_window = enable_irq_window,
4023 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004024
Izik Eiduscbc94022007-10-25 00:29:55 +02004025 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08004026 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004027 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004028
4029 .exit_reasons_str = vmx_exit_reasons_str,
Joerg Roedel344f4142009-07-27 16:30:48 +02004030 .gb_page_enable = vmx_gb_page_enable,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004031};
4032
4033static int __init vmx_init(void)
4034{
Avi Kivity26bb0982009-09-07 11:14:12 +03004035 int r, i;
4036
4037 rdmsrl_safe(MSR_EFER, &host_efer);
4038
4039 for (i = 0; i < NR_VMX_MSR; ++i)
4040 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03004041
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004042 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004043 if (!vmx_io_bitmap_a)
4044 return -ENOMEM;
4045
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004046 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03004047 if (!vmx_io_bitmap_b) {
4048 r = -ENOMEM;
4049 goto out;
4050 }
4051
Avi Kivity58972972009-02-24 22:26:47 +02004052 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
4053 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08004054 r = -ENOMEM;
4055 goto out1;
4056 }
4057
Avi Kivity58972972009-02-24 22:26:47 +02004058 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
4059 if (!vmx_msr_bitmap_longmode) {
4060 r = -ENOMEM;
4061 goto out2;
4062 }
4063
He, Qingfdef3ad2007-04-30 09:45:24 +03004064 /*
4065 * Allow direct access to the PC debug port (it is often used for I/O
4066 * delays, but the vmexits simply slow things down).
4067 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004068 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
4069 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004070
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004071 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004072
Avi Kivity58972972009-02-24 22:26:47 +02004073 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
4074 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08004075
Sheng Yang2384d2b2008-01-17 15:14:33 +08004076 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
4077
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004078 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03004079 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02004080 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08004081
Avi Kivity58972972009-02-24 22:26:47 +02004082 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
4083 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
4084 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
4085 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
4086 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
4087 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03004088
Avi Kivity089d0342009-03-23 18:26:32 +02004089 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08004090 bypass_guest_pf = 0;
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004091 kvm_mmu_set_base_ptes(VMX_EPT_READABLE_MASK |
Sheng Yang2aaf69d2009-01-21 16:52:16 +08004092 VMX_EPT_WRITABLE_MASK);
Sheng Yang534e38b2008-09-08 15:12:30 +08004093 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004094 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08004095 kvm_enable_tdp();
4096 } else
4097 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08004098
Avi Kivityc7addb92007-09-16 18:58:32 +02004099 if (bypass_guest_pf)
4100 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
4101
He, Qingfdef3ad2007-04-30 09:45:24 +03004102 return 0;
4103
Avi Kivity58972972009-02-24 22:26:47 +02004104out3:
4105 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08004106out2:
Avi Kivity58972972009-02-24 22:26:47 +02004107 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03004108out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004109 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03004110out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004111 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004112 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004113}
4114
4115static void __exit vmx_exit(void)
4116{
Avi Kivity58972972009-02-24 22:26:47 +02004117 free_page((unsigned long)vmx_msr_bitmap_legacy);
4118 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004119 free_page((unsigned long)vmx_io_bitmap_b);
4120 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03004121
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08004122 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004123}
4124
4125module_init(vmx_init)
4126module_exit(vmx_exit)